.arrow {
  width: 150px;
  display: inline-block;
  right: 100px;
  top: 15px;
  position: absolute;
}

.hamburger {
  display: inline-block;
  width: 100px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger div {
  width: 40px;
  height: 3px;
  background: #f1f1f1;
  margin: 6px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger.active {
  transform: rotate(180deg);
}
.hamburger.active div {
  background-color: #fff;
}
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.active div:nth-child(2) {
  opacity: 0;
}
.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.noscroll {
  overflow: hidden;
}

.menu-label {
  color: #222;
}

.menu-overlay {
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #222;
  background: #f1f1f1;
  background-size: 500%;
  pointer-events: none;
  overflow: hidden;
  backface-visibility: hidden;
  width: 0;
  height: 0;
}
.menu-overlay.active {
  pointer-events: auto;
  visibility: visible;
  animation: 0.2s in-out forwards;
  z-index: 2;
}
.menu-overlay.remove {
  animation: out-in 0.2s forwards;
}
.menu-overlay .menu-container {
  display: flex;
  flex-flow: row wrap;
  align-items: start;
  height: 100%;
}
.menu-overlay .menu-container .facilities-container {
  vertical-align: top;
  max-width: 700px;
}
.menu-overlay .menu-container .facilities-container a {
  vertical-align: top;
  display: inline-block;
  padding: 0.5rem;
}
.menu-overlay .menu-container .facilities-container a section {
  margin-top: 0.3rem;
  max-width: 80px;
  font-size: 0.6rem;
}
.menu-overlay .menu-container .facilities-container a img {
  max-width: 80px;
}
.menu-overlay .menu-container .main-navigation {
  margin: 0;
  padding: 0;
}
.menu-overlay .menu-container .main-navigation li {
  display: block;
}
.menu-overlay .menu-container .main-navigation li a {
  color: #222;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

@keyframes in-out {
  0% {
    width: 0;
    border-radius: 50%;
  }
  50% {
    width: 500px;
    height: 500px;
    border-radius: 50%;
  }
  100% {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
@keyframes out-in {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 500px;
    height: 500px;
    border-radius: 50%;
  }
  100% {
    width: 0;
    border-radius: 50%;
  }
}/*# sourceMappingURL=menu.css.map */