

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 70px;
  height: 70px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.hamburger__icon {
  position: absolute;
  top: 49%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
}
.hamburger__icon, 
.hamburger__icon::before, 
.hamburger__icon::after {
  display: block;
  width: 34px;
  height: 3px;
  background-color: #cc6600;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hamburger__icon::before, 
.hamburger__icon::after {
  position: absolute;
  content: "";
}
.hamburger__icon::before {
  background-color: #cc6600;
  top: -10px;
}
.hamburger__icon::after {
  background-color: #cc6600;
  top: 10px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon::before, 
.hamburger.active .hamburger__icon::after {
  background-color: #ffffff;
}
.hamburger.active .hamburger__icon::before {
  -moz-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active .hamburger__icon::after {
  -moz-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger__text::before {
    content: 'MENU';
    color: #666666;
    font-size: 10px;
    position: absolute;
    bottom: 2px;
    width: 70px;
    text-align: center;
}
.hamburger.active .hamburger__text::before {
    content: 'CLOSE';
    color: #fff;
}

@media screen and (min-width:1024px) {
  .hamburger {
    width: 80px;
    height: 80px;
    display: none;
  }
}