#drawer {
  display: none;
}

#drawer-area {
  display: none;
}

/*---------------------------------------------------------------------------------------------------
--------------------------------------------* Media Query Smart Phone *------------------------------
-----------------------------------------------------------------------------------------------------*/
/* @media screen and (max-width: 834px) { */
#overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  bottom: 0;
  right: 0;
}

/* drawer icon ---------------------------------------------------------------------------------------------------*/
#gmenu-icon,
#gmenu-icon span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

#gmenu-icon {
  position: fixed;
  z-index: 9010;
  top: 45px;
  right: 40px;
  width: 35px;
  height: 30px;
  margin: 0px;
}
#gmenu-icon span {
  position: absolute;
  z-index: 9011;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #4E494D;
}
#gmenu-icon span:nth-of-type(1) {
  top: 0;
}
#gmenu-icon span:nth-of-type(2) {
  top: 14px;
}
#gmenu-icon.active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
#gmenu-icon.active span:nth-of-type(2) {
  transform: translateY(-7px) rotate(45deg);
}

/* } */
@media screen and (max-width: 834px) {
  /* drawer torigger btn */
  #drawer-area {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9010;
    width: 75px;
    height: 70px;
    transition: left .2s linear;
  }
  #drawer-area.toggle {
    left: 55%;
  }
  #drawer-area.move {
    -webkit-animation: headerMove .6s ease-in forwards;
    animation: headerMove .6s ease-in forwards;
  }

  #gmenu-icon {
    top: 24px;
    right: 14px;
    width: 35px;
    height: 30px;
    margin: 6px;
    transition: right .2s linear;
  }
  #gmenu-icon span:nth-of-type(1) {
    top: 0;
  }
  #gmenu-icon span:nth-of-type(2) {
    top: 9px;
  }
  #gmenu-icon.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
  }
  #gmenu-icon.active span:nth-of-type(2) {
    transform: translateY(-4px) rotate(45deg);
  }
  #gmenu-icon.move {
    -webkit-animation: borderMove .6s ease-in forwards;
    animation: borderMove .6s ease-in forwards;
  }
}
/* drawer body */
#drawer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 8001;
  width: 40%;
  height: 100%;
  overflow: hidden;
  transition: all .7s ease;
  background: rgba(5, 25, 35, 0.64);
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.15);
}
#drawer.toggle {
  right: 0;
}
#drawer ul.d-main {
  width: 50%;
}
#drawer ul.d-main li {
  width: 100%;
  margin: 0 auto 5px;
  padding-bottom: 20px;
  margin-bottom: 12px;
}
#drawer ul.d-main li a {
  color: #fff;
  letter-spacing: .15em;
  font-size: 1.8em;
}
#drawer ul.d-main li a span {
  display: block;
  line-height: 1.5;
  color: #8191a5;
  color: #ffffff;
  font-size: 1.2em;
}
@media screen and (max-width: 1280px) {
  #drawer ul.d-main {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  #drawer {
    right: -100%;
    width: 100%;
  }
  #drawer.toggle {
    right: 0;
  }
}

@keyframes headerMove {
  0% {
    opacity: 1;
    left: 0;
  }
  100% {
    opacity: 0;
    left: 200px;
  }
}
@keyframes borderMove {
  0% {
    opacity: 1;
    left: 11px;
  }
  100% {
    opacity: 0;
    left: 200px;
  }
}

/*# sourceMappingURL=drawer.css.map */
