/** Shopify CDN: Minification failed

Line 1685:0 All "@import" rules must come first

**/
div.product-long-description {
  line-height: 1.65;
}

/* Page Contents */
.Rte {
  word-break: break-word;
  /* Prevent long words to go outside the container */
  /* Simple, minimum clearfix added to every RTE text to avoid issue with float */
}
.Rte::after {
  content: "";
  display: block;
  clear: both;
}
.Rte iframe {
  max-width: 100%;
}
.Rte img {
  display: block;
  margin: 0 auto;
}
.Rte a:not(.Button) {
  color: var(--link-color);
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(var(--link-color-rgb), 0.6);
  text-decoration-color: rgba(var(--link-color-rgb), 0.6);
  text-underline-position: under;
  transition: color 0.2s ease-in-out,
    -webkit-text-decoration-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, text-decoration-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, text-decoration-color 0.2s ease-in-out,
    -webkit-text-decoration-color 0.2s ease-in-out;
}
.Rte a:not(.Button):hover {
  color: var(--text-color);
  -webkit-text-decoration-color: rgba(var(--text-color-rgb), 0.6);
  text-decoration-color: rgba(var(--text-color-rgb), 0.6);
}
.Rte p:not(:last-child),
.Rte ul:not(:last-child),
.Rte ol:not(:last-child) {
  margin-bottom: 1.6em;
}
.Rte img,
.Rte blockquote,
.Rte .VideoWrapper,
.Rte .Form {
  margin-top: 2.4em;
  margin-bottom: 2.4em;
}
.Rte ul,
.Rte ol {
  /* margin-left: 30px; */
  padding-left: 0;
  list-style-position: outside;
}
.Rte li {
  padding: 5px 0;
}
.Rte h1,
.Rte h2,
.Rte h3,
.Rte h4,
.Rte h5,
.Rte h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  color: var(--heading-color);
  transition: color 0.2s ease-in-out;
}
.features--heading-uppercase .Rte h1,
.features--heading-uppercase .Rte h2,
.features--heading-uppercase .Rte h3,
.features--heading-uppercase .Rte h4,
.features--heading-uppercase .Rte h5,
.features--heading-uppercase .Rte h6 {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.Rte h1 {
  margin: 2.2em 0 0.8em;
}
.Rte h2 {
  margin: 2.2em 0 0.9em;
}
.Rte h3 {
  margin: 2.2em 0 1.2em;
}
.Rte h4 {
  margin: 2.2em 0 1.4em;
}
.Rte h5 {
  margin: 2.2em 0 1.6em;
}
.Rte h6 {
  margin: 2.2em 0 1.8em;
}
.Rte blockquote {
  margin-left: 0;
  padding: 6px 0 6px 40px;
  font-size: 1.15em;
  line-height: 1.75;
  border-left: 3px solid rgba(var(--border-color-rgb), 0.6);
}
.Rte p:last-child,
.Rte blockquote:last-child,
.Rte ul:last-child,
.Rte ol:last-child,
.Rte h1:last-child,
.Rte h2:last-child,
.Rte h3:last-child,
.Rte h4:last-child,
.Rte h5:last-child,
.Rte h6:last-child {
  margin-bottom: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

a {
  color: #000;
  text-decoration: none;
}

.lh-body {
  line-height: 1.8;
}

/**
   * ----------------------------------------------------------------------------
   * Collapsible
   * ----------------------------------------------------------------------------
   */

.Collapsible + .Collapsible {
  border-top: none;
}

.Collapsible--padded {
  padding-left: 24px;
  padding-right: 24px;
}

.Collapsible__Button {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
}

.Collapsible .Collapsible {
  margin-left: 16px;
  border: none;
}

.Collapsible .Collapsible .Collapsible__Button {
  padding: 13px 0;
}

.Collapsible__Button[aria-expanded="true"] + .Collapsible__Inner {
  visibility: visible;
  transition: max-height 0.35s ease-in-out;
  max-height: 600px;
}

.Collapsible__Content {
  padding-bottom: 18px;
}

.Collapsible .Linklist {
  margin-bottom: 4px;
}

.Collapsible .Linklist--bordered {
  margin-top: 16px;
  margin-bottom: 4px;
}

@media screen and (min-width: 641px) {
  /* When this class is applied to a collapsible, it will display as a collapsible on mobile but not on larger screen, where it will
         automatically appear is auto-expanded */
  .Collapsible--autoExpand {
    border: none;
    overflow: visible;
  }

  .Collapsible--autoExpand .Collapsible__Button {
    cursor: default;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 16px;
  }

  .Collapsible--autoExpand .Collapsible__Plus {
    display: none;
  }

  .Collapsible--autoExpand .Collapsible__Inner {
    height: auto;
    visibility: visible;
    overflow: visible;
  }

  .Collapsible--autoExpand .Collapsible__Content {
    padding-bottom: 0;
  }

  .Collapsible--autoExpand .Linklist {
    margin-bottom: 0;
  }

  .Collapsible--autoExpand {
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 1008px) {
  .Collapsible--padded {
    padding-left: 30px;
    padding-right: 30px;
  }

  .Collapsible--large .Collapsible__Button {
    padding: 34px 0;
  }

  .Collapsible--large .Collapsible__Content {
    padding-bottom: 10px;
  }
}

.Collapsible {
  border-bottom: none !important;
}

.cyrill-aside .cyrill-tabs .Collapsible--large .Collapsible__Button {
  padding: 11px 0 !important;
  color: #000;
}

.Product__Tabs .Collapsible__Right.swiper-button-next {
  right: 0px;
}

.cyrill-aside
  .cyrill-tabs
  .Collapsible--large
  .Collapsible__Button
  .Collapsible__Plus {
  right: 0 !important;
  width: 27px;
}

.split-bought-section header {
  margin-bottom: 40px;
}

.split-bought-section .ProductItem__Info {
  display: block;
  margin-top: 1em;
}

.split-bought-section .ProductItem__PriceList {
  text-align: center;
}

section[data-section-type="collection-list"] .SectionHeader {
  margin: 10px 0px;
}

section[data-section-type="collection-list"] .u-h1 {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 2.245;
  letter-spacing: 0em;
  text-transform: unset;
  color: #747474 !important;
}

section[data-section-type="collection-list"] .u-h6 {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 2.245;
  letter-spacing: 0em;
  text-transform: unset;
  color: #747474 !important;
}

.SectionHeader:not(:only-child) {
  margin-bottom: 40px !important;
}

section .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

/*
    This is just a hack to slightly increase the selector specificity. What this does is actually taking into account the line height (1.65)
    and removing the remaining amount in both direction (0.65 / 2 => 0.325) to have more easier and consistent alignments
  */
.SectionHeader__Heading.SectionHeader__Heading,
.SectionHeader__SubHeading.SectionHeader__SubHeading {
  margin-top: -0.325em;
}

.SectionHeader__SubHeading + .SectionHeader__Heading,
.SectionHeader__SubHeading + .SectionHeader__TabList,
.SectionHeader__Description {
  margin-top: 16px;
}

h3.SectionHeader__SubHeading.Heading.u-h6 {
  line-height: 1.8;
}

.SectionHeader__Description {
  max-width: 530px;
}

.SectionHeader__Description a {
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
  text-underline-position: under;
}

.SectionHeader--center .SectionHeader__Description {
  margin-left: auto;
  margin-right: auto;
}

.SectionHeader__ButtonWrapper {
  margin-top: 20px;
}

.SectionHeader__IconHolder {
  margin-top: 30px;
}

/* The SectionFooter is usually use at the end of a given section to redirect somewhere else */
.SectionFooter {
  margin-top: 50px;
  text-align: center;
}

@media screen and (min-width: 641px) {
  .SectionHeader__Heading--emphasize {
    font-size: calc(
      var(--base-text-font-size) - (var(--default-text-font-size) - 22px)
    ) !important;
  }
}
@media screen and (min-width: 1008px) {
  .Section--spacingNormal {
    margin: 80px 0;
  }

  .Section--spacingLarge {
    margin: 120px 0;
  }

  .Section--spacingExtraLarge {
    margin: 145px 0;
  }

  .shopify-section--bordered > .Section--spacingNormal {
    padding: 80px 0;
  }

  .shopify-section--bordered > .Section--spacingLarge {
    padding: 120px 0;
  }

  .shopify-section--bordered > .Section--spacingExtraLarge {
    padding: 145px 0;
  }

  .SectionHeader:not(:only-child) {
    margin-bottom: 70px;
  }

  .SectionHeader__Description {
    margin-top: 24px;
  }

  .SectionHeader__ButtonWrapper {
    margin-top: 30px;
  }

  .SectionFooter {
    margin-top: 80px;
  }
}

.homepage-banner .text-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.125px;
  line-height: 1.245;
  text-transform: uppercase;
}

.homepage-banner .SectionHeader__Heading {
  line-height: 1.475;
}

.homepage-banner *[type="button"] {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
  background-color: transparent;
  border: 1px solid transparent;
  font-size: 1rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.button-quiz {
  padding: 10px 30px;
  border-radius: 0px !important;
  color: #ffffff !important;
  border: solid 1px #000000 !important;
  background-color: #000000 !important;
}

.button-quiz:hover {
  color: #000000 !important;
  border: solid 1px #000000 !important;
  background-color: transparent !important;
}

.homepage-banner .content-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.homepage-banner .text-wrapper {
  position: absolute;
  top: 55%;
  left: 70%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: auto;
  padding: 20px;
  z-index: 999999;
}

.homepage-banner img {
  height: 700px;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}

.homepage-banner .product-text-preheading {
  font-size: 30px !important;
  color: #fff;
  font-weight: 400;
  text-align: left;
  margin-bottom: 25px !important;
}

.homepage-banner .product-text-heading {
  color: #fff;
  font-size: 35px !important;
  font-weight: 600;
  text-align: left;
}

.p-phone {
  display: none !important;
}

.pd-100px {
  padding-top: 100px;
}

.pd-70px {
  padding-top: 70px;
}

.slider-1 {
  margin: 0 auto;
}

.width-100 {
  width: 100% !important;
}

.slider-2 {
  width: 65%;
  margin: 0 auto;
}

.slider-2 .Carousel__Cell {
  /* width: 50% !important; */
}

.slider-2 .Carousel__Cell img {
  width: 90%;
}

.Section .u-h3 {
  font-size: 30px !important;
}

.Section .u-h6 {
  font-size: 16px !important;
  color: #000 !important;
}

.slider-1 .Carousel__Cell .ProductItem__Title {
  font-size: 16px;
}

.slider-1 .Carousel__Cell .variant-type {
  font-size: 14px;
}

.slider-1 .Carousel__Cell .ProductItem__Info .Heading {
  font-size: 16px;
  font-weight: 600;
}

.Section .feature-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65%;
  margin: 0 auto;
}

.Section .feature-section .ProductItem {
  flex: 0 0 65%;
}

.Section .feature-section .text-wrapper {
  flex: 0 0 35%;
  padding-left: 50px;
}

.text-wrapper .product-text-preheading {
  font-weight: 700;
  font-size: 25px !important;
  line-height: 1.25;
}

.text-wrapper .product-text-heading {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

.feature-section img,
.product-layer-section img {
  width: 100%;
}

.product-layer-section .box .text-wrapper {
  padding: 70px 50px;
  border-radius: 10px;
  background-color: #f6f6f6;
}

.product-layer-section {
  display: flex;
  justify-content: center;
  width: 65%;
  margin: 0 auto;
}

.product-layer-section .box-1 {
  padding-right: 20px;
}

.gallery-sec img {
  width: 85%;
}

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

.column-section-2 {
  margin-top: 20px !important;
}

.brand-trust {
  background: #f6f6f6;
  padding: 100px 0;
}

.brand-reward .u-h3 {
  font-size: 25px !important;
  color: #fff;
}

.brand-reward .u-custom {
  font-size: 16px !important;
  color: #fff !important;
}

.brand-reward {
  border-radius: 10px;
  background-repeat: no-repeat;
  padding: 50px 0;
  background: url("https://cdn.shopify.com/s/files/1/0258/7210/5569/files/rewards_web.jpg?v=1640290527");
  background-size: cover;
  background-position: center;
}

.reward-detail {
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 65%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.reward-box h3 {
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 700;
  margin-bottom: 5px;
}

.reward-box p {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.reward-link {
  text-align: center;
  padding: 50px 0 0 0;
}

.r--link {
  color: #fff !important;
  background: #2897ff;
  padding: 10px 60px;
  border-radius: 50px;
  margin-top: 50px;
  font-size: 20px;
}

.brand-reward .SectionHeader:not(:only-child) {
  margin-bottom: 50px !important;
}

.width-100 .ProductItem__ImageWrapper {
  position: relative;
}

.width-100 .ProductItem__ImageWrapper h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  font-weight: 600;
}

.brand-trust-slider img {
  width: 100%;
}

@media (min-width: 769px) {
  .width-100 {
    width: 100%;
  }

  .width-100 .Carousel__Cell {
    width: 100% !important;
  }

  .hide_desktop {
    display: none;
  }
}

@media (max-width: 1024px) {
  .Section .feature-section .text-wrapper {
    padding-left: 25px;
  }

  .product-layer-section .box .text-wrapper {
    padding: 70px 25px;
  }

  .reward-detail {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .width-100 img {
    width: 100%;
  }

  .slider-1,
  .slider-2,
  .Section .feature-section,
  .product-layer-section {
    width: 100%;
  }

  .reward-detail {
    width: 90%;
  }

  h3.SectionHeader__SubHeading.Heading.u-h6 {
    line-height: 2.245;
  }
}

@media (max-width: 640px) {
  .width-100 .ProductItem__ImageWrapper h3 {
    font-size: 16px;
  }

  .product-layer-section .box-2 .text-wrapper {
    margin-top: 20px;
  }

  .pd-0 {
    padding: 0;
  }

  .product-layer-section .box-2 {
    display: flex;
    flex-direction: column-reverse;
  }
  .Section .u-h3 {
    font-size: 25px !important;
  }

  .Section .u-h6 {
    font-size: 15px !important;
    line-height: 2.245;
  }

  .gallery-heading {
    margin-bottom: 10px;
    line-height: 30px;
  }

  .column-section-1 {
    flex-direction: column;
    align-items: inherit !important;
  }

  .column-section-2 {
    flex-direction: column-reverse;
    align-items: inherit !important;
  }

  .Section .feature-section .text-wrapper {
    padding-left: 20px;
    margin-top: 20px;
  }

  .slider-2 .Carousel__Cell {
    width: 100% !important;
  }

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

  .p-phone,
  .product-layer-section {
    display: block !important;
  }
  .homepage-banner img {
    height: auto !important;
  }

  .product-layer-section .box-1 {
    padding-right: 0;
  }

  .homepage-banner .text-wrapper {
    top: 50%;
    left: 50%;
  }

  .homepage-banner .product-text-preheading {
    font-size: 22px !important;
  }

  .homepage-banner .product-text-heading {
    font-size: 25px !important;
    line-height: 1.5;
  }

  .text-wrapper .product-text-heading {
    line-height: 1.5;
    font-size: 16px;
  }

  .text-wrapper .product-text-preheading {
    line-height: 1.2;
  }

  .reward-box {
    margin-bottom: 50px;
  }

  .reward-detail {
    display: block;
    width: 100%;
  }

  .reward-box img {
    margin: 0 auto;
  }

  .reward-box h3,
  .reward-box p,
  .brand-reward .u-h3,
  .brand-reward .u-h6 {
    color: #7f7f7f !important;
  }

  .reward-box h3 {
    font-size: 20px;
    font-weight: 600;
  }

  .brand-reward {
    background: #fff;
  }

  p {
    font-size: 16px;
  }

  .SizeSwatch.mobileSizeSwatch {
    font-size: 14px;
  }

  .btn_container {
    display: flex;
    flex-direction: column;
  }

  .btn_container.direction_row {
    flex-direction: row;
  }

  .mobile_full_width {
    width: 100%;
  }

  .mobile_margin_top_bottom {
    margin: 5px 0;
  }

  .reward-box p {
    font-size: 15px;
    line-height: 1.8;
  }

  .r--link {
    font-family: "Sofia Pro", sans-serif;
    font-size: 12pt;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
}

.slide-center {
  display: flex;
}

a.ProductItem__ImageWrapper > div {
  border-radius: 20px;
  background-color: #f5f2f2;
}

.ProductItem__ImageWrapper > img {
  border-radius: 0px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #1c1c1c !important;
}

.swiper-button-size:after {
  font-size: 20px !important;
}

.swiper-slide {
  text-align: left;
  padding: 1em;
}

.image_container {
  height: 100%;
}

/* Product Wrapper */

.ProductListWrapper {
  padding: 0px 145px;
}

.reward-detail {
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 65%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.reward-box img {
  height: 40px;
  width: 40px;
}

.slider2-mobile-width {
  width: 65%;
}

.margin-top-20 {
  margin-top: 20px;
}

@media screen and (min-width: 1008px) and (max-width: 1139px) {
  .ProductListWrapper {
    padding: 0px 30px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1007px) {
  .ProductListWrapper {
    padding: 0px 24px;
  }
}

@media screen and (max-width: 640px) {
  .ProductListWrapper {
    padding: 0px 12px;
  }

  .reward-detail {
    display: block;
    width: 100%;
  }

  .reward-box {
    margin-bottom: 50px;
  }

  .reward-box img {
    margin: 0 auto;
  }

  .reward-box h3,
  .reward-box p,
  .brand-reward .u-h3,
  .brand-reward .u-h6 {
    color: #7f7f7f !important;
  }

  .swiper-slide {
    text-align: left;
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .reward-detail {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .reward-detail {
    width: 90%;
  }

  .slider2-mobile-width {
    width: 100%;
  }

  .hide_mobile {
    visibility: hidden;
  }

  .slide-center {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

a.ProductItem__ImageWrapper > div {
  border-radius: 20px;
  background-color: #f5f2f2;
}

/* Generic Typography */

.product_title--heading {
  font-size: 20px;
  font-weight: 600;
}

.features--heading-small .u-h1,
.features--heading-small .Rte h1 {
  font-size: var(--heading-u-h1-small);
}

.features--heading-small .u-h2,
.features--heading-small .Rte h2 {
  font-size: 20px;
}

.features--heading-small .u-h3,
.features--heading-small .Rte h3 {
  font-size: 16px;
}

.features--heading-small .u-h4,
.features--heading-small .Rte h4 {
  font-size: 15px;
}

.features--heading-small .u-h5,
.features--heading-small .Rte h5 {
  font-size: 13px;
}

.features--heading-small .u-h6,
.features--heading-small .Rte h6 {
  font-size: var(--heading-u-h6-small);
}

.features--heading-small .u-h7 {
  font-size: 15px;
}

.features--heading-small .u-h8 {
  font-size: 10px;
}

.features--heading-normal .u-h1,
.features--heading-normal .Rte h1 {
  font-size: var(--heading-u-h1-normal);
}

.features--heading-normal .u-h2,
.features--heading-normal .Rte h2 {
  font-size: 20px;
}

.features--heading-normal .u-h3,
.features--heading-normal .Rte h3 {
  font-size: 18px;
}

.features--heading-normal .u-h4,
.features--heading-normal .Rte h4 {
  font-size: 16px;
}

.features--heading-normal .u-h5,
.features--heading-normal .Rte h5 {
  font-size: 14px;
}

.features--heading-normal .u-h6,
.features--heading-normal .Rte h6 {
  font-size: var(--heading-u-h6-normal);
}

.features--heading-normal .u-h7 {
  font-size: 12px;
}

.features--heading-normal .u-h8 {
  font-size: 12px;
}

.features--heading-large .u-h1,
.features--heading-large .Rte h1 {
  font-size: var(--heading-u-h1-large);
}

.features--heading-large .u-h2,
.features--heading-large .Rte h2 {
  font-size: 22px;
}

.features--heading-large .u-h3,
.features--heading-large .Rte h3 {
  font-size: 20px;
}

.features--heading-large .u-h4,
.features--heading-large .Rte h4 {
  font-size: 18px;
}

.features--heading-large .u-h5,
.features--heading-large .Rte h5 {
  font-size: 16px;
}

.features--heading-large .u-h6,
.features--heading-large .Rte h6 {
  font-size: var(--heading-u-h6-large);
}

.features--heading-large .u-h7 {
  font-size: 13px;
}

.features--heading-large .u-h8 {
  font-size: 13px;
}

@media screen and (min-width: 641px) {
  .features--heading-small .u-h1,
  .features--heading-small .Rte h1 {
    font-size: var(--heading-u-h1-small);
  }

  .features--heading-small .u-h2,
  .features--heading-small .Rte h2 {
    font-size: 18px;
  }

  .features--heading-small .u-h3,
  .features--heading-small .Rte h3 {
    font-size: 18px;
  }

  .features--heading-small .u-h4,
  .features--heading-small .Rte h4 {
    font-size: 16px;
  }

  .features--heading-small .u-h5,
  .features--heading-small .Rte h5 {
    font-size: 13px;
  }

  .features--heading-small .u-h6,
  .features--heading-small .Rte h6 {
    font-size: var(--heading-u-h6-small);
  }

  .features--heading-small .u-h7 {
    font-size: 11px;
  }

  .features--heading-small .u-h8 {
    font-size: 10px;
  }

  .features--heading-normal .u-h1,
  .features--heading-normal .Rte h1 {
    font-size: var(--heading-u-h1-normal);
  }

  .features--heading-normal .u-h2,
  .features--heading-normal .Rte h2 {
    font-size: 20px;
  }

  .features--heading-normal .u-h3,
  .features--heading-normal .Rte h3 {
    font-size: 20px;
  }

  .features--heading-normal .u-h4,
  .features--heading-normal .Rte h4 {
    font-size: 17px;
  }

  .features--heading-normal .u-h5,
  .features--heading-normal .Rte h5 {
    font-size: 14px;
  }

  .features--heading-normal .u-h6,
  .features--heading-normal .Rte h6 {
    font-size: var(--heading-u-h6-normal);
  }

  .features--heading-normal .u-h7 {
    font-size: 12px;
  }

  .features--heading-normal .u-h8 {
    font-size: 12px;
  }

  .features--heading-large .u-h1,
  .features--heading-large .Rte h1 {
    font-size: var(--heading-u-h1-large);
  }

  .features--heading-large .u-h2,
  .features--heading-large .Rte h2 {
    font-size: 22px;
  }

  .features--heading-large .u-h3,
  .features--heading-large .Rte h3 {
    font-size: 20px;
  }

  .features--heading-large .u-h4,
  .features--heading-large .Rte h4 {
    font-size: 19px;
  }

  .features--heading-large .u-h5,
  .features--heading-large .Rte h5 {
    font-size: 16px;
  }

  .features--heading-large .u-h6,
  .features--heading-large .Rte h6 {
    font-size: var(--heading-u-h6-large);
  }

  .features--heading-large .u-h7 {
    font-size: 13px;
  }

  .features--heading-large .u-h8 {
    font-size: 13px;
  }

  .desktop_full_height {
    height: 100%;
  }

  /* Product Grid Styles */
  .product-layer-section__grid {
    display: grid;
    grid-template-rows: repeat(5, 20%);
  }

  .grid_row_1_to_4 {
    grid-row-start: 1;
    grid-row-end: 4;
  }

  .grid_row_1_to_3 {
    grid-row-start: 1;
    grid-row-end: 3;
  }

  .grid_row_4_to_6 {
    grid-row-start: 4;
    grid-row-end: 6;
  }

  .grid_row_3_to_6 {
    grid-row-start: 3;
    grid-row-end: 6;
  }

  .desktop_marginTop_0 {
    margin-top: 0;
  }

  .text_div_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.js .features--show-page-transition .PageTransition {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--background);
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: all 0.25s ease;
}

/* ----------------------------------------
          Layout - Breakpoint
          Desktop - None or (min-width: 768.98px)
          Tablet - (min-width: 640.98px) and (max-width: 768)
          Mobile - (max-width: 640px)
          ---------------------------------------- */

/* ----------------------------------------
          Typography
          ---------------------------------------- */
p {
  margin: 0;
}

.product-long-description .text-heading {
  font-size: 24px;
  font-weight: 600;
}

.product-long-description .text-description {
  font-size: 16px;
  font-weight: 400;
}

.text-heading + .text-description {
  margin-top: 1rem;
}

.heading-text-box {
  padding: 40px 20px;
}

.heading-text-box .text-heading {
  font-size: 36px;
  font-weight: 600;
}

/* ----------------------------------------
    [Product Description] Overall Layout
    ---------------------------------------- */

.product-long-description .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

.product-long-description .banner-container {
  position: relative;
}

.intro-banner,
.outro-banner {
  padding-top: 50px;
}

/* ----------------------------------------
    [Product Description] Image Style
    ---------------------------------------- */
.img-fit-cover {
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

@media screen and (max-width: 640px) {
  .img-desktop {
    display: none !important;
  }

  .img-mobile {
    display: block !important;
  }
}

/* ----------------------------------------
    [Product Description] Column Layout
    ---------------------------------------- */
.column-layout {
  max-width: 780px;
  padding: 1rem;
  margin: auto;
}

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

.col-image-box,
.col-image-box {
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
}

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

.col-text-box {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-text-box {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 640.98px) and (max-width: 768px) {
  .col-image-box {
    flex: 0 0 auto;
    width: 60%;
  }

  .col-text-box {
    flex: 0 0 auto;
    width: 40%;
  }
}

@media screen and (max-width: 640px) {
  .col-image-box,
  .col-text-box {
    flex: 0 0 auto;
    width: 100%;
  }

  .col-image-box {
    order: -1;
  }

  .col-text-box {
    order: 0;
    padding-bottom: 50px;
  }

  .col-text-box br {
    display: none;
  }
}

/* ----------------------------------------
    [Product Description] Grid Layout
    ---------------------------------------- */
.grid-layout {
  max-width: 780px;
  padding: 1rem;
  margin: auto;
}

.grid-layout-container {
  display: grid;
  grid-template-columns: repeat(2, 5fr);
  gap: 1rem;
  grid-auto-rows: minmax(120px, auto);
}

.grid-layout-01 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.grid-layout-02 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.grid-layout-03 {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}

.grid-layout-04 {
  grid-column: 2 / 3;
  grid-row: 2 / 5;
}

.grid-text-box {
  display: flex;
  align-items: center;
  width: auto;
  min-height: 320px;
  padding: 20px 50px;
  border-radius: 20px;
  background: #eaeaea;
}

.grid-text-box .text-wrapper {
  max-width: 90%;
}

@media screen and (min-width: 640.98px) and (max-width: 768px) {
  .grid-text-box {
    max-height: 200px;
    min-height: 200px;
    height: 100%;
    padding: 20px;
  }

  .grid-text-box .text-heading {
    font-size: calc(18px + (20 - 18) * ((100vw - 641px) / (768 - 641)));
  }

  .grid-text-box .text-description {
    font-size: 14px;
  }

  .grid-text-box .text-wrapper {
    max-width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .grid-layout-container {
    display: grid;
    grid-template-columns: repeat(1, 5fr);
    gap: 1rem;
    grid-auto-rows: minmax(120px, auto);
  }

  .grid-text-box br {
    display: none;
  }

  .grid-layout-01,
  .grid-layout-02,
  .grid-layout-03,
  .grid-layout-04 {
    grid-column: 1 / 2;
  }

  .grid-layout-01 {
    grid-row: 1 / 2;
  }

  .grid-layout-02 {
    grid-row: 2 / 3;
  }

  .grid-layout-03 {
    grid-row: 4 / 5;
  }

  .grid-layout-04 {
    grid-row: 3 / 4;
  }

  .grid-text-box {
    min-height: 280px;
  }
}

* {
  padding: 0;
  margin: 0;
}

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

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  max-width: 1280px;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

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

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

/* ========================================
  [Universal] Typography
  ======================================== */
@font-face {
  font-family: "Font Awesome 6 Pro";
  src: url("https://cdn.shopify.com/s/files/1/0617/3465/0081/t/15/assets/fa-light-300.woff2");
}

@import url("https://use.typekit.net/gia8xsm.css");

body,
p,
span,
a {
  font-family: proxima-nova, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.text-h1 {
  font-size: 2.5rem;
}

.text-h2 {
  font-size: 2rem;
}

.text-h3 {
  font-size: 1.75rem;
}

.text-h4 {
  font-size: 1.5rem;
}

.text-h5 {
  font-size: 1.25rem;
}

.text-h6 {
  font-size: 1rem;
}

.heading-wrapper h2 + p {
  margin-top: 0.5rem;
}

.text-container h3 + p {
  margin-top: 0.5rem;
}

.text-light {
  color: #ffffff;
}

.text-dark {
  color: #212529;
}

@media screen and (max-width: 991px) {
  .text-light-md {
    color: #ffffff;
  }

  .text-dark-md {
    color: #212529;
  }
}

/* ========================================
  [Universal] Button
  ======================================== */
.button {
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.button-pill {
  --bs-btn-padding-x: 4rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-font-size: 1.5rem;
  color: #ffffff;
  background-color: #2897ff;
  border-radius: 9999px;
}

.button-pill:hover {
  background-color: #0d6efd;
}

/* ========================================
  [Universal] Desktop Layout Style
  ======================================== */
@media screen and (min-width: 992px) {
  .desktop-view {
    display: block;
  }

  .mobile-view {
    display: none;
  }
}

/* ========================================
  [Universal] Mobile Layout Style 
  ======================================== */
@media screen and (max-width: 991.98px) {
  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
  }
}

/* ========================================
  [Long Description] Universal Layout
  ======================================== */
.sq-product-long-description section {
  padding-bottom: 4rem;
}

.sq-product-heading .heading-wrapper {
  text-align: center;
}

.sq-product-heading .heading-wrapperper h2 + p {
  margin-top: 1rem;
}

@media screen and (min-width: 992px) {
  .heading-wrapper {
    padding: 2rem;
  }
}

@media screen and (max-width: 991.98px) {
  .heading-wrapper {
    padding: 2rem;
  }
}

/* ========================================
  [Long Description] Banner
  ======================================== */
.sq-product-banner .banner-container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: auto;
}

.sq-product-banner .img-cover {
  max-width: 1920px;
  width: 100%;
  margin: auto;
  height: 900px;
}

.sq-product-banner .text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1280px;
  width: 100%;
}

.sq-product-banner .text-wrapper .text-container {
  display: flex;
  padding: 1rem;
}

.sq-product-banner .text-wrapper p[class*="text-"] + h3[class*="text-"] {
  margin-top: 1.25rem;
}

@media screen and (min-width: 992px) {
  .sq-product-banner .banner-container {
    height: 900px;
    margin: auto;
  }

  .sq-product-banner .text-wrapper .text-container {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 991.98px) {
  .sq-product-banner .text-wrapper .text-container {
    justify-content: flex-start;
  }
}

/* ========================================
  [Long Description] Carousel
  ======================================== */
.sq-product-carousel .carousel-container {
  --swiper-theme-color: #666666;
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.sq-product-carousel .carousel-wrapper {
  position: relative;
  object-fit: cover;
}

@media screen and (min-width: 1920px) {
  .sq-product-carousel .carousel-container {
    padding: 1rem;
  }
}

/* ========================================
  [Long Description] Features
  ======================================== */
.sq-product-features .features-container {
  --sq-img-radius: 1rem;
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 1rem;
}

.sq-product-features .column-wrapper .col-image img {
  border-radius: var(--sq-img-radius);
}

/* [Column Layout] Desktop Layout Style */
@media (min-width: 992px) {
  .sq-product-features .column-wrapper .row {
    align-items: center;
  }

  .sq-product-features .column-wrapper .row:first-child {
    padding-bottom: 1rem;
  }

  .sq-product-features .column-wrapper .col-image {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .sq-product-features .column-wrapper .col-text {
    flex: 0 0 auto;
    width: 33.33333333%;
    align-items: center;
  }

  .sq-product-features .col-text .text-container {
    padding: 2rem;
  }
}

/* [Column Layout] Mobile Layout Style */
@media (max-width: 991.98px) {
  .sq-product-features .column-wrapper .col-image {
    flex: 0 0 auto;
    width: 100%;
    order: -1;
  }

  .sq-product-features .column-wrapper .col-text {
    flex: 0 0 auto;
    width: 100%;
    order: 6;
  }

  .sq-product-features .col-text .text-container {
    padding: 1rem 1rem 2rem;
  }
}

/* [Long Description] Features 2 (Grid Layout) */
.sq-product-features .grid-wrapper {
  display: grid;
  grid-auto-rows: minmax(10px, auto);
  padding: 1rem;
}

.sq-product-features .grid-wrapper .grid-two,
.sq-product-features .grid-wrapper .grid-three {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #f6f6f6;
}

.sq-product-features .grid-wrapper div[class*="grid-"] img,
.sq-product-features .grid-wrapper .grid-two,
.sq-product-features .grid-wrapper .grid-three {
  border-radius: var(--sq-img-radius);
}

/* [Grid Layout] Desktop Layout Style */
@media (min-width: 992px) {
  .sq-product-features .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sq-product-features .grid-wrapper .text-container {
    padding: 4rem;
  }

  .sq-product-features .grid-wrapper .grid-one {
    grid-column: 1;
    grid-row: 1/3;
  }

  .sq-product-features .grid-wrapper .grid-two {
    grid-column: 2;
    grid-row: 1/2;
  }

  .sq-product-features .grid-wrapper .grid-three {
    grid-column: 1;
    grid-row: 3;
  }

  .sq-product-features .grid-wrapper .grid-four {
    grid-column: 2;
    grid-row: 2/4;
  }

  .sq-product-features .grid-wrapper .grid-two,
  .sq-product-features .grid-wrapper .grid-three {
    height: 400px;
  }
}

/* [Grid Layout] Mobile Layout Style */
@media (max-width: 991.98px) {
  .sq-product-features .grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }

  .sq-product-features .grid-wrapper .grid-one {
    grid-column: 1;
    grid-row: 1;
  }

  .sq-product-features .grid-wrapper .grid-two {
    grid-column: 1;
    grid-row: 2;
  }

  .sq-product-features .grid-wrapper .grid-three {
    grid-column: 1;
    grid-row: 4;
  }

  .sq-product-features .grid-wrapper .grid-four {
    grid-column: 1;
    grid-row: 3;
  }

  .sq-product-features .grid-wrapper .grid-two,
  .sq-product-features .grid-wrapper .grid-three {
    height: 300px;
    padding: 2rem;
  }
}

/* ========================================
  [Long Description] Series Collection
  ======================================== */
.sq-product-series-collection .collection-container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

/* ========================================
  [Outro] Branding
  ======================================== */
.sq-product-outro {
  padding: 4rem 0;
  background-color: #fafafa;
}

.branding-container {
  max-width: 1920px;
  width: 100%;
  margin: auto;
}

.branding-container > div[class^="col-"] {
  padding: 0 0 1.5rem;
}

/* Reward Part */
.branding-container .col-reward {
  width: 100%;
  padding-bottom: 1.5rem;
}

.branding-container .col-reward > .col-container {
  position: relative;
  width: 100%;
  height: auto;
  padding: 4rem 0;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 1rem;
}

.branding-container .benefit-container {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}

.branding-container .benefit-container .col-reward-benefit .col-container {
  max-width: 320px;
  width: 100%;
  height: 100%;
  padding: 1rem;
  margin: auto;
}

.branding-container .benefit-container > div[class^="col-"] .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 160px;
  padding: 1rem;
  margin: auto;
}

.benefit-container .col-reward-benefit .col-container .text-box p + p {
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .col-reward > .col-container {
    background-image: url("https://cdn.shopify.com/s/files/1/0841/3845/files/rewards_web.jpg?v=1638825467");
  }

  .branding-container {
    color: #ffffff;
  }

  .sq-product-branding .col-reward-benefit {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .sq-product-branding .col-story,
  .sq-product-branding .col-effort {
    flex: 0 0 auto;
    width: 50%;
  }

  .branding-container .col-story {
    padding-right: 0.75rem !important;
  }

  .branding-container .col-effort {
    padding-left: 0.75rem !important;
  }
}

@media screen and (max-width: 991.98px) {
  .branding-container .col-reward > .col-container {
    background-color: #ffffff;
  }

  .branding-container {
    color: #878787;
    padding: 0 1rem;
  }
}

/* Story & Effort */
.branding-container .col-story .button,
.branding-container .col-effort .button {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 109/60;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 1rem;
  overflow: hidden;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.branding-container .col-story .button {
  background-image: url("https://cdn.shopify.com/s/files/1/0841/3845/files/our_story_web.jpg?v=1638826110");
}

.branding-container .col-effort .button {
  background-image: url("https://cdn.shopify.com/s/files/1/0841/3845/files/our_effort_web.jpg?v=1638826141");
}

.branding-container .col-story .text-wrapper:hover,
.branding-container .col-effort .text-wrapper:hover {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
}

.branding-container .col-story .button .text-wrapper,
.branding-container .col-effort .button .text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.button-container {
  padding: 2rem;
}
