/*
Theme Name: bsTheme
Theme URI: http://brotsalz.de/
Author: brot & salz
Author URI: http://www.brotsalz.de
Description: brot & salz Theme
Version: 1.0.1
Tested up to: 6.1.1
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bstheme
Tags: brot&salz, tailor-made-theme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bsTheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/
:root {
  /* --cColor: var(--cPeach); */
  --b-radius-50: 50px;
}

:root :where(a:where(:not(.wp-element-button))) {
  text-decoration: inherit;
}

html {
  background-color: var(--cLight);
  color: var(--cDark);
}

body.home {
  overflow-x: hidden; /* ! Temp fix since intro anim is bugging out at times */
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  color: var(--cDark);
}

.cColor {
  color: var(--cColor) !important;
}

/* * Button Styles
* --------------------------------------------- */
/* Default ------------------ */
.cta__default {
  border: 3px solid var(--cDark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--b-radius-50);
  padding: 0.5rem 2rem;
  transition: 0.3s all ease;
  width: fit-content;
}

.cta__default:hover {
  background-color: var(--cDark);
  color: var(--cLight);
}

.cta__default svg {
  margin-left: 0.5rem;
  transition: 0.3s all ease;
}

.cta__default:hover svg {
  transform: translateX(0.5rem);
}

.cta__default svg path {
  transition: 0.3s all ease;
}

.cta__default:hover svg path {
  stroke: var(--cLight);
}

/* Default (Color) ------------------ */
.cta__default.color {
  border-color: var(--cLight);
  color: var(--cLight);
}

.cta__default.color:hover {
  background-color: var(--cLight);
  color: var(--cDark);
}

.cta__default.color:hover svg path {
  stroke: var(--cDark);
}

/* Default (Opaque) ------------------ */
.cta__default.color.opaque {
  border-color: var(--cColor) !important;
  background-color: var(--cColor) !important;
  color: var(--cDark) !important;
}

.cta__default.color.opaque svg path {
  stroke: var(--cDark) !important;
}

@media (max-width: 576px) {
  .cta__default {
    /* border: 1.3px solid var(--cDark); */
    border: 2px solid var(--cDark);
  }

  .cta__default svg {
    width: 0.55rem;
    height: auto;
  }
}

/* Simple ------------------ */
.cta__simple {
  color: var(--cDark);
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
}

.cta__simple svg {
  margin-left: 0.35rem;
  transform: translateX(0);
  transition: 0.3s all ease;
}

.cta__simple:hover svg {
  transform: translateX(0.35rem);
}

/* Simple (Light) ------------------ */
.cta__simple.light {
  color: var(--cLight);
}

/* * Site Header
* --------------------------------------------- */
.site__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.3s all ease;
}

.site__header::before {
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, var(--cLight) 100%); */
  content: '';
  display: block;
  width: 100%;
  height: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.45;
  pointer-events: none;
  transition: 0.3s all ease;
}

.home .site__header::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, var(--cDark) 100%);
}

/* Nav down */
.site__header.hide {
  transform: translateY(-102%) !important;
}

/* Nav open */
.navOpen {
  overflow: hidden;
}

.logoPrime path {
  transition: 0.3s all ease;
}

.navOpen .logoPrime path {
  fill: var(--cColor) !important;
}

@media (max-width: 576px) {
  .logoPrime {
    height: auto;
    width: 2rem;
  }
}

/* * Bottom Navigation
* --------------------------------------------- */
.bottom_navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.3s all ease;
  pointer-events: none;
}

.bottom_navigation::before {
  content: '';
  display: block;
  width: 100%;
  height: 4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.45;
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--cDark) 100%);
  pointer-events: none;
  transition: 0.3s all ease;
}

.bottom_navigation.hide::before {
  transform: translateY(100%);
}

.bottom_logo {
  position: relative;
}

.bottom_navigation svg {
  height: 4.5rem;
  pointer-events: none !important;
}

.bottom_navigation svg path {
  transition: 0.6s all ease;
}

.bottom_navigation a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: all !important;
  width: 23%;
}

.bottom_navigation a img {
  width: 100%;
}

/* .bottom_navigation a img {
  filter: brightness(100);
} */

@media (max-width: 992px) {
  .bottom_navigation a {
    top: 60%;
  }
}

/* Color selector ------------------ */
#color-selector {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  transform: translateY(0);
  transition: 0.3s all ease;
}

.bottom_navigation.hide #color-selector {
  transform: translateY(200%);
}

.color_slector__title {
  font-size: 0.9rem;
}

.color_selector__item {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  pointer-events: all;
  padding: 0;
  border: 0;
  transform: translateY(0);
  transition: 0.3s all ease;
}

@media (min-width: 993px) {
  .color_selector__item:hover {
    transform: translateY(-0.25rem);
  }
}

@media (max-width: 992px) {
  .color_slector__title {
    display: none;
  }

  .color_selector {
    flex-direction: column;
  }

  .color_selector__item ~ .color_selector__item {
    margin-top: 0.25rem;
  }
}

/* * Burger Button
* --------------------------------------------- */
#navigation-button {
  padding: 1rem 1.75rem;
  border: none;
  border-radius: 0 0 var(--b-radius-lg) var(--b-radius-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
  transition: 0.3s all 0.3s ease;
}

.navOpen #navigation-button {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.navigation__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 0.8rem;
}

.hamburger__line {
  width: 100%;
  height: 17%;
  background-color: var(--cLight);
  transition: 0.3s all ease-in-out;
}

.hamburger__line:last-of-type {
  width: 50%;
}

.hamburger__line + .hamburger__line {
  margin-top: 3px;
}

.navigation__text {
  padding-left: 0.5rem;
}

#navigation-button:hover .hamburger__line:last-of-type {
  width: 100%;
}

.navOpen .hamburger__line:nth-of-type(1) {
  transform: translateY(0.35rem) rotate(45deg);
  margin: 0;
  min-height: 3px;
}

.navOpen .hamburger__line:nth-of-type(2) {
  transform: translateY(-0.25rem) rotate(-45deg);
  margin: 0;
  min-height: 3px;
}

.navOpen .hamburger__line:nth-of-type(3) {
  display: none;
}

.navigation__blocker {
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.navigation__blocker.active {
  display: block;
  pointer-events: all;
}

/* * Burger Menu
* --------------------------------------------- */
#navOverlayContainer {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  background-color: transparent;
  z-index: -90;
  width: 100%;
  height: 100%;
  height: 100vh;
  transition: 0.3s opacity ease;
  transition-delay: 0.5s;
  overflow-y: scroll;
  pointer-events: none;
}

#navOverlayContainer.openOverlay {
  transition-delay: 0s;
  opacity: 1;
  z-index: 9;
  pointer-events: all;
}

.menu__decal {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  width: 5rem;
  height: auto;
}

.nav_overlay__background {
  z-index: 8;
  background: var(--cDark);
  width: 0;
  height: 0;
  position: fixed;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.nav_overlay__background.active {
  animation: nav_background_active 0.5s ease forwards;
}

@keyframes nav_background_active {
  from {
    width: 0;
    height: 0;
    /* opacity: 0; */
  }

  to {
    width: 100%;
    height: 100%;
    /* opacity: 1; */
  }
}

.nav_overlay__background.active.inactive {
  animation: nav_background_inactive 0.5s ease forwards;
}

@keyframes nav_background_inactive {
  from {
    width: 100%;
    height: 100%;
    /* opacity: 1; */
  }

  to {
    width: 0;
    height: 0;
    /* opacity: 0; */
  }
}

.siteHeader {
  margin-top: 200px;
}

/* Main Menu List */
.menu__list_main {
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: 0s opacity ease;
}

.navOpen .menu__list_main {
  transition: 0.4s opacity ease;
  opacity: 1;
  transition-delay: 0.3s;
}

.menu__list_main a {
  color: var(--cGreen);
  transition: 0.3s all ease;
  position: relative;
  padding-left: 0;
}

.menu__list_main a:hover {
  color: var(--cLight);
  padding-left: 2.35rem;
}

.menu__list_main a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 103%;
  width: max(1.2rem, 2.4vw);
  opacity: 0;
  transition: 0.3s all ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='39.691' height='64.239' viewBox='0 0 39.691 64.239'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rechteck_1937' data-name='Rechteck 1937' width='18.279' height='64.238' fill='%23f6f2ea'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Gruppe_7978' data-name='Gruppe 7978' transform='translate(-1754.365 -964.103)'%3E%3Cpath id='Pfad_10818' data-name='Pfad 10818' d='M0,0,7.661,32.119,0,64.238H10.619L18.28,32.119,10.619,0Z' transform='translate(1754.365 964.103)' fill='%23f6f2ea'/%3E%3Cg id='Gruppe_7606' data-name='Gruppe 7606' transform='translate(1775.777 964.104)'%3E%3Cg id='Gruppe_7605' data-name='Gruppe 7605'%3E%3Cg id='Gruppe_7604' data-name='Gruppe 7604' clip-path='url(%23clip-path)'%3E%3Cpath id='Pfad_10821' data-name='Pfad 10821' d='M17.3,64.238H27.918l7.661-32.119L27.918,0H17.3L24.96,32.118Z' transform='translate(-17.299 0)' fill='%23f6f2ea'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.menu__list_main a:hover::before {
  opacity: 1;
}

/* Secondary Menu List */
.menu__list_secondary_wrapper {
  opacity: 0;
  transition: 0s opacity ease;
}

.navOpen .menu__list_secondary_wrapper {
  opacity: 1;
  transition: 0.4s opacity ease;
  transition-delay: 0.5s;
}

.menu__list_secondary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.menu__list_secondary li {
  flex-basis: 42%;
  max-width: 42%;
  margin-bottom: 0.5rem;
}

@media (min-width: 2560px) {
  .menu__list_secondary li {
    flex-basis: 40%;
    max-width: 40%;
  }
}

@media (max-width: 992px) {
  .menu__list_secondary li {
    flex-basis: 35%;
    max-width: 35%;
  }
}

.menu__list_secondary a {
  color: var(--cGreen);
  transition: 0.3s all ease;
  position: relative;
  padding-bottom: 0.1rem;
  width: fit-content;
  font-weight: var(--fw-light);
  font-size: 1.25rem;
}

.menu__list_secondary a:hover {
  color: var(--cLight);
}

.menu__list_secondary a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.25rem;
  height: 2px;
  background: var(--cGreen);
  transition: 0.3s all ease;
}

.menu__list_secondary a:hover::before {
  width: 100%;
  background: var(--cLight);
}

@media (max-width: 576px) {
  .menu__list_secondary li {
    flex-basis: 50%;
    max-width: 50%;
    margin-bottom: 0.5rem;
  }

  .menu__list_secondary a {
    padding-bottom: 0.2rem;
  }
}

/* Menu Peripherals */
.menu__peripherals {
  opacity: 0;
  transition: 0s opacity ease;
  gap: 0;
}

.menu__peripherals > div {
  flex-basis: 42%;
  max-width: 42%;
}

.navOpen .menu__peripherals {
  opacity: 1;
  transition: 0.4s opacity ease;
  transition-delay: 0.7s;
}

@media (max-width: 992px) {
  .menu__peripherals > div {
    flex-basis: 35%;
  }

  .menu__list_secondary {
    width: 100%;
  }
  #navOverlayContainer {
    padding-top: 120px;
  }
}

@media (max-width: 576px) {
  .menu__peripherals > div {
    flex-basis: 50%;
    max-width: 50%;
  }
}

/* * Custom
* --------------------------------------------- */
.lbLabel {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 5px;
}

.storeHero {
  /* min-height: 300px;
  height: 40vh;
  max-height: 400px; */
  aspect-ratio: 16/4;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1920px) {
  .storeHero {
    aspect-ratio: 16/5;
  }
}

.kontaktBox,
.storeLogoBox {
  background-color: var(--cLightGreen);
  border-top-right-radius: var(--b-radius-lg);
  border-top-left-radius: var(--b-radius-lg);
  padding: 30px 30px 45px;
  width: 100%;
  max-width: 270px;
}

.storePhone {
  margin-top: 0.9rem;
}

.storeLogoBox {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: var(--b-radius-lg);
  border-bottom-left-radius: var(--b-radius-lg);
  padding: 30px 30px;
  width: 100%;
  max-width: 270px;
  max-height: 160px;
  background-color: var(--cLight);
}
.storeLogoBox img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.fontBoxStore {
  font-size: 1rem;
}
.lightBox {
  border-radius: var(--b-radius-lg);
  padding: 30px 30px;
  width: calc(100% - 2rem);
  border: 3px solid var(--cDark);
  max-width: 20rem;
}

.singleStoreContent {
  line-height: 1.5;
  max-width: 44rem;
}

.payment-method {
  margin-bottom: 0.25rem;
}

.smallInd {
  font-size: 1.25rem;
}
.storeEntryArchiveWrapper h2 {
  position: relative;
  z-index: 1;
}

.pthumbWrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  z-index: 0;
  aspect-ratio: 16/9;
}

.post-type-archive-store .pthumbWrapper {
  width: 20%;
}

@media (max-width: 1200px) {
  .post-type-archive-store .pthumbWrapper {
    width: 18%;
  }
}

.pthumbWrapper .pthumb {
  width: 0;
  opacity: 0;
  transition: 0.2s ease-in;
  height: 100%;
  border-radius: var(--b-radius-lg);
  object-fit: cover;
}
.storeEntryArchiveWrapper .arrowtitle {
  width: 0;
  transition: 0.2s ease-in-out;
}

.storeEntryArchiveWrapper:hover .arrowtitle {
  width: 1.9rem;
  margin-right: 0.25rem;
}

@media (max-width: 576px) {
  .storeEntryArchiveWrapper:hover .arrowtitle {
    width: 1.2rem;
  }
}

.storeEntryArchiveWrapper a {
  display: flex;
  align-items: center;
}

.storeEntryArchiveWrapper:hover .pthumbWrapper .pthumb {
  width: 100%;
  opacity: 1;
}
.ptlogo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  height: auto;
  background-color: var(--cLight);
  border-radius: var(--b-radius-lg);
  padding: 30px;
  opacity: 0;
  transition: 0.2s ease-in;
}
.storeEntryArchiveWrapper:hover .pthumbWrapper .ptlogo {
  opacity: 1;
}

@media (max-width: 576px) {
  .storeEntryArchiveWrapper:hover a {
    padding-left: 0 !important;
  }
}

/* Quote Bottom
--------------------------------------------- */
.quoteBottomWrapper {
  padding: 10rem 10rem;
  position: relative;
}

.quoteBottomWrapper__corner {
  position: absolute;
  height: 4rem;
  width: 3rem;
  overflow: hidden;
}

@media (max-width: 576px) {
  .quoteBottomWrapper {
    padding: 10rem 3rem;
  }
}

/* Quote Text ------------------ */
.animated__quote {
  opacity: 0;
  transition: 1s all 0.9s ease;
  font-weight: var(--fw-semibold);
  hyphens: none !important;
}

.animated__quote.active {
  opacity: 1;
}

@media (max-width: 576px) {
  .animated__quote {
    word-break: auto-phrase;
  }
}

/* Quote Corners ------------------ */
.quoteBottomWrapper__corner.top_right {
  top: -3rem;
  right: -3rem;
  display: flex;
  justify-content: flex-end;
}

.quoteBottomWrapper__corner.bottom_left {
  bottom: -3rem;
  left: -3rem;
}

/* Quote Items ------------------ */
.quoteBottomWrapper__item {
  background: var(--cLight);
}

.quoteBottomWrapper__item:is(.left, .right) {
  width: 1rem;
  height: 4rem;
}

.quoteBottomWrapper__item:is(.bottom, .top) {
  width: 3rem;
  height: 1rem;
  position: absolute;
}

/* Right Top */
.quoteBottomWrapper__item.right {
  transform: translateY(4rem);
}

.quoteBottomWrapper.active .quoteBottomWrapper__item.right {
  animation: quoteBottomWrapper__item_right 1s ease forwards;
}

@keyframes quoteBottomWrapper__item_right {
  from {
    transform: translateY(4rem);
  }
  to {
    transform: translateY(0rem);
  }
}

.quoteBottomWrapper__item.top {
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  top: 0;
  right: 0;
  transform: translateX(4rem);
}

.quoteBottomWrapper.active .quoteBottomWrapper__item.top {
  animation: quoteBottomWrapper__item_top 1s ease 0.65s forwards;
}

@keyframes quoteBottomWrapper__item_top {
  from {
    transform: translateX(4rem);
  }
  to {
    transform: translateX(0rem);
  }
}

/* Left Bottom */
.quoteBottomWrapper__item.left {
  transform: translateY(-4rem);
}

.quoteBottomWrapper.active .quoteBottomWrapper__item.left {
  animation: quoteBottomWrapper__item_left 1s ease forwards;
}

@keyframes quoteBottomWrapper__item_left {
  from {
    transform: translateY(-4rem);
  }
  to {
    transform: translateY(0rem);
  }
}

.quoteBottomWrapper__item.bottom {
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  bottom: 0;
  left: 0;
  transform: translateX(-4rem);
}

.quoteBottomWrapper.active .quoteBottomWrapper__item.bottom {
  animation: quoteBottomWrapper__item_bottom 1s ease 0.65s forwards;
}

@keyframes quoteBottomWrapper__item_bottom {
  from {
    transform: translateX(-4rem);
  }
  to {
    transform: translateX(0rem);
  }
}

/* Utility
--------------------------------------------- */
@media (max-width: 576px) {
  :root,
  body {
    --b-radius-xl: var(--b-radius-lg) !important;
  }
}

@media (max-width: 576px) {
  .wp-block-spacer {
    height: 100px !important;
  }
}

.home .base__decal_wrapper {
  display: none !important;
}

.base__decal_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  max-width: 5rem;
}

@media (min-width: 2000px) {
  .base__decal_wrapper {
    max-width: 4rem;
  }
}

@media (max-width: 576px) {
  .base__decal_wrapper {
    max-width: 3rem;
  }

  .lb_header__decal {
    max-width: 75px;
  }
}

.low_gap {
  gap: 0.25rem;
}

.no-letter-spacing {
  letter-spacing: 0;
}

.mw-xxl-90 {
  max-width: 90%;
}

@media (max-width: 576px) {
  .mw-xxl-90 {
    max-width: 100%;
  }
}

.br-mobile-no br {
  display: inline-block;
}

.br-mobile-yes br {
  display: none;
}

@media (max-width: 576px) {
  .br-mobile-no br {
    display: none;
  }

  .br-mobile-yes br {
    display: inline-block;
  }
}

.socialMediaItem svg {
  height: 1.15rem;
  width: auto;
}

.filter__button {
  transition: 0.3s all ease;
  padding: 0.25rem 0.5rem;
  background: var(--cLightGreen);
  border: none;
  border-radius: 5px;
  color: var(--cDark);
  margin: 0 0.25rem 0.5rem 0;
  transition: 0.3s all ease;
  font-size: 0.9rem;
}

.filter__button.active {
  color: var(--cDark);
  background: var(--cGreen);
}

::selection {
  background: var(--cColor); /* Background color of the selection */
  color: var(--cDark); /* Text color of the selection */
}

/* For Firefox */
::-moz-selection {
  background: var(--cColor); /* Background color of the selection */
  color: var(--cDark); /* Text color of the selection */
}

.secInd {
  color: var(--cColor);
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
  line-height: 1.15;
}

/** Filter */
.livingcategoriesFilter.active .livingcategoriesFilterContent {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
.livingcategoriesFilterWrapper {
  position: relative;
  border-radius: var(--b-radius-lg);
  background-color: var(--cLightGreen);
  height: 2rem;
  cursor: pointer;
  display: flex;
  padding: 0 1rem;
  align-items: center;
  max-width: 10rem;
}

.borlabs-adobe-denied .livingcategoriesFilterWrapper {
  max-width: 12rem;
}

.livingcategoriesFilterWrapper .livingcategoriesFilterContent {
  position: absolute;
  top: 1.75rem;
  padding: 1rem 1rem;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  left: 0;
  background-color: var(--cLightGreen);
}

.livingcategoriesFilter .arrowFilter {
  transition: 0.1s ease-in-out;
}

/** spin effect on arrow when active */
.livingcategoriesFilter.active .arrowFilter {
  transform: rotate(180deg);
}
.activeFilter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.activeFilter svg {
  height: 1rem;
  width: auto;
}

.archiveEntryCont {
  min-height: 70vh;
}

.storeContentInfoCol {
  overflow-x: hidden;
}

.swiperStoreImg {
  width: 100%;
  overflow: visible;
  /* Allow overflow */
}

.swiperStoreImg .swiper-wrapper {
  width: calc(100% + var(--bs-gutter-x));
  margin-left: calc(var(--bs-gutter-x) * 0.5);
}

.swiperStoreImg .swiper-slide {
  width: 75%;
  /* Adjust width to show half of the next slide */
  margin-right: 25%;
  aspect-ratio: 16/9;
  position: relative;
  /* Space to the right */
  transition: transform 0.3s ease;
  /* Smooth transition */
}

.swiperStoreImg .swiper-slide img {
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--b-radius-lg);
}

.swiperStoreImg .swiper-slide-next {
  transform: translateX(-25%);
  /* Adjust the next slide's position */
}

.archive-brands_main .storeEntryArchiveWrapper:hover .arrowtitle {
  width: 0.45rem;
}

/* Parallax with WP Cover
--------------------------------------------- */
.parallax__item .wp-block-cover {
  position: relative;
  overflow: hidden;
}

.parallax__item .wp-block-cover__image-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 130%;
  width: 100%;
  object-fit: cover;
}

/* anim__slide-in 
--------------------------------------------- */
.anim__slide-in {
  overflow-x: hidden;
}

.anim__slide-in > * {
  transform: translateX(-100%);
  opacity: 0;
  transition: 1s all cubic-bezier(0, -0.01, 0.2, 0.99);
}

.anim__slide-in > *.active {
  opacity: 1;
  transform: translateX(0);
}

.mapCont {
  position: relative;
  width: 100%;
  max-width: 3200px;
  height: 850px;

  z-index: 0;
}

#map {
  min-height: 700px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  background: var(--cLight) !important;
}

.custom-layer-control {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--cLightGreen);
  padding: 10px;
  min-width: 120px;
  /* max-width: 220px; */
  border-radius: var(--b-radius-lg);
  z-index: 480;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.custom-layer-control .selectFloorBtn {
  cursor: pointer;
  text-align: left;
  font-size: 24px;
  border-radius: var(--b-radius-reg);
  background: #fcfbf8;
  padding: 5px 25px;
  color: var(--cDark);
  border: none;
  width: 100%;
  transition: 0.2s ease-in;
  display: block;
  margin-bottom: 5px;
}

/** if input checked, label background is bPeach */
.custom-layer-control input:checked + label {
  background: var(--cPeach);
}

.custom-layer-control .leaflet-control-layers-selector {
  margin-right: 10px;
}

.leaflet-overlay-pane svg {
  transition: opacity 0.5s ease-in-out;
}

.svg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.storearea {
  cursor: pointer !important;
  transition: 0.2s ease-in;
}
.noStoreArea {
  cursor: not-allowed !important;
  transition: 0.2s ease-in;
}
.noStoreArea:hover {
  fill: var(--cGreen);
}

.storearea:hover,
.storearea.active {
  fill: var(--cPeach);
}

.leaflet-container img.leaflet-image-layer,
.leaflet-pane > svg path {
  pointer-events: all !important;
}

.corner_decal {
  position: absolute;
  display: none;
  margin: 0;
  width: 5rem;
  height: auto;
}

.corner_decal.top-right {
  top: 0;
  right: 0;
}

.corner_decal.bottom-left {
  bottom: 0;
  left: 0;
}

@media (min-width: 577px) {
  .corner_decal {
    display: block;
  }
}

/* Gallery Slider Pagination
--------------------------------------------- */
.gallery_slider__pagination {
  margin-top: 0.5rem;
  transform: translateX(34.5%);
}

.gallery_slider__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: var(--cLightGreen);
  opacity: 1;
  border-radius: 50%;
  transition: 0.3s all ease;
}

.gallery_slider__pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--cColor);
}

.brandItem {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: var(--cLightGreen);
  border: 1px solid var(--cLightGreen);
  border-radius: var(--b-radius-lg);
  margin: 10px 20px 10px 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: calc(20% - 20px);
  position: relative;
  cursor: pointer;
  transition: 0.2s ease-in;
}

.brandItem img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  object-fit: contain;
  max-width: 120px;
  max-height: 50%;
}

@media (max-width: 762px) {
  .brandItem {
    max-width: calc(33.333% - 20px);
  }
}

#contactForm__container {
  padding: 2rem;
  border-radius: var(--b-radius-lg);
}

#thank-you-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#thank-you-modal button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* LB FORMS */

.inputWrapper {
  padding-bottom: 1.5rem;
}

.inputFieldWrap {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-bottom: 1.75rem;
  margin-top: 1.5rem;
}
.inputFieldWrap label {
  position: absolute;
  bottom: 11px;
  font-size: 1.25rem;
  left: 0px;
  transition: 0.1s ease-in;
  opacity: 0.4;
}
.inputFieldArea label {
  transition: 0.1s ease-in;
  opacity: 0.4;
}
.inputFieldArea {
  margin-top: 30px;
}
.inputFieldArea textarea {
  padding-left: 0;
  font-size: 1.5rem;
}
.inputFieldArea label {
  font-size: 1.5rem;
}

.inputFieldWrap input {
  font-size: 1.15rem;
  background-color: transparent !important;
  transition: 0.2s ease-in;
  cursor: pointer;
  width: calc(100% - 20px);
  padding: 8px 6px 6px;
  padding-left: 0px;
}
.inputFieldArea textarea {
  background-color: transparent !important;
  transition: 0.2s ease-in;
  cursor: pointer;
  width: calc(100% - 20px);
}
.inputFieldWrap input:autofill,
.inputFieldWrap input:-webkit-autofill,
.inputFieldWrap input:-webkit-autofill:hover,
.inputFieldWrap input:-webkit-autofill:focus,
.inputFieldWrap input:-webkit-autofill:active,
.inputFieldWrap input:-internal-autofill-selected {
  background: transparent;
  -webkit-box-shadow: 0 0 0 30px var(--cLight) inset !important;
  background-color: transparent !important;
  color: var(--cDark) !important;
  -webkit-text-fill-color: var(--cDark) !important;
}
.inputFieldWrap input:-moz-autofill,
.inputFieldWrap input:-moz-autofill:hover,
.inputFieldWrap input:-moz-autofill:focus,
.inputFieldWrap input:-moz-autofill:active {
  background: transparent !important;
}
.inputFieldWrap.focused label,
.inputFieldWrap.hasVal label {
  font-size: 1rem;
  bottom: 2.1rem;
  opacity: 1;
}
.inputFieldArea.inputFieldArea.focused label,
.inputFieldArea.inputFieldArea.hasVal label {
  color: var(--cPeach);
  font-size: 1rem;
  opacity: 1;

  margin-top: -6px;
}
.inputFieldArea:not(.hasVal, .focused):hover label,
.inputFieldWrap:not(.hasVal, .focused):hover label {
  opacity: 0.7;
}
/* .inputFieldWrap:hover input,
.inputFieldArea:hover textarea {
  border-color: var(--cPeach);
  background-color: var(--cLightGrey) !important;
} */
.inputFieldWrap.focused input,
.inputFieldArea.focused textarea {
  border-color: var(--cPeach);
}

.checkPrivacyWrapper .gsdvoTxt {
  position: relative;
  padding-bottom: 40px;
}

@media (max-width: 576px) {
  .checkPrivacyWrapper .gsdvoTxt {
    font-size: 16px !important;
    padding-bottom: 10px;
  }
  input {
    border-radius: 0 !important;
  }
}

.checkPrivacyWrapper input[type='checkbox'] {
  height: 0;
  width: 0;
  opacity: 0;
}
.checkPrivacyWrapper input[type='checkbox'] + label {
  position: relative;
  display: flex;
  margin: 0.6em 0;
  color: var(--cDark);
  transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
.checkPrivacyWrapper .gsdvoTxt {
  padding-top: 4px;
}
.checkPrivacyWrapper input[type='checkbox'] + label > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  width: 1.4rem !important;
  height: 1.4rem !important;
  min-width: 1.4rem !important;
  min-height: 1.4rem !important;
  max-width: 1.4rem !important;
  max-height: 1.4rem !important;
  background: transparent;
  border: 2px solid var(--cDark);
  border-radius: 2px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
/* .checkPrivacyWrapper input[type="checkbox"] + label:hover,
.checkPrivacyWrapper input[type="checkbox"]:focus + label {
  color: var(--cGreen);
} */
.checkPrivacyWrapper input[type='checkbox'] + label:hover > span,
.checkPrivacyWrapper input[type='checkbox']:focus + label > span {
  background: rgba(255, 255, 255, 0.1);
}
.checkPrivacyWrapper input[type='checkbox']:checked + label > ins {
  height: 100%;
}
.checkPrivacyWrapper input[type='checkbox']:checked + label > span {
  border: 0.5rem solid var(--cLight);
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}
.checkPrivacyWrapper input[type='checkbox']:checked + label > span:before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0.2rem;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
}

@media (max-width: 576px) {
  .checkPrivacyWrapper input[type='checkbox'] + label > span {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
  }

  .checkPrivacyWrapper input[type='checkbox']:checked + label > span {
    border: 12.5px solid var(--cPeach) !important;
  }

  .checkPrivacyWrapper input[type='checkbox']:checked + label > span:before {
    top: 5px !important;
    left: 4px !important;
  }
}

@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: var(--cDark);
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 6px;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 9px;
    height: 18px;
    border-color: var(--cDark);
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
  }
}

#form-spinner {
  position: fixed;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}

.loadingLock {
  overflow: hidden;
}

/* Jobs
--------------------------------------------- */
.tag {
  font-size: clamp(16px, 2vw, 20px);
  padding: 0.25rem 0.35rem;
  border-radius: 5px !important;
}

.single__sticky_header {
  position: sticky;
  top: 6rem;
}

.jobs__padding {
  padding-top: 10rem;
}

@media (max-width: 992px) {
  .jobs__padding {
    padding-top: 1.5rem;
  }
}

/* News
--------------------------------------------- */
@media (min-width: 1921px) {
  #news .wp-block-cover {
    padding-block: 3rem;
  }
}

.news__item h3 {
  color: var(--cLight);
  text-decoration: underline;
}

.news__image_wrapper {
  aspect-ratio: 16/9;
  border-radius: var(--b-radius-xl);
}

/* .news__image_wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    22deg,
    rgba(29, 44, 47, 0) 0%,
    rgba(29, 44, 47, 1) 100%
  );
  z-index: 2;
} */

.news__image_wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 2s all ease;
  transform: scale(1);
  filter: brightness(0.85);
}

.news__item:hover .news__image_wrapper img {
  transform: scale(1.05);
}

.news__image_wrapper svg {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: none !important;
}

.news_preview__navigation_button {
  border: none;
  background: none;
  padding: 0;
}

.news_preview__navigation_button svg [stroke='var(--cColor)'] {
  transition: 0.3s all ease;
}

.news_preview__navigation_button.swiper-button-disabled
  svg
  [stroke='var(--cColor)'] {
  stroke: var(--cColor);
  opacity: 0.5;
}

@media (max-width: 576px) {
  .news_preview__navigation_button svg {
    width: 2rem;
    height: auto;
  }
}

/* News single specific ------------------ */
@media (max-width: 576px) {
  .news_preview__swiper_wrapper {
    height: auto;
  }
}

/* News archive specific ------------------ */
.news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .news__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .news__grid {
    grid-template-columns: 1fr;
  }
}

.news__chevron {
  width: 1.5rem;
  height: auto;
}

/* News single specific ------------------ */
.news__long_line {
  width: 100%;
  background: var(--cDark);
  height: 8px;
  margin-block: auto;
}

/* Custom page styling
--------------------------------------------- */
@media (min-width: 577px) {
  .history__hero_title_second_br br:last-of-type {
    display: none;
  }
}

/* Footer
--------------------------------------------- */
#back-to-top {
  position: absolute;
  bottom: 3rem;
  right: 1rem;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 3;
}

@media (max-width: 576px) {
  #back-to-top {
    bottom: 4rem;
  }
}

.footerImageCont {
  overflow: hidden;
}

#colophon .footerImageCont figure {
  transition: 10s all ease;
  transform-origin: top center;
  transform: scale(1.061);
}

#colophon .footerImageCont figure figcaption {
  display: none !important;
}

#colophon.active .footerImageCont figure {
  transform: scale(1.1);
}

.footerLastRow {
  font-size: 18px;
}

@media (max-width: 1250px) {
  .footerLastRow {
    font-size: 16px;
  }
}

/* @media (max-width: 768px) {
  #colophon.active .footerImageCont figure {
    transform: scale(1.2);
  }
} */

.footerImageCont img {
  width: 100vw;
}

.mainClaimFooter {
  line-height: 0.6;
}

.borlabs-adobe-denied .mainClaimFooter {
  line-height: 0.725;
}

body:not(.home) .footer__bottom_wrapper {
  background: var(--cDark);
}

body:not(.home) .footer__bottom_wrapper * {
  color: var(--cLight);
}

body:not(.home) .footer__bottom_wrapper .cta__simple:not(.light) {
  display: none;
}

body.home .footer__bottom_wrapper .cta__simple.light {
  display: none;
}

.footer__sponsor {
  margin-top: 0rem;
}

body.home .footer__sponsor.light {
  display: none;
}

body:not(.home) .footer__sponsor.dark {
  display: none;
}

/* Stores / Brands Archives
--------------------------------------------- */
.searchByName {
  position: relative;
}

.searchByName svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: auto;
  pointer-events: none;
}
@media (max-width: 576px) {
  .navToTop > .container-fluid {
    padding-top: 175px !important;
    padding-bottom: 200px !important;
  }
  body .footer__bottom_wrapper {
    padding-bottom: 100px !important;
  }
  .m4hl,
  .menu__list_main a {
    font-size: 2.5rem !important;
  }
  .custom-layer-control {
    padding-top: 0;
  }
  .custom-layer-control .selectFloorBtn {
    font-size: 16px;
    padding: 5px 11px;
  }
  .leaflet-bar {
    border: 1px solid var(--cDark);
  }
  .leaflet-bar a.leaflet-disabled {
    background-color: var(--cLigh);
    opacity: 0.5;
  }
  #news__calendar .custom-dropdown__toggle {
    max-width: 150px;
  }
  #news__calendar .custom-dropdown__toggle svg {
    max-width: 15px;
    height: auto;
  }
}

/* Contact specific
--------------------------------------------- */
.page-id-1896 #primary .secInd {
  color: var(--cDark);
}

/* Sustainability specific
--------------------------------------------- */
.sustainability__row ~ .sustainability__row {
  margin-top: 3rem;
}

.sustainability__col.images {
  position: relative;
}

.sustainability__img img {
  border-radius: var(--b-radius-xl);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sustainability__img.one {
  height: 25rem;
}

.sustainability__row.images__left .sustainability__img.one {
  transform: translateX(-2rem);
}

.sustainability__row.images__right .sustainability__img.one {
  transform: translateX(2rem);
}

.sustainability__img.two {
  position: absolute;
  width: 10rem;
  height: 10rem;
  margin: 0;
}

.sustainability__img.two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-id-2791 .siteHeader .nohyphens {
  hyphens: auto;
}

/* Custom Rows ------------------ */
.sustainability__row_1 .sustainability__img.two {
  bottom: -15%;
  left: 17.5%;
}

.sustainability__row_2 .sustainability__img.two {
  top: -15%;
  right: 12.5%;
}

.sustainability__row_3 .sustainability__img.two {
  top: -15%;
  right: 15%;
}

.sustainability__row_4 .sustainability__img.two {
  top: -15%;
  left: 20%;
}

.sustainability__row_5 .sustainability__img.two {
  top: -15%;
  left: 17.5%;
}

@media (max-width: 992px) {
  div.sustainability__row:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  .sustainability__img.two {
    bottom: 2.5rem !important;
    top: auto !important;
  }

  .sustainability__row.images__left .sustainability__img.two {
    right: 1rem;
    left: auto;
  }

  .sustainability__row.images__right .sustainability__img.two {
    left: 1rem;
    right: auto;
  }

  .sustainability__img.one {
    margin-bottom: 1.5rem !important;
  }
}

#map::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cLight);
  z-index: 479;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease-in;
}

#map.trans::after {
  opacity: 1;
}

/* Low battery
--------------------------------------------- */
#low_battery_modal .modal-content {
  background-color: var(--cDark);
  border: none;
  border-radius: var(--b-radius-lg);
}

#low_battery_modal .modal-header {
  border-bottom: 1px solid var(--cGreen);
}

#low_battery_modal .btn-close {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F6F2EA'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E");
}

/* Lang switch
--------------------------------------------- */
#lang-switch {
  width: fit-content;
  /* padding-left: 1rem; */
}

#lang-switch *::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
}

#lang-switch * {
  color: var(--cDark) !important;
}
body.isLight .langSwitch,
body.isLight #lang-switch *,
.navOpen #lang-switch *,
.home #lang-switch * {
  color: var(--cLight) !important;
}

#lang-switch a {
  font-weight: var(--fw-semibold) !important;
}

#lang-switch .trp-language-switcher {
  width: fit-content;
  height: auto;
}

#lang-switch .trp-ls-shortcode-current-language {
  width: 60px !important;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background-position: 40px;
  display: none !important;
}

#lang-switch .trp-language-switcher > div > a:hover {
  background: transparent !important;
  /* color: var(--cLight) !important; */
}

#lang-switch .trp-language-switcher > div > a {
  padding: 3px 6px;
}

#lang-switch .trp-ls-shortcode-language {
  border: none !important;
  display: flex !important;
  visibility: visible !important;
  background: transparent !important;
  height: 40px !important;
  padding: 0 !important;
  justify-content: space-around !important;
  align-items: center !important;
  position: relative !important;
  width: 65px !important;
}

#lang-switch .trp-ls-shortcode-disabled-language {
  position: relative !important;
  text-decoration: underline !important;
}

#lang-switch .trp-ls-shortcode-disabled-language::after {
  position: absolute;
  content: '';
  display: block;
  height: 0.8rem;
  width: 2px;
  background: var(--cDark);
  right: -2px;
  top: 28%;
}
.home #lang-switch .trp-ls-shortcode-disabled-language::after,
.navOpen #lang-switch .trp-ls-shortcode-disabled-language::after,
body.isLight #lang-switch .trp-ls-shortcode-disabled-language::after {
  background: var(--cLight);
}
#storeLink {
  transition: 0.12s ease-in;
}
/* #storeLink:hover * {
  color: var(--map);
} */
#storeLink svg {
  transition: 0.12s ease-in;
  max-height: 0.6rem;
  transform: translateY(-1px);
}
#storeLink svg * {
  stroke: var(--cDark);
}
/* #storeLink:hover svg * {
  stroke: var(--map);
} */

/* #storeLink:hover svg {
  transform: translateX(0.25rem);
} */

.toStoreLink {
  margin-top: 0.25rem;
  background-color: var(--cLight);
  display: inline-flex;
  align-items: center;
  border-radius: var(--b-radius-lg);
  padding: 0.25rem 0.65rem;
  justify-content: center;
}

.storeEmail a {
  word-break: break-all;
}

/* Announcement Modal
--------------------------------------------- */
#announcementModal .modal-content {
  background: var(--cRed);
  border: none;
  border-radius: var(--b-radius-lg);
  color: var(--cDark);
}

#announcementModal .modal-content :is(h1, h2, h3, h4, h5, h6, a) {
  color: var(--cDark);
}

#announcementModal .modal-content :is(h1, h2, h3, h4, h5, h6, a) strong {
  font-weight: inherit;
  -webkit-text-stroke: 2px var(--cDark);
  -webkit-text-fill-color: transparent;
}

#announcementModal .modal-content :is(h1, h2, h3, h4, h5, h6, a) p {
  margin-bottom: 0;
}

#announcementModal .modal-content p:has(span) {
  margin-bottom: 0;
}

#announcementModal .modal-content :is(.modal-header, .modal-footer) {
  border: none;
}

#announcementModal .modal-content .modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

#announcementModal .modal-content p:has(.pop__date) {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

#announcementModal .modal-content .modal-footer :is(img, svg) {
  height: 100%;
  width: auto;
  margin: 0;
}

#announcementModal .modal-content .modal-footer svg {
  max-height: 4.5rem;
}

#announcementModal .modal-content .modal-footer img {
  max-height: 6.5rem;
}

#announcementModal .modal-header button {
  background: transparent;
  border: none;
}

.modal-backdrop.show {
  opacity: 0.9;
}

/* .news_popup_slider__nav {
  position: absolute;
  top: 0rem;
  right: 0;
  z-index: 3;
} */

.news_popup_slider__nav_item.prev svg {
  transform: rotate(180deg);
}

.news_popup_slider__nav > div svg {
  height: 1rem;
  width: auto;
}

@media (min-width: 1600px) {
  #announcementModal .modal-dialog {
    max-width: 1500px;
  }
}

@media (min-width: 1920px) {
  #announcementModal .modal-dialog {
    max-width: 1700px;
  }
}

@media (min-width: 2100px) {
  #announcementModal .modal-dialog {
    max-width: 1920px;
  }
}

@media (max-width: 576px) {
  #announcementModal .modal-content .modal-footer svg {
    height: auto;
    width: 100%;
    max-width: 70%;
  }
}

/* Announcement Modal News
--------------------------------------------- */
#announcementNewsModal .modal-content {
  background: var(--cDark);
  border: none;
  border-radius: var(--b-radius-lg);
  color: var(--cLight);
}

#announcementNewsModal .modal-content :is(h1, h2, h3, h4, h5, h6) {
  color: var(--cLight);
}

#announcementNewsModal .modal-content :is(h1, h2, h3, h4, h5, h6) strong {
  font-weight: inherit;
  -webkit-text-stroke: 2px var(--cDark);
  -webkit-text-fill-color: transparent;
}

#announcementNewsModal .modal-content :is(h1, h2, h3, h4, h5, h6) p {
  margin-bottom: 0;
}

#announcementNewsModal .modal-content p:has(span) {
  margin-bottom: 0;
}

#announcementNewsModal .modal-content :is(.modal-header, .modal-footer) {
  border: none;
}

#announcementNewsModal .modal-content .modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

#announcementNewsModal .modal-content p:has(.pop__date) {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

#announcementNewsModal .modal-content .modal-footer :is(img, svg) {
  height: 100%;
  width: auto;
  margin: 0;
}

#announcementNewsModal .modal-content .modal-footer svg {
  max-height: 6.5rem;
}

#announcementNewsModal .modal-content .modal-footer img {
  max-height: 6.5rem;
}

#announcementNewsModal .modal-header button {
  background: transparent;
  border: none;
}

.modal-backdrop.show {
  opacity: 0.9;
}

@media (min-width: 1600px) {
  #announcementNewsModal .modal-dialog {
    max-width: 1500px;
  }
}

@media (min-width: 1920px) {
  #announcementNewsModal .modal-dialog {
    max-width: 1700px;
  }
}

@media (min-width: 2100px) {
  #announcementNewsModal .modal-dialog {
    max-width: 1920px;
  }
}

@media (max-width: 576px) {
  #announcementNewsModal .modal-content .modal-footer svg {
    height: auto;
    width: 100%;
    max-width: 70%;
  }
}

/* Announcement Modal News
--------------------------------------------- */
#news_pop_up .modal-content {
  background: var(--cDark);
  border: none;
  border-radius: var(--b-radius-lg);
  color: var(--cLight);
}

#news_pop_up .modal-content :is(h1, h2, h3, h4, h5, h6) {
  color: var(--cLight);
}

#news_pop_up .modal-content :is(h1, h2, h3, h4, h5, h6) strong {
  font-weight: inherit;
  -webkit-text-stroke: 2px var(--cDark);
  -webkit-text-fill-color: transparent;
}

#news_pop_up .modal-content :is(h1, h2, h3, h4, h5, h6) p {
  margin-bottom: 0;
}

#news_pop_up .modal-content p:has(span) {
  margin-bottom: 0;
}

#news_pop_up .modal-content :is(.modal-header, .modal-footer) {
  border: none;
}

#news_pop_up .modal-content .modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

#news_pop_up .modal-content p:has(.pop__date) {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

#news_pop_up .modal-content .modal-footer :is(img, svg) {
  height: 100%;
  width: auto;
  margin: 0;
}

#news_pop_up .modal-content .modal-footer svg {
  max-height: 6.5rem;
}

#news_pop_up .modal-content .modal-footer img {
  max-height: 6.5rem;
}

#news_pop_up .modal-header button {
  background: transparent;
  border: none;
}

.modal-backdrop.show {
  opacity: 0.9;
}

@media (min-width: 1600px) {
  #news_pop_up .modal-dialog {
    max-width: 1500px;
  }
}

@media (min-width: 1920px) {
  #news_pop_up .modal-dialog {
    max-width: 1700px;
  }
}

@media (min-width: 2100px) {
  #news_pop_up .modal-dialog {
    max-width: 1920px;
  }
}

@media (max-width: 576px) {
  #news_pop_up .modal-content .modal-footer svg {
    height: auto;
    width: 100%;
    max-width: 70%;
  }
}

/* Announcement Störer ------------------ */
#announcement {
  position: absolute;
  top: 20%;
  right: 10%;
  transform: rotate(10deg);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  max-width: 250px;
  width: 100%;
}

#announcement svg * {
  transition: 0.6s all ease;
}

#announcement :is(a, img, svg) {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 2000px) {
  #announcement {
    max-width: 400px;
  }
}

@media (max-width: 1200px) {
  #announcement {
    max-width: 200px;
  }
}

@media (max-width: 992px) {
  #announcement {
    max-width: 200px;
    top: 10%;
  }
}

#announcement.news {
  right: 30%;
  top: 10%;
}

@media (max-width: 768px) {
  #announcement.news {
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  #announcement.news {
    position: static;
    margin-left: auto;
  }
}

/* Password
--------------------------------------------- */
.post-password-form {
  padding-block: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.post-password-form input {
  margin-left: 0.5rem;
}

.isPrev {
  display: none !important;
}

/* Breadcrumbs
--------------------------------------------- */
#breadcrumbs {
  text-transform: uppercase;
}

.underlineLink a {
  text-decoration: underline;
}

/* Special Offer / Black Friday
--------------------------------------------- */
.special_offer__content_wrapper {
  border-radius: var(--b-radius-lg);
  /* background: #000; */
  color: var(--cLight);
  padding: 1rem 1rem 2rem;
  display: flex;
  text-align: center;
}

.special_offer__content_wrapper.hasSpecialImg {
  border-radius: 0;
  background: transparent;
  color: var(--cDark);
  padding: 0;
}

.special_offer__img {
  max-width: 300px;
}

.special_offer__img img {
  border-radius: var(--b-radius-lg);
}

.special_offer__text {
  color: var(--cLight) !important;
}

.special_offer__text :is(h1, h2, h3, h4, h5, h6) {
  color: var(--cLight) !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase !important;
}

.special_offer__content_wrapper.hasSpecialImg
  .special_offer__text
  :is(h1, h2, h3, h4, h5, h6) {
  color: var(--cDark) !important;
}

.special_offer__content_wrapper.hasSpecialImg .special_offer__text {
  color: var(--cDark) !important;
}

.special_offer__text > *:last-of-type {
  margin-bottom: 0;
}

.special_offer__img ~ .special_offer__text {
  padding-left: 1.5rem;
}

.brlbs-cpmnt-dialog-bar-main * {
  font-size: 16px !important;
}

#BorlabsCookieEntranceA11YDescription:focus-visible {
  border: none !important;
  outline: none !important;
}
#special_offer {
  background-color: var(--cColor);
  border: 1px solid var(--cColor);
  border-radius: var(--b-radius-lg);
  padding: 1rem;
  width: fit-content;
}
#special_offer * {
  color: var(--cEq) !important;
}

#special_offer h3 {
  display: none !important;
}
.special_offer__content_wrapper.hasSpecialImg .special_offer__text {
  padding-top: 1rem;
}

@media (max-width: 568px) {
  #special_offer .special_offer__content_wrapper {
    display: block;
  }
  .special_offer__text {
    padding-left: 0 !important;
  }
}

/* Iphone Mockup
--------------------------------------------- */
.iphone_mockup__wrapper {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-width: 365px;
}

.iphone_mockup__wrapper :where(video, figure) {
  margin: 0;
}

.iphone_mockup.front {
  position: absolute;
  z-index: 3;
  top: 1.9%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.iphone_mockup.video {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 96%;
  overflow: hidden;
  border-radius: 40px;
}

.iphone_mockup.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .iphone_wrapper_with_text {
    flex-direction: column;
  }

  .iphone_wrapper_with_text .iphone_mockup__wrapper {
    margin-bottom: 1.5rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
