
.button_container {
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;

}

.overlay {
  position: fixed;
  background: white;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  margin-top: 90px;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;

  &.open {
    visibility: visible;
    height: 100%;
  }
}


body.disable-scroll {
	overflow: hidden;
}

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