#overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.55);
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9100;
}

#gmenu-icon {
  display: none;
}


@media screen and (max-width: 834px) {

  /* drawer icon ---------------------------------------------------------------------------------------------------*/
  #gmenu-icon,
  #gmenu-icon span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  #gmenu-icon {
    display: block;
    position: fixed;
    z-index: 9001;
    top: 25px;
    left: 30px;
    width: 35px;
    height: 30px;
    margin: 0px;
  }
  #gmenu-icon span {
    position: absolute;
    z-index: 999;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
  }
  #gmenu-icon span:nth-of-type(1) { top: 0; }
  #gmenu-icon span:nth-of-type(2) { top: 14px; }
  #gmenu-icon span:nth-of-type(3) { bottom: 0; }
  #gmenu-icon.active span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-45deg);
    transform: translateY(14px) rotate(-45deg);
  }
  #gmenu-icon.active span:nth-of-type(2) { opacity: 0; }
  #gmenu-icon.active span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(45deg);
    transform: translateY(-14px) rotate(45deg);
  }

  /* drawer body ---------------------------------------------------------------------------------------------------*/
  #drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 9000;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: linear-gradient(303deg, #b72732, #c6bbaf, #d6791d, #005d91, #a67c52, #c2c4a7, #d39257, #51bbe0, #247aba, #736357);
    background-size: 2000% 2000%;

    -webkit-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
  }

  @-webkit-keyframes AnimationName {
      0%{background-position:0% 0%}
      50%{background-position:93% 100%}
      100%{background-position:0% 0%}
  }
  @keyframes AnimationName {
      0%{background-position:0% 0%}
      50%{background-position:93% 100%}
      100%{background-position:0% 0%}
  }
  #drawer .drawer-inner {
    width: 100%;
    height: 100%;
    border: 1px dashed #ffffff;
    display: flex;
    align-items: center;
  }
  #drawer ul {
    padding: 0 8px;
    text-align: center;
    width: 100%;
  }
  #drawer ul li {
    width: 100%;
    margin: 0 auto 4px;
    padding-bottom: 12px;
    text-align: left;
  }
  #drawer ul li a {
    display: block;
    height: 100%;
    color: #ffffff;
    font-size: 18px;
    font-style: italic;
    width: 200px;
    margin: 0 auto;
    padding-bottom: 4px;
    border-bottom: 1px solid #ffffff;
  }
  #drawer ul li a i {
    color: #ffffff;
    border-right: 3px double #ffffff;
    margin-right: 2px;
    padding-right: 6px;
  }
  #drawer ul li span {
    display: block;
    text-align: left;
    font-size: 18px;
    color: #ffffff;
    font-style: italic;
    width: 200px;
    margin: 0 auto;
    padding-bottom: 4px;
    border-bottom: 1px solid #ffffff;
  }
  #drawer ul li span i {
    color: #ffffff;
    border-right: 3px double #ffffff;
    margin-right: 2px;
    padding-right: 6px;
  }
  #drawer ul li div.drawerlist {
    display: none;
    width: 200px;
    margin: 0 auto;
    padding-top: 12px;
  }
  #drawer ul li div.drawerlist p {
    margin-bottom: 8px;
  }
  #drawer ul li div.drawerlist p a {
    font-size: 15px;
    display: inline-block;
    margin: 8px 0 0 0;
    padding: 1% 3%;
    letter-spacing: .2em;
    width: 94%;
  }

}
