/* Hamburger */

.menu-handler {
  position: absolute;
  top: calc(0.5 * var(--griditem));
  right: var(--griditem);
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 909;
}

.menu-handler span {
  width: 40px;
  height: 4px;
  background: black;
  position: absolute;
  top: 12px;
  left: 5px;
  transition: 0.2s;
}

.menu-handler span:nth-child(2) {
  top: 33px;
}

body.menu-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
  background-color: #9d9d9c;
}

body.menu-active span:nth-child(2) {
  transform: rotate(-45deg);
  top: 20px;
  background-color: #9d9d9c;
}

/* Menü */

#block-schake-et-lupo-hauptnavigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    background: #262625;
}

body.menu-active {
    overflow: hidden;
    height: 100%;
}

body.menu-active #block-schake-et-lupo-hauptnavigation {
    display: flex;
}

header .main-menu-wrap {
    padding: var(--griditem);
    z-index: 808;
    box-sizing: border-box;
}

header .main-menu-wrap > ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    box-sizing: border-box;
    padding-top: calc( 2 * var(--griditem));
}

header .main-menu-wrap > ul a {
    color: #9d9d9c;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 80px;
    line-height: 72px;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
}

header .main-menu-wrap > ul a:hover {
  text-decoration: underline;
}