:root {
  --z-modals: 400;
}

/* Colors */

.color-primary {
  color: var(--color-typography-primary);
}

.color-background-primary {
  background-color: var(--color-typography-primary);
}

.color-body {
  color: var(--color-typography-body);
}

.color-background-body {
  background-color: var(--color-typography-body);
}

.color-light {
  color: var(--color-typography-secondary);
}

.color-background-light {
  background-color: var(--color-typography-secondary);
}

.color-white {
  color: var(--color-typography-accent);
}

.color-background-white {
  background-color: var(--color-typography-accent);
}

.color-accent-background-light {
  color: var(--color-background-bg-1);
}

.color-accent-background-dark {
  color: var(--color-background-bg-2);
}

.accent-background-light {
  background-color: var(--color-background-bg-1);
}

.accent-background-dark {
  background-color: var(--color-background-bg-2);
}

/* base */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: var(--viewport-height, 100vh);
}

body {
  min-width: 32rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--color-background-body);
  font-size: 1.3rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  color: var(--color-typography-primary);
}

@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

p a {
  color: inherit;
}

.p1 {
  font-size: 1.6rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

.p2,
.rte,
.select select,
.product-quickview__rating .spr-summary-actions-togglereviews {
  font-size: 1.3rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

.p3 {
  font-size: 1rem;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .p1--fixed {
    font-size: 1.6rem;
  }

  .p2,
  .rte {
    font-size: 1.6rem;
    line-height: calc(1 + 0.6 / var(--font-body-scale));
  }

  .p2--fixed,
  .product-quickview__rating .spr-summary-actions-togglereviews {
    font-size: 1.3rem;
    line-height: calc(1 + 0.6 / var(--font-body-scale));
  }

  .p3 {
    font-size: 1.3rem;
    line-height: calc(1 + 0.6 / var(--font-body-scale));
  }

  .p3--fixed {
    font-size: 1rem;
  }
}

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

.container,
.shopify-challenge__container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.container--xs {
  max-width: 76.8rem;
}

.container--sm {
  max-width: 99.2rem;
}

@media screen and (min-width: 990px) {
  .container,
  .shopify-challenge__container {
    padding: 0 5.6rem;
  }

  .container--md {
    max-width: 121.6rem;
  }

  .container--md-left {
    padding: 0 5.6rem 0 16.8rem;
  }
}

.container--fullwidth {
  max-width: none;
}

.isolate {
  position: relative;
  z-index: 0;
}

.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

/*
* Grid
* - 4 columns on mobile
* - 12 columns on desktop
*/

.grid:not(.splide.is-initialized.is-active .splide__list) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.6rem;
}

.grid__col--1:not(.splide.is-initialized.is-active .splide__slide) {
  grid-column: auto / span 1;
}

.grid__col--2:not(.splide.is-initialized.is-active .splide__slide) {
  grid-column: auto / span 2;
}

.grid__col--3:not(.splide.is-initialized.is-active .splide__slide) {
  grid-column: auto / span 3;
}

.grid__col--4:not(.splide.is-initialized.is-active .splide__slide) {
  grid-column: auto / span 4;
}

@media screen and (min-width: 990px) {
  .grid:not(.splide.is-initialized.is-active .splide__list) {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid__col--lg-1:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 1;
  }

  .grid__col--lg-2:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 2;
  }

  .grid__col--lg-3:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 3;
  }

  .grid__col--lg-4:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 4;
  }

  .grid__col--lg-5:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 5;
  }

  .grid__col--lg-6:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 6;
  }

  .grid__col--lg-7:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 7;
  }

  .grid__col--lg-8:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 8;
  }

  .grid__col--lg-9:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 9;
  }

  .grid__col--lg-10:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 10;
  }

  .grid__col--lg-11:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 11;
  }

  .grid__col--lg-12:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 12;
  }
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hidden {
  display: none !important;
}

.hidden-mobile {
  display: none !important;
}

@media screen and (min-width: 750px) {
  .hidden-mobile {
    display: block !important;
  }

  .hidden-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .hidden-tablet {
    display: block !important;
  }

  .hidden-desktop {
    display: none !important;
  }
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}

.full-width-link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.underlined-link {
  color: var(--color-typography-primary);
  text-decoration: underline;
  text-underline-offset: .3rem;
  text-decoration-thickness: .1rem;
  transition: text-decoration-thickness ease .1s;
}

.underlined-link--no-offset {
  text-underline-offset: 0.1rem;
}

a.underlined-link:hover {
  color: var(--color-typography-primary);
  text-decoration-thickness: .2rem;
}

::selection {
  background-color: var(--color-typography-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
#shopify-product-reviews .spr-header-title,
#shopify-product-reviews .spr-form-title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  word-break: break-word;
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 3.9rem);
  line-height: calc(1 + 0.2  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 6.1rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 3.1rem);
  line-height: calc(1 + 0.2  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 4.9rem);
  }
}

h3,
.h3,
#shopify-product-reviews .spr-form-title {
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: calc(1 + 0.3  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h3,
  .h3,
  #shopify-product-reviews .spr-form-title {
    font-size: calc(var(--font-heading-scale) * 2.6rem);
  }
}

h4,
.h4,
#shopify-product-reviews .spr-header-title {
  font-size: calc(var(--font-heading-scale) * 2rem);
  line-height: calc(1 + 0.3  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h4,
  .h4,
  #shopify-product-reviews .spr-header-title {
    font-size: calc(var(--font-heading-scale) * 3.1rem);
  }
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 2rem);
  line-height: calc(1 + 0.4  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 2.5rem);
  }
}

h6,
.h6 {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
  line-height: calc(1 + 0.6  / max(1, var(--font-heading-scale)));
  font-weight: var(--font-body-weight);
  font-family: var(--font-body-family);
}

@media only screen and (min-width: 750px) {
  h6,
  .h6 {
    font-size: calc(var(--font-heading-scale) * 2rem);
  }
}

blockquote {
  border-left: 0.2rem solid var(--color-typography-secondary);
  padding-left: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-left: 1.5rem;
  }
}

.caption {
  font-size: 1rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .caption {
    font-size: 1.3rem;
  }
}

.caption--desktop {
  font-size: 1.3rem;
}

.caption--mobile {
  font-size: 1rem;
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem var(--color-typography-primary);
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid var(--color-typography-primary);
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium,
#shopify-product-reviews .spr-review-header-title,
strong {
  font-weight: 500;
}

.semi-bold {
  font-weight: 700;
}

.bold {
  font-weight: 600;
}

.capitalize {
  text-transform: capitalize;
}

.overflow-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: var(--color-border-1);
  display: block;
  margin: 4rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 6rem 0;
  }
}

.unstyled-link {
  text-decoration: none;
  color: currentColor;
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}

details > * {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

@media (prefers-reduced-motion) {
  .motion-reduce,
  .motion-reduce::before,
  .motion-reduce::after {
    transition: none !important;
    animation: none !important;
  }
}

:root {
  --duration-short: 150ms;
  --duration-default: 200ms;
  --duration-long: 400ms;
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  height: 0.6rem;
  right: 1.5rem;
  top: calc(50% - 0.2rem);
}

summary::-webkit-details-marker {
  display: none;
}

details-disclosure {
  display: block;
}

.disclosure-has-popup {
  position: relative;
}

.disclosure-has-popup[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: ' ';
  background: rgba(0, 0, 0, 0.2);
}

.disclosure-has-popup > summary::before {
  display: none;
}

.disclosure-has-popup[open] > summary + * {
  position: relative;
  z-index: 100;
}

@media screen and (min-width: 750px) {
  .disclosure-has-popup[open] > summary + * {
    z-index: 4;
  }
}

.disclosure-has-popup--static {
  position: static;
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible,
.focused,
.no-js *:focus {
  outline: 0.2rem solid var(--color-background-bg-2);
  outline-offset: 0.3rem;
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid currentColor;
}

.focused.focus-inset,
.no-js .focus-inset:focus {
  outline: 0.2rem solid currentColor;
}

.no-js .focus-inset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid var(--color-background-bg-2);
  outline-offset: 1rem;
}

.focus-offset.focused,
.no-js .focus-offset:focus {
  outline: 0.2rem solid var(--color-background-bg-2);
  outline-offset: 1rem;
}

.no-js .focus-offset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* component-media */
.media {
  display: block;
  background-color: var(--color-background-images);
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media > img,
.media > noscript > img,
.media > svg {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.media img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.media--no-transition img {
  transition: none;
}

.media--fit-position-top img {
  object-position: top center;
}

.media--fit-position-bottom img {
  object-position: bottom center;
}

.media--1-1 {
  padding-bottom: 100%;
}

.media--3-4 {
  padding-bottom: 133.33%;
}

.media--2-3 {
  padding-bottom: 150%;
}

.media--4-3 {
  padding-bottom: 75%;
}

.media--3-1 {
  padding-bottom: 33.33%;
}

.media--3-2 {
  padding-bottom: 66.66%;
}

.media--16-9 {
  padding-bottom: 56.25%;
}

.media--viewport-height {
  padding-bottom: 100vh;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.media.has-hover [data-secondary-image] {
  display: none;
}

.media.has-hover-disabled [data-secondary-image],
.media.has-hover [data-secondary-image] {
  display: none;
}

@media screen and (min-width: 990px) {
  .media.has-hover [data-secondary-image] {
    display: block;
    opacity: 0;
    visibility: none;
  }

  .media.has-hover:hover [data-primary-image],
  .product-card:hover .media.has-hover [data-primary-image] {
    opacity: 0;
    visibility: none;
  }

  .media.has-hover:hover [data-secondary-image],
  .product-card:hover .media.has-hover [data-secondary-image] {
    opacity: 1;
    visibility: none;
  }
}

.media .lazyload,
.media .lazyloading {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.2);
}

.media .lazyloaded {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

deferred-media {
  display: block;
}

.media--static {
  height: var(--viewport-height, 100vh);
}

.media.media--static > img,
.media.media--static > noscript > img,
.media.media--static > svg {
  object-fit: contain;
}

/* Button component */

.shopify-payment-button__button--unbranded {
  animation: none !important;
}

.button,
#shopify-product-reviews .spr-button,
.shopify-payment-button__button--unbranded {
  min-width: 19.9rem;
  height: 4.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 2.4rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-buttons-primary-text);
  transition: all var(--duration-long) ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-buttons-primary);
  border: none;
  border-radius: var(--buttons-border-width);
  position: relative;
  overflow: hidden;
}

.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: var(--color-buttons-primary) !important;
}

.button::before,
#shopify-product-reviews .spr-button::before,
.shopify-payment-button__button--unbranded::before {
  content: '';
  background-color: #fff;
  opacity: 0.2;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: width var(--duration-long) ease-in-out;
}

.button .button__text {
  position: relative;
  z-index: 2;
}

.button > svg {
  width: 0.7rem;
  height: 1.3rem;
  margin-left: 1.65rem;
  position: relative;
  z-index: 2;
}

.button.is-loading > * {
  opacity: 0;
  visibility: hidden;
}

.button.is-loading::after {
  content: '';
  width: 3rem;
  height: 3rem;
  border: 0.3rem solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  animation: loader-spin 0.5s linear infinite;
}

@keyframes loader-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media screen and (min-width: 750px) {
  .button,
  #shopify-product-reviews .spr-button,
  .shopify-payment-button__button--unbranded {
    min-width: 21.3rem;
    height: 5rem;
    padding: 0 2.4rem;
    font-size: 1.6rem;
  }

  .shopify-payment-button__button--unbranded,
  .button--small {
    font-size: 1.3rem;
  }

  .button:not(.button:disabled):hover::before,
  #shopify-product-reviews .spr-button:not(:disabled):hover::before,
  .shopify-payment-button__button--unbranded:hover:not([disabled])::before {
    width: 100%;
  }

  .button--secondary:hover {
    background-color: var(--color-typography-primary);
    color: var(--color-typography-accent);
  }

  .button--secondary:hover::before {
    display: none;
  }

  .button > svg {
    width: 0.8em;
    height: 1.6rem;
  }
}

.button--medium {
  font-size: 1rem;
  min-width: 12rem;
  height: 3.5rem;
  padding: 0 1.55rem;
}

.button--medium > svg {
  width: 0.7rem;
  height: 1.3rem;
}

.button--chevron {
  padding: 1.2rem 2.4rem;
  height: 4.8rem;
}

.button--chevron > svg {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: .8rem;
  height: 1.4rem;
  margin: -.2rem .4rem 0 1.6rem;
}

.button--secondary {
  background-color: var(--color-buttons-secondary);
  color: var(--color-buttons-secondary-text);
  border: 0.1rem solid var(--color-border-1);
}

@media screen and (min-width: 750px) {
  .button--medium {
    font-size: 1.3rem;
    height: 4.7rem;
    padding: 0 1.6rem;
    min-width: 14rem;
  }
}

/* Button - other */

.button:disabled,
.button[aria-disabled='true'],
.button.disabled,
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button-link,
.spr-summary-actions-newreview {
  display: inline-block;
  border: 0;
  padding: 0 0 0.5rem;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  text-decoration: none;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
}

.button-link::after,
.spr-summary-actions-newreview::after {
  content: '';
  width: 100%;
  height: 0.1rem;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  transition: width var(--duration-long) ease-in-out;
}

.button-link--back {
  display: inline-block;
  position: relative;
  padding-left: 3rem;
}

.button-link--back span {
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.button-link--back:after {
  display: none;
}

@media screen and (min-width: 750px) {
  .button-link,
  .spr-summary-actions-newreview {
    font-size: 1.6rem;
  }

  .button-link:hover::after,
  .spr-summary-actions-newreview:hover::after {
    width: 35%;
  }

  .button-link--back {
    padding-left: 3.7rem;
  }
}

.button-link--medium {
  font-size: 1.3rem;
}

.button-link--full-width {
  display: block;
  width: 100%;
}

.button-arrow,
.button-icon {
  color: var(--color-buttons-primary-text);
  background-color: var(--color-buttons-primary);
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 990px) {
  .button-arrow:hover,
  .button-arrow:focus-visible,
  .button-icon:hover,
  .button-icon:focus-visible {
    opacity: 0.6;
  }
}

.button-arrow svg {
  width: 1.1rem;
  height: 2rem;
  pointer-events: none;
}

.button-arrow--large {
  width: 5rem;
  height: 5rem;
}

@media screen and (min-width: 990px) {
  .button-arrow--large {
    width: 6rem;
    height: 6rem;
  }
}

.button-arrow--medium {
  width: 4rem;
  height: 4rem;
}

.button-arrow--small {
  width: 3.2rem;
  height: 3.2rem;
}

.button-arrow--large svg,
.button-arrow--medium svg,
.button-arrow--small svg {
  width: 0.9rem;
  height: 1.5rem;
}

@media screen and (min-width: 990px) {
  .button-arrow--large svg {
    width: 1.1rem;
    height: 2.1rem;
  }
}

.button-arrow--transparent,
.button-icon--transparent {
  color: black;
  background-color: transparent;
  position: relative;
}

.button-arrow--left svg {
  transform: rotate(180deg);
}

.button-arrow--transparent::before,
.button-icon--transparent::before {
  content: '';
  width: 100%;
  height: 100%;
  border: 0.1rem solid currentColor;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.button-icon--wishlist {
  background-color: var(--color-buttons-secondary);
}

.button-icon--wishlist svg:last-child {
  display: none;
}

.button-icon--wishlist.is-active svg:first-child {
  display: none;
}

.button-icon--wishlist.is-active svg:last-child {
  display: inline;
}

.button-icon--wishlist::before {
  border-color: var(--color-border-1);
  opacity: 1;
}

.button-back {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.button-back__icon {
  margin-right: 2rem;
  line-height: 0;
  will-change: transform;
  transition: transform .3s;
}

.button-back:hover .button-back__icon {
  transform: translateX(-.4rem);
}

/* component-modal */
.modal__toggle {
  list-style-type: none;
}

.no-js details[open] .modal__toggle {
  position: absolute;
  z-index: 5;
}

.modal__toggle-close {
  display: none;
}

.no-js details[open] svg.modal__toggle-close {
  display: flex;
  z-index: 1;
  height: 1.7rem;
  width: 1.7rem;
}

.modal__toggle-open {
  display: flex;
}

.no-js details[open] .modal__toggle-open {
  display: none;
}

.no-js .modal__close-button.link {
  display: none;
}

.modal__close-button.link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  height: 4.4rem;
  width: 4.4rem;
  background-color: transparent;
}

.modal__close-button .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-modal {
  cursor: zoom-out;
}

.media-modal .deferred-media {
  cursor: initial;
}

.overflow-hidden-mobile,
.overflow-hidden-tablet {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .overflow-hidden-mobile {
    overflow: auto;
  }
}

@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}

/*
 *
 * Form elements
 *
*/

input {
  font-family: inherit;
}

/* Button */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: border-box;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Search input */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

/*  Quantity  */
.quantity {
  position: relative;
  max-width: 10rem;
  display: block;
}

.quantity__input {
  appearance: textfield;
  -webkit-appearance: none;
  height: 4rem;
  width: 10rem;
  border: 1px solid var(--color-border-1);
  padding: 0 2.5rem;
  background: var(--color-background-elements);
  font-size: 1.6rem;
  color: var(--color-typography-primary);
  text-align: center;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.quantity__input:focus,
.quantity__input:focus-visible,
.quantity__input.focused {
  outline: 0;
  border-color: var(--color-typography-primary);
}

.quantity__input::-webkit-inner-spin-button,
.quantity__input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.quantity__button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.quantity__button:hover svg {
  transform: scale(1.1);
}

.quantity__button > * {
  pointer-events: none;
}

.quantity__button[name="minus"] {
  left: 0;
}

.quantity__button[name="minus"] svg {
  width: .93rem;
}

.quantity__button[name="plus"] {
  right: 0;
}

.quantity__button[name="plus"] svg {
  width: .93rem;
}

/* Animations */
[data-fade-in] {
  opacity: 0;
  transform: translateY(5rem);
}

.fade-in {
  animation: fade-in 0.8s 0.4s forwards;
}

.fade-in-down {
  animation: fade-in-down 0.8s 0.4s forwards;
}

.fade-out {
  animation: fade-out 0.8s 0.4s forwards;
}

.fade-out-up {
  animation: fade-out-up 0.8s 0.4s forwards;
}

.fade-in-simple {
  animation: fade-in-simple 0.8s 0.4s forwards;
}

.fade-out-simple {
  animation: fade-out-simple 0.8s 0.4s forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(5rem);
  }
}

@keyframes fade-out-up {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-5rem);
  }
}

@keyframes fade-in-simple {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-out-simple {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Splide slider */
.splide .splide__slide {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.splide * {
  will-change: transform;
}

.no-js .splide {
  visibility: visible;
}

.no-js .splide__list {
  display: block;
}

/*  Checkboxes  */
.checkbox:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}

input[type="checkbox"] {
  position: relative;
  float: left;
  box-sizing: border-box;
  border: 1px solid var(--color-border-2);
  margin: 0;
  padding: 0;
  width: 2rem;
  height: 2rem;
  background: var(--color-background-elements);
  appearance: none;
  -webkit-appearance: none;
  vertical-align: top;
}

input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: .6rem;
  width: 1.1rem;
  margin-top: -.1rem;
  border-top: .2rem solid var(--color-background-bg-2);
  border-right: .2rem solid var(--color-background-bg-2);
  transform: translate(-50%, -50%) rotate(135deg);
  opacity: 0;
  visibility: hidden;
}

input[type="checkbox"] + label {
  float: left;
  width: calc(100% - 2rem);
  padding-left: .8rem;
}

input[type="checkbox"] + label a {
  color: inherit;
  text-underline-offset: .2rem;
}

input[type="checkbox"] + label a:hover {
  text-decoration-thickness: .2rem;
}

input[type="checkbox"]:checked:before {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 750px) {
  input[type="checkbox"] {
    margin: .3rem 0;
  }
}

/*  Textarea  */
.text-area {
  border: .1rem solid var(--color-border-1);
  padding: 1.1rem;
  width: 100%;
  min-height: 12rem;
  display: block;
  background: var(--color-background-elements);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  resize: none;
}

.text-area:focus-visible,
.text-area.focused {
  outline-offset: 0;
}

.text-area.field__input {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  height: 12rem;
}

.shopify-policy__body .rte {
  margin-bottom: 3.2rem;
}

@media screen and (min-width: 990px) {
  .shopify-policy__body .rte {
    margin-bottom: 6.4rem;
  }
}

.rte a {
  color: inherit;
}

.rte p {
  margin: 0;
}

.rte p + p {
  margin-top: 2.4rem;
}

.rte img {
  max-width: 100%;
}

.rte blockquote {
  margin: 3.2rem 4rem 3.2rem 3rem;
}

@media screen and (min-width: 990px) {
  .rte {
    color: var(--color-typography-body);
  }

  .rte h1,
  .rte h2,
  .rte h3,
  .rte h4,
  .rte h5,
  .rte h6,
  .rte blockquote {
    color: var(--color-typography-primary);
  }
}

.select {
  min-width: 16.5rem;
  position: relative;
  z-index: 1;
}

.select select {
  color: var(--color-typography-primary);
  background-color: var(--color-background-elements);
  font: inherit;
  display: block;
  width: 100%;
  height: 4.8rem;
  padding: 0 3.7rem 0 1.6rem;
  border: 0.1rem solid var(--color-border-1);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.select select:invalid {
  color: var(--color-typography-body);
}

.select select::-ms-expand {
  display: none;
}

.select svg {
  width: 2rem;
  height: 1.4rem;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.15rem;
  z-index: 1;
  transform: rotate(90deg);
  pointer-events: none;
}

@media screen and (min-width: 1200px) {
  .select {
    min-width: 19.5rem;
  }
}

/* Form Components */
.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}

.form__message svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.field .form__message svg {
  align-self: start;
}

.field__label,
.spr-form-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.6rem;
}

.field__input,
.spr-form-input-text,
.spr-form-input-email,
.spr-form-input-textarea {
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-background-elements);
  color: var(--color-typography-primary);
  font-family: inherit;
  font-size: 1.6rem;
  width: 100%;
  border-radius: 0;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  height: 4.8rem;
  position: relative;
  border: 0.1rem solid var( --color-typography-secondary );
  padding: 0 1.5rem;
}

.spr-form-input-textarea {
  padding: 1.5rem;
}

.form__row {
  margin-bottom: 2.5rem;
}

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

.form__row.double > * {
  margin-bottom: 2.5rem;
}

.form__row.double > *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 990px) {
  .form__row.double {
    display: flex;
    justify-content: space-between;
  }

  .form__row.double > * {
    width: calc(50% - 0.8rem);
    margin: 0;
  }
}

.form__errors a {
  text-decoration: none;
  color: var(--color-typography-primary);
}

.radio {
  display: block;
}

.radio label {
  display: block;
  padding-left: 2.8rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.radio label::before {
  content: '';
  background-color: var(--color-background-elements);
  width: 1.6rem;
  height: 1.6rem;
  border: 0.1rem solid var(--color-border-2);
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: -0.2rem;
  left: 0;
  bottom: 0;
  z-index: 1;
  box-shadow: none;
  transition: box-shadow var(--duration-short);
}

.radio input:checked + label::before {
  box-shadow: inset 0 0 0 2px white;
  background-color: var(--color-background-bg-2);
}

.localization-opener__button {
  display: flex;
  align-items: center;
}

.localization-opener__button svg {
  margin-left: 2rem;
}

.localization-opener__image {
  width: 2.1rem;
  margin-right: 0.8rem;
}
.feature-info-section-image img {
    max-width: 100%;
    width: 100%;
}
.feature-info-section-title h4 {
    font-weight: 600;
    font-size: 20px;
    margin: 10px 0 10px;
}
.feature-info-section-discription p {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    margin-bottom: 10px;
}
.feature-info-section-inner a {
    text-decoration: none;
    color: #000000;
}
.feature-info-section-button p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    margin-bottom: 20px;
    display: inline-block;
}
.feature-info-section {
    padding: 60px 0;
}
.feature-info-section-header {
    text-align: center;
}



.custom-image-banner-image img {
    max-width: 100% !important;
    width: 100% !important;
}
.custom-image-banner {
    margin-bottom: -10px;
}
.custom-image-banner-inner {
    position: relative;
}
.custom-image-banner-content {
    width: 50%;
    text-align: center;
    padding: 50px 20px;
    position: absolute;
    z-index: 1;
}
.custom-image-banner-inner a {
    text-decoration: none;
}
.custom-image-banner-sub-title h4 {
    font-size: 16px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 20px;
}
.custom-image-banner-title h2 {
    font-size: 26px;
    text-transform: none;
    padding: 0px;
    line-height: 1.1em;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 20px;
}
.custom-image-banner-discription p {
    font-size: 16px;
    line-height: 1.3em;
    margin: 0;
    margin-bottom: 7px;
}
.custom-image-banner-button p {
    font-size: 16px;
    margin: 0;
    margin-top: 13px;
    font-weight: 600;
    text-decoration: underline;
}
@media (min-width: 990px){
  .custom-image-banner-image-mobile {
    display: none;
}
  .custom-image-banner-content.top-left{
    top: 30px;
    left: 30px;
}
.custom-image-banner-content.top-center {
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
}
.custom-image-banner-content.top-right {
    top: 30px;
    right: 30px;
}
.custom-image-banner-content.midale-left {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
.custom-image-banner-content.midale-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.custom-image-banner-content.midale-right {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.custom-image-banner-content.bottom-left {
    bottom: 30px;
    left: 30px;
}
.custom-image-banner-content.bottom-center {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.custom-image-banner-content.bottom-right {
    bottom: 30px;
    right: 30px;
}
}
.fdfd form {
    position: relative;
}
.fdfd form svg {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}
.fdfd form input {
    border-radius: 5px;
    background-color: #f8f8f8;
    height: 30px;
    color: #000;
    padding-right: 20px;
    padding-left: 35px;
    border: 1px solid #ccc;
}
.fdfd form input:focus-visible {
    outline: none;
    outline-offset: unset;
    border: 1px solid #000;
}
.djhfjh {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tmenu_app .tmenu_nav .tmenu_item--root:nth-child(5) > .tmenu_item_link {
    color: #e70d0d !important;
}

@media (max-width: 1399px){

  .custom-image-banner-title h2 {
    font-size: 24px;
  }
  .custom-image-banner-sub-title h4 {
    font-size: 15px;
}
}
@media (max-width: 1199px){
  
  .custom-image-banner-content {
    padding: 20px 20px;
}
.custom-image-banner-title h2 {
    font-size: 20px;
}
}
@media (max-width: 1032px){
.custom-image-banner-title h2 {
    font-size: 18px;
}
}
@media(min-width: 1025px){
.header__utils.mhghgf {
    display: none;
}
  h3.center.featured-collection__title.h3 p {
    margin: 55px 0;
}
  
  .mobile-view{
    display: none !important;
  }
}
@media (min-width: 1025px) and (max-width: 1177px){
  .djhfjh .header__utils li.header__utils__item.header__utils__item--search {
    display: none;
}
}
@media (max-width: 1024px){
  
  .desktop-view{
    display: none !important;
  }
  .header__utils__item--account {
    display: block !important;
}
  .djhfjh {
    display: none;
}
  .feature-info-section {
    padding: 20px 0;
}
  .feature-info-pad-section {
    padding: 30px 0;
}
  .custom-image-banner-image-desktop {
    display: none;
}
  .custom-image-banner-content {
    width: 95%;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
  .custom-image-banner-sub-title h4 {
    font-size: 14px;
    margin: 0 0 10px;
}
  .custom-image-banner-title h2 {
    font-size: 20px;
    margin: 0 0 10px;
}
  .custom-image-banner-discription p {
    font-size: 14px;
    line-height: 1.1em;
    margin: 0 0 5px;
}
.custom-image-banner-button p {
    font-size: 14px;
    margin: 7px 0 0;
}

}
.fdvcdfgf .collection-banner__image img {
    margin-bottom: -8px;
    max-width: 100%;
    width: 100%;
}
@media screen and (min-width: 990px){
  .fdvcdfgf .collection-banner__image {
    height: auto;
}
.fdvcdfgf .collection-banner__image {
    position: relative !important;
}
  .fdvcdfgf.collection-banner .container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
  
.collection-banner {
    min-height: auto !important;
}
.collection-banner--no-image .collection-banner__inner {
     position: unset !important; 
     left: unset!important; 
     transform: unset!important; 
}
.collection-banner--no-image .collection-banner__breadcrumbs {
     position: static !important; 
     left: unset!important; 
     transform: unset!important; 
}
}
@media (min-width: 991px) and (max-width: 1024px){
  .fdvcdfgf .collection-banner__breadcrumbs.container {
    top: 40px;
}
}
@media (max-width: 990px){
  .fdvcdfgf .collection-banner__image img {
    margin-bottom: -5px;
    height: 450px;
        object-fit: cover;
}
  .fdvcdfgf .collection-banner__image {
    height: auto;
    padding-top: 0% !important;
}
}
details-holder:nth-child(7) .disclosure-has-popup[open]>summary+.facets__display, details-holder:nth-child(8) .disclosure-has-popup[open]>summary+.facets__display {
    left: auto !important;
    right: 0 !important;
}
.custom-image-with-text-image img {
    max-width: 100%;
/*   border-radius: 5px 0 0 5px; */
}
.custom-image-with-text .row {
/*     border-radius: 5px; */
}
.custom-image-with-text-inner {
    padding: 30px;
}
.custom-image-with-text-image {
    margin-bottom: -8px;
}
.custom-image-with-text-title h2 {
    margin: 0 0 10px;
  font-family: 'Baskerville Display PT Web';
  font-weight: 600;
}
.custom-image-with-text-sub-title p {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px;
}
.custom-image-with-text-button a {
    font-size: 16px;
    line-height: 26px;
    padding: 10px 25px;
    text-decoration: none;
    margin-top: 5px;
    display: inline-block;
}
@media (max-width: 575px){
  .custom-image-with-text-title h2 br {
    display: none;
}
  .custom-image-with-text-inner {
    padding: 20px;
}
}
a.tyhyh {
    padding: 10px 25px;
    text-decoration: none;
    margin-top: 14px;
    display: inline-block;
}
.ertrt.richtext:after{
  display: none !important;
}
.sjfrj .custom-image-with-text-inner {
    padding: 0;
}
.price__from.fggfg {
    color: #e22828;
}

@media (min-width: 768px){
  .custom-image-with-text-button.dfgg a:first-child {
    margin-right: 10px !important;
}
}
@media (max-width: 767px){
  .custom-image-with-text-button.dfgg {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
    padding: 0 30px !important;
    margin-bottom: 20px !important;
}
  .custom-image-with-text-button.dfgg a:first-child {
    margin-bottom: 10px !important;
}
  .feature-info-section-button {
    display: none;
}
}
@media (max-width: 480px)
.custom-image-with-text-button.dfgg {
    padding: 0 20px!important;
}
.custom-text-rich p {
    margin: 0;
    font-size: 12px;
}
.custom-text-rich {
    padding: 15px;
    margin-bottom: 15px;
}
@media (max-width: 575px){
  .custom-text-rich {
    padding: 10px;
}
  .custom-text-rich p {
    font-size: 10px;
}
}
.trendy-section-image img {
    max-width: 100%;
}
.trendy-section {
    padding: 60px 0;
    text-align: center;
}
.trendy-section-header h2 {
    margin: 0;
    margin-bottom: 50px;
}
.trendy-section-title h2, .trendy-section-title h4 {
    margin: 0;
}
.trendy-section-title h2{
  margin-bottom: 15px;
}
.trendy-section-inner {
    margin: 30px 15px;
}
.trendy-section-main .col-md-4 {
    border: 1px solid;
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trendy-section-main .col-md-4:nth-child(8), .trendy-section-main .col-md-4:nth-child(9), .trendy-section-main .col-md-4:nth-child(10) {
    border-bottom: 1px solid;
}

.trendy-section-main .col-md-4:nth-child(2), .trendy-section-main .col-md-4:nth-child(5), .trendy-section-main .col-md-4:nth-child(8) {
    border-right: 0;
}
.trendy-section-main .col-md-4:nth-child(4), .trendy-section-main .col-md-4:nth-child(7), .trendy-section-main .col-md-4:nth-child(10) {
    border-left: 0;
}
.trendy-section-button a {
    text-decoration: none;
    padding: 15px 25px;
}
.trendy-section-inner a{
  text-decoration: none;
}
.trendy-section-inner.fgfghfgh {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trendy-section .col-md-4:nth-child(2), .trendy-section .col-md-4:nth-child(3), .trendy-section .col-md-4:nth-child(4) {
    border-top: 8px solid;
}
.custom-feature-product-card-box-image img {
    max-width: 100%;
    display: block;
}
.custom-feature-product-card-box-image {
    position: relative;
}
img.custom-feature-product-card-box-img-hidden {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: all .4s;
}
.custom-feature-product-card-box-content:hover img.custom-feature-product-card-box-img-hidden {
    opacity: 1;
}
.custom-feature-product-card-box {
    position: relative;
}
.custom-feature-product-card-box-whislist wishlist-button button {
    opacity: 1;
    background-color: transparent;
    border: 0;
}
.custom-feature-product-card-box-whislist wishlist-button button:before {
    border: 0;
}
.custom-feature-product-card-box-content a {
    text-decoration: none;
    color: #000
}
.custom-feature-product-card-box-info {
    margin-top: 15px;
}
.custom-feature-product-header {
    text-align: center;
    margin-bottom: 50px;
}
.custom-feature-product-header-content h2 {
    margin: 0;
    margin-bottom: 20px;
}
.custom-feature-product {
    padding: 60px 0;
}
.custom-feature-product-header-view-all a {
    text-decoration: none;
    color: #000;
}
.slick-slider {
    margin: 0 -4px;
  padding: 20px;
}
.dfdfdgfg.slick-slide {
    margin-right: 4px;
    margin-left: 4px;
}
.custom-feature-product-main {
    max-width: 95%;
    margin: 0 auto;
}
.slide-arrow {
    background-color: #fff;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    cursor: pointer;
  opacity: 0;
  overflow: hidden;
  transition: all .4s;
}
.custom-feature-product-main:hover .slide-arrow {
    opacity: 1;
}
.slide-arrow.next-arrow.fdfdf.slick-arrow {
    right: -42px;
    padding-left: 25px;
}
.slide-arrow.prev-arrow.fdfdf.slick-arrow {
    left: -42px;
  padding-right: 25px;
}
span.arowss {
    position: relative;
}
span.arowss i {
    color: #000;
    padding-right: 0;
    transition: all .4s;
}
span.arowss span {
    color: #000;
    padding-left: 5px;
    text-transform: lowercase;
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    left: 7px;
    transition: all .4s;
    opacity: 0;
}
.slide-arrow:hover span.arrows-text {
    opacity: 1;
}
.slide-arrow.prev-arrow.fdfdf.slick-arrow:hover i {
    padding-right: 45px;
}
.slide-arrow.next-arrow.fdfdf.slick-arrow:hover i {
    padding-left: 45px;
}
.slide-arrow.next-arrow.fdfdf.slick-arrow span.arowss span {
    left: 0px;
}




.faq-accordion {
  padding: 10px 0;
}
span.arrow-icon img {
    width: 18px;
    height: 18px;
}
input.tgg-title {
  appearance: unset;
  all: unset;
}

.faq-accordion-title label {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
span.arrow-icon {
    padding-left: 6px;
}
.faq-accordion-title span {
  transition: transform 0.4s ease-in-out;
}

.faq-accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}
.faq-accordion .tgg-title:checked + div > label > h2 {
  font-weight: 700;
}
.tgg-title:checked ~ .faq-accordion-title span {
  transform: rotate(180deg);
  display: inline-block;
}

.faq-accordion .tgg-title:checked ~ .faq-accordion-content {
  max-height: 100%;
  padding: 50px 0;
}
.faq-accordion {
    text-align: center;
}
.faq-accordion-title h4 {
    padding: 0;
    margin: 0 !important;
}
@media (max-width: 1399px){
.slide-arrow.next-arrow.fdfdf.slick-arrow {
    right: -8px;
}
.slide-arrow.prev-arrow.fdfdf.slick-arrow {
    left: -8px;
}
}
@media (min-width: 768px){
  .trendy-section-main .col-md-4:nth-child(1){
    display: none
  }
  .mobile-show {
    display: none;
}
}

@media (max-width: 767px){
  .desktop-show {
    display: none;
}
    .custom-image-with-text.jkjefj {
    background-image: unset !important;
}
  .trendy-section-main .col-md-4:nth-child(6){
    display: none
  }
  .col-md-4.sdsdsd {
    margin: 0;
    border: 0;
}
  .col-md-4.sdsdsd .trendy-section-inner.fgfghfgh h2 {
    margin-bottom: 25px;
}
  .col-md-4.sdsdsd .trendy-section-inner.fgfghfgh h2 br {
    display: none;
}
  .col-md-4.sdsdsd .trendy-section-inner.fgfghfgh {
    margin: 0;
    padding: 30px;
}
  .trendy-section-main .col-md-4:nth-child(8), .trendy-section-main .col-md-4:nth-child(5){
    border-right: 1px solid;
    border-left: 0;
}
  .trendy-section-main .col-md-4:nth-child(8){
    border-bottom: 0;
}
  .trendy-section-main .col-md-4:nth-child(7), .trendy-section-main .col-md-4:nth-child(4){
    border-left: 1px solid;
}
  .trendy-section {
    padding: 30px 0;
}
.col-md-4:nth-child(4) {
    border-top: 1px solid;
}
  .kjhfkdjfk ul.slick-dots {
    transform: translateX(-23px) !important;
}
  .kjhfkdjfk .slick-dots li button:before {
    color: #fff !important;
    opacity: 1 !important;
}
  .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #fff !important;
}
  .faq-accordion .tgg-title:checked ~ .faq-accordion-content {
    padding: 20px 0;
}
}
.effef {
    text-decoration: none;
}
.slideshow-new-banner-discription {
    margin-bottom: 15px;
}
.slideshow-new-banner-title {
    margin-bottom: 10px;
}
.slideshow-new-banner-accent {
    margin-bottom: 10px;
}
.slideshow-new-banner-sub-title {
    margin-bottom: 10px;
}
.slideshow-new-banner-sub-title h4, .slideshow-new-banner-title h2, .slideshow-new-banner-accent h5 {
    line-height: 1;
}
.featured-collection__slider-slidewdwd {
    padding-right: 15px;
}
.featured-collection__slider-slidewdwd:last-child {
    padding-right: 0;
}
.cjsncjnjcj .slide-arrow {
    background-color: transparent;
    height: auto;
    top: -75px;
    transform: unset;
    z-index: 1;
    display: unset;
    padding: 0;
    opacity: 1;
}
.cjsncjnjcj button.slide-arrow.next-arrow {
    right: 20px;
}
.cjsncjnjcj button.slide-arrow.prev-arrow {
    right: 60px;
}
.cjsncjnjcj button i {
    font-size: 30px;
}
.cjsncjnjcj product-card.product-card {
    background-color: #fff;
}
.cjsncjnjcj .product-card__content {
    padding: 10px;
}
.feature-collection-tab-main .tab ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    margin-left: 15px;
}
.feature-collection-tab-main .tab ul li {
    margin-right: 15px;
  
}
.feature-collection-tab-main .tab ul li:last-child {
    margin-right: 0;
}
.feature-collection-tab-main .slick-slider {
    margin: 0;
    padding: 0;
}
.feature-collection-tab-header h2 {
    margin: 0;
    margin-bottom: 10px;
}
.feature-collection-tab-header p {
    margin: 0;
}
.feature-collection-tab-header {
    margin-left: 15px;
}
.feature-collection-tab-main [aria-disabled="true"] i {
    color: gray !important;
}
.owl-stage {
    display: flex;
}
button.owl-prev {
    margin-right: 10px;
}
.owl-nav {
    position: absolute;
    top: 30px;
    right: 33px;
}
.feature-collection-list-main a {
    text-decoration: none;
}
.feature-collection-list-title p {
    margin: 0;
    text-align: center;
}
.feature-collection-list-header h2 {
    margin: 0;
    margin-bottom: 30px;
    text-align: center;
}
@media (min-width: 768px){
.feature-collection-list-image img {
    max-width: 100%;
}
  .feature-collection-list-main ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0 -10px;
}
  .feature-collection-list-main ul li {
    width: 150px;
    margin: 0 10px;
}
}

@media (max-width: 767px){
  .feature-collection-list-image img {
    width: 124px;
}
  .feature-collection-list-main ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: unset;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}
  .feature-collection-list-main ul li {
    width: 33.333%;
    margin-right: 36px;
}
}