/*
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.
*/

/* * Fonts
* --------------------------------------------- */
/* tiempos-text-regular - latin */
@font-face {
  font-family: 'Tiempos';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/wp-content/themes/bsTheme/assets/fonts/tiempos/tiempos-text-regular.woff2')
    format('woff2');
}

/* tiempos-headline-light - latin */
@font-face {
  font-family: 'Tiempos';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('/wp-content/themes/bsTheme/assets/fonts/tiempos/tiempos-headline-light.woff2')
    format('woff2');
}

/* tiempos-headline-light-italic - latin */
@font-face {
  font-family: 'Tiempos';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url('/wp-content/themes/bsTheme/assets/fonts/tiempos/tiempos-headline-light-italic.woff2')
    format('woff2');
}

/* tiempos-headline-semibold-italic - latin */
@font-face {
  font-family: 'Tiempos';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('/wp-content/themes/bsTheme/assets/fonts/tiempos/tiempos-headline-semibold-italic.woff2')
    format('woff2');
}

/* neusa-neu-regular - latin */
@font-face {
  font-family: 'Neusa Neu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/wp-content/themes/bsTheme/assets/fonts/neusa-neu-compact/medium/font.woff2')
      format('woff2'),
    url('/wp-content/themes/bsTheme/assets/fonts/neusa-neu-compact/medium/font.woff')
      format('woff');
}

/* * Base
* --------------------------------------------- */
: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: 2px solid var(--cDark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--b-radius-50);
  padding: 0.5rem 2.5rem;
  transition: 0.3s all ease;
  width: fit-content;
  outline: none;
}

.cta__default:hover,
.cta__default:focus {
  background-color: var(--cDark);
  color: var(--cWhite);
}

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

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

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

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

.cta__default.filled {
  background: var(--cDark) !important;
  color: var(--cLight) !important;
}

.cta__default.filled:hover,
.cta__default.filled:focus {
  background-color: var(--cLight) !important;
  color: var(--cDark) !important;
}

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

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

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

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

.cta__default.light:hover,
.cta__default.light:focus {
  background-color: var(--cLight);
  color: var(--cOrange) !important;
}

.cta__default.light:hover svg path,
.cta__default.light:focus svg path {
  stroke: var(--cDark);
}

.basicbtn__wrapper.small .cta__default.light {
  font-size: 18px;
  padding-inline: 1.5rem;
}

@media (max-width: 1512px) {
  .basicbtn__wrapper.small .cta__default.light {
    font-size: 15px;
  }
}

/* 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,
.cta__simple:focus svg {
  transform: translateX(0.35rem);
}

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

/* Icon Only ------------------ */
.cta__icon_only,
.cta__icon_only svg * {
  transition: 0.3s all ease;
}

.cta__icon_only svg {
  transform: rotate(0deg);
  transition: 0.3s all ease;
}

.cta_parent:hover .cta__icon_only svg,
.cta__icon_only:hover svg,
.cta_parent:focus .cta__icon_only svg,
.cta__icon_only:focus svg {
  transform: rotate(45deg);
}

/* .cta_parent:hover .cta__icon_only,
.cta__icon_only.roll:hover,
.cta_parent:focus .cta__icon_only,
.cta__icon_only.roll:focus {
  transform: translateX(0.5rem);
} */

.cta_parent:hover .cta__icon_only.orange svg circle,
.cta__icon_only.orange:hover svg circle,
.cta_parent:focus .cta__icon_only.orange svg circle,
.cta__icon_only.orange:focus svg circle {
  fill: var(--cOrange);
}

/* Return ------------------ */
#return {
  padding: 0;
  border: none;
  outline: 0;
  background-color: transparent;
  font-family: var(--family-headline);
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  font-size: 1rem;
}

#return span {
  transform: translateY(0.05rem);
  transition: 0.3s all ease;
  border-bottom: 2px solid transparent;
}

#return:hover span,
#return:focus span {
  border-bottom: 2px solid var(--cDark);
}

/* * Site Header
* --------------------------------------------- */
.site__header {
  --site-header-height: 3rem;
  position: fixed;
  top: -2px;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.3s all ease;
  height: var(--site-header-height);
  display: flex;
  align-items: center;
  isolation: isolate;
}

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

body:not(.beginning, .navOpen) .site__header:not(.hide) {
  background-color: var(--cLight);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

body:not(.beginning, .navOpen) .site__header:not(.hide) * {
  color: var(--cDark);
}

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

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

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

@media (min-width: 2200px) {
  .site__header {
    --site-header-height: 3rem;
  }
}

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

  /* .site__header {
    --site-header-height: 3.5rem;
  } */
}

/* * 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%;
}

@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: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all 0.3s ease;
  background-color: transparent;
  font-family: var(--family-headline);
}

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

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

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

.navigation__text {
  padding-left: 1rem;
  color: var(--cLight);
  text-align: left;
  width: clamp(100px, 10vw, 235px);
}

body:not(.home, .navOpen) :is(.navigation__text, .pretendLangSwitch) {
  color: var(--cDark);
}

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

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

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

.navOpen .hamburger__line:nth-of-type(2) {
  transform: translateY(-0.35rem) rotate(-45deg);
  margin: 0;
  background-color: var(--cLight);
  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;
}

@media (max-width: 576px) {
  .homeStoreFilterWrapper .secInd {
    transform: translateY(0.35rem);
  }
}

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

#navOverlayContainer.openOverlay {
  opacity: 1;
  top: 0;
  pointer-events: all;
}

.menu_width {
  width: clamp(350px, 65vw, 1600px);
}

#navOverlayContainer * {
  color: var(--cLight);
}

/* #navOverlayContainer :is(.addressStreet, .addressZip, .addressCity) {
  font-size: 18px;
} */

.nav_overlay__background {
  z-index: 8;
  background-color: transparent;
  width: 100%;
  height: 70%;
  position: fixed;
  opacity: 1;
  left: 0;
  transform: translateY(-100%);
  top: 0;
  transition: 0.3s height ease;
  isolation: isolate;
}

.nav_overlay__background::before {
  content: '';
  inset: 0 0 auto 0;
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: var(--cOrange);
}

.nav_overlay__background svg {
  width: 200%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: -100%;
  transform: translateX(25%);
}

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

@keyframes nav_background_active {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

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

@keyframes nav_background_inactive {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@media (max-width: 1400px) {
  .nav_overlay__background {
    height: 80%;
  }
}

@media (max-height: 800px) and (min-width: 993px) {
  .nav_overlay__background {
    height: 80%;
  }

  .hero_word_mark {
    width: clamp(200px, 30vw, 1600px);
  }
}

@media (max-width: 992px) {
  .nav_overlay__background {
    height: 90%;
  }
}

@media (max-width: 576px) {
  .nav_overlay__background {
    height: 110%;
  }
}

@media (max-width: 576px) {
  /*  .wp-block-group */
  #navOverlayContainer.openOverlay {
    height: calc(var(--vh, 1vh) * 100); /* Fix for mobile */
    overflow-y: auto; /* or scroll */
    -webkit-overflow-scrolling: touch;
  }

  #navOverlayContainer.openOverlay > .wp-block-group {
    height: 900px;
  }
}

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

.menu__list_main li {
  margin-bottom: 0.2rem;
}

.menu__list_main a {
  color: var(--cLight);
  transition: 0.3s all ease;
  position: relative;

  padding-left: 0;
}

.menu__list_main a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  height: 3px;
  width: 0;
  background-color: var(--cLight);
  transition: 0.3s all ease;
}

.menu__list_main a:hover::before {
  width: 100%;
}

/* Menu Peripherals */
.menu__peripherals {
  opacity: 1;
  gap: 0;
}

#navOverlayContainer
  :is(.addressStreet, .addressZip, .addressCity, .opening_hours_font) {
  font-size: 16px;
}

@media (min-width: 1401px) {
  .menu_col_main {
    width: 40%;
  }

  .menu__peripherals {
    width: 20%;
  }
}

@media (max-width: 1200px) {
  #navOverlayContainer {
    padding-top: 100px;
    align-items: flex-start;
  }

  #navOverlayContainer.openOverlay {
    padding-top: 80px;
  }

  .menu__list_main a {
    font-size: 2.5rem !important;
  }

  .menu_width {
    width: clamp(350px, 75vw, 1600px);
  }
}

@media (max-width: 576px) {
  #colophon br.contactadress_break {
    display: none !important;
  }
}

/* * 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 {
  width: calc(100% - 2rem);
  max-width: 20rem;
}

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

.singleStoreContent hr {
  margin-top: 3rem;
  margin-bottom: 2rem;
  border: none;
  opacity: 1;
  background-color: var(--cDark);
  height: 2px;
}

.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;
  }

  footer .wp-block-spacer {
    height: 0px !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.5rem;
  width: auto;
}

.socialMediaItem.light svg path {
  fill: var(--cLight);
}

.socialMediaItem.light svg circle:nth-of-type(2) {
  stroke: var(--cLight);
}

.socialMediaItem.light a[title='LinkedIn'] svg #bxl-linkedin > circle {
  fill: var(--cLight);
}

body .site__header .socialMediaItem {
  margin-right: 0.15rem !important;
}

body .site__header .socialMediaItem svg {
  width: 1.5rem !important;
  height: auto !important;
}

:is(.page-id-776, #colophon) .socialMediaItem svg {
  width: 2rem;
  height: 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(--cOrange); /* Background color of the selection */
  color: var(--cDark); /* Text color of the selection */
}

/* For Firefox */
::-moz-selection {
  background: var(--cOrange); /* 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;
}

.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 {
  filter: brightness(0.85);
}

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

.leaflet-container img.leaflet-image-layer,
.leaflet-pane > svg :is(path, polygon) {
  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: 1rem;
  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: 1rem;
}
.inputFieldArea label {
  font-size: 1rem;
}

.inputFieldWrap input {
  font-size: 1rem;
  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;
}

.contact__end {
  margin-top: 3rem;
  margin-bottom: -10rem;
  width: 100%;
}

.contact__end img {
  width: 100%;
}

@media (max-width: 576px) {
  .contact__end {
    margin-top: 1.5rem;
    margin-bottom: -5rem;
  }
}

/* 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
--------------------------------------------- */
.sticky_bottom {
  position: sticky;
  top: 85vh;
}

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

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

.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;
}

.footer__middle {
  background: linear-gradient(
    0deg,
    rgba(236, 205, 194, 1) 0%,
    rgba(232, 216, 208, 1) 100%
  );
}

.footerLastRow {
  font-size: 16px;
  font-weight: var(--fw-semibold);
}

.footer_word_mark {
  width: clamp(300px, 75vw, 1600px);
  transform: translateY(-50%);
}

.footer_word_mark img {
  width: 100%;
}

.footer_img.background {
  overflow: hidden;
  margin-block: 0rem;
}

.footer_img.background img {
  width: 100%;
}

.footer_img.logo {
  position: absolute;
  top: 0;
  right: 6rem;
  transform: rotate(14deg) translateY(-50%);
  width: clamp(125px, 11vw, 250px);
}

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

@media (max-width: 768px) {
  .footer_img.background img {
    max-width: 200%;
    width: 200%;
    margin-left: -50%;
  }

  .footer_img.background img {
    max-width: 100%;
    width: 100%;
    margin-left: 0%;
  }
}

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

  .footer_img.logo {
    top: -2rem;
  }
}

/* * Store Preview
* --------------------------------------------- */
.store_preview__group {
  isolation: isolate;
}

.store_preview__gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  z-index: -1;
  margin: 0;
}

.store_preview__gradient.left::after,
.store_preview__gradient.right::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 10%;
  display: block;
  background: linear-gradient(
    0deg,
    rgba(231, 223, 217, 1) 50%,
    rgba(231, 223, 217, 0) 100%
  );
  width: 100%;
}

.store_preview__gradient.left {
  left: 0;
  display: flex;
}

.store_preview__gradient.left img {
  height: 100%;
  width: 100%;
}

.store_preview__gradient.right {
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.store_preview__gradient.right img {
  height: 100%;
  width: 100%;
}

@media (max-width: 576px) {
  .store_preview__gradient {
    width: 120%;
  }

  .store_preview__gradient.left {
    left: -40%;
  }

  .store_preview__gradient.right {
    right: -40%;
  }
}

/* * Header ------------------ */
.site__header .contact_cta_header a {
  color: var(--cDark) !important;
  font-family: var(--family-headline) !important;
  font-weight: var(--fw-medium) !important;
  font-size: 1rem !important;
  transition: 0.3s all ease;
}

body.beginning .site__header .contact_cta_header a {
  color: var(--cLight) !important;
}

body .site__header .contact_cta_header a:hover {
  color: var(--cOrange) !important;
}

body:not(.home, .navOpen).beginning .site__header .contact_cta_header a {
  color: var(--cDark) !important;
}

body:not(.home).navOpen .site__header .contact_cta_header a:hover {
  color: var(--cDark) !important;
}

/* 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) {
  /* .single-store .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-medium) !important;
  font-family: var(--family-headline);
}

#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 a {
  transition: 0.3s all ease;
}

body:not(.beginning, .navOpen) #lang-switch a {
  color: var(--cDark) !important;
}

#lang-switch a:not(.trp-ls-shortcode-disabled-language):hover {
  color: var(--cOrange) !important;
}

body.navOpen #lang-switch a:not(.trp-ls-shortcode-disabled-language):hover {
  color: var(--cDark) !important;
}

#lang-switch a {
  color: var(--cDark) !important;
}

#lang-switch .trp-ls-shortcode-language * {
  font-size: 1rem !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 {
  background: var(--cLight);
}

body:not(.beginning, .navOpen)
  #lang-switch
  .trp-ls-shortcode-disabled-language::after {
  background: var(--cDark);
}

@media (max-width: 576px) {
  #lang-switch .trp-ls-shortcode-language {
    width: 50px !important;
    transform: translateX(0.25rem);
  }

  #lang-switch .trp-language-switcher > div > a {
    padding: 3px 8px;
  }
}
#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;
  }
}

/* * TACHELES EXCLUSIVE CSS
* --------------------------------------------- */
/* * Parallax ------------------ */

.img_parallax_wrapper {
  position: relative;
  isolation: isolate;
}

.img_parallax_item {
  will-change: transform;
  transition: transform 0.1s linear;
  pointer-events: none;
  z-index: -1;
}

.intro_img.small {
  position: absolute;
  top: -3rem;
  right: 3rem;
  max-width: clamp(100px, 10vw, 150px);
}

@media (min-width: 769px) {
  .intro_img.big {
    margin-top: -3rem;
  }
}

/* * Pills ------------------ */
.pill {
  padding: 0.1rem 0.75rem;
  padding-bottom: 0rem !important;
  border-radius: 50px;
  text-transform: uppercase;
  color: var(--cDark);
  background-color: var(--cWhite);
  width: fit-content;
  margin: 0 0.3rem 0.35rem 0;
  font-family: var(--family-headline);
  font-weight: var(--fw-medium);
  font-size: 16px;
  border: 2px solid var(--cWhite);
}

.pill.grey {
  background-color: var(--cGrey);
  border: 2px solid var(--cGrey);
}

.pill.outline {
  background: transparent;
  border: 2px solid var(--cDark);
}

/* * Lists ------------------ */
.footer_list {
  padding: 0;
  list-style: none;
}

.footer_list li {
  margin-bottom: 0.25rem;
}

.footer_list a {
  position: relative;
}

.footer_list a::after {
  position: absolute;
  content: '';
  width: 0;
  height: 3px;
  background: var(--cDark);
  bottom: 6px;
  left: 0;
  opacity: 0;
  transition: 0.3s all ease;
}

.footer_list a:hover::after {
  opacity: 1;
  width: 100%;
}

@media (max-width: 576px) {
  .footer_list a {
    font-size: 1.55rem;
  }

  .footer_list a::after {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    background: var(--cDark);
    bottom: 2px;
    left: 0;
    opacity: 0;
    transition: 0.3s all ease;
  }
}

/* * Opening Hours ------------------ */
.opening_hours {
  background: var(--cGreyLight);
  font-family: var(--family-headline);
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  color: var(--cDark);
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-size: 18px;
  width: fit-content;
}

.opening_hours__indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}

.opening_hours__indicator.open {
  background: var(--cGreen);
}
.opening_hours__indicator.closed {
  background: var(--cRed);
}

/* * Wordmark
* --------------------------------------------- */
.hero_word_mark {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: clamp(250px, 70vw, 1600px);
  transition: 0.3s all ease;
}

.hero_word_mark a {
  width: 100%;
  height: 100%;
  display: block;
}

.hero_word_mark :is(img, svg) {
  width: 100%;
  height: auto;
}

body:not(.beginning, .navOpen) .site__header .hero_word_mark {
  width: 250px;
  margin-top: 0.5rem;
}

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

body:not(.home, .navOpen) .site__header .hero_word_mark svg path {
  fill: var(--cGrey);
}

body:not(.beginning, .navOpen) .site__header .hero_word_mark svg path {
  fill: var(--cDark);
}

@media (min-width: 200px) {
  .hero_word_mark {
    width: clamp(200px, 4vw, 1600px);
  }
}

@media (min-width: 1200px) {
  .hero_word_mark {
    width: clamp(200px, 65vw, 1600px);
  }
}

@media (max-width: 576px) {
  .homeHero {
    height: calc(85vh - 3rem);
    min-height: 576px;
  }

  .hero_word_mark {
    top: 0px;
  }

  body:not(.beginning, .navOpen) .site__header .hero_word_mark {
    width: 200px;
    margin-top: 0.5rem;
  }
}

/* * Archives
* --------------------------------------------- */
.archive_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.archive_grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.archive_item__preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cOrange);
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
  border-radius: var(--b-radius-reg);
  pointer-events: none;
}

.archive_item {
  width: 100%;
  height: 100%;
}

.archive_item a {
  display: block;
  height: 100%;
}

.archive_item * {
  max-width: 100%;
  outline: none;
  box-sizing: border-box;
}

.archive_item h3 {
  /* word-break: break-word;
  overflow-wrap: break-word; */
  hyphens: auto;
}

.archive_item:not(.loaded) .archive_item__preloader {
  animation: fade 3s ease infinite;
}

@keyframes fade {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.7;
  }
}

.archive_item.loaded .archive_item__preloader {
  opacity: 0;
}

.archive_item__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 2;
  transition: 0.6s all ease;
  transform: scale(1);
  filter: brightness(0.65);
}

.archive_item:hover .archive_item__image,
.archive_item a:focus .archive_item__image {
  transform: scale(1.1);
}
.archive_item[data-item-id='1582'] .archive_item__logo {
  max-width: 180px;
}
.archive_item[data-item-id='1570'] .archive_item__logo {
  max-width: 230px;
}
.archive_item__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-width: 83%;
  z-index: 3;
}

.archive_nav.right {
  transform: rotate(180deg);
}

.page-numbers.prev {
  margin-right: 0.5rem;
}

.page-numbers.next {
  margin-left: 0.5rem;
}

.archive_item__image {
  aspect-ratio: 1.1/1;
}

.opening_hours.archive {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.archive_item hr {
  margin: 0;
  border: none;
  height: 2px;
  background: var(--cDark);
  width: 100%;
  opacity: 1;
  margin-top: 1rem;
  order: 4;
  flex-basis: 100%;
}

.archive_grid .arrow_wrapper {
  flex-basis: 10%;
  order: 3;
  display: flex;
  justify-content: flex-end;
}

.archive_grid .arrow {
  width: 2.5rem;
  height: auto;
  transform: rotate(-45deg);
}

.archive_grid.news .arrow_wrapper {
  justify-content: flex-start;
}

/* Archive Filters */
.filter {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 1200px) {
  .archive_grid,
  .archive_grid.four {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .archive_grid,
  .archive_grid.four {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .archive_grid,
  .archive_grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .archive_grid,
  .archive_grid.four {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Default hero */
.hero_main_img__wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero_main_img {
  width: 39.2%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero_main_img__deco {
  min-width: 120%;
  margin-left: -10%;
  transform: scale(1.005);
}

@media (max-width: 768px) {
  .hero_main_img {
    width: 65.3%;
  }

  .hero_main_img__deco {
    min-width: 200%;
    margin-left: -50%;
  }
}

/* * Quickshare ------------------ */
.quickshare__wrapper a {
  outline: none;
  transition: 0.3s all ease;
  border-radius: 50px;
  border: 2px solid transparent;
}

.quickshare__wrapper a:focus,
.quickshare__wrapper a:hover {
  border-color: var(--cOrange);
}

/* * Hero Spacer ------------------ */
@media (min-width: 1920px) {
  .spacer.logo {
    padding-top: 8rem !important;
  }
}

/* * Translation ------------------ */
.notranslate {
  translate: no; /* Newer browsers */
}

@media (max-width: 576px) {
  .br-mobile-false-sm br {
    display: none !important;
  }
}

.eventPage.beginning #masthead .hero_word_mark {
  opacity: 0 !important;
}

.eventPage .hamburger__line {
  background: var(--cDark);
}

.mw-1100 {
  max-width: 1100px;
  margin: 0 auto;
}

.mw-900 {
  max-width: 992px;
  margin: 0 auto;
}

.f-larger {
  font-size: 1.3rem;
  line-height: 1.25;
}
@media (min-width: 1680px) {
  .mw-1100 {
    max-width: 1220px;
  }
  .mw-900 {
    max-width: 1000px;
  }
}

.comingsoonheaderquery {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
}
.comingsoonheaderquery svg {
  max-width: 100px;
}

.eventPage .footer_word_mark {
  filter: brightness(3);
}

.eventPage .footer__middle {
  background: var(--cOrange);
}

@media (max-width: 576px) {
  .event_logo_row figure {
    max-width: 30%;
  }
  .brlbs-cpmnt-dialog-bar-main * {
    font-size: 13px !important;
  }
}

/* * 
* --------------------------------------------- */
body #trp_ald_modal_popup {
  background-color: var(--cLight);
  border: none;
  border-radius: var(--b-radius-reg);
}

body #trp_ald_popup_change_language {
  background: var(--cDark);
  border-color: var(--cDark);
  transition: 0.3s all ease;
  color: var(--cLight) !important;
}

body #trp_ald_popup_change_language:hover {
  background: #000;
  border-color: #000;
}

body .trp_ald_ls_container .trp-language-switcher-container > div {
  padding-top: 0.5rem;
}

body #trp_ald_x_button_textarea {
  color: var(--cDark) !important;
}

body #trp_ald_modal_popup #trp_ald_x_button {
  display: none !important;
}

body .trp_ald_ls_container .trp-ls-shortcode-language > div:hover {
  background: var(--cOrange) !important;
  color: var(--cLight) !important;
}

body .trp_ald_ls_container .trp-ald-popup-select {
  padding-left: 5px;
}
