
.button_container {
  position: fixed;
    top: 35px;
    right: 22px;
  height: 30px;
  width: 30px;
  cursor: pointer;
  z-index: 9999;
  transition: opacity .16.6s ease;
    transform-origin: center center; 
    transform: scale(0.7);
}
.button_bg {
    position: fixed;
    top: 25px;
    right: 14.5px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  z-index: 9998;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
}
.button_container:hover {
  opacity: .7;
}
.button_container.active {

    transition: 0.3s;
}
.button_container span {
  background: #fff;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 9px;
}
.button_container span:nth-of-type(3) {
  top: 19px;
}

.button_container.active .top {
  transform: translateY(8px) translateX(0) rotate(45deg);
  background: #fff;
}
.button_container.active .middle {
  opacity: 0;
  background: #fff;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #fff;
}


.overlay {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s, visibility .85s, height .85s;
  overflow: hidden;
    z-index: 999;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}
.overlay .menulogo {
    width: 45%;
    display: block;
    margin: 0px auto 50px auto;
}
.overlay nav {
  position: relative;
  height: 30%;
    top: calc(50% - 40vw);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);    
    font-size: 1.3em;
  font-weight: 400;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  height: 16.6%;
  vertical-align: middle;
  min-height: 40px;
  position: relative;
  opacity: 0;
}
.overlay ul li.socials {
    margin-top: 40px;
}
.overlay ul li a {
    display: block;
    position: relative;
    color: #00aada;
    text-decoration: none;
    overflow: hidden;
    opacity: 0.8;
    transition: 0.3s;
    vertical-align: middle;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-transform: uppercase;
    font-family: "Styrene Bold";
    letter-spacing: 0px;
    font-size: 1.3rem;  
}

.overlay ul li.socials a {
    display: inline-block;
    margin: 0px 10px;
    font-size: 1.5rem;
    color: #fff;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}

.overlay ul li a:hover {
    opacity: 1;
}


@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}


@media (min-width: 800px) {
    .button_bg, .button_container {
        display: none;
    }
}