/* Left in for compability reasons */
/* Background transitions */
/* Bild Filter */
:root {
  --header-height: 112px;
  --header-padding-bottom: 16px;
  --sticky-top: calc(
    var(--header-height) + var(--sticky-promobar-height)
    );
  --container-padding: 16px;
  --sticky-promobar-height: 0.01px;
  --header-breakpoint: 1532px;
  --media-center-sidebar-width: 380px;
  --spacer-sx: 20px;
  --spacer-s: 30px;
  --spacer-m: 50px;
  --spacer-l: 75px;
}
:root:has(.sticky_promobar:not(.hide)) {
  --sticky-promobar-height: 48px;
}
@media (min-width: 768px) {
  :root {
    --container-padding: 32px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-padding: 32px;
  }
}
@media (min-width: 1532px) {
  :root {
    --header-padding-bottom: 32px;
    --header-height: 112px;
  }
}
@media (min-width: 1500px) {
  :root {
    --media-center-sidebar-width: 450px;
  }
}
@media (min-width: 768px) {
  :root {
    --spacer-sx: 32px;
    --spacer-s: 65px;
    --spacer-m: 80px;
    --spacer-l: 180px;
  }
}

/* MIXINS */
.location-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.location-boxes p {
  margin-bottom: 0;
}
.location-boxes .location-box {
  position: relative;
  padding: 40px 0 50px 44px;
  background-color: #0C2F48;
}
.location-boxes .location-box:before {
  content: "";
  width: 4px;
  height: 100%;
  left: 0;
  position: absolute;
  background-color: #DEDC00;
  top: 0;
}
.location-boxes .location-box__content {
  margin-bottom: 20px;
  margin-top: 20px;
}
.location-boxes .location-box__link {
  margin-top: 5px;
  margin-bottom: 5px;
}
.location-boxes .location-box__link a {
  position: relative;
  padding-left: 40px;
}
.location-boxes .location-box__link a:before {
  content: "";
  height: 24px;
  width: 24px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.location-boxes .location-box__link--phone a:before {
  mask-image: url(/wp-content/uploads/2024/03/phone_sits.svg);
}
.location-boxes .location-box__link--mail a:before {
  mask-image: url(/wp-content/uploads/2024/03/envelope_sits.svg);
}

@media (max-width: 1499px) {
  .location-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .location-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .location-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .location-boxes .location-box {
    padding: 20px 20px 20px 24px;
  }
}
/*# sourceMappingURL=location-boxes.css.map */
