.global-header {
  width: 100%;
  background-color: #fff;;
}

.auth {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 12px;
  font-size: 0.8em;
  background-color: #f3f3f3;
}
.auth li:not(:last-child) {
    margin-right: 8px;
}
.auth a {
    font-size: 13px;
}

.admin {
  color: red;
  font-weight: 700;
}

.user-name {
  color: #417ed0;
  font-weight: 700;
}

.auth.join {
  display: none;
}

.global-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 12px;
}

.sidebar-icon,
.call-icon {
  cursor: pointer;
  color: #262626;
}

.sidebar-icon i {
    font-size: 30px;
}

.call-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid #262626;
  border-radius: 50%;
}
.call-icon i {
    position: relative;
    top: 2px;
    left: -1px;
    font-size: 24px;
}


.logo {
  font-size: 1.3em;
  color: #262626;
}

.logo span {
  display: block;
  width: 100%;
  letter-spacing: 0.45em;
  font-size: 0.6em;
}

.global-menu {
  width: 100%;
  height: 48px;
  color: #fff;;
  background-color: #404347;
}

.gnb-nav-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.gnb-nav-item {
  position: relative;
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}

.gnb-nav-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 0.825rem;
  border-right: 1.5px solid #fff;;
}

.gnb-nav-item a {
  display: inline-block;
  padding: 16px 0;
  font-size: 0.9em;
  font-weight: 700;
}

.gnb-nav-item a:hover {
  color: #fff;;
}

.gnb-nav-item a:active {
  color: #FEE000;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right:initial;
  z-index: 200;
  padding: 40px 0;
  color: #fff;;
  background-color: #404347;
  transform: translateX(-100vw);
  transition: transform 300ms ease-in-out;
}
.sidebar a {
    font-size: 0.9em;
}

.sidebar.is-active {
  transform: translateX(0);
  right: 0;
}

.sidebar-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px 12px 20px 12px;
  border-bottom: 2px solid #888;
}

.sidebar-close-icon {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 36px;
  color: #fff;;
}

.sidebar-auth {
  display: flex;
  align-self: flex-end;
}

.sidebar-nav ul li {
  border-bottom: 1px solid #888;
}
.sidebar-nav ul li a{
    display: inline-block;
    padding: 16px 12px;
    font-weight: 700;
    transform: color 300ms ease-in-out; 
}
.sidebar-nav ul li a:active {
    color: #FEE000;
}
.sidebar-footer {
  padding: 20px 12px;
  font-size: 0.8em;
  white-space: nowrap; 
} 
.sidebar-footer  li {
    margin: 6px 0;
}