:root {
  --color-black: #000;
  --color-white: #fff;
  --default-transition-timing: 0.4s;
  --default-transition-easing: cubic-bezier(0.29, 0.63, 0.44, 1);
  --layout-site-padding: var(--layout-site-padding-mobile);
  --announcement-height: 4rem;
  --header-top-height: 4rem;
  --header-main-height: 6rem;
  --header-height: calc(var(--header-top-height) + var(--header-main-height));
  --ff-primary: "sofia-pro", "europa", "Arial", sans-serif;
  --h1-fs: 3rem;
  --h2-fs: 2.6rem;
  --h3-fs: 2.2rem;
  --h4-fs: 1.8rem;
  --h5-fs: 1.6rem;
  --h6-fs: 1.6rem;
  --h1-lh: 1.2;
  --h2-lh: 1.1538461538;
  --h3-lh: 1.1818181818;
  --h4-lh: 1.2222222222;
  --h5-lh: 1.25;
  --h6-lh: 1.25;
  --body-fs-lg: 1.8rem;
  --body-fs-md: 1.6rem;
  --body-fs-sm: 1.4rem;
  --body-fs-xs: 1.2rem;
  --body-lh-lg: 1.6666666667;
  --body-lh-md: 1.625;
  --body-lh-sm: 1.4285714286;
  --body-lh-xs: 1.5;
  --btn-fs: 1.6rem;
  --nav-fs: 1.6rem;
  --link-fs: 1.6rem;
  --copyright-fs: 1rem;
  --product-title-fs: 2rem;
  --btn-lh: 1;
  --nav-lh: 1.4444444444;
  --link-lh: 1.625;
  --copyright-lh: 2.4;
  --product-title-lh: 1.25;
  --border-radius: 0.5em;
}
@media screen and (min-width: 768px) {
  :root {
    --layout-site-padding: var(--layout-site-padding-desktop);
    --h1-fs: 5rem;
    --h2-fs: 4rem;
    --h3-fs: 2.4rem;
    --h4-fs: 2rem;
    --h5-fs: 1.6rem;
    --h6-fs: 1.6rem;
    --h1-lh: 1.2;
    --h2-lh: 1.2;
    --h3-lh: 1.25;
    --h4-lh: 1.2;
    --h5-lh: 1.25;
    --h6-lh: 1.25;
  }
}

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

.hide {
  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;
  visibility: hidden;
}

.u-text-accent {
  color: var(--accent);
}

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

.u-bg-secondary {
  background: var(--color-secondary-bg);
}

.u-border-primary {
  border: 1px solid var(--color-primary-border);
}

.u-border-secondary {
  border: 1px solid var(--color-secondary-border);
}

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

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

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

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

.u-position-center {
  margin-left: auto;
  margin-right: auto;
}

.u-postion-left {
  margin-right: auto;
}

.u-position-right {
  margin-left: auto;
}

.u-unstyled-list {
  padding-left: 0;
}
.u-unstyled-list li {
  list-style: none;
}

.u-unstyled-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

.u-ratio-container {
  position: relative;
}
.u-ratio-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.u-ratio-container::after {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
  padding-bottom: 56.25%;
}

.u-list-inline {
  padding: 0;
  margin: 0;
}
.u-list-inline li {
  display: inline-block;
}

.u-placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.u-placeholder-background--animation {
  background-color: var(--black);
}
.no-js .u-placeholder-background--animation {
  display: none;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

body,
.p {
  font-family: var(--ff-primary);
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  font-weight: 400;
  color: var(--color-primary-body);
}

h1,
.h1 {
  font-family: var(--ff-primary);
  font-weight: 600;
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  color: var(--color-secondary);
  margin-top: 0;
  margin-bottom: 2.5rem;
}

h2,
.h2 {
  font-family: var(--ff-primary);
  font-weight: 600;
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
  color: var(--color-secondary);
  margin-top: 0;
  margin-bottom: 2.5rem;
}

h3,
.h3 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
  color: var(--color-secondary);
  margin-top: 0;
  margin-bottom: 2rem;
}

h4,
.h4 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: var(--h4-fs);
  line-height: var(--h4-lh);
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-top: 0;
  margin-bottom: 2rem;
}

h5,
.h5 {
  font-family: var(--ff-primary);
  font-weight: 600;
  font-size: var(--h5-fs);
  line-height: var(--h5-lh);
  color: var(--color-secondary);
  margin-top: 0;
  margin-bottom: 2rem;
}

h6,
.h6 {
  font-family: var(--ff-primary);
  font-weight: 600;
  font-size: var(--h6-fs);
  line-height: var(--h6-lh);
  color: var(--color-secondary);
  margin-top: 0;
  margin-bottom: 2rem;
}

p {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
p:first-of-type {
  margin-top: 0;
}

.body-fs-lg {
  font-size: var(--body-fs-lg);
  line-height: var(--body-lh-lg);
}

.body-fs-md {
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
}

.body-fs-sm {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}

.body-fs-xs {
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-xs);
}

.product-title {
  font-size: var(--product-title-fs);
  line-height: var(--product-title-lh);
  margin-bottom: 0;
}

blockquote {
  font-family: var(--ff-primary);
  font-weight: 600;
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
  color: var(--color-secondary);
  margin-top: 0;
  margin-bottom: 2.5rem;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

.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;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-color: var(--color-white);
  overflow-y: scroll;
  scroll-behavior: smooth;
  margin: 0;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
body.sidebar--open #shopify-section-announcement-bar, body.sidebar--is-animating #shopify-section-announcement-bar {
  z-index: 999;
}
body.filter-sidebar--open #shopify-section-announcement-bar,
body.filter-sidebar--open #shopify-section-header, body.filter-sidebar--is-animating #shopify-section-announcement-bar,
body.filter-sidebar--is-animating #shopify-section-header {
  z-index: 0;
}
body.no-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
  touch-action: none;
  -ms-touch-action: none;
}

main {
  position: relative;
  z-index: 1;
}

.content-for-layout {
  isolation: isolate;
}

@media only screen and (max-width: -1px) {
  .hidden-xs-down {
    display: none !important;
  }
}
.hidden-xs-up {
  display: none !important;
}

@media only screen and (max-width: 479px) {
  .hidden-xs-down {
    display: none !important;
  }
}
@media only screen and (min-width: 480px) {
  .hidden-xs-up {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media only screen and (max-width: 989px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media only screen and (min-width: 990px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media only screen and (max-width: 1099px) {
  .hidden-xl-down {
    display: none !important;
  }
}
@media only screen and (min-width: 1100px) {
  .hidden-xl-up {
    display: none !important;
  }
}
.grid {
  display: flex;
  flex-wrap: wrap;
}
.grid--no-wrap {
  flex-wrap: nowrap;
}
.grid--center-h {
  justify-content: center;
}
.grid--left-h {
  justify-content: left;
}
.grid--right-h {
  justify-content: right;
}
.grid--top-v {
  align-items: flex-start;
}
.grid--center-v {
  align-items: center;
}
.grid--bottom-v {
  align-items: flex-end;
}
.grid__col-offset-0 {
  margin-left: 0;
}
.grid__col-offset-right-0 {
  margin-right: 0;
}
.grid__col-1 {
  width: 8.3333333333%;
}
.grid__col-offset-1 {
  margin-left: 8.3333333333%;
}
.grid__col-offset-right-1 {
  margin-right: 8.3333333333%;
}
.grid__col-2 {
  width: 16.6666666667%;
}
.grid__col-offset-2 {
  margin-left: 16.6666666667%;
}
.grid__col-offset-right-2 {
  margin-right: 16.6666666667%;
}
.grid__col-3 {
  width: 25%;
}
.grid__col-offset-3 {
  margin-left: 25%;
}
.grid__col-offset-right-3 {
  margin-right: 25%;
}
.grid__col-4 {
  width: 33.3333333333%;
}
.grid__col-offset-4 {
  margin-left: 33.3333333333%;
}
.grid__col-offset-right-4 {
  margin-right: 33.3333333333%;
}
.grid__col-5 {
  width: 41.6666666667%;
}
.grid__col-offset-5 {
  margin-left: 41.6666666667%;
}
.grid__col-offset-right-5 {
  margin-right: 41.6666666667%;
}
.grid__col-6 {
  width: 50%;
}
.grid__col-offset-6 {
  margin-left: 50%;
}
.grid__col-offset-right-6 {
  margin-right: 50%;
}
.grid__col-7 {
  width: 58.3333333333%;
}
.grid__col-offset-7 {
  margin-left: 58.3333333333%;
}
.grid__col-offset-right-7 {
  margin-right: 58.3333333333%;
}
.grid__col-8 {
  width: 66.6666666667%;
}
.grid__col-offset-8 {
  margin-left: 66.6666666667%;
}
.grid__col-offset-right-8 {
  margin-right: 66.6666666667%;
}
.grid__col-9 {
  width: 75%;
}
.grid__col-offset-9 {
  margin-left: 75%;
}
.grid__col-offset-right-9 {
  margin-right: 75%;
}
.grid__col-10 {
  width: 83.3333333333%;
}
.grid__col-offset-10 {
  margin-left: 83.3333333333%;
}
.grid__col-offset-right-10 {
  margin-right: 83.3333333333%;
}
.grid__col-11 {
  width: 91.6666666667%;
}
.grid__col-offset-11 {
  margin-left: 91.6666666667%;
}
.grid__col-offset-right-11 {
  margin-right: 91.6666666667%;
}
.grid__col-12 {
  width: 100%;
}
.grid__col-offset-12 {
  margin-left: 100%;
}
.grid__col-offset-right-12 {
  margin-right: 100%;
}
@media only screen and (min-width: 480px) {
  .grid--no-wrap-xs {
    flex-wrap: nowrap;
  }
  .grid--center-h-xs {
    justify-content: center;
  }
  .grid--left-h-xs {
    justify-content: left;
  }
  .grid--right-h-xs {
    justify-content: right;
  }
  .grid--top-v-xs {
    align-items: flex-start;
  }
  .grid--center-v-xs {
    align-items: center;
  }
  .grid--bottom-v-xs {
    align-items: flex-end;
  }
  .grid__col-xs-offset-0 {
    margin-left: 0;
  }
  .grid__col-xs-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-xs-1 {
    width: 8.3333333333%;
  }
  .grid__col-xs-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-xs-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-xs-2 {
    width: 16.6666666667%;
  }
  .grid__col-xs-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-xs-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-xs-3 {
    width: 25%;
  }
  .grid__col-xs-offset-3 {
    margin-left: 25%;
  }
  .grid__col-xs-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-xs-4 {
    width: 33.3333333333%;
  }
  .grid__col-xs-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-xs-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-xs-5 {
    width: 41.6666666667%;
  }
  .grid__col-xs-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-xs-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-xs-6 {
    width: 50%;
  }
  .grid__col-xs-offset-6 {
    margin-left: 50%;
  }
  .grid__col-xs-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-xs-7 {
    width: 58.3333333333%;
  }
  .grid__col-xs-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-xs-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-xs-8 {
    width: 66.6666666667%;
  }
  .grid__col-xs-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-xs-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-xs-9 {
    width: 75%;
  }
  .grid__col-xs-offset-9 {
    margin-left: 75%;
  }
  .grid__col-xs-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-xs-10 {
    width: 83.3333333333%;
  }
  .grid__col-xs-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-xs-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-xs-11 {
    width: 91.6666666667%;
  }
  .grid__col-xs-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-xs-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-xs-12 {
    width: 100%;
  }
  .grid__col-xs-offset-12 {
    margin-left: 100%;
  }
  .grid__col-xs-offset-right-12 {
    margin-right: 100%;
  }
}
@media only screen and (min-width: 600px) {
  .grid--no-wrap-sm {
    flex-wrap: nowrap;
  }
  .grid--center-h-sm {
    justify-content: center;
  }
  .grid--left-h-sm {
    justify-content: left;
  }
  .grid--right-h-sm {
    justify-content: right;
  }
  .grid--top-v-sm {
    align-items: flex-start;
  }
  .grid--center-v-sm {
    align-items: center;
  }
  .grid--bottom-v-sm {
    align-items: flex-end;
  }
  .grid__col-sm-offset-0 {
    margin-left: 0;
  }
  .grid__col-sm-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-sm-1 {
    width: 8.3333333333%;
  }
  .grid__col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-sm-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-sm-2 {
    width: 16.6666666667%;
  }
  .grid__col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-sm-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-sm-3 {
    width: 25%;
  }
  .grid__col-sm-offset-3 {
    margin-left: 25%;
  }
  .grid__col-sm-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-sm-4 {
    width: 33.3333333333%;
  }
  .grid__col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-sm-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-sm-5 {
    width: 41.6666666667%;
  }
  .grid__col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-sm-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-sm-6 {
    width: 50%;
  }
  .grid__col-sm-offset-6 {
    margin-left: 50%;
  }
  .grid__col-sm-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-sm-7 {
    width: 58.3333333333%;
  }
  .grid__col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-sm-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-sm-8 {
    width: 66.6666666667%;
  }
  .grid__col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-sm-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-sm-9 {
    width: 75%;
  }
  .grid__col-sm-offset-9 {
    margin-left: 75%;
  }
  .grid__col-sm-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-sm-10 {
    width: 83.3333333333%;
  }
  .grid__col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-sm-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-sm-11 {
    width: 91.6666666667%;
  }
  .grid__col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-sm-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-sm-12 {
    width: 100%;
  }
  .grid__col-sm-offset-12 {
    margin-left: 100%;
  }
  .grid__col-sm-offset-right-12 {
    margin-right: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .grid--no-wrap-md {
    flex-wrap: nowrap;
  }
  .grid--center-h-md {
    justify-content: center;
  }
  .grid--left-h-md {
    justify-content: left;
  }
  .grid--right-h-md {
    justify-content: right;
  }
  .grid--top-v-md {
    align-items: flex-start;
  }
  .grid--center-v-md {
    align-items: center;
  }
  .grid--bottom-v-md {
    align-items: flex-end;
  }
  .grid__col-md-offset-0 {
    margin-left: 0;
  }
  .grid__col-md-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-md-1 {
    width: 8.3333333333%;
  }
  .grid__col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-md-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-md-2 {
    width: 16.6666666667%;
  }
  .grid__col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-md-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-md-3 {
    width: 25%;
  }
  .grid__col-md-offset-3 {
    margin-left: 25%;
  }
  .grid__col-md-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-md-4 {
    width: 33.3333333333%;
  }
  .grid__col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-md-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-md-5 {
    width: 41.6666666667%;
  }
  .grid__col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-md-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-md-6 {
    width: 50%;
  }
  .grid__col-md-offset-6 {
    margin-left: 50%;
  }
  .grid__col-md-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-md-7 {
    width: 58.3333333333%;
  }
  .grid__col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-md-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-md-8 {
    width: 66.6666666667%;
  }
  .grid__col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-md-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-md-9 {
    width: 75%;
  }
  .grid__col-md-offset-9 {
    margin-left: 75%;
  }
  .grid__col-md-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-md-10 {
    width: 83.3333333333%;
  }
  .grid__col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-md-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-md-11 {
    width: 91.6666666667%;
  }
  .grid__col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-md-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-md-12 {
    width: 100%;
  }
  .grid__col-md-offset-12 {
    margin-left: 100%;
  }
  .grid__col-md-offset-right-12 {
    margin-right: 100%;
  }
}
@media only screen and (min-width: 990px) {
  .grid--no-wrap-lg {
    flex-wrap: nowrap;
  }
  .grid--center-h-lg {
    justify-content: center;
  }
  .grid--left-h-lg {
    justify-content: left;
  }
  .grid--right-h-lg {
    justify-content: right;
  }
  .grid--top-v-lg {
    align-items: flex-start;
  }
  .grid--center-v-lg {
    align-items: center;
  }
  .grid--bottom-v-lg {
    align-items: flex-end;
  }
  .grid__col-lg-offset-0 {
    margin-left: 0;
  }
  .grid__col-lg-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-lg-1 {
    width: 8.3333333333%;
  }
  .grid__col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-lg-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-lg-2 {
    width: 16.6666666667%;
  }
  .grid__col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-lg-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-lg-3 {
    width: 25%;
  }
  .grid__col-lg-offset-3 {
    margin-left: 25%;
  }
  .grid__col-lg-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-lg-4 {
    width: 33.3333333333%;
  }
  .grid__col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-lg-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-lg-5 {
    width: 41.6666666667%;
  }
  .grid__col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-lg-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-lg-6 {
    width: 50%;
  }
  .grid__col-lg-offset-6 {
    margin-left: 50%;
  }
  .grid__col-lg-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-lg-7 {
    width: 58.3333333333%;
  }
  .grid__col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-lg-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-lg-8 {
    width: 66.6666666667%;
  }
  .grid__col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-lg-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-lg-9 {
    width: 75%;
  }
  .grid__col-lg-offset-9 {
    margin-left: 75%;
  }
  .grid__col-lg-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-lg-10 {
    width: 83.3333333333%;
  }
  .grid__col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-lg-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-lg-11 {
    width: 91.6666666667%;
  }
  .grid__col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-lg-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-lg-12 {
    width: 100%;
  }
  .grid__col-lg-offset-12 {
    margin-left: 100%;
  }
  .grid__col-lg-offset-right-12 {
    margin-right: 100%;
  }
}
@media only screen and (min-width: 1100px) {
  .grid--no-wrap-xl {
    flex-wrap: nowrap;
  }
  .grid--center-h-xl {
    justify-content: center;
  }
  .grid--left-h-xl {
    justify-content: left;
  }
  .grid--right-h-xl {
    justify-content: right;
  }
  .grid--top-v-xl {
    align-items: flex-start;
  }
  .grid--center-v-xl {
    align-items: center;
  }
  .grid--bottom-v-xl {
    align-items: flex-end;
  }
  .grid__col-xl-offset-0 {
    margin-left: 0;
  }
  .grid__col-xl-offset-right-0 {
    margin-right: 0;
  }
  .grid__col-xl-1 {
    width: 8.3333333333%;
  }
  .grid__col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid__col-xl-offset-right-1 {
    margin-right: 8.3333333333%;
  }
  .grid__col-xl-2 {
    width: 16.6666666667%;
  }
  .grid__col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid__col-xl-offset-right-2 {
    margin-right: 16.6666666667%;
  }
  .grid__col-xl-3 {
    width: 25%;
  }
  .grid__col-xl-offset-3 {
    margin-left: 25%;
  }
  .grid__col-xl-offset-right-3 {
    margin-right: 25%;
  }
  .grid__col-xl-4 {
    width: 33.3333333333%;
  }
  .grid__col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid__col-xl-offset-right-4 {
    margin-right: 33.3333333333%;
  }
  .grid__col-xl-5 {
    width: 41.6666666667%;
  }
  .grid__col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid__col-xl-offset-right-5 {
    margin-right: 41.6666666667%;
  }
  .grid__col-xl-6 {
    width: 50%;
  }
  .grid__col-xl-offset-6 {
    margin-left: 50%;
  }
  .grid__col-xl-offset-right-6 {
    margin-right: 50%;
  }
  .grid__col-xl-7 {
    width: 58.3333333333%;
  }
  .grid__col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid__col-xl-offset-right-7 {
    margin-right: 58.3333333333%;
  }
  .grid__col-xl-8 {
    width: 66.6666666667%;
  }
  .grid__col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid__col-xl-offset-right-8 {
    margin-right: 66.6666666667%;
  }
  .grid__col-xl-9 {
    width: 75%;
  }
  .grid__col-xl-offset-9 {
    margin-left: 75%;
  }
  .grid__col-xl-offset-right-9 {
    margin-right: 75%;
  }
  .grid__col-xl-10 {
    width: 83.3333333333%;
  }
  .grid__col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid__col-xl-offset-right-10 {
    margin-right: 83.3333333333%;
  }
  .grid__col-xl-11 {
    width: 91.6666666667%;
  }
  .grid__col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid__col-xl-offset-right-11 {
    margin-right: 91.6666666667%;
  }
  .grid__col-xl-12 {
    width: 100%;
  }
  .grid__col-xl-offset-12 {
    margin-left: 100%;
  }
  .grid__col-xl-offset-right-12 {
    margin-right: 100%;
  }
}

.a-logo__link svg {
  display: block;
}

.a-badge {
  padding: 0.5em 1em;
  border-radius: 0.5em;
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-tertiary-body);
  font-weight: 400;
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}

.a-btn, .shopify-challenge__button, .m-product-form .shopify-payment-button__button div[role=button], .m-product-form .shopify-payment-button__button[type=button], .swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn,
.swym-ui-component.swym-ui-component .swym-share-wishlist-login-modal .swym-share-wishlist-login-modal-dialog .swym-share-login .swym-login-btn {
  --btn-border-radius: var(--border-radius);
  --btn-padding-inline: 1.6em;
  --btn-padding-block: 1.1em;
  --btn-gap: 0.5em;
  --btn-ff: var(--ff-primary);
  --btn-fs: 1.6rem;
  --btn-lh: 1;
  --btn-letter-spacing: normal;
  --btn-text-transform: uppercase;
  --btn-transition: color 0.35s ease, border-color 0.35s ease,
    background-color 0.35s ease;
  --btn-icon-size: 1em;
  --btn-icon-offset: -0.5em;
  --btn-cursor: pointer;
  --btn-base-color: var(--color-primary);
  --btn-base-text-color: var(--color-tertiary-body);
  --btn-bg-color: var(--btn-base-color);
  --btn-text-color: var(--btn-base-text-color);
  --btn-border-width: 1px;
  --btn-border-color: var(--btn-base-color);
  --btn-hover-bg-color: var(--color-white);
  --btn-hover-text-color: var(--btn-base-color);
  --btn-hover-border-color: var(--btn-base-color);
  font-family: var(--btn-ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: var(--btn-text-transform);
  text-decoration: none;
  appearance: none;
  padding-inline: var(--btn-padding-inline);
  padding-block: var(--btn-padding-block);
  font-size: var(--btn-fs);
  line-height: var(--btn-lh);
  letter-spacing: var(--btn-ls);
  border-radius: var(--btn-border-radius);
  cursor: var(--btn-cursor);
  transition: var(--btn-transition);
  gap: var(--btn-gap);
  background-color: var(--btn-bg-color);
  border: var(--btn-border-width) solid var(--btn-border-color);
  color: var(--btn-text-color);
}
.a-btn :where(.icon, svg), .shopify-challenge__button :where(.icon, svg), .m-product-form .shopify-payment-button__button div[role=button] :where(.icon, svg), .m-product-form .shopify-payment-button__button[type=button] :where(.icon, svg), .swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn :where(.icon, svg),
.swym-ui-component.swym-ui-component .swym-share-wishlist-login-modal .swym-share-wishlist-login-modal-dialog .swym-share-login .swym-login-btn :where(.icon, svg) {
  width: var(--btn-icon-size);
  height: auto;
  display: block;
}
.a-btn :where(.icon, svg):not(:only-child):first-child, .shopify-challenge__button :where(.icon, svg):not(:only-child):first-child, .m-product-form .shopify-payment-button__button div[role=button] :where(.icon, svg):not(:only-child):first-child, .m-product-form .shopify-payment-button__button[type=button] :where(.icon, svg):not(:only-child):first-child, .swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn :where(.icon, svg):not(:only-child):first-child,
.swym-ui-component.swym-ui-component .swym-share-wishlist-login-modal .swym-share-wishlist-login-modal-dialog .swym-share-login .swym-login-btn :where(.icon, svg):not(:only-child):first-child {
  margin-left: var(--btn-icon-offset);
}
.a-btn :where(.icon, svg):not(:only-child):last-child, .shopify-challenge__button :where(.icon, svg):not(:only-child):last-child, .m-product-form .shopify-payment-button__button div[role=button] :where(.icon, svg):not(:only-child):last-child, .m-product-form .shopify-payment-button__button[type=button] :where(.icon, svg):not(:only-child):last-child, .swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn :where(.icon, svg):not(:only-child):last-child,
.swym-ui-component.swym-ui-component .swym-share-wishlist-login-modal .swym-share-wishlist-login-modal-dialog .swym-share-login .swym-login-btn :where(.icon, svg):not(:only-child):last-child {
  margin-right: var(--btn-icon-offset);
}
.a-btn:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible), .shopify-challenge__button:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible), .m-product-form .shopify-payment-button__button div[role=button]:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible), .m-product-form .shopify-payment-button__button[type=button]:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible), .swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible),
.swym-ui-component.swym-ui-component .swym-share-wishlist-login-modal .swym-share-wishlist-login-modal-dialog .swym-share-login .swym-login-btn:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible) {
  background-color: var(--btn-hover-bg-color);
  border-color: var(--btn-hover-border-color);
  color: var(--btn-hover-text-color);
  outline: none;
}
.a-btn:is(:disabled, [disabled], .disabled), .shopify-challenge__button:is(:disabled, [disabled], .disabled), .m-product-form .shopify-payment-button__button div[role=button]:is(:disabled, [disabled], .disabled), .m-product-form .shopify-payment-button__button[type=button]:is(:disabled, [disabled], .disabled), .swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn:is(:disabled, [disabled], .disabled),
.swym-ui-component.swym-ui-component .swym-share-wishlist-login-modal .swym-share-wishlist-login-modal-dialog .swym-share-login .swym-login-btn:is(:disabled, [disabled], .disabled) {
  --btn-cursor: not-allowed;
  filter: var(--greyscale, grayscale(100%));
  opacity: var(--opacity, 0.4);
}
.a-btn--square, .a-btn--icon {
  --btn-icon-size: 1.2em;
  --btn-padding-inline: 0.5em;
  --btn-padding-block: 0.5em;
  --btn-border-radius: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.a-btn--small {
  --btn-fs: 1.2rem;
  --btn-padding-inline: 1.4em;
}
.a-btn--medium {
  --btn-fs: 2rem;
}
.a-btn--large {
  --btn-fs: 2.5rem;
}
.a-btn--primary, .m-product-form .shopify-payment-button__button div[role=button], .swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn,
.swym-ui-component.swym-ui-component .swym-share-wishlist-login-modal .swym-share-wishlist-login-modal-dialog .swym-share-login .swym-login-btn {
  --btn-base-color: var(--color-primary);
  --btn-base-text-color: var(--color-tertiary-body);
}
.a-btn--secondary {
  --btn-base-color: var(--color-secondary);
  --btn-base-text-color: var(--color-tertiary-body);
}
.a-btn--tertiary, .shopify-challenge__button {
  --btn-base-color: var(--color-primary);
  --btn-bg-color: transparent;
  --btn-text-color: var(--btn-base-color);
  --btn-hover-bg-color: var(--btn-base-color);
  --btn-hover-text-color: var(--color-tertiary-body);
}
.a-btn--quaternary, .m-product-form .shopify-payment-button__button[type=button] {
  --btn-base-color: var(--color-secondary);
  --btn-bg-color: transparent;
  --btn-text-color: var(--btn-base-color);
  --btn-hover-bg-color: var(--btn-base-color);
  --btn-hover-text-color: var(--color-tertiary-body);
}
.a-btn--transparent {
  --btn-base-color: var(--color-primary-body);
  --btn-border-radius: 0;
  --btn-border-color: var(--color-primary-border);
  --btn-hover-border-color: var(--color-primary-border);
  --btn-bg-color: transparent;
  --btn-text-color: var(--btn-base-color);
}

.a-img__ratio--1x1 {
  object-fit: cover;
  aspect-ratio: 1/1;
}
.a-img__ratio--2x3 {
  object-fit: cover;
  aspect-ratio: 2/3;
}
.a-img__ratio--3x2 {
  object-fit: cover;
  aspect-ratio: 3/2;
}
.a-img__ratio--4x3 {
  object-fit: cover;
  aspect-ratio: 4/3;
}
.a-img__ratio--16x9 {
  object-fit: cover;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .a-img__mobile-ratio--1x1 {
    object-fit: cover;
    aspect-ratio: 1/1;
  }
  .a-img__mobile-ratio--2x3 {
    object-fit: cover;
    aspect-ratio: 2/3;
  }
  .a-img__mobile-ratio--3x2 {
    object-fit: cover;
    aspect-ratio: 3/2;
  }
  .a-img__mobile-ratio--4x3 {
    object-fit: cover;
    aspect-ratio: 4/3;
  }
  .a-img__mobile-ratio--16x9 {
    object-fit: cover;
    aspect-ratio: 16/9;
  }
}

.a-link,
.rte a {
  font-family: var(--ff-primary);
  font-weight: 600;
  display: inline-block;
  color: var(--color-secondary);
  border: none;
  border-bottom: 1px solid var(--color-secondary);
  text-decoration: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.a-link:hover,
.rte a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.a-link {
  font-size: var(--link-fs);
  line-height: var(--link-lh);
  display: inline-flex;
  align-items: center;
}
.a-link .icon {
  margin-left: 0.4em;
  vertical-align: middle;
  width: 1.2em;
  height: auto;
}

.a-checkbox {
  --checkbox-label-color: var(--color-primary-body);
  --checkbox-input-bg-color: var(--color-white);
  --checkbox-input-border-color: var(--color-primary-border);
  --checkbox-input-mark-color: var(--color-white);
  --checkbox-active-input-border-color: var(--color-primary);
  --checkbox-active-input-bg-color: var(--color-primary);
  margin: 2rem 0;
}
.a-checkbox__input,
.a-checkbox input[type=checkbox] {
  display: none;
}
.a-checkbox__label {
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  color: var(--checkbox-label-color);
  position: relative;
  display: block;
  padding-left: 2.8rem;
  cursor: pointer;
}
.a-checkbox__label a {
  color: inherit;
}
.a-checkbox__label::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: var(--checkbox-input-bg-color);
  border: 1px solid var(--checkbox-input-border-color);
  position: absolute;
  left: 0;
  top: 0.4rem;
  border-radius: 0;
}
.a-checkbox__label.a-checkbox__label--small {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  padding-left: 2.4rem;
}
.a-checkbox__label.a-checkbox__label--small::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  top: 0.3rem;
}
.a-checkbox__input.error + .a-checkbox__label, input[type=checkbox].error + .a-checkbox__label {
  color: var(--color-state-error);
}
.a-checkbox__input.error + .a-checkbox__label::before, input[type=checkbox].error + .a-checkbox__label::before {
  border-color: var(--color-state-error);
}
.a-checkbox__input:checked + .a-checkbox__label, input[type=checkbox]:checked + .a-checkbox__label {
  cursor: pointer;
}
.a-checkbox__input:checked + .a-checkbox__label::before, input[type=checkbox]:checked + .a-checkbox__label::before {
  background: var(--checkbox-active-input-bg-color);
  border-color: var(--checkbox-active-input-border-color);
}
.a-checkbox__input:checked + .a-checkbox__label::after, input[type=checkbox]:checked + .a-checkbox__label::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.6rem;
  transform: rotate(45deg);
  height: 0.9rem;
  width: 0.5rem;
  border-bottom: 2px solid var(--checkbox-input-mark-color);
  border-right: 2px solid var(--checkbox-input-mark-color);
}
.a-checkbox__input:checked + .a-checkbox__label.a-checkbox__label--small::after, input[type=checkbox]:checked + .a-checkbox__label.a-checkbox__label--small::after {
  height: 0.8rem;
  width: 0.5rem;
  left: 0.4rem;
  top: 0.5rem;
}
.a-checkbox--disabled {
  opacity: 0.5;
}

.a-form-group {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .a-form-group {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }
}
.a-form-group > .a-input,
.a-form-group > .a-select {
  margin: 0;
}

.a-radio {
  margin: 2rem 0;
}
.a-radio__input {
  display: none;
}
.a-radio__label {
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  color: var(--color-primary-body);
  position: relative;
  display: block;
  padding-left: 2.8rem;
  cursor: pointer;
}
.a-radio__label::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: var(--color-white);
  border: 1px solid var(--color-primary-border);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.a-radio__label.a-radio__label--small {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  padding-left: 2.4rem;
}
.a-radio__label.a-radio__label--small::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
}
.a-radio__input:checked + .a-radio__label {
  cursor: pointer;
}
.a-radio__input:checked + .a-radio__label::before {
  background: var(--color-primary);
}
.a-radio__input:checked + .a-radio__label::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-white);
  border-radius: 100%;
  position: absolute;
  top: 1rem;
  left: 0.6rem;
}
.a-radio__input:checked + .a-radio__label.a-radio__label--small::after {
  width: 0.4rem;
  height: 0.4rem;
  left: 0.5rem;
  top: 0.9rem;
}

.a-input {
  --input-border-color: var(--color-primary-border);
  --input-text-color: var(--color-primary-body);
  --input-placeholder-color: var(--input-border-color);
  --input-bg-color: var(--color-white);
  --input-focus-color: var(--color-primary-border);
  --input-focus-border-color: var(--black);
  --input-border-radius: 0;
  margin: 1.5rem 0;
  text-align: left;
}
.a-input__label {
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.a-input__field, .a-input__textarea {
  color: var(--input-text-color);
  background-color: var(--input-bg-color);
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  padding: 1.5rem;
  border: 1px solid var(--input-border-color);
  width: 100%;
  min-height: 4rem;
  box-shadow: none;
  border-radius: var(--input-border-radius);
}
.a-input__field.a-input__field--transparent, .a-input__textarea.a-input__field--transparent {
  background-color: transparent;
}
.a-input__field.error, .a-input__textarea.error {
  color: var(--color-state-error);
  border-color: var(--color-state-error);
}
.a-input__field:focus, .a-input__field:focus-visible, .a-input__textarea:focus, .a-input__textarea:focus-visible {
  color: var(--input-focus-color);
  border-color: var(--input-focus-border-color);
  outline: none;
}
.a-input__textarea {
  resize: none;
  height: 12rem;
  width: 100%;
  box-shadow: none;
  outline: none;
}
.a-input__error {
  color: var(--color-state-error);
}

input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

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 {
  display: none;
}

::-webkit-input-placeholder {
  color: var(--input-placeholder-color, var(--color-primary-border));
}

::-moz-placeholder {
  color: var(--input-placeholder-color, var(--color-primary-border));
}

::-ms-placeholder {
  color: var(--input-placeholder-color, var(--color-primary-border));
}

::placeholder {
  color: var(--input-placeholder-color, var(--color-primary-border));
}

.a-select {
  margin: 1.5rem 0;
  text-align: left;
}
.a-select__label {
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.a-select__field:not(.ts-wrapper) {
  color: var(--color-primary-body);
  background-color: var(--color-white);
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  padding: 1.5rem;
  border: 1px solid var(--color-primary-border);
  width: 100%;
  min-height: 4rem;
  box-shadow: none;
  border-radius: 0;
}
.a-select__field:not(.ts-wrapper).a-input__field--transparent {
  background-color: transparent;
}
.a-select__field:not(.ts-wrapper).error {
  color: var(--color-state-error);
  border-color: var(--color-state-error);
}
.a-select__field:not(.ts-wrapper):focus, .a-select__field:not(.ts-wrapper):focus-visible {
  color: var(--color-primary-border);
  border-color: var(--black);
  outline: none;
}

/**
 * tom-select.css (v2.2.2)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
:root {
  --ts-pr-clear-button:	0;
  --ts-pr-caret:	0;
  --ts-pr-min:	.75rem;
}

.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper.plugin-drag_drop.multi > .ts-control > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}
.ts-wrapper.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}
.ts-wrapper.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.plugin-checkbox_options .option input {
  margin-right: 0.5rem;
}

.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(8px - 6px);
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max( var(--ts-pr-caret), 8px);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px 0;
  display: block;
  padding: 8px 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca;
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}

.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca;
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  font-smoothing: inherit;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
}
.ts-wrapper.multi.has-items .ts-control {
  padding: calc( 8px - 2px - 0px) 8px calc( 8px - 2px - 3px - 0px);
}
.full .ts-control {
  background-color: #fff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  box-shadow: none;
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0px solid #d0d0d0;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0px solid #cacaca;
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: #7d7d7d;
  background: white;
  border: 0px solid white;
}
.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  user-select: auto !important;
  box-shadow: none !important;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0px 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0px 4px 0px -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.ts-dropdown .active.create {
  color: #495c68;
}
.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.ts-dropdown .spinner:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ts-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.ts-dropdown.single,
.ts-dropdown {
  margin-top: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary-border);
  border-top: none;
}
.ts-dropdown.single .active,
.ts-dropdown .active {
  background-color: var(--color-secondary-bg);
  color: var(--color-primary-body);
}
.ts-dropdown.single .option,
.ts-dropdown .option {
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}

.ts-wrapper.single.dropdown-active .ts-control {
  background-color: var(--color-white);
}

.ts-wrapper.single.dropdown-active .ts-control {
  background-color: var(--color-white);
  border-radius: 0;
}

.ts-dropdown-content {
  max-height: 18rem;
  padding: 0.5rem 0;
}

.ts-wrapper.single .ts-control:after {
  content: " ";
  display: block;
  position: absolute;
  display: block;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg class='icon icon-caret' width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L12 13.5858L17.2929 8.29289C17.6834 7.90237 18.3166 7.90237 18.7071 8.29289C19.0976 8.68342 19.0976 9.31658 18.7071 9.70711L12.7071 15.7071C12.3166 16.0976 11.6834 16.0976 11.2929 15.7071L5.29289 9.70711C4.90237 9.31658 4.90237 8.68342 5.29289 8.29289Z' fill='black'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}

.ts-wrapper.single.dropdown-active .ts-control::after {
  transform: rotate(180deg) translateY(50%);
}

.ts-wrapper.single.input-active .ts-control,
.ts-wrapper.single.input-active .ts-control input {
  cursor: pointer;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background-color: var(--color-white);
}

.ts-wrapper.single .ts-control {
  color: var(--color-primary-body);
  background-color: var(--color-white);
  background-image: none;
  font-weight: 400;
  font-family: var(--ff-primary);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  padding: 1.5rem;
  padding-right: 4.5rem !important;
  border: 1px solid var(--color-primary-border);
  width: 100%;
  min-height: 4rem;
  box-shadow: none;
  border-radius: 0;
}
.ts-wrapper.single .ts-control:focus, .ts-wrapper.single .ts-control:focus-visible {
  outline: none;
}

.ts-wrapper.a-select__field--inline .ts-control, .ts-wrapper.single.a-select__field--inline .ts-control {
  background: transparent;
  border: none;
  font-size: var(--body-fs-md);
  line-height: var(--body-lh-md);
  min-height: auto;
  padding: 0;
  padding-right: 2rem !important;
}
.ts-wrapper.a-select__field--inline .ts-control::after, .ts-wrapper.single.a-select__field--inline .ts-control::after {
  height: 1.6rem;
  width: 1.6rem;
  top: 52%;
  right: 0;
}
.ts-wrapper.a-select__field--inline .ts-dropdown.single,
.ts-wrapper.a-select__field--inline .ts-dropdown, .ts-wrapper.single.a-select__field--inline .ts-dropdown.single,
.ts-wrapper.single.a-select__field--inline .ts-dropdown {
  border-radius: 0;
  border: none;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  min-width: 14rem;
  left: auto;
  right: 0;
}

.a-video {
  position: relative;
}
.a-video video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.a-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}
.a-video__play-button {
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  position: relative;
  width: 4rem;
  height: 4rem;
}
.a-video__play-button .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.4rem;
  height: 2.4rem;
  transform: translate(-50%, -50%);
}
.a-video__video-url {
  position: relative;
  padding-bottom: 56.25%;
}
.a-video__video-url iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
}

.a-hamburger {
  position: relative;
  display: block;
  width: 3rem;
  height: 0.2rem;
  color: inherit;
}
.a-hamburger span, .a-hamburger::before, .a-hamburger::after {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: var(--color-primary-body);
  border-radius: 2px;
}
.a-hamburger span {
  transform: scale(1, 1);
  transform-origin: top left;
  transition-delay: 0.4s, 0.3s;
  transition-duration: 0.2s;
  transition-property: transform, background-color;
  transition-timing-function: ease-in-out;
}
.a-hamburger::before, .a-hamburger::after {
  content: "";
  transition-delay: 0s, 0.2s, 0.3s;
  transition-duration: 0.2s;
  transition-property: transform, top, background-color;
  transition-timing-function: ease-in-out;
}
.a-hamburger::before {
  top: -1rem;
}
.a-hamburger::after {
  top: 1rem;
}
.sidebar--open .a-hamburger span {
  transform: scale(0, 1);
  transform-origin: top right;
  transition-delay: 0s, 0s, 0s;
}
.sidebar--open .a-hamburger::before, .sidebar--open .a-hamburger::after {
  top: 0;
  transition-delay: 0.4s, 0.2s, 0s;
}
.sidebar--open .a-hamburger::before {
  transform: rotate(-45deg);
}
.sidebar--open .a-hamburger::after {
  transform: rotate(45deg);
}

.a-loader {
  animation: 2s linear infinite svg-animation;
  width: 2rem;
}
.a-loader circle {
  animation: 1.4s ease-in-out infinite both circle-animation;
  display: block;
  fill: transparent;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 280;
  stroke-width: 10px;
  transform-origin: 50% 50%;
}
.a-loader.a-loader--dark circle {
  stroke: var(--color-secondary);
}
.a-loader.a-loader--light circle {
  stroke: var(--color-white);
}

@keyframes svg-animation {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes circle-animation {
  0%, 25% {
    stroke-dashoffset: 280;
    transform: rotate(0);
  }
  50%, 75% {
    stroke-dashoffset: 75;
    transform: rotate(45deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(360deg);
  }
}
.a-hide--mobile {
  display: none;
}
@media screen and (min-width: 768px) {
  .a-hide--mobile {
    display: block;
  }
}
.a-hide--desktop {
  display: block;
}
@media screen and (min-width: 768px) {
  .a-hide--desktop {
    display: none;
  }
}

/**
 * Swiper 9.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 6, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-wrapper {
  box-sizing: border-box;
}

:root {
  --swiper-theme-color: var(--color-primary);
  --swiper-pagination-bottom: -2rem;
}

.m-swiper .m-swiper__arrow {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
}
.m-swiper .m-swiper__arrow svg path {
  fill: var(--color-white);
}
.m-swiper .m-swiper__arrow::after {
  content: "";
}
.m-swiper .m-swiper__arrow--prev {
  left: 0;
}
.m-swiper .m-swiper__arrow--next {
  right: 0;
}
@media screen and (min-width: 768px) {
  .m-swiper .m-swiper__arrow--large {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.m-swiper .m-swiper__arrow--secondary {
  background-color: var(--color-secondary);
}
.m-swiper .m-swiper__arrow.swiper-button-lock {
  display: none;
}

.rte.orange-links a {
  color: var(--color-quaternary-body);
  border-bottom: none;
}
.rte.orange-links a:hover {
  color: var(--color-primary-body);
}
.rte img {
  max-width: 100%;
  height: auto;
}
.rte table {
  --border-color: var(--color-primary-body);
  margin: rem(32) 0;
  width: 100%;
  border: 1px solid var(--border-color);
  border-collapse: collapse;
}
.rte table th,
.rte table td {
  border: 1px solid var(--border-color);
  padding: 0.2em 0.5em;
}
.rte table th {
  text-align: left;
  background-color: var(--color-primary-bg);
}
.rte table tr:nth-child(odd) td {
  background-color: var(--color-primary-bg);
}
.rte iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-block: 1rem;
}
.rte blockquote {
  margin-inline: 0 auto;
  padding-inline: 4rem;
  border-left: 5px solid var(--color-primary);
}

.a-spacing--content[data-top=small] {
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-top=small] {
    margin-top: 1.2rem;
  }
}
.a-spacing--content[data-bottom=small] {
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-bottom=small] {
    margin-bottom: 1.2rem;
  }
}
.a-spacing--content[data-top=medium] {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-top=medium] {
    margin-top: 2.4rem;
  }
}
.a-spacing--content[data-bottom=medium] {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-bottom=medium] {
    margin-bottom: 2.4rem;
  }
}
.a-spacing--content[data-top=large] {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-top=large] {
    margin-top: 3.6rem;
  }
}
.a-spacing--content[data-bottom=large] {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .a-spacing--content[data-bottom=large] {
    margin-bottom: 3.6rem;
  }
}
.a-spacing--content[data-top=none] {
  margin-top: 0;
}
.a-spacing--content[data-bottom=none] {
  margin-bottom: 0;
}

svg.icon:not([class*=icon-payment]) path,
svg.icon:not([class*=icon-payment]) rect,
svg.icon:not([class*=icon-payment]) circle,
svg.icon:not([class*=icon-payment]) ellipse,
svg.icon:not([class*=icon-payment]) polygon,
svg.icon:not([class*=icon-payment]) polyline {
  fill: var(--svg-color, currentColor);
}

.a-tag {
  color: rgba(var(--rgb-secondary-body-base), 0.6);
  font-size: var(--body-fs-xs);
  line-height: 1;
  padding: 0.4em 0.6em 0.5em;
  border: 1px solid;
  border-radius: 1em;
}

button.swym-button.swym-button.swym-add-to-wishlist-view-product, button.swym-button.swym-button.swym-add-to-wishlist {
  --color: var(--color-primary-body);
  color: var(--color) !important;
  opacity: 1;
  padding: 0;
  background-color: transparent;
  width: 5.3rem;
  height: auto;
  display: grid;
  place-items: center;
  border: none;
}
button.swym-button.swym-button.swym-add-to-wishlist-view-product::after, button.swym-button.swym-button.swym-add-to-wishlist::after {
  display: none;
}
button.swym-button.swym-button.swym-add-to-wishlist-view-product:disabled:hover, button.swym-button.swym-button.swym-add-to-wishlist-view-product.disabled:hover, button.swym-button.swym-button.swym-add-to-wishlist:disabled:hover, button.swym-button.swym-button.swym-add-to-wishlist.disabled:hover {
  opacity: 1;
}
button.swym-button.swym-button.swym-add-to-wishlist-view-product svg, button.swym-button.swym-button.swym-add-to-wishlist svg {
  display: block;
  margin: 0;
}
button.swym-button.swym-button.swym-add-to-wishlist-view-product .swym-tooltip, button.swym-button.swym-button.swym-add-to-wishlist .swym-tooltip {
  display: none;
}
button.swym-button.swym-button.swym-add-to-wishlist-view-product .icon-heart-full, button.swym-button.swym-button.swym-add-to-wishlist .icon-heart-full {
  display: none;
}
button.swym-button.swym-button.swym-add-to-wishlist-view-product.swym-added, button.swym-button.swym-button.swym-add-to-wishlist.swym-added {
  --color: var(--color-primary);
}
button.swym-button.swym-button.swym-add-to-wishlist-view-product.swym-added .icon-heart-full, button.swym-button.swym-button.swym-add-to-wishlist.swym-added .icon-heart-full {
  display: block;
}
button.swym-button.swym-button.swym-add-to-wishlist-view-product.swym-added .icon-heart, button.swym-button.swym-button.swym-add-to-wishlist.swym-added .icon-heart {
  display: none;
}

#swym-wishlist-render-container .swym-wishlist-page.swym-simple-wishlist-page {
  max-width: var(--layout-container-width);
  padding-inline: var(--layout-site-padding);
}

.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content {
  margin-block: 5rem;
}
@media screen and (min-width: 768px) {
  .swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content {
    margin-block: 8rem;
  }
}
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid {
  --columns: 1;
  max-width: 100%;
  margin: auto;
  width: 100%;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
}
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item {
  width: auto;
  height: auto;
  margin: 0;
  border: none;
}
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-wishlist-image-wrapper,
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item img {
  height: auto;
  max-height: unset !important;
}
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item img {
  aspect-ratio: 4/3;
  object-fit: contain;
}
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-title {
  text-overflow: unset;
  white-space: unset;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--product-title-fs);
  line-height: var(--product-title-lh);
  font-weight: 400;
}
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-title:hover {
  overflow: hidden;
}
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-product-price {
  font-weight: 400;
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}
.swym-ui-component .swym-wishlist-detail-content.swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible) {
  background-color: var(--btn-hover-bg-color) !important;
}

.swym-ui-component.swym-ui-component .swym-wishlist-detail-content .swym-wishlist-grid .swym-wishlist-item .swym-add-to-cart-btn:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible),
.swym-ui-component.swym-ui-component .swym-share-wishlist-login-modal .swym-share-wishlist-login-modal-dialog .swym-share-login .swym-login-btn:not(:where(:disabled, [disabled], .disabled)):where(:hover, :focus-visible) {
  background-color: var(--btn-hover-bg-color) !important;
}

.a-stock {
  --dot-size: 0.8rem;
  --display-in-stock: none;
  --display-sold-out: none;
  --display-unavailable: none;
  --display-low: none;
  --dot-color: currentColor;
  font-size: var(--body-fs-md);
}
.a-stock[data-status=in-stock] {
  --dot-color: var(--color-state-success);
  --display-in-stock: block;
}
.a-stock[data-status=low-stock] {
  --dot-color: var(--color-state-warning);
  --display-low: block;
}
.a-stock[data-status=sold-out] {
  --dot-color: var(--color-state-error);
  --display-sold-out: block;
}
.a-stock[data-status=unavailable] {
  --dot-color: var(--color-state-unavailable);
  --display-unavailable: block;
}
.a-stock__label {
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.6;
}
.a-stock__label::before {
  content: "";
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: var(--dot-size);
  height: var(--dot-size);
  background-color: var(--dot-color);
  border-radius: 50%;
}
.a-stock__label--in-stock {
  display: var(--display-in-stock);
}
.a-stock__label--low {
  display: var(--display-low);
}
.a-stock__label--sold-out {
  display: var(--display-sold-out);
}
.a-stock__label--unavailable {
  display: var(--display-unavailable);
}

.m-localization {
  margin-top: 0.2rem;
  gap: 1rem 2.5rem;
}
.m-localization.grid {
  width: auto;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .m-localization.grid {
    flex-direction: row;
  }
}
.m-localization .a-select__field {
  background: transparent;
  border: none;
  padding: 0;
  text-transform: uppercase;
}
.m-localization .ts-wrapper.single .ts-control {
  padding: 0;
  min-height: 2rem;
  background: transparent;
  border: none;
  padding-right: 2rem !important;
}
.m-localization .ts-wrapper.single .ts-control:after {
  right: 0;
}
.m-localization .ts-dropdown {
  left: -0.2rem;
  top: calc(100% + 1rem);
}

.m-top-nav + .m-localization {
  padding-left: 2.5rem;
}

.m-top-nav__list {
  gap: 1rem 2.5rem;
}
.m-top-nav__link {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  color: var(--color-primary-body);
  text-decoration: none;
}

.m-main-nav {
  height: 100%;
}
.m-main-nav__list {
  height: 100%;
  gap: 1rem 2.5rem;
  margin: 0;
}
@media screen and (min-width: 990px) {
  .m-main-nav__list {
    gap: 1rem 5rem;
  }
}
.m-main-nav__item {
  height: 100%;
  display: flex;
  align-items: center;
}
.m-main-nav__link {
  font-size: var(--nav-fs);
  line-height: var(--nav-lh);
  color: var(--color-primary-body);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.m-main-nav__link span {
  margin-right: 0.5rem;
}
.m-main-nav__link span,
.m-main-nav__link .icon {
  display: inline-block;
  vertical-align: middle;
}

.m-footer-column__item {
  margin-bottom: 2rem;
}
.m-footer-column__item:last-child {
  margin-bottom: 0;
}
.m-footer-column__logo svg {
  display: block;
}
.m-footer-column__list {
  margin: 0;
}
.m-footer-column__description {
  max-width: 20rem;
}
.m-footer-column__description, .m-footer-column__list-item, .m-footer-column__link, .m-footer-column__newsletter {
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
  color: var(--color-secondary-body);
}
.m-footer-column__link {
  text-decoration: none;
  transition: color 0.35s ease;
}
.m-footer-column__link:hover {
  color: var(--color-primary);
}
.m-footer-column__support {
  max-width: 22rem;
  width: 100%;
  display: grid;
  place-items: center;
  color: var(--color-secondary-body);
}

.m-newsletter-form__error {
  color: var(--color-state-error);
}
.m-newsletter-form .a-btn {
  padding: 1.6rem;
  margin-left: -1px;
}
.m-newsletter-form .a-btn.a-btn--has-icon .icon {
  margin-left: 0;
}
.m-newsletter-form .a-checkbox {
  margin-bottom: 0;
}
.m-newsletter-form input[name="contact[optin]"] + label {
  display: inline-block;
}
.m-newsletter-form input[name="contact[optin]"] + label p,
.m-newsletter-form input[name="contact[optin]"] + label a {
  color: inherit;
}

.m-search-modal--visible .m-search-modal__underlay,
.m-search-modal--visible .m-search-modal__content {
  visibility: visible;
  pointer-events: all;
  transition-duration: 0.3s, 0s;
  transition-delay: 0.1s, 0s;
}
.m-search-modal--visible .m-search-modal__underlay {
  opacity: 0.4;
}
.m-search-modal--visible .m-search-modal__content {
  opacity: 1;
}
.m-search-modal__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2500;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-bg);
  padding-left: var(--layout-site-padding);
  padding-right: var(--layout-site-padding);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease 0.1s, visibility 0s linear 0.4s;
}
.m-search-modal__underlay {
  position: absolute;
  z-index: 2400;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: var(--color-black);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease 0.1s, visibility 0s linear 0.4s;
}
.m-search-modal__form {
  max-width: 600px;
  width: 100%;
}
.m-search-modal__close {
  padding: 0.6rem;
}
.m-search-modal .a-input {
  margin: 0;
  position: relative;
}
.m-search-modal .a-input__field {
  padding: 1rem 1rem 1rem 3.6rem;
}
.m-search-modal .a-input button {
  position: absolute;
  top: 50%;
  left: 0.6rem;
  padding: 0;
  transform: translateY(-50%);
}
.m-search-modal .a-input .icon {
  display: block;
}

.m-quantity {
  width: 10rem;
  border: 1px solid var(--color-primary-border);
  border-radius: var(--border-radius);
}
.m-quantity__input {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  padding: 0;
  text-align: center;
}
.m-quantity__input[type=number] {
  -moz-appearance: textfield;
}
.m-quantity__input::-webkit-outer-spin-button, .m-quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.m-quantity__button {
  padding: 0;
  width: 3.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-quantity__button .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.m-variants__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}
.m-variants__legend {
  padding: 0;
  font-weight: 700;
  text-transform: none;
}
.m-variants__label {
  background-color: transparent;
  border: 1px solid var(--color-secondary);
  padding: 0.3em 1em 0.4em;
  border-radius: var(--border-radius);
  min-width: 3.5rem;
  min-height: 3.5rem;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  font-weight: 300;
  transition: color var(--default-transition-easing) var(--default-transition-timing), background-color var(--default-transition-easing) var(--default-transition-timing);
}
.m-variants__label:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.m-variants__label.disabled {
  opacity: 0.3;
  text-decoration: line-through;
}
.m-variants__label.m-variants__label--small {
  min-width: 3rem;
  min-height: 3rem;
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}
.m-variants__input {
  display: none;
}
.m-variants__input:checked:not([disabled]) + .m-variants__label {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.m-variants__input.disabled + .m-variants__label {
  text-decoration: line-through;
}
.m-variants-picker__wrapper {
  --min: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .m-variants-picker__wrapper {
    --min: 11rem;
  }
}

.m-product-form__submit {
  width: 100%;
  position: relative;
}
.m-product-form__submit--loading .m-product-form__submit-text {
  opacity: 0;
}
.m-product-form__submit-wishlist {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.m-product-form__submit-wishlist .a-btn, .m-product-form__submit-wishlist .m-product-form .shopify-payment-button__button[type=button], .m-product-form .m-product-form__submit-wishlist .shopify-payment-button__button[type=button], .m-product-form__submit-wishlist .m-product-form .shopify-payment-button__button div[role=button], .m-product-form .shopify-payment-button__button .m-product-form__submit-wishlist div[role=button] {
  width: auto;
  flex: 1;
}
.m-product-form__submit-wishlist .swym-button-bar {
  display: none;
}
.m-product-form__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.m-product-form__error-message-wrapper {
  margin: 1.6rem 0;
}
.m-product-form__error-message {
  display: block;
  color: var(--color-state-error);
  font-size: var(--body-fs-sm);
  line-height: var(--body-lh-sm);
}
.m-product-form .shopify-payment-button__button div[role=button] {
  margin-top: 1rem;
}
.m-product-form .shopify-payment-button__button div[role=button]:not([disabled]):hover {
  background-color: var(--btn-base-color);
}
.m-product-form .shopify-payment-button__button[type=button] {
  margin-top: 1rem;
}
.m-product-form .shopify-payment-button__button[type=button]:not([disabled]):hover {
  background-color: var(--btn-base-color);
}

.m-toggle-columns {
  display: none;
}
@media screen and (min-width: 768px) {
  .m-toggle-columns {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .m-toggle-columns__label {
    font-weight: 700;
  }
  .m-toggle-columns__btn {
    cursor: pointer;
    appearance: none;
    background-color: transparent;
    padding: 0.5em 1em;
    line-height: 1;
    border: none;
  }
  .m-toggle-columns__btn[data-active] {
    color: var(--color-primary);
  }
  .m-toggle-columns__btn:hover {
    background-color: rgba(var(--rgb-secondary-base), 0.05);
  }
}

.m-countdown {
  border: 1px solid var(--color-primary);
  color: var(--colo-primary-body);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  margin-block: 2.5rem;
  margin-inline: auto;
}
.m-countdown p {
  margin-bottom: 0.5em;
}
.m-countdown__inner span {
  font-size: var(--h2-fs);
  line-height: 1;
  text-transform: uppercase;
}
.m-countdown__inner span.counter__unit:last-child {
  display: none;
}
.m-countdown--center {
  text-align: center;
}
.m-countdown__release-date {
  margin-top: 0.5em;
}

.m-coming-soon {
  --font-size: clamp(3rem, calc(1.28rem + 5.38vw), 8rem);
  position: absolute;
  z-index: 999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
  color: var(--color-white);
  text-align: center;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .m-coming-soon {
    --font-size: clamp(4rem, calc(-7.42rem + 11.54vw), 7rem);
  }
}
.m-coming-soon__title, .m-coming-soon__date, .m-coming-soon__inner {
  color: inherit;
  margin: 0;
}
.m-coming-soon__inner {
  font-size: var(--font-size);
  line-height: 1.1;
}

.o-product__media[data-type=columns] .m-product-media__item .m-coming-soon,
.m-product-card .m-coming-soon {
  --font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .o-product__media[data-type=columns] .m-product-media__item .m-coming-soon,
  .m-product-card .m-coming-soon {
    --font-size: 2rem;
  }
}
@media screen and (min-width: 990px) {
  .o-product__media[data-type=columns] .m-product-media__item .m-coming-soon,
  .m-product-card .m-coming-soon {
    --font-size: 3rem;
  }
}

.m-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.o-section__constrict {
  padding-left: var(--layout-site-padding);
  padding-right: var(--layout-site-padding);
  width: 100%;
  max-width: var(--layout-container-width);
  margin-left: auto;
  margin-right: auto;
}
.o-section__constrict--sm {
  max-width: 990px;
}
.o-section--padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .o-section--padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.o-section[data-top=small] {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .o-section[data-top=small] {
    margin-top: 3.5rem;
  }
}
.o-section[data-top=large] {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .o-section[data-top=large] {
    margin-top: 8rem;
  }
}
.o-section[data-bottom=small] {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .o-section[data-bottom=small] {
    margin-bottom: 3.5rem;
  }
}
.o-section[data-bottom=large] {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .o-section[data-bottom=large] {
    margin-bottom: 8rem;
  }
}
.o-section[data-padding=medium] {
  padding-top: rem(45);
  padding-bottom: rem(45);
}
.o-section[data-padding=small] {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-header-sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: transform var(--default-transition-easing) var(--default-transition-timing);
  transform: unset;
}
.section-header-sticky__hide {
  transform: translateY(calc(var(--header-height) * -1));
}

.o-header__hamburger {
  flex: 1;
  display: block;
}
@media screen and (min-width: 1440px) {
  .o-header__hamburger {
    display: none;
  }
}
.o-header__hamburger-btn {
  background: transparent;
  border: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  cursor: pointer;
}
.o-header__logo {
  display: none;
  justify-content: center;
  padding: 0;
  background-color: var(--color-primary-bg);
}
@media screen and (min-width: 1440px) {
  .o-header__logo {
    display: flex;
    padding: 2rem 0 1rem;
  }
}
.o-header__logo-mobile {
  display: flex;
}
@media screen and (min-width: 1440px) {
  .o-header__logo-mobile {
    display: none;
  }
}
.o-header__top {
  height: var(--header-top-height);
  background-color: var(--color-secondary-bg);
  display: none;
}
@media screen and (min-width: 768px) {
  .o-header__top {
    display: block;
  }
}
.o-header__top-inner {
  height: 100%;
  justify-content: flex-end;
}
.o-header__main {
  position: relative;
  height: var(--header-main-height);
  background-color: var(--color-primary-bg);
}
.o-header__main-inner {
  height: 100%;
  gap: 0.5rem;
}
@media screen and (min-width: 990px) {
  .o-header__main-inner {
    gap: 1rem 5rem;
  }
}
.o-header__nav {
  height: 100%;
  display: none;
}
@media screen and (min-width: 1440px) {
  .o-header__nav {
    display: block;
  }
}
.o-header__utilities {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}
.o-header__utilities a {
  color: inherit;
}
.o-header__utility {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.o-header__utility .icon {
  display: block;
  width: 2rem;
  height: 2rem;
}
.o-header__utility .cart-count-bubble {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  color: var(--color-white);
  font-size: var(--copyright-fs);
  line-height: var(--copyright-lh);
  width: 1.6rem;
  height: 1.6rem;
  background: var(--color-primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-mega-nav {
  opacity: 0;
  pointer-events: none;
}

.m-header-sidebar,
.m-cart-notification,
.m-cart-drawer {
  display: none;
}

.o-footer {
  padding-top: 4rem;
  background-color: var(--color-secondary-bg);
}
.o-footer.o-footer--password {
  padding-top: 1.6rem;
}
.o-footer.o-footer--password .o-footer__content-bottom {
  margin-top: 0;
}
.o-footer--align-bottom {
  margin-top: auto;
}
.o-footer__content-top {
  margin: -1.5rem;
}
.o-footer__content-top.grid {
  width: auto;
  min-width: 100%;
}
.o-footer__column {
  padding: 1.5rem;
}
.o-footer__content-bottom {
  position: relative;
  margin: 3rem 0;
  font-size: var(--copyright-fs);
  line-height: var(--copyright-lh);
  color: var(--color-secondary-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .o-footer__content-bottom {
    margin-top: 5rem;
    margin-bottom: 0;
  }
}
.o-footer__content-bottom p {
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 768px) {
  .o-footer__content-bottom p {
    margin-bottom: 1.6rem;
  }
}
.o-footer__content-bottom--left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .o-footer__content-bottom--left {
    margin-right: auto;
    width: auto;
    max-width: 25rem;
  }
}
@media screen and (min-width: 1250px) {
  .o-footer__content-bottom--left {
    max-width: initial;
  }
}
.o-footer__content-bottom--center {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .o-footer__content-bottom--center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
  }
}
.o-footer__content-bottom--right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .o-footer__content-bottom--right {
    margin-left: auto;
    width: auto;
  }
}
.o-footer__made-by span,
.o-footer__made-by a {
  vertical-align: middle;
}
.o-footer__made-by a {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}

.m-footer-column__logo, .m-footer-column__support-logo {
  display: flex;
}
@media screen and (min-width: 768px) {
  .m-footer-column__logo svg, .m-footer-column__support-logo svg {
    width: 100%;
    height: auto;
  }
}

.shopify-challenge__container {
  margin-block: 5rem;
}
@media screen and (min-width: 768px) {
  .shopify-challenge__container {
    margin-block: 8rem;
  }
}
.shopify-challenge__container .g-recaptcha {
  margin-block: 3rem;
}
.shopify-challenge__errors ul {
  padding-left: 0;
}
.shopify-policy__container {
  margin-block: 5rem;
}
@media screen and (min-width: 768px) {
  .shopify-policy__container {
    margin-block: 8rem;
  }
.m-main-nav a[href="/collections/sale"] {
  color: red !important;
 }
}
