.menu {
  margin-bottom: 1rem;
  background-color: #edf4d2;
  color: #412f4d;
  position: relative;
  z-index: 10;
}
.menu .navbar {
  padding: 0.2rem;
  position: relative;
  z-index: 50;
  max-width: 700px;
}
.menu .navbar > a {
  font-size: 0;
}
.menu .navbar > * {
  margin: 0 1rem;
}
.menu .navbar-toggler {
  color: #412f4d;
}
.menu button {
  padding: 0.4rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  text-decoration: none;
  max-width: 95vw;
}
.menu button:hover {
  background-color: #cfdba0;
  color: #222222;
}
.menu li:not(:last-of-type) {
  margin-bottom: 0.4rem;
}
.menu li a {
  background-color: rgba(0, 0, 0, 0.02);
  padding: 0.5rem 0;
  color: #412f4d;
  text-decoration: none;
}
.menu li a:hover {
  text-decoration: none;
}
.menu button i {
  min-width: 16px;
  max-width: 16px;
  transition: all 277ms ease-in-out;
}
.menu button:not([aria-expanded=false]) i {
  transform: rotate(180deg) scale(1.3);
}

.menuSeparator {
  position: relative;
  top: -50px;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: #edf4d2;
  border-bottom: 1em solid #cfdba0;
  height: 45px;
  transform: skew(0deg, -1deg);
  z-index: 5;
  margin-bottom: 1rem;
}
.menuSeparator + .c {
  top: -40px;
}

.d .menu {
  background-color: rgba(126, 188, 190, 0.1);
}
.d .menuSeparator {
  display: none;
}
.d .menuSeparator + .c {
  top: 0.5rem;
}