/** Shopify CDN: Minification failed

Line 916:4 Unexpected ".2xl\\:slider-vertical"
Line 917:4 Unexpected ".2xl\\:slider-vertical"
Line 918:4 Unexpected ".2xl\\:slider-vertical"
Line 919:4 Unexpected ".2xl\\:slider"
Line 920:4 Unexpected ".2xl\\:slider"
Line 921:4 Unexpected ".2xl\\:slider"
Line 922:0 Unexpected ".2xl\\:slider-vertical"
Line 923:0 Unexpected ".2xl\\:slider-vertical"
Line 924:0 Unexpected ".2xl\\:slider-vertical"
Line 925:0 Unexpected ".2xl\\:slider-vertical"
... and 28 more hidden warnings

**/
.quiz {
  --quiz-height: 800px;
  --animation-time: 300ms;
  --animation-function: cubic-bezier(0.29, 0.63, 0.44, 1);
  --quiz-progress-offset: 34px;
  --quiz-progress-shell-left-offset: 20px;
  --quiz-content-offset: 0px;
  width: 100%;
}

.quiz__image {
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.quiz__content {
  padding: 16px;
  height: var(--quiz-height);
}

.quiz__content--inner {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: calc(var(--quiz-height) - var(--quiz-content-offset) - 60px - 60px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .quiz {
    --quiz-height: calc(100dvh - var(--header-height));
    --quiz-content-offset: 150px;
  }

  .quiz__content--inner {
    max-width: 518px;
  }

  .quiz__content {
    padding-top: var(--quiz-content-offset);
  }
}

/* .quiz__page.quiz--question .quiz__content--inner,
.quiz__page.quiz--subscribe .quiz__content--inner,
.quiz__page.quiz--gender .quiz__content--inner {
  padding-right: 120px;
} */

.quiz__body {
  height: var(--quiz-height);
}

.quiz__content--icon {
  width: 35px;
  height: 35px;
  top: 0;
  left: -55px;
  z-index: 2;
}

.quiz__header {
  left: calc(50%);
  right: 0;
  width: 50%;
  padding: 16px;
  top: 0;
  z-index: 1;
}

.quiz__content--inner--step {
  padding-top: var(--quiz-progress-offset);
}

.quiz__content-shell {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 3;
  display: none;
  will-change: transform;
  transition: transform var(--animation-time) var(--animation-function);
}

.quiz__content-shell--instant {
  transition: none;
}

.quiz__content-shell .quiz__content--inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.quiz__progress {
  width: 100%;
}

.quiz__progress--segment {
  height: 2px;
  background-color: #e0e0e0;
  transition: background-color 0.3s ease;
}

.quiz__progress--segment--active {
  background-color: #000;
}

.quiz__divider {
  top: 0;
  left: calc(50% + 62.5px);
  height: 85%;
  z-index: 2;
  width: 1px;
  background: linear-gradient(180deg, #e1e1e1 0%, var(--background-color, #fff) 100%);
}

.quiz__content-inner-box {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.quiz__content--actions,
.quiz__content--prev {
  flex-shrink: 0;
}

.quiz__content--answer-label,
.quiz__content--answer input {
  cursor: pointer;
}

.quiz__content--answer-label:hover {
  color: #000000;
}

.quiz__content--answer.disabled .quiz__content--answer-label,
.quiz__content--answer.disabled .quiz__content--answer-check {
  opacity: 0.45;
}

.quiz__page .field_inner-radio .c-radio,
.quiz__page .field_inner-checkbox .c-checkbox {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #e0e0e0;
  transition: border-color var(--animation-time) var(--animation-function);
}

.quiz__page .field_inner-radio .c-radio::after,
.quiz__page .field_inner-checkbox .c-checkbox::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #000;
  background-image: none;
  opacity: 0;
  transition: transform var(--animation-time) var(--animation-function),
    opacity var(--animation-time) var(--animation-function);
}

.quiz__page .field-radio input[type="radio"]:checked + label .c-radio,
.quiz__page .field-checkbox input[type="checkbox"]:checked + label .c-checkbox,
.quiz__page .quiz__content--answer:not(.disabled) .quiz__content--answer-label:hover .c-radio,
.quiz__page .quiz__content--answer:not(.disabled) .quiz__content--answer-label:hover .c-checkbox,
.quiz__page .quiz__content--answer-label:hover .c-radio,
.quiz__page .quiz__content--answer-label:hover .c-checkbox {
  border: 1px solid #000;
}

.quiz__page .field-radio input[type="radio"]:checked + label .c-radio::after,
.quiz__page .field-checkbox input[type="checkbox"]:checked + label .c-checkbox::after,
.quiz__page .quiz__content--answer:not(.disabled) .quiz__content--answer-label:hover .c-radio::after,
.quiz__page .quiz__content--answer:not(.disabled) .quiz__content--answer-label:hover .c-checkbox::after,
.quiz__page .quiz__content--answer-label:hover .c-radio::after,
.quiz__page .quiz__content--answer-label:hover .c-checkbox::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.quiz__content--input {
  max-width: 400px;
}

.quiz--subscribe .quiz__content--input .field_inner-default input.field-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  min-height: 0;
  height: auto;
  padding: 16px 0;
  font-size: 12.8px;
}

.quiz__content--input input.error {
  border-bottom-color: red;
}

.quiz__content--checkbox,
.quiz__content--checkbox input {
  cursor: pointer;
}

.quiz__content--checkbox a:hover {
  text-decoration: underline;
}

.quiz__content .field-checkbox.error .c-checkbox {
  border-color: red;
}

.quiz__result {
  display: none;
  background: #fff;
}

.quiz__products.quiz__products--loading .quiz__products--container,
.quiz__products:not(.quiz__products--loading) .quiz__products--loader {
  display: none;
}

.quiz__result--subtitle a {
  text-decoration: underline;
}

.quiz__product--badges {
  z-index: 1;
}

.quiz__product.quiz__product--sold-out .quiz__product--box>*:not(.quiz__product--footer, .quiz__product--badges) {
  opacity: 0.5;
}

.quiz__product--inner {
  height: 100%;
}

/* .quiz__product--middle, */
.quiz__product--box,
.quiz__product--description {
  flex-grow: 1;
}

.quiz__product--image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.quiz__product--price del {
  font-weight: 400;
  color: #a5a5a5;
}

.quiz__product--price-inline {
  justify-content: flex-end;
  text-align: right;
}

.quiz__button--product-cart-inner .quiz__product--price-inline del {
  margin-right: 4px;
}

.quiz__button--product-cart-remove .quiz__product--price del {
  color: #a5a5a5;
}

.quiz__button--product-cart-remove .quiz__product--price .text-gray {
  color: #969696;
}

.quiz__total-compare-at {
  text-decoration: line-through;
  color: #878787;
}

.quiz__product--footer {
  display: flex;
  flex-direction: column;
}

.quiz__product.quiz__product--added-to-cart .quiz__button--product-cart-add,
.quiz__product:not(.quiz__product--added-to-cart) .quiz__button--product-cart-remove,
.quiz__product:not(.quiz__product--sold-out) .quiz__button--product-sold-out,
.quiz__product.quiz__product--sold-out .quiz__product--footer>*:not(.quiz__button--product-sold-out),
.quiz__product:not(.quiz__product--sold-out) .quiz__product--badge-sold-out {
  display: none;
}

.quiz__products .swiper-prev.swiper-button-disabled,
.quiz__products .swiper-next.swiper-button-disabled {
  display: none;
}

.quiz__button--add-to-cart span {
  display: flex;
}

.quiz__button--add-to-cart .dot {
  display: block;
  width: 3px;
  height: 3px;
  background: currentColor;
}

.quiz__page:not(.quiz--intro) .quiz__content--icon {
  top: 60px;
}

.quiz:not(.quiz--step-result) .quiz__container {
  position: relative;
  height: var(--quiz-height);
  overflow: hidden;
}

.quiz:not(.quiz--step-result) .quiz__page {
  position: absolute;
  inset: 0;
  height: var(--quiz-height);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition:
    opacity var(--animation-time) var(--animation-function),
    transform var(--animation-time) var(--animation-function);
}

.quiz:not(.quiz--step-result) .quiz__page.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 1;
}

.quiz:not(.quiz--step-result) .quiz__page.hidden {
  display: none !important;
}

.quiz:not(.quiz--step-result) .quiz__page.is-exiting {
  opacity: 0;
  transform: translateX(-24px);
  z-index: 0;
}

.quiz.quiz--page-back:not(.quiz--step-result) .quiz__page:not(.active):not(.is-exiting) {
  transform: translateX(-24px);
}

.quiz.quiz--page-back:not(.quiz--step-result) .quiz__page.is-exiting {
  transform: translateX(24px);
}

.quiz:not(.quiz--step-intro):not(.quiz--step-result) .quiz__content-shell {
  display: block;
}

.quiz.quiz--step-result .quiz__container,
.quiz.quiz--step-result .quiz__header,
.quiz.quiz--step-result .quiz__content-shell,
.quiz.quiz--step-result .quiz__divider {
  display: none;
}

.quiz.quiz--step-result .quiz__result {
  display: block;
}

/* Quiz mobile — below tabletl (1024px); matches Tailwind `tabletl:` and QUIZ_DESKTOP_MEDIA in component-quiz.js */
@media (max-width: 1023px) {

  .quiz__button--product-cart-inner .quiz__product--price-inline {
    display: none;
  }

  .quiz:not(.quiz--initialized) .quiz__page:not(.quiz--intro),
  .quiz:not(.quiz--initialized) .quiz__result,
  .quiz.quiz--step-result .quiz__mobile-images {
    display: none;
  }

  .quiz__header {
    position: static;
    padding: 20px;
  }

  .quiz__body,
  .quiz__content,
  .quiz:not(.quiz--step-result) .quiz__page {
    height: auto;
  }

  .quiz:not(.quiz--step-result) .quiz__container {
    height: var(--mobile-quiz-page-size, auto);
    transition: height 0.4s ease;
  }

  .quiz:not(.quiz--step-result) .quiz__page {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .quiz__mobile-images {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
  }

  .quiz__mobile-images .quiz__image {
    display: none;
  }

  .quiz.quiz--initialized .quiz__mobile-images .quiz__image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.8s ease;
  }

  .quiz.quiz--initialized .quiz__mobile-images .quiz__image.active {
    opacity: 1;
  }

  .quiz__content {
    padding: 60px 20px;
  }

  .quiz__content--inner,
  .quiz__content-inner-box {
    max-height: unset;
  }

  .quiz__content-inner-box {
    overflow: unset;
  }

  .quiz__page.quiz--question .quiz__content--inner,
  .quiz__page.quiz--subscribe .quiz__content--inner,
  .quiz__page.quiz--gender .quiz__content--inner {
    padding-inline: 0;
  }

  .quiz__content--inner--step {
    padding-top: var(--quiz-progress-offset);
  }

  .quiz__products {
    display: block;
  }

  .quiz__product {
    margin-bottom: 8px;
    width: 100%;
  }

  .quiz__product--inner {
    width: 100%;
  }

  .quiz__product:last-child {
    margin-bottom: 0;
  }

  .quiz__product--header {
    min-height: unset;
  }

  .quiz__product--header-inner {
    position: static;
  }
}

@-webkit-keyframes background-shine {
  to {
    background-position-x: -20%;
  }
}

@keyframes background-shine {
  to {
    background-position-x: -20%;
  }
}

.quiz--short {
  --quiz-height: auto;
}

.quiz--short .quiz__result {
  display: block;
  background: unset;
}

.quiz--short .quiz__container {
  height: auto;
}

.quiz--short .quiz__result--box {
  display: none;
}

.quiz--short .quiz__result--empty {}

.quiz_subscribe__result {
  text-align: center;
}

.quiz--short .quiz_subscribe__result:not(.hidden)~.field,
.quiz--short .quiz_subscribe__result:not(.hidden)~.btn {
  display: none;
}

.quiz--short-select--buttons {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-snap-align: start;
  scroll-behavior: smooth;
}

.quiz--short-select--buttons label {
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  background: #fff;
  white-space: nowrap;
}

/*
quiz-short:has([name='time-of-use'][value='AM']:checked) .routine-finder__card,
quiz-short:has([name='time-of-use'][value='PM']:checked) .routine-finder__card {
  display: none;
}
quiz-short:has([name='time-of-use'][value='AM']:checked) .routine-finder__card:has([data-time-of-use*='AM']),
quiz-short:has([name='time-of-use'][value='PM']:checked) .routine-finder__card:has([data-time-of-use*='PM']) {
  display: block;
}
  */

@media screen and (max-width: 979px) {
  quiz-short .quiz_add {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: var(--A-Corners-medium-corner, 6px) var(--A-Corners-medium-corner, 6px) 0px 0px;
    border-top: 1px solid var(--A-Colors-Grey-2, #e1e1e1);
    background: var(--A-Colors-White, #fff);
    padding: 1px;
    z-index: 100;
  }
}

.discount-info {
  border-radius: 4px;
  background: #ececec;
  color: #4b4b4b;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount-info .code {}

.discount-info .copy {
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-weight: 500;
}

.success-fade-out,
.success.success-fade-in,
.success .success-fade-in {
  opacity: 1;
  transition: opacity var(--animation-time) var(--animation-function);
}

.success-fade-in,
.success.success-fade-out,
.success .success-fade-out {
  opacity: 0;
  transition: opacity var(--animation-time) var(--animation-function);
}

.auto-horizontal-slider-button {
  color: #aaa !important;
  border: 1px solid currentColor;
}

@media screen and (min-width: 980px) {
  .discount-info .code {
    display: inline-block;
    color: #000;
    background: #fff;
    border-radius: var(--A-Corners-small-corner, 4px);
  }

  .discount-info .copy {
    max-height: 42px;
  }
}

.field-radio .field_inner.field-inline {
  display: flex;
  align-items: center;
}

.field-radio input[type="radio"]:checked + label .c-radio {
  border: 3.75px solid black;
}

progress[value] {
  -webkit-appearance: none;
  appearance: none
}

progress[value]::-webkit-progress-bar {
  background: #000;
  border-radius: 6.25px
}

progress[value]::-webkit-progress-value {
  border-radius: 6.25px;
  border-radius: 2.5px;
  background: #fff
}

.field .field_inner {
  position: relative
}

.field_inner-default input {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  color: #000;
  transition: all 300ms cubic-bezier(0.29, 0.63, 0.44, 1);
  padding: 15px 20px;
  min-height: 48px;
  font-size: 14px;
  width: 100%
}

.field_inner-default input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none
}

.field_inner-search input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
  appearance: auto;
  position: absolute;
  top: 50%;
  right: 12.5px;
  margin-top: -2.5px
}

.field_inner-search input[type=search]::-webkit-search-cancel-button {
  position: absolute;
  top: 50%;
  right: 12.5px;
  margin-top: -2.5px
}

.field_inner-search:has(input[type=search]:not(:placeholder-shown)) .icon-search {
  display: none
}

.field_inner-default input[type=search]::-ms-clear {
  display: none
}

.field_inner-default label {
  position: absolute;
  top: 6.25px;
  left: 0;
  right: 0;
  font-size: 6.25px;
  opacity: .6;
  padding: 0 12.5px;
  color: var(--text-color)
}

.field_inner-default .show-password-icon {
  top: 50%;
  right: 10px;
  cursor: pointer
}

.field_inner-default .icon {
  top: 50%;
  transform: translateY(-50%);
  right: 12.5px
}

.field_inner-default input:not(:placeholder-shown) {
  padding-top: 13.75px;
  padding-bottom: 5px;
  transition: all var(--animation-time) var(--animation-function)
}

.field_inner-default input:placeholder-shown+label {
  opacity: 0;
  transition: opacity var(--animation-time) var(--animation-function)
}

.field_inner-default input:not(:placeholder-shown)+label {
  opacity: .6;
  transition: opacity var(--animation-time) var(--animation-function)
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: none;
  padding: 17.5px 12.5px 6.25px;
  box-shadow: none;
  outline: none;
  border: 0.625px solid var(--border-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M4.5 6L8.5 10L12.5 6' stroke='%23878787' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: right 7.5px center;
  padding-right: 18.75px;
  --webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.field select.no-label {
  padding: 12.5px
}

.radio-link .c-radio,.checkbox-link .c-checkbox,.field_inner-radio .c-radio,.field_inner-checkbox .c-checkbox {
  width: 11.25px;
  height: 11.25px;
  min-width: 11.25px;
  border: 0.625px solid var(--text-color, #000);
  flex-shrink: 0;
  display: inline-block;
  box-sizing: border-box;
  transition: border-width var(--animation-time) var(--animation-function);
  position: relative
}

.radio-link .c-radio,.field_inner-radio .c-radio {
  border-radius: 50%
}

.checkbox-link .c-checkbox,.field_inner-checkbox .c-checkbox {
  border-radius: 2.5px
}

.checkbox-link .c-checkbox:after,.field_inner-checkbox .c-checkbox:after {
  content: "";
  width: 11.25px;
  height: 11.25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12.6663 4.79163L6.24967 11.2083L3.33301 8.29163' stroke='white'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all var(--animation-time) var(--animation-function)
}

.checkbox-link[aria-current=true]>.c-checkbox,.field_inner-checkbox input:checked+label .c-checkbox {
  border-width: 5.63px;
  transition: border-width var(--animation-time) var(--animation-function)
}

.checkbox-link[aria-current=true]>.c-checkbox:after,.field_inner-checkbox input:checked+label .c-checkbox:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all var(--animation-time) var(--animation-function)
}

/* Slider Classes Extracted from CSS Files */

/* From assets/core-md-only.min.css */
.js .md\:slider-vertical>ul::-webkit-scrollbar{display:none}
.js .md\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.js .md\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.js .md\:slider>ul,.js .md\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.js .md\:slider>ul::-webkit-scrollbar,.js .md\:slider-vertical>ul::-webkit-scrollbar{display:none}
.js .md\:slider[data-autoplay-timer]>.autoplay-timer,.js .md\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.md\:slider-vertical.enabled>ul>li{scroll-snap-align:center;height:var(--slide-height);min-height:var(--slide-height)}
.md\:slider-vertical.enabled>ul{overflow-y:auto;overflow-x:hidden;scroll-snap-type:y mandatory;flex-direction:column;scroll-padding-left:0;scroll-padding-right:0;max-height:var(--slide-height)}
.md\:slider-vertical>ul::-webkit-scrollbar{display:none}
.md\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.md\:slider-vertical>ul{display:flex;align-items:stretch;justify-content:flex-start;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;scroll-snap-type:x mandatory;backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;scroll-behavior:smooth}
.md\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.md\:slider>ul,.js .md\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.md\:slider>ul,.md\:slider-vertical>ul{display:flex;align-items:stretch;justify-content:flex-start;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;scroll-snap-type:x mandatory;backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;scroll-behavior:smooth}
.md\:slider>ul.container{scroll-padding-left:calc((100vw - var(--page-width))/2);scroll-padding-right:calc((100vw - var(--page-width))/2)}
.md\:slider>ul.pl-container{scroll-padding-left:calc((100vw - var(--page-width))/2)}
.md\:slider>ul.pr-container{scroll-padding-right:calc((100vw - var(--page-width))/2)}
.md\:slider>ul::-webkit-scrollbar,.js .md\:slider-vertical>ul::-webkit-scrollbar{display:none}
.md\:slider>ul>li{scroll-snap-align:start;backface-visibility:hidden}
.md\:slider[data-adapt-height]>ul{align-items:flex-start;transition:max-height var(--animation-time) linear}
.md\:slider[data-autoplay-timer]>.autoplay-timer,.js .md\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.md\:slider[md-center-mode=true]>ul>li:first-child{margin-left:50%}
.md\:slider[md-center-mode=true]>ul>li:last-child{margin-right:50%}
.md\:slider[md-center-mode=true]>ul>li{scroll-snap-align:center}

/* From assets/core-lg-only.min.css */
.js .lg\:slider-vertical>ul::-webkit-scrollbar{display:none}
.js .lg\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.js .lg\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.js .lg\:slider>ul,.js .lg\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.js .lg\:slider>ul::-webkit-scrollbar,.js .lg\:slider-vertical>ul::-webkit-scrollbar{display:none}
.js .lg\:slider[data-autoplay-timer]>.autoplay-timer,.js .lg\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.lg\:slider-vertical.enabled>ul>li{scroll-snap-align:center;height:var(--slide-height);min-height:var(--slide-height)}
.lg\:slider-vertical.enabled>ul{overflow-y:auto;overflow-x:hidden;scroll-snap-type:y mandatory;flex-direction:column;scroll-padding-left:0;scroll-padding-right:0;max-height:var(--slide-height)}
.lg\:slider-vertical>ul::-webkit-scrollbar{display:none}
.lg\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.lg\:slider-vertical>ul{display:flex;align-items:stretch;justify-content:flex-start;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;scroll-snap-type:x mandatory;backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;scroll-behavior:smooth}
.lg\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.lg\:slider>ul,.js .lg\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.lg\:slider>ul,.lg\:slider-vertical>ul{display:flex;align-items:stretch;justify-content:flex-start;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;scroll-snap-type:x mandatory;backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;scroll-behavior:smooth}
.lg\:slider>ul.container{scroll-padding-left:calc((100vw - var(--page-width))/2);scroll-padding-right:calc((100vw - var(--page-width))/2)}
.lg\:slider>ul.pl-container{scroll-padding-left:calc((100vw - var(--page-width))/2)}
.lg\:slider>ul.pr-container{scroll-padding-right:calc((100vw - var(--page-width))/2)}
.lg\:slider>ul::-webkit-scrollbar,.js .lg\:slider-vertical>ul::-webkit-scrollbar{display:none}
.lg\:slider>ul>li{scroll-snap-align:start;backface-visibility:hidden}
.lg\:slider[data-adapt-height]>ul{align-items:flex-start;transition:max-height var(--animation-time) linear}
.lg\:slider[data-autoplay-timer]>.autoplay-timer,.js .lg\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.lg\:slider[lg-center-mode=true]>ul>li:first-child{margin-left:50%}
.lg\:slider[lg-center-mode=true]>ul>li:last-child{margin-right:50%}
.lg\:slider[lg-center-mode=true]>ul>li{scroll-snap-align:center}

/* From assets/core-xl-only.min.css */
.js .xl\:slider-vertical>ul::-webkit-scrollbar{display:none}
.js .xl\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.js .xl\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.js .xl\:slider>ul,.js .xl\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.js .xl\:slider>ul::-webkit-scrollbar,.js .xl\:slider-vertical>ul::-webkit-scrollbar{display:none}
.js .xl\:slider[data-autoplay-timer]>.autoplay-timer,.js .xl\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.xl\:slider-vertical.enabled>ul>li{scroll-snap-align:center;height:var(--slide-height);min-height:var(--slide-height)}
.xl\:slider-vertical.enabled>ul{overflow-y:auto;overflow-x:hidden;scroll-snap-type:y mandatory;flex-direction:column;scroll-padding-left:0;scroll-padding-right:0;max-height:var(--slide-height)}
.xl\:slider-vertical>ul::-webkit-scrollbar{display:none}
.xl\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.xl\:slider-vertical>ul{display:flex;align-items:stretch;justify-content:flex-start;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;scroll-snap-type:x mandatory;backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;scroll-behavior:smooth}
.xl\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.xl\:slider>ul,.js .xl\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.xl\:slider>ul,.xl\:slider-vertical>ul{display:flex;align-items:stretch;justify-content:flex-start;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;scroll-snap-type:x mandatory;backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;scroll-behavior:smooth}
.xl\:slider>ul.container{scroll-padding-left:calc((100vw - var(--page-width))/2);scroll-padding-right:calc((100vw - var(--page-width))/2)}
.xl\:slider>ul.pl-container{scroll-padding-left:calc((100vw - var(--page-width))/2)}
.xl\:slider>ul.pr-container{scroll-padding-right:calc((100vw - var(--page-width))/2)}
.xl\:slider>ul::-webkit-scrollbar,.js .xl\:slider-vertical>ul::-webkit-scrollbar{display:none}
.xl\:slider>ul>li{scroll-snap-align:start;backface-visibility:hidden}
.xl\:slider[data-adapt-height]>ul{align-items:flex-start;transition:max-height var(--animation-time) linear}
.xl\:slider[data-autoplay-timer]>.autoplay-timer,.js .xl\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.xl\:slider[xl-center-mode=true]>ul>li:first-child{margin-left:50%}
.xl\:slider[xl-center-mode=true]>ul>li:last-child{margin-right:50%}
.xl\:slider[xl-center-mode=true]>ul>li{scroll-snap-align:center}

/* From assets/core-2xl-only.min.css */
.js .2xl\:slider-vertical>ul::-webkit-scrollbar{display:none}
.js .2xl\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.js .2xl\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.js .2xl\:slider>ul,.js .2xl\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.js .2xl\:slider>ul::-webkit-scrollbar,.js .2xl\:slider-vertical>ul::-webkit-scrollbar{display:none}
.js .2xl\:slider[data-autoplay-timer]>.autoplay-timer,.js .2xl\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.2xl\:slider-vertical.enabled>ul>li{scroll-snap-align:center;height:var(--slide-height);min-height:var(--slide-height)}
.2xl\:slider-vertical.enabled>ul{overflow-y:auto;overflow-x:hidden;scroll-snap-type:y mandatory;flex-direction:column;scroll-padding-left:0;scroll-padding-right:0;max-height:var(--slide-height)}
.2xl\:slider-vertical>ul::-webkit-scrollbar{display:none}
.2xl\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.2xl\:slider-vertical>ul{display:flex;align-items:stretch;justify-content:flex-start;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;scroll-snap-type:x mandatory;backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;scroll-behavior:smooth}
.2xl\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.2xl\:slider>ul,.js .2xl\:slider-vertical>ul{-ms-overflow-style:none;scrollbar-width:none}
.2xl\:slider>ul,.2xl\:slider-vertical>ul{display:flex;align-items:stretch;justify-content:flex-start;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;scroll-snap-type:x mandatory;backface-visibility:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;scroll-behavior:smooth}
.2xl\:slider>ul.container{scroll-padding-left:calc((100vw - var(--page-width))/2);scroll-padding-right:calc((100vw - var(--page-width))/2)}
.2xl\:slider>ul.pl-container{scroll-padding-left:calc((100vw - var(--page-width))/2)}
.2xl\:slider>ul.pr-container{scroll-padding-right:calc((100vw - var(--page-width))/2)}
.2xl\:slider>ul::-webkit-scrollbar,.js .2xl\:slider-vertical>ul::-webkit-scrollbar{display:none}
.2xl\:slider>ul>li{scroll-snap-align:start;backface-visibility:hidden}
.2xl\:slider[data-adapt-height]>ul{align-items:flex-start;transition:max-height var(--animation-time) linear}
.2xl\:slider[data-autoplay-timer]>.autoplay-timer,.js .2xl\:slider-vertical[data-autoplay-timer]>.autoplay-timer{display:block}
.2xl\:slider[2xl-center-mode=true]>ul>li:first-child{margin-left:50%}
.2xl\:slider[2xl-center-mode=true]>ul>li:last-child{margin-right:50%}
.2xl\:slider[2xl-center-mode=true]>ul>li{scroll-snap-align:center}



/* Grid Component Styles - Targeting custom-grid specifically */

custom-grid {
  position: relative;
  width: 100%;
}

custom-grid.grid-wrapper {
  /* Grid wrapper specific styles */
}

/* Grid list container */
custom-grid .grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Slider list */
custom-grid .slider__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

/* Grid items - base styles (full width by default) */
custom-grid .grid > li,
custom-grid .slider__list > li {
  width: 100%;
}

/* Vertical slider items */
custom-grid[class*="slider-vertical"] .grid > li,
custom-grid[class*="slider-vertical"] .slider__list > li {
  width: 100%;
}

/* Slider controls - hidden by default */
custom-grid .slider__navbar,
custom-grid .slider__dots,
custom-grid .slider__thumbs,
custom-grid .slider__arrows {
  display: none;
}

custom-grid .slider__arrows {
  z-index: 1;
}

/* Base grid columns (no prefix) - applied at all breakpoints */
custom-grid .grid > li.grid-1,
custom-grid .slider__list > li.grid-1 { width: 8.333333%; }
custom-grid .grid > li.grid-2,
custom-grid .slider__list > li.grid-2 { width: 16.666667%; }
custom-grid .grid > li.grid-3,
custom-grid .slider__list > li.grid-3 { width: 25%; }
custom-grid .grid > li.grid-4,
custom-grid .slider__list > li.grid-4 { width: 33.333333%; }
custom-grid .grid > li.grid-5,
custom-grid .slider__list > li.grid-5 { width: 41.666667%; }
custom-grid .grid > li.grid-6,
custom-grid .slider__list > li.grid-6 { width: 50%; }
custom-grid .grid > li.grid-7,
custom-grid .slider__list > li.grid-7 { width: 58.333333%; }
custom-grid .grid > li.grid-8,
custom-grid .slider__list > li.grid-8 { width: 66.666667%; }
custom-grid .grid > li.grid-9,
custom-grid .slider__list > li.grid-9 { width: 75%; }
custom-grid .grid > li.grid-10,
custom-grid .slider__list > li.grid-10 { width: 83.333333%; }
custom-grid .grid > li.grid-11,
custom-grid .slider__list > li.grid-11 { width: 91.666667%; }
custom-grid .grid > li.grid-12,
custom-grid .slider__list > li.grid-12 { width: 100%; }

/* Base display utilities */
custom-grid .slider__navbar.d-flex,
custom-grid .slider__dots.d-flex,
custom-grid .slider__thumbs.d-flex,
custom-grid .slider__arrows.d-flex {
  display: flex;
}

custom-grid .slider__navbar.d-none,
custom-grid .slider__dots.d-none,
custom-grid .slider__thumbs.d-none,
custom-grid .slider__arrows.d-none {
  display: none;
}

/* Responsive grid columns - XS breakpoint (360px) */
@media screen and (min-width: 360px) {
  custom-grid .grid > li.xs\:grid-1,
  custom-grid .slider__list > li.xs\:grid-1 { width: 8.333333%; }
  custom-grid .grid > li.xs\:grid-2,
  custom-grid .slider__list > li.xs\:grid-2 { width: 16.666667%; }
  custom-grid .grid > li.xs\:grid-3,
  custom-grid .slider__list > li.xs\:grid-3 { width: 25%; }
  custom-grid .grid > li.xs\:grid-4,
  custom-grid .slider__list > li.xs\:grid-4 { width: 33.333333%; }
  custom-grid .grid > li.xs\:grid-5,
  custom-grid .slider__list > li.xs\:grid-5 { width: 41.666667%; }
  custom-grid .grid > li.xs\:grid-6,
  custom-grid .slider__list > li.xs\:grid-6 { width: 50%; }
  custom-grid .grid > li.xs\:grid-7,
  custom-grid .slider__list > li.xs\:grid-7 { width: 58.333333%; }
  custom-grid .grid > li.xs\:grid-8,
  custom-grid .slider__list > li.xs\:grid-8 { width: 66.666667%; }
  custom-grid .grid > li.xs\:grid-9,
  custom-grid .slider__list > li.xs\:grid-9 { width: 75%; }
  custom-grid .grid > li.xs\:grid-10,
  custom-grid .slider__list > li.xs\:grid-10 { width: 83.333333%; }
  custom-grid .grid > li.xs\:grid-11,
  custom-grid .slider__list > li.xs\:grid-11 { width: 91.666667%; }
  custom-grid .grid > li.xs\:grid-12,
  custom-grid .slider__list > li.xs\:grid-12 { width: 100%; }
  
  /* XS display utilities */
  custom-grid .slider__navbar.xs\:d-flex,
  custom-grid .slider__dots.xs\:d-flex,
  custom-grid .slider__thumbs.xs\:d-flex,
  custom-grid .slider__arrows.xs\:d-flex {
    display: flex;
  }
  
  custom-grid .slider__navbar.xs\:d-none,
  custom-grid .slider__dots.xs\:d-none,
  custom-grid .slider__thumbs.xs\:d-none,
  custom-grid .slider__arrows.xs\:d-none {
    display: none;
  }
}

/* Responsive grid columns - SM breakpoint (480px) */
@media screen and (min-width: 480px) {
  custom-grid .grid > li.sm\:grid-1,
  custom-grid .slider__list > li.sm\:grid-1 { width: 8.333333%; }
  custom-grid .grid > li.sm\:grid-2,
  custom-grid .slider__list > li.sm\:grid-2 { width: 16.666667%; }
  custom-grid .grid > li.sm\:grid-3,
  custom-grid .slider__list > li.sm\:grid-3 { width: 25%; }
  custom-grid .grid > li.sm\:grid-4,
  custom-grid .slider__list > li.sm\:grid-4 { width: 33.333333%; }
  custom-grid .grid > li.sm\:grid-5,
  custom-grid .slider__list > li.sm\:grid-5 { width: 41.666667%; }
  custom-grid .grid > li.sm\:grid-6,
  custom-grid .slider__list > li.sm\:grid-6 { width: 50%; }
  custom-grid .grid > li.sm\:grid-7,
  custom-grid .slider__list > li.sm\:grid-7 { width: 58.333333%; }
  custom-grid .grid > li.sm\:grid-8,
  custom-grid .slider__list > li.sm\:grid-8 { width: 66.666667%; }
  custom-grid .grid > li.sm\:grid-9,
  custom-grid .slider__list > li.sm\:grid-9 { width: 75%; }
  custom-grid .grid > li.sm\:grid-10,
  custom-grid .slider__list > li.sm\:grid-10 { width: 83.333333%; }
  custom-grid .grid > li.sm\:grid-11,
  custom-grid .slider__list > li.sm\:grid-11 { width: 91.666667%; }
  custom-grid .grid > li.sm\:grid-12,
  custom-grid .slider__list > li.sm\:grid-12 { width: 100%; }
  
  /* SM display utilities */
  custom-grid .slider__navbar.sm\:d-flex,
  custom-grid .slider__dots.sm\:d-flex,
  custom-grid .slider__thumbs.sm\:d-flex,
  custom-grid .slider__arrows.sm\:d-flex {
    display: flex;
  }
  
  custom-grid .slider__navbar.sm\:d-none,
  custom-grid .slider__dots.sm\:d-none,
  custom-grid .slider__thumbs.sm\:d-none,
  custom-grid .slider__arrows.sm\:d-none {
    display: none;
  }
}

/* Responsive grid columns - MD breakpoint (750px) */
@media screen and (min-width: 750px) {
  custom-grid .grid > li.md\:grid-1,
  custom-grid .slider__list > li.md\:grid-1 { width: 8.333333%; }
  custom-grid .grid > li.md\:grid-2,
  custom-grid .slider__list > li.md\:grid-2 { width: 16.666667%; }
  custom-grid .grid > li.md\:grid-3,
  custom-grid .slider__list > li.md\:grid-3 { width: 25%; }
  custom-grid .grid > li.md\:grid-4,
  custom-grid .slider__list > li.md\:grid-4 { width: 33.333333%; }
  custom-grid .grid > li.md\:grid-5,
  custom-grid .slider__list > li.md\:grid-5 { width: 41.666667%; }
  custom-grid .grid > li.md\:grid-6,
  custom-grid .slider__list > li.md\:grid-6 { width: 50%; }
  custom-grid .grid > li.md\:grid-7,
  custom-grid .slider__list > li.md\:grid-7 { width: 58.333333%; }
  custom-grid .grid > li.md\:grid-8,
  custom-grid .slider__list > li.md\:grid-8 { width: 66.666667%; }
  custom-grid .grid > li.md\:grid-9,
  custom-grid .slider__list > li.md\:grid-9 { width: 75%; }
  custom-grid .grid > li.md\:grid-10,
  custom-grid .slider__list > li.md\:grid-10 { width: 83.333333%; }
  custom-grid .grid > li.md\:grid-11,
  custom-grid .slider__list > li.md\:grid-11 { width: 91.666667%; }
  custom-grid .grid > li.md\:grid-12,
  custom-grid .slider__list > li.md\:grid-12 { width: 100%; }
  
  /* MD display utilities */
  custom-grid .slider__navbar.md\:d-flex,
  custom-grid .slider__dots.md\:d-flex,
  custom-grid .slider__thumbs.md\:d-flex,
  custom-grid .slider__arrows.md\:d-flex {
    display: flex;
  }
  
  custom-grid .slider__navbar.md\:d-none,
  custom-grid .slider__dots.md\:d-none,
  custom-grid .slider__thumbs.md\:d-none,
  custom-grid .slider__arrows.md\:d-none {
    display: none;
  }
}

/* Responsive grid columns - LG breakpoint (1200px) */
@media screen and (min-width: 1200px) {
  custom-grid .grid > li.lg\:grid-1,
  custom-grid .slider__list > li.lg\:grid-1 { width: 8.333333%; }
  custom-grid .grid > li.lg\:grid-2,
  custom-grid .slider__list > li.lg\:grid-2 { width: 16.666667%; }
  custom-grid .grid > li.lg\:grid-3,
  custom-grid .slider__list > li.lg\:grid-3 { width: 25%; }
  custom-grid .grid > li.lg\:grid-4,
  custom-grid .slider__list > li.lg\:grid-4 { width: 33.333333%; }
  custom-grid .grid > li.lg\:grid-5,
  custom-grid .slider__list > li.lg\:grid-5 { width: 41.666667%; }
  custom-grid .grid > li.lg\:grid-6,
  custom-grid .slider__list > li.lg\:grid-6 { width: 50%; }
  custom-grid .grid > li.lg\:grid-7,
  custom-grid .slider__list > li.lg\:grid-7 { width: 58.333333%; }
  custom-grid .grid > li.lg\:grid-8,
  custom-grid .slider__list > li.lg\:grid-8 { width: 66.666667%; }
  custom-grid .grid > li.lg\:grid-9,
  custom-grid .slider__list > li.lg\:grid-9 { width: 75%; }
  custom-grid .grid > li.lg\:grid-10,
  custom-grid .slider__list > li.lg\:grid-10 { width: 83.333333%; }
  custom-grid .grid > li.lg\:grid-11,
  custom-grid .slider__list > li.lg\:grid-11 { width: 91.666667%; }
  custom-grid .grid > li.lg\:grid-12,
  custom-grid .slider__list > li.lg\:grid-12 { width: 100%; }
  
  /* LG display utilities */
  custom-grid .slider__navbar.lg\:d-flex,
  custom-grid .slider__dots.lg\:d-flex,
  custom-grid .slider__thumbs.lg\:d-flex,
  custom-grid .slider__arrows.lg\:d-flex {
    display: flex;
  }
  
  custom-grid .slider__navbar.lg\:d-none,
  custom-grid .slider__dots.lg\:d-none,
  custom-grid .slider__thumbs.lg\:d-none,
  custom-grid .slider__arrows.lg\:d-none {
    display: none;
  }
}

/* Responsive grid columns - XL breakpoint (1640px) */
@media screen and (min-width: 1640px) {
  custom-grid .grid > li.xl\:grid-1,
  custom-grid .slider__list > li.xl\:grid-1 { width: 8.333333%; }
  custom-grid .grid > li.xl\:grid-2,
  custom-grid .slider__list > li.xl\:grid-2 { width: 16.666667%; }
  custom-grid .grid > li.xl\:grid-3,
  custom-grid .slider__list > li.xl\:grid-3 { width: 25%; }
  custom-grid .grid > li.xl\:grid-4,
  custom-grid .slider__list > li.xl\:grid-4 { width: 33.333333%; }
  custom-grid .grid > li.xl\:grid-5,
  custom-grid .slider__list > li.xl\:grid-5 { width: 41.666667%; }
  custom-grid .grid > li.xl\:grid-6,
  custom-grid .slider__list > li.xl\:grid-6 { width: 50%; }
  custom-grid .grid > li.xl\:grid-7,
  custom-grid .slider__list > li.xl\:grid-7 { width: 58.333333%; }
  custom-grid .grid > li.xl\:grid-8,
  custom-grid .slider__list > li.xl\:grid-8 { width: 66.666667%; }
  custom-grid .grid > li.xl\:grid-9,
  custom-grid .slider__list > li.xl\:grid-9 { width: 75%; }
  custom-grid .grid > li.xl\:grid-10,
  custom-grid .slider__list > li.xl\:grid-10 { width: 83.333333%; }
  custom-grid .grid > li.xl\:grid-11,
  custom-grid .slider__list > li.xl\:grid-11 { width: 91.666667%; }
  custom-grid .grid > li.xl\:grid-12,
  custom-grid .slider__list > li.xl\:grid-12 { width: 100%; }
  
  /* XL display utilities */
  custom-grid .slider__navbar.xl\:d-flex,
  custom-grid .slider__dots.xl\:d-flex,
  custom-grid .slider__thumbs.xl\:d-flex,
  custom-grid .slider__arrows.xl\:d-flex {
    display: flex;
  }
  
  custom-grid .slider__navbar.xl\:d-none,
  custom-grid .slider__dots.xl\:d-none,
  custom-grid .slider__thumbs.xl\:d-none,
  custom-grid .slider__arrows.xl\:d-none {
    display: none;
  }
}

/* Responsive grid columns - 2xl breakpoint (1900px) */
@media screen and (min-width: 1900px) {
  custom-grid .grid > li.2xl\:grid-1,
  custom-grid .slider__list > li.2xl\:grid-1 { width: 8.333333%; }
  custom-grid .grid > li.2xl\:grid-2,
  custom-grid .slider__list > li.2xl\:grid-2 { width: 16.666667%; }
  custom-grid .grid > li.2xl\:grid-3,
  custom-grid .slider__list > li.2xl\:grid-3 { width: 25%; }
  custom-grid .grid > li.2xl\:grid-4,
  custom-grid .slider__list > li.2xl\:grid-4 { width: 33.333333%; }
  custom-grid .grid > li.2xl\:grid-5,
  custom-grid .slider__list > li.2xl\:grid-5 { width: 41.666667%; }
  custom-grid .grid > li.2xl\:grid-6,
  custom-grid .slider__list > li.2xl\:grid-6 { width: 50%; }
  custom-grid .grid > li.2xl\:grid-7,
  custom-grid .slider__list > li.2xl\:grid-7 { width: 58.333333%; }
  custom-grid .grid > li.2xl\:grid-8,
  custom-grid .slider__list > li.2xl\:grid-8 { width: 66.666667%; }
  custom-grid .grid > li.2xl\:grid-9,
  custom-grid .slider__list > li.2xl\:grid-9 { width: 75%; }
  custom-grid .grid > li.2xl\:grid-10,
  custom-grid .slider__list > li.2xl\:grid-10 { width: 83.333333%; }
  custom-grid .grid > li.2xl\:grid-11,
  custom-grid .slider__list > li.2xl\:grid-11 { width: 91.666667%; }
  custom-grid .grid > li.2xl\:grid-12,
  custom-grid .slider__list > li.2xl\:grid-12 { width: 100%; }
  
  /* 2xl display utilities */
  custom-grid .slider__navbar.2xl\:d-flex,
  custom-grid .slider__dots.2xl\:d-flex,
  custom-grid .slider__thumbs.2xl\:d-flex,
  custom-grid .slider__arrows.2xl\:d-flex {
    display: flex;
  }
  
  custom-grid .slider__navbar.2xl\:d-none,
  custom-grid .slider__dots.2xl\:d-none,
  custom-grid .slider__thumbs.2xl\:d-none,
  custom-grid .slider__arrows.2xl\:d-none {
    display: none;
  }
}
