/** Shopify CDN: Minification failed

Line 1209:0 "@charset" must be the first rule in the file
Line 1915:35 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:image-banner (INDEX:28) */
.image-banner {
    min-height: 320px;
    aspect-ratio: var(--background-desktop-aspect-ratio, 16 / 9);
    overflow: hidden;
    background: var(--background-color);
  }

  .image-banner-background,
  .image-banner-background-link,
  .image-banner-background__slide,
  .image-banner-background__slide picture,
  .image-banner-background__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .image-banner-background { z-index: 0; }
  .image-banner-background-link { z-index: 1; }
  .image-banner-content { z-index: 3; }
  .image-banner-banner { z-index: 2; }

  .image-banner-background__slide {
    opacity: 0;
    overflow: hidden;
    transition: opacity 1.4s ease-in-out;
  }

  .image-banner-background__slide.is-active { opacity: 1; z-index: 1; }
  .image-banner-background__slide picture { display: block; }
  .image-banner-background__image { display: block; object-fit: cover; }

  .image-banner-background__slide--zoom-in.is-active {
    animation: image-banner-zoom-in 8s ease-out both;
  }

  .image-banner-background__slide--zoom-out.is-active {
    animation: image-banner-zoom-out 8s ease-out both;
  }

  .image-banner-background__slide--move-left.is-active,
  .image-banner-background__slide--move-right.is-active,
  .image-banner-background__slide--move-up.is-active,
  .image-banner-background__slide--move-down.is-active {
    animation: image-banner-move 8s ease-out both;
  }

  @keyframes image-banner-zoom-in {
    from { opacity: 0; transform: scale(1); }
    to { opacity: 1; transform: scale(1.12); }
  }

  @keyframes image-banner-zoom-out {
    from { opacity: 0; transform: scale(1.12); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes image-banner-move {
    from { opacity: 0; transform: scale(1.12) translateX(4%); }
    to { opacity: 1; transform: scale(1.12) translateX(0); }
  }

  @media (max-width: 500px) {
    .image-banner { aspect-ratio: var(--background-mobile-aspect-ratio, 4 / 5); }
  }

  @media (prefers-reduced-motion: reduce) {
    .image-banner-background__slide.is-active { animation: none; }
  }
/* END_SECTION:image-banner */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image-banner-blocks (INDEX:127) */
.image-banner-block-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
  }

  .image-banner-decorative-image {
    position: absolute;
    width: min(var(--decorative-image-width-desktop), 100%);
    max-width: 100%;
    translate: var(--decorative-image-horizontal-offset-desktop, 0)
      var(--decorative-image-vertical-offset-desktop, 0);
  }

  .image-banner-decorative-image__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .image-banner-decorative-image--top-left,
  .image-banner-link-button--top-left { top: 40px; left: 40px; }
  .image-banner-decorative-image--top-center,
  .image-banner-link-button--top-center { top: 40px; left: 50%; transform: translateX(-50%); }
  .image-banner-decorative-image--top-right,
  .image-banner-link-button--top-right { top: 40px; right: 40px; }
  .image-banner-decorative-image--middle-left,
  .image-banner-link-button--middle-left { top: 50%; left: 40px; transform: translateY(-50%); }
  .image-banner-decorative-image--middle-center,
  .image-banner-link-button--middle-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .image-banner-decorative-image--middle-right,
  .image-banner-link-button--middle-right { top: 50%; right: 40px; transform: translateY(-50%); }
  .image-banner-decorative-image--bottom-left,
  .image-banner-link-button--bottom-left { bottom: 40px; left: 40px; }
  .image-banner-decorative-image--bottom-center,
  .image-banner-link-button--bottom-center { bottom: 40px; left: 50%; transform: translateX(-50%); }
  .image-banner-decorative-image--bottom-right,
  .image-banner-link-button--bottom-right { right: 40px; bottom: 40px; }

  .image-banner-link-button {
    position: absolute;
    color: var(--image-banner-link-button-color);
    border-bottom: 1px solid currentColor;
    font: inherit;
    font-size: 1.25rem;
    line-height: 1.4;
    text-decoration: none;
    translate: var(--image-banner-link-button-horizontal-offset-desktop, 0)
      var(--image-banner-link-button-vertical-offset-desktop, 0);
    pointer-events: auto;
  }

  .image-banner-link-button:hover,
  .image-banner-link-button:focus-visible { border-bottom-color: transparent; }

  .image-banner-scroll-button {
    --scroll-button-line-length: 30px;
    position: absolute;
    bottom: 0;
    left: 50%;
    min-width: max-content;
    padding: 34px 0;
    border: 0;
    background: transparent;
    color: var(--scroll-button-color);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transform: translate(
      calc(-50% + var(--scroll-button-horizontal-offset-desktop, 0px)),
      var(--scroll-button-vertical-offset-desktop, 0px)
    );
    pointer-events: auto;
  }

  .image-banner-scroll-button::before,
  .image-banner-scroll-button::after {
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    width: 1px;
    height: var(--scroll-button-line-length);
    background: currentColor;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    animation: image-banner-scroll-line 1.5s linear infinite;
  }

  .image-banner-scroll-button::before { top: 0; }
  .image-banner-scroll-button::after { top: 52px; animation-delay: 0.1s; }

  @keyframes image-banner-scroll-line {
    0%, 20% { transform: translateX(-50%) scaleY(0); }
    45%, 90% { transform: translateX(-50%) scaleY(1); }
    100% { transform: translateX(-50%) scaleY(0); }
  }

  @media (max-width: 500px) {
    .image-banner-decorative-image {
      width: min(var(--decorative-image-width-mobile), 100%);
      translate: var(--decorative-image-horizontal-offset-mobile, 0)
        var(--decorative-image-vertical-offset-mobile, 0);
    }

    .image-banner-link-button {
      font-size: 1rem;
      translate: var(--image-banner-link-button-horizontal-offset-mobile, 0)
        var(--image-banner-link-button-vertical-offset-mobile, 0);
    }

    .image-banner-decorative-image--top-left,
    .image-banner-link-button--top-left { top: 20px; left: 20px; }
    .image-banner-decorative-image--top-center,
    .image-banner-link-button--top-center { top: 20px; }
    .image-banner-decorative-image--top-right,
    .image-banner-link-button--top-right { top: 20px; right: 20px; }
    .image-banner-decorative-image--middle-left,
    .image-banner-link-button--middle-left { left: 20px; }
    .image-banner-decorative-image--middle-right,
    .image-banner-link-button--middle-right { right: 20px; }
    .image-banner-decorative-image--bottom-left,
    .image-banner-link-button--bottom-left { bottom: 20px; left: 20px; }
    .image-banner-decorative-image--bottom-center,
    .image-banner-link-button--bottom-center { bottom: 20px; }
    .image-banner-decorative-image--bottom-right,
    .image-banner-link-button--bottom-right { right: 20px; bottom: 20px; }

    .image-banner-scroll-button {
      --scroll-button-line-length: 14px;
      padding: 18px 0;
      font-size: 12px;
      transform: translate(
        calc(-50% + var(--scroll-button-horizontal-offset-mobile, 0px)),
        var(--scroll-button-vertical-offset-mobile, 0px)
      );
    }

    .image-banner-scroll-button::after { top: 32px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .image-banner-scroll-button::before,
    .image-banner-scroll-button::after { animation: none; transform: translateX(-50%); }
  }
/* END_SNIPPET:image-banner-blocks */

/* START_SNIPPET:stylesheet-article-related-products (INDEX:187) */
.article-related-products {
  margin-bottom: 60px;
}
/* END_SNIPPET:stylesheet-article-related-products */

/* START_SNIPPET:stylesheet-article-related (INDEX:188) */
.article-related {
  .blog-post-banner {
    margin-bottom: 20px;
    max-width: 650px;
  }
}
/* END_SNIPPET:stylesheet-article-related */

/* START_SNIPPET:stylesheet-blog-post-banner (INDEX:189) */
.blog-post-banner {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-post-banner-content {
  position: absolute;
  padding: 15px;
  z-index: 1;
}

.blog-post-banner img {
  transition: all 1s cubic-bezier(0.104, 0.204, 0.492, 1);
}
.blog-post-banner:hover img {
  transform: scale(1.05);
}

.blog-post-banner.overlay:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0px;
  opacity: 0.5;
}

.blog-post-banner.vertical-top.overlay:after {
  background: linear-gradient(
    0deg,
    color-mix(in srgb, var(--overlay-color, #fff) 0%, transparent) 0%,
    var(--overlay-color, #fff) 100%
  );
}

.blog-post-banner.vertical-middle.overlay:after {
  background: var(--overlay-color, #fff);
}

.blog-post-banner.vertical-bottom.overlay:after {
  background: linear-gradient(
    0deg,
    var(--overlay-color, #fff) 0%,
    color-mix(in srgb, var(--overlay-color, #fff) 0%, transparent) 100%
  );
}
.blog-post-banner.alignment-left .blog-post-banner-content {
  text-align: left;
  left: 0px;
  right: auto;
  max-width: 80%;
}
.blog-post-banner.alignment-center .blog-post-banner-content {
  text-align: center;
  left: 10%;
  right: 10%;
  max-width: 80%;
}
.blog-post-banner.alignment-right .blog-post-banner-content {
  text-align: right;
  left: auto;
  right: 0px;
  max-width: 80%;
}

.blog-post-banner.vertical-top .blog-post-banner-content {
  top: 0px;
  transform: translateY(0%);
}
.blog-post-banner.vertical-middle .blog-post-banner-content {
  top: 50%;
  transform: translateY(-50%);
}
.blog-post-banner.vertical-bottom .blog-post-banner-content {
  bottom: 0px;
  transform: translateY(0%);
}

.blog-post-banner-title {
  font-weight: bold;
  letter-spacing: 0.04em;
  color: var(--text-color);
  font-size: 1.5rem !important;
}

.blog-post-banner-button {
  display: inline-flex;
  font-size: 0.9375rem;
  line-height: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  margin-top: 15px;
  color: var(--text-color);
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.blog-post-banner-button:before,
.blog-post-banner-button:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.blog-post-banner-button:before {
  background: var(--text-color);
  opacity: 0.4;
}

.blog-post-banner-button:after {
  transform-origin: left center;
  transform: scale(0, 1);
  background: var(--text-color);
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.blog-post-banner-button:hover:after {
  transform: scale(1, 1);
}

@media (width <= 480px) {
  .blog-post-banner-title {
    font-size: 1.4rem;
    line-height: 1.1em;
  }
}

@media (480px < width <= 1024px) {
  .blog-post-banner-content {
    margin: 10px 0px;
  }
  .blog-post-banner-title {
    font-size: 1.8rem;
    line-height: 1.1em;
  }
}

@media (width >= 1024px) {
  .blog-post-banner-content {
    margin: 15px 0px;
  }
  .blog-post-banner-title {
    font-size: 2rem;
    line-height: 1.1em;
  }
}
/* END_SNIPPET:stylesheet-blog-post-banner */

/* START_SNIPPET:stylesheet-collapsible-content (INDEX:190) */
.accordion summary span:before {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.accordion {
  display: block;
  /* border-top: 1px solid var(--color-border); */
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 25px;
}
.accordion + .accordion {
  border-top: 0;
  margin-top: -25px;
}
.accordion-container .accordion {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.accordion-container .accordion:last-child {
  margin-bottom: 0;
}
.accordion details[open] summary span:before {
  transform: rotateZ(90deg);
}
.accordion summary {
  width: 100%;
  list-style: none;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 18px 40px 18px 0;
  cursor: pointer;
}
[dir="rtl"] .accordion summary {
  padding: 18px 0 18px 40px;
}
.accordion summary span {
  position: absolute;
  top: calc(50% - 5.5px);
  right: 18px;
  width: 12px;
  height: 12px;
  display: block;
}
[dir="rtl"] .accordion summary span {
  right: auto;
  left: 18px;
}
.accordion summary span:before,
.accordion summary span:after {
  content: "";
  display: block;
  position: absolute;
  top: 5.5px;
  left: 0px;
  background: var(--color-body);
}
.accordion summary span:before {
  width: 1px;
  height: 12px;
  top: 0px;
  left: 5.5px;
  will-change: transform;
}
.accordion summary span:after {
  width: 12px;
  height: 1px;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion .accordion__content {
  padding: 0 0 15px 0;
  font-size: 0.9375rem;
}
.accordion .accordion__content > *:last-child {
  margin-bottom: 0;
}

.collapsible-content__inner {
  max-width: 1060px;
  margin: 0 auto;
}

.collapsible-content.heading-uppercase-true .accordion summary {
  text-transform: uppercase;
}
/* END_SNIPPET:stylesheet-collapsible-content */

/* START_SNIPPET:stylesheet-faq-metaobject-menu (INDEX:191) */
.faq-metaobject-menu {
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.faq-metaobject-menu .sections {
  margin-bottom: 20px;
}

.faq-metaobject-menu .title {
  font-weight: bold;
}

.faq-metaobject-menu a {
  margin-bottom: 0.5rem;
  display: block;
}

.faq-metaobject-menu .item {
  position: relative;
  margin-bottom: 0.5rem;
  display: block;
  padding-left: 16px;
}

.faq-metaobject-menu .item:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  display: block;
  top: 10px;
  top: 0.5em;
  left: 2px;
  background-color: var(--color-link);
}
.faq-metaobject-menu .item span {
  /* border-bottom: 1px dotted var(--color-link-hover); */
  /* border-bottom: 1px dotted
    color-mix(in srgb, var(--color-link, #fff) 50%, transparent); */
}

.faq-metaobject-menu a.item:hover span {
  /* color: var(--color-link-hover); */
  /* border-bottom-color: transparent; */
  /* border-color: color-mix(
    in srgb,
    var(--color-link-hover, #fff) 50%,
    transparent
  ); */
}
.faq-metaobject-menu a {
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1.4em;
}
/* END_SNIPPET:stylesheet-faq-metaobject-menu */

/* START_SNIPPET:stylesheet-faq-metaobject (INDEX:192) */
.faq-metaobject-section {
  margin-bottom: 2.5rem;
}

.faq-metaobject-section h3 {
  margin-bottom: 0.5rem;
}

/* .faq-metaobject-section a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
  color: var(--color-link);
  text-decoration-color: var(--color-link-hover);
} */

/* .faq-metaobject-section a:hover {
  text-decoration: none;
  color: var(--color-link-hover);
} */

.faq-metaobject-question {
  margin-bottom: 2rem;
}

.faq-metaobject-question .faq-metaobject-question__title {
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.faq-metaobject-question p {
  margin-bottom: 0.5rem;
}

.faq-metaobject-question .blog-post-banner,
.faq-metaobject-question__images,
.faq-metaobject-question__video,
.faq-metaobject-question__product {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.faq-metaobject-question__images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.faq-metaobject-question__image {
  flex: 0 1 auto;
  max-width: 400px;
  min-width: 0;
}

.faq-metaobject-question__image img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

.faq-metaobject-question .blog-post-banner,
.faq-metaobject-question__video {
  max-width: 600px;
}

.faq-metaobject-question__product {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-metaobject-question__product .product-card {
  flex-basis: 45%;
  max-width: 250px;
}

.faq-metaobject-question__product .product-card .product-card-title {
  font-weight: 500;
  font-size: calc(var(--font-heading-scale) * 0.875rem);
  color: var(--color-link);
}

.faq-metaobject-question__product .product-card .product-card-title:hover {
  color: var(--color-link-hover);
}

@media (width > 550px) {
  .faq-metaobject-question__product .product-card {
    flex-basis: 30%;
  }
}
/* END_SNIPPET:stylesheet-faq-metaobject */

/* START_SNIPPET:stylesheet-image-with-text (INDEX:193) */
.image-with-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--color-bg, #fff);
}
@media only screen and (min-width: 768px) {
  .image-with-text {
    flex-wrap: nowrap;
  }
}
.image-with-text.text_first {
  flex-direction: row-reverse;
}
.image-with-text__image {
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
}
.image-with-text__image svg,
.image-with-text__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-with-text__image svg {
  padding: 50px;
  fill: var(--bg-body, #fff);
  opacity: 0.5;
  background: var(--color-accent);
}
.image-with-text__image-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: var(--ratio-percent);
}
.image-with-text__image-media.aspect-ratio--small {
  padding-bottom: 75%;
}
.image-with-text__image-media.aspect-ratio--large {
  padding-bottom: 100%;
}
.image-with-text__image-media iframe,
.image-with-text__image-media video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-with-text__content {
  width: 100%;
  flex-grow: 1;
  padding: var(--global-pad-h);
}
@media only screen and (min-width: 768px) {
  .image-with-text__content {
    padding: 45px;
  }
}
@media only screen and (min-width: 1068px) {
  .image-with-text__content {
    padding: 70px;
  }
}
.image-with-text__content svg {
  width: 100px;
  height: 100px;
  fill: var(--bg-body, #fff);
  opacity: 0.5;
  background: var(--color-accent);
  margin-bottom: 20px;
}
.image-with-text__content--inner {
  max-width: 600px;
  margin: 0 auto;
}
.image-with-text__content__image {
  margin-bottom: 30px;
}
.image-with-text__content p,
.image-with-text__content h3 {
  color: var(--color-text, --color-body);
}
.image-with-text__content .text-button {
  color: var(--color-text, --color-body);
}
.image-with-text__content .text-button:before {
  background: rgba(var(--color-text-rgb), 0.4);
}
.image-with-text__content .text-button:after {
  background: var(--color-text, --color-body);
}
.image-with-text__content .accordion summary {
  color: var(--color-text, --color-body);
}
.image-with-text__content .accordion summary span:before,
.image-with-text__content .accordion summary span:after {
  background: var(--color-text, --color-body);
}
@media only screen and (min-width: 768px) {
  .image-with-text.grid--image-small > .image-with-text__inner {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) {
  .image-with-text.grid--image-medium > .image-with-text__inner {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .image-with-text.grid--image-large > .image-with-text__inner {
    width: 60%;
  }
}
/* END_SNIPPET:stylesheet-image-with-text */

/* START_SNIPPET:stylesheet-main-collections-menu (INDEX:194) */
.main-collections-menu {
  /* min-height: 120px; */
}

.main-collections-menu .tabs-wrapper {
  margin-top: 35px;
  margin-bottom: 35px;
}

.main-collections-menu .tab {
  overflow: hidden;
  border: 1px solid var(--color-body);
  background-color: var(--color-body);
  margin: auto;
  gap: 1px;
  width: fit-content;
  display: flex;
}

.main-collections-menu .tab a {
  font-family: "Lyons Serif";
  font-size: calc(var(--font-heading-scale) * 0.875rem);
  text-transform: uppercase;
  background-color: #fff;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 32px;
  transition: 0.3s;
}

@media (width < 480px) {
  .main-collections-menu .tab {
    flex-wrap: wrap;
  }

  .main-collections-menu .tab a {
    flex-basis: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    padding: 12px 12px;
  }
}

.main-collections-menu .tab a:hover {
  background-color: var(--color-brand-yellow);
}

.main-collections-menu .tab a.active {
  background-color: var(--color-brand-yellow);
}
/* END_SNIPPET:stylesheet-main-collections-menu */

/* START_SNIPPET:stylesheet-popup-modal (INDEX:195) */
.product-popup-modal {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.product-popup-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  overflow: auto;
  width: 100%;
  padding: 30px;
  background: rgba(var(--color-overlay-rgb), 0.7);
  backdrop-filter: blur(3px);
  height: 100%;
}
.product-popup-modal[open] {
  opacity: 1 !important;
  visibility: visible;
  z-index: 101 !important;
}
.product-popup-modal__toggle {
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -7px;
}
.product-popup-modal__content {
  overflow: auto;
  max-height: 80vh;
  max-width: clamp(300px, 90vw, 800px);
  margin: 0 auto;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.25);
}
.product-popup-modal__content-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 73px;
  text-align: center;
  position: sticky;
  background-color: var(--bg-body, #fff);
  top: 0;
  left: 0;
  flex-shrink: 0;
  padding-right: 60px;
  padding-left: 60px;
}
.product-popup-modal__content-header h5 {
  color: inherit;
  margin: 0;
}
.product-popup-modal__content scroll-shadow {
  flex: 1;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.product-popup-modal__content-info {
  padding: 25px;
  background-color: var(--bg-body, #fff);
  overflow-y: scroll;
  width: 100%;
  color: var(--color-body);
}
@media only screen and (min-width: 768px) {
  .product-popup-modal__content-info {
    padding: 50px;
  }
}
/* END_SNIPPET:stylesheet-popup-modal */

/* START_SNIPPET:stylesheet-product-card-full (INDEX:196) */
/* These cards reuse product page markup, but articles do not load product.css. The rules below are
   the product.css rules the cards depend on, so their look does not depend on another component. */
.product-card-full a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card-full .product-title-container {
  margin-bottom: 20px;
}

.product-card-full .product-title {
  margin-bottom: 3px;
  color: var(--color-body);
}

.product-card-full .product-title a {
  color: var(--color-body);
}

.product-card-full .product-price-container .custom-price {
  font-size: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-card-full .product-price-container .custom-price .unit-price {
  margin-left: 5px;
}

.product-card-full .star-rating-container {
  display: block;
  font-size: 0.8125rem;
  margin-top: 0.3125rem;
  line-height: 0;
}

.product-card-full .star-rating-container .star-rating {
  margin-right: 12px;
}

.product-card-full .star-rating {
  --star-percent: calc(var(--star-rating) / 5 * 100%);
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}

@media only screen and (min-width: 768px) {
  .product-card-full {
    margin-top: 40px;
  }
}

.product-card-full {
  margin-bottom: 20px;
}

.product-card-full .product-desc {
  margin-top: 10px;
}

.product-card-full .star-rating-container {
  margin-bottom: 4px;
}

.product-card-full .product-price-container {
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.product-card-full .product-price-container .custom-price {
  margin-right: 0px !important;
}

.product-card-full .product-card-quickview {
  margin-left: 10px;
  white-space: nowrap;
}

.product-card-full .product-gallery {
  overflow: hidden;
}

.product-card-full .article-related-product-image-link {
  display: block;
}

.product-card-full .article-related-product-image-link img {
  display: block;
  width: 100%;
  height: auto;
}

@media (width > 700px) {
  .product-card-full .product-grid-container {
    display: flex;
    gap: 20px;
  }

  .product-card-full .product-gallery {
    flex-shrink: 0;
    flex-basis: 45%;
  }

  .product-card-full .product-information {
    flex-shrink: 0;
    flex-basis: 45%;
  }
}

.product-card-full .view-product {
  margin-top: -0.5em;
}

.product-card-full .view-product .text-button {
  color: var(--color-body);
}
/* END_SNIPPET:stylesheet-product-card-full */

/* START_SNIPPET:stylesheet-product-gallery (INDEX:197) */
.product-gallery {
  /* overflow: hidden; */
  margin-bottom: 10px;
}

.product-desktop-gallery {
  display: flex;
  gap: 30px;
}
@media (width <= 900px) {
  .product-desktop-gallery {
    display: none;
  }
}
@media (width > 900px) {
  .product-mobile-swiper {
    display: none;
  }
}
.product-large-images {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-large-image {
  position: relative;
}

.product-small-images {
  width: 80px;
  flex-shrink: 0;
}
.product-small-images-wrapper {
  position: sticky;
  top: 10px;
}
body.header-sticky .product-small-images-wrapper {
  top: calc(var(--header-height, 80px) + 20px);
}

.product-small-image {
  transition: all 0.2s ease;
  margin-bottom: 10px;
  border: 1px solid #dbdbdb;
  opacity: 0.6;
  display: flex;
}
.product-small-image img {
  display: block;
  width: 100%;
  height: auto;
}
.product-small-image.icon {
  min-height: 80px;
}
.product-small-image--video {
  position: relative;
  overflow: hidden;
}
.product-small-image__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-body, #151515);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.product-small-image .product-small-image__play svg {
  width: 10px;
  height: 11px;
  opacity: 1;
  margin: 0;
}
.product-small-image .product-small-image__play svg path {
  fill: currentColor;
}

.product-small-image svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  margin: auto;
}
.product-small-image.active {
  opacity: 1;
  border: 1px solid #989898 !important;
}


.product-mobile-swiper {
  --swiper-pagination-bullet-width: 25px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-border-radius: 1px;
  --swiper-pagination-color: #819343;
  --swiper-pagination-bullet-opacity: 0.6;
  --swiper-pagination-bullet-inactive-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.product-mobile-swiper:not(.swiper-initialized) .swiper-slide + .swiper-slide {
  display: none;
}






/* product zoom */
.product-media-zoom svg {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.product-media-zoom {
  position: absolute;
  top: 23px;
  right: 23px;
  z-index: 40;
  background: var(--bg-body, #fff);
  border-radius: 50%;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
.product-media-zoom svg {
  width: 20px;
  height: 20px;
}
.product-media-zoom:hover svg,
.product-media-zoom:focus svg {
  transform: scale(1.2);
}
@media only screen and (min-width: 1068px) {
  .product-media-zoom {
    opacity: 0;
  }
}
@media only screen and (min-width: 1068px) {
  .product-large-image:hover .product-media-zoom {
    opacity: 1;
  }
}
/* END_SNIPPET:stylesheet-product-gallery */

/* START_SNIPPET:stylesheet-product-grid (INDEX:198) */
@charset "UTF-8";

.product-card .product-featured-image .product-secondary-images-nav li,
.product-card .product-card-swatches,
.product-card .product-card-swatches .product-card-swatch,
.product-card .product-card-swatches--title {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}

.no-js .product-card .product-card-quickview,
.product-card .no-js .product-card-quickview {
  display: none !important;
}

.products {
  list-style: none;
  margin-bottom: 0px;
}
.products.carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  min-width: 100%;
  padding: 0;
}
.products.carousel .product-card {
  flex-shrink: 0;
}
.products.carousel .carousel__slide {
  width: 100%;
}
.no-js .products.carousel {
  overflow-x: scroll;
}
.products.carousel.flickity-enabled {
  overflow: visible;
}
.products.carousel.flickity-enabled .flickity-viewport {
  overflow: visible;
}
.products .promotion-column {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .products .promotion-column {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .products .promotion-column.promotion-column-width--2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .products .promotion-column.promotion-column-width--2.product-columns-3 {
    flex: 0 0 66.6%;
    max-width: 66.6%;
  }
}
@media only screen and (min-width: 768px) {
  .products .promotion-column.promotion-column-width--2.product-columns-5 {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
.products .gallery__item {
  height: 100%;
}
.products .gallery__item figure {
  height: 100%;
  padding-bottom: 0;
}
.products .gallery__item-content {
  padding: 20px;
}
.products .gallery__item-content p {
  font-size: 0.8125rem;
}
@media only screen and (min-width: 768px) {
  .products .gallery__item-content p {
    font-size: 1rem;
  }
}

@media (width >= 1024px) {
  .product-card {
    --product-pad: 50px;
  }
}

@media (width < 1024px) {
  .product-card {
    --product-pad: 25px;
  }
}

.product-card {
  display: block;
  position: relative;
  padding-bottom: 10px;
  width: 100%;
  background-color: var(--color-brand-white);
  height: 100%;
}

.product-featured-image {
  padding: var(--product-pad) var(--product-pad) 0px;
}

.product-card-info {
  font-family: "Lyons Serif";
  text-transform: uppercase;
  padding: calc(var(--product-pad) / 2) calc(var(--product-pad) / 2)
    calc(var(--product-pad) / 2);
}

@media (width >= 1024px) {
  .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .product-card-info {
    flex-grow: 1;
    display: flex;
    align-items: end;
    gap: 5px;
  }
  .product-card-info-left {
    flex-grow: 1;
  }
  .product-card-info-right {
    padding-left: 10px;
  }
  .product-card-info-right .custom-price del + ins {
    margin-left: 0px;
  }
  .product-card-info-right .custom-price .from {
    display: block;
  }
}

@media (width < 1024px) {
  .product-card-info-left {
    padding-bottom: 5px;
  }
}

.carousel .product-card {
  margin-bottom: 0;
}
.product-card .product-card-info {
  line-height: 1;
}
.product-card.text-center .product-card-info {
  padding: 0 5%;
}
.product-card .product-featured-image {
  /* margin-bottom: 15px; */
  position: relative;
  overflow: hidden;
  z-index: 0;
  /* aspect-ratio: 1; */
}

@media (hover: hover) {
  .product-card .product-featured-image.thb-hover:hover .product-primary-image {
    opacity: 0;
  }
}
.product-card .product-featured-image .product-secondary-images-nav {
  list-style: none;
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  display: flex;
  margin: 0;
  padding: 0;
  z-index: 20;
  opacity: 0;
  justify-content: center;
  transition: all 0.25s linear;
}
.product-card .product-featured-image .product-secondary-images-nav li {
  display: inline-flex;
  background: var(--color-dots, #fff);
  width: 6px;
  height: 6px;
  opacity: 0.6;
  border-radius: 3px;
  margin: 0 6px;
  pointer-events: none;
}
.product-card .product-featured-image .product-secondary-images-nav li.active {
  opacity: 1;
}
.product-card .product-featured-image-link {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: var(--padding-bottom);
}
.product-card .product-featured-image-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}
.product-card .product-featured-image-link .thb-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-card .product-featured-image-link .product-secondary-image {
  display: none;
  z-index: 10;
}
.product-card .product-featured-image-link .product-secondary-image.hover {
  display: block;
}
.product-card .product-featured-image-link.aspect-ratio--square {
  padding-bottom: 100%;
}
.product-card .product-featured-image-link.aspect-ratio--portrait {
  padding-bottom: 125%;
}
.product-card .product-featured-image-link.aspect-ratio--landscape {
  padding-bottom: 75%;
}
.product-card .product-card-vendor {
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.product-card .product-card-vendor a {
  color: var(--color-body);
}
.product-card .product-card-title {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  /* margin-bottom: 5px; */
  color: var(--color_product_grid_links);
}
.product-card .product-card-title:hover {
  color: var(--color_product_grid_links_hover);
}
.product-title-uppercase-true .product-card .product-card-title {
  text-transform: uppercase;
}

.product-card .badges {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 30;
}

.product-card .product-card-badge {
  font-family: var(--font-heading-family);
  font-optical-sizing: auto;
  display: inline-block;
  margin-right: 6px;
  text-transform: uppercase;
  font-size: calc(var(--font-heading-scale) * 0.75rem);
  font-weight: 500;
  color: var(--color-body);
  border: 1px solid var(--color-body);
  border-radius: 100px;
  padding: 1px 15px 2px 15px;
  background-color: var(--color-brand-yellow);
}

@media (width < 500px) {
  .product-card .product-card-badge {
    font-size: 0.6875rem;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.product-card .product-card-quickview {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: var(--color-brand-yellow);
  color: var(--body-bg, #fff);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  transform: translateY(100%);
  transition: all 0.25s linear;
}
.product-card .product-card-quickview + .product-secondary-images-nav {
  bottom: 55px;
}
.product-card .product-card-quickview span {
  line-height: 1;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-right: 0;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .product-card .product-card-quickview span {
    font-size: 0.6875rem;
  }
}
.product-card .product-card-quickview .loading-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 20;
  opacity: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .product-card-quickview .loading-overlay .spinner {
  width: 18px;
}
.product-card .product-card-quickview.loading span {
  opacity: 0;
}
.product-card .product-card-quickview.loading .loading-overlay {
  opacity: 1;
}
.product-card .product-card-quickview.loading .loading-overlay .spinner-path {
  stroke: var(--body-bg, #fff);
}
.product-card .product-card-swatches {
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
}
.product-card .product-card-swatches .product-card-swatch {
  display: inline-flex;
  margin: 0;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 3px;
  position: relative;
  cursor: pointer;
}
.product-card .product-card-swatches .product-card-swatch:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 6px;
  background: var(--option-color);
  background-image: var(--option-color-image);
  background-size: cover;
}
.product-card .product-card-swatches .product-card-swatch.active {
  box-shadow: 0 0 0 1px var(--color-accent) inset;
}
.product-card .product-card-swatches--container {
  position: relative;
  overflow: hidden;
  height: 18px;
  margin-top: 10px;
}
.product-card .product-card-swatches--title {
  font-size: 0.8125rem;
  line-height: 18px;
  opacity: 0.8;
  transform: translateY(0%);
}
.product-card--add-to-cart-button {
  width: 100%;
  margin-top: 15px;
}
.product-card .star-rating {
  margin-top: 7px;
  font-size: 0.875rem;
}
@media (hover: hover) {
  .product-card:hover .product-secondary-images-nav {
    opacity: 1;
  }
}
.product-card:hover .product-card-swatches {
  transform: translateY(0%);
}
.product-card:hover .product-card-swatches--title {
  transform: translateY(-100%);
}
.product-card:hover .product-card-quickview {
  transform: translateY(0%);
}

.collection-empty {
  text-align: center;
  padding: 10vh;
}
.collection-empty svg {
  margin-bottom: 30px;
}
.collection-empty .text-button {
  font-size: inherit;
}
.collection-empty p {
  font-size: 1.25rem;
}

.sidebar-container {
  /* display: grid;
  grid-gap: clamp(30px, 4.5%, 60px); */
}
@media only screen and (min-width: 1068px) {
  .sidebar-container.facets--sidebar {
    /* grid-template-columns: clamp(250px, 22%, 285px) 1fr; */
  }
}
.sidebar-container.facets--sidebar.results--0 {
  /* grid-template-columns: 1fr; */
}
@media only screen and (min-width: 1068px) {
  .sidebar-container.facets--sidebar .facets-toggle {
    display: none;
  }
}
.sidebar-container .products.collection.row {
  padding: 0;
  border-top: var(--global-border);
}

.sidebar-container .products.collection.row .column {
  border: var(--global-border);
  border-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.sidebar-container .products.collection.row .column:not(:first-of-type) {
  /* border-left: 0px; */
}
.sidebar-container .products.collection.row .column:not(:last-of-type) {
  border-right: 0px;
}

.collection-container-header {
  display: flex;
}

.collection-container-header > div {
  display: flex;
}

.collection-container-header .column-facets {
  /* width: 33.3333333%; */
  width: calc(var(--filters-count) / 6 * 100%);
}
.collection-container-header .column-facets .facets-desktop-container {
  width: 100%;
}
.collection-container-header
  .column-facets
  .facets-desktop-container
  .facets__wrapper {
  display: flex;
}
.collection-container-header
  .column-facets
  .facets-desktop-container
  .facets__wrapper
  > .facet-inner {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: calc(100% / var(--filters-count));
  padding: 15px 15px 0px;
}
.collection-container-header
  .column-facets
  .facets-desktop-container
  .facets__wrapper
  > .facet-inner {
  border-right: var(--global-border);
}

.collection-container-header .column-facets-bar {
  /* width: 66.6666666%; */
  width: calc((1 - var(--filters-count) / 6) * 100%);
  border-left: 1px solid var(--global-border);
  display: flex;
  align-items: flex-end;
  padding: 15px 15px 0px;
}
.collection-container-header .column-facets-bar .facets--bar {
  width: 100%;
}

@media (width <= 1068px) {
  .collection-container-header .column-facets {
    display: none;
  }
  .collection-container-header .column-facets-bar {
    width: 100%;
  }
}

.star-rating {
  --star-percent: calc(var(--star-rating) / 5 * 100%);
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}
.star-rating:before {
  content: "★★★★★";
  background: linear-gradient(
    90deg,
    var(--color-star) var(--star-percent),
    #e1e1e1 var(--star-percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating {
  display: inline-block;
  margin: 0;
}

.rating-star {
  --letter-spacing: 0.3;
  --font-size: 1.5;
  --percent: calc(
    (
        var(--rating) / var(--rating-max) + var(--rating-decimal) *
          var(--font-size) /
          (var(--rating-max) * (var(--letter-spacing) + var(--font-size)))
      ) *
      100%
  );
  letter-spacing: calc(var(--letter-spacing) * 1rem);
  font-size: calc(var(--font-size) * 1rem);
  line-height: 1;
  display: inline-block;
  margin: 0;
}

.rating-star:before {
  content: "\2605\2605\2605\2605\2605";
  background: linear-gradient(
    90deg,
    var(--color-reviews) var(--percent),
    rgba(var(--color-foreground), 0.15) var(--percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-text {
  display: none;
}

.rating-count {
  display: none;
  margin: 0;
}

@media (forced-colors: active) {
  .rating {
    display: none;
  }
  .rating-text {
    display: block;
  }
}

/* Judjeme rating */
.jdgm-prev-badge {
  margin-bottom: 4px;
}

.jdgm-prev-badge .jdgm-star.jdgm-star {
  /* color: #fd9a52; */
}

.jdgm-prev-badge .jdgm-prev-badge__text {
  visibility: visible;
}
/* END_SNIPPET:stylesheet-product-grid */

/* START_SNIPPET:stylesheet-section-header-coffee (INDEX:199) */
.section-header-coffee-empty {
  height: 150px;
}

.section-header-coffee {
  /* border-right: var(--global-border);
  border-left: var(--global-border); */
  display: flex;
  width: 100%;
  min-height: 150px;

  .section-header-coffee-line-v {
    width: var(--global-border-size);
    background-color: var(--global-border-color);
  }

  .section-header-coffee-left {
    position: relative;
    width: 50%;
  }

  .section-header-coffee-bg {
    position: absolute;
    inset: 0px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16.5px);
    z-index: 1;
  }

  .section-header-coffee-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
  }

  .h3 {
    margin-bottom: auto;
    margin-top: auto;
    color: #fff;
  }
}
/* END_SNIPPET:stylesheet-section-header-coffee */

/* START_SNIPPET:stylesheet-social-links (INDEX:200) */
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;}
  .social-links li {
    margin-bottom: 5px; }
    .social-links li a {
      display: inline-flex;
      align-items: center;
      width: 44px;
      height: 44px;
      justify-content: flex-start;
      color: var(--color-body);}
    .social-links li a:hover {
      color: var(--color-link);}

  .social-links svg {
    width: 16px;
    height: auto; }
  .social-links span {
    margin-left: 15px;
    display: none;}

  .social-links.big svg {
    width: 32px;
    height: auto; }
  .social-links.big li a {
    width: 60px;
/* END_SNIPPET:stylesheet-social-links */

/* START_SNIPPET:stylesheet-swiper (INDEX:201) */
/**
 * Swiper 11.1.15
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 18, 2024
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* END_SNIPPET:stylesheet-swiper */