:root {
  --red: #E55457;
  --red-light: #F3B2B4;
  --green: #85d5ba;
  --greenLight: #B6E5D4;
  --greenDark: #73CAB2;
  --greenDark2: #219E90;
  --greenDark3: #176f65;
  --orange: #EDBC83;
  --orangeLight: #F7E1C7;
  --brown: #A3765B;
  --brownLight: #E0BEB0;
  --blue: #73C9E3;
  --blueDark: #4285f4;
  --yellow: #FBBA00;
  --gray: #7C7B7B;
  --grayDark: #222;
  --grayLight: rgb(124, 123, 123);
  --grayLight2: rgb(164, 164, 164);
  --grayLight3: rgb(222, 232, 236);
  --white: #ffffff;
  --mud-typography-default-size: inherit !important;
  --mud-typography-default-letterspacing: inherit !important;
  --mud-typography-default-lineheight: inherit !important;
  --mud-typography-default-family: inherit !important;
}

:root {
  --red: #E55457;
  --red-light: #F3B2B4;
  --green: #85d5ba;
  --greenLight: #B6E5D4;
  --greenDark: #73CAB2;
  --greenDark2: #219E90;
  --greenDark3: #176f65;
  --orange: #EDBC83;
  --orangeLight: #F7E1C7;
  --brown: #A3765B;
  --brownLight: #E0BEB0;
  --blue: #73C9E3;
  --blueDark: #4285f4;
  --yellow: #FBBA00;
  --gray: #7C7B7B;
  --grayDark: #222;
  --grayLight: rgb(124, 123, 123);
  --grayLight2: rgb(164, 164, 164);
  --grayLight3: rgb(222, 232, 236);
  --white: #ffffff;
  --mud-typography-default-size: inherit !important;
  --mud-typography-default-letterspacing: inherit !important;
  --mud-typography-default-lineheight: inherit !important;
  --mud-typography-default-family: inherit !important;
}

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.4));
}
header .inner {
  width: 100%;
  max-width: calc(100% - 2rem);
  position: relative;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 1rem;
  background-color: #85d5ba;
  height: 100%;
  padding: 0.25rem;
}
header .inner #nav-toggle {
  all: unset;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1rem;
  color: white;
  padding: 0.5em;
}
header .inner #nav-logo {
  position: fixed;
  top: 3rem;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  height: 4rem;
  transition: 0.3s ease-in-out;
  opacity: 1;
}
header .inner #nav-logo img {
  height: 100%;
  width: auto;
}
header .inner #nav-logo.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}
header .inner #nav-shop-name {
  position: absolute;
  top: 3rem;
  right: 0;
  font-size: 0.8rem;
  padding: 0.75em;
  min-width: -moz-max-content;
  min-width: max-content;
  border-bottom-left-radius: 0.75em;
  border-bottom-right-radius: 0.75em;
  color: #ffffff;
}
header .inner .social-icons {
  display: flex;
  justify-content: center;
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  header .inner .social-icons {
    display: none;
  }
}
header .inner #nav-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
}
@media (min-width: 800px) {
  header .inner #nav-menu {
    left: unset;
    width: 100%;
    max-width: 300px;
  }
}
header .inner #nav-menu.show {
  grid-template-rows: 1fr;
}
header .inner #nav-menu ul {
  padding-left: 0;
  list-style: none;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #176f65;
}
header .inner #nav-menu ul li {
  margin-left: 0;
}
header .inner #nav-menu ul li:last-child > * {
  border-bottom: none;
}
header .inner #nav-menu ul li a, header .inner #nav-menu ul li button {
  border-bottom: 1px solid white;
  padding: 0.5rem 2rem;
  color: white;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  width: 100%;
  text-align: right;
}
header .inner #nav-menu ul li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (min-width: 800px) {
  header .inner #nav-menu ul li {
    text-align: right;
  }
}

#bottom-nav {
  position: fixed;
  top: calc(100vh - 3rem);
  top: calc(100dvh - 3rem);
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  color: white;
  background-color: #219E90;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
}
#bottom-nav > a {
  border-radius: 0.5rem;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  width: 1em;
  height: 1em;
  color: white !important;
}
#bottom-nav > a.active {
  background-color: #73CAB2;
}
#bottom-nav > a i {
  font-size: 0.6em;
}

:root {
  --red: #E55457;
  --red-light: #F3B2B4;
  --green: #85d5ba;
  --greenLight: #B6E5D4;
  --greenDark: #73CAB2;
  --greenDark2: #219E90;
  --greenDark3: #176f65;
  --orange: #EDBC83;
  --orangeLight: #F7E1C7;
  --brown: #A3765B;
  --brownLight: #E0BEB0;
  --blue: #73C9E3;
  --blueDark: #4285f4;
  --yellow: #FBBA00;
  --gray: #7C7B7B;
  --grayDark: #222;
  --grayLight: rgb(124, 123, 123);
  --grayLight2: rgb(164, 164, 164);
  --grayLight3: rgb(222, 232, 236);
  --white: #ffffff;
  --mud-typography-default-size: inherit !important;
  --mud-typography-default-letterspacing: inherit !important;
  --mud-typography-default-lineheight: inherit !important;
  --mud-typography-default-family: inherit !important;
}

footer {
  color: white;
}
footer > .inner {
  width: 100%;
  max-width: 1400px;
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
footer .bottom-footer {
  position: relative;
  bottom: 0;
  background-color: #219E90;
  padding: 1.5rem 0;
  padding-bottom: 6rem;
  padding-bottom: calc(4.65rem + 100vh - 100dvh);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  footer .bottom-footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}
footer a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5rem;
}
footer a:hover {
  opacity: 0.8;
}

:root {
  --red: #E55457;
  --red-light: #F3B2B4;
  --green: #85d5ba;
  --greenLight: #B6E5D4;
  --greenDark: #73CAB2;
  --greenDark2: #219E90;
  --greenDark3: #176f65;
  --orange: #EDBC83;
  --orangeLight: #F7E1C7;
  --brown: #A3765B;
  --brownLight: #E0BEB0;
  --blue: #73C9E3;
  --blueDark: #4285f4;
  --yellow: #FBBA00;
  --gray: #7C7B7B;
  --grayDark: #222;
  --grayLight: rgb(124, 123, 123);
  --grayLight2: rgb(164, 164, 164);
  --grayLight3: rgb(222, 232, 236);
  --white: #ffffff;
  --mud-typography-default-size: inherit !important;
  --mud-typography-default-letterspacing: inherit !important;
  --mud-typography-default-lineheight: inherit !important;
  --mud-typography-default-family: inherit !important;
}

:root {
  --gradient-deg: 90deg;
  --swiper-theme-color: #85d5ba !important;
  --mud-palette-primary: #176f65 !important;
  --mud-palette-primary-hover: #e9f8f2 !important;
  --mud-palette-primary-light: #B6E5D4 !important;
  --mud-palette-primary-dark: #73CAB2 !important;
  --mud-palette-primary-darken: #73CAB2 !important;
  --mud-palette-secondary: #E55457 !important;
  --mud-palette-secondary-light: #F3B2B4 !important;
}

.mud-dialog-container {
  padding: 1rem;
}

.mud-input.mud-input-filled {
  background-color: rgb(222, 232, 236);
}

#body .Green {
  color: white;
  background-color: #85d5ba;
}
#body .GreenText {
  color: #85d5ba;
}
#body .GreenLight {
  color: white;
  background-color: #B6E5D4;
}
#body .GreenLightText {
  color: #B6E5D4;
}
#body .GreenDark {
  color: white;
  background-color: #73CAB2;
}
#body .GreenGradient {
  color: white;
  background: linear-gradient(var(--gradient-deg), #73CAB2, #85d5ba);
}
#body .Red {
  color: white;
  background-color: #E55457;
}
#body .RedText {
  color: #E55457;
  background-color: white;
}
#body .RedLight {
  color: white;
  background-color: #F3B2B4;
}
#body .RedGradient {
  color: white;
  background: linear-gradient(var(--gradient-deg), #E55457, #F3B2B4);
}
#body .Brown {
  color: white;
  background-color: #A3765B;
}
#body .BrownLight {
  color: white;
  background-color: #E0BEB0;
}
#body .BrownGradient {
  color: white;
  background: linear-gradient(var(--gradient-deg), #A3765B, #F7E1C7);
}
#body .Orange {
  color: white;
  background-color: #EDBC83;
}
#body .OrangeText {
  color: #EDBC83;
}
#body .OrangeLight {
  color: white;
  background-color: #F7E1C7;
}
#body .OrangeGradient {
  color: white;
  background: linear-gradient(var(--gradient-deg), #EDBC83, #F7E1C7);
}
#body .White {
  color: #222;
  background-color: #ffffff;
}
#body .WhiteText {
  color: white;
}
#body .GrayLight3 {
  color: rgb(222, 232, 236);
}
#body .Transparent {
  background-color: transparent;
}

#product-catalog {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
#product-catalog .swiper-container {
  padding-top: 2rem;
}
#product-catalog .mud-chipset .mud-icon-size-small {
  font-size: 0.8rem;
}
#product-catalog .mud-chipset .mud-chip .mud-chip-icon {
  margin-inline-end: 8px;
}
#product-catalog .mud-chipset .mud-icon-root {
  width: unset;
  height: unset;
}

.product-filters {
  margin: 0 auto !important;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}
@media (max-width: 768px) {
  .product-filters {
    grid-template-columns: 1fr auto auto;
  }
}

.product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 1rem;
  gap: 1rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}
#product-catalog .product-card {
  width: 240px;
}
.product-card > * {
  flex-grow: 0;
  margin: 0 auto;
  z-index: 2;
}
.product-card > *:last-child {
  margin-top: auto;
}
.product-card .product-image {
  position: relative;
  padding-top: 100%;
  width: 100%;
}
.product-card .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.product-card .product-image .product-surface {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 25%;
  border-radius: 100%;
  z-index: 0;
}
.product-card .title {
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  position: relative;
  font-weight: 600;
  margin: auto 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.33;
}
.product-card .nutritions,
.product-card .allergies {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  width: 100%;
}
.product-card .nutritions > div,
.product-card .allergies > div {
  display: inline-flex;
  gap: 2rem;
  justify-content: space-between;
}
.product-card .zusatzstoffe {
  text-align: left !important;
  margin: 0;
}
.product-card .bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.product-card .bottom-row > a {
  border-bottom-left-radius: 1rem;
}
.product-card .bottom-row .price {
  font-size: 2rem;
  color: white;
  font-weight: 600;
}

.swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 3rem;
  position: relative;
}
.swiper-container::after, .swiper-container::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background-image: linear-gradient(to right, white 2rem, transparent 8rem);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 768px) {
  .swiper-container::after, .swiper-container::before {
    display: none;
  }
}
.swiper-container::before {
  background-image: linear-gradient(to left, white 2rem, transparent 8rem);
}
.swiper-container:has(.swiper-wrapper:empty) {
  display: none;
}

.swiper-slide {
  height: 380px;
  width: auto;
}

.swiper-pagination {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
@media (max-width: 768px) {
  .swiper-pagination {
    display: none;
  }
}

[class^=swiper-button-] {
  z-index: 10;
}
@media (max-width: 768px) {
  [class^=swiper-button-] {
    display: none;
  }
}

#body .dialog-close {
  font-size: 2rem;
  position: sticky;
  z-index: 100;
  top: 10px;
  left: 83%;
  transform: unset;
  height: 1.5em;
  min-height: 1.5em;
  width: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E55457;
  color: white;
  padding: 0;
  margin: 0;
}
#body .dialog-close i, #body .dialog-close svg {
  margin: 0;
  padding: 0;
}
#body .dialog-close + * {
  margin-top: -2rem;
}

.shopcart {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.shopcart .shopcart-item {
  display: grid;
  grid-template-columns: 200px auto;
  gap: 2rem;
}
@media (max-width: 768px) {
  .shopcart .shopcart-item {
    grid-template-columns: 1fr;
  }
}
.shopcart .shopcart-item > .left {
  min-height: 200px;
  position: relative;
}
.shopcart .shopcart-item > .left img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.shopcart .shopcart-item > .right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shopcart .shopcart-item > .right > * {
  margin: 0;
}
.shopcart .shopcart-item > .right .price-and-quantity {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.shopcart .shopcart-item > .right .price-and-quantity .price {
  font-size: 1.5rem;
  font-weight: 600;
}

:root {
  --red: #E55457;
  --red-light: #F3B2B4;
  --green: #85d5ba;
  --greenLight: #B6E5D4;
  --greenDark: #73CAB2;
  --greenDark2: #219E90;
  --greenDark3: #176f65;
  --orange: #EDBC83;
  --orangeLight: #F7E1C7;
  --brown: #A3765B;
  --brownLight: #E0BEB0;
  --blue: #73C9E3;
  --blueDark: #4285f4;
  --yellow: #FBBA00;
  --gray: #7C7B7B;
  --grayDark: #222;
  --grayLight: rgb(124, 123, 123);
  --grayLight2: rgb(164, 164, 164);
  --grayLight3: rgb(222, 232, 236);
  --white: #ffffff;
  --mud-typography-default-size: inherit !important;
  --mud-typography-default-letterspacing: inherit !important;
  --mud-typography-default-lineheight: inherit !important;
  --mud-typography-default-family: inherit !important;
}

#menucard-grid {
  display: grid;
  gap: min(2rem, 5vw);
  color: white;
  grid-template-columns: repeat(auto-fill, minmax(clamp(130px, 21vw, 250px), 1fr));
}
#menucard-grid a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: min(2rem, 5vw);
}
#menucard-grid a img {
  width: 30%;
  aspect-ratio: 1/1;
}
#menucard-grid a span {
  text-transform: uppercase;
  font-size: clamp(1rem, 3vw, 1.3rem);
}

:root {
  --red: #E55457;
  --red-light: #F3B2B4;
  --green: #85d5ba;
  --greenLight: #B6E5D4;
  --greenDark: #73CAB2;
  --greenDark2: #219E90;
  --greenDark3: #176f65;
  --orange: #EDBC83;
  --orangeLight: #F7E1C7;
  --brown: #A3765B;
  --brownLight: #E0BEB0;
  --blue: #73C9E3;
  --blueDark: #4285f4;
  --yellow: #FBBA00;
  --gray: #7C7B7B;
  --grayDark: #222;
  --grayLight: rgb(124, 123, 123);
  --grayLight2: rgb(164, 164, 164);
  --grayLight3: rgb(222, 232, 236);
  --white: #ffffff;
  --mud-typography-default-size: inherit !important;
  --mud-typography-default-letterspacing: inherit !important;
  --mud-typography-default-lineheight: inherit !important;
  --mud-typography-default-family: inherit !important;
}

.shopinfo-openings > * {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.shopinfo-openings > * i {
  margin-right: 0.5em;
}

:root {
  --red: #E55457;
  --red-light: #F3B2B4;
  --green: #85d5ba;
  --greenLight: #B6E5D4;
  --greenDark: #73CAB2;
  --greenDark2: #219E90;
  --greenDark3: #176f65;
  --orange: #EDBC83;
  --orangeLight: #F7E1C7;
  --brown: #A3765B;
  --brownLight: #E0BEB0;
  --blue: #73C9E3;
  --blueDark: #4285f4;
  --yellow: #FBBA00;
  --gray: #7C7B7B;
  --grayDark: #222;
  --grayLight: rgb(124, 123, 123);
  --grayLight2: rgb(164, 164, 164);
  --grayLight3: rgb(222, 232, 236);
  --white: #ffffff;
  --mud-typography-default-size: inherit !important;
  --mud-typography-default-letterspacing: inherit !important;
  --mud-typography-default-lineheight: inherit !important;
  --mud-typography-default-family: inherit !important;
}

.mapContainer {
  width: 100%;
}

#map {
  width: 100%;
  height: 100%;
}
#map [role=dialog] {
  padding: 0.7rem !important;
}
#map [role=dialog] .gm-style-iw-chr {
  display: none !important;
}

#shopfinder-wrapper {
  color: #7C7B7B;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  #shopfinder-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: stretch;
    height: 80vh;
    margin-top: 2rem;
  }
}
@media (max-width: 1200px) {
  #shopfinder-wrapper #map {
    height: 75vh;
  }
  #shopfinder-wrapper #shoplist {
    height: 350px !important;
  }
}
#shopfinder-wrapper #shoplist {
  padding: 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 0 !important;
}
#shopfinder-wrapper #shoplist #shopsearch-wrapper {
  width: 100%;
  position: relative;
  font-size: 1.5rem;
  color: rgb(164, 164, 164);
  border-bottom: 1px solid rgb(124, 123, 123);
  margin-bottom: 1rem;
}
#shopfinder-wrapper #shoplist #shopsearch-wrapper input {
  color: inherit;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  padding-left: 0;
  padding-right: 0;
  font-size: 1em;
  line-height: 1em;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent;
}
#shopfinder-wrapper #shoplist #shopsearch-wrapper input::-moz-placeholder {
  color: inherit !important;
}
#shopfinder-wrapper #shoplist #shopsearch-wrapper input::placeholder {
  color: inherit !important;
}
#shopfinder-wrapper #shoplist #shopsearch-wrapper i {
  display: block;
  color: inherit;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1em;
  display: flex;
  align-items: center;
}
#shopfinder-wrapper #shoplist #Shopfinder {
  transition: height 0.5s ease-in-out;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding-bottom: 6rem;
}
#shopfinder-wrapper #shoplist #Shopfinder #sidebar > *:first-child .searchResults {
  padding-top: 0px;
}
#shopfinder-wrapper #shoplist #Shopfinder #sidebar > *:last-child .searchResults {
  border-bottom: none;
}
#shopfinder-wrapper #shoplist #Shopfinder #sidebar .searchResults {
  display: grid;
  grid-template-columns: auto 1.5rem;
  gap: 1rem;
  padding-bottom: 0.7em;
  padding-top: 0.7em;
  border-bottom: 1px solid rgb(222, 232, 236);
}
#shopfinder-wrapper #shoplist #Shopfinder #sidebar .searchResults * {
  font-size: 0.8rem;
  padding: 0;
  margin: 0;
}
#shoptypes {
  width: -moz-max-content;
  width: max-content;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
  color: #7C7B7B;
}
@media (max-width: 768px) {
  #shoptypes {
    flex-direction: column;
    gap: 0.3rem;
  }
}
#shoptypes img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 0.5rem;
}

#shopfinder-shop-modal {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.5s;
  z-index: 1000;
}
#shopfinder-shop-modal.show {
  opacity: 1;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.5);
}
#shopfinder-shop-modal.show .inner {
  transform: translateY(0);
}
#shopfinder-shop-modal .inner {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #ffffff;
  margin: auto;
  position: relative;
  max-width: 700px;
  width: 100%;
  transform: translateY(50%);
  transition: 0.5s;
}
#shopfinder-shop-modal #close-shop {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
  transform: translate(50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
#shopfinder-shop-modal .inner-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#shopfinder-shop-modal .inner-content .shop-title h2 {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#shopfinder-shop-modal .inner-content .shop-title img {
  display: inline-block;
  height: 1.5em;
  width: auto;
}
#shopfinder-shop-modal .inner-content .shop-infos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  #shopfinder-shop-modal .inner-content .shop-infos {
    grid-template-columns: 1fr;
  }
}
#shopfinder-shop-modal .inner-content .shop-infos .shop-info {
  display: flex;
  flex-direction: column;
}
#shopfinder-shop-modal .inner-content .shop-times {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0rem 0.75rem;
}
#shopfinder-shop-modal .inner-content .shop-actions {
  display: flex;
  gap: 1rem;
  justify-content: start;
  flex-wrap: wrap;
}

.shop-tags .tags {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 600px) {
  .shop-tags .tags {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 430px) {
  .shop-tags .tags {
    grid-template-columns: 1fr;
  }
}
.shop-tags .tags .tag {
  --color: #176f65;
  -moz-text-align-last: left;
       text-align-last: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color);
  background-color: transparent;
  font-size: 1rem;
  pointer-events: none;
  color: var(--color);
}
.shop-tags .tags .tag:disabled {
  --color: #7C7B7B;
  opacity: 0.25;
}
.shop-tags .tags .tag i {
  font-size: 1rem;
}

:root {
  --red: #E55457;
  --red-light: #F3B2B4;
  --green: #85d5ba;
  --greenLight: #B6E5D4;
  --greenDark: #73CAB2;
  --greenDark2: #219E90;
  --greenDark3: #176f65;
  --orange: #EDBC83;
  --orangeLight: #F7E1C7;
  --brown: #A3765B;
  --brownLight: #E0BEB0;
  --blue: #73C9E3;
  --blueDark: #4285f4;
  --yellow: #FBBA00;
  --gray: #7C7B7B;
  --grayDark: #222;
  --grayLight: rgb(124, 123, 123);
  --grayLight2: rgb(164, 164, 164);
  --grayLight3: rgb(222, 232, 236);
  --white: #ffffff;
  --mud-typography-default-size: inherit !important;
  --mud-typography-default-letterspacing: inherit !important;
  --mud-typography-default-lineheight: inherit !important;
  --mud-typography-default-family: inherit !important;
}

#ajax-spinner {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
#ajax-spinner img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
  animation: spin-tuete 2s linear infinite forwards;
}

@keyframes spin-tuete {
  0% {
    transform: rotate(0turn);
  }
  100% {
    transform: rotate(1turn);
  }
}
#stamps-inner-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 2em;
  background: white;
}

#stamps-inner-container > .stamp {
  width: 25%;
  padding: 0.5em;
  filter: grayscale(1);
  opacity: 0.15;
  transition: 1s;
  transform: scale(1);
}

#stamps-inner-container > * img {
  width: 100%;
}

#stamps-inner-container > *.stamped {
  filter: grayscale(0);
  opacity: 1;
}

#stamps-inner-container > *.stamped-new {
  animation: revealStamp 1s ease-in-out forwards;
}

#stamps-inner-container > *.make-stamp-big {
  transform: scale(1.75);
}

@keyframes revealStamp {
  0% {
    transform: scale(1);
    filter: grayscale(1);
  }
  50% {
    transform: scale(1.5);
    filter: grayscale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    filter: grayscale(0);
    opacity: 1;
  }
}
.icons-sm > div {
  width: 25%;
}

.grey-filter {
  filter: grayscale(1);
}
.grey-filter img {
  opacity: 0.5;
}

@keyframes stretch {
  0% {
    transform: scale(0.3);
    background-color: #F3B2B4;
    border-radius: 100%;
  }
  40% {
    background-color: #E55457;
  }
  75% {
    transform: scale(2);
  }
  90% {
    transform: scale(1.5);
    background-color: #E55457;
  }
  100% {
    transform: scale(1.7);
    background-color: #E55457;
  }
}

.vouchers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.vouchers .voucher-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  border: 1px solid #85d5ba;
  border-radius: 1rem;
  padding: 1rem;
}
.vouchers .voucher-item > * {
  margin: 0;
}

.qr-code-canvas-container {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.qr-code-canvas-container canvas {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.qr-code-canvas-container.show {
  display: flex !important;
}
.qr-code-canvas-container .qr-result {
  display: none;
}

#voucher-redeemed,
#voucher-gained {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
#voucher-redeemed .inner,
#voucher-gained .inner {
  width: 100%;
  max-width: 300px;
  display: block;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background-color: white;
}
#voucher-redeemed .inner > *,
#voucher-gained .inner > * {
  margin: 0;
}
#voucher-redeemed.show,
#voucher-gained.show {
  display: flex !important;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body,
html {
  font-family: "Noto Sans";
  font-weight: 500;
  scroll-behavior: smooth;
  color: #785A46;
  scroll-padding-top: 10vh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
q {
  text-wrap: pretty;
  word-break: break-word;
}
h1.font-300,
h2.font-300,
h3.font-300,
h4.font-300,
h5.font-300,
h6.font-300,
p.font-300,
ul.font-300,
ol.font-300,
q.font-300 {
  font-weight: 300;
}

a:hover {
  color: #B6E5D4;
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: inherit;
}
p.big {
  font-size: 1.8rem;
}
p.small {
  font-size: 0.7rem;
}

main {
  overflow: clip;
  margin: max(15vh, 8rem) auto;
  max-width: 1600px;
  width: 100%;
}
.table {
  font-weight: 300;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .table-responsive {
    font-size: 0.9rem;
  }
  .table-responsive * {
    border: none;
  }
  .table-responsive thead {
    display: none;
  }
  .table-responsive tbody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .table-responsive tbody tr {
    position: relative;
    text-align: right;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    background-color: #e9f8f2;
    border-radius: 0.25rem;
    gap: 0.5rem;
  }
  .table-responsive tbody tr td {
    margin-left: calc(max(6rem, 25vw) + 1rem);
    position: relative;
  }
  .table-responsive tbody tr td::before {
    content: attr(data-label);
    position: absolute;
    left: calc(max(6rem, 25vw) * -1);
    top: 0;
    width: max(6rem, 25vw);
    padding: 0.5em;
    text-align: left;
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .d-none-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .d-none-desktop {
    display: none !important;
  }
}

.jannys-list {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  list-style: none !important;
  list-style-type: none !important;
}
@media (max-width: 992px) {
  .jannys-list {
    font-size: clamp(0.75rem, 4vw, 1.2rem);
  }
}
.jannys-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: inherit;
}
.jannys-list li:nth-child(4n+1)::after {
  color: #85d5ba;
}
.jannys-list li:nth-child(4n+2)::after {
  color: #E55457;
}
.jannys-list li:nth-child(4n+3)::after {
  color: #EDBC83;
}
.jannys-list li:nth-child(4n+4)::after {
  color: #A3765B;
}
.jannys-list li::after {
  content: "\f336";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 1em;
  height: auto;
  line-height: inherit !important;
  border-radius: 100%;
  display: flex;
  align-items: center;
}

#body .mobile-only {
  display: none;
}
@media (max-width: 768px) {
  #body .mobile-only {
    display: block;
  }
}
#body .desktop-only {
  display: none;
}
@media (min-width: 768px) {
  #body .desktop-only {
    display: block;
  }
}

.svgtitle {
  width: 100%;
  height: auto;
  max-height: 12rem;
  max-width: 90%;
  margin: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.xxl-text {
  font-size: clamp(7.5rem, 11.0526rem - 3.3684vw, 6rem);
  font-weight: 500;
  font-family: "DIN Next Rounded LT Pro";
}

.relative {
  position: relative;
}

.underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}

.born-ready {
  font-family: "Born Ready";
  font-weight: normal;
  font-style: normal;
}

.din-next-rounded {
  font-family: "DIN Next Rounded LT Pro";
  font-weight: 500;
  font-style: normal;
}

.btn {
  padding: 0.5em 1em;
  border: none;
  border-radius: 0.33em;
  cursor: pointer;
  transition: all 0.3s ease;
  color: inherit;
  position: relative;
  background-color: #176f65;
  z-index: 1;
  overflow: hidden;
  color: white !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  font-size: 1em;
  gap: 0.5em;
}
.btn * {
  color: inherit !important;
}
.btn .disabled, .btn:disabled {
  background-color: #7C7B7B !important;
  cursor: not-allowed;
}
.btn.doublerow {
  line-height: 1.125;
}
.btn.link {
  background-color: transparent;
  color: inherit;
  margin-left: -1em;
  gap: 1em;
  text-align: left;
}
.btn.link, .btn.link * {
  color: inherit !important;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(0.5);
  opacity: 0;
  transition: 0.3s ease;
  z-index: -1;
  border-radius: 0.33em;
}
.btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.btn i,
.btn svg {
  width: 1.1em;
  text-align: center;
}
.btn .badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #E55457;
  color: white;
  border-radius: 999px;
  font-size: 0.75rem;
  width: 1.2em;
  height: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
}
.btn .badge:empty {
  display: none;
}
.btn.social {
  background-color: transparent;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  font-size: 2em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1em;
}
.btn.social:hover {
  color: currentColor;
}
.btn.icon {
  padding: 0 !important;
  display: block;
  font-size: 1.3rem;
  width: 1.6em;
  height: 1.6em;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.icon i,
.btn.icon svg {
  margin: 0 !important;
}
.btn .mud-progress-circular {
  height: 1em;
  width: 1em;
}
.btn.red {
  background-color: #E55457;
}

.shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
.cols-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .cols-1 {
    grid-template-columns: 1fr;
  }
}
.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .cols-2 {
    grid-template-columns: 1fr;
  }
}
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .cols-3 {
    grid-template-columns: 1fr;
  }
}
.cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .cols-4 {
    grid-template-columns: 1fr;
  }
}

img {
  width: 100%;
  max-width: 100%;
}

.wave-separator {
  width: 100%;
  height: 0px;
  position: relative;
  --_max-height: none;
}
.wave-separator.in-background {
  z-index: -1;
}
.wave-separator .inner {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.wave-separator .inner svg {
  width: 100%;
  height: auto;
  max-height: var(--_max-height);
  overflow: visible;
}
.jcontainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.jcontainer > * {
  margin: 0;
}
.jcontainer.right {
  align-items: flex-end;
}
.jcontainer.left {
  align-items: flex-start;
}
.jcontainer.jcontainer-small {
  max-width: 800px;
}

.bgitem {
  position: absolute;
  height: 8rem;
  width: auto;
  z-index: -1;
}
.bgitem.top {
  top: -1rem;
}
.bgitem.left {
  left: -1rem;
}
.bgitem.right {
  right: -1rem;
}
.bgitem.bottom {
  bottom: -1rem;
}

.product-bar-wrapper {
  overflow-y: visible;
}
.product-bar-wrapper .product-bar {
  overflow-y: visible;
  padding: 1.5rem;
}
.product-bar-wrapper .product-bar .inner {
  margin: auto;
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
}
@media (min-width: 992px) {
  .product-bar-wrapper .product-bar .inner {
    display: flex;
    justify-content: center;
    max-width: unset;
    gap: 4rem;
  }
  .product-bar-wrapper .product-bar .inner > *:empty {
    display: none;
  }
  .product-bar-wrapper .product-bar .inner > *:nth-child(1) {
    width: 350px;
  }
  .product-bar-wrapper .product-bar .inner > *:nth-child(2), .product-bar-wrapper .product-bar .inner > *:nth-child(3), .product-bar-wrapper .product-bar .inner > *:nth-child(4) {
    width: 300px;
  }
}
@media (max-width: 992px) {
  .product-bar-wrapper .product-bar .inner {
    gap: 2rem;
  }
  .product-bar-wrapper .product-bar .inner > *:nth-child(2), .product-bar-wrapper .product-bar .inner > *:nth-child(4) {
    display: none;
  }
}
.product-bar-wrapper .product-bar .inner > * {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.product-bar-wrapper .product-bar .inner > * > * {
  margin: 0;
}
.product-bar-wrapper .product-bar .inner .product-bar-title {
  font-size: clamp(0.75rem, 4vw, 1.33rem);
  text-align: center;
}
.product-bar-wrapper .product-bar .inner .product-bar-image {
  position: absolute;
  bottom: -50%;
  top: -50%;
  left: -3rem;
  right: -3rem;
}
.product-bar-wrapper .product-bar .inner .product-bar-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.product-bar-wrapper .product-bar .inner img.product-name-svg {
  width: 50%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.product-bar-wrapper .product-bar .inner .product-name {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  font-family: "Born Ready";
  color: white;
}
.product-bar-wrapper .product-bar .inner .product-name h3 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-top: 9rem;
}
.product-bar-wrapper .product-bar .inner .product-name h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-shadow: 0 0 1em rgb(0, 0, 0);
  letter-spacing: 1px;
  margin-top: 4rem;
}

.parallax-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: lightgray;
}
@media (min-width: 1600px) {
  .parallax-section {
    border-radius: 1.2rem;
  }
}
.parallax-section > .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  z-index: 0;
}
.parallax-section > * {
  z-index: 2;
}
.parallax-section + .product-bar-wrapper {
  position: relative;
  margin-top: -2rem;
  z-index: 1;
}

#hero {
  height: calc(100vh - 4rem);
  position: relative;
  padding-bottom: min(20vh, 120px);
  display: flex;
}
#hero .inner {
  margin: auto;
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: start;
}
@media (max-width: 768px) {
  #hero .inner {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  #hero .inner {
    margin-bottom: unset;
  }
}
#hero .inner.right {
  justify-content: end;
}
#hero .inner .content {
  padding-top: 10vh;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  #hero .inner .content {
    gap: 2rem;
    max-width: 95%;
    justify-content: center;
  }
}
#hero .inner .content #hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #hero .inner .content #hero-cta {
    display: none;
  }
}
#hero .inner .content #hero-text {
  width: 100%;
  max-width: min(66vw, 400px);
}
#hero .inner .content #hero-logo {
  width: 100%;
  max-width: min(25vw, 200px);
  position: relative;
  z-index: 3;
  opacity: 0;
  transition: 0.4s ease-in-out;
  transition: 0.7s cubic-bezier(0.5, 0, 0.5, 1.2);
  transform: scale(0.5) rotate(0.5turn);
}
#hero .inner .content #hero-logo.show {
  transform: scale(1) rotate(1turn);
  opacity: 1;
}
#hero .inner .content #hero-logo img {
  width: 100%;
}
#hero .inner .content #hero-text {
  transform: unset;
}

.parallax-split {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  height: auto;
  --max-height: unset;
}
.parallax-split img {
  max-height: var(--max-height) !important;
}
.parallax-split.flip {
  justify-content: flex-start;
}
.parallax-split.flip .left {
  left: unset;
  right: 0;
}
.parallax-split.flip .right {
  padding-left: 1rem;
  padding-right: min(5vw, 4rem);
}
.parallax-split .left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom-right-radius: 2rem;
  z-index: 2;
}
.parallax-split .left img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.parallax-split .right {
  width: 50%;
  padding-left: min(5vw, 4rem);
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(0);
}

.video-container {
  position: relative;
  margin: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 1rem;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
}
.video-container .video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.video-container .video-overlay.hide {
  opacity: 0;
}
.video-container .video-overlay .video-play-btn {
  margin: auto;
  font-size: 2rem;
  width: 2em;
  height: 2em;
  border: 3px solid white;
  border-radius: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

#gutscheine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  #gutscheine {
    grid-template-columns: 1fr;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #cccccc;
}

.two-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.two-row.two-row-flip > :first-child {
  order: 2;
}
@media (max-width: 600px) {
  .two-row {
    grid-template-columns: 1fr;
  }
  .two-row > :first-child {
    order: 2 !important;
  }
}
.two-row img {
  max-height: 250px;
}

.franchise .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
}
.franchise .content img {
  max-height: 250px;
}
.franchise .content .btn {
  margin-top: 1rem;
}
.franchise .content .center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.wasmloader {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 1s ease-in-out;
  color: white;
}
.wasmloader.show {
  opacity: 1;
  pointer-events: all;
}
.wasmloader > * {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  position: absolute;
  top: min(50%, 300px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#franchiseapplication {
  position: relative;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.hgap-1 {
  padding-top: 1rem;
}
.hgap-2 {
  padding-top: 2rem;
}
.hgap-3 {
  padding-top: 3rem;
}
.hgap-4 {
  padding-top: 4rem;
}
.hgap-5 {
  padding-top: 5rem;
}
.hgap-6 {
  padding-top: 6rem;
}
.hgap-7 {
  padding-top: 7rem;
}
.hgap-8 {
  padding-top: 8rem;
}
.hgap-9 {
  padding-top: 9rem;
}
.hgap-10 {
  padding-top: 10rem;
}

.mud-dialog-container.mud-dialog-center {
  left: 0 !important;
}

.icon_set {
  opacity: 1;
  margin-top: 3rem;
  display: flex;
  justify-content: space-around;
  width: 100%;
  position: relative;
  z-index: 100;
}
.icon_set img {
  width: 50px;
  max-height: 50px;
  height: auto;
}

.jcontainer:has(> #shop-products-categories) {
  height: -moz-max-content;
  height: max-content;
}

#shop-products-categories {
  position: sticky;
  top: 3rem;
  left: 0px;
  z-index: 3;
  padding-top: 2.25rem;
  padding-bottom: 0.5rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.5);
}

.shopping-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(5rem, 10vw);
}
@media (max-width: 1000px) {
  .shopping-products {
    grid-template-columns: 1fr;
  }
}
.shopping-products .shopping-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #B6E5D4;
  padding: 1rem;
}
@media (max-width: 700px) {
  .shopping-products .shopping-product {
    grid-template-columns: 1fr;
  }
}
.shopping-products .shopping-product > .left {
  position: relative;
  min-height: 250px;
}
.shopping-products .shopping-product > .left img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  width: 100%;
}
.shopping-products .shopping-product > .right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shopping-products .shopping-product > .right .price {
  text-align: right;
  margin-top: auto;
  font-size: 1.5rem;
  font-weight: 500;
}
.shopping-products .shopping-product > .right > * {
  margin: 0;
}
.shopcartitem-quantity {
  width: 100;
  position: relative;
}
.shopcartitem-quantity .quantity-actions {
  width: 100%;
  display: flex;
  gap: 1rem;
  transition: 0.25s ease-in-out;
}
.shopcartitem-quantity .quantity-actions.hide {
  opacity: 0;
}
@media (max-width: 600px) {
  .shopcartitem-quantity .quantity-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.shopcartitem-quantity .quantity-actions > .right,
.shopcartitem-quantity .quantity-actions > .left {
  display: flex;
}
.shopcartitem-quantity .quantity-increase {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.shopcartitem-quantity .quantity-decrease {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-right: auto;
}
.shopcartitem-quantity .quantity-increase,
.shopcartitem-quantity .quantity-decrease {
  padding: 0.7em;
}
.shopcartitem-quantity .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  min-width: 2.5rem;
  border-top: 2px solid #85d5ba;
  border-bottom: 2px solid #85d5ba;
}
.shopcartitem-quantity .show-added {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #85d5ba;
  color: white;
  opacity: 0;
  pointer-events: 0;
  z-index: 1;
  transition: 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 0.25rem;
}
.shopcartitem-quantity .show-added.show {
  opacity: 1;
  pointer-events: all;
}

.cookiehub-declaration p {
  font-size: 1rem;
  font-weight: 400;
}

.cookiehub-declaration a {
  color: #333;
}

.cookiehub-categories {
  padding: 20px 0;
}

.cookiehub-category table {
  background: #eee;
  margin-bottom: 20px;
  width: 100%;
}

.cookiehub-category table th,
.cookiehub-category td {
  padding: 4px 10px;
}

.cookiehub-category td:last-child {
  text-align: right;
}

.cookiehub-category td span {
  background: #ccc;
  padding: 4px 8px;
  font-size: 12px;
}

.cookiehub-category td[colspan] p {
  background: #fff;
  padding: 10px 20px;
}

.mud-dialog {
  max-height: calc(100svh - var(--mud-appbar-height));
}

*:focus-visible {
  outline: 2px solid red !important;
  outline-offset: 4px !important;
}/*# sourceMappingURL=main.css.map */