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

html {
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  font-size: calc(var(--body-font-size) * 1);
  letter-spacing: calc(var(--body-letter-spacing) / 1000);
  line-height: var(--body-line-height);
  font-family: var(--body-font);
  font-style: var(--body-font-style);
  font-weight: var(--body-font-weight);
}

body,
html {
  background-color: rgba(var(--color-page-background));
  color: rgba(var(--color-text));
}

a:empty,
ul:empty,
dl:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  /* display: none; */
}
img{
  max-width:100%;
}
ul{
  padding: 0;
}
a:not([href]) {
  cursor: not-allowed;
}

a:not(.button),
a:not(.button):hover {
  color: rgba(var(--color-text));
  text-decoration: none;
}

svg.icon circle,
svg.icon path {
  vector-effect: non-scaling-stroke;
}
li{
    list-style: none;
  /* display: inline-block; */
}
/* base-details-summary */

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

deferred-media {
  display: block;
}

*:focus {
  outline: 0;
}

.page-width {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  max-width: calc(var(--page-width) + 60px);
  width: 100%;
}

.page-width.page-width--narrow {
  max-width: 726px;
}

@media screen and (max-width: 959px) {
  .page-width {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--grid-horizontal-space) * -0.5);
  margin-right: calc(var(--grid-horizontal-space) * -0.5);
  margin-top: calc(var(--grid-vertical-space) * -1);
  list-style: none;
  padding: 0;
}

@media (max-width: 959px) {
  .grid {
    --grid-vertical-space: var(--grid-mobile-vertical-space);
    --grid-horizontal-space: var(--grid-mobile-horizontal-space);
  }
}

.grid > * {
  box-sizing: border-box;
  flex-shrink: 0;
  margin-top: var(--grid-vertical-space);
  max-width: 100%;
  padding-left: calc(var(--grid-horizontal-space) * 0.5);
  padding-right: calc(var(--grid-horizontal-space) * 0.5);
  width: 100%;
}

.grid-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.grid-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.grid-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.grid-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.grid-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.grid-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media screen and (max-width: 959px) {
  .grid-cols-1-tablet > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .grid-cols-2-tablet > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .grid-cols-3-tablet > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .grid-cols-4-tablet > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .grid-cols-5-tablet > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .grid-cols-6-tablet > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}

@media screen and (min-width: 960px) {
  .grid-cols-1-desktop > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .grid-cols-2-desktop > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .grid-cols-3-desktop > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .grid-cols-4-desktop > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .grid-cols-5-desktop > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .grid-cols-6-desktop > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.align-baseline{
  vertical-align:baseline !important;
}

.align-top{
  vertical-align:top !important;
}

.align-middle{
  vertical-align:middle !important;
}

.align-bottom{
  vertical-align:bottom !important;
}

.d-inline{
  display:inline !important;
}

.d-block{
  display:block !important;
}

.d-none{
  display:none !important;
}

.d-flex{
  display:flex !important;
}

.d-inline-block{
  display:inline-block !important;
}

.fst-italic{
  font-style:italic !important;
}

.fst-normal{
  font-style:normal !important;
}

.fw-lighter{
  font-weight:lighter !important;
}

.fw-light{
  font-weight:light !important;
}

.fw-normal{
  font-weight:400 !important;
}

.fw-bold{
  font-weight:700 !important;
}

.fw-bolder{
  font-weight:bolder !important;
}

.text-left{
  text-align:left !important;
}

.text-center{
  text-align:center !important;
}

.text-right{
  text-align:right !important;
}

.text-lowercase{
  text-transform:lowercase !important;
}

.text-uppercase{
  text-transform:uppercase !important;
}

.text-capitalize{
  text-transform:capitalize !important;
}

.visible{
  visibility:visible !important;
}

.invisible{
  visibility:hidden !important;
}

@media (min-width:750px){
  .d-md-inline{
    display:inline !important;
  }
  .d-md-block{
    display:block !important;
  }
  .d-md-none{
    display:none !important;
  }
  .d-md-flex{
    display:flex !important;
  }
  .d-md-inline-block{
    display:inline-block !important;
  }
  .text-md-left{
    text-align:left !important;
  }
  .text-md-center{
    text-align:center !important;
  }
  .text-md-right{
    text-align:right !important;
  }
}
@media (min-width:960px){
  .d-lg-inline{
    display:inline !important;
  }
  .d-lg-block{
    display:block !important;
  }
  .d-lg-none{
    display:none !important;
  }
  .d-lg-flex{
    display:flex !important;
  }
  .d-lg-inline-block{
    display:inline-block !important;
  }
  .text-lg-left{
    text-align:left !important;
  }
  .text-lg-center{
    text-align:center !important;
  }
  .text-lg-right{
    text-align:right !important;
  }
}
@media (min-width:1200px){
  .d-xl-inline{
    display:inline !important;
  }
  .d-xl-block{
    display:block !important;
  }
  .d-xl-none{
    display:none !important;
  }
  .d-xl-flex{
    display:flex !important;
  }
  .d-xl-inline-block{
    display:inline-block !important;
  }
  .text-xl-left{
    text-align:left !important;
  }
  .text-xl-center{
    text-align:center !important;
  }
  .text-xl-right{
    text-align:right !important;
  }
}
@media screen and (max-width: 959px) {
  .display-block-tablet {
    display: block !important;
  }

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

  .display-flex-tablet {
    display: flex !important;
  }

  .display-inline-block-tablet {
    display: inline-block !important;
  }
}

@media screen and (min-width: 960px) {
  .display-block-desktop {
    display: block !important;
  }

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

  .display-flex-desktop {
    display: flex !important;
  }

  .display-inline-block-desktop {
    display: inline-block !important;
  }
  .display-inline-flex-desktop {
    display: inline-flex !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.title1,
.title2,
.title3,
.title4,
.title5,
.title6 {
  font-family: var(--title-font);
  font-style: var(--title-font-style);
  font-weight: var(--title-font-weight, 700);
  letter-spacing: var(--title-letter-spacing);
  line-height: var(--title-line-height);
  margin-bottom: 0;
  margin-top: 0;
  word-break: break-word;
  text-transform: var(--title-text-transform);
}

h1,
.title1 {
  font-size: calc(var(--title-font-size) * 1);
}

@media (min-width: 960px) {
  h1,
  .title1 {
    font-size: calc(var(--title-font-size) * 2.333333);
  }
}

h2,
.title2 {
  font-size: calc(var(--title-font-size) * 0.833333);
}

@media (min-width: 960px) {
  h2,
  .title2 {
    font-size: calc(var(--title-font-size) * 1.666667);
  }
}

h3,
.title3 {
  font-size: calc(var(--title-font-size) * 0.733333);
}

@media (min-width: 960px) {
  h3,
  .title3 {
    font-size: calc(var(--title-font-size) * 1.2);
  }
}

h4,
.title4 {
  font-size: calc(var(--title-font-size) * 0.666667);
}

@media (min-width: 960px) {
  h4,
  .title4 {
    font-size: calc(var(--title-font-size) * 1);
  }
}

h5,
.title5 {
  font-size: calc(var(--title-font-size) * 0.6);
}

@media (min-width: 960px) {
  h5,
  .title5 {
    font-size: calc(var(--title-font-size) * 0.833333);
  }
}

h6,
.title6 {
  font-size: calc(var(--title-font-size) * 0.6);
}

@media (min-width: 960px) {
  h6,
  .title6 {
    font-size: calc(var(--title-font-size) * 0.666667);
  }
}

.body-font,
.body1,
.body2,
.body3,
.body4,
.body5,
.body6 {
  font-family: var(--body-font);
  font-style: var(--body-font-style);
  font-weight: var(--body-font-weight, 400);
  letter-spacing: var(--body-letter-spacing);
  line-height: var(--body-line-height);
  word-break: break-word;
}

.body1 {
  font-size: calc(var(--body-font-size) * 1.142857);
}

@media (min-width: 960px) {
  .body1 {
    font-size: calc(var(--body-font-size) * 1.571429);
  }
}

.body2 {
  font-size: calc(var(--body-font-size) * 1.071429);
}

@media (min-width: 960px) {
  .body2 {
    font-size: calc(var(--body-font-size) * 1.285714);
  }
}

.body3 {
  font-size: calc(var(--body-font-size) * 1);
}

@media (min-width: 960px) {
  .body3 {
    font-size: calc(var(--body-font-size) * 1.142857);
  }
}

.body4 {
  font-size: calc(var(--body-font-size) * 0.928571);
}

@media (min-width: 960px) {
  .body4 {
    font-size: calc(var(--body-font-size) * 1);
  }
}

.body5 {
  font-size: calc(var(--body-font-size) * 0.857143);
}

@media (min-width: 960px) {
  .body5 {
    font-size: calc(var(--body-font-size) * 0.928571);
  }
}

.body6 {
  font-size: calc(var(--body-font-size) * 0.857143);
}

@media (min-width: 960px) {
  .body6 {
    font-size: calc(var(--body-font-size) * 0.857143);
  }
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.title-wrapper {
  margin-bottom: 30px;
}

.title-wrapper--no-top-margin {
  margin-top: 0;
}

.fw-bold {
  font-weight: var(--body-bold-font-weight) !important;
}

.hover-image-scale:hover [data-scale="hover-scale"] {
  transform: scale(1.05);
}

.hover-image-scale [data-scale="hover-scale"] {
  transition: all 0.5s;
}

@media (max-width: 959px) {
  .title-wrapper {
    margin: 20px;
  }
}

.global-media-border-shadow {
  border-color: rgba(var(--color-text), var(--media-border-opacity));
  border-radius: var(--media-border-radius);
  border-style: solid;
  border-width: var(--media-border-thickness) !important;
  box-shadow: var(--media-shadow-offset-x) var(--media-shadow-offset-y)
    var(--media-shadow-blur)
    rgba(var(--color-text), var(--media-shadow-opacity));
  box-sizing: border-box;
  overflow: hidden;
}

.global-content-border-shadow {
  border-color: rgba(var(--color-text), var(--content-border-opacity));
  border-radius: var(--content-border-radius);
  border-style: solid;
  border-width: var(--content-border-thickness) !important;
  box-shadow: var(--content-shadow-offset-x) var(--content-shadow-offset-y)
    var(--content-shadow-blur)
    rgba(var(--color-text), var(--content-shadow-opacity));
  box-sizing: border-box;
}

.global-modal-border-shadow {
  border-color: rgba(var(--color-text), var(--menu-modal-border-opacity));
  border-radius: var(--menu-modal-border-radius);
  border-style: solid;
  border-width: var(--menu-modal-border-thickness);
  box-shadow: var(--menu-modal-shadow-offset-x)
    var(--menu-modal-shadow-offset-y) var(--menu-modal-shadow-blur)
    rgba(var(--color-text), var(--menu-modal-shadow-opacity)) !important;
  box-sizing: border-box;
}

.global-drawer-border-shadow {
  border-color: rgba(var(--color-text), var(--drawer-border-opacity));
  border-style: solid;
  border-width: 0 var(--drawer-border-thickness) 0 0;
  box-sizing: border-box;
  filter: drop-shadow(
    var(--drawer-shadow-offset-x) var(--drawer-shadow-offset-y)
      var(--drawer-shadow-blur)
      rgba(var(--color-text), var(--drawer-shadow-opacity))
  );
}

.global-card-border-shadow {
  border-color: rgba(var(--color-text), var(--card-border-opacity));
  border-radius: var(--card-border-radius);
  border-style: solid;
  border-width: var(--card-border-thickness) !important;
  box-shadow: var(--card-shadow-offset-x) var(--card-shadow-offset-y)
    var(--card-shadow-blur) rgba(var(--color-text), var(--card-shadow-opacity));
  box-sizing: border-box;
  overflow: hidden;
}

.global-product-card-border-shadow {
  border-color: rgba(var(--color-text), var(--product-card-border-opacity));
  border-radius: var(--product-card-border-radius);
  border-style: solid;
  border-width: var(--product-card-border-thickness) !important;
  box-shadow: var(--product-card-shadow-offset-x)
    var(--product-card-shadow-offset-y) var(--product-card-shadow-blur)
    rgba(var(--color-text), var(--product-card-shadow-opacity));
  box-sizing: border-box;
  overflow: hidden;
}

.global-collection-card-border-shadow {
  border-color: rgba(var(--color-text), var(--collection-card-border-opacity));
  border-radius: var(--collection-card-border-radius);
  border-style: solid;
  border-width: var(--collection-card-border-thickness) !important;
  box-shadow: var(--collection-card-shadow-offset-x)
    var(--collection-card-shadow-offset-y) var(--collection-card-shadow-blur)
    rgba(var(--color-text), var(--collection-card-shadow-opacity));
  box-sizing: border-box;
  overflow: hidden;
}

.global-blog-card-border-shadow {
  border-color: rgba(var(--color-text), var(--blog-card-border-opacity));
  border-radius: var(--blog-card-border-radius);
  border-style: solid;
  border-width: var(--blog-card-border-thickness) !important;
  box-shadow: var(--blog-card-shadow-offset-x) var(--blog-card-shadow-offset-y)
    var(--blog-card-shadow-blur)
    rgba(var(--color-text), var(--blog-card-shadow-opacity));
  box-sizing: border-box;
  overflow: hidden;
}

/* padding between section */

.section + .section {
  margin-top: var(--section-vertical-gap);
}

@media (max-width: 959px) {
  .section + .section {
    margin-top: calc(var(--section-vertical-gap) / 2);
  }
}

.section--padding {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

@media (max-width: 959px) {
  .section--padding {
    padding-top: calc(var(--section-padding-top) * 0.5);
    padding-bottom: calc(var(--section-padding-bottom) * 0.5);
  }
}

.visibility-hidden {
  visibility: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

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

.tag-unstyled {
  margin: 0;
  padding: 0;
}

.ratio {
  display: flex;
  position: relative;
  align-items: stretch;
}

.ratio::before {
  content: "";
  width: 0;
  height: 0;
  padding-bottom: var(--ratio-percent);
}

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

/* flex layout text position common logic */

.text-position-left-top {
  align-items: flex-start;
  justify-content: flex-start;
}

.text-position-center-top {
  align-items: flex-start;
  justify-content: center;
}

.text-position-right-top {
  align-items: flex-start;
  justify-content: flex-end;
}

.text-position-left {
  align-items: center;
  justify-content: flex-start;
}

.text-position-center {
  align-items: center;
  justify-content: center;
}

.text-position-right {
  align-items: center;
  justify-content: flex-end;
}

.text-position-left-bottom {
  align-items: flex-end;
  justify-content: flex-start;
}

.text-position-center-bottom {
  align-items: flex-end;
  justify-content: center;
}

.text-position-right-bottom {
  align-items: flex-end;
  justify-content: flex-end;
}

/* image position common logic */

.image-position-left-top {
  object-position: left top;
}

.image-position-center-top {
  object-position: center top;
}

.image-position-right-top {
  object-position: right top;
}

.image-position-left {
  object-position: center left;
}

.image-position-center {
  object-position: center center;
}

.image-position-right {
  object-position: center right;
}

.image-position-left-bottom {
  object-position: left bottom;
}

.image-position-center-bottom {
  object-position: center bottom;
}

.image-position-right-bottom {
  object-position: right bottom;
}

:root {
  --duration-short: 100ms;
  --duration-long: 500ms;
  --duration-default: 250ms;
}

.button,
.shopline-element-buy-now {
  display: inline-flex;
  font-family: var(--body-font);
  font-weight: var(--body-bold-font-weight);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
  color: rgb(var(--color-button-text));
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: rgb(var(--color-button-background));
  transition: opacity 0.15s ease-in-out;
  padding: calc(var(--btn-border-thickness) + 9px)
    calc(var(--btn-border-thickness) + 18px);
  position: relative;
  border-radius: var(--btn-border-radius-outset);
  font-size: 14px;
  border: none;
  --border-opacity: calc(100% - var(--btn-border-opacity));
  --alpha-button-background: 1;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.button:not(.button--link),
.shopline-element-buy-now {
  box-shadow: var(--btn-shadow-offset-x) var(--btn-shadow-offset-y)
    var(--btn-shadow-blur) rgba(var(--color-text), var(--btn-shadow-opacity));
}

.button:not(.button--link)::before,
.shopline-element-buy-now::before {
  content: "";
  background-color: #fff;
  opacity: 0.2;
  width: 0;
  position: absolute;
  bottom: var(--btn-border-thickness);
  left: var(--btn-border-thickness);
  right: var(--btn-border-thickness);
  top: var(--btn-border-thickness);
  z-index: 1;
  transition: width var(--duration-long) ease-in-out;
  border-radius: var(--btn-border-radius);
}

/* .button:not(.button--link):hover::before,
.shopline-element-buy-now:hover::before {
  width: calc(100% - var(--btn-border-thickness) - var(--btn-border-thickness));
} */

.button:not(.button--link)::after,
.shopline-element-buy-now::after {
  content: "";
  position: absolute;
  bottom: var(--btn-border-thickness);
  left: var(--btn-border-thickness);
  right: var(--btn-border-thickness);
  top: var(--btn-border-thickness);
  box-shadow: 0 0 0 var(--btn-border-thickness)
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--btn-border-thickness)
      rgba(var(--color-button-background), var(--alpha-button-background));
  border-radius: var(--btn-border-radius);
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.button:not([disabled]):hover::after,
.shopline-element-buy-now:hover::after {
  box-shadow: 0 0 0 calc(var(--btn-border-thickness) + 1px)
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 calc(var(--btn-border-thickness) + 1px)
      rgba(var(--color-button-background), var(--alpha-button-background));
}

.button--secondary {
  /* --color-button-background: var(--color-button-secondary-background); */
  --color-button-text: var(--color-button-secondary-text);
  --border-opacity: var(--btn-border-opacity);
}

.button--link {
  --color-button-background: transparent;
  --color-button-text: rgb(var(--color-text));
  padding: 0 1px;
  position: relative;
  text-underline-offset: 6px;
  transition: width var(--duration-long) ease-in-out;
  padding-bottom: 7px;
}

.button--link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width var(--duration-long) ease-in-out;
}

.button--link:hover::after {
  width: 35%;
}

.button.loading {
  color: transparent;
}

.loading-overlay__spinner {
  display: none;
}

.loading > .loading-overlay__spinner {
  display: inline-flex;
}

.button.loading .loading-overlay__spinner {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  color: rgb(var(--color-button-text));
  display: flex;
}

/* button animation */

.loading .loading-overlay__spinner {
  animation: button-loading linear 1.5s infinite;
}

@keyframes button-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.button:active::before {
  animation: button-press linear 0.6s 1;
  animation-fill-mode: forwards;
}

@keyframes button-press {
  from {
    background: rgba(var(--color-button-text), 0.08)
      radial-gradient(
        circle,
        rgba(var(--color-button-text), 0.08) 1%,
        transparent 1%
      )
      50%/100%;
  }

  100% {
    background-position: 50%;
    background-size: 25000%;
  }
}

.button:disabled,
.button.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

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

.icon-button {
  position: relative;
  display: inline-flex;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  padding: 0;
  transition: transform 0.3s;
}

.icon-button:hover,
.icon-button:focus {
  transform: scale(1.1);
}

.color-scheme-1,
.color-scheme-2,
.color-scheme-3 {
  background-color: rgb(var(--color-page-background));
  color: rgb(var(--color-text));
}

.color-scheme-1,
.color-scheme-1 .button::before {
  --color-page-background: var(--color-scheme-1-bg);
  --color-text: var(--color-scheme-1-text);
  --color-button-background: var(--color-scheme-1-text);
  --color-button-text: var(--color-scheme-1-bg);
}

.color-scheme-1 .price {
  --color-sale: var(--color-scheme-1-text);
}

.color-scheme-2,
.color-scheme-2 .button::before {
  --color-page-background: var(--color-scheme-2-bg);
  --color-text: var(--color-scheme-2-text);
  --color-button-background: var(--color-scheme-2-text);
  --color-button-text: var(--color-scheme-2-bg);
}

.color-scheme-2 .price {
  --color-sale: var(--color-scheme-2-text);
}

.color-scheme-3,
.color-scheme-3 .button::before {
  --color-page-background: var(--color-scheme-3-bg);
  --color-text: var(--color-scheme-3-text);
  --color-button-background: var(--color-scheme-3-text);
  --color-button-text: var(--color-scheme-3-bg);
}

.color-scheme-3 .price {
  --color-sale: var(--color-scheme-3-text);
}

.color-scheme-1 .button--secondary,
.color-scheme-1 .button--secondary::before {
  --color-button-background: var(--color-scheme-1-bg);
  --color-button-text: var(--color-scheme-1-text);
}

.color-scheme-2 .button--secondary,
.color-scheme-2 .button--secondary::before {
  --color-button-background: var(--color-scheme-2-bg);
  --color-button-text: var(--color-scheme-2-text);
}

.color-scheme-3 .button--secondary,
.color-scheme-3 .button--secondary::before {
  --color-button-background: var(--color-scheme-3-bg);
  --color-button-text: var(--color-scheme-3-text);
}

/* ---------------- field styles ---------------- */

.field {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
  font-size: 14px;
  transition: all 300ms;
  align-items: center;
  color: rgba(var(--color-text));
  background-color: rgba(var(--color-page-background));
  margin-bottom: 20px;
}

@media (max-width: 959px) {
  .field {
    margin-bottom: 16px;
  }
}

.field:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  border-width: var(--input-border-thickness);
  border-style: solid;
  border-color: rgba(var(--color-text), var(--input-border-opacity));
  pointer-events: none;
  transition: border-color 300ms;
  border-radius: var(--input-border-radius-outset);
  box-shadow: var(--input-shadow-offset-x) var(--input-shadow-offset-y)
    var(--input-shadow-blur)
    rgba(var(--color-text), var(--input-shadow-opacity));
}

.field:hover:after,
.field:focus::after,
.field:focus-within::after {
  border-color: rgba(var(--color-text), var(--input-border-opacity));
  border-width: 1px;
}

.field .field__container {
  flex: 1;
  position: relative;
}

/* vaild error */

.field--error::after {
  border-color: rgba(var(--color-discount-tag-background));
}

/* ---------------- field group ---------------- */

.field__group {
  display: flex;
  gap: 16px;
}

/* ---------------- field label style ---------------- */

.field__label {
  position: absolute;
  left: 16px;
  right: 0;
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  transition: transform 300ms ease;
  transform-origin: left top;
  word-break: break-word;
  color: rgba(var(--color-text), 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* ---------------- field input style ---------------- */

.field__input {
  width: 100%;
  border-radius: var(--input-border-radius-outset);
  border: none;
  padding: 24px 16px 8px;
  background: none;
  line-height: 1.15;
  box-shadow: none !important;
  color: rgba(var(--color-text));
  height: 56px;
  -webkit-appearance: none;
}

.field__input::placeholder {
  opacity: 0;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label {
  transform: scale(0.8) translate(0, -90%);
  word-break: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
}

.field__input--classic:focus::after,
.field__input--classic:focus-within::after,
.field__input:focus::after,
.field__input:focus-within::after {
  border-color: rgba(var(--color-text), var(--input-border-opacity));
  border-width: calc(var(--input-border-thickness)+1px);
}

.field__input--classic:focus-visible,
.field__input--classic:focus,
.field__input:focus-visible,
.field__input:focus {
  outline: 0;
}

.field__input::-webkit-search-cancel-button {
  display: none;
}

.field__input:-webkit-autofill,
.field__input:-webkit-autofill:hover,
.field__input:-webkit-autofill:focus,
.field__input:-webkit-autofill:active {
  transition: background-color 5000000s ease-in-out 0s;
}

.field__input--classic {
  width: 100%;
  border-radius: 4px;
  border: none;
  padding: 0 16px;
  background: none;
  line-height: 1.15;
  box-shadow: none !important;
  color: rgba(var(--color-text));
  height: 56px;
  -webkit-appearance: none;
}

.field__input--classic::placeholder {
  word-break: break-word;
  color: rgba(var(--color-text), 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* ---------------- field extra ---------------- */

.field__suffix {
  display: flex;
  justify-content: center;
  margin-right: 10px;
  padding: 6px;
}

/* ---------------- field info text ---------------- */

.field__info {
  display: flex;
  font-size: 12px;
  line-height: 1.4;
}

.field__info svg {
  margin-right: 4px;
}

.field__info--error {
  color: rgba(var(--color-discount-tag-background));
}

@media screen and (min-width: 960px) {
  .field__info svg {
    margin-right: 8px;
  }
}

/* ---------------- field checkbox ---------------- */

.field-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}

.field-checkbox input[type="checkbox"] {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  -webkit-appearance: auto;
}

.field-checkbox input[type="checkbox"]:checked + .checkbox {
  background-color: rgba(var(--color-button-background));
  border-color: rgba(var(--color-button-background));
}

.field-checkbox input[type="checkbox"]:checked + .checkbox::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: " ";
}

.field-checkbox .checkbox {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  direction: ltr;
  border: 1px solid rgba(var(--color-entry-line));
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}

.field-checkbox .checkbox:after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: " ";
}

.text-area {
  min-height: 100px;
  resize: none;
}

.text-area + .field__label {
  top: 21px;
}

.field select ~ .icon-arrow {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes modalFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalSlideInBottom {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes drawerFadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drawerFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animation-delay-show-container {
  transform: translate3d(0px, 25px, 0px);
  opacity: 0;
}

.animation-delay-show-container.come-into-view {
  animation: column-fade-in 0.8s ease;
  animation-fill-mode: forwards;
}

@keyframes column-fade-in {
  100% {
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
  }
}

.global-parallax-container {
  width: 100%;
  height: 100%;
}

.global-parallax-container .global-parallax {
  position: relative;
  top: -30% !important;
  height: 160% !important;
  transition: none 0s ease 0s !important;
}

/* Common component style */

slider-component {
  display: block;
  position: relative;
}

.slider {
  position: relative;
  flex-wrap: inherit;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

slider-component[pc-direction="vertical"] .slider,
slider-component[direction="vertical"] .slider {
  overflow-x: unset;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.slider__slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  list-style: none;
}

/* Scrollbar */

.slider {
  scrollbar-color: rgb(var(--color-image-background))
    rgba(var(--color-image-background), 0.04);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
  display: none;
}

.slider::-webkit-scrollbar-thumb {
  background-color: rgb(var(--color-image-background));
  border-radius: 0.4rem;
  border: 0;
}

.slider::-webkit-scrollbar-track {
  background: rgba(var(--color-image-background), 0.04);
  border-radius: 0.4rem;
}

.no-js .slider {
  -ms-overflow-style: auto;
  scrollbar-width: auto;
}

.no-js .slider::-webkit-scrollbar {
  display: initial;
}

.slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-button {
  color: rgb(var(--color-text));
  background: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-button .icon {
  height: 1em;
}

.slider-button[disabled] .icon {
  color: rgba(var(--color-text), 0.3);
  cursor: not-allowed;
}

.slider-button--prev .icon {
  transform: rotate(90deg);
}

.slider-button--next .icon {
  transform: rotate(-90deg);
}

.slider-counter {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

@media screen and (min-width: 960px) {
  .slider:not(.slider--desktop) + .slider-buttons {
    display: none;
  }

  .slider.slider--tablet-up {
    position: relative;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1em;
    -webkit-overflow-scrolling: touch;
  }
}

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

  .slider-buttons {
    padding-bottom: 20px;
  }

  .slider.slider--mobile {
    position: relative;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
  }

  .thumbnail-slider {
    display: flex;
    align-items: center;
  }

  .thumbnail-slider .thumbnail-list.slider {
    display: flex;
    flex: 1;
    /* scroll-padding-left: ; */
  }

  .thumbnail-list__item.slider__slide {
    width: calc(33% - 10px);
  }
}

.modal__content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(var(--color-page-background));
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-duration: 0.2s;
  animation-timing-function: ease;
}

details .modal__overlay {
  display: block;
}

details[open] .modal__overlay::after {
  position: fixed;
  content: "";
  background-color: rgba(var(--color-mask), 0.6);
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1000;
}

.drawer {
  --drawer-padding-inline: 30px;
  --drawer-padding-block: 16px;
}

.drawer .modal__content {
  top: 0;
  width: 400px;
  max-width: 95%;
  padding: 0 var(--drawer-padding-inline);
  display: flex;
  flex-direction: column;
  align-items: initial;
  justify-content: initial;
  margin: initial;
}

.drawer .modal__content[data-position="left"] {
  --modal-animation-name: drawerFadeInLeft;

  left: 0;
  right: initial;
  transform: translateX(-100%);
}

.drawer .modal__content[data-position="right"] {
  --modal-animation-name: drawerFadeInRight;

  left: initial;
  right: 0;
  transform: translateX(100%);
}

@media screen and (max-width: 959px) {
  .drawer .modal__content {
    width: 340px;
  }
}

.drawer details[open] .modal__content {
  transform: translateX(0);
}

.drawer
  details[open]
  .modal__content[data-position="left"]
  .modal__overlay::after {
  top: 0;
  left: 100%;
  right: initial;
}

.drawer
  details[open]
  .modal__content[data-position="right"]
  .modal__overlay::after {
  top: 0;
  left: initial;
  right: 100%;
}

.drawer__head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  align-items: center;
  padding: var(--drawer-padding-block) 0;
}

.drawer__head--divider {
  border-bottom: 1px solid rgb(var(--color-entry-line));
}

.drawer__title {
  display: flex;
}

.drawer__title:empty {
  display: flex;
}

.drawer__main {
  flex: 1 0 0;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: var(--drawer-padding-block);
}

.drawer__close-button {
  padding: 6px;
}

.drawer__close-button .icon {
  width: 16px;
  height: 16px;
}

accordion-component summary + * {
  overflow: hidden;
}

.accordion summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 15px 0;
}

.accordion .summary__title {
  display: flex;
  flex: 1;
}

.accordion .summary__title + .icon-arrow {
  height: 6px;
}

.accordion + .accordion {
  margin-top: 0;
  border-top: none;
}

.accordion {
  margin-top: 25px;
  margin-bottom: 0;
  border-top: 1px solid rgba(var(--color-text), 0.08);
  border-bottom: 1px solid rgba(var(--color-text), 0.08);
}

.accordion__title {
  display: inline-block;
  max-width: calc(100% - 60px);
  min-height: 16px;
  margin: 0;
  word-break: break-word;
}

.accordion .icon-accordion {
  align-self: center;
  fill: rgb(var(--color-text));
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

.accordion details[open] > summary .icon-arrow {
  transform: rotate(180deg);
}

.accordion__content {
  margin-bottom: 15px;
  word-break: break-word;
  overflow-x: auto;
  padding: 0 6px;
}

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

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-arrow {
  position: absolute;
  right: 10px;
}

summary .icon-fold {
  position: absolute;
  right: 0px;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

summary .icon-fold svg {
  width: 20px;
  height: 9px;
}

@media screen and (min-width: 960px) {
  summary .icon-fold {
    width: 34px;
    height: 34px;
  }
  summary .icon-fold svg {
    width: 34px;
    height: 12px;
  }
}

.accordion details[open] > summary .open {
  display: flex;
  align-items: center;
}

.accordion details[open] > summary .close {
  display: none;
}

.accordion details > summary .open {
  display: none;
}

.accordion details > summary .close {
  display: flex;
  align-items: center;
}

/* component-quantity */

.quantity__button.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.3;
}

.quantity {
  z-index: 0;
  color: rgba(var(--color-text));
  position: relative;
  width: calc(
    3 * var(--body-font-size) + var(--input-border-thickness) * 2 + 30px * 2
  );
  display: flex;
  border-radius: var(--input-border-radius);
  min-height: calc((var(--input-border-thickness) * 2) + 2.8rem);
}

.quantity:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: var(--input-border-thickness);
  right: var(--input-border-thickness);
  bottom: var(--input-border-thickness);
  left: var(--input-border-thickness);
  border: 0.1rem solid transparent;
  border-radius: var(--input-border-radius);
  box-shadow: 0 0 0 var(--input-border-thickness)
    rgba(var(--color-text), var(--input-border-opacity));
  z-index: 1;
}
/* 
.quantity:hover.quantity:after {
  box-shadow: 0 0 0 calc(var(--input-border-thickness) + 1px)
    rgba(var(--color-text), var(--input-border-opacity));
} */

.quantity:before {
  background: rgb(var(--color-page-background));
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--input-border-radius-outset);
  box-shadow: var(--input-shadow-offset-x) var(--input-shadow-offset-y)
    var(--input-shadow-blur)
    rgba(var(--color-text), var(--input-shadow-opacity));
  z-index: -1;
}

.quantity__input {
  color: currentColor;
  text-align: center;
  background-color: transparent;
  border: 0;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
  outline-style: none;
}

.quantity__button {
  width: 30px;
  flex-shrink: 0;
  font-size: 1.8rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-text));
  padding: 0;
}

.quantity__button:first-child {
  margin-left: calc(var(--input-border-thickness));
}

.quantity__button:last-child {
  margin-right: calc(var(--input-border-thickness));
}

.quantity__button svg {
  width: 1rem;
  pointer-events: none;
}

.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  box-shadow: 0 0 0 10rem rgb(var(--color-page-background)) inset !important;
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-page-background)) inset !important;
}

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

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

.rte:after {
  clear: both;
  content: "";
  display: block;
}

.rte > p:first-child {
  margin-top: 0;
}

.rte > p:last-child {
  margin-bottom: 0;
}

.rte a:hover,
.rte a {
  padding: 0 1px;
  position: relative;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.rte a:hover:hover,
.rte a:hover {
  opacity: 1;
}

.rte img {
  height: auto;
  max-width: 100%;
  border: var(--media-border-thickness) solid
    rgba(var(--color-text), var(--media-border-opacity));
  border-radius: var(--media-border-radius);
  box-shadow: var(--media-shadow-offset-x) var(--media-shadow-offset-y)
    var(--media-shadow-blur)
    rgba(var(--color-text), var(--media-shadow-opacity));
  margin-bottom: var(--media-shadow-offset-y);
}

.rte table {
  table-layout: fixed;
}

.modal-video {
  background: rgba(var(--color-page-background), 0.2);
  box-sizing: border-box;
  height: 100%;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

.modal-video[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}

.modal-video__content {
  background-color: rgb(var(--color-page-background));
  height: 100%;
  margin: 0;
  overflow: auto;
  padding: 0;
  position: absolute;
  width: 100%;
}

.modal-video__toggle {
  align-items: center;
  background-color: rgb(var(--color-page-background));
  border-radius: 50%;
  border: 1px solid rgba(var(--color-text), 0.1);
  color: rgba(var(--color-text), 0.55);
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 0 0 0 auto;
  padding: 12px;
  position: fixed;
  right: 43px;
  top: 30px;
  width: 40px;
  z-index: 2;
}

.modal-video__content-info {
  margin: 0 auto;
  height: calc(100% - 70px);
  padding-top: 90px;
  width: calc(100% - 86px);
}

@media screen and (max-width: 959px) {
  .modal-video__toggle {
    right: 5px;
    top: 20px;
  }

  .modal-video__content-info {
    height: calc(100% - 60px);
    padding-top: 80px;
    width: calc(100% - 10px);
  }
}

.modal-video__toggle .icon {
  height: auto;
  margin: 0;
  width: 22px;
}

.modal-video__video,
.modal-video__video iframe {
  height: 100%;
  width: 100%;
}

.modal-video__video iframe {
  position: static;
  border: 0;
}

.modal-video__video video {
  width: 100%;
}

.deferred-media__poster {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.media > .deferred-media__poster {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media > *:not(.zoom):not(.deferred-media__poster-button),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.deferred-media__poster img {
  width: auto;
  max-width: 100%;
  height: 100%;
}

.deferred-media {
  overflow: hidden;
}

.deferred-media iframe {
  border: none;
}

.deferred-media:not([loaded]) template {
  z-index: -1;
}

.deferred-media[loaded] > .deferred-media__poster {
  display: none !important;
}

.deferred-media__poster-button {
  background-color: #ffffff;
  border-radius: 50%;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
}

.deferred-media__poster-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.deferred-media__poster-button .icon {
  width: 34px;
  height: 34px;
}

.deferred-media__poster-button .icon-play {
  margin-left: 4px;
}

@media (max-width: 959px) {
  .deferred-media__poster-button {
    width: 44px;
    height: 44px;
  }
  .deferred-media__poster-button .icon {
    width: 17px;
    height: 17px;
  }
  .deferred-media__poster-button .icon-play {
    margin-left: 2px;
  }
}

.container{
  max-width:100%;
  margin: 0 auto;
}

@media (min-width:750px){
  .container,.container-md{
    max-width:100%;
  }
}
@media (min-width:960px){
  .container,.container-lg,.container-md{
    max-width:calc(var(--page-width) + 60px);
  }
}
.row{
  --sl-gutter-x:var(--grid-horizontal-space);
  --sl-gutter-y:var(--grid-vertical-space);
  display:flex;
  flex-wrap:wrap;
  margin-left:calc(var(--sl-gutter-x) * -.5);
  margin-right:calc(var(--sl-gutter-x) * -.5);
  margin-top:calc(var(--sl-gutter-y) * -1);
}
.row>*{
  box-sizing:border-box;
  flex-shrink:0;
  margin-top:var(--sl-gutter-y);
  max-width:100%;
  padding-left:calc(var(--sl-gutter-x) * .5);
  padding-right:calc(var(--sl-gutter-x) * .5);
  width:100%;
}

.col{
  flex:1 0 0%;
}

.row-cols-auto>*{
  flex:0 0 auto;
  width:auto;
}

.row-cols-1>*{
  flex:0 0 auto;
  width:100%;
}

.row-cols-2>*{
  flex:0 0 auto;
  width:50%;
}

.row-cols-3>*{
  flex:0 0 auto;
  width:33.3333333333%;
}

.row-cols-4>*{
  flex:0 0 auto;
  width:25%;
}

.row-cols-5>*{
  flex:0 0 auto;
  width:20%;
}

.row-cols-6>*{
  flex:0 0 auto;
  width:16.6666666667%;
}

@media (min-width:750px){
  .col-md{
    flex:1 0 0%;
  }
  .row-cols-md-auto>*{
    flex:0 0 auto;
    width:auto;
  }
  .row-cols-md-1>*{
    flex:0 0 auto;
    width:100%;
  }
  .row-cols-md-2>*{
    flex:0 0 auto;
    width:50%;
  }
  .row-cols-md-3>*{
    flex:0 0 auto;
    width:33.3333333333%;
  }
  .row-cols-md-4>*{
    flex:0 0 auto;
    width:25%;
  }
  .row-cols-md-5>*{
    flex:0 0 auto;
    width:20%;
  }
  .row-cols-md-6>*{
    flex:0 0 auto;
    width:16.6666666667%;
  }
}
@media (min-width:960px){
  .col-lg{
    flex:1 0 0%;
  }
  .row-cols-lg-auto>*{
    flex:0 0 auto;
    width:auto;
  }
  .row-cols-lg-1>*{
    flex:0 0 auto;
    width:100%;
  }
  .row-cols-lg-2>*{
    flex:0 0 auto;
    width:50%;
  }
  .row-cols-lg-3>*{
    flex:0 0 auto;
    width:33.3333333333%;
  }
  .row-cols-lg-4>*{
    flex:0 0 auto;
    width:25%;
  }
  .row-cols-lg-5>*{
    flex:0 0 auto;
    width:20%;
  }
  .row-cols-lg-6>*{
    flex:0 0 auto;
    width:16.6666666667%;
  }
}
@media (min-width:1200px){
  .col-xl{
    flex:1 0 0%;
  }
  .row-cols-xl-auto>*{
    flex:0 0 auto;
    width:auto;
  }
  .row-cols-xl-1>*{
    flex:0 0 auto;
    width:100%;
  }
  .row-cols-xl-2>*{
    flex:0 0 auto;
    width:50%;
  }
  .row-cols-xl-3>*{
    flex:0 0 auto;
    width:33.3333333333%;
  }
  .row-cols-xl-4>*{
    flex:0 0 auto;
    width:25%;
  }
  .row-cols-xl-5>*{
    flex:0 0 auto;
    width:20%;
  }
  .row-cols-xl-6>*{
    flex:0 0 auto;
    width:16.6666666667%;
  }
}
.col-auto{
  flex:0 0 auto;
  width:auto;
}

.col-1{
  width:4.16666667%;
}

.col-1,.col-2{
  flex:0 0 auto;
}

.col-2{
  width:8.33333333%;
}

.col-3{
  width:12.5%;
}

.col-3,.col-4{
  flex:0 0 auto;
}

.col-4{
  width:16.66666667%;
}

.col-5{
  width:20.83333333%;
}

.col-5,.col-6{
  flex:0 0 auto;
}

.col-6{
  width:25%;
}

.col-7{
  width:29.16666667%;
}

.col-7,.col-8{
  flex:0 0 auto;
}

.col-8{
  width:33.33333333%;
}

.col-9{
  flex:0 0 auto;
  width:37.5%;
}

.col-10{
  flex:0 0 auto;
  width:41.66666667%;
}

.col-11{
  flex:0 0 auto;
  width:45.83333333%;
}

.col-12{
  flex:0 0 auto;
  width:50%;
}

.col-13{
  flex:0 0 auto;
  width:54.16666667%;
}

.col-14{
  flex:0 0 auto;
  width:58.33333333%;
}

.col-15{
  flex:0 0 auto;
  width:62.5%;
}

.col-16{
  flex:0 0 auto;
  width:66.66666667%;
}

.col-17{
  flex:0 0 auto;
  width:70.83333333%;
}

.col-18{
  flex:0 0 auto;
  width:75%;
}

.col-19{
  flex:0 0 auto;
  width:79.16666667%;
}

.col-20{
  flex:0 0 auto;
  width:83.33333333%;
}

.col-21{
  flex:0 0 auto;
  width:87.5%;
}

.col-22{
  flex:0 0 auto;
  width:91.66666667%;
}

.col-23{
  flex:0 0 auto;
  width:95.83333333%;
}

.col-24{
  flex:0 0 auto;
  width:100%;
}

.offset-1{
  margin-left:4.16666667%;
}

.offset-2{
  margin-left:8.33333333%;
}

.offset-3{
  margin-left:12.5%;
}

.offset-4{
  margin-left:16.66666667%;
}

.offset-5{
  margin-left:20.83333333%;
}

.offset-6{
  margin-left:25%;
}

.offset-7{
  margin-left:29.16666667%;
}

.offset-8{
  margin-left:33.33333333%;
}

.offset-9{
  margin-left:37.5%;
}

.offset-10{
  margin-left:41.66666667%;
}

.offset-11{
  margin-left:45.83333333%;
}

.offset-12{
  margin-left:50%;
}

.offset-13{
  margin-left:54.16666667%;
}

.offset-14{
  margin-left:58.33333333%;
}

.offset-15{
  margin-left:62.5%;
}

.offset-16{
  margin-left:66.66666667%;
}

.offset-17{
  margin-left:70.83333333%;
}

.offset-18{
  margin-left:75%;
}

.offset-19{
  margin-left:79.16666667%;
}

.offset-20{
  margin-left:83.33333333%;
}

.offset-21{
  margin-left:87.5%;
}

.offset-22{
  margin-left:91.66666667%;
}

.offset-23{
  margin-left:95.83333333%;
}

.g-0,.gx-0{
  --sl-gutter-x:0;
}

.g-0,.gy-0{
  --sl-gutter-y:0;
}

.g-1,.gx-1{
  --sl-gutter-x:5px;
}

.g-1,.gy-1{
  --sl-gutter-y:5px;
}

.g-2,.gx-2{
  --sl-gutter-x:10px;
}

.g-2,.gy-2{
  --sl-gutter-y:10px;
}

.g-3,.gx-3{
  --sl-gutter-x:15px;
}

.g-3,.gy-3{
  --sl-gutter-y:15px;
}

.g-4,.gx-4{
  --sl-gutter-x:20px;
}

.g-4,.gy-4{
  --sl-gutter-y:20px;
}

.g-5,.gx-5{
  --sl-gutter-x:30px;
}

.g-5,.gy-5{
  --sl-gutter-y:30px;
}

.g-6,.gx-6{
  --sl-gutter-x:40px;
}

.g-6,.gy-6{
  --sl-gutter-y:40px;
}

@media (min-width:750px){
  .col-md-auto{
    flex:0 0 auto;
    width:auto;
  }
  .col-md-1{
    flex:0 0 auto;
    width:4.16666667%;
  }
  .col-md-2{
    flex:0 0 auto;
    width:8.33333333%;
  }
  .col-md-3{
    flex:0 0 auto;
    width:12.5%;
  }
  .col-md-4{
    flex:0 0 auto;
    width:16.66666667%;
  }
  .col-md-5{
    flex:0 0 auto;
    width:20.83333333%;
  }
  .col-md-6{
    flex:0 0 auto;
    width:25%;
  }
  .col-md-7{
    flex:0 0 auto;
    width:29.16666667%;
  }
  .col-md-8{
    flex:0 0 auto;
    width:33.33333333%;
  }
  .col-md-9{
    flex:0 0 auto;
    width:37.5%;
  }
  .col-md-10{
    flex:0 0 auto;
    width:41.66666667%;
  }
  .col-md-11{
    flex:0 0 auto;
    width:45.83333333%;
  }
  .col-md-12{
    flex:0 0 auto;
    width:50%;
  }
  .col-md-13{
    flex:0 0 auto;
    width:54.16666667%;
  }
  .col-md-14{
    flex:0 0 auto;
    width:58.33333333%;
  }
  .col-md-15{
    flex:0 0 auto;
    width:62.5%;
  }
  .col-md-16{
    flex:0 0 auto;
    width:66.66666667%;
  }
  .col-md-17{
    flex:0 0 auto;
    width:70.83333333%;
  }
  .col-md-18{
    flex:0 0 auto;
    width:75%;
  }
  .col-md-19{
    flex:0 0 auto;
    width:79.16666667%;
  }
  .col-md-20{
    flex:0 0 auto;
    width:83.33333333%;
  }
  .col-md-21{
    flex:0 0 auto;
    width:87.5%;
  }
  .col-md-22{
    flex:0 0 auto;
    width:91.66666667%;
  }
  .col-md-23{
    flex:0 0 auto;
    width:95.83333333%;
  }
  .col-md-24{
    flex:0 0 auto;
    width:100%;
  }
  .offset-md-0{
    margin-left:0;
  }
  .offset-md-1{
    margin-left:4.16666667%;
  }
  .offset-md-2{
    margin-left:8.33333333%;
  }
  .offset-md-3{
    margin-left:12.5%;
  }
  .offset-md-4{
    margin-left:16.66666667%;
  }
  .offset-md-5{
    margin-left:20.83333333%;
  }
  .offset-md-6{
    margin-left:25%;
  }
  .offset-md-7{
    margin-left:29.16666667%;
  }
  .offset-md-8{
    margin-left:33.33333333%;
  }
  .offset-md-9{
    margin-left:37.5%;
  }
  .offset-md-10{
    margin-left:41.66666667%;
  }
  .offset-md-11{
    margin-left:45.83333333%;
  }
  .offset-md-12{
    margin-left:50%;
  }
  .offset-md-13{
    margin-left:54.16666667%;
  }
  .offset-md-14{
    margin-left:58.33333333%;
  }
  .offset-md-15{
    margin-left:62.5%;
  }
  .offset-md-16{
    margin-left:66.66666667%;
  }
  .offset-md-17{
    margin-left:70.83333333%;
  }
  .offset-md-18{
    margin-left:75%;
  }
  .offset-md-19{
    margin-left:79.16666667%;
  }
  .offset-md-20{
    margin-left:83.33333333%;
  }
  .offset-md-21{
    margin-left:87.5%;
  }
  .offset-md-22{
    margin-left:91.66666667%;
  }
  .offset-md-23{
    margin-left:95.83333333%;
  }
  .g-md-0,.gx-md-0{
    --sl-gutter-x:0;
  }
  .g-md-0,.gy-md-0{
    --sl-gutter-y:0;
  }
  .g-md-1,.gx-md-1{
    --sl-gutter-x:5px;
  }
  .g-md-1,.gy-md-1{
    --sl-gutter-y:5px;
  }
  .g-md-2,.gx-md-2{
    --sl-gutter-x:10px;
  }
  .g-md-2,.gy-md-2{
    --sl-gutter-y:10px;
  }
  .g-md-3,.gx-md-3{
    --sl-gutter-x:15px;
  }
  .g-md-3,.gy-md-3{
    --sl-gutter-y:15px;
  }
  .g-md-4,.gx-md-4{
    --sl-gutter-x:20px;
  }
  .g-md-4,.gy-md-4{
    --sl-gutter-y:20px;
  }
  .g-md-5,.gx-md-5{
    --sl-gutter-x:30px;
  }
  .g-md-5,.gy-md-5{
    --sl-gutter-y:30px;
  }
  .g-md-6,.gx-md-6{
    --sl-gutter-x:40px;
  }
  .g-md-6,.gy-md-6{
    --sl-gutter-y:40px;
  }
}
@media (min-width:960px){
  .col-lg-auto{
    flex:0 0 auto;
    width:auto;
  }
  .col-lg-1{
    flex:0 0 auto;
    width:4.16666667%;
  }
  .col-lg-2{
    flex:0 0 auto;
    width:8.33333333%;
  }
  .col-lg-3{
    flex:0 0 auto;
    width:12.5%;
  }
  .col-lg-4{
    flex:0 0 auto;
    width:16.66666667%;
  }
  .col-lg-5{
    flex:0 0 auto;
    width:20.83333333%;
  }
  .col-lg-6{
    flex:0 0 auto;
    width:25%;
  }
  .col-lg-7{
    flex:0 0 auto;
    width:29.16666667%;
  }
  .col-lg-8{
    flex:0 0 auto;
    width:33.33333333%;
  }
  .col-lg-9{
    flex:0 0 auto;
    width:37.5%;
  }
  .col-lg-10{
    flex:0 0 auto;
    width:41.66666667%;
  }
  .col-lg-11{
    flex:0 0 auto;
    width:45.83333333%;
  }
  .col-lg-12{
    flex:0 0 auto;
    width:50%;
  }
  .col-lg-13{
    flex:0 0 auto;
    width:54.16666667%;
  }
  .col-lg-14{
    flex:0 0 auto;
    width:58.33333333%;
  }
  .col-lg-15{
    flex:0 0 auto;
    width:62.5%;
  }
  .col-lg-16{
    flex:0 0 auto;
    width:66.66666667%;
  }
  .col-lg-17{
    flex:0 0 auto;
    width:70.83333333%;
  }
  .col-lg-18{
    flex:0 0 auto;
    width:75%;
  }
  .col-lg-19{
    flex:0 0 auto;
    width:79.16666667%;
  }
  .col-lg-20{
    flex:0 0 auto;
    width:83.33333333%;
  }
  .col-lg-21{
    flex:0 0 auto;
    width:87.5%;
  }
  .col-lg-22{
    flex:0 0 auto;
    width:91.66666667%;
  }
  .col-lg-23{
    flex:0 0 auto;
    width:95.83333333%;
  }
  .col-lg-24{
    flex:0 0 auto;
    width:100%;
  }
  .offset-lg-0{
    margin-left:0;
  }
  .offset-lg-1{
    margin-left:4.16666667%;
  }
  .offset-lg-2{
    margin-left:8.33333333%;
  }
  .offset-lg-3{
    margin-left:12.5%;
  }
  .offset-lg-4{
    margin-left:16.66666667%;
  }
  .offset-lg-5{
    margin-left:20.83333333%;
  }
  .offset-lg-6{
    margin-left:25%;
  }
  .offset-lg-7{
    margin-left:29.16666667%;
  }
  .offset-lg-8{
    margin-left:33.33333333%;
  }
  .offset-lg-9{
    margin-left:37.5%;
  }
  .offset-lg-10{
    margin-left:41.66666667%;
  }
  .offset-lg-11{
    margin-left:45.83333333%;
  }
  .offset-lg-12{
    margin-left:50%;
  }
  .offset-lg-13{
    margin-left:54.16666667%;
  }
  .offset-lg-14{
    margin-left:58.33333333%;
  }
  .offset-lg-15{
    margin-left:62.5%;
  }
  .offset-lg-16{
    margin-left:66.66666667%;
  }
  .offset-lg-17{
    margin-left:70.83333333%;
  }
  .offset-lg-18{
    margin-left:75%;
  }
  .offset-lg-19{
    margin-left:79.16666667%;
  }
  .offset-lg-20{
    margin-left:83.33333333%;
  }
  .offset-lg-21{
    margin-left:87.5%;
  }
  .offset-lg-22{
    margin-left:91.66666667%;
  }
  .offset-lg-23{
    margin-left:95.83333333%;
  }
  .g-lg-0,.gx-lg-0{
    --sl-gutter-x:0;
  }
  .g-lg-0,.gy-lg-0{
    --sl-gutter-y:0;
  }
  .g-lg-1,.gx-lg-1{
    --sl-gutter-x:5px;
  }
  .g-lg-1,.gy-lg-1{
    --sl-gutter-y:5px;
  }
  .g-lg-2,.gx-lg-2{
    --sl-gutter-x:10px;
  }
  .g-lg-2,.gy-lg-2{
    --sl-gutter-y:10px;
  }
  .g-lg-3,.gx-lg-3{
    --sl-gutter-x:15px;
  }
  .g-lg-3,.gy-lg-3{
    --sl-gutter-y:15px;
  }
  .g-lg-4,.gx-lg-4{
    --sl-gutter-x:20px;
  }
  .g-lg-4,.gy-lg-4{
    --sl-gutter-y:20px;
  }
  .g-lg-5,.gx-lg-5{
    --sl-gutter-x:30px;
  }
  .g-lg-5,.gy-lg-5{
    --sl-gutter-y:30px;
  }
  .g-lg-6,.gx-lg-6{
    --sl-gutter-x:40px;
  }
  .g-lg-6,.gy-lg-6{
    --sl-gutter-y:40px;
  }
}
@media (min-width:1200px){
  .col-xl-auto{
    flex:0 0 auto;
    width:auto;
  }
  .col-xl-1{
    flex:0 0 auto;
    width:4.16666667%;
  }
  .col-xl-2{
    flex:0 0 auto;
    width:8.33333333%;
  }
  .col-xl-3{
    flex:0 0 auto;
    width:12.5%;
  }
  .col-xl-4{
    flex:0 0 auto;
    width:16.66666667%;
  }
  .col-xl-5{
    flex:0 0 auto;
    width:20.83333333%;
  }
  .col-xl-6{
    flex:0 0 auto;
    width:25%;
  }
  .col-xl-7{
    flex:0 0 auto;
    width:29.16666667%;
  }
  .col-xl-8{
    flex:0 0 auto;
    width:33.33333333%;
  }
  .col-xl-9{
    flex:0 0 auto;
    width:37.5%;
  }
  .col-xl-10{
    flex:0 0 auto;
    width:41.66666667%;
  }
  .col-xl-11{
    flex:0 0 auto;
    width:45.83333333%;
  }
  .col-xl-12{
    flex:0 0 auto;
    width:50%;
  }
  .col-xl-13{
    flex:0 0 auto;
    width:54.16666667%;
  }
  .col-xl-14{
    flex:0 0 auto;
    width:58.33333333%;
  }
  .col-xl-15{
    flex:0 0 auto;
    width:62.5%;
  }
  .col-xl-16{
    flex:0 0 auto;
    width:66.66666667%;
  }
  .col-xl-17{
    flex:0 0 auto;
    width:70.83333333%;
  }
  .col-xl-18{
    flex:0 0 auto;
    width:75%;
  }
  .col-xl-19{
    flex:0 0 auto;
    width:79.16666667%;
  }
  .col-xl-20{
    flex:0 0 auto;
    width:83.33333333%;
  }
  .col-xl-21{
    flex:0 0 auto;
    width:87.5%;
  }
  .col-xl-22{
    flex:0 0 auto;
    width:91.66666667%;
  }
  .col-xl-23{
    flex:0 0 auto;
    width:95.83333333%;
  }
  .col-xl-24{
    flex:0 0 auto;
    width:100%;
  }
  .offset-xl-0{
    margin-left:0;
  }
  .offset-xl-1{
    margin-left:4.16666667%;
  }
  .offset-xl-2{
    margin-left:8.33333333%;
  }
  .offset-xl-3{
    margin-left:12.5%;
  }
  .offset-xl-4{
    margin-left:16.66666667%;
  }
  .offset-xl-5{
    margin-left:20.83333333%;
  }
  .offset-xl-6{
    margin-left:25%;
  }
  .offset-xl-7{
    margin-left:29.16666667%;
  }
  .offset-xl-8{
    margin-left:33.33333333%;
  }
  .offset-xl-9{
    margin-left:37.5%;
  }
  .offset-xl-10{
    margin-left:41.66666667%;
  }
  .offset-xl-11{
    margin-left:45.83333333%;
  }
  .offset-xl-12{
    margin-left:50%;
  }
  .offset-xl-13{
    margin-left:54.16666667%;
  }
  .offset-xl-14{
    margin-left:58.33333333%;
  }
  .offset-xl-15{
    margin-left:62.5%;
  }
  .offset-xl-16{
    margin-left:66.66666667%;
  }
  .offset-xl-17{
    margin-left:70.83333333%;
  }
  .offset-xl-18{
    margin-left:75%;
  }
  .offset-xl-19{
    margin-left:79.16666667%;
  }
  .offset-xl-20{
    margin-left:83.33333333%;
  }
  .offset-xl-21{
    margin-left:87.5%;
  }
  .offset-xl-22{
    margin-left:91.66666667%;
  }
  .offset-xl-23{
    margin-left:95.83333333%;
  }
  .g-xl-0,.gx-xl-0{
    --sl-gutter-x:0;
  }
  .g-xl-0,.gy-xl-0{
    --sl-gutter-y:0;
  }
  .g-xl-1,.gx-xl-1{
    --sl-gutter-x:5px;
  }
  .g-xl-1,.gy-xl-1{
    --sl-gutter-y:5px;
  }
  .g-xl-2,.gx-xl-2{
    --sl-gutter-x:10px;
  }
  .g-xl-2,.gy-xl-2{
    --sl-gutter-y:10px;
  }
  .g-xl-3,.gx-xl-3{
    --sl-gutter-x:15px;
  }
  .g-xl-3,.gy-xl-3{
    --sl-gutter-y:15px;
  }
  .g-xl-4,.gx-xl-4{
    --sl-gutter-x:20px;
  }
  .g-xl-4,.gy-xl-4{
    --sl-gutter-y:20px;
  }
  .g-xl-5,.gx-xl-5{
    --sl-gutter-x:30px;
  }
  .g-xl-5,.gy-xl-5{
    --sl-gutter-y:30px;
  }
  .g-xl-6,.gx-xl-6{
    --sl-gutter-x:40px;
  }
  .g-xl-6,.gy-xl-6{
    --sl-gutter-y:40px;
  }
}
@media (min-width: 750px)
.navigation-font-size {
    font-size: calc(var(--body-font-size) * 0.95);
}
.navigation-font-size {
    font-size: calc(var(--body-font-size) * 1);
}
.CLS-box{position: relative;display:block;}
.CLS-box img{position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.CLS-placeholderPc{display:block;}
.CLS-placeholderMb{display:none;}
@media(max-width:768px){
  .CLS-placeholderPc{display:none;}
  .CLS-placeholderMb{display:block;}
}
/* The ipad end responds to the mobile end in vertical screen */

/* @custom-media --tablet (max-width: 959px); */

/* @custom-media --gt-mobile (min-width: 751px); */

/* detectingScreen need to consider the configuration of the tablet */
