*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: 100%;
  scroll-padding-top: var(--header-height, var(--default-header-height));
}
/* Scrollbar styling */
/* html {
  scrollbar-width: thin;
  scrollbar-color: #000 #ccc;
}
html ::-webkit-scrollbar {
  width: 12px;
}
html ::-webkit-scrollbar-track {
  background: #ccc;
}
html ::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 6px;
}
html ::-webkit-scrollbar-thumb:hover {
  background: #ccc;
} */
.booking-drawer__backdrop {
  display: block !important;
}
body {
  display: flex;
  flex-direction: column;
  min-width: 32rem;
  max-width: 100vw;
  min-height: 100%;
  margin: 0;
  font-size: calc(var(--font-body-scale) * 1.4rem);
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.no-js:not(html) {
  display: none !important;
}
html.no-js .no-js:not(html) {
  display: block !important;
}
html.no-js .no-js-hidden {
  display: none !important;
}
.block {
  display: block !important;
}
.container {
  width: 100%;
  padding: 0 var(--page-gutter);
  margin: 0 auto;
}
.container,
.max-w-page {
  max-width: var(--page-width);
}
.max-w-fluid {
  max-width: 100%;
}
.max-w-full {
  max-width: 100%;
  padding-inline: 0;
}
.max-w-seminarrow {
  max-width: calc(var(--page-width) * 0.9222);
}
.max-w-narrow {
  max-width: calc(var(--page-width) * var(--max-w-narrow-multiplier));
}
.max-w-narrower {
  max-width: calc(var(--page-width) * var(--max-w-narrower-multiplier));
}
.max-w-medium {
  max-width: calc(var(--page-width) * 0.55556);
}
.max-w-small {
  max-width: calc(var(--page-width) * 0.5333);
}
.max-w-fit {
  max-width: fit-content;
}
.container--margin,
.shopify-challenge__container {
  margin: 7rem auto;
}
.container--full-left {
  margin-left: 0;
}
.container--full-right {
  margin-right: 0;
}
.relative {
  position: relative;
  z-index: 1;
}
.isolate {
  position: relative;
  z-index: 0;
}
.rte-width {
  max-width: 93.6rem;
  margin: 0 auto;
}
.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-flex--center {
  justify-content: center;
}
.list-flex--justify {
  justify-content: space-between;
}
.list-flex > * {
  padding: 0 1rem;
}
.flex {
  display: flex;
  flex-flow: row wrap;
}
.flex--justify {
  justify-content: space-between;
}
.flex--justify-center {
  justify-content: center;
}
.flex--justify-end {
  justify-content: flex-end;
}
.flex--center {
  align-items: center;
}
.flex--direction-column {
  flex-direction: column;
}
.flex > div[class*="col-"] {
  flex: 0 0 auto;
}
.col-1 {
  width: 16.66667%;
}
.col-2 {
  width: 33.33333%;
}
.col-3 {
  width: 50%;
}
.col-4 {
  width: 66.66667%;
}
.col-5 {
  width: 83.33333%;
}
.col-6 {
  width: 100%;
}
.col-auto {
  width: auto;
}
.grid {
  display: grid;
}
.inline-grid {
  display: inline-grid;
}
.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.col-span-auto {
  grid-column: auto / auto;
}
.col-span-full {
  grid-column: 1 / -1;
}
.col-span-subgrid {
  grid-column: subgrid;
}
.grid-rows-6 {
  grid-template-rows: repeat(6, 1fr);
}
.row-span-1 {
  grid-row: span 1 / span 1;
}
.row-span-2 {
  grid-row: span 2 / span 2;
}
.row-span-3 {
  grid-row: span 3 / span 3;
}
.row-span-4 {
  grid-row: span 4 / span 4;
}
.row-span-5 {
  grid-row: span 5 / span 5;
}
.row-span-6 {
  grid-row: span 6 / span 6;
}
.row-span-auto {
  grid-row: auto / auto;
}
.row-span-full {
  grid-row: 1 / -1;
}
.row-span-subgrid {
  grid-row: subgrid;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.hidden {
  display: none !important;
}
.visible {
  opacity: 1 !important;
  visibility: visible !important;
}
.invisible {
  opacity: 0 !important;
  visibility: hidden !important;
}
@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
  .small-visible {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .small-invisible {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media screen and (min-width: 750px) {
  .small-up-hide {
    display: none !important;
  }
  .small-up-visible {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .small-up-invisible {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
  .medium-visible {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .medium-invisible {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
  .large-up-visible {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .large-up-invisible {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
html.js .js-visually-hidden,
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}
.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  word-break: break-word;
  margin-block: 0;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.h1 em,
.h2 em,
.h3 em,
.h4 em,
.h5 em,
.h6 em {
  font-family: var(--font-italic-family);
  font-style: var(--font-italic-style);
  font-weight: var(--font-italic-weight);
  line-height: 0;
}
h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * var(--h1-multiplier));
  line-height: var(--line-height-h1);
}
h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * var(--h2-multiplier));
  line-height: var(--line-height-h2);
}
h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * var(--h3-multiplier));
  line-height: var(--line-height-h3);
}
h4,
.h4 {
  font-size: calc(var(--font-heading-scale) * var(--h4-multiplier));
  line-height: var(--line-height-h4);
}
h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * var(--h5-multiplier));
  line-height: var(--line-height-h5);
}
h6,
.h6 {
  font-size: calc(var(--font-heading-scale) * var(--h6-multiplier));
  line-height: var(--line-height-h6);
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  letter-spacing: var(--font-heading-letter-spacing);
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  text-transform: var(--font-heading-text-transform);
}
h1 em,
.h1 em {
  font-size: calc(var(--font-italic-scale) * var(--h1-multiplier));
}
h2 em,
.h2 em {
  font-size: calc(var(--font-italic-scale) * var(--h2-multiplier));
}
h3 em,
.h3 em {
  font-size: calc(var(--font-italic-scale) * var(--h3-multiplier));
}
h4 em,
.h4 em {
  font-size: calc(var(--font-italic-scale) * var(--h4-multiplier));
}
h5 em,
.h5 em {
  font-size: calc(var(--font-italic-scale) * var(--h5-multiplier));
}
h6 em,
.h6 em {
  font-size: calc(var(--font-italic-scale) * var(--h6-multiplier));
}
h1:has(em),
.h1:has(em) {
  padding-block: calc(var(--h1-multiplier) / 5);
}
h2:has(em),
.h2:has(em) {
  padding-block: calc(var(--h2-multiplier) / 5);
}
h3:has(em),
.h3:has(em) {
  padding-block: calc(var(--h3-multiplier) / 5);
}
h4:has(em),
.h4:has(em) {
  padding-block: calc(var(--h4-multiplier) / 5);
}
h5:has(em),
.h5:has(em) {
  padding-block: calc(var(--h5-multiplier) / 5);
}
h6:has(em),
.h6:has(em) {
  padding-block: calc(var(--h6-multiplier) / 5);
}
blockquote {
  font-style: italic;
  border-left: 0.2rem solid rgba(var(--color-border), var(--alpha-border));
  padding-left: 1.5rem;
}
@media screen and (max-width: 749px) {
  blockquote {
    padding-left: 1rem;
  }
}
.caption {
  font-size: 1.4rem;
  letter-spacing: 0.04rem;
  line-height: calc(1 + 0.71 / var(--font-body-scale));
}
.caption--small {
  font-size: 1.2rem;
}
table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-shadow), var(--alpha-border));
}
table:not([class]) td,
table:not([class]) th {
  padding: 0.5rem 1rem;
  border: 0.1rem solid rgba(var(--color-border), var(--alpha-border));
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 700;
}
.spacer {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}
a {
  text-decoration: none;
  color: inherit;
}
a:not([href]) {
  cursor: not-allowed;
}
p > a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  transition: text-decoration-color var(--duration-short);
  padding-block: 0.4rem;
}
.richtext p:empty {
  display: flex;
}
.link {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  border: none;
  box-shadow: none;
  text-transform: uppercase;
  color: rgb(var(--color-link));
  font-family: inherit;
  font-size: var(--font-size-static-small);
  line-height: var(--line-height-small);
  letter-spacing: var(--letter-spacing-medium);
  background-color: transparent;
  padding: 0.2rem 0 0.7rem;
  transition: color var(--duration-default);
}
a.link,
button.link {
  cursor: pointer;
}
.link:before {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: currentColor;
}
.link svg {
  vertical-align: middle;
}
.link--back {
  display: flex;
  align-items: center;
  padding: 0;
}
.link--back:before {
  content: none;
}
.link--back svg {
  display: inline;
  margin-right: 1rem;
}
.underlined-link {
  text-decoration: underline;
}
@media (hover: hover) {
  p > a:hover {
    text-decoration-color: transparent;
  }
  .underlined-link:hover {
    text-decoration: none;
  }
  .link:not(span):hover {
    color: rgb(var(--color-foreground));
  }
}
hr {
  border: none;
  height: 0.1rem;
  background-color: rgba(var(--color-border), var(--alpha-border));
  display: block;
  margin: 7rem 0;
}
@media screen and (max-width: 749px) {
  hr {
    margin: 5rem 0;
  }
}
.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}
.inline-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: inline-block;
}
details > * {
  box-sizing: border-box;
}
.break {
  word-break: break-word;
}
.visibility-hidden {
  visibility: hidden;
}
html.motion-reduce * {
  transition: none !important;
  animation: none !important;
}
@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
}
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
.disclosure-has-popup {
  position: relative;
}
.disclosure-has-popup[open] > summary:before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: pointer;
  content: " ";
  background: transparent;
}
.disclosure-has-popup > summary:before {
  display: none;
}
.disclosure-has-popup[open] > summary + * {
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 750px) {
  .disclosure-has-popup[open] > summary + * {
    z-index: 4;
  }
  .facets .disclosure-has-popup[open] > summary + * {
    z-index: 2;
  }
}
*:focus {
  outline: 0;
  box-shadow: none;
}
*:focus-visible {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.3rem;
}
.focused,
.no-js *:focus {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.3rem;
}
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}
.focus-outline:focus {
  outline: 0.2rem solid currentColor;
  outline-offset: 0;
}
.focus-outline:focus:not(:focus-visible) {
  outline: none;
}
.focus-inset:focus {
  outline: 0.2rem solid currentColor;
  outline-offset: -0.2rem;
}
.focus-inset:focus:not(:focus-visible) {
  outline: none;
}
.focus-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  background-color: rgba(var(--color-border), var(--alpha-border));
  outline: 0.2rem solid currentColor;
  transition: opacity var(--duration-short);
}
.focus-primary:focus:before {
  opacity: 1;
}
.focus-primary:focus:not(:focus-visible):before {
  opacity: 0;
}
.focus-primary--inset:before {
  outline-offset: -0.2rem;
}
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}
.focus-offset:focus-visible {
  outline: 0.2rem solid currentColor;
  outline-offset: 1rem;
}
.focus-offset.focused,
.no-js .focus-offset:focus {
  outline: 0.2rem solid currentColor;
  outline-offset: 1rem;
}
.no-js .focus-offset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}
.grid {
  display: grid;
  gap: 1.6rem;
}
.grid--center {
  align-items: center;
}
.grid--no-column-gap {
  column-gap: 0;
}
.grid--reverse {
  direction: rtl;
}
.grid--reverse > * {
  direction: initial;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 749px) {
  .grid {
    grid-template-columns: 1fr;
    column-gap: 2.4rem;
    row-gap: 3.8rem;
  }
}
.aspect-auto,
.aspect-auto--mobile {
  aspect-ratio: auto;
}
.aspect-1-1,
.aspect-1-1--mobile {
  aspect-ratio: 1/1;
}
.aspect-1-2,
.aspect-1-2--mobile {
  aspect-ratio: 1/2;
}
.aspect-2-3,
.aspect-2-3--mobile {
  aspect-ratio: 2/3;
}
.aspect-3-4,
.aspect-3-4--mobile {
  aspect-ratio: 3/4;
}
.aspect-4-5,
.aspect-4-5--mobile {
  aspect-ratio: 4/5;
}
.aspect-9-16,
.aspect-9-16--mobile {
  aspect-ratio: 9/16;
}
.aspect-3-2,
.aspect-3-2--mobile {
  aspect-ratio: 3/2;
}
.aspect-4-3,
.aspect-4-3--mobile {
  aspect-ratio: 4/3;
}
.aspect-5-4,
.aspect-5-4--mobile {
  aspect-ratio: 5/4;
}
.aspect-16-9,
.aspect-16-9--mobile {
  aspect-ratio: 16/9;
}
.aspect-2-1,
.aspect-2-1--mobile {
  aspect-ratio: 2/1;
}
.aspect-4-1,
.aspect-4-1--mobile {
  aspect-ratio: 4/1;
}
.aspect-8-1,
.aspect-8-1--mobile {
  aspect-ratio: 5/1;
}
img {
  width: auto;
  max-width: 100%;
}
.icon {
  fill: currentColor;
}
.icon-with-text {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.icon img,
.icon svg {
  width: 1em;
  height: 1em;
}
.media {
  display: block;
  background-color: rgb(var(--color-placeholder));
  position: relative;
  border-radius: var(--card-corner-radius);
  overflow: hidden;
}
.max-w-full .media {
  border-radius: 0;
}
.media--overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--media-overlay-gradient-mobile);
  pointer-events: none;
  z-index: 2;
}
@media screen and (min-width: 750px) {
  .media--overlay:after {
    background-image: var(--media-overlay-gradient-desktop);
  }
}
.media > *,
.media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  z-index: 1;
}
.media iframe {
  border-radius: 0;
  border: none;
}
a.media {
  transition: opacity var(--duration-default);
}
a.media.card-product__media {
  aspect-ratio: var(--card-media-aspect-ratio);
  border-radius: var(--card-corner-radius);
}
@media (hover: hover) {
  a.media:hover {
    opacity: 0.7;
  }
}
.media img,
.media > iframe,
.media video {
  object-fit: cover;
  object-position: center center;
  transition:
    opacity var(--duration-extra-long),
    visibility var(--duration-extra-long);
}
.media.card-product__media img,
.media.card-product__media > iframe,
.media.card-product__media video {
  object-fit: var(--card-media-object-fit, cover);
}
.media--square {
  aspect-ratio: 1/1;
}
.media--portrait {
  aspect-ratio: 3/4;
}
.media--landscape {
  aspect-ratio: 3/2;
}
.media--1-1 {
  aspect-ratio: 1/1;
}
.media--4-3 {
  aspect-ratio: 3/4;
}
.media--3-4 {
  aspect-ratio: 4/3;
}
.media--16-9 {
  aspect-ratio: 16/9;
}
.media--9-16 {
  aspect-ratio: 9/16;
}
.media--3-2 {
  aspect-ratio: 3/2;
}
.media--2-3 {
  aspect-ratio: 2/3;
}
.media--small {
  aspect-ratio: 3/2;
}
.media--circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (max-width: 749px) {
  .small-hide-media-overlay .media--overlay:after {
    display: none;
  }
  .media--mobile-2-4 {
    aspect-ratio: 2/4;
  }
}
@media screen and (min-width: 750px) {
  .small-up-hide-media-overlay .media--overlay:after {
    display: none;
  }
}
.media--aspect-ratio {
  aspect-ratio: auto;
}
.media--aspect-ratio > *,
.media--aspect-ratio img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: static;
}
.media .lazyload,
.media .lazyloading {
  opacity: 0;
  visibility: hidden;
}
.media .lazyloaded {
  opacity: 1;
  visibility: inherit;
}
deferred-media {
  display: block;
}
.deferred-media iframe,
.deferred-media video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.deferred-media__wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.cart__dynamic-checkout {
  margin-top: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
}
.form-row--actions {
  display: block;
}
.form-row--double {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 749px) {
  .form-row--double {
    grid-template-columns: 1fr;
  }
}
.form-row + .form-row {
  margin-top: 1.6rem;
}
.field {
  position: relative;
}
.field__label:not(.visually-hidden),
.field__input,
.dropdown__label {
  position: relative;
  z-index: 2;
}
#shopify-product-reviews .spr-form-label,
.field__label,
.select-input__label,
.dropdown__button,
.dropdown__label {
  color: rgb(var(--color-foreground));
  font-size: var(--font-size-static-extra-small);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  display: block;
  cursor: pointer;
  font-weight: 500;
}
#shopify-product-reviews .spr-form-label,
.field__label,
.select-input__label,
.dropdown__label {
  margin: 0 0 0.8rem;
}
#shopify-product-reviews .spr-form-input:not(.spr-starrating),
#shopify-product-reviews .spr-form-input-textarea,
.field__input {
  outline: none;
  font: inherit;
  font-size: var(--font-size-static-small);
  line-height: var(--font-size-static-large);
  background-color: transparent;
  color: rgb(var(--color-heading-text));
  width: 100%;
  height: 4.8rem;
  padding: 0 1.6rem;
  border: 0.1rem solid rgba(var(--color-border), var(--alpha-border));
  border-radius: var(--input-border-radius);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--duration-default);
}
#shopify-product-reviews .spr-form-input:not(.spr-starrating)::placeholder,
.field__input::placeholder {
  color: rgb(var(--color-placeholder));
}
#shopify-product-reviews .spr-form-input {
  padding: var(--input-border-radius);
}
.field--textarea .field__input {
  display: block;
  height: auto;
  min-height: 11.4rem;
  padding: 2rem 1rem;
  resize: vertical;
}
.field__message {
  display: none;
}
.has-error .field__input:not(:focus) ~ .field__message {
  display: block;
  margin: 0.8rem 0 0;
}
.has-error .field__message,
.errors {
  color: var(--color-error);
  font-family: var(--font-heading-family);
  font-size: var(--font-size-static-medium);
  line-height: 1.15;
}
.errors {
  margin-bottom: 3.2rem;
}
.errors ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.has-error .field__input:not(:focus) {
  color: var(--color-error);
  text-align: center;
  background-color: #e45f5f1a;
  border-color: var(--color-error);
}
.has-error .field__input:not(:focus)::placeholder {
  color: var(--color-error);
  text-align: left;
}
@media (hover: hover) {
  .field__input:hover {
    border-color: currentColor;
  }
}
.field__input:focus {
  border-color: currentColor;
}
.field--search .field__input {
  height: 5.7rem;
  padding-left: 4.8rem;
  font-size: var(--font-size-static-2x-large);
  line-height: 3.36rem;
  border-radius: 0;
  border: none;
  border-bottom: 0.1rem solid rgba(var(--color-border), var(--alpha-border));
}
.field--search .field__input::-webkit-search-decoration,
.field--search .field__input::-webkit-search-cancel-button,
.field--search .field__input::-webkit-search-results-button,
.field--search .field__input::-webkit-search-results-decoration {
  display: none;
}
.field--search input.field__input::placeholder {
  color: rgb(var(--color-placeholder));
}
@media screen and (min-width: 990px) {
  .field--search .field__input {
    font-size: 2.7rem;
    color: rgb(var(--color-heading-text));
    line-height: var(--line-height-small);
    letter-spacing: -0.108rem;
    font-family: var(--font-heading-family);
    height: auto;
    padding: 0 0 2.4rem 4rem;
    border: none;
    border-bottom: 0.1rem solid rgba(var(--color-border), var(--alpha-border));
  }
  .field--search:after {
    display: none;
  }
}
.checkbox {
  display: flex;
  align-items: center;
  color: rgb(var(--color-heading-text));
  font-size: var(--font-size-static-small);
  line-height: var(--line-height-small);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-medium);
  transition: opacity var(--duration-default);
}
.checkbox--plain {
  color: rgb(var(--color-foreground));
  font-size: var(--font-size-static-medium);
  text-transform: none;
  letter-spacing: normal;
}
.checkbox--disabled {
  opacity: 0.6;
  pointer-events: none;
}
.checkbox input {
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  border: 0.1rem solid rgba(var(--color-border), var(--alpha-border));
  margin: 0;
  padding: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color var(--duration-default),
    background-color var(--duration-default);
}
.checkbox input:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.6rem;
  width: 0.6rem;
  background-color: currentColor;
  opacity: 0;
  transition: opacity var(--duration-default);
}
.checkbox input + label,
.checkbox__label {
  cursor: pointer;
  padding-inline: 0.8rem;
}
.checkbox label a {
  text-decoration: underline;
}
@media (hover: hover) {
  .checkbox label a:hover {
    text-decoration: none;
  }
}
.checkbox input:checked {
  border-color: currentColor;
  background-color: rgba(var(--color-border), var(--alpha-border));
}
.checkbox input:checked:before {
  opacity: 1;
}
.checkbox--color input {
  border: none;
  transition: transform var(--duration-default);
}
.checkbox--color input:before {
  display: none;
}
.checkbox--color input + label {
  border: none;
}
.checkbox--color input:checked ~ label {
  text-decoration-color: currentColor;
}
.checkbox--color label:first-of-type {
  flex-shrink: 0;
}
.checkbox--color .checkbox__label {
  flex: 1;
  text-decoration: underline solid transparent 0.1rem;
  text-underline-offset: 0.2rem;
  transition: text-decoration-color var(--duration-default);
}
@media (hover: hover) {
  .checkbox--color:hover input + label {
    transform: scale(1.25);
  }
}

.swiper-pagination--shape {
  display: flex;
  align-items: center;
  --swiper-pagination-top: 1rem;
  top: 1rem;
  left: 1rem !important;
  bottom: unset !important;
  width: fit-content !important;
}
.swiper-pagination--shape .swiper-pagination-bullet {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0 10px;
  background-color: transparent;
  border-radius: 0.5rem;
  border: 0.2rem solid rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: 0.3s;
}
.swiper-pagination--shape .swiper-pagination-bullet span {
  color: rgb(var(--color-white-rgb));
  font-size: var(--font-size-static-small);
  font-weight: var(--font-heading-weight);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.2rem;
}
.swiper-pagination--shape .progress--square .origin {
  border-radius: 0.5rem;
  fill: transparent;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 155px;
  stroke-dashoffset: 155px;
}
.swiper-pagination--shape .progress--circle {
  display: block;
  position: fixed;
  left: -1.6rem;
  transform: rotate(-90deg);
}
.swiper-pagination--shape .progress--circle .origin {
  fill: transparent;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 56.5487px;
  stroke-dashoffset: 56.5487px;
}
.swiper-pagination--shape
  .swiper-pagination-bullet-active
  .progress--circle
  .origin {
  animation: circle-progress var(--slideshow-pagination-progress-time);
}
.swatches ul {
  display: flex;
}
.swatches li {
  margin-inline-end: 0.8rem;
}
.swatch {
  position: relative;
  margin: 0;
  border: 0.1rem solid rgba(var(--color-border), var(--alpha-border));
  border-radius: 0;
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-size: cover;
  background-position: 50% 50%;
  cursor: pointer;
  transition:
    opacity var(--duration-default),
    border-color var(--duration-default),
    transform var(--duration-default);
}
.swatch.swatch--circle {
  border: 0;
  margin-left: 0.4rem;
}
.swatch.swatch--circle:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border: 0.15rem solid rgba(var(--color-border), var(--alpha-border));
  border-radius: 0;
  z-index: 1;
}
.swatch.is-active,
.swatch.is-active:after {
  border-color: rgba(var(--color-foreground), var(--alpha-border));
}
.swatch--square {
  border-radius: 0rem;
}
.swatch--round {
  border-radius: 0.4rem;
}
.swatch--circle,
.swatch.swatch--circle:after {
  border-radius: 50%;
}
.swatch--sm {
  width: 1.6rem;
  height: 1.6rem;
}
.swatch--hide-line:after {
  display: none;
}
@media (hover: hover) {
  .swatch:not(input:disabled + .swatch):hover {
    transform: scale(1.25);
  }
}
input:disabled + .swatch:after {
  opacity: 1;
}
div:not(.card-product__swatches)
  input:disabled
  + div:not(.card-product__swatches)
  .swatch {
  cursor: default;
  background: linear-gradient(
    to top right,
    transparent calc(50% - 1px),
    rgb(var(--color-link)),
    transparent calc(50% + 1px)
  );
}
input:disabled + .swatch:not(.is-active) {
  border: 0.1rem solid rgba(var(--color-border), var(--alpha-border));
}
.gradient {
  background: rgb(var(--color-background));
  background: var(--gradient-background);
  background-attachment: fixed;
}
.section {
  padding: calc(var(--section-spacing-unit-size) * 2) 0;
  background-color: rgb(var(--color-background));
}
.section.layout-1 .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  column-gap: 3.2rem;
  grid-template-areas: "section-head section-head section-foot" "section-body section-body section-body" ". . .";
}
.section.layout-2 .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  column-gap: 3.2rem;
  grid-template-areas: "section-head section-head section-head" "section-body section-body section-body" "section-foot section-foot section-foot";
}
.section.layout-1 .section__head {
  text-align: left;
}
.section.layout-1 .section__head--buttons {
  position: relative;
  justify-content: flex-end;
  white-space: nowrap;
}
.section.layout-2 .section__head,
.section.layout-1 .section__foot,
.section.layout-2 .section__foot,
.section-layout-2 .section__foot {
  text-align: center;
}
.section.layout-1 .section__foot {
  align-content: end;
  height: 100%;
  margin-block: 0;
  padding-block-end: calc(var(--section-spacing-unit-size) * 2);
  text-align: right;
}
.section.layout-1 .section__foot:has(.button--text) {
  padding-block-end: calc(var(--section-spacing-unit-size) * 2 + 0.4rem);
}
.section.layout-2 .section__foot:has(.button--text) {
  padding-block-end: 0.4rem;
}
.section.layout-1 .card-slider__buttons {
  position: relative;
  margin-inline-start: 3.6rem;
  position: unset;
  transform: unset;
}
.section.layout-2 .section__foot,
.section-layout-2 .section__foot {
  margin-block-start: calc(var(--section-spacing-unit-size) * 2);
  margin-block-end: 0;
}
.section.layout-2 .card-slider__buttons,
.section.layout-2 .card-product-slider__buttons {
  justify-content: center;
}
.section.layout-1 .swiper-button,
.section.layout-2 .swiper-button {
  color: rgb(var(--color-foreground));
}
@media screen and (min-width: 750px) {
  .section.layout-1 .section__head {
    height: 100%;
    padding-block-end: calc(var(--section-spacing-unit-size) * 2.25);
    margin-block-end: 0;
  }
  .section.layout-1 .section__foot {
    padding-block-end: calc(var(--section-spacing-unit-size) * 2.25);
  }
  .section.layout-1 .card-slider__buttons {
    justify-content: flex-end;
  }
  .section.layout-2 .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    column-gap: 3.2rem;
    grid-template-areas: "section-head section-head section-head" "section-body section-body section-body" "section-foot section-foot section-foot";
  }
  .section.layout-2 .section__head,
  .section.layout-2 .section__foot,
  .section-layout-2 .section__foot {
    text-align: center;
  }
  .section.layout-2 .card-slider__buttons,
  .section.layout-2 .card-product-slider__buttons {
    justify-content: center;
  }
  .section.layout-2 .swiper-button {
    color: var(--color-black);
  }
}
.section__head {
  grid-area: section-head;
}
.section__body {
  grid-area: section-body;
}
.section__foot {
  grid-area: section-foot;
}
.section__head .section__title {
  margin: 0;
}
.section__head,
.section__foot {
  margin-block-end: calc(var(--section-spacing-unit-size) * 2);
}
.section__foot {
  text-align: center;
  align-self: center;
}
.section__head-title h2 {
  padding-block: 0;
}
.section__head--in {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section__head--buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}
@media screen and (min-width: 750px) {
  .section__head {
    margin-block-end: calc(var(--section-spacing-unit-size) * 2.25);
  }
  .section__head-inner {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 3.2rem;
    align-items: center;
    justify-content: space-between;
  }
}
.section--header + .section-announcement-bar {
  position: sticky;
  top: var(--header-height, var(--default-header-height));
  z-index: 3;
  left: 0;
  width: 100%;
}
nav-accordion {
  display: block;
}
localization-form {
  display: block;
}
.no-scrollbar {
  scrollbar-width: none;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.no-scrollbar::-webkit-scrollbar {
  width: 0;
  display: none;
}
svg {
  display: block;
}
.font-size-xs {
  font-size: var(--font-size-static-extra-small);
}
.font-size-s {
  font-size: var(--font-size-static-small);
}
.font-size-md {
  font-size: var(--font-size-static-medium);
}
.font-size-lg {
  font-size: var(--font-size-static-large);
}
.font-size-xl {
  font-size: var(--font-size-static-extra-large);
}
.font-size-h1 {
  font-size: var(--font-size-static-h1);
}
.font-size-h2 {
  font-size: var(--font-size-static-h2);
}
.font-size-h3 {
  font-size: var(--font-size-static-h3);
}
.font-size-h4 {
  font-size: var(--font-size-static-h4);
}
.font-size-h5 {
  font-size: var(--font-size-static-h5);
}
.font-size-h6 {
  font-size: var(--font-size-static-h6);
}
.font-size-h7 {
  font-size: var(--font-size-static-h7);
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.color-inherit {
  color: inherit;
}
.color-inverse {
  color: rgb(var(--color-background));
  background-color: rgb(var(--color-foreground));
}
.color-red {
  color: var(--color-error);
}
.color-background-red {
  background-color: var(--color-error);
}
.color-background {
  background-color: rgb(var(--color-background));
}
.color-text-inverse {
  --color-foreground: rgb(var(--color-background));
}
.color-headings {
  color: rgb(var(--color-heading-text));
}
.color-body-background {
  background-color: rgb(var(--color-background));
}
.color-body-text {
  color: rgb(var(--color-foreground));
}
.text-current {
  color: currentColor;
}
.text-neutral-medium {
  color: rgb(var(--color-foreground));
}
.absolute {
  position: absolute !important;
}
.relative {
  position: relative !important;
}
@media screen and (max-width: 749px) {
  .absolute--mobile {
    position: absolute !important;
  }
  .relative--mobile {
    position: relative !important;
  }
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-start {
  text-align: start;
}
.text-center {
  text-align: center;
}
.text-end {
  text-align: end;
}
@media screen and (max-width: 749px) {
  .text-start--mobile {
    text-align: start;
  }
  .text-center--mobile {
    text-align: center;
  }
  .text-end--mobile {
    text-align: end;
  }
  .text-left-mobile {
    text-align: left;
  }
  .text-center-mobile {
    text-align: center;
  }
  .text-right-mobile {
    text-align: right;
  }
}
@media screen and (min-width: 750px) {
  .text-left-desktop {
    text-align: left;
  }
  .text-center-desktop {
    text-align: center;
  }
  .text-right-desktop {
    text-align: right;
  }
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-self-start,
.justify-self-left {
  justify-self: start;
}
.justify-self-center {
  justify-self: center;
}
.justify-self-right,
.justify-self-end {
  justify-self: end;
}
@media screen and (max-width: 749px) {
  .justify-self-start-mobile,
  .justify-self-left-mobile {
    justify-self: start;
  }
  .justify-self-center-mobile {
    justify-self: center;
  }
  .justify-self-right-mobile,
  .justify-self-end-mobile {
    justify-self: end;
  }
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-center {
  align-self: center;
}
.align-self-end {
  align-self: flex-end;
}
@media screen and (max-width: 749px) {
  .justify-start-mobile {
    justify-content: flex-start;
  }
  .justify-center-mobile {
    justify-content: center;
  }
  .justify-between-mobile {
    justify-content: space-between;
  }
  .justify-end-mobile {
    justify-content: flex-end;
  }
  .align-start-mobile {
    align-items: flex-start;
  }
  .align-center-mobile {
    align-items: center;
  }
  .align-end-mobile {
    align-items: flex-end;
  }
  .align-self-start-mobile {
    align-self: flex-start;
  }
  .justify-start--mobile {
    justify-content: start;
  }
  .justify-center--mobile {
    justify-content: center;
  }
  .justify-between--mobile {
    justify-content: space-between;
  }
  .justify-end--mobile {
    justify-content: end;
  }
  .align-start--mobile {
    align-items: start;
  }
  .align-center--mobile {
    align-items: center;
  }
  .align-end--mobile {
    align-items: end;
  }
  .align-self-start--mobile {
    align-self: start;
  }
  .align-self-center--mobile {
    align-self: center;
  }
  .align-self-end--mobile {
    align-self: end;
  }
}
@media screen and (min-width: 750px) {
  .justify-start-desktop {
    justify-content: flex-start;
  }
  .justify-center-desktop {
    justify-content: center;
  }
  .justify-between-desktop {
    justify-content: space-between;
  }
  .justify-end-desktop {
    justify-content: flex-end;
  }
  .align-start-desktop {
    align-items: flex-start;
  }
  .align-center-desktop {
    align-items: center;
  }
  .align-end-desktop {
    align-items: flex-end;
  }
  .align-self-start-desktop {
    align-self: flex-start;
  }
}
.bg-default {
  background-color: rgb(var(--color-background));
}
.bg-transparent {
  background-color: transparent;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.button-reset {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
}
.text-nowrap {
  white-space: nowrap;
}
.text--label,
.text--link {
  position: relative;
  font-family: var(--font-heading-family);
  font-size: var(--font-size-static-extra-small);
  font-weight: var(--font-heading-weight);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  margin-block-end: -0.4rem;
  padding-block: 0.625rem;
}
.text--link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: currentColor;
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: right;
  transition:
    transform var(--duration-long),
    opacity var(--duration-long);
}
@media (hover: hover) {
  .text--link:hover:before,
  .header__nav-item:hover .text--link:before {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}
.text-navigation-button {
  color: rgb(var(--color-link));
  font-size: var(--font-size-static-small);
  line-height: var(--line-height-small);
  letter-spacing: var(--letter-spacing-medium);
  text-transform: uppercase;
}
.search {
  font-size: 1.4rem;
}
.search__controls {
  position: relative;
}
.search__message {
  margin-top: 3.2rem;
  text-align: center;
}
.search .search__message p {
  font-size: var(--font-size-static-medium);
}
text-truncater {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
text-truncater:not(.disabled) .truncated-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.card {
  position: relative;
  text-align: center;
  color: rgb(var(--color-heading-text));
}
.card > a {
  display: block;
  position: relative;
}
.card__content {
  position: absolute;
  z-index: 2;
  padding: calc(var(--section-spacing-unit-size) * 1.5);
}
.content-centered:not(.header__card-text) .card__content {
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content-bottom-left:not(.header__card-text) .card__content {
  bottom: 0;
  left: 0;
  text-align: left;
}
.content-bottom-centered:not(.header__card-text) .card__content {
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
}
.card__title {
  margin: 0;
  color: inherit;
}
accordion-default {
  display: block;
}
html.js .accordion__body {
  overflow: visible hidden;
  height: 0;
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    height var(--duration-default),
    opacity var(--duration-default),
    transform var(--duration-default);
}
html.js .accordion__section.is-active .accordion__body {
  opacity: 1;
  transform: none;
}
html.js .accordion__section.default-active .accordion__body {
  height: auto;
}
.accordion summary {
  -webkit-user-select: none;
  user-select: none;
}
.accordion__icon svg {
  width: 1em;
  height: 1em;
  transform: rotate(0);
  transition: transform var(--duration-default);
}
.accordion__section.is-active .accordion__icon svg,
html.no-js .accordion__section[open] .accordion__icon svg {
  transform: rotate(180deg);
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
}
.lds-ring span {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0.8rem;
  border: 0.3rem solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 990px) {
  .pt-0-desktop {
    padding-top: 0 !important;
  }
  .pb-0-desktop {
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 989px) {
  .pt-0-mobile {
    padding-top: 0 !important;
  }
  .pb-0-mobile {
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 749px) {
  .pt-0-mobile-small {
    padding-top: 0 !important;
  }
  .pb-0-mobile-small {
    padding-bottom: 0 !important;
  }
}
@media screen and (min-width: 750px) {
  .pt-0-mobile-small-up {
    padding-top: 0 !important;
  }
  .pb-0-mobile-small-up {
    padding-bottom: 0 !important;
  }
}
.breadcrumbs {
  color: rgb(var(--color-foreground));
  font-size: var(--font-size-static-extra-small);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: var(--letter-spacing-small);
  text-transform: uppercase;
}
.breadcrumbs__list {
  display: flex;
}
.breadcrumbs__list > li {
  white-space: nowrap;
}
.breadcrumbs__list > li:not(:last-child) {
  opacity: 0.75;
}
.breadcrumbs__separator {
  margin: 0 0.8rem;
}
.breadcrumbs__link {
  text-decoration: underline solid transparent 0.1rem;
  text-underline-offset: 0.4rem;
  transition: text-decoration-color var(--duration-short);
  text-decoration-color: currentColor;
  padding-block: 0.525rem;
}
.breadcrumbs span {
  opacity: 0.8;
}
.breadcrumbs--center .breadcrumbs__list {
  justify-content: center;
}
@media (hover: hover) {
  .breadcrumbs__link:hover {
    text-decoration-color: currentColor;
  }
}
@media screen and (max-width: 749px) {
  .breadcrumbs__list {
    overflow-x: auto;
  }
}
html.js:not(.shopify-design-mode) .js-animation-fade-in {
  animation: fade-in 0.8s forwards paused;
}
@media screen and (max-width: 749px) {
  html.js:not(.shopify-design-mode) .js-animation-fade-in {
    animation: var(--theme-js-animations-on-mobile);
  }
}
html.js:not(.shopify-design-mode) .animation-init {
  animation-play-state: running;
}
html.js:not(.shopify-design-mode) .animation-none {
  animation: none;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pulse {
  display: block;
  width: 3rem;
  height: 3rem;
  position: relative;
  color: rgb(var(--color-background));
}
.pulse:after,
.pulse:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: currentColor;
}
.pulse:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  animation: pulse 1.6s ease-out 0.1s infinite both;
}
.pulse:after {
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
}
@keyframes pulse {
  0% {
    transform: scale(0.4);
  }
  45% {
    transform: scale(1);
  }
  55% {
    opacity: 0.5;
  }
  to {
    opacity: 0;
  }
}
.entry {
  color: rgba(var(--color-foreground), 0.7);
  line-height: 2.56rem;
}
.entry > :first-child {
  margin-top: 0;
}
.entry > :last-child {
  margin-bottom: 0;
}
.entry ul {
  display: inline-block;
  margin-top: 0;
  padding-left: 1.8rem;
}
.entry--list-padding-none ul {
  padding-left: 0;
}
.youtube-container {
  overflow: hidden;
  width: 100%;
  height: calc(100% + 12rem);
  pointer-events: none;
}
.youtube-container iframe {
  margin-top: -6rem;
  width: auto;
  height: calc(100% + 12rem);
}
.social-sharing {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
}
.social-sharing a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: opacity var(--duration-default);
}
.social-sharing a > svg {
  width: 2.4rem;
  height: 2.4rem;
}
@media (hover: hover) {
  .social-sharing a:hover {
    opacity: 0.7;
  }
}
.pswp {
  top: calc(var(--header-height, var(--default-header-height))) !important;
  height: calc(
    100% - var(--header-height, var(--default-header-height))
  ) !important;
}
.scroll-y-0 .pswp {
  top: calc(
    var(--header-height, var(--default-header-height)) +
      var(--announcement-bar-height)
  ) !important;
  height: calc(
    100% - var(--header-height, var(--default-header-height)) -
      var(--announcement-bar-height)
  ) !important;
}
.countdown-timer {
  display: block;
}
.countdown-timer__columns {
  display: flex;
}
.countdown-timer__column {
  flex: 1 0 0;
}
.countdown-timer__column > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.countdown-timer__column--col > div {
  flex-direction: column;
}
.countdown-timer__column--row > div {
  flex-direction: row;
}
.countdown-timer__column:first-child .countdown-timer__column-number:before {
  display: none;
}
.countdown-timer__column-text {
  text-transform: uppercase;
}
@media screen and (min-width: 750px) {
  .countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.main-product {
  max-width: 100vw;
}
.section-top-padding-10 {
  padding-top: 10px;
}
.section-bottom-padding-10 {
  padding-bottom: 10px;
}
.section-top-padding-15 {
  padding-top: 15px;
}
.section-bottom-padding-15 {
  padding-bottom: 15px;
}
.section-top-padding-20 {
  padding-top: 20px;
}
.section-bottom-padding-20 {
  padding-bottom: 20px;
}
.section-top-padding-30 {
  padding-top: 30px;
}
.section-bottom-padding-30 {
  padding-bottom: 30px;
}
/*# sourceMappingURL=/cdn/shop/t/2/assets/base.css.map?v=38941326139801586751717719196 */

.font-heading {
  font-family: var(--font-heading-family);
}
.font-body {
  font-family: var(--font-heading-family);
}
.fw-normal {
  font-weight: normal;
}
.notitalic {
  font-style: normal;
}

.header > .container:after {
  margin-top: 0px;
}
body:not(.home) #MainContent {
  margin-top: 140px;
}
body:not(.home) .header > .container:after {
  margin-top: 0px;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-40 {
  margin-top: 40px;
}
.mb-20 {
  margin-bottom: 20px;
}
.my-10 {
  margin-bottom: 10px;
  margin-top: 10px;
}
.my-30 {
  margin-bottom: 30px;
  margin-top: 30px;
}
.color-primary {
  color: var(--primary-color);
}
.bg-primary {
  background-color: var(--primary-color);
}
.text-bg-primary {
  color: var(--primary-color-text);
}
.mh-30vh {
  min-height: 30vh;
}
.padding-fullwidth-banner {
  padding: 0 10%;
}
.banner-fullwidth-custom {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-fullwidth-custom .main-page__breadcrumbs {
  position: absolute;
  top: 10px;
}
@media screen and (max-width: 749px) {
  .d-xs-none {
    display: none !important;
  }
  body:not(.home) #MainContent,
  .header > .container:after {
    margin-top: 88px;
  }
  .padding-fullwidth-banner {
    padding: 65px 10px;
  }
}
.banner-walkin.about-us-banner-walkin {
  min-height: 436px;
}
.section-full-wrapper-padding {
  padding-top: calc(var(--section-spacing-unit-size) * 2);
  padding-bottom: calc(var(--section-spacing-unit-size) * 2);
}
.main-page__breadcrumbs {
  margin-top: 30px;
}
.section-pagetitle-withbreadcrumb {
  padding-top: 70px;
}
.main-page__content.rte {
  color: rgba(21, 21, 21, 0.7);
}

.main-page__foot.rte {
  margin-top: 36px;
  color: rgba(21, 21, 21, 0.7);
}
