@charset "UTF-8";
.hamburger {
  display: block;
  width: 55px;
  height: 40px;
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 10000;
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
@media screen and (min-width: 996px) {
  .hamburger {        v  
    top: 60px;
  }
}
.hamburger__icon {
  position: relative;
  margin-top: 13px;
  margin-bottom: 13px;
}
.hamburger__icon,
.hamburger__icon:before,
.hamburger__icon:after {
  display: block;
  width: 34px;
  height: 2px;
  background-color: #222;
  -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 {
  top: -9px;
}
.hamburger__icon:after {
  top: 9px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before,
.hamburger.active .hamburger__icon:after {
  background-color: #000;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.fat-nav {
  top: 0;
  z-index: 9999;
  position: fixed;
  width: 30%;
  height: 100%;
  background: #fff;
  transition: .5s;
  overflow-y: auto;
  overflow-x: hidden;
}
.fat-nav.active {
  top: 0;
  transition: .5s;
}