/*** !!! DEV ONLY - DON'T USE IN PRODUCTION ENV !!! ***/
/*** IMPORT CONFIG ***/
/*** IMPORT BASIC STUFF ***/
/**
 * Only use these mixins if it is not possible to add the icon directly to the source
 */
/**
 * Set fluid CSS property based on viewport width
 *
 * $min-vw: defines the minimum resolution used for fluid calculation
 * $max-vw: defines the maximum resolution used for fluid calculation
 */
/**
 * uses default viewport widths from _variables.scss
 */
/**
 * uses phone viewport only
 */
/**
 * uses phone portrait viewport only and
 * calculates the value based on a device width of 375px
 */
/**
 * uses tablet viewport only
 */
/**
 * uses desktop viewport only
 */
/* Container Mimicry */
/*
 * set color of svg
 */
/* hover only for pointer fine (not touch) */
/*
 * custom scrollbar styling (only works in modern chrome, firefox, safari & edge)
 * apply only to non mobile
 */
.page-header--top .layout-overview--toggle {
  display: block !important;
  position: absolute;
  left: 50%;
  top: 40px;
  aspect-ratio: 1/1;
  padding: 0;
  width: 140px;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.layout-overview {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  pointer-events: none;
}
.layout-overview:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}
.layout-overview.active {
  pointer-events: auto;
}
.layout-overview.active:before {
  opacity: 1;
}
.layout-overview.active .layout-overview--inner {
  transform: none;
}
.layout-overview--inner {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 0 10px;
  width: 390px;
  max-width: 100vw;
  transform: translateX(-101%);
  background: #fff;
  transition: transform 0.5s ease-out;
}
.layout-overview--inner {
  padding-top: clamp(110px, 110px + 40 * (100vw - 768px) / 632, 150px);
}
.layout-overview--inner:before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  height: 50px;
  background: #e0e0e0;
}
.layout-overview--close {
  display: block;
  position: absolute;
  top: 50px;
  right: 45px;
  padding: 0;
  width: 45px;
  height: 50px;
  transform: translateY(-50%);
  border: none;
  background: none;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.2));
  cursor: pointer;
}
.layout-overview--close:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: skew(-14deg);
  background: #fff;
  border-radius: 5px;
}
.layout-overview--close:before {
  transition: background-color 0.3s;
}
.layout-overview--close span:before, .layout-overview--close span:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #505450;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.layout-overview--close span:before {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.layout-overview--close span:after {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.layout-overview .h3 {
  margin-bottom: 30px;
  padding-left: 15px;
  line-height: 1;
}
.layout-overview ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.layout-overview ul li + li {
  margin-top: 10px;
}
.layout-overview ul li hr {
  display: block;
  margin: 0;
  width: 100%;
  height: 1px;
  border: none;
  background-size: auto 100%;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .page-header--top .layout-overview--toggle {
    transform: none;
  }
  .page-header--top .layout-overview--toggle {
    left: clamp(30px, 30px + 40 * (100vw - 768px) / 632, 70px);
  }
  .page-header--top .layout-overview--toggle {
    width: clamp(140px, 140px + 40 * (100vw - 768px) / 632, 180px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .layout-overview--close:hover:before {
    background: #D4D614;
  }
  .layout-overview--close:hover span:before, .layout-overview--close:hover span:after {
    background-color: #fff;
  }
}
/*# sourceMappingURL=../maps/dev-only.min.css.map */