/** Shopify CDN: Minification failed

Line 3339:4 "widht" is not a known CSS property
Line 3348:0 Unexpected "}"

**/
:root {
  --content-width: 1080px;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-beige: #DBD6CF;
  --color-tan: #D4CDC1;
  --color-dark-tan: #897E6A;
  --color-dark-grey: #38383A;
  --color-light-grey: #E4E4E4;
  --color-lighter-grey: #F1F1F1;
  --color-ultra-light-grey: #F9F9F9;
  --color-mint: #C8E4D7;
  --color-dark-green: #006E3B;
  --font-size-body: 16px;
  --font-size-h1: 40px;
  --font-size-h2: 27px;
}

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

.font-cursive {
  font-family: HolidayFree;
}

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

@font-face {
  font-family: "Lato";
  src: url("Lato-Regular.woff2") format("woff2"), url("Lato-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ModernEra Light */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-Light.woff2") format("woff2"), url("ModernEra-Light.woff") format("woff");
  font-weight: 300;
  /* Light */
  font-style: normal;
}

/* ModernEra Light Italic */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-LightItalic.woff2") format("woff2"), url("ModernEra-LightItalic.woff") format("woff");
  font-weight: 300;
  /* Light */
  font-style: italic;
}

/* ModernEra Regular (Normal) */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-Regular.woff2") format("woff2"), url("ModernEra-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* ModernEra Italic */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-Italic.woff2") format("woff2"), url("ModernEra-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

/* ModernEra Medium */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-Medium.woff2") format("woff2"), url("ModernEra-Medium.woff") format("woff");
  font-weight: 500;
  /* Medium */
  font-style: normal;
}

/* ModernEra Medium Italic */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-MediumItalic.woff2") format("woff2"), url("ModernEra-MediumItalic.woff") format("woff");
  font-weight: 500;
  /* Medium */
  font-style: italic;
}

/* ModernEra Bold */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-Bold.woff2") format("woff2"), url("ModernEra-Bold.woff") format("woff");
  font-weight: 700;
  /* Bold */
  font-style: normal;
}

/* ModernEra Bold Italic */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-BoldItalic.woff2") format("woff2"), url("ModernEra-BoldItalic.woff") format("woff");
  font-weight: 700;
  /* Bold */
  font-style: italic;
}

/* ModernEra Extra Bold */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-ExtraBold.woff2") format("woff2"), url("ModernEra-ExtraBold.woff") format("woff");
  font-weight: 800;
  /* Extra Bold */
  font-style: normal;
}

/* ModernEra Extra Bold Italic */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-ExtraBoldItalic.woff2") format("woff2"), url("ModernEra-ExtraBoldItalic.woff") format("woff");
  font-weight: 800;
  /* Extra Bold */
  font-style: italic;
}

/* ModernEra Black */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-Black.woff2") format("woff2"), url("ModernEra-Black.woff") format("woff");
  font-weight: 900;
  /* Black */
  font-style: normal;
}

/* ModernEra Black Italic */
@font-face {
  font-family: "ModernEra";
  font-display: swap;
  src: url("ModernEra-BlackItalic.woff2") format("woff2"), url("ModernEra-BlackItalic.woff") format("woff");
  font-weight: 900;
  /* Black */
  font-style: italic;
}

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  border-radius: 0;
  display: inline-block;
  cursor: pointer;
  -webkit-appearance: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.flex {
  display: flex;
}

.flex.f-inline {
  display: inline-flex;
}

@media (min-width: 835px) {
  .flex.f-inline--desktop {
    display: inline-flex;
  }
}

@media (max-width: 834px) {
  .flex.f-inline--tablet {
    display: inline-flex;
  }
}

.flex.f-d-column {
  flex-direction: column;
}

@media (min-width: 835px) {
  .flex.f-d-column--desktop {
    flex-direction: column;
  }
}

@media (max-width: 834px) {
  .flex.f-d-column--tablet {
    flex-direction: column;
  }
}

.flex.f-wrap {
  flex-wrap: wrap;
}

@media (min-width: 835px) {
  .flex.f-wrap--desktop {
    flex-wrap: wrap;
  }
}

@media (max-width: 834px) {
  .flex.f-wrap--tablet {
    flex-wrap: wrap;
  }
}

.flex.f-j-start {
  justify-content: flex-start;
}

@media (min-width: 835px) {
  .flex.f-j-start--desktop {
    justify-content: flex-start;
  }
}

@media (max-width: 834px) {
  .flex.f-j-start--tablet {
    justify-content: flex-start;
  }
}

.flex.f-j-center {
  justify-content: center;
}

@media (min-width: 835px) {
  .flex.f-j-center--desktop {
    justify-content: center;
  }
}

@media (max-width: 834px) {
  .flex.f-j-center--tablet {
    justify-content: center;
  }
}

.flex.f-j-end {
  justify-content: flex-end;
}

@media (min-width: 835px) {
  .flex.f-j-end--desktop {
    justify-content: flex-end;
  }
}

@media (max-width: 834px) {
  .flex.f-j-end--tablet {
    justify-content: flex-end;
  }
}

.flex.f-j-between {
  justify-content: space-between;
}

@media (min-width: 835px) {
  .flex.f-j-between--desktop {
    justify-content: space-between;
  }
}

@media (max-width: 834px) {
  .flex.f-j-between--tablet {
    justify-content: space-between;
  }
}

.flex.f-j-around {
  justify-content: space-around;
}

@media (min-width: 835px) {
  .flex.f-j-around--desktop {
    justify-content: space-around;
  }
}

@media (max-width: 834px) {
  .flex.f-j-around--tablet {
    justify-content: space-around;
  }
}

.flex.f-a-start {
  align-items: flex-start;
}

@media (min-width: 835px) {
  .flex.f-a-start--desktop {
    align-items: flex-start;
  }
}

@media (max-width: 834px) {
  .flex.f-a-start--tablet {
    align-items: flex-start;
  }
}

.flex.f-a-center {
  align-items: center;
  margin:10px 0;
}

@media (min-width: 835px) {
  .flex.f-a-center--desktop {
    align-items: center;
  }
}

@media (max-width: 834px) {
  .flex.f-a-center--tablet {
    align-items: center;
  }
}

.flex.f-a-end {
  align-items: flex-end;
}

@media (min-width: 835px) {
  .flex.f-a-end--desktop {
    align-items: flex-end;
  }
}

@media (max-width: 834px) {
  .flex.f-a-end--tablet {
    align-items: flex-end;
  }
}

.flex.f-grow {
  flex-grow: 1;
}

@media (min-width: 835px) {
  .flex.f-grow--desktop {
    flex-grow: 1;
  }
}

@media (max-width: 834px) {
  .flex.f-grow--tablet {
    flex-grow: 1;
  }
}

.flex[class*=f-grid--] {
  flex-wrap: wrap;
}

.flex.f-grid {
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

.flex.f-grid > * {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 835px) {
  .flex.f-grid--desktop {
    margin-left: -16px;
    margin-right: -16px;
  }
  .flex.f-grid--desktop > * {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 834px) {
  .flex.f-grid--tablet {
    margin-left: -16px;
    margin-right: -16px;
  }
  .flex.f-grid--tablet > * {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.flex.f-grid--xxs {
  margin-left: -2px;
  margin-right: -2px;
}

.flex.f-grid--xxs > * {
  padding-left: 2px;
  padding-right: 2px;
}

@media (min-width: 835px) {
  .flex.f-grid--xxs--desktop {
    margin-left: -2px;
    margin-right: -2px;
  }
  .flex.f-grid--xxs--desktop > * {
    padding-left: 2px;
    padding-right: 2px;
  }
}

@media (max-width: 834px) {
  .flex.f-grid--xxs--tablet {
    margin-left: -2px;
    margin-right: -2px;
  }
  .flex.f-grid--xxs--tablet > * {
    padding-left: 2px;
    padding-right: 2px;
  }
}

.flex.f-grid--xs {
  margin-left: -4px;
  margin-right: -4px;
}

.flex.f-grid--xs > * {
  padding-left: 4px;
  padding-right: 4px;
}

@media (min-width: 835px) {
  .flex.f-grid--xs--desktop {
    margin-left: -4px;
    margin-right: -4px;
  }
  .flex.f-grid--xs--desktop > * {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 834px) {
  .flex.f-grid--xs--tablet {
    margin-left: -4px;
    margin-right: -4px;
  }
  .flex.f-grid--xs--tablet > * {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.flex.f-grid--s {
  margin-left: -8px;
  margin-right: -8px;
}

.flex.f-grid--s > * {
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 835px) {
  .flex.f-grid--s--desktop {
    margin-left: -8px;
    margin-right: -8px;
  }
  .flex.f-grid--s--desktop > * {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 834px) {
  .flex.f-grid--s--tablet {
    margin-left: -8px;
    margin-right: -8px;
  }
  .flex.f-grid--s--tablet > * {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.flex.f-grid--m {
  margin-left: -12px;
  margin-right: -12px;
}

.flex.f-grid--m > * {
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 835px) {
  .flex.f-grid--m--desktop {
    margin-left: -12px;
    margin-right: -12px;
  }
  .flex.f-grid--m--desktop > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 834px) {
  .flex.f-grid--m--tablet {
    margin-left: -12px;
    margin-right: -12px;
  }
  .flex.f-grid--m--tablet > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.flex.f-grid--l {
  margin-left: -24px;
  margin-right: -24px;
}

.flex.f-grid--l > * {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 835px) {
  .flex.f-grid--l--desktop {
    margin-left: -24px;
    margin-right: -24px;
  }
  .flex.f-grid--l--desktop > * {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 834px) {
  .flex.f-grid--l--tablet {
    margin-left: -24px;
    margin-right: -24px;
  }
  .flex.f-grid--l--tablet > * {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.flex.f-grid--xl {
  margin-left: -40px;
  margin-right: -40px;
}

.flex.f-grid--xl > * {
  padding-left: 40px;
  padding-right: 40px;
}

@media (min-width: 835px) {
  .flex.f-grid--xl--desktop {
    margin-left: -40px;
    margin-right: -40px;
  }
  .flex.f-grid--xl--desktop > * {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 834px) {
  .flex.f-grid--xl--tablet {
    margin-left: -40px;
    margin-right: -40px;
  }
  .flex.f-grid--xl--tablet > * {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.flex.f-grid--xxl {
  margin-left: -54px;
  margin-right: -54px;
}

.flex.f-grid--xxl > * {
  padding-left: 54px;
  padding-right: 54px;
}

@media (min-width: 835px) {
  .flex.f-grid--xxl--desktop {
    margin-left: -54px;
    margin-right: -54px;
  }
  .flex.f-grid--xxl--desktop > * {
    padding-left: 54px;
    padding-right: 54px;
  }
}

@media (max-width: 834px) {
  .flex.f-grid--xxl--tablet {
    margin-left: -54px;
    margin-right: -54px;
  }
  .flex.f-grid--xxl--tablet > * {
    padding-left: 54px;
    padding-right: 54px;
  }
}

.custom-positioning {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

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

@media (min-width: 835px) {
  .custom-positioning.position--top-left--desktop {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--top-left--tablet {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.custom-positioning.position--top-middle {
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 835px) {
  .custom-positioning.position--top-middle--desktop {
    justify-content: center;
    align-items: flex-start;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--top-middle--tablet {
    justify-content: center;
    align-items: flex-start;
  }
}

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

@media (min-width: 835px) {
  .custom-positioning.position--top-right--desktop {
    justify-content: flex-end;
    align-items: flex-start;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--top-right--tablet {
    justify-content: flex-end;
    align-items: flex-start;
  }
}

.custom-positioning.position--middle-left {
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 835px) {
  .custom-positioning.position--middle-left--desktop {
    justify-content: flex-start;
    align-items: center;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--middle-left--tablet {
    justify-content: flex-start;
    align-items: center;
  }
}

.custom-positioning.position--middle-middle {
  justify-content: center;
  align-items: center;
}

@media (min-width: 835px) {
  .custom-positioning.position--middle-middle--desktop {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--middle-middle--tablet {
    justify-content: center;
    align-items: center;
  }
}

.custom-positioning.position--middle-right {
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 835px) {
  .custom-positioning.position--middle-right--desktop {
    justify-content: flex-end;
    align-items: center;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--middle-right--tablet {
    justify-content: flex-end;
    align-items: center;
  }
}

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

@media (min-width: 835px) {
  .custom-positioning.position--bottom-left--desktop {
    justify-content: flex-start;
    align-items: flex-end;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--bottom-left--tablet {
    justify-content: flex-start;
    align-items: flex-end;
  }
}

.custom-positioning.position--bottom-middle {
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 835px) {
  .custom-positioning.position--bottom-middle--desktop {
    justify-content: center;
    align-items: flex-end;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--bottom-middle--tablet {
    justify-content: center;
    align-items: flex-end;
  }
}

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

@media (min-width: 835px) {
  .custom-positioning.position--bottom-right--desktop {
    justify-content: flex-end;
    align-items: flex-end;
  }
}

@media (max-width: 834px) {
  .custom-positioning.position--bottom-right--tablet {
    justify-content: flex-end;
    align-items: flex-end;
  }
}

.hide {
  display: none;
}

[class*=object-fit--] {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  display: block;
  line-height: 0;
}

[class*=object-fit--] > img, [class*=object-fit--] > video, [class*=object-fit--] picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.object-fit--small {
  padding-bottom: 25%;
}

@media (min-width: 835px) {
  .object-fit--small--desktop {
    padding-bottom: 25%;
  }
}

@media (max-width: 834px) {
  .object-fit--small--tablet {
    padding-bottom: 25%;
  }
}

.object-fit--medium {
  padding-bottom: 50%;
}

@media (min-width: 835px) {
  .object-fit--medium--desktop {
    padding-bottom: 50%;
  }
}

@media (max-width: 834px) {
  .object-fit--medium--tablet {
    padding-bottom: 50%;
  }
}

.object-fit--large {
  padding-bottom: 75%;
}

@media (min-width: 835px) {
  .object-fit--large--desktop {
    padding-bottom: 75%;
  }
}

@media (max-width: 834px) {
  .object-fit--large--tablet {
    padding-bottom: 75%;
  }
}

.object-fit--square {
  padding-bottom: 100%;
}

@media (min-width: 835px) {
  .object-fit--square--desktop {
    padding-bottom: 100%;
  }
}

@media (max-width: 834px) {
  .object-fit--square--tablet {
    padding-bottom: 100%;
  }
}

.object-fit--cover > img, .object-fit--cover > video, .object-fit--cover picture img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

@media (min-width: 835px) {
  .object-fit--cover--desktop > img, .object-fit--cover--desktop > video, .object-fit--cover--desktop picture img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center;";
  }
}

@media (max-width: 834px) {
  .object-fit--cover--tablet > img, .object-fit--cover--tablet > video, .object-fit--cover--tablet picture img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center;";
  }
}

.object-fit--contain > img, .object-fit--contain > video, .object-fit--contain picture img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: contain; object-position: center;";
}

@media (min-width: 835px) {
  .object-fit--contain--desktop > img, .object-fit--contain--desktop > video, .object-fit--contain--desktop picture img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: contain; object-position: center;";
  }
}

@media (max-width: 834px) {
  .object-fit--contain--tablet > img, .object-fit--contain--tablet > video, .object-fit--contain--tablet picture img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: contain; object-position: center;";
  }
}

.object-fit--contain.position--bottom > img, .object-fit--contain.position--bottom > video, .object-fit--contain.position--bottom picture img {
  -o-object-position: bottom;
  object-position: bottom;
  font-family: "object-fit: contain; object-position: bottom;";
}

@media (min-width: 835px) {
  .object-fit--contain.position--bottom--desktop > img, .object-fit--contain.position--bottom--desktop > video, .object-fit--contain.position--bottom--desktop picture img {
    -o-object-position: bottom;
    object-position: bottom;
    font-family: "object-fit: contain; object-position: bottom;";
  }
}

@media (max-width: 834px) {
  .object-fit--contain.position--bottom--tablet > img, .object-fit--contain.position--bottom--tablet > video, .object-fit--contain.position--bottom--tablet picture img {
    -o-object-position: bottom;
    object-position: bottom;
    font-family: "object-fit: contain; object-position: bottom;";
  }
}

.fnt--primary {
  font-family: "ModernEra", Arial, sans-serif;
}

.fnt--secondary {
  font-family: "ModernEra", Arial, sans-serif;
}

@media (max-width: 834px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 1369px) {
  .laptop-down {
    display: none !important;
  }
}

@media (max-width: 1368px) {
  .laptop-up {
    display: none !important;
  }
}

@media (max-width: 1240px) {
  .big-desktop-only {
    display: none;
  }
}

@media (min-width: 1241px) {
  .small-desktop-only {
    display: none;
  }
}

@media (min-width: 835px) {
  .tablet-only {
    display: none !important;
  }
}

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

.keen-slider--wrapper {
  overflow: hidden;
}

.keen-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  flex-wrap: nowrap !important;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.keen-slider li:not(.flex) {
  display: block;
}

.keen-slider:not(.keen-slider--ready) {
  opacity: 0;
  visibility: hidden;
}

.keen-slider.keen--adaptive-height {
  align-items: flex-start;
  transition: height 0.15s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.keen-slider.keen--adaptive-height .keen-slider__slide {
  min-height: 0;
}

.keen-slider__slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}

.keen-slider[data-keen-slider-v] {
  flex-wrap: wrap;
}

.keen-slider[data-keen-slider-v] .keen-slider__slide {
  width: 100%;
}

.keen-slider[data-keen-slider-moves] * {
  pointer-events: none;
}

.keen-slider.fade-slider {
  transition: height 0.25s;
}

.keen-slider.fade-slider .fader-slide {
  transform: none !important;
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  height: auto;
  min-height: 40px;
}

.keen-slider.fade-slider .fader-slide:not(.active) {
  pointer-events: none;
}

.keen-slider .keen-arrow {
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease;
  position: relative;
  background: rgba(249, 249, 249, 0.7);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.keen-slider .keen-arrow[disabled] {
  opacity: 0;
  visibility: hidden;
}

.keen-slider .keen-arrow.keen-arrow-prev {
  left: 16px;
}

.keen-slider .keen-arrow.keen-arrow-next {
  right: 16px;
  transform: rotate(180deg);
}

.keen-slider .keen-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.keen-slider .keen-dots li {
  margin: 0 4px;
}

.keen-slider .keen-dots li button {
  display: block;
  width: 9px;
  height: 9px;
  background: currentColor;
  border-radius: 50%;
  padding: 0;
  transition: opacity 0.35s ease;
  border: 1px solid currentColor;
}

.keen-slider .keen-dots li button:not(.active) {
  background: transparent;
}

.keen-slider .keen-nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 834px) {
  .keen-slider .keen-nav-group {
    justify-content: space-between;
  }
}

.keen-slider .keen-nav-group .keen-dots {
  margin: 0 40px;
  display: inline-flex;
  width: auto;
  position: static;
}

.keen-slider .keen-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

@media (max-width: 834px) {
  .keen-slider .keen-nav {
    padding: 0 16px;
  }
}

.keen-slider .keen-nav li {
  padding: 0;
  line-height: 0;
}

.keen-slider .keen-nav li button[disabled] {
  display: none;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
}

h1, .h1 {
  font-size: 40px;
}

@media (max-width: 834px) {
  h1, .h1 {
    font-size: 34px;
  }
}

h2, .h2 {
  font-size: 27px;
  letter-spacing: 0.68px;
}

@media (max-width: 834px) {
  h2, .h2 {
    font-size: 26px;
  }
}

@media (max-width: 834px) {
  h2, .h2 {
    letter-spacing: 0.52px;
  }
}

h3, .h3 {
  font-size: 26px;
  letter-spacing: 0.52px;
}

@media (max-width: 834px) {
  h3, .h3 {
    font-size: 22px;
  }
}

@media (max-width: 834px) {
  h3, .h3 {
    letter-spacing: 0.88px;
  }
}

h4, .h4 {
  font-size: 18px;
}

@media (max-width: 834px) {
  h4, .h4 {
    font-size: 16px;
  }
}

h5, .h5 {
  font-size: 16px;
}

@media (max-width: 834px) {
  h5, .h5 {
    font-size: 14px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 834px) {
  h6, .h6 {
    font-size: 14px;
  }
}

h1--desktop, .h1--desktop {
  font-size: 40px;
}

@media (max-width: 834px) {
  h1--tablet, .h1--tablet {
    font-size: 34px;
  }
}

h2--desktop, .h2--desktop {
  font-size: 27px;
}

@media (max-width: 834px) {
  h2--tablet, .h2--tablet {
    font-size: 26px;
  }
}

h3--desktop, .h3--desktop {
  font-size: 26px;
}

@media (max-width: 834px) {
  h3--tablet, .h3--tablet {
    font-size: 22px;
  }
}

h4--desktop, .h4--desktop {
  font-size: 18px;
}

@media (max-width: 834px) {
  h4--tablet, .h4--tablet {
    font-size: 16px;
  }
}

h5--desktop, .h5--desktop {
  font-size: 16px;
}

@media (max-width: 834px) {
  h5--tablet, .h5--tablet {
    font-size: 14px;
  }
}

h6--desktop, .h6--desktop {
  font-size: 16px;
}

@media (max-width: 834px) {
  h6--tablet, .h6--tablet {
    font-size: 14px;
  }
}

ol.list, ul.list {
  padding-left: 20px;
}

ol.list {
  list-style: decimal;
}

ul.list {
  list-style: disc;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s ease;
}

.rte {
  font-size: 14px;
  line-height: 22px;
}

.rte > * + * {
  margin-top: 15px;
}

.rte > * + h1, .rte > * + h2, .rte > * + h3, .rte > * + h4, .rte > * + h5, .rte > * + h6 {
  margin-top: 50px;
  margin-bottom: 5px;
}

.rte h3 {
  font-size: 22px;
}

.rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
  font-weight: 500;
}

.rte h1 + h1, .rte h1 + h2, .rte h1 + h3, .rte h1 + h4, .rte h1 + h5, .rte h1 + h6, .rte h2 + h1, .rte h2 + h2, .rte h2 + h3, .rte h2 + h4, .rte h2 + h5, .rte h2 + h6, .rte h3 + h1, .rte h3 + h2, .rte h3 + h3, .rte h3 + h4, .rte h3 + h5, .rte h3 + h6, .rte h4 + h1, .rte h4 + h2, .rte h4 + h3, .rte h4 + h4, .rte h4 + h5, .rte h4 + h6, .rte h5 + h1, .rte h5 + h2, .rte h5 + h3, .rte h5 + h4, .rte h5 + h5, .rte h5 + h6, .rte h6 + h1, .rte h6 + h2, .rte h6 + h3, .rte h6 + h4, .rte h6 + h5, .rte h6 + h6 {
  margin-top: 10px;
}

.rte ol, .rte ul {
  padding-left: 20px;
}

.rte ol li, .rte ul li {
  margin-bottom: 10px;
}

.rte ol {
  list-style: decimal;
}

.rte ul {
  list-style: disc;
}

.rte .image-grid, .rte > img, .rte > p > img {
  margin-top: 50px;
}

.rte img {
  display: inline-block;
}

.rte .image-grid {
  list-style: none;
  padding: 0;
}

@media (max-width: 834px) {
  .rte .image-grid.slick-dotted {
    padding-bottom: 30px;
  }
  .rte .image-grid.slick-dotted .slick-dots {
    justify-content: center;
    padding: 0;
  }
}

.rte .image-grid > li {
  width: 50%;
}

.rte .image-grid > li img {
  width: 100%;
  display: block;
}

.rte table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
}

@media (max-width: 834px) {
  .rte table {
    display: block;
    overflow-x: auto;
  }
}

.rte table th, .rte table td {
  border: 1px solid #000;
  padding: 12px 15px;
}

.rte.rte--xs {
  font-size: 14px;
}

.rte.rte--s {
  font-size: 12px;
}

.rte.rte--l {
  font-size: 16px;
}

.rte.rte--xl {
  font-size: 18px;
}

hr {
  display: block;
  border: 0;
  margin: 0;
  height: 1px;
  width: 100%;
  background-color: currentColor;
  color: inherit;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

.cta {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2.25px;
}

.cta.cta--s {
  font-size: 14px;
}

.arrow-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.arrow-cta span {
  text-decoration: underline;
}

.arrow-cta img, .arrow-cta svg {
  margin-left: 16px;
  transition: all 0.35s ease;
}

.arrow-cta img path, .arrow-cta svg path {
  fill: currentColor;
}

.arrow-cta:hover img, .arrow-cta:hover svg {
  transform: translateX(5px);
}

.underline {
  position: relative;
  overflow: hidden;
}

.underline:after {
  content: "";
  transition: all 0.25s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid currentColor;
}

.font-weight--300 {
  font-weight: 300 !important;
}

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

.font-weight--500 {
  font-weight: 500 !important;
}

.font-weight--600 {
  font-weight: 600 !important;
}

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

.font-weight--800 {
  font-weight: 800 !important;
}

.font-weight--900 {
  font-weight: 900 !important;
}

:root {
  --header-height: 74px;
  --header-top-bar-height: 44px;
  --color-pdp-title: #141414;
  --color-pdp-content: #272727;
}

@media (max-width: 834px) {
  :root {
    --header-height: 60px;
  }
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 22px;
  font-size: 14px;
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: normal;
  color: #272625;
  padding-top: 74px;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 834px) {
  body {
    padding-top: 60px;
    padding-top: var(--header-height);
  }
}

body.no-scroll {
  overflow: hidden;
}

* {
  outline: none;
}

iframe,
video {
  max-width: 100%;
}

input {
  box-shadow: none;
  color: #272625;
}

input::-moz-placeholder {
  line-height: normal !important;
}

input::placeholder {
  line-height: normal !important;
}

input,
textarea,
select {
  border-radius: 0;
}

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

input[type=text]::-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;
}

[data-reveal] {
  visibility: hidden;
}

.shopify-challenge__container {
  margin: 40px auto !important;
}

.shopify-challenge__container form {
  margin-top: 16px;
}

.shopify-challenge__container form > * + * {
  margin-top: 16px !important;
}

.main-content {
  padding-top: 0 !important;
}

@media (max-width: 749px) {
  .main-content {
    padding-top: 0 !important;
  }
}

.main-content .shopify-section:first-child .ffc-section {
  margin-top: 0;
}

.ffc-section {
  margin-top: 56px;
  margin-bottom: 88px;
}

@media (max-width: 834px) {
  .ffc-section {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

.ffc-section.ffc-section--no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.ffc-section.ffc-section--no-margin-top {
  margin-top: 0;
}

.ffc-section.ffc-section--no-margin-bottom {
  margin-bottom: 0;
}

.ffc-section.text-color-scheme--dark .h2,
.ffc-section.text-color-scheme--dark .h3,
.ffc-section.text-color-scheme--dark h2,
.ffc-section.text-color-scheme--dark h3 {
  color: #3f3f3f;
}

.ffc-section.text-color-scheme--dark .rte,
.ffc-section.text-color-scheme--dark .link,
.ffc-section.text-color-scheme--dark p {
  color: #555351;
}

.ffc-section.text-color-scheme--light * {
  color: #fff;
}

.wrapper {
  width: 100%;
  max-width: 1464px;
  padding-left: 60px;
  padding-right: 60px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 834px) {
  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.wrapper.wrapper--no-pad {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 835px) {
  .wrapper.wrapper--no-pad--desktop {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 834px) {
  .wrapper.wrapper--no-pad--tablet {
    padding-left: 0;
    padding-right: 0;
  }
}

.wrapper.wrapper--only-pad {
  max-width: none;
}

@media (min-width: 835px) {
  .wrapper.wrapper--only-pad--desktop {
    max-width: none;
  }
}

@media (max-width: 834px) {
  .wrapper.wrapper--only-pad--tablet {
    max-width: none;
  }
}

.wrapper.wrapper--small {
  max-width: 1240px;
}

.wrapper.wrapper--xs {
  max-width: 1064px;
}

.wrapper.wrapper--s {
  max-width: 1264px;
}

.wrapper.wrapper--l {
  max-width: 1664px;
}

.wrapper.wrapper--xl {
  max-width: 1864px;
}

@media (min-width: 835px) {
  .wrapper--desktop {
    width: 100%;
    max-width: 1464px;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 834px) {
  .wrapper--tablet {
    width: 100%;
    max-width: 1464px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
  }
}

.button, a.button, .button-label, .customer button, .shopify-challenge__button {
  display: inline-block !important;
  background: #272625 !important;
  color: #fffbf6 !important;
  transition: all 0.35s ease !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 16px 48px !important;
  font-family: "ModernEra", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-stretch: normal !important;
  font-style: normal !important;
  line-height: 1.29 !important;
  letter-spacing: 0.56px !important;
  text-transform: uppercase !important;
  cursor: pointer;
}

.button:hover, a.button:hover, .button-label:hover, .customer button:hover, .shopify-challenge__button:hover {
  background: #151515 !important;
  color: #fffbf6 !important;
}

.button.button--primary, a.button.button--primary, .button-label.button--primary, .customer button.button--primary, .shopify-challenge__button.button--primary {
  background: #272625 !important;
  color: #ffffff !important;
}

@media (hover: hover) {
  .button.button--primary:hover, a.button.button--primary:hover, .button-label.button--primary:hover, .customer button.button--primary:hover, .shopify-challenge__button.button--primary:hover {
    background: #dbd6cf !important;
    color: #272625 !important;
  }
}

.button.button--secondary, a.button.button--secondary, .button-label.button--secondary, .customer button.button--secondary, .shopify-challenge__button.button--secondary {
  background: #151515 !important;
  color: #ffffff !important;
}

@media (hover: hover) {
  .button.button--secondary:hover, a.button.button--secondary:hover, .button-label.button--secondary:hover, .customer button.button--secondary:hover, .shopify-challenge__button.button--secondary:hover {
    background: #dbd6cf !important;
    color: #151515 !important;
  }
}

.button.button--third, a.button.button--third, .button-label.button--third, .customer button.button--third, .shopify-challenge__button.button--third {
  background: #dbd6cf !important;
  color: #272625 !important;
}

@media (hover: hover) {
  .button.button--third:hover, a.button.button--third:hover, .button-label.button--third:hover, .customer button.button--third:hover, .shopify-challenge__button.button--third:hover {
    background: #272625 !important;
    color: #ffffff !important;
  }
}

.button.button--sixth, a.button.button--sixth, .button-label.button--sixth, .customer button.button--sixth, .shopify-challenge__button.button--sixth {
  background: #f9f9f9 !important;
  color: #272625 !important;
}

@media (hover: hover) {
  .button.button--sixth:hover, a.button.button--sixth:hover, .button-label.button--sixth:hover, .customer button.button--sixth:hover, .shopify-challenge__button.button--sixth:hover {
    background: #272625 !important;
    color: #ffffff !important;
  }
}

.button.button--outline, a.button.button--outline, .button-label.button--outline, .customer button.button--outline, .shopify-challenge__button.button--outline {
  background: transparent !important;
  color: #151515 !important;
  border: 1px solid #E4E4E4 !important;
}

@media (hover: hover) {
  .button.button--outline:hover, a.button.button--outline:hover, .button-label.button--outline:hover, .customer button.button--outline:hover, .shopify-challenge__button.button--outline:hover {
    background: #151515 !important;
    color: #ffffff !important;
  }
}

.button.button--outline-copper[disabled="true"], a.button.button--copper[disabled="true"], .button-label.button--copper[disabled="true"] .customer button.button--copper[disabled="true"], .shopify-challenge__button.button--outline-copper[disabled="true"] {
  background: white !important;
  color: gray !important;
  border: 1px solid #D4CDC1 !important;
  pointer-events: none;
}

.button.button--outline-copper, a.button.button--copper, .button-label.button--copper, .customer button.button--copper, .shopify-challenge__button.button--outline-copper {
  background: white !important;
  color: black !important;
  border: 1px solid #D4CDC1 !important;
}

.button.button--outline-copper.selected, a.button.button--outline-copper.selected, .button-label.button--outline-copper.selected, .customer button.button--outline-copper.selected, .shopify-challenge__button.button--outline-copper.selected {

  border: 1px solid #151515 !important;
}

@media (hover: hover) {
  .button.button--outline-copper:hover, a.button.button--outline-copper:hover, .button-label.button--outline-copper:hover, .customer button.button--outline-copper:hover, .shopify-challenge__button.button--outline-copper:hover {
    background: #151515 !important;
    color: #ffffff !important;
  }
}

.button.button--small, a.button.button--small, .button-label.button--small, .customer button.button--small, .shopify-challenge__button.button--small {
  font-size: 10px !important;
  line-height: 1.6 !important;
  padding: 8px 16px !important;
}

.button.button--rounded, a.button.button--rounded, .button-label.button--rounded, .customer button.button--rounded, .shopify-challenge__button.button--rounded {
  border-radius: 100px !important;
}

.button.button--loading, a.button.button--loading, .button-label.button--loading, .customer button.button--loading, .shopify-challenge__button.button--loading {
  position: relative;
  color: transparent !important;
}

.button.button--loading:before, a.button.button--loading:before, .button-label.button--loading:before, .customer button.button--loading:before, .shopify-challenge__button.button--loading:before {
  content: "";
  position: absolute;
  left: calc(50% - 6px);
  top: calc(50% - 6px);
  border: 2px solid #f9f9f9;
  border-radius: 50%;
  border-top: 2px solid #151515;
  width: 12px;
  height: 12px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.link {
  font-size: 12px;
  line-height: 1.33;
  text-decoration: unset;
}

.link.link--underlined {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  position: relative;
}

.link.link--underlined:after {
  content: "";
  position: absolute;
  background: currentColor;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -4px;
  background: linear-gradient(to right, #000 25%, transparent 0 75%, #000 0) bottom right/400% 1px no-repeat;
}

.link.link--underlined:hover:after {
  background-position: bottom left;
  transition: 1s;
}

.link.link--border {
  padding: 0 0 6px;
  border-bottom: 1px dashed currentColor;
}

.link.link--border-solid {
  border-bottom: 1px solid currentColor;
}

.link:hover svg {
  right: 0;
}

.link svg {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all ease 0.3s;
}

.link svg path {
  stroke: currentColor;
}

[data-preload] {
  transition: all 0.35s ease;
}

[data-preload]:not([data-preload=loaded]) {
  opacity: 0;
  visibility: hidden;
}

picture {
  position: relative;
}

picture .placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

img[data-lazy][data-srcset]:not([srcset]) {
  visibility: hidden;
}

img[data-lazy]:not(.picture-element-image) {
  transition: opacity 0.25s ease;
  opacity: 0;
}

img[data-lazy]:not(.picture-element-image):not([src]) {
  visibility: hidden;
}

img[data-lazy]:not(.picture-element-image).loaded, img[data-lazy]:not(.picture-element-image).error {
  opacity: 1;
}

img[data-lazy-manual] {
  transition: opacity 0.25s ease, visibility 0.35s ease;
  opacity: 0;
}

img[data-lazy-manual]:not([srcset]) {
  visibility: hidden;
}

img[data-lazy-manual].loaded, img[data-lazy-manual].error {
  opacity: 1;
}

.picture-element-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: var(--aspect-desktop);
}

.picture-element-wrapper.h-full {
  height: 100%;
}

@media (max-width: 834px) {
  .picture-element-wrapper {
    padding-bottom: var(--aspect-tablet);
  }
}

.picture-element-wrapper picture, .picture-element-wrapper .placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.picture-element-wrapper picture img {
  width: 100%;
}

.picture-element-wrapper .placeholder {
  z-index: 1;
  transition: opacity 0.5s ease, filter 0.5s ease;
  pointer-events: none;
}

.picture-element-wrapper picture.loaded + .placeholder, .picture-element-wrapper picture.error + .placeholder {
  opacity: 0;
}

.section-header {
  margin-bottom: 24px;
  text-align: left;
}

@media (max-width: 834px) {
  .section-header {
    margin-bottom: 16px;
    padding: 0;
  }
}

.section-header .h2 {
  margin: 0;
}

.section-header .rte {
  margin: 8px 0 0;
}

.social-icons {
  margin: 0 -12px;
}

.social-icons > * {
  padding: 0 12px;
}

.social-icons li a {
  display: block;
  width: auto;
  height: 20px;
}

.social-icons li a svg,
.social-icons li a .icon {
  height: 100%;
  width: auto;
}

.social-icons li a svg path,
.social-icons li a .icon path {
  stroke: currentColor;
  fill: currentColor;
}

/* form.newsletter .input-group {
  margin: 0;
  position: relative;
  background: currentColor;
} */

/* form.newsletter .input-group input {
  margin: 0;
  padding: 14px 48px 12px 16px;
  border-radius: 0;
  border: none;
}
 */
 form.newsletter .input-group {
    margin: 0;
    position: relative;
    display: flex;
    gap: 15px;
    width: 100%;
}
 form.newsletter .input-group input {
    width: 100%;
    margin: 0;
    padding: 12px 20px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px var(--token-fa55cfa9-c7df-45e3-b8f5-90ab2443b881, rgba(255, 255, 255, 0.2));
}
  form.newsletter .input-group input::placeholder {
      color: #fff;
      font-size: 16px;
  }
form.newsletter .input-group button {
    position: relative;
    padding: 12px 50px 12px 50px;
    font-size: 16px;
    font-family: "DM Sans", "DM Sans Placeholder", sans-serif;
    font-weight: 700;
    letter-spacing: 0em;
    line-height: 1em;
    background: #8ed6bc;
    color: #191919;
}
/* form.newsletter .input-group button {
  position: absolute;
  right: 1px;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #151515;
  padding: 16px;
} */


footer.ffc--footer .footer-contact .wrapper {
    column-gap: 138px;
    display: flex;
    row-gap: 50px;
    flex-wrap: wrap;
}
footer.ffc--footer .footer-contact .info-area {
    margin: 0;
    width: 100%;
    min-width: 318px;
}

footer.ffc--footer .footer-contact .addresses {
    justify-content: space-between;
    gap: 30px;
}

footer.ffc--footer .footer-contact .addresses li {
    min-width: 150px;
}
@media (max-width: 1199px) {
  form.newsletter .input-group button {
    padding: 12px 20px;
    font-size: 14px;
  }
}
/* @media (max-width: 749px) {
  form.newsletter .input-group {
    flex-wrap: wrap;
    justify-content: center;
  }
} */
form.newsletter .input-group button svg {
  width: 16px;
  height: 16px;
}

form.newsletter .input-group button svg path {
  fill: currentColor;
}

form.newsletter .form-message--success {
  background-color: transparent;
  margin: 0;
}

form.newsletter .input-error-message {
  margin: 8px 0 0;
}


.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  top: 30px;
  transition: opacity 0.15s linear, visibility 0.15s linear;
  box-shadow: 0px 18px 18px -18px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.mega-menu.use-extended {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transition: opacity 0.15s linear, visibility 0.15s linear;
  box-shadow: 0px 18px 18px -18px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.mega-menu:not(.open) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mega-menu:not(.open) img:not(.placeholder):not(.loaded) {
  display: none;
}

.mega-menu .mega-menu-inner {
  background: #fff;
  padding-top: 35px;
  padding-bottom: 60px;
  border-top: 1px solid #f1eeea;
}

.mega-menu .megamenu-icon img{
  height: 50px;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area {
  display: flex;
  flex-grow: 1;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area.images-position--left .link-menu {
  order: 2;
  margin-right: 0 !important;
  margin-left: auto !important;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area.images-position--left .link-menu.images-item {
  order: 1;
  margin-right: 24px !important;
  margin-left: 0 !important;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu {
  flex: 1;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.images-item {
  flex: 40% 0 0;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu > h6 {
  font-size: 18px;
  line-height: 1.22;
  text-transform: none;
  margin: 0 0 24px;
  padding: 0 0 16px;
  border-bottom: 1px solid #dbd6cf;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.single-item {
  margin: 0 0 0 24px;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links {
  margin: 0 auto 0 0;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 0;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul.flex-col {
  display: flex;
  flex-direction: column;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a {
  display: block;
  padding: 16px 24px;
  transition: all ease 0.3s;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link {
  display: flex;
  padding: 16px 24px;
  transition: all ease 0.3s;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link.flex-col {
  flex-direction: column;
  padding: 8px 12px;
  width: 144px;
  height: 216px;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link .info-area {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link .image-area {
  width: 90px;
  padding: 0 16px 0 0;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link .image-area.img-square {
  width: 120px;
  height: 120px;
  padding: 0;
  margin-right: 16px;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link .image-area .picture-element-wrapper {
  padding-bottom: 66.7% !important;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area.use-extended .link-menu.has-sub-links ul li a.product-link .info-area {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  padding: 0 5px 0 0;
}

.mega-menu .mega-menu-inner>.wrapper>.menu-area .link-menu.has-sub-links ul li a.product-link .info-area{
  padding: 20px 5px 0 0;
}

.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link .info-area .product-material {
  font-family: "ModernEra", Arial, sans-serif;
  margin: 6px 0 0 8px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-left: 0px;
  column-gap: 5px;
  color: #627787;
}

.dark-mode .mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link .info-area .product-material {
  color: var(--color-white);
}


.mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a.product-link .info-area .subtitle {
  margin: 4px 0 0;
}

.mega-menu .mega-menu-inner > .wrapper .image-block {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease 0.3s;
}

.mega-menu .mega-menu-inner > .wrapper .image-block:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.mega-menu .mega-menu-inner > .wrapper .image-block:hover .image-area picture,
.mega-menu .mega-menu-inner > .wrapper .image-block:hover .image-area img {
  transform: scale(1.05);
}

.mega-menu .mega-menu-inner > .wrapper .image-block .image-area picture,
.mega-menu .mega-menu-inner > .wrapper .image-block .image-area img {
  transition: all ease 0.3s;
}

.mega-menu .mega-menu-inner > .wrapper .image-block .content-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
}

.mega-menu .mega-menu-inner > .wrapper .image-block .content-area .inner {
  width: 100%;
  padding: 7px 0 16px;
  position: relative;
}

.mega-menu .mega-menu-inner > .wrapper .image-block .content-area .inner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top0, rgba(21, 21, 21, 0.7), rgba(21, 21, 21, 0));
}

.mega-menu .mega-menu-inner > .wrapper .image-block .content-area .inner .h5 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.22;
  margin: 0;
  position: relative;
}

.mega-menu .mega-menu-inner > .wrapper .image-block .content-area .inner .link {
  color: #ffffff;
  margin: 8px 0 0;
  position: relative;
}

.mobile-nav {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(39, 38, 37, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-right: 56px;
}

@media (min-width: 1369px) {
  .mobile-nav {
    opacity: 0;
    visibility: hidden;
  }
  .mega-menu.use-extended {
    height: 100vh;
    padding-bottom: 100px;
    overflow: scroll;
  }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.mobile-nav:not(.open) {
  opacity: 0;
  visibility: hidden;
}

.mobile-nav:not(.open) .mobile-nav-inner {
  transform: translateX(-100%);
}

.mobile-nav:not(.open) img:not(.placeholder):not(.loaded) {
  display: none;
}

.mobile-nav .mobile-nav-inner {
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}

.mobile-nav .mobile-nav-inner .close-area {
  padding: 16px 16px;
  border-bottom: 1px solid #f9f9f9;
}

.mobile-nav .mobile-nav-inner .close-area button {
  padding: 16px;
  margin: -16px;
}

.mobile-nav .mobile-nav-inner .close-area button img {
  width: 14px;
}

.mobile-nav .mobile-nav-inner .menu ul li {
  list-style-type: none;
}

.mobile-nav .mobile-nav-inner .menu .nav-move {
  max-height: 100%;
  overflow-y:auto
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-move-inner {
  transition: all 0.35s ease;
  min-height: calc(var(--vh, 1vh) * 100);
  width: 100%;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  background: #f9f9f9;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .search-form {
  padding: 46px 34px 16px 16px;
  position: relative;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .search-form .search-input {
  width: 100%;
  border-radius: 100px;
  background-color: #f9f9f9;
  border: none;
  padding: 8px 16px 8px 40px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .search-form .search-input::-webkit-input-placeholder {
  opacity: 1;
  color: #151515;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .search-form .search-input::-moz-placeholder {
  opacity: 1;
  color: #151515;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .search-form .search-input:-ms-input-placeholder {
  opacity: 1;
  color: #151515;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .search-form .search-input::-ms-input-placeholder {
  opacity: 1;
  color: #151515;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .search-form .search-submit {
  display: flex;
  position: absolute;
  top: 57px;
  left: 32px;
  width: 16px;
  height: 16px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .search-form .search-submit svg {
  width: 100%;
  height: 100%;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .link-menu li {
  border-top: 1px solid #f9f9f9;
  padding: 16px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .link-menu li a {
  color: #151515;
  display: flex;
  justify-content: space-between;
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
  text-transform: uppercase;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .link-menu li a:after {
  content: none;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .link-menu li a span {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
}

body.dark-mode .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .link-menu li a:not(.button) {
  color: var(--color-white);
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-1-nav .link-menu li a svg {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav {
  padding-bottom: 24px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .menu-header, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .menu-header {
  padding: 52px 16px 22px;
  border-bottom: 1px solid #f9f9f9;
  margin-bottom: 24px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .menu-header a, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .menu-header a {
  color: #151515;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .menu-header a:after, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .menu-header a:after {
  width: 18px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .menu-header a span, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .menu-header a span {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .menu-header a svg, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .menu-header a svg {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav li a, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav li a {
  color: #151515;
  font-family: "ModernEra", Arial, sans-serif;
  padding: 0 16px 24px;
  font-size: 16px;
  line-height: 1.5;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav li a svg, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav li a svg {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav li.product a, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav li.product a {
  display: flex;
  padding: 0 16px 16px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav li.product a .image-area, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav li.product a .image-area {
  flex: 125px 0 0;
  margin: 0 13px 0 0;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav li.product a .image-area .picture-element-wrapper, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav li.product a .image-area .picture-element-wrapper {
  border-radius: 8px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav li.product a .info-area .title, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav li.product a .info-area .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav li.product a .info-area .product-material, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav li.product a .info-area .product-material {
  font-family: "ModernEra", Arial, sans-serif;
  margin: 5px 0 0 8px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
  color: #627787;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav li.product a .info-area .subtitle, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav li.product a .info-area .subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.33;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu {
  padding: 16px;
  border-bottom: none;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block {
  width: 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
  transition: all ease 0.3s;
}

.mobile-nav .mobile-menu-image-block{
  position: relative;
  width: 100%;
  height: 400px;
  max-width: 380px;
}
.mobile-nav .mobile-menu-image-block .image-area{
  width: 100%;
  height: 100%;
}
.mobile-nav .mobile-menu-image-block img{
  object-fit: cover;
  height: 100%;
  width: 100%;

}
.mobile-nav .mobile-menu-image-block .text-content{
  position: absolute;
  display: flex;
  padding: 90px 20px 20px 20px;
  flex-direction: column;
  row-gap: 36px;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: white;
  text-align: center;
  z-index: 2;
}

.mobile-nav .mobile-menu-image-block .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 21, 21, 0.3);
  z-index: 1;
}
.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block:hover, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block:hover .image-area picture,
.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block:hover .image-area img, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block:hover .image-area picture,
.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block:hover .image-area img {
  transform: scale(1.05);
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block .image-area .picture-element-wrapper, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block .image-area .picture-element-wrapper {
  border-radius: 8px;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block .image-area picture,
.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block .image-area img, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block .image-area picture,
.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block .image-area img {
  transition: all ease 0.3s;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block .content-area, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block .content-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 0;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block .content-area .inner, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block .content-area .inner {
  width: 100%;
  padding: 7px 0 16px;
  position: relative;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block .content-area .inner .overlay, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block .content-area .inner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top0, rgba(21, 21, 21, 0.7), rgba(21, 21, 21, 0));
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block .content-area .inner .h5, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block .content-area .inner .h5 {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.13;
  margin: 0;
  position: relative;
}

.mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-2-nav .promo-image-menu .image-block .content-area .inner .link, .mobile-nav .mobile-nav-inner .menu .nav-move .nav-level.level-3-nav .promo-image-menu .image-block .content-area .inner .link {
  color: #ffffff;
  margin: 8px 0 0;
  position: relative;
}

.mobile-nav .mobile-nav-inner .bottom-menu {
  background: #f9f9f9;
  flex: 1;
  padding: 24px 16px;
  height: auto;
}

.mobile-nav .mobile-nav-inner .bottom-menu ul li {
  margin-bottom: 16px;
}

.mobile-nav .mobile-nav-inner .bottom-menu ul li a {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f9f9f9;
  transition: background 0.15s, border-color 0.15s;
}

.quantity-selector button img, .quantity-selector button svg {
  width: 15px;
  height: 15px;
}

.quantity-selector button img path, .quantity-selector button svg path {
  stroke: #f9f9f9;
  transition: stroke 0.15s, fill 0.15s;
}

.quantity-selector button:hover {
  background: #272625;
  border-color: #272625;
}

.quantity-selector button:hover svg path {
  stroke: #ffffff;
}

.quantity-selector input {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 0 none;
  border-top: 1px solid #f9f9f9;
  border-bottom: 1px solid #f9f9f9;
}

[data-toggle-group] [data-toggle-item].open [data-toggle-trigger] svg {
  transform: rotate(-180deg);
}

[data-toggle-group] [data-toggle-item] [data-toggle-trigger] {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-toggle-group] [data-toggle-item] [data-toggle-trigger] svg {
  width: 16px;
  height: 16px;
  flex: 16px 0 0;
  transition: all 0.35s ease;
}

[data-toggle-group] [data-toggle-item] [data-toggle-trigger] svg path {
  stroke: currentColor;
}

[data-toggle-group] [data-toggle-item] [data-toggle-elem] {
  transition: max-height 0.25s;
  overflow: hidden;
}

[data-toggle-group] [data-toggle-item] [data-toggle-elem]:not(.open) {
  max-height: 0px;
}

.article-card {
  background-color: #ffffff;
  overflow: visible;
}

.article-card a {
  display: flex;
  flex-direction: column;
}

.article-card a .article-card__image {
  flex: 1;
}

.article-card a .article-card__image .picture-element-wrapper {
  height: 100%;
}

.article-card a .article-card__image .picture-element-wrapper img {
  height: 100%;
}

.article-card a .article-card__info {
  flex: 1;
  padding: 16px 16px 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .article-card a .article-card__info {
    padding: 21px 16px;
  }
}

.article-card a .article-card__info h4 {
  margin-bottom: 8px;
  line-height: 1.22;
  color: #151515;
}

@media (max-width: 480px) {
  .article-card a .article-card__info h4 {
    line-height: 1.13;
  }
}

.article-card a .article-card__info .tags__container {
  font-size: 10px;
  line-height: 22px;
  gap: 8px;
  margin-bottom: 8px;
  color: #272625;
}

.article-card a .article-card__info .rte {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #272625;
  margin-bottom: 16px;
}

.article-card a .article-card__info .read-more {
  font-size: 14px;
  line-height: 22px;
  color: #272625;
  text-decoration: underline;
}

.card {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  transition: all ease 0.3s;
  height: 100%;
}

.card:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.card.no-shadow {
  box-shadow: none;
}

.card.no-shadow:hover {
  box-shadow: none;
}

.card:hover .image-area picture,
.card:hover .image-area img {
  transform: scale(1.05);
}

.card .image-area {
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  position: relative;
}

.card .image-area.image-area--landscape .object-fit--cover {
  padding-bottom: 60%;
}

.card .image-area.image-area--landscape .object-fit--cover .picture-element-wrapper {
  padding-bottom: 60%;
}

.card .image-area.image-area--portrait .object-fit--cover {
  padding-bottom: 130%;
}

.card .image-area.image-area--portrait .object-fit--cover .picture-element-wrapper {
  padding-bottom: 130%;
}

.card .image-area.image-area--80{
  width: 52%;
  margin: 0 auto 32px;
}
.card .image-area.image-area--80 picture,
.card .image-area.image-area--80 img{
  transform: scale(1) !important;
}

@media (max-width: 834px) {
  .card .image-area.image-area--landscape .object-fit--cover, .card .image-area.image-area--portrait .object-fit--cover {
    padding-bottom: 100%;
  }
  .card .image-area.image-area--landscape .object-fit--cover .picture-element-wrapper, .card .image-area.image-area--portrait .object-fit--cover .picture-element-wrapper {
    padding-bottom: 100%;
  }
}

.card .image-area .object-fit--cover {
  padding-bottom: 100%;
  height: 100%;
}

.card .image-area .object-fit--cover .picture-element-wrapper {
  padding-bottom: 100%;
}

.card .image-area .object-fit--cover picture,
.card .image-area .object-fit--cover img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease 0.3s;
}



.card .info-area {
  padding: 16px;
  height: 100%;
}

.card .info-area.text-on-image.old {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  position: absolute;
  bottom: 16px;
  padding-bottom: 0px;
  margin-bottom: 16px;
  padding-right: 48px;
  padding-top: 0;
}

.card .info-area.text-top {

  top: 16px;
}
.card .info-area.text-on-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  padding-bottom: 0px;
  padding-right: 48px;
  padding-top: 0;
}

.card .info-area.text-on-image.text-bottom {
  justify-content: end;
  bottom: 16px;
  margin-bottom: 16px;
}
.card .info-area.card-text-white {
  color: white;

}

.card .info-area.text-on-image.text-center {
  width: 100%;
  height: 50%;
  bottom: 16px;
  padding-bottom: 0px;
  margin-bottom: 16px;
  padding-top: 0;
}

.card .info-area.card-text-white {
  color: white;
}


.card .info-area.card-text-black {
  color: var(--color-dark-grey);
}



.card .info-area .title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.52px;
  margin: 0;
}

body.dark-mode .card .info-area .title {
  color: var(--color-white);
}

@media (max-width: 834px) {
  .card .info-area .title {
    font-size: 22px;
    letter-spacing: 0.88px;
  }
}

.card .info-area .subtitle {
  border-top: 1px solid #dbd6cf;
  margin: 8px 0 0;
  padding: 8px 0 0;
  font-size: 14px;
  line-height: 1.57;
}

@media (max-width: 834px) {
  .card .info-area .subtitle {
    font-size: 14px;
  }
}

.card-product {
  height: 100%;
}

@media (max-width: 834px) {
  .card-product.card-product--mobile-small {
    flex-direction: row;
  }
  .card-product.card-product-alt.card-product--mobile-small {
    flex-direction: column;
  }
  .card-product .button-wrapper, .card-product-alt .button-wrapper{
    align-self: flex-end;
  }
}
  .card-product.card-product--mobile-small .image-area {
    widht: 100px;
    height: 100%;
    margin-right: 16px;
  }
  .card-product.card-product-alt.card-product--mobile-small .image-area {
    width: 100%;
    height: 100%;
    margin: 16px 16px 16px 0;
  }
}

@media (max-width: 834px) and (max-width: 834px) {
  .card-product.card-product--mobile-small .image-area .product-badge {
    display: none;
  }
}

@media (max-width: 834px) {
  .card-product.card-product--mobile-small .image-area .object-fit--cover {
    padding-bottom: 100%;
  }
  .card-product.card-product--mobile-small .image-area .object-fit--cover.hover-image {
    display: none;
  }

  .card-product.card-product--mobile-small .info-area {
    width: calc(100% - 16px);
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .card-product.card-product-alt.card-product--mobile-small .info-area{
    width: 100%;
  }
  .card-product.card-product-alt.card-product--mobile-small .info-area .button-wrapper{
    width: 100%;
  }
  .card-product.card-product--mobile-small .info-area .title {
    font-size: 16px;
    line-height: 1.5;
  }
  .card-product.card-product--mobile-small .info-area .subtitle {
    font-size: 14px;
    line-height: 1.29;
    margin: 4px 0 0;
  }
  .card-product.card-product--mobile-small .info-area .product-prices {
    margin: auto 0 0;
    padding-top: 4px;
    border-top: none;
  }
}

.card-product .picture-element-wrapper {
  padding: 0;
  overflow: visible;
  width: 100%;
}

.card-product .picture-element picture {
  position: static;
}

.card-product .picture-element-wrapper picture img {
  height: 100%;
  object-fit: cover;
}

.card-product .picture-element-wrapper.hover-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.card-product .image-area:hover .hover-image {
  display: block;
}

.card-product .image-area {
  width: 100%;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  height: 212px;
  min-height: 212px;
}

.card-product .image-area > a {
  display: flex;
  height: 100%;
}

@media (min-width: 835px) {
  .card-product .image-area:hover .object-fit--cover.hover-image {
    opacity: 1;
    visibility: visible;
  }
}

.card-product .image-area .product-badge {
  display: flex;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 20;
  padding: 4px 8px;
  background: #ffffff;
}

.card-product .image-area .product-badge span {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  color: #151515;
  text-transform: uppercase;
}

@media (max-width: 834px) {
  .card-product .image-area .product-badge span {
    font-family: 8px;
  }
}

.card-product .image-area .object-fit--cover {
  padding-bottom: 100%;
}

.card-product .image-area .object-fit--cover.hover-image {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s linear, visibility 0.15s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.card-product .image-area .object-fit--cover picture, .card-product .image-area .object-fit--cover img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.card-product .info-area {
  padding: 18px 0 0;
  display: grid;
  flex-direction: column;
  height: 100%;
}

.card-product .info-area .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.card-product .info-area .product-material {
  font-family: "ModernEra", Arial, sans-serif;
  margin: 6px 0 0 8px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-dark-grey);
  letter-spacing: 0.7px;
}

.card-product .info-area .product-benefits {
  font-size: 12px;
  color: var(--color-black);
  margin: 18px 0;
}

.card-product .info-area .subtitle {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-dark-grey);
  line-height: 1;
}

.card-product .info-area .product-prices {
  display: flex;
  align-items: center;
  padding-top: 0;
  margin-top: 4px;
}

.card-product .info-area .product-prices .from {
  font-size: 10px;
  line-height: 1.5;
  margin-right: 4px;
  text-transform: uppercase;
}

.card-product .info-area .product-prices .compare-at-price {
  text-decoration: line-through;
}

.card-product .info-area .product-prices .money {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.29;
}

.card-product-alt .info-area{
  padding: 18px 0 0;
  display: grid;
}
.card-product-alt .info-area .title-wrapper{
  gap: 4px;
}
.card-product-alt .info-area .title-wrapper .text-info-wrapper{
  flex: 1 0 180px;
}
.card-product-alt .info-area .title-wrapper .text-info-wrapper .title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.card-product-alt .info-area .title-wrapper .text-info-wrapper .product-prices{
  padding: 0;
  margin-top: 4px;
  border-top: 0;
  height: 18px;
}
.card-product-alt .info-area .title-wrapper .text-info-wrapper .product-prices .from{
  text-transform: uppercase;
  color:#38383A;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.card-product-alt .info-area .title-wrapper .text-info-wrapper .subtitle{
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}

.card-product-alt .info-area .title-wrapper .image-tag-wrapper{
  flex: 0 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-product-alt .info-area .title-wrapper .image-tag-wrapper .product-material{
  color: #38383A;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.7px;
  margin: 4px 0 0;
}
.card-product-alt .product-features{
  margin-top: 18px;
}
.card-product-alt .product-features ul{
  gap: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.card-product-alt .product-features ul li{

}
.card-product-alt .product-features h5{
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 15px;
}
.card-product-alt .product-features h5:before{
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='11' viewBox='0 0 12 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5.25L4 9.25L11 0.75' stroke='%23897E6A' stroke-width='2'/%3E%3C/svg%3E");
  width: 11px;
  height: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-product .button-wrapper,
.card-product-alt .button-wrapper{
  margin-top: 18px;
  align-self: flex-end;
}
.card-product .button-wrapper .button,
.card-product-alt .button-wrapper .button{
  width: 100%;
  text-align: center;
}

.card-product .button,
.card-product .button.button--sixth {
  border: 2px solid var(--color-light-grey) !important;
  background: var(--color-white) !important;
  padding: 12px 38px !important;
  font-size: 12px !important;
  color: var(--color-dark-grey) !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}


.card-article.card-article--featured .info-area {
  padding: 24px;
}

.card-article.card-article--featured .info-area .title {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.52px;
}

@media (max-width: 834px) {
  .card-article.card-article--featured .info-area .title {
    font-size: 16px;
    line-height: 1.13;
  }
}

.card-article.card-article--featured .info-area .reading-time {
  font-size: 14px;
  line-height: 1.57;
}

@media (max-width: 834px) {
  .card-article.card-article--featured .info-area .reading-time {
    font-size: 10px;
    line-height: 2.2;
  }
}

.card-article.card-article--featured .info-area .tags li {
  font-size: 14px;
  line-height: 1.57;
  margin: 0 0 0 8px;
}

@media (max-width: 834px) {
  .card-article.card-article--featured .info-area .tags li {
    font-size: 10px;
    line-height: 2.2;
  }
}

.card-article.card-article--featured .info-area .excerpt {
  border-top: 1px solid #dbd6cf;
  padding: 16px 0 0;
  margin: 16px 0;
}

@media (max-width: 834px) {
  .card-article.card-article--featured .info-area .excerpt {
    margin: 0;
  }
}

.card-article .info-area .title {
  font-size: 18px;
  line-height: 1.22;
  margin: 0 0 8px;
}

@media (max-width: 834px) {
  .card-article .info-area .title {
    font-size: 16px;
    line-height: 1.13;
  }
}

.card-article .info-area .reading-time {
  font-size: 10px;
  line-height: 2.2;
}

.card-article .info-area .tags li {
  font-size: 10px;
  line-height: 2.2;
  margin: 0 0 0 8px;
}

.card-article .info-area .excerpt {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.57;
}

@media (max-width: 834px) {
  .card-article .info-area .excerpt {
    margin: 0;
  }
}

.card-article .info-area .read-more {
  font-size: 14px;
  line-height: 1.57;
  text-decoration: underline;
  margin: auto 0 0;
}

@media (max-width: 834px) {
  .card-article .info-area .read-more {
    display: none;
  }
}

[data-select-dropdown] [data-select-dropdown-active] {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-select-dropdown] [data-select-dropdown-active].open svg {
  transform: rotate(-90deg);
}

[data-select-dropdown] [data-select-dropdown-active] svg {
  width: 16px;
  height: 16px;
  flex: 16px 0 0;
  transform: rotate(90deg);
  transition: all 0.35s ease;
}

[data-select-dropdown] [data-select-dropdown-active] svg path {
  stroke: currentColor;
}

[data-select-dropdown] [data-select-dropdown-panel] {
  transition: max-height 0.25s;
  overflow: hidden;
}

[data-select-dropdown] [data-select-dropdown-panel]:not(.open) {
  max-height: 0px;
}

.video-popup-trigger.video-popup-trigger--play {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #272625;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 834px) {
  .video-popup-trigger.video-popup-trigger--play {
    left: 50% !important;
    top: 50% !important;
    bottom: auto !important;
  }
}

.video-popup-trigger.video-popup-trigger--play svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.video-popup-trigger.video-popup-trigger--play svg path {
  fill: #ffffff;
}

.video-popup-trigger.button {
  font-family: "ModernEra", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: bold !important;
  line-height: 1.43 !important;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
}

.video-popup-trigger.button span {
  font-family: "ModernEra", Arial, sans-serif;
}

.video-popup {
  top: 0 !important;
  left: 0 !important;
  bottom: auto;
  right: auto;
  width: 100%;
  height: 100%;
  transform: none !important;
  max-width: none;
  padding: 30px;
  z-index: 99999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(32, 34, 33, 0.9);
  position: fixed;
  transition: all 0.35s ease;
}

.video-popup:not(.shown) {
  opacity: 0;
  visibility: hidden;
}

.video-popup .popup-outer {
  width: 100%;
  height: 100%;
  position: absolute;
}

.video-popup .popup-inner {
  height: auto;
  width: 100%;
  max-width: 1464px;
  background: #fff;
  display: flex;
  position: relative;
}

.video-popup .popup-inner .close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: transparent;
  text-align: center;
  width: 18px;
  height: 18px;
  display: block;
  z-index: 1;
  cursor: pointer;
}

.video-popup .popup-inner .close:before, .video-popup .popup-inner .close:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #ffffff;
}

.video-popup .popup-inner .close:before {
  transform: rotate(45deg);
}

.video-popup .popup-inner .close:after {
  transform: rotate(-45deg);
}

.video-popup .popup-inner video {
  width: 100%;
}

.video-popup .popup-inner .embed-wrapper {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 56.3%;
}

.video-popup .popup-inner .embed-wrapper > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.quick-view-popup {
  top: 0 !important;
  left: 0 !important;
  bottom: auto;
  right: auto;
  width: 100%;
  height: 100%;
  transform: none !important;
  max-width: none;
  padding: 16px;
  z-index: 10000000000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  transition: all 0.35s ease;
}

.quick-view-popup:not(.shown) {
  opacity: 0;
  visibility: hidden;
}

.quick-view-popup .quick-view-popup-wrapper {
  height: auto;
  width: 100%;
  max-width: 528px;
  background: #fff;
  position: relative;
}

.quick-view-popup .quick-view-popup-wrapper .quick-view-popup-close {
  position: absolute;
  top: 27px;
  right: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #151515;
  cursor: pointer;
}

@media (max-width: 834px) {
  .quick-view-popup .quick-view-popup-wrapper .quick-view-popup-close {
    width: 15px;
    height: 15px;
    background: #fff;
    top: 16px;
    right: 16px;
  }
}

.quick-view-popup .quick-view-popup-wrapper .quick-view-popup-close svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 834px) {
  .quick-view-popup .quick-view-popup-wrapper .quick-view-popup-close svg {
    width: 9px;
    height: 9px;
  }
  .quick-view-popup .quick-view-popup-wrapper .quick-view-popup-close svg path {
    fill: #151515;
  }
}

.quick-view-inner,
.quick-view-popup .quick-view-popup-inner {
  width: 100%;
  padding: 40px 24px 0;
}

.quick-view-inner [data-product],
.quick-view-popup .quick-view-popup-inner [data-product] {
  width: 100%;
}

.quick-view-inner [data-product] .product-info-area,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area {
  width: 100%;
}

.quick-view-inner [data-product] .product-info-area .title-wrapper,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .title-wrapper {
  margin: 0 0 8px;
}

.quick-view-inner [data-product] .product-info-area .title-wrapper .product-title,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .title-wrapper .product-title {
  font-size: 26px;
  line-height: 31px;
  color: #141414;
}

.quick-view-inner [data-product] .product-info-area .product-description,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .product-description {
  margin: 0 0 8px;
}

.quick-view-inner [data-product] .product-info-area .product-prices,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .product-prices {
  margin: 0 0 24px;
  color: #141414;
}

.quick-view-inner [data-product] .product-info-area .product-featured-image,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .product-featured-image {
  margin: 0 0 24px;
}

.quick-view-inner [data-product] .product-info-area .product-form,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .product-form {
  margin: 0;
}

.quick-view-inner [data-product] .product-info-area .product-form .product-options,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .product-form .product-options {
  margin: 0 0 56px;
}

.quick-view-inner [data-product] .product-info-area .product-form .product-atc,
.quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .product-form .product-atc {
  width: calc(100% + 48px);
  margin: -24px;
}

.yotpo .yotpo-bottomline .yotpo-icon-star,
.yotpo .yotpo-bottomline .yotpo-icon-half-star,
.yotpo .yotpo-bottomline .yotpo-icon-empty-star {
  color: #122958 !important;
}

.yotpo.bottomLine .yotpo-bottomline .yotpo-icon-star,
.yotpo.bottomLine .yotpo-bottomline .yotpo-icon-half-star,
.yotpo.bottomLine .yotpo-bottomline .yotpo-icon-empty-star,
.yotpo.bottomline .yotpo-bottomline .yotpo-icon-star,
.yotpo.bottomline .yotpo-bottomline .yotpo-icon-half-star,
.yotpo.bottomline .yotpo-bottomline .yotpo-icon-empty-star,
.yotpo .yotpo-modal-bottom-line .yotpo-bottomline .yotpo-icon-star,
.yotpo .yotpo-modal-bottom-line .yotpo-bottomline .yotpo-icon-half-star,
.yotpo .yotpo-modal-bottom-line .yotpo-bottomline .yotpo-icon-empty-star {
  font-size: 16px !important;
}

body.dark-mode {
  background: #0d0d0d;
  color: #ffffff;
  --color-pdp-title: #ffffff;
  --color-pdp-content: #ffffff;
}

body.dark-mode .dark-mode-toggle {
  background: #ffffff;
  color: #151515;
}

body.dark-mode .dark-mode-toggle svg path {
  fill: #151515;
}

body.dark-mode .card-product .info-area .subtitle {
  color: #dad9d8;
}

body.dark-mode .ffc--header {
  background: #151515;
}

body.dark-mode .ffc--header .top-area {
  background: #181818;
}

body.dark-mode .ffc--header .header-inner {
  background: #151515;
}

body.dark-mode .ffc--header .header-inner .middle-area img {
  filter: invert(1);
}

@media (min-width: 835px) {
  body.dark-mode .ffc--header .header-inner .left-nav-area > ul > li > a.nav-item:hover, body.dark-mode .ffc--header .header-inner .left-nav-area > ul > li > a.nav-item.dropdown-open,
  body.dark-mode .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item:hover,
  body.dark-mode .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item.dropdown-open {
    border-bottom: 1px solid #ffffff;
  }
}

body.dark-mode .ffc--header .mega-menu .mega-menu-inner {
  background: #151515;
}

body.dark-mode .ffc--header .mega-menu .mega-menu-inner > .wrapper > .menu-area .link-menu.has-sub-links ul li a:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  background-color: #272625;
}

body.dark-mode .header-search svg path {
  fill: var(--color-white);
}

body.dark-mode .header-search svg circle {
  stroke: var(--color-white);
}

body.dark-mode .nav-item--account svg path {
  fill: var(--color-white);
}

body.dark-mode .cart-trigger svg rect,
body.dark-mode .cart-trigger svg path {
  stroke: var(--color-white);
}

body.dark-mode .ffc-section {
  background: #0d0d0d !important;
  color: #ffffff !important;
}

body.dark-mode .ffc-section .section-header,
body.dark-mode .ffc-section .content-area,
body.dark-mode .ffc-section p,
body.dark-mode .ffc-section .product-material,
body.dark-mode .ffc-section span {
  color: #ffffff !important;
}

body.dark-mode .ffc-section .section-header .rte,
body.dark-mode .ffc-section .content-area .rte {
  color: #ffffff !important;
}

body.dark-mode .ffc-section.text-color-scheme--dark .h2,
body.dark-mode .ffc-section.text-color-scheme--dark .h3,
body.dark-mode .ffc-section.text-color-scheme--dark h2,
body.dark-mode .ffc-section.text-color-scheme--dark h3,
body.dark-mode .ffc-section.text-color-scheme--dark .rte,
body.dark-mode .ffc-section.text-color-scheme--dark .link,
body.dark-mode .ffc-section.text-color-scheme--dark p,
body.dark-mode .ffc-section.text-color-scheme--dark .content-area .store-links li a,
body.dark-mode .ffc-section.text-color-scheme--dark .keen-slider .keen-slider__slide .article-card .info-area .date {
  color: #fff;
}

body.dark-mode .ffc-section.text-color-scheme--light * {
  color: #fff;
}

body.dark-mode .ffc-section.landing-tabs.text-color-scheme--dark .tab-trigger {
  color: #fff !important;
}

body.dark-mode .landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .info-area {
  background: #1D1D1D !important;
  padding: 16px;
}

body.dark-mode .landing-bar {
  background: #1D1D1D !important;
  color: #fff !important;
}

body.dark-mode .content-area {
  background: #0d0d0d !important;
}

body.dark-mode .mega-menu .image-block .content-area {
  background: transparent !important;
}

body.dark-mode .hero-section .content-area .button-wrapper a.button {
  background-color: #151515 !important;
  color: #ffffff !important;
}

body.dark-mode .benefits {
  background: #131313 !important;
  color: #ffffff !important;
}

body.dark-mode .benefits .benefits-item .content-area .subtitle {
  color: #dad9d8;
}

body.dark-mode .benefits .icon {
  background: var(--color-white) !important;
}

body.dark-mode .benefits .icon img {
  filter: invert(1);
}

body.dark-mode .logos .logo img {
  filter: invert(1);
}

body.dark-mode .collection-info-grid .content-image-area.has-products {
  background: #131313 !important;
  color: #ffffff !important;
}

body.dark-mode .collection-info-grid .content-image-area.has-products svg {
  filter: invert(1);
}

body.dark-mode .ffc-text-icons .bg-wrapper {
  background: #0d0d0d !important;
  color: #ffffff !important;
}

body.dark-mode .ffc-text-icons .content-area .rte {
  color: #dad9d8 !important;
}

body.dark-mode .ffc-text-icons .button {
  background: #ffffff !important;
  color: #151515 !important;
}

body.dark-mode .ffc-text-icons .button:hover {
  background: #f9f9f9 !important;
}

body.dark-mode .ffc-text-icons .content-area .icons-list .icons-item .image-area {
  background: transparent;
}

body.dark-mode .ffc-text-icons .content-area .icons-list .icons-item .image-area img {
  filter: invert(1);
}

body.dark-mode .ffc--footer .section-links {
  background: #181818 !important;
  color: #ffffff !important;
}

body.dark-mode .ffc--footer .footer-contact,
body.dark-mode .ffc--footer .footer-main,
body.dark-mode .ffc--footer .footer-bottom {
  background: #1D1D1D;
}

body.dark-mode .collection .section-header .linked-collections ul li a {
  background: #272625 !important;
}

body.dark-mode .yotpo .yotpo-bottomline .yotpo-icon-star,
body.dark-mode .yotpo .yotpo-bottomline .yotpo-icon-half-star,
body.dark-mode .yotpo .yotpo-bottomline .yotpo-icon-empty-star {
  color: #ffffff !important;
}

body.dark-mode .product-page .product--left-area .product-benefits {
  background: #272625;
}

@media (max-width: 834px) {
  body.dark-mode .product-page .product--left-area .product-benefits ul li:before {
    background: #f9f9f9;
  }
}

body.dark-mode .product-page .product--left-area .product-benefits ul li:nth-child(2n) {
  border-left: 1px solid #f9f9f9;
}

body.dark-mode .product-page .product-info-area .product-review-stars .yotpo a {
  color: #ffffff !important;
}

body.dark-mode .product-page .product-info-area .product-form .product-options .product-option ul li label {
  background: #272625;
  border: 1px solid #272625;
}

body.dark-mode .product-page .product-info-area .product-form .product-atc {
  background: #272625 !important;
}

body.dark-mode .product-page .product-info-area .product-quiz {
  background: #272625;
}

body.dark-mode .product-page .product-info-area .product-quiz .product-quiz-title {
  color: #ffffff;
}

body.dark-mode .product-page .product-info-area .product-quiz .product-quiz-title svg path {
  stroke: #fff;
}

body.dark-mode .product-page .product-info-area .product-quiz .link {
  color: #ffffff;
}

body.dark-mode .product-page .product-info-area .product-contact-cta img {
  filter: invert(1);
}

body.dark-mode .product-page .product-info-area .product-contact-cta a:hover {
  background: #272625;
}

body.dark-mode .product-page .product-info-area .store-benefits .benefits-item .content-area .title {
  color: #ffffff;
}

body.dark-mode .ffc-product-navigation .inner {
  background: #272625 !important;
  color: #ffffff !important;
}

body.dark-mode .ffc-product-navigation nav ul li a.active {
  border-bottom: 2px solid #ffffff;
}

@media (min-width: 835px) {
  body.dark-mode .ffc-product-navigation nav ul li a:hover {
    border-bottom: 2px solid #ffffff;
  }
}

body.dark-mode .ffc-product-text-columns .text-columns-area .text-column {
  background: #272625;
}

body.dark-mode .ffc-product-faq .faq-content .faq-item .faq-item-content {
  color: #ffffff;
}

body.dark-mode .retail-stores .stores-list .store-card .content-area {
  background: #272625;
}

body.dark-mode .retail-stores .stores-list .store-card .content-area svg {
  filter: invert(1);
}

body.dark-mode .ffc-landing-content-1 .content-area {
  background: #272625 !important;
}

body.dark-mode .ffc-landing-content-5 .bg-layer {
  background: #1D1D1D !important;
}

body.dark-mode .ffc-landing-content-5 .content-area {
  background: #272625 !important;
}

body.dark-mode .ffc-landing-content-5 .content-area .h2 img {
  filter: invert(1);
}

body.dark-mode .retail-store .image-content {
  background: #272625 !important;
}

body.dark-mode .retail-store .about-contact .inner {
  background: #1D1D1D !important;
}

body.dark-mode .retail-store .about-contact .inner .h3 {
  color: #ffffff !important;
}

body.dark-mode .retail-store .about-contact .inner svg {
  filter: invert(1);
}

body.dark-mode .retail-manager-section .content-area .signature {
  color: #ffffff !important;
}

body.dark-mode .side-cart .inner {
  background: #151515;
  color: #ffffff;
}

body.dark-mode .side-cart .inner > header h2,
body.dark-mode .side-cart .inner .empty-cart .empty-cart-text,
body.dark-mode .side-cart .inner .main-items .main-items-scroll .cart-item--rivets,
body.dark-mode .side-cart .inner .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .cart-item-product-title,
body.dark-mode .side-cart .inner .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .cart-item-product-price {
  color: #ffffff;
}

body.dark-mode .side-cart .side-cart-benefits {
  background: #272625;
}

body.dark-mode .account-page {
  color: #ffffff;
}

body.dark-mode .quick-view-popup .quick-view-popup-wrapper {
  background: #151515;
}

body.dark-mode .quick-view-inner [data-product] .product-info-area .title-wrapper .product-title,
body.dark-mode .quick-view-popup .quick-view-popup-inner [data-product] .product-info-area .title-wrapper .product-title {
  color: #ffffff;
}

body.dark-mode .faq-section .faq-aside-desktop .faq-nav {
  background-color: #151515;
}

body.dark-mode .faq-section .faq-content .faq-category .faq-category-title img {
  filter: invert(1);
}

body.dark-mode .founder-section .content-area .signature {
  color: #ffffff;
}

body.dark-mode .contact-page-header {
  color: #ffffff !important;
  background-color: #151515 !important;
}

body.dark-mode .contact-page-header .content-area .callouts li {
  background-color: #272625;
}

body.dark-mode .contact-page-header .content-area .callouts li img {
  filter: invert(1);
}

body.dark-mode .contact-page-form .sidebar-area .stores-area {
  background-color: #272625;
}

body.dark-mode .contact-page-form .sidebar-area .stores-area img {
  filter: invert(1);
}

body.dark-mode .contact-page-form .sidebar-area .stores-area .stores-list li .rte {
  color: #ffffff;
}

body.dark-mode .button.button--outline,
body.dark-mode a.button.button--outline,
body.dark-mode .button-label.button--outline,
body.dark-mode .customer button.button--outline,
body.dark-mode .shopify-challenge__button.button--outline {
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}

body.dark-mode .social-icons li a svg,
body.dark-mode .social-icons li a .icon {
  filter: invert(1);
}

body.dark-mode .social-icons li a svg path,
body.dark-mode .social-icons li a .icon path {
  stroke: unset;
}

@media (max-width: 834px) {
  body.dark-mode .contact-page-header .content-area .content,
  body.dark-mode .contact-page-header .content-area {
    background-color: #151515 !important;
  }
  body.dark-mode .ffc--footer .footer-contact .info-area .h2,
  body.dark-mode .ffc--footer .footer-contact * {
    color: #ffffff;
  }
}

.template-product.dark-mode .featured-products .h2,
.template-product.dark-mode .featured-products .title {
  color: #ffffff;
}

.dark-mode-toggle {
  position: fixed;
  left: 16px;
  bottom: 75px;
  background: #151515;
  color: #ffffff;
  padding: 9px 8px 9px 9px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  transition: all ease 0.3s;
  cursor: pointer;
  z-index: 3;
}

.dark-mode-toggle svg {
  height: 14px;
  width: 14px;
  margin-right: 9px;
}

.dark-mode-toggle span {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4px;
  font-family: "ModernEra", Arial, sans-serif;
  text-transform: uppercase;
}

.general-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
  z-index: 99999999;
}

@media (max-width: 834px) {
  .general-popup {
    padding: var(--header-height) 8px;
  }
}

.general-popup:not(.shown) {
  opacity: 0;
  visibility: hidden;
}

.general-popup:not(.shown) img:not(.placeholder):not(.loaded) {
  display: none;
}

@media (min-width: 835px) {
  .general-popup:not(.shown) {
    pointer-events: none;
  }
}

.general-popup > .inner {
  width: 100%;
  max-width: 1050px;
  background: #fff;
  max-height: calc(10000vh - 60px);
  max-height: calc(var(--vh) * 100 - 60px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  overscroll-behavior-y: contain;
}

.general-popup > .inner .bg-image-area, .general-popup > .inner .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.general-popup > .inner .bg-image-area .bg-image, .general-popup > .inner .bg-image .bg-image {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.general-popup > .inner .content-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px;
}

@media (max-width: 834px) {
  .general-popup > .inner .content-inner {
    padding: 16px;
  }
}

.general-popup > .inner .content-inner > .rte {
  margin-top: 20px;
}

.general-popup > .inner::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}

.general-popup > .inner::-webkit-scrollbar-thumb {
  background-color: rgba(222, 222, 222, 0.5);
  border-radius: 0;
}

.general-popup > .inner::-webkit-scrollbar-track {
  margin: 0;
}

.general-popup > .inner .close {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 16px;
  z-index: 9999;
}

@media (max-width: 834px) {
  .general-popup > .inner .close {
    top: 0;
    right: 0;
  }
}

.general-popup > .inner .close img, .general-popup > .inner .close svg {
  width: 12px;
  height: 12px;
}

.general-popup > .inner .close img path, .general-popup > .inner .close svg path {
  fill: currentColor;
}

.pagination > .flex {
  gap: 10px;
}

.pagination .arrow img {
  margin: 0 0 2px;
}

.pagination .arrow.prev {
  transform: rotate(180deg);
}

.pagination .arrow.prev img {
  margin: 2px 0 0;
}

.pagination .arrow.disabled {
  opacity: 0.2;
}

.side-cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 10000000000;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  color: #151515;
  --cart-padding: 40px;
  --cart-border-color: #f9f9f9;
}

@media (max-width: 834px) {
  .side-cart {
    --cart-padding: 20px;
  }
  .header--shown .side-cart {
    top: calc(var(--header-height) - var(--header-top-bar-height));
    height: calc(100% - var(--header-height) - var(--header-top-bar-height));
  }
  .header--not-shown .side-cart {
    top: 0;
    height: 100%;
  }
  .header--shown-full .side-cart {
    top: var(--header-height);
    height: calc(100% - var(--header-height));
  }
}

.side-cart:not(.rendered) .main-items, .side-cart:not(.rendered) .empty-cart, .side-cart:not(.rendered) footer {
  opacity: 0;
}

.side-cart.shown {
  opacity: 1;
  visibility: visible;
}

.side-cart.shown .inner {
  transform: translateX(0);
}

.side-cart:not(.shown) img:not(.placeholder):not(.loaded) {
  display: none;
}

.side-cart.loading .has-loader:before, .side-cart.loading .has-loader:after {
  opacity: 1;
  visibility: visible;
}

.side-cart.sidecart--empty .inner > header .close {
  background: #f9f9f9;
}

@media (max-width: 834px) {
  .side-cart.sidecart--empty .inner > header .close {
    width: 15px;
    height: 15px;
    background: #fff;
  }
}

.side-cart.sidecart--empty .inner > header .close svg path {
  fill: #151515;
}

@media (max-width: 834px) {
  .side-cart.sidecart--empty .side-cart-benefits {
    display: none;
  }
}

.side-cart .error-popup {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.side-cart .error-popup.shown {
  opacity: 1;
  visibility: visible;
}

.side-cart .error-popup .popup-inner {
  background: #fff;
  padding: 30px;
  text-align: center;
}

.side-cart .error-popup .popup-inner .btn {
  margin-top: 20px;
}

.side-cart .empty-cart {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

@media (max-width: 834px) {
  .side-cart .empty-cart:before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: #151515;
  }
}

.side-cart .empty-cart .empty-cart-text {
  font-size: 16px;
  line-height: 1.63;
  margin: 0 0 24px;
  color: #000000;
}

.side-cart .side-cart-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F9F9;
  padding: 8px 24px;
}

.side-cart .side-cart-benefits .benefits-item {
  width: 50%;
}

@media (max-width: 480px) {
  .side-cart .side-cart-benefits .benefits-item {
    width: 100%;
    justify-content: center;
  }
  .side-cart .side-cart-benefits .benefits-item:last-child {
    display: none;
  }
}

.side-cart .side-cart-benefits .benefits-item .image-area {
  margin: 0 16px 0 0;
}

.side-cart .side-cart-benefits .benefits-item .image-area .icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.side-cart .side-cart-benefits .benefits-item .image-area .icon img,
.side-cart .side-cart-benefits .benefits-item .image-area .icon svg {
  width: 20px;
  height: 20px;
}

.side-cart .side-cart-benefits .benefits-item .content-area .benefits-title {
  font-size: 12px;
  line-height: 20px;
  margin: 0;
}

@media (max-width: 834px) {
  .side-cart .side-cart-benefits .benefits-item .content-area .benefits-title {
    font-size: 18px;
  }
}

.side-cart .side-cart-benefits .benefits-item .content-area .benefits-subtitle {
  font-size: 10px;
  line-height: 18px;
  margin: 2px 0 0;
}

.side-cart .has-loader {
  position: relative;
}

.side-cart .has-loader.loading:before, .side-cart .has-loader.loading:after {
  opacity: 1;
  visibility: visible;
}

.side-cart .has-loader:before, .side-cart .has-loader:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.side-cart .has-loader:before {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 11;
  left: 0;
  top: 0;
}

.side-cart .has-loader:after {
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyMCAyMCc+PHBhdGggZD0nTTIwIDEwYzAgNS41MjMtNC40NzcgMTAtMTAgMTBTMCAxNS41MjMgMCAxMCA0LjQ3NyAwIDEwIDB2MmMtNC40MTggMC04IDMuNTgyLTggOHMzLjU4MiA4IDggOCA4LTMuNTgyIDgtOGgyeicgZmlsbD0nIzAwMCc+PC9wYXRoPjwvc3ZnPg==");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  animation: rotate 0.5s linear infinite;
  z-index: 12;
  pointer-events: none;
}

.side-cart .inner {
  position: relative;
  width: 480px;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  overscroll-behavior-y: contain;
}

@media (max-width: 480px) {
  .side-cart .inner {
    width: 100%;
  }
}

.side-cart .inner > header {
  position: relative;
  padding: 20px 30px 16px 24px;
}

@media (max-width: 834px) {
  .side-cart .inner > header {
    padding: 16px;
  }
}

.side-cart .inner > header h2 {
  font-size: 26px;
  line-height: 31px;
  color: #000000;
}

.side-cart .inner > header .item-count {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  width: 26px;
  height: 26px;
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  background: #151515;
  color: #fff;
  border-radius: 50%;
}

.side-cart .inner > header .close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #151515;
}

@media (max-width: 834px) {
  .side-cart .inner > header .close {
    width: 15px;
    height: 15px;
    background: #fff;
  }
}

.side-cart .inner > header .close svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 834px) {
  .side-cart .inner > header .close svg {
    width: 9px;
    height: 9px;
  }
  .side-cart .inner > header .close svg path {
    fill: #151515;
  }
}

.side-cart .inner .main-items {
  padding: 0;
  flex-grow: 1;
  overflow: hidden;
  display: flex;
}

.side-cart .inner .main-items .main-items-scroll {
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0 0;
}

.side-cart .inner .main-items .main-items-scroll::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}

.side-cart .inner .main-items .main-items-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(222, 222, 222, 0.5);
  border-radius: 0;
}

.side-cart .inner .main-items .main-items-scroll::-webkit-scrollbar-track {
  margin: 0;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets {
  padding: 0 32px 16px;
  margin: 0;
  position: relative;
  width: 100%;
  color: #151515;
  transition: all ease 0.3s;
}

@media (max-width: 834px) {
  .side-cart .inner .main-items .main-items-scroll .cart-item--rivets {
    padding: 16px;
  }
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .left-area {
  width: 100px;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .left-area .object-fit--cover {
  padding-bottom: 100%;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area {
  width: calc(100% - 100px);
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 834px) {
  .side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area {
    padding-left: 16px;
  }
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area header {
  margin-bottom: 5px;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area header .cart-item-product-title {
  font-size: 13px;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area header .cart-item-remove {
  font-size: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  overflow: hidden;
  flex: auto 0 0;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area header .cart-item-remove:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transition: all ease 0.3s;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area header .cart-item-remove:hover:after {
  transform: translateX(100%);
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
}

@media (max-width: 834px) {
  .side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .title {
    font-size: 16px;
    line-height: 24px;
  }
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .product-material {
  font-family: "ModernEra", Arial, sans-serif;
  margin: 6px 0 0 8px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
  color: #627787;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .subtitle {
  margin: 4px 0 16px;
  font-size: 14px;
  line-height: 1.29;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area small {
  font-size: 13px;
  display: flex;
  margin-bottom: 5px;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area small span:last-child {
  color: #151515;
  margin-left: 10px;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-selling-plan {
  color: #151515;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-product-price {
  margin-bottom: 5px;
}

@media (max-width: 834px) {
  .side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-product-price {
    margin-bottom: 8px;
  }
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-product-price span {
  font-size: 16px;
}

@media (max-width: 834px) {
  .side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-product-price span {
    font-size: 14px;
    line-height: 18px;
  }
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-product-price span.compare-price {
  margin-left: 12px;
  text-decoration: line-through;
  font-size: 13px;
}

@media (max-width: 834px) {
  .side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-quantity-selector {
    max-width: none;
  }
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-quantity-selector button {
  width: 28px;
  min-width: 28px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.15s, border-color 0.15s;
  background: var(--cart-border-color);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-quantity-selector button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-quantity-selector button img, .side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-quantity-selector button svg {
  width: 8px;
  height: 8px;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-quantity-selector button img path, .side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-quantity-selector button svg path {
  fill: #151515;
  transition: stroke 0.15s, fill 0.15s;
}

.side-cart .inner .main-items .main-items-scroll .cart-item--rivets .right-area .cart-item-quantity-selector input {
  border: 0 none;
  width: 100%;
  height: 34px;
  max-width: 29px;
  text-align: center;
  pointer-events: none;
  font-size: 14px;
  background: var(--cart-border-color);
}

.side-cart .inner footer {
  padding: 17px 28px 0;
  margin-top: auto;
  position: relative;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  background: rgba(219, 214, 207, 0.75);
}

@media (max-width: 834px) {
  .side-cart .inner footer {
    padding: 24px 16px 40px;
    background: #fff;
  }
  .side-cart .inner footer:before {
    content: "";
    height: 1px;
    background: #151515;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
  }
}

.side-cart .inner footer .subtotal-area .h3 {
  font-size: 18px;
  line-height: 22px;
}

.side-cart .inner footer .subtotal-area .footer-text {
  font-size: 14px;
  line-height: 18px;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: left;
}

.side-cart .inner footer .button {
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 17px;
}

@media (max-width: 834px) {
  .side-cart .inner footer .button {
    margin-top: 24px;
    margin-bottom: 16px;
  }
}

.side-cart .inner footer .additional-checkout-buttons [data-shopify-buttoncontainer] {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  margin: 0 -4px;
}

.side-cart .inner footer .additional-checkout-buttons [data-shopify-buttoncontainer] > * {
  padding: 0 4px;
  width: 50%;
}

.side-cart .inner footer .footer-text {
  margin-bottom: 8px;
}

.side-cart .inner footer .payment-methods {
  margin-bottom: 17px;
}

@media (max-width: 834px) {
  .side-cart .inner footer .payment-methods {
    margin-bottom: 0;
  }
}

.side-cart .inner footer .payment-methods p {
  margin-right: 14px;
  white-space: nowrap;
}

.side-cart .inner footer .payment-methods ul {
  justify-content: center;
  margin-bottom: -8px;
}

.side-cart .inner footer .payment-methods ul li {
  height: 18px;
  margin-bottom: 8px;
}

.side-cart .inner footer .payment-methods ul li img {
  max-height: 100%;
}

.side-cart .upsell-area {
  flex-grow: 1;
  padding: 55px 24px 44px 36px;
  pointer-events: none;
  position: relative;
}

@media (max-width: 834px) {
  .side-cart .upsell-area {
    padding: 16px 16px 24px;
  }
}

.side-cart .upsell-area:before {
  content: "";
  height: 2px;
  position: absolute;
  left: 32px;
  right: 32px;
  top: 0;
  background: #151515;
  opacity: 0.2;
}

@media (max-width: 834px) {
  .side-cart .upsell-area:before {
    content: none;
  }
}

.side-cart .upsell-area .upsell-inner {
  width: 100%;
  pointer-events: auto;
}

.side-cart .upsell-area .upsell-inner .upsell-header {
  margin-bottom: 20px;
}

@media (max-width: 834px) {
  .side-cart .upsell-area .upsell-inner .upsell-header {
    margin-bottom: 16px;
  }
}

.side-cart .upsell-area .upsell-inner .upsell-header h4 {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}

.side-cart .upsell-area .upsell-inner .upsell-grid {
  margin: -40px 0 0 0;
  padding-top: 40px;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .keen-nav {
  position: absolute;
  top: 0;
  left: auto;
  right: 8px;
  width: 52px;
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  transform: none;
  padding: 0;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .keen-nav .keen-arrow {
  width: 18px;
  height: 18px;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .keen-nav .keen-arrow.keen-arrow-prev {
  left: 0;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .keen-nav .keen-arrow.keen-arrow-next {
  right: 0;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell {
  padding-right: 24px;
  width: 50%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 834px) {
  .side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell {
    display: none;
    padding-right: 0;
    width: 100%;
    flex-direction: row;
  }
  .side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell:nth-child(1), .side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell:nth-child(2) {
    display: flex;
  }
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .image-area {
  position: relative;
}

@media (max-width: 834px) {
  .side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .image-area {
    width: 120px;
    margin-right: 8px;
  }
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .image-area .object-fit--cover {
  padding-bottom: 100%;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .image-area .badges {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  pointer-events: none;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .image-area .badges li {
  background: #3552ae;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area {
  margin-top: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .cart-item-product-title {
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  color: #151515;
}

@media (max-width: 834px) {
  .side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .cart-item-product-title {
    font-size: 16px;
    line-height: 18px;
  }
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .cart-item-product-subtitle {
  font-size: 14px;
  line-height: 18px;
  margin-top: 8px;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .cart-item-product-price {
  font-size: 10px;
  line-height: 15px;
  color: #151515;
  margin-top: 4px;
  margin-bottom: 9px;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .cart-item-product-price.compare-price {
  text-decoration: line-through;
}

@media (max-width: 834px) {
  .side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .cart-item-product-price {
    font-size: 16px;
    line-height: 26px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .button {
  width: 100%;
  margin-top: auto;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .select-options {
  margin-top: auto;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .select-options .select-options-trigger {
  cursor: pointer;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .select-options .select-options-trigger span {
  font-size: 10px;
  line-height: 15px;
}

.side-cart .upsell-area .upsell-inner .upsell-grid .cart-item--upsell .content-area .select-options .select-options-trigger .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #151515;
  color: #fff;
  font-size: 18px;
  line-height: 16px;
  margin-right: 4px;
}

@media screen and (max-width: 480px) {
  .side-cart {
    max-height: 100%;
  }
  .side-cart .inner {
    overflow: hidden;
  }
}

.product-page .product-top-area {
  margin-bottom: 92px;
}

@media (max-width: 834px) {
  .product-page .product-top-area {
    margin-bottom: 24px;
  }
}

.product-page .product--left-area {
  width: calc(100% - 468px);
  padding: 0 80px 0 0;
  min-width: 50%;
  position: relative;
  margin: 24px 0 0;
}

@media (max-width: 834px) {
  .product-page .product--left-area {
    width: 100%;
    padding: 0;
    margin: 0 0 40px;
  }
}

.product-page .product--left-area .product-images-wrapper {
  position: relative;
}

@media (max-width: 834px) {
  .product-page .product--left-area .product-images-wrapper {
    margin: 0 -16px;
  }
}

.product-page .product--left-area .product-images-wrapper .slider-arrows {
  position: absolute;
  top: 50%;
  left: 16px;
  width: calc(100% - 16px - 16px);
  transform: translate(0, -50%);
  z-index: 10;
}

@media (max-width: 834px) {
  .product-page .product--left-area .product-images-wrapper .slider-arrows {
    display: block;
  }
}

.product-page .product--left-area .product-images-wrapper .slider-arrows .keen-nav {
  justify-content: space-between;
}

.product-page .product--left-area .product-images-wrapper .slider-arrows .keen-nav .keen-arrow {
  background: #dbd6cf;
}

.product-page .product--left-area .product-images-wrapper .slider-arrows .keen-nav .keen-arrow svg path {
  stroke: #151515;
}

.product-page .product--left-area .product-images-wrapper .keen-dots {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 11px;
  width: 100%;
}

.product-page .product--left-area .product-images-wrapper .keen-dots li {
  margin: 0 12px;
}

.product-page .product--left-area .product-images-wrapper .keen-dots li button {
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
}

.product-page .product--left-area .product-featured-image .picture-element-wrapper {
  height: 0;
}

.product-page .product--left-area .product-featured-image .picture-element-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.product-page .product--left-area .product-featured-image .product-benefits {
  width: 100%;
  margin: 8px 0 0;
}

.product-page .product--left-area .product-images {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 835px) {
  .product-page .product--left-area .product-images {
    margin: 0 -4px -8px;
    width: calc(100% + 8px);
    flex-wrap: wrap !important;
  }
  .product-page .product--left-area .product-images .product-image {
    width: 50%;
    padding: 0 4px 8px;
  }
  .product-page .product--left-area .product-images .product-image .picture-element-wrapper {
    padding-bottom: 100%;
  }
  .product-page .product--left-area .product-images .product-image.product-image--large {
    width: 100%;
    order: 31 !important;
  }
  .product-page .product--left-area .product-images .product-image.product-image--large .picture-element-wrapper {
    padding-bottom: 50%;
  }
  .product-page .product--left-area .product-images .product-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 834px) {
  .product-page .product--left-area .product-images .product-image {
    display: block !important;
  }
  .product-page .product--left-area .product-images .product-image .picture-element-wrapper {
    padding-bottom: 100%;
  }
  .product-page .product--left-area .product-images .product-image .picture-element-wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-images .product-image .picture-element-wrapper {
  padding-bottom: 79%;
}
.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-images{
  padding-bottom: 17px;
}
.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper ul.keen-dots{
  bottom: 0;
}
.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper ul.keen-dots li{
  margin: 0 6px;
}
.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper ul.keen-dots li button{
  border: 1px solid #000;
  background: #fff;
  width: 7px;
  height: 7px;
}
.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper ul.keen-dots li button.active{
  background: #000000;
}

.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper video {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-image:hover .watch-video-button-wrapper {
  transition: .2s;
  background: var(--color-dark-grey);
  color: var(--color-white);
}

.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-image:hover .watch-video-button-wrapper span{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='14' viewBox='0 0 11 14' fill='none'%3E%3Cpath d='M10.5 7.00006L-5.70966e-07 13.0622L-4.09935e-08 0.937883L10.5 7.00006Z' fill='white'/%3E%3C/svg%3E");
}

.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .watch-video-button-wrapper{
  position: absolute;
  background: #fff;
  bottom: 6px;
  left: 6px;
  padding: 8px 23px;
  cursor: pointer;
}
.product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .watch-video-button-wrapper span{
  text-transform: uppercase;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='14' viewBox='0 0 11 14' fill='none'%3E%3Cpath d='M10.5 7.00006L-5.70966e-07 13.0622L-4.09935e-08 0.937883L10.5 7.00006Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 6px;
  padding-left: 9px;
}

@media only screen and (min-width: 835px) {
  .product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper {

  }

  .product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-images {
    gap: 6px;
    padding-bottom: 0;
  }

  .product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-images .product-image {
    padding: 0;
    width: auto;
    flex: 1 0 46%;
  }

  .product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-images .product-image.product-image--large {
    order: initial !important;
    flex: 1 0 100%;
  }
  .product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-images .product-image .picture-element-wrapper {
    padding-bottom: 120%;
  }
  .product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .product-images .product-image.product-image--large .picture-element-wrapper {
    padding-bottom: 50%;
  }
  .product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .watch-video-button-wrapper{
    bottom: 10px;
    left: 10px;
    padding: 12px 38px;
  }
  .product-page .product--left-area .product-images-wrapper.trellis--product-images-wrapper .watch-video-button-wrapper span{
    font-size: 12px;
    background-size: 8px;
    padding-left: 13px;
  }
}

.product-page .trellis-modal-gallery{
  display: none;
  position: fixed;
  width: 95vw;
  height: 95vw;
  max-height: 90vh;
  background: #fff;
  border: 2px solid;
  z-index: 999999;
  overflow: hidden;
  max-width: 100vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 835px){
  .product-page .trellis-modal-gallery{
    width: 90vw;
    height: 70vh;
    max-height: none;
  }
}
.product-page .trellis-modal-gallery ul{
  height: 100%;
}
.product-page .trellis-modal-gallery.opened{
  display: block;
}
.product-page .trellis-modal-gallery .close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 9;
  cursor: pointer;
}
.product-page .trellis-modal-gallery .close svg{
  width: 30px;
  height: 30px;
}

.product-page .trellis-modal-gallery .picture-element-wrapper{
  padding-bottom: 100%
}
@media only screen and (min-width: 835px){
  .product-page .trellis-modal-gallery .picture-element-wrapper{
    padding-bottom: 75%;
  }
}

.product-page .trellis-modal-gallery video{
  width: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.product-page .trellis-modal-gallery .picture-element-wrapper picture img{
  height: 100%;
  object-fit: cover;
}
.product-page .trellis-modal-gallery .keen-dots{
  bottom: 16px;
  height: auto;
}
.product-page .trellis-modal-gallery .keen-dots li{
  margin: 0 6px;
}
.product-page .trellis-modal-gallery .keen-dots li button{
  width: 11px;
  height: 11px;
}
@media only screen and (max-width: 834px){
  .product-page .trellis-modal-gallery .keen-nav{
    padding: 0;
  }
  .product-page .trellis-modal-gallery .keen-nav .keen-arrow.keen-arrow-prev{
      left: 8px;
  }
  .product-page .trellis-modal-gallery .keen-nav .keen-arrow.keen-arrow-next{
    right: 8px;
  }
}

body.modal-opened{
  overflow: hidden;
}
body.modal-opened:before {
  content: "";
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500%;
  z-index: 999;
  opacity: 0.6;
}

.product-page .product--left-area .product__item-badge {
  right: 88px;
  left: auto;
}

@media (max-width: 834px) {
  .product-page .product--left-area .product__item-badge {
    right: 8px;
  }
}

.product-page .product--left-area .product-benefits {
  width: 100%;
  order: 32;
  background: #f9f9f9;
  padding: 32px 0 0;
  margin: 0 4px 8px;
}

@media (max-width: 834px) {
  .product-page .product--left-area .product-benefits {
    margin: 0 -16px;
    padding: 0;
    width: calc(100% + 16px + 16px);
  }
}

.product-page .product--left-area .product-benefits ul {
  display: flex;
  flex-wrap: wrap;
}

.product-page .product--left-area .product-benefits ul li {
  width: 50%;
  padding: 0 32px;
  margin: 0 0 32px;
  text-align: center;
}

@media (max-width: 834px) {
  .product-page .product--left-area .product-benefits ul li {
    width: 100%;
    padding: 28px 16px;
    margin: 0;
    position: relative;
  }
  .product-page .product--left-area .product-benefits ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: #d7e0f1;
  }
  .product-page .product--left-area .product-benefits ul li:nth-child(1):before {
    content: none;
  }
}

.product-page .product--left-area .product-benefits ul li:nth-child(2n) {
  border-left: 1px solid #d7e0f1;
}

@media (max-width: 834px) {
  .product-page .product--left-area .product-benefits ul li:nth-child(2n) {
    border-left: none;
  }
}

.product-page .product--left-area .product-benefits ul li h4 {
  font-size: 14px;
  line-height: 1.43;
  margin: 0;
}

.product-page .product--left-area .product-benefits ul li p {
  font-size: 14px;
  line-height: 1.71;
  margin: 4px 0 0;
}

.product-page .product--right-area {
  width: 468px;
  max-width: 50%;
  margin: 24px 0 0;
}

@media (max-width: 834px) {
  .product-page .product--right-area {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}

.product-page .product-info-area .product-review-stars {
  margin: 0 0 8px;
}

.product-page .product-info-area .product-review-stars .yotpo a {
  color: #141414 !important;
  font-size: 10px;
  line-height: 1.4;
  margin-left: 4px;
  display: flex;
  align-items: center;
}

.product-page .product-info-area .product-review-summary {
  margin-bottom: 10px;
  color: #000000;
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-page .product-info-area .product-review-summary .jdgm-prev-badge {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.product-page .product-info-area .title-wrapper {
  margin: 0 0 11px;
}

.product-page .product-info-area .title-wrapper .product-title {
  font-size: 26px;
  line-height: 31px;
  margin: 0;
  color: var(--color-pdp-title);
}

.product-page .product-info-area .title-wrapper .product-material {
  font-family: "ModernEra", Arial, sans-serif;
  margin: 6px 0 0 8px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
  color: #627787;
}

.product-page .product-info-area .product-prices {
  margin: 0 0 16px;
}

.product-page .product-info-area .product-prices .money {
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-pdp-title);
}

.product-page .product-info-area .product-description {
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 16px;
}

.product-page .product-info-area .product-form {
  margin: 0 0 16px;
}

.product-page .product-info-area .product-form .shop-pay {
  margin: 0 0 16px;
}

.product-page .product-info-area .product-form .product-options {
  margin: 0 0 24px;
}

.product-page .product-info-area .product-form .product-options .product-option {
  margin: 0 0 16px;
}

.product-page .product-info-area .product-form .product-options .product-option .option-title {
  margin: 0 0 8px;
  color: var(--color-pdp-title);
}

.product-page .product-info-area .product-form .product-options .product-option .option-title span {
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.product-page .product-info-area .product-form .product-options .product-option .option-title a {
  font-size: 12px;
  line-height: 16px;
  padding: 0;
  margin: 0 0 2px;
}

.product-page .product-info-area .product-form .product-options .product-option ul {
  width: calc(100% + 16px);
  margin-right: -8px;
  margin-bottom: -8px;
  display: flex;
  flex-wrap: wrap;
}

.product-page .product-info-area .product-form .product-options .product-option ul li {
  display: flex;
  width: 33.33%;
  padding-right: 8px;
  padding-bottom: 8px;
}

.product-page .product-info-area .product-form .product-options .product-option ul li input {
  display: none;
}

.product-page .product-info-area .product-form .product-options .product-option ul li input:checked + label {
  border: 1px solid #58a075;
}

.product-page .product-info-area .product-form .product-options .product-option ul li label {
  width: 100%;
  font-size: 14px;
  line-height: 19px;
  padding: 10px;
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 834px) {
  .product-page .product-info-area .product-form .product-options .product-option ul li label {
    font-size: 12px;
    line-height: 22px;
    padding: 4px;
  }
}

.product-page .product-info-area .product-form .product-options .product-option ul li label:hover {
  border: 1px solid #58a075;
}

.product-page .product-info-area .product-form .product-add-ons {
  border: 1px solid #dbd6cf;
  padding: 16px;
  margin: 0 0 16px;
}

@media (max-width: 834px) {
  .product-page .product-info-area .product-form .product-add-ons {
    padding: 0;
    border: none;
  }
}

.product-page .product-info-area .product-form .product-add-ons .product-add-on {
  margin-bottom: 16px;
}

.product-page .product-info-area .product-form .product-add-ons .product-add-on .product-add-on-title {
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.43;
  text-align: center;
  margin: 0 auto 16px;
}

.product-page .product-info-area .product-form .product-add-ons input[type=radio] ,
.product-page .product-info-area .product-form .product-add-ons input[type=checkbox] {
  display: none;
}

.product-page .product-info-area .product-form .product-add-ons input[type=radio]:checked + .addon-product-card ,
.product-page .product-info-area .product-form .product-add-ons input[type=checkbox]:checked + .addon-product-card {
  border: 1px solid #58a075;
}

.product-page .product-info-area .product-form .product-add-ons .addon-product-card {
  cursor: pointer;
}

.product-page .product-info-area .product-form .product-add-ons .addon-product-card .image-area .picture-element-wrapper {
  padding-bottom: 100%;
}

.product-page .product-info-area .product-form .product-add-ons .addon-product-card .info-area {
  padding: 8px;
}

.product-page .product-info-area .product-form .product-add-ons .addon-product-card .info-area .title {
  text-align: center;
  font-size: 12px;
  line-height: 1.33;
}

.product-page .product-info-area .product-form .product-add-ons .addon-product-card .info-area .product-prices {
  justify-content: center;
  margin: 4px 0 0;
}

.product-page .product-info-area .product-form .product-add-ons .addon-product-card .info-area .product-prices * {
  font-size: 12px;
  line-height: 1.33;
  color: #122958;
}

.product-page .product-info-area .product-form .product-add-ons .addon-product-card .info-area .product-prices .from {
  margin-right: 4px;
}

.product-page .product-info-area .product-form .product-add-ons .addon-input:checked + label .button .add,
.product-page .product-info-area .product-form .product-add-ons .addon-input:checked + label .button .price {
  display: none;
}

.product-page .product-info-area .product-form .product-add-ons .addon-input:checked + label .button .added {
  display: inline;
}

.product-page .product-info-area .product-form .product-add-ons .addon-atc {
  display: block;
  margin: 16px 0 0;
}

.product-page .product-info-area .product-form .product-add-ons .addon-atc .button {
  width: 100%;
  text-align: center;
}

.product-page .product-info-area .product-form .product-add-ons .addon-atc .button .added {
  display: none;
}

.product-page .product-info-area .product-form .upsell-product {
  margin: 0 0 24px;
}

@media (min-width: 835px) {
  .product-page .product-info-area .product-form .upsell-product {
    border: 1px solid #dbd6cf;
    padding: 16px;
  }
}

.product-page .product-info-area .product-form .upsell-product .upsell-product-heading {
  font-size: 22px;
  line-height: 1;
  margin: 0 0 16px;
}

.product-page .product-info-area .product-form .upsell-product .image-area {
  width: 130px;
}

@media (max-width: 834px) {
  .product-page .product-info-area .product-form .upsell-product .image-area {
    width: 100px;
  }
}

.product-page .product-info-area .product-form .upsell-product .image-area .picture-element-wrapper {
  padding-bottom: 100%;
}

.product-page .product-info-area .product-form .upsell-product .image-area .picture-element-wrapper picture, .product-page .product-info-area .product-form .upsell-product .image-area .picture-element-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-page .product-info-area .product-form .upsell-product .content-area {
  width: calc(100% - 130px);
  padding: 0 0 0 16px;
}

.product-page .product-info-area .product-form .upsell-product .content-area .price {
  margin: 8px 0 0;
}

.product-page .product-info-area .product-form .upsell-product .content-area .upsell-atc {
  margin: 8px 0 0;
}

.product-page .product-info-area .product-form .upsell-product .content-area .upsell-atc .link {
  display: inline-block;
}

.product-page .product-info-area .product-form .upsell-product .content-area .upsell-atc .link .added {
  display: none;
}

.product-page .product-info-area .product-form .upsell-product .upsell-input:checked + label .button .add,
.product-page .product-info-area .product-form .upsell-product .upsell-input:checked + label .button .price {
  display: none;
}

.product-page .product-info-area .product-form .upsell-product .upsell-input:checked + label .button .added {
  display: inline;
}

.product-page .product-info-area .product-form .upsell-product .upsell-atc {
  display: block;
  margin: 16px 0 0;
}

.product-page .product-info-area .product-form .upsell-product .upsell-atc .button {
  width: 100%;
  text-align: center;
}

.product-page .product-info-area .product-form .upsell-product .upsell-atc .button .added {
  display: none;
}

.product-page .product-info-area .product-form .product-atc {
  width: 100%;
}

.product-page .product-info-area .shipping-notice {
  color: #58a075;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  line-height: 16px;
  margin: 0 0 16px;
}

.product-page .product-info-area .product-accordion {
  margin: 0 0 24px;
}

.product-page .product-info-area .product-accordion .accordion-item:first-of-type {
  border-top: 1px solid var(--color-light-grey);
}

.product-page .product-info-area .product-accordion .accordion-item, .accordion-item {
  border-bottom: 1px solid var(--color-light-grey);
}

.product-page .product-info-area .product-accordion .accordion-item .accordion-header, .accordion-item .accordion-header {
  padding: 15px 0;
  margin:0;
}

.product-page .product-info-area .product-accordion .accordion-item .accordion-header h4, .accordion-item .accordion-header h4 {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-black);
}

.product-page .product-info-area .product-accordion .accordion-item .accordion-header svg {
  width: 11px;
  flex: 11px 0 0;
}

.product-page .accordion-content-inner, .accordion-content-inner {
  margin-bottom: 15px;
}

.product-page .accordion-content-inner p {
  font-size: 12px;
  line-height: 1.6;
}

.product-page .product-info-area .product-quiz {
  padding: 16px;
  background: #f9f9f9;
  margin: 0 0 16px;
}

.product-page .product-info-area .product-quiz .product-quiz-title {
  font-size: 18px;
  line-height: 22px;
  color: #151515;
}

.product-page .product-info-area .product-quiz .product-quiz-title svg {
  margin-right: 10px;
}

.product-page .product-info-area .product-quiz .rte {
  font-size: 14px;
  line-height: 22px;
  margin: 10px 0 0;
}

.product-page .product-info-area .product-quiz .link {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  margin: 16px 0 0;
  color: #151515;
}

.product-page .product-info-area .product-contact-cta, .product-contact-cta {
  border: 1px solid #f9f9f9;
  margin: 0 0 24px;
}

.product-page .product-info-area .product-contact-cta a, .product-contact-cta a {
  flex: 1;
  padding: 16px;
  font-size: 12px;
  line-height: 16px;
  transition: all ease 0.3s;
}

.product-page .product-info-area .product-contact-cta a:hover, .product-contact-cta a:hover {
  background: #f9f9f9;
}

.product-page .product-info-area .product-contact-cta a:nth-child(2), .product-contact-cta a:nth-child(2) {
  position: relative;
}

.product-page .product-info-area .product-contact-cta a:nth-child(2):after, .product-contact-cta a:nth-child(2):after {
  content: "";
  width: 1px;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  background: #f9f9f9;
}

.product-page .product-info-area .product-contact-cta a img, .product-contact-cta a img {
  display: block;
  margin-right: 9px;
}

.product-page .product-info-area .store-benefits .benefits-item {
  margin-bottom: 24px;
}

.product-page .product-info-area .store-benefits .benefits-item:last-child {
  margin-bottom: 0;
}

.product-page .product-info-area .store-benefits .benefits-item .image-area {
  margin-right: 20px;
}

.product-page .product-info-area .store-benefits .benefits-item .image-area .icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page .product-info-area .store-benefits .benefits-item .content-area .title {
  font-size: 14px;
  line-height: 20px;
  color: #151515;
}

.product-page .product-info-area .store-benefits .benefits-item .content-area .subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 22px;
}

.ffc--header {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - var(--scroll-gap-right, 0px));
  z-index: 50;
  background-color: #ffffff;
}

.product-nav-sticky .ffc--header {
  transform: translateY(-100%) !important;
  pointer-events: none !important;
}

.ffc--header.fixed {
  transition: transform 0.25s ease;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(calc(-1 * var(--header-top-bar-height)));
}

.ffc--header.fixed .mobile-nav {
  transform: translateY(var(--header-top-bar-height));
}

body.dark-mode .mobile-nav .mobile-nav-inner,
body.dark-mode .mobile-nav .mobile-nav-inner .bottom-menu {
  background-color: #0d0d0d;
}

.ffc--header.not-visible {
  transform: translateY(-100%);
  pointer-events: none;
}

.ffc--header .top-area {
  position: relative;
  z-index: 51;
}

.ffc--header .top-area .keen-slider .keen-slider__slide {
  text-align: center;
  min-width: 100%;
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.67;
  padding: 12px;
  color: inherit;
  min-height: 40px;
    height: auto;
}

@media (max-width: 834px) {
  .ffc--header .top-area .keen-slider .keen-slider__slide .rte {
    margin-bottom: 0 !important;
  }
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte * {
  font-family: "ModernEra", Arial, sans-serif;
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte p {
  color: inherit;
  height: auto;
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte a {
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte a::before, .ffc--header .top-area .keen-slider .keen-slider__slide .rte a::after {
  content: "";
  position: absolute;
  opacity: 1;
  left: 0;
  bottom: -1px;
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: 1.1s var(--ease-out-expo);
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte a::before {
  transform: scaleX(0);
  transform-origin: left;
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte a::after {
  transform-origin: right;
  transition-delay: 0.25s;
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte a:hover {
  color: inherit;
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte a:hover::before {
  transform: scaleX(1);
  transition-delay: 0.5s;
}

.ffc--header .top-area .keen-slider .keen-slider__slide .rte a:hover::after {
  transform: scaleX(0);
  transition-delay: 0s;
}

.ffc--header .header-inner {
  background: #ffffff;
  z-index: inherit;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}

.ffc--header .header-inner .left-nav-area, .ffc--header .header-inner .right-nav-area {
  flex-basis: 0;
  flex-grow: 1;
}

@media (max-width: 1368px) {
  .ffc--header .header-inner .left-nav-area .f-grid, .ffc--header .header-inner .right-nav-area .f-grid {
    margin: 0 -12px;
  }
  .ffc--header .header-inner .left-nav-area .f-grid > *, .ffc--header .header-inner .right-nav-area .f-grid > * {
    padding: 0 12px;
  }
}

.ffc--header .header-inner .left-nav-area > ul, .ffc--header .header-inner .right-nav-area > ul {
  margin-right: -11px;
  margin-left: -11px;
}

.ffc--header .header-inner .left-nav-area > ul > li, .ffc--header .header-inner .right-nav-area > ul > li {
  display: flex;
  padding-right: 11px;
  padding-left: 11px;
}

@media (max-width: 834px) {
  .ffc--header .header-inner .left-nav-area > ul > li.big-desktop-only, .ffc--header .header-inner .right-nav-area > ul > li.big-desktop-only {
    display: none;
  }
}

.ffc--header .header-inner .left-nav-area > ul > li > a.nav-item, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.86;
  letter-spacing: 0.28px;
}

@media (min-width: 835px) {
  .ffc--header .header-inner .left-nav-area > ul > li > a.nav-item, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item {
    border-bottom: 1px solid transparent;
  }
  .ffc--header .header-inner .left-nav-area > ul > li > a.nav-item:hover, .ffc--header .header-inner .left-nav-area > ul > li > a.nav-item.dropdown-open, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item:hover, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item.dropdown-open {
    border-bottom: 1px solid #151515;
  }
}

.ffc--header .header-inner .left-nav-area > ul > li > a.nav-item.nav-item--account, .ffc--header .header-inner .left-nav-area > ul > li > a.nav-item.nav-item--cart, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item.nav-item--account, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item.nav-item--cart {
  border-bottom: none;
}

.ffc--header .header-inner .left-nav-area > ul > li > a.nav-item.nav-item--account:hover, .ffc--header .header-inner .left-nav-area > ul > li > a.nav-item.nav-item--cart:hover, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item.nav-item--account:hover, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item.nav-item--cart:hover {
  border-bottom: none;
}

.ffc--header .header-inner .left-nav-area > ul > li > a.nav-item.nav-item--cart svg, .ffc--header .header-inner .right-nav-area > ul > li > a.nav-item.nav-item--cart svg {
  margin-right: 5px;
  margin-bottom: 1px;
}

.ffc--header .header-inner .middle-area a {
  display: block;
}

.ffc--header .header-inner .middle-area a img {
  height: 24px;
  width: auto;
}

.ffc--header .header-inner .burger-menu-container {
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0 none;
  background: transparent;
  margin-left: -10px;
  position: relative;
}

.ffc--header .header-inner .burger-menu-container .burger-menu-inner {
  height: 12px;
  width: 17px;
  position: relative;
  transition: all 0.3s;
}

.ffc--header .header-inner .burger-menu-container .burger-menu-inner:before, .ffc--header .header-inner .burger-menu-container .burger-menu-inner span, .ffc--header .header-inner .burger-menu-container .burger-menu-inner:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #272625;
  position: absolute;
  left: 0;
  transition: opacity 0.35s ease, top 0.35s ease, transform 0.35s ease;
}

.dark-mode .ffc--header .header-inner .burger-menu-container .burger-menu-inner:before, 
.dark-mode .ffc--header .header-inner .burger-menu-container .burger-menu-inner span, 
.dark-mode .ffc--header .header-inner .burger-menu-container .burger-menu-inner:after {
  background-color: var(--color-white)
}

.ffc--header .header-inner .burger-menu-container .burger-menu-inner:before {
  top: 0;
}

.ffc--header .header-inner .burger-menu-container .burger-menu-inner span {
  top: 6px;
}

.ffc--header .header-inner .burger-menu-container .burger-menu-inner:after {
  top: 12px;
}

.ffc--header .header-inner .burger-menu-container.active .burger-menu-inner {
  opacity: 0;
}

.template-search .ffc--header .header-search {
  display: none !important;
}

.ffc--header .header-search [data-ajax-search-input] {
  -webkit-appearance: none;
  font-size: 12px;
  color: #000;
  background: #fff;
  border: none;
  padding: 0 0 0 5px;
  margin: 0 0 0 10px;
  width: 70px;
}

.ffc--header .header-search .search-results-dropdown {
  position: absolute;
  min-width: 50%;
  top: 100%;
  right: 0;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10;
  max-height: 0;
  overflow: hidden;
}

.ffc--header .header-search .search-results-dropdown.open {
  max-height: calc(100vh - 74px);
  max-height: calc(var(--vh, 1vh) * 100 - 74px);
}

@media (max-width: 834px) {
  .ffc--header .header-search .search-results-dropdown.open {
    max-height: calc(100vh - 60px);
    max-height: calc(var(--vh, 1vh) * 100 - 60px);
    height: calc(100vh - 60px);
    height: calc(var(--vh, 1vh) * 100 - 60px);
  }
}

.ffc--header .header-search .search-results-dropdown .search-term-area {
  margin: 22px 0;
  padding: 0 24px;
  border-right: 2px solid #d8d8d8;
}

.ffc--header .header-search .search-results-dropdown .search-term-area h6 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.86;
  letter-spacing: 0.28px;
}

.ffc--header .header-search .search-results-dropdown .search-term-area ul li {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.86;
  letter-spacing: 0.28px;
}

.ffc--header .header-search .search-results-dropdown .search-results-area {
  flex: 1 0 0;
  padding: 22px 0 22px 34px;
  position: relative;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .view-all-link {
  position: absolute;
  right: 32px;
  top: 18px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.86;
  letter-spacing: 0.28px;
  text-decoration: underline;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results h6 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.86;
  letter-spacing: 0.28px;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products {
  margin-top: 8px;
  width: 100%;
}

@media (max-width: 834px) {
  .ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products {
    margin-top: 16px;
  }
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .no-results {
  color: #fffbf6;
  width: 100%;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product {
  width: 33.3333333333%;
  max-width: 170px;
  display: none;
}

@media (max-width: 834px) {
  .ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product {
    width: 50%;
  }
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product:nth-child(1), .ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product:nth-child(2), .ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product:nth-child(3) {
  display: block;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product .info-area {
  padding: 12px 0 0;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product .info-area .title {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.24px;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product .info-area .product-material {
  display: none;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product .info-area .subtitle {
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.16px;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product .info-area .product-prices {
  margin-top: 10px;
  padding-top: 10px;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product .info-area .product-prices .from {
  font-size: 8px;
  letter-spacing: 0.16px;
}

.ffc--header .header-search .search-results-dropdown .search-results-area .search-results .search-results-products .card-product .info-area .product-prices .product-price {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.2px;
}

.ffc--footer {
  color: #ffffff;
}

@media (min-width: 1450px) {
  .ffc--footer .wrapper {
    max-width: 1344px;
    padding-left: unset;
    padding-right: unset;
  }
}

.ffc--footer .rte, .ffc--footer p {
  color: #ffffff;
}

.ffc--footer a:hover, .ffc--footer a:focus, .ffc--footer a:active {
  color: #dbd6cf;
  border-bottom: 1px solid #dbd6cf;
}

@media (min-width: 835px) {
  .ffc--footer [data-toggle-group] [data-toggle-item] [data-toggle-trigger] {
    cursor: unset;
    pointer-events: none;
  }
}

@media (min-width: 835px) {
  .ffc--footer [data-toggle-group] [data-toggle-item] [data-toggle-trigger] svg {
    display: none;
  }
}

@media (min-width: 835px) {
  .ffc--footer [data-toggle-group] [data-toggle-item] [data-toggle-elem]:not(.open) {
    max-height: none;
  }
}

.ffc--footer .footer-contact {
  background-color: #151515;
  padding: 80px 0 36px;
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact {
    background-color: #f9f9f9;
    padding: 40px 0;
  }
  .ffc--footer .footer-contact * {
    color: #272625;
  }
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact .wrapper {
    flex-wrap: wrap;
  }
}

.ffc--footer .footer-contact .info-area {
  margin: 0 138px 0 0;
  flex: 1;
  max-width: 318px;
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact .info-area {
    width: 100%;
    max-width: 100%;
    flex: auto;
    margin: 0 0 32px;
  }
}

.ffc--footer .footer-contact .info-area .h2 {
  font-size: 18px;
  line-height: 1.22;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact .info-area .h2 {
    color: #151515;
  }
}

.ffc--footer .footer-contact .info-area .rte {
  font-size: 14px;
  line-height: 1.57;
  margin: 13px 0 0;
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact .info-area .rte {
    margin: 16px 0 0;
  }
}

.ffc--footer .footer-contact .addresses {
  flex: 1;
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact .addresses {
    width: 100%;
    flex: auto;
    flex-wrap: wrap;
    margin: 0 0 -24px;
  }
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact .addresses > li {
    width: 100%;
    margin: 0 0 24px;
  }
}

.ffc--footer .footer-contact .addresses h3 {
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.56px;
  margin: 0;
}

.ffc--footer .footer-contact .addresses .rte {
  font-size: 14px;
  line-height: 1.57;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact .addresses .rte {
    margin: 8px 0 0;
  }
}

.ffc--footer .footer-contact .addresses .phone {
  font-size: 14px;
  line-height: 1.57;
}

@media (max-width: 834px) {
  .ffc--footer .footer-contact .addresses .phone {
    border-bottom: 1px solid #a8a7a7;
    margin: -10px;
    padding: 10px;
  }
}

.ffc--footer .footer-main {
  background-color: #151515;
}

.ffc--footer .footer-main .wrapper {
  border-top: 1px solid #f9f9f9;
  border-bottom: 1px solid #848079;
  padding-top: 34px;
  padding-bottom: 60px;
}

@media (max-width: 834px) {
  .ffc--footer .footer-main .wrapper {
    border-top: none;
    border-bottom: none;
    padding-top: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
  }
}

.ffc--footer .footer-main .footer-menu {
  width: 60%;
  list-style-type: none;
}

@media (max-width: 834px) {
  .ffc--footer .footer-main .footer-menu {
    width: 100%;
    flex-wrap: wrap;
    order: 20;
  }
}

.ffc--footer .footer-main .footer-menu li {
  flex: 1;
}

@media (max-width: 834px) {
  .ffc--footer .footer-main .footer-menu li {
    flex: auto;
    width: 100%;
    padding-top: 16px;
  }
}

.ffc--footer .footer-main .footer-menu li::marker {
  display: none;
}

.ffc--footer .footer-main .footer-menu h3 {
  font-size: 18px;
  line-height: 1.22;
  margin: 0 0 16px;
}

.ffc--footer .footer-main .footer-menu .link-menu {
  font-size: 14px;
  letter-spacing: -0.28px;
  line-height: 1.14;
  margin: 0 0 16px;
}

.ffc--footer .footer-main .footer-newsletter-and-social {
  width: 40%;
}

@media (max-width: 834px) {
  .ffc--footer .footer-main .footer-newsletter-and-social {
    width: 100%;
    order: 10;
    margin-bottom: 24px;
  }
}

.ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter .h2 {
  font-size: 18px;
  line-height: 1.22;
  margin: 0;
}

.ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter .rte {
  font-size: 14px;
  line-height: 1.57;
  margin: 16px 0 0;
}

/* .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter {
  margin: 12px auto 0 0;
  max-width: 304px;
} */
  .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter {
    margin: 30px auto 30px 0;
    max-width: 100%;
  }

@media (max-width: 480px) {
  .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter .input-group input {
    background: transparent;
    color: #f9f9f9;
    border: 1px solid #f9f9f9;
  }
  .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter .input-group input::-webkit-input-placeholder {
    opacity: 1;
    color: #f9f9f9;
  }
  .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter .input-group input::-moz-placeholder {
    opacity: 1;
    color: #f9f9f9;
  }
  .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter .input-group input:-ms-input-placeholder {
    opacity: 1;
    color: #f9f9f9;
  }
  .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter .input-group input::-ms-input-placeholder {
    opacity: 1;
    color: #f9f9f9;
  }
}

@media (max-width: 480px) {
  .ffc--footer .footer-main .footer-newsletter-and-social .footer-newsletter form.newsletter .input-group button {
    color: #f9f9f9;
  }
}

.ffc--footer .footer-main .footer-newsletter-and-social .footer-social {
  margin: 24px 0 0;
}

.ffc--footer .footer-bottom {
  background-color: #151515;
  padding: 16px 0;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: -0.24px;
}

@media (max-width: 834px) {
  .ffc--footer .footer-bottom {
    padding: 0 0 24px;
  }
}

.ffc--footer .footer-bottom * {
  color: #848079;
}

.dark-mode .ffc--footer .footer-bottom * {
  color: var(--color-white)
}

@media (max-width: 834px) {
  .ffc--footer .footer-bottom .wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 834px) {
  .ffc--footer .footer-bottom .copyright {
    width: 100%;
    order: 20;
  }
}

.ffc--footer .footer-bottom .copyright p:last-child {
  margin: 0 0 0 24px;
}

@media (max-width: 834px) {
  .ffc--footer .footer-bottom .copyright p:last-child {
    margin: 0 0 0 16px;
  }
}

.ffc--footer .footer-bottom .copyright a {
  border-bottom: 1px solid #848079;
}

.ffc--footer .footer-bottom .copyright a:hover, .ffc--footer .footer-bottom .copyright a:focus, .ffc--footer .footer-bottom .copyright a:active {
  border-bottom: 1px solid #dbd6cf;
}

.ffc--footer .footer-bottom .menu {
  margin: 0 0 0 -24px;
}

@media (max-width: 834px) {
  .ffc--footer .footer-bottom .menu {
    width: 100%;
    order: 10;
    margin: 0 0 8px -24px;
  }
}

.ffc--footer .footer-bottom .menu li {
  margin: 0 0 0 24px;
}

.hero-section {
  position: relative;
}

@media (max-width: 834px) {
  .hero-section .flex {
    flex-wrap: wrap;
  }
}

.hero-section .image-area {
  position: relative;
  width: 50%;
}

@media (max-width: 834px) {
  .hero-section .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.hero-section .image-area.image-area--left {
  order: 10;
}

.hero-section .image-area.image-area--right {
  order: 30;
}

.hero-section .image-area.image-area--fullwidth {
  width: 100%;
}

.hero-section .image-area .picture-element-wrapper {
  min-height: 100%;
}

.hero-section .image-area .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #151515;
}

.hero-section .content-area {
  width: 50%;
  order: 20;
  padding: 40px 112px;
}

@media (max-width: 834px) {
  .hero-section .content-area {
    width: 100%;
    padding: 16px;
  }
}

@media (min-width: 835px) {
  .hero-section .content-area.content-area--left {
    padding: 40px 175px 40px 112px;
  }
  
  .hero-section .content-area.content-area--right {
    padding: 40px 112px 40px 175px;
  }
}

.hero-section .content-area.content-area--fullwidth {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent !important;
}

.hero-section .content-area.content-area--text_width-full .inner {
  width: 100%;
}

.hero-section .content-area.content-area--text_width-half .inner {
  width: 50%;
}

@media (max-width: 834px) {
  .hero-section .content-area.content-area--text_width-half .inner {
    width: 100%;
  }
}
.hero-section .content-area{
  z-index: 1;
}
.hero-section .content-area .title{
  width: 100%;
  color: inherit;
  font-size: 32px;
  margin: 0;
}
.hero-section .content-area .title.small {
  font-size: 32px;
  line-height: 1.13;
}
.hero-section .content-area .title.medium {
  font-size: 48px;
  line-height: 1.13;
}
.hero-section .content-area .title.large {
  font-size: 58px;
  line-height: 1.13;
}
.hero-section .content-area .title.x-large {
  font-size: 64px;
  line-height: 1.13;
}
@media (max-width: 834px) {
  .hero-section .content-area .title.mobile__small {
    font-size: 22px;
    line-height: 1.13;
  }
  .hero-section .content-area .title.mobile__medium {
    font-size: 26px;
    line-height: 1.17;
  }
  .hero-section .content-area .title.mobile__large {
    font-size: 32px;
    line-height: 1.13;
  }
  .hero-section .content-area .title.mobile__x-large {
    font-size: 40px;
    line-height: 1.13;
  }
}

.hero-section .content-area .rte {
  margin: 8px 0 0;
  width: 100%;
  color: inherit;
}

.hero-section .content-area .button-wrapper {
  margin: 16px -8px -8px;
}

.hero-section .content-area .button-wrapper a.button {
  margin: 0 8px 8px;
  background-color: #151515;
  color: #fffbf6;
}

.hero-section .content-area .button-wrapper a.button:hover, .hero-section .content-area .button-wrapper a.button:active {
  background-color: #272625;
  color: #fffbf6;
}

.benefits {
  padding: 16px 0;
}

.benefits.benefits--large-padding {
  padding: 40px 0;
}

.benefits .section-header {
  text-align: center;
  margin: 0 0 35px;
}

@media (max-width: 834px) {
  .benefits .section-header {
    text-align: left;
    margin: 0 0 16px;
    padding: 0;
  }
}

.benefits .section-header .h2 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
  margin: 0;
}

@media (max-width: 480px) {
  .benefits .section-header .h2 {
    font-size: 22px;
  }
}

.benefits .benefits-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 834px) {
  .benefits .benefits-list.benefits-list--wrap {
    flex-wrap: wrap;
    margin: 0 0 -16px;
  }
  .benefits .benefits-list.benefits-list--wrap .benefits-item {
    width: 100%;
    margin: 0 0 16px;
  }
  .benefits .benefits-list.benefits-list--wrap .benefits-item .content-area .title {
    font-size: 18px;
    line-height: 1.13;
  }
  .benefits .benefits-list.benefits-list--wrap .benefits-item .content-area .subtitle {
    margin: 4px 0 0;
  }
}

.benefits .benefits-item .image-area {
  margin: 0 16px 0 0;
}

.benefits .benefits-item .image-area .icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits .benefits-item .image-area .icon img,
.benefits .benefits-item .image-area .icon svg {
  width: 20px;
  height: 20px;
}

.benefits .benefits-item .content-area .title {
  line-height: 1.22;
  margin: 0;
}

@media (max-width: 834px) {
  .benefits .benefits-item .content-area .title {
    font-size: 18px;
  }
}

.benefits .benefits-item .content-area .subtitle {
  line-height: 1.57;
  margin: 2px 0 0;
}

.featured-products .slider-wrapper {
  padding-left: 60px;
}

@media (min-width: 1494px) {
  .featured-products .slider-wrapper {
    padding-left: calc(var(--vw, 1vw) * 50 - 672px);
  }
}

@media (max-width: 834px) {
  .featured-products .slider-wrapper {
    padding-left: 16px;
  }
}

@media (max-width: 834px) {
  .featured-products .keen-slider .keen-nav {
    padding: 0;
  }
}

@media (min-width: 835px) {
  .featured-collections .section-header {
    margin: 0 auto 30px;
  }
}

.featured-collections .slider-wrapper {
  padding-bottom: 60px;
  margin-bottom: -60px;
  overflow: hidden;
}

@media (max-width: 834px) {
  .featured-collections .slider-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.featured-collections .keen-slider {
  margin: 0 -12px -16px;
}

@media (max-width: 834px) {
  .featured-collections .keen-slider {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }
}

.featured-collections .keen-slider .keen-slider__slide {
  padding: 0 12px 16px;
}

@media (max-width: 834px) {
  .featured-collections .keen-slider .keen-slider__slide {
    padding-left: 8px;
    padding-right: 8px;
  }

  .featured-collections .keen-slider .keen-slider__slide:first-of-type {
    padding-left: 0;
  }

  .featured-collections .keen-slider .keen-slider__slide:last-of-type {
    padding-right: 0;
  }
}

.featured-collections .keen-slider .keen-nav {
  margin: 0 12px;
  width: calc(100% - 12px - 12px);
}

@media (max-width: 834px) {
  .featured-collections .keen-slider .keen-nav {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .featured-collections .keen-slider .keen-nav .keen-arrow.keen-arrow-prev {
    left: 32px;
  }
}

.featured-card-links .section-header {
  margin: 0 auto 19px;
}

.featured-card-links .keen-slider {
  margin: 0 -12px -16px;
}

@media (min-width: 835px) {
  .featured-card-links .keen-slider.keen-slider--visible {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 834px) {
  .featured-card-links .keen-slider {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }
}

.featured-card-links .keen-slider .keen-slider__slide {
  padding: 0 10px;
}

@media (max-width: 834px) {
  .featured-card-links .keen-slider .keen-slider__slide {
    padding-left: 8px;
    padding-right: 8px;
  }

  .featured-card-links .keen-slider .keen-slider__slide:first-of-type {
    padding-left: 0;
  }

  .featured-card-links .keen-slider .keen-slider__slide:last-of-type {
    padding-right: 0;
  }
}

.featured-card-links .keen-slider .keen-nav {
  margin: 0 12px;
  width: calc(100% - 12px - 12px);
}

@media (max-width: 834px) {
  .featured-card-links .keen-slider .keen-nav {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .featured-card-links .keen-slider .keen-nav .keen-arrow.keen-arrow-prev {
    left: 32px;
  }
}

.featured-blog-posts .section-header {
  margin: 0 auto 16px;
}

.featured-blog-posts .keen-slider {
  display: flex;
  flex-wrap: wrap !important;
  margin: 0 -12px -88px;
}

@media (max-width: 834px) {
  .featured-blog-posts .keen-slider {
    flex-wrap: nowrap !important;
    margin-bottom: -16px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 8px;
  }
}

.featured-blog-posts .keen-slider .keen-slider__slide {
  width: 33.33%;
  padding: 0 12px 88px;
}

@media (max-width: 834px) {
  .featured-blog-posts .keen-slider .keen-slider__slide {
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 16px;
  }
}

.featured-blog-posts .keen-slider .keen-nav {
  margin: 0 12px;
  width: calc(100% - 12px - 12px);
}

@media (max-width: 834px) {
  .featured-blog-posts .keen-slider .keen-nav {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .featured-blog-posts .keen-slider .keen-nav .keen-arrow.keen-arrow-prev {
    left: 32px;
  }
}

.logos .section-header {
  margin-bottom: 16px;
}

.logos .slider-wrapper {
  position: relative;
}

.logos .slider-wrapper .keen-nav {
  position: absolute;
  top: 0;
  right: 60px;
  width: auto;
  transform: translateY(-100%);
  display: flex;
}

@media (max-width: 834px) {
  .logos .slider-wrapper .keen-nav {
    right: 16px;
  }
}

.logos .slider-wrapper .keen-nav .keen-arrow {
  width: 16px;
  height: 16px;
}

.logos .slider-wrapper .keen-nav .keen-arrow[disabled] {
  display: none;
}

.logos .slider-wrapper .keen-nav .keen-arrow-prev {
  margin: 0 16px 0 0;
  transform: rotate(180deg);
}

.logos .slider-wrapper .keen-slider .keen-slider__slide {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos .slider-wrapper .keen-slider .keen-slider__slide img {
  height: auto;
}

#shopify-section-ffc--footer .section-links {
  padding: 47px 0;
  color: #3a3a3a;
}

#shopify-section-ffc--footer .section-links .section-header {
  margin: 0 104px 0 0;
  border-bottom: 1px dashed #151515;
}

#shopify-section-ffc--footer .section-links .section-header .h2 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.22;
}

#shopify-section-ffc--footer .section-links .links-list {
  flex: 1;
}

#shopify-section-ffc--footer .section-links .links-list .link {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  letter-spacing: 0.56px;
  text-transform: none;
  margin: 0;
}

#shopify-section-ffc--footer .section-links .links-list .link:hover {
  color: #58a075;
  border-bottom: none;
}

#shopify-section-ffc--footer .section-links .links-list .link .image-area {
  margin: 0 16px 0 0;
}

#shopify-section-ffc--footer .section-links .links-list .link .image-area .icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#shopify-section-ffc--footer .section-links .links-list .link .image-area .icon img,
#shopify-section-ffc--footer .section-links .links-list .link .image-area .icon svg {
  width: 20px;
  height: 20px;
}

.instagram {
  margin-bottom: 24px;
}

.instagram .section-header {
  margin: 0 auto 16px;
}

.page-header {
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}

@media (max-width: 834px) {
  .page-header {
    margin-bottom: 24px;
  }
}

.page-header .image-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 834px) {
  .page-header .image-area {
    position: unset;
  }
}

@media (min-width: 835px) {
  .page-header .image-area .picture-element-wrapper {
    padding-bottom: 0;
    height: 100%;
  }
}

.page-header .image-area .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #151515;
}

@media (max-width: 834px) {
  .page-header .image-area .overlay {
    display: none;
  }
}

.page-header .content-area {
  position: relative;
  width: 100%;
  padding: 98px 112px;
  text-align: center;
}

@media (max-width: 834px) {
  .page-header .content-area {
    padding: 24px 0;
    text-align: left;
    background: #f9f9f9;
  }
}

.page-header .content-area .h1 {
  width: 100%;
  max-width: 888px;
  font-size: 38px;
  line-height: 1;
  margin: 0 auto;
}

@media (max-width: 834px) {
  .page-header .content-area .h1 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
    color: #272625 !important;
  }
}

.page-header .content-area .rte {
  width: 100%;
  max-width: 888px;
  font-size: 16px;
  line-height: 1.63;
  margin: 8px auto 0;
}

.page-header .content-area .rte * {
  color: inherit;
}

@media (max-width: 834px) {
  .page-header .content-area .rte * {
    color: #272625;
  }
}

.faq-section {
  margin-bottom: 102px;
}

@media (max-width: 834px) {
  .faq-section {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}

.faq-section .faq-aside-desktop {
  width: 349px;
  min-width: 349px;
  margin-right: 48px;
}

.faq-section .faq-aside-desktop .faq-nav {
  background-color: #f9f9f9;
  padding: 32px;
}

.faq-section .faq-aside-desktop .faq-nav h2 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
}

.faq-section .faq-aside-desktop .faq-nav .rte {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.57;
}

.faq-section .faq-aside-desktop .faq-nav ul {
  margin-bottom: -8px;
}

.faq-section .faq-aside-desktop .faq-nav ul li {
  margin-bottom: 8px;
}

.faq-section .faq-aside-desktop .faq-nav ul li a {
  font-size: 16px;
  line-height: 1.63;
}

.faq-section .faq-aside-desktop .faq-nav ul li a:hover {
  text-decoration: underline;
}

.faq-section .faq-aside-desktop .faq-callout {
  margin-top: 16px;
  text-align: center;
}

.faq-section .faq-aside-desktop .faq-callout .content-area {
  margin-top: 16px;
}

.faq-section .faq-aside-desktop .faq-callout .content-area h3 {
  font-size: 18px;
  line-height: 1.22;
}

.faq-section .faq-aside-desktop .faq-callout .content-area .rte {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.63;
}

.faq-section .faq-aside-mobile {
  background-color: #f9f9f9;
  padding: 12px 24px;
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  text-transform: uppercase;
  z-index: 10;
  width: 100% !important;
  position: absolute !important;
  left: 0;
}

.faq-section .faq-aside-mobile.sticky {
  position: fixed !important;
}

.faq-section .faq-aside-mobile h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-transform: uppercase;
}

.faq-section .faq-aside-mobile .select-dropdown li {
  margin-top: 8px;
}

@media (max-width: 834px) {
  .faq-section .faq-content {
    width: 100%;
    margin-top: 83px;
  }
}

.faq-section .faq-content .faq-category {
  margin-bottom: 0px;
}

@media (max-width: 834px) {
  .faq-section .faq-content .faq-category {
    margin-bottom: 40px;
  }
}

.faq-section .faq-content .faq-category:last-child .faq-item:last-child {
  margin-bottom: 0;
}

.faq-section .faq-content .faq-category .faq-category-title {
  margin-bottom: 26px;
}

@media (max-width: 834px) {
  .faq-section .faq-content .faq-category .faq-category-title {
    margin-bottom: 25px;
  }
}

.faq-section .faq-content .faq-category .faq-category-title img {
  display: block;
  width: auto;
  height: 50px;
  margin: 0 8px 0 0;
}

@media (max-width: 834px) {
  .faq-section .faq-content .faq-category .faq-category-title img {
    height: 20px;
  }
}

.faq-section .faq-content .faq-category .faq-category-title h2 {
  font-size: 34px;
  line-height: 1.12;
}

@media (max-width: 834px) {
  .faq-section .faq-content .faq-category .faq-category-title h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.faq-section .faq-content .faq-category .faq-item {
  padding: 16px;
  border: solid 1px #f9f9f9;
  margin-bottom: 24px;
}

@media (max-width: 834px) {
  .faq-section .faq-content .faq-category .faq-item {
    padding: 12px 8px;
  }
}

.faq-section .faq-content .faq-category .faq-item .faq-item-title h3 {
  font-size: 18px;
  line-height: 1.22;
}

@media (max-width: 834px) {
  .faq-section .faq-content .faq-category .faq-item .faq-item-title h3 {
    font-size: 14px;
    line-height: 1.43;
  }
}

.faq-section .faq-content .faq-category .faq-item .faq-item-content > *:first-child {
  margin-top: 8px;
}

.image-and-text {
  width: 100%;
}

@media (max-width: 834px) {
  .image-and-text {
    flex-wrap: wrap;
  }
}

@media (max-width: 834px) {
  .image-and-text .wrapper {
    flex-wrap: wrap;
  }
}

.image-and-text.image-and-text--rounded .image-area {
  max-width: 528px;
}

.image-and-text.image-and-text--rounded .image-area .picture-element-wrapper {
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
}

@media screen and (min-width: 1529px) {
  .image-and-text.image-and-text--fullwidth .content-area.content-area--image-left {
    padding-right: calc(50vw - 600px);
  }
  .image-and-text.image-and-text--fullwidth .content-area.content-area--image-right {
    padding-left: calc(50vw - 600px);
  }
}

.image-and-text .image-area {
  width: 50%;
  position: relative;
}

@media (max-width: 834px) {
  .image-and-text .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.image-and-text .image-area.image-area--left {
  order: 10;
}

.image-and-text .image-area.image-area--right {
  order: 30;
}

.image-and-text .image-area .picture-element-wrapper {
  height: 100%;
}

.image-and-text .image-area .video-popup-trigger {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.image-and-text .content-area {
  width: 50%;
  order: 20;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 834px) {
  .image-and-text .content-area {
    width: 100%;
    padding: 40px 16px;
  }
}

.image-and-text .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .image-and-text .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.image-and-text .content-area h1.h2 {
  font-size: 38px;
  line-height: 1;
  margin: 0;
}

@media (max-width: 834px) {
  .image-and-text .content-area h1.h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.image-and-text .content-area .rte.rte--narrow {
  max-width: 365px;
}

@media (max-width: 834px) {
  .image-and-text .content-area .rte.rte--narrow {
    max-width: 100%;
  }
}

@media (max-width: 834px) {
  .image-and-text .content-area .rte {
    margin: 8px 0 0;
  }
}

.image-and-text .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
  margin: 8px 0 0;
}

@media (max-width: 834px) {
  .image-and-text .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.image-and-text .content-area .button-wrapper {
  margin: 22px 0 0;
}

@media (max-width: 834px) {
  .image-and-text .content-area .button-wrapper {
    margin: 16px 0 0;
  }
}

.contact-page-header {
  margin-bottom: 160px;
}

@media (max-width: 834px) {
  .contact-page-header {
    flex-wrap: wrap;
    margin-bottom: 40px;
    overflow: hidden;
  }
}

.contact-page-header .content-area {
  flex: 0;
  padding: 80px 0 0 60px;
  margin-bottom: -80px;
}

@media screen and (min-width: 1529px) {
  .contact-page-header .content-area {
    padding-left: calc(50vw - 570px);
  }
}

@media (max-width: 834px) {
  .contact-page-header .content-area {
    padding: 0;
    flex: 100%;
    order: 20;
    background-color: #ffffff;
    margin-bottom: 0;
  }
}

.contact-page-header .content-area .inner {
  min-width: 460px;
}

@media (max-width: 834px) {
  .contact-page-header .content-area .inner {
    min-width: 100%;
  }
}

@media (max-width: 834px) {
  .contact-page-header .content-area .content {
    padding: 40px 16px;
    background-color: #f9f9f9;
    margin-bottom: 40px;
  }
}

.contact-page-header .content-area .h1 {
  font-size: 72px;
  line-height: 1.11;
  margin: 0;
}

@media (max-width: 834px) {
  .contact-page-header .content-area .h1 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.contact-page-header .content-area .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .contact-page-header .content-area .rte {
    font-size: 14px;
    line-height: 1.57;
    margin: 8px 0 0;
  }
}

.contact-page-header .content-area .button-wrapper {
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .contact-page-header .content-area .button-wrapper .button {
    font-family: "ModernEra", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline;
    line-height: 1.86;
    background: transparent;
    padding: 0;
    border: none;
    color: #272625;
    text-transform: unset;
    text-decoration: underline;
  }
  .contact-page-header .content-area .button-wrapper .button:hover {
    background: transparent;
    border: none;
    color: #272625;
  }
}

.contact-page-header .content-area .callouts {
  padding: 0 80px 0 0;
  margin: 40px 0 0;
}

@media (max-width: 834px) {
  .contact-page-header .content-area .callouts {
    padding: 0 16px;
  }
}

.contact-page-header .content-area .callouts li {
  background-color: #ffffff;
  margin: 0 0 16px;
  padding: 40px 40px 40px 42px;
  border-radius: 8px;
  border: solid 1px #f9f9f9;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 834px) {
  .contact-page-header .content-area .callouts li {
    padding: 16px;
  }
}

.contact-page-header .content-area .callouts li:last-child {
  margin: 0;
}

.contact-page-header .content-area .callouts li .title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.22;
}

@media (max-width: 834px) {
  .contact-page-header .content-area .callouts li .title {
    font-size: 22px;
    line-height: 1;
  }
}

.contact-page-header .content-area .callouts li .title img {
  width: 16px;
  margin: 0 16px 0 0;
}

.contact-page-header .content-area .callouts li .rte {
  font-size: 14px;
  line-height: 1.57;
  margin: 0;
}

.contact-page-header .images-area {
  flex: 1;
  padding-top: 64px;
  padding-bottom: 54px;
  position: relative;
}

@media (max-width: 834px) {
  .contact-page-header .images-area {
    flex: 100%;
    order: 10;
    padding: 16px;
  }
}

.contact-page-header .images-area .image-1 .picture-element-wrapper,
.contact-page-header .images-area .image-2 .picture-element-wrapper {
  padding-bottom: 100% !important;
  border-radius: 50%;
}

.contact-page-header .images-area .image-1 .picture-element-wrapper img,
.contact-page-header .images-area .image-2 .picture-element-wrapper img {
  display: block;
}

.contact-page-header .images-area .image-1 {
  position: relative;
  top: 0;
  right: -30%;
  width: 100%;
  max-width: 800px;
}

@media (max-width: 834px) {
  .contact-page-header .images-area .image-1 {
    width: 80%;
    min-width: 300px;
    margin-bottom: -44px;
    right: -40%;
  }
}

.contact-page-header .images-area .image-2 {
  position: absolute;
  bottom: -80px;
  left: 6px;
  width: 50%;
  max-width: 500px;
}

@media (max-width: 834px) {
  .contact-page-header .images-area .image-2 {
    min-width: 200px;
    bottom: 39px;
    left: 16px;
  }
}

.contact-page-form {
  margin-bottom: 80px;
  overflow: hidden;
}

@media (max-width: 834px) {
  .contact-page-form {
    margin-bottom: 40px;
  }
}

@media (max-width: 834px) {
  .contact-page-form > .wrapper {
    flex-wrap: wrap;
  }
}

.contact-page-form .grid {
  zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px;
}

.contact-page-form .grid::after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 749px) {
  .contact-page-form .grid {
    margin-left: -22px;
  }
}

.contact-page-form .grid__item {
  float: left;
  padding-left: 30px;
  width: 100%;
}

@media only screen and (max-width: 749px) {
  .contact-page-form .grid__item {
    padding-left: 22px;
  }
}

.contact-page-form .grid__item[class*="--push"] {
  position: relative;
}

.contact-page-form .grid--half-gutters {
  margin-left: -15px;
}

.contact-page-form .grid--half-gutters > .grid__item {
  padding-left: 15px;
}

@media only screen and (min-width: 750px) {
  .contact-page-form .medium-up--one-half {
    width: 50%;
  }
}

.contact-page-form label[for] {
  display: block;
  cursor: pointer;
}

.contact-page-form .form-vertical input, .contact-page-form .form-vertical select, .contact-page-form .form-vertical .disclosure__toggle, .contact-page-form .form-vertical textarea {
  display: block;
  width: 100%;
}

.contact-page-form .contact-form input, .contact-page-form .contact-form textarea {
  border: 1px solid #ddd;
}

.contact-page-form .sidebar-area {
  width: 540px;
  padding-right: 80px;
}

@media (max-width: 834px) {
  .contact-page-form .sidebar-area {
    width: 100%;
    padding: 0;
  }
}

.contact-page-form .sidebar-area .stores-area {
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

@media (max-width: 834px) {
  .contact-page-form .sidebar-area .stores-area {
    display: none;
  }
}

.contact-page-form .sidebar-area .stores-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0 0 32px;
  display: flex;
  align-items: center;
}

.contact-page-form .sidebar-area .stores-area .h2 img {
  display: block;
  width: 18px;
  margin-right: 16px;
}

.contact-page-form .sidebar-area .stores-area .stores-list li {
  margin-bottom: 24px;
}

.contact-page-form .sidebar-area .stores-area .stores-list li h3 {
  font-size: 18px;
  line-height: 1.22;
  margin: 0 0 8px;
}

.contact-page-form .sidebar-area .stores-area .stores-list li .rte {
  margin: 0 0 8px;
  color: #111921;
}

.contact-page-form .sidebar-area .stores-area .stores-list li .links a {
  font-size: 14px;
  line-height: 1.57;
  text-decoration: underline;
  margin-right: 16px;
}

.contact-page-form .sidebar-area .socials-area {
  padding: 40px;
  border-radius: 8px;
  border: solid 1px #f9f9f9;
  margin-top: 24px;
}

@media (max-width: 834px) {
  .contact-page-form .sidebar-area .socials-area {
    margin: 0 0 40px;
    padding: 16px;
  }
}

.contact-page-form .sidebar-area .socials-area .h2 {
  font-size: 18px;
  line-height: 1.22;
  margin: 0 0 16px;
}

.contact-page-form .sidebar-area .socials-area .social-icons {
  margin: 0 -45px 0 0;
}

.contact-page-form .sidebar-area .socials-area .social-icons li {
  margin-right: 45px;
  padding: 0;
}

.contact-page-form .form-area {
  width: calc(100% - 540px);
}

@media (max-width: 834px) {
  .contact-page-form .form-area {
    width: 100%;
  }
}

.contact-page-form .form-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 834px) {
  .contact-page-form .form-area .h2 {
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
  }
}

.contact-page-form .form-area .h2 img {
  display: block;
  width: 26px;
  margin-right: 16px;
}

@media (max-width: 834px) {
  .contact-page-form .form-area .h2 img {
    display: none;
  }
}

.contact-page-form .form-area .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .contact-page-form .form-area .rte {
    font-size: 14px;
    line-height: 1.57;
    margin: 8px 0 0;
  }
}

.contact-page-form .form-area .contact-form {
  margin: 24px 0 0;
}

.contact-page-form .form-area .contact-form label {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #000;
  margin-bottom: 8px;
}

.contact-page-form .form-area .contact-form input:not([type=submit]),
.contact-page-form .form-area .contact-form textarea {
  border-color: #DBD6CF;
  font-size: 16px;
  line-height: 1.63;
  padding: 11px 16px;
}

.contact-page-form .form-area .contact-form input:not([type=submit]),
.contact-page-form .form-area .contact-form select,
.contact-page-form .form-area .contact-form .disclosure__toggle,
.contact-page-form .form-area .contact-form textarea {
  margin-bottom: 24px;
}

.contact-page-form .form-area .contact-form .grid__item {
  margin-bottom: 0;
}

.contact-page-form .form-area .contact-form .button {
  width: unset !important;
  display: inherit;
  margin: 0;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-border-radius: 0px;
}

.collection .section-header {
  margin: 40px 0;
}

@media (max-width: 834px) {
  .collection .section-header {
    padding: 0;
  }
}

.collection .section-header .h1 {
  font-size: 34px;
  line-height: 1.12;
}

.collection .section-header .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 0;
}

.collection .section-header .linked-collections {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #f9f9f9;
}

.collection .section-header .linked-collections ul {
  width: 100%;
}

@media (min-width: 835px) {
  .collection .section-header .linked-collections ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 834px) {
  .collection .section-header .linked-collections ul {
    width: calc(100% + 16px);
    margin-right: -16px;
    margin-bottom: -10px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .collection .section-header .linked-collections ul::-webkit-scrollbar {
    display: none;
  }
}

.collection .section-header .linked-collections ul li {
  margin-right: 16px;
  margin-bottom: 10px;
}

@media (max-width: 834px) {
  .collection .section-header .linked-collections ul li {
    margin-right: 8px;
  }
}

.collection .section-header .linked-collections ul li:last-child {
  margin-right: 0;
}

.collection .section-header .linked-collections ul li a {
  display: block;
  padding: 4px 24px 6px;
  font-size: 16px;
  line-height: 26px;
  border-radius: 100px;
  background: #f9f9f9;
  white-space: nowrap;
}

@media (max-width: 834px) {
  .collection .section-header .linked-collections ul li a {
    font-size: 14px;
    line-height: 1.57;
  }
}

.collection .collection-grid {
  margin-bottom: 0;
}

.collection .collection-grid > li {
  width: 25%;
  margin: 0 0 22px;
}

@media (max-width: 834px) {
  .collection .collection-grid > li {
    width: 100%;
    margin: 0 0 16px;
  }
}

.collection .collection-pagination {
  margin: 0 0 40px;
}

.collection .collection-pagination .button {
  margin-bottom: 16px;
}

.collection .collection-pagination p {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
}

.collection-header {
  width: 100%;
  height: 472px;
}

@media (max-width: 834px) {
  .collection-header {
    flex-wrap: wrap;
    height: auto;
  }
}

.collection-header .image-area {
  width: calc(100% - 461px);
}

@media (max-width: 834px) {
  .collection-header .image-area {
    width: 100%;
  }
  .collection-header .image-area.image-area--mobile-top {
    order: 10 !important;
  }
  .collection-header .image-area.image-area--mobile-bottom {
    order: 30 !important;
  }
}

.collection-header .image-area.image-area--left {
  order: 10;
}

.collection-header .image-area.image-area--right {
  order: 30;
}

@media (min-width: 835px) {
  .collection-header .image-area .picture-element-wrapper {
    padding-bottom: 0;
    height: 100%;
  }
}

.collection-header .content-area {
  width: 461px;
  order: 20;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 834px) {
  .collection-header .content-area {
    width: 100%;
    padding: 24px 16px;
  }
}

.collection-header .content-area .h2 {
  font-size: 40px;
  line-height: 75px;
  margin: 0;
}

.collection-header .content-area .rte {
  max-width: 365px;
  margin: 8px 0 0;
}

.collection-header .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .collection-header .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.collection-info-grid .content-image-area {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area > .wrapper {
    flex-wrap: wrap;
  }
}

.collection-info-grid .content-image-area.has-products {
  padding-bottom: 160px;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area.has-products {
    padding-bottom: 0;
  }
}

.collection-info-grid .content-image-area .image-area {
  width: 50%;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area .image-area {
    width: 100%;
    order: 30 !important;
  }
}

.collection-info-grid .content-image-area .image-area.image-area--left {
  order: 10;
  padding-right: 80px;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area .image-area.image-area--left {
    padding-right: 0;
  }
}

.collection-info-grid .content-image-area .image-area.image-area--right {
  order: 30;
  padding-left: 80px;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area .image-area.image-area--right {
    padding-left: 0;
  }
}

.collection-info-grid .content-image-area .content-area {
  width: 50%;
  order: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area .content-area {
    width: 100%;
    margin-bottom: 24px;
  }
}

.collection-info-grid .content-image-area .content-area.content-area--image-right {
  padding-right: 12px;
}

.collection-info-grid .content-image-area .content-area.content-area--image-left {
  padding-left: 12px;
}

.collection-info-grid .content-image-area .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area .content-area .h2 {
    font-size: 22px;
    line-height: 1;
  }
}

.collection-info-grid .content-image-area .content-area .rte {
  margin: 16px 0 0;
}

.collection-info-grid .content-image-area .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.collection-info-grid .content-image-area .content-area .list {
  font-size: 14px;
  line-height: 1.57;
  margin: 16px 0 -8px;
  padding: 0;
}

@media (max-width: 834px) {
  .collection-info-grid .content-image-area .content-area .list {
    font-size: 12px;
    line-height: 1.83;
  }
}

.collection-info-grid .content-image-area .content-area .list li {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
}

.collection-info-grid .content-image-area .content-area .list li svg {
  width: 12px;
  height: 12px;
  margin-right: 16px;
  transform: rotate(-90deg);
}

.collection-info-grid .products-area {
  margin-top: -120px;
  max-width: 1002px;
}

.collection-info-grid .products-area.products-area-alt{
  margin-top: -120px;
  max-width: 1200px;
  padding: 0;
}

@media (max-width: 834px) {
  .collection-info-grid .products-area {
    margin-top: 16px;
  }
  .collection-info-grid .products-area.products-area-alt{
    margin-top: 0px;
  }
  .collection-info-grid .products-area .product-grid-alt > li {
    width: 100%;
    margin: 0 16px 16px 16px;
  }
}

.collection-info-grid .products-area .h2 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
  text-align: center;
  margin: 0 0 24px;
}

@media (max-width: 834px) {
  .collection-info-grid .products-area .h2 {
    display: none;
  }
}

.collection-info-grid .products-area .products-grid {
  justify-content: center;
  margin-bottom: -16px;
}

.collection-info-grid .products-area .product-grid-alt {
  gap: 20px;
}

.collection-info-grid .products-area .products-grid > li {
  width: 33.33%;
  margin-bottom: 16px;
}

.collection-info-grid .products-area .product-grid-alt > li {
  margin-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
  flex: 0 1 255px;
}

@media (max-width: 834px) {
  .collection-info-grid .products-area .products-grid > li {
    width: 100%;
  }
}




.text-circle {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 0;
  margin-top: 0;
}

.text-circle.ffc-section--no-margin-top {
  padding-top: 0;
}

.text-circle.ffc-section--no-margin-bottom {
  padding-bottom: 0;
}

@media (max-width: 834px) {
  .text-circle {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

.text-circle .wrapper {
  max-width: 952px;
  position: relative;
}

.text-circle .circle {
  position: absolute;
  left: 14%;
  top: 45%;
  transform: translate(-50%, -50%);
  height: 0;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 834px) {
  .text-circle .circle {
    top: 30px;
    left: 30px;
    width: 110px !important;
    padding-bottom: 110px !important;
  }
}

.text-circle .circle .picture-element-wrapper {
  padding-bottom: 100%;
}

.text-circle .circle .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.text-circle .content-area {
  text-align: center;
  position: relative;
}

@media (max-width: 834px) {
  .text-circle .content-area {
    text-align: left;
  }
}

.text-circle .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .text-circle .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.text-circle .content-area .rte * {
  font-size: 14px;
  line-height: 1.71;
  margin: 8px 0 0;
}

.text-circle .content-area .button-wrapper {
  text-align: center;
  margin: 16px 0 0;
}

.ffc-text {
  padding-top: 88px;
  padding-bottom: 88px;
  margin-bottom: 0;
  margin-top: 0;
}

.ffc-text.ffc-section--no-margin-top {
  padding-top: 0;
}

.ffc-text.ffc-section--no-margin-bottom {
  padding-bottom: 0;
}

@media (max-width: 834px) {
  .ffc-text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.ffc-text .wrapper {
  position: relative;
}

.ffc-text .wrapper.width--m {
  max-width: 890px;
}

.ffc-text .wrapper.width--s {
  max-width: 720px;
}

.ffc-text .content-area {
  position: relative;
}

@media (max-width: 834px) {
  .ffc-text .content-area {
    text-align: left !important;
  }
}

.ffc-text .content-area h1.h2 {
  font-size: 38px;
  line-height: 1;
}

.ffc-text .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-text .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.ffc-text .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
  margin: 8px 0 0;
}

@media (max-width: 834px) {
  .ffc-text .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.ffc-text .content-area .button-wrapper {
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .ffc-text .content-area .button-wrapper {
    text-align: left !important;
  }
}

.message-bar .keen-slider .keen-slider__slide {
  text-align: center;
  min-width: 100%;
}

.message-bar .keen-slider .keen-slider__slide .rte {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.67;
  padding: 12px;
  color: inherit;
}

.message-bar .keen-slider .keen-slider__slide .rte * {
  font-family: "ModernEra", Arial, sans-serif;
}

.message-bar .keen-slider .keen-slider__slide .rte p {
  color: inherit;
}

.message-bar .keen-slider .keen-slider__slide .rte a {
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

.message-bar .keen-slider .keen-slider__slide .rte a::before, .message-bar .keen-slider .keen-slider__slide .rte a::after {
  content: "";
  position: absolute;
  opacity: 1;
  left: 0;
  bottom: -1px;
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: 1.1s var(--ease-out-expo);
}

.message-bar .keen-slider .keen-slider__slide .rte a::before {
  transform: scaleX(0);
  transform-origin: left;
}

.message-bar .keen-slider .keen-slider__slide .rte a::after {
  transform-origin: right;
  transition-delay: 0.25s;
}

.message-bar .keen-slider .keen-slider__slide .rte a:hover {
  color: inherit;
}

.message-bar .keen-slider .keen-slider__slide .rte a:hover::before {
  transform: scaleX(1);
  transition-delay: 0.5s;
}

.message-bar .keen-slider .keen-slider__slide .rte a:hover::after {
  transform: scaleX(0);
  transition-delay: 0s;
}

.blog__container {
  padding: 80px 0;
}

@media (max-width: 834px) {
  .blog__container {
    padding: 40px 0;
  }
}

.blog__container .blog__top {
  margin-bottom: 24px;
}

.blog__container .blog__slider {
  display: flex;
  gap: 25px;
  overflow: visible;
}

@media (max-width: 480px) {
  .blog__container .blog__slider {
    gap: 16px;
  }
}

.blog__container .blog__slider > * {
  flex: 1;
}

.founder-section {
  width: 100%;
}

.founder-section .ffc-section {
  padding: 88px 0 68px;
}

@media (max-width: 834px) {
  .founder-section .ffc-section {
    padding: 40px 0;
  }
}

.founder-section .quote-area {
  max-width: 682px;
  text-align: center;
  margin: 0 auto 26px;
}

@media (max-width: 834px) {
  .founder-section .quote-area {
    max-width: 570px;
    text-align: left;
    margin: 0 auto 16px;
  }
}

.founder-section .quote-area .quote {
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: normal;
  margin: 0;
}

@media (max-width: 834px) {
  .founder-section .quote-area .quote {
    font-size: 26px;
    line-height: 1.31;
  }
}

.founder-section .quote-area .quote-author {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .founder-section .quote-area .quote-author {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.57;
    margin: 8px 0 0;
  }
}

.founder-section .image-area {
  width: 50%;
  max-width: 520px;
}

@media (max-width: 834px) {
  .founder-section .image-area {
    width: 100%;
    order: 10;
    margin: 0 0 24px;
  }
}

.founder-section .image-area .picture-element-wrapper {
  padding-bottom: 100%;
  border-radius: 50%;
}

.founder-section .content-area {
  width: 50%;
  max-width: 570px;
  padding: 0 88px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 834px) {
  .founder-section .content-area {
    width: 100%;
    order: 20;
    padding: 0;
  }
}

.founder-section .content-area .h2 {
  font-size: 18px;
  line-height: 1.22;
  margin: 0;
}

@media (max-width: 834px) {
  .founder-section .content-area .h2 {
    font-family: "ModernEra", Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.44;
  }
}

.founder-section .content-area .rte {
  margin: 12px 0 0;
}

@media (max-width: 834px) {
  .founder-section .content-area .rte {
    margin: 16px 0 0;
  }
}

.founder-section .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .founder-section .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.founder-section .content-area .signature {
  font-family: HolidayFree;
  font-size: 24px;
  line-height: 1.33;
  color: #000;
  margin: 32px 0 0;
}

@media (max-width: 834px) {
  .founder-section .content-area .signature {
    font-size: 16px;
    line-height: 2;
  }
}

.founder-section .content-area .role {
  font-size: 14px;
  line-height: 1.71;
  margin: 8px 0 0;
}

@media (max-width: 834px) {
  .founder-section .content-area .role {
    margin: 4px 0 0;
  }
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--has-bg.ffc-text-icons--wide {
    padding-left: 0;
    padding-right: 0;
  }
}

.ffc-text-icons.ffc-text-icons--has-bg .bg-wrapper {
  padding-top: 68px;
  padding-bottom: 75px;
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--has-bg .bg-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .h2 {
  max-width: 546px;
  margin: 0 auto;
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .rte {
  max-width: 546px;
  margin: 16px auto 0;
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list {
  margin: 24px 0 32px -80px;
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list {
    flex-wrap: wrap;
    margin: 39px 0 -8px;
  }
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list .icons-item {
  width: 100%;
  padding: 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  max-width: 250px;
  margin: 0 0 0 80px;
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list .icons-item {
    max-width: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 16px;
  }
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list .icons-item .image-area {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list .icons-item .image-area {
    margin: 0 16px 0 0;
  }
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list .icons-item .image-area img {
  width: 100%;
  height: auto;
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list .icons-item .content-area h4 {
  font-size: 18px;
  line-height: 1.22;
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .icons-list .icons-item .content-area .subtitle {
  margin: 3px 0 0;
}

.ffc-text-icons.ffc-text-icons--narrow .content-area .button-wrapper {
  margin: 16px auto 0;
  max-width: 546px;
}

.ffc-text-icons.ffc-text-icons--wide .content-area .icons-list {
  padding: 0 56px;
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--wide .content-area .icons-list {
    padding: 0 16px;
    margin: 0;
  }
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--wide .content-area .icons-list .icons-item {
    background: #fff;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    padding: 16px;
  }
}

.ffc-text-icons.ffc-text-icons--wide .content-area .icons-list .icons-item .image-area {
  width: 100%;
  max-width: 250px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto 37px;
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--wide .content-area .icons-list .icons-item .image-area {
    max-width: 48px;
    margin: 0 20px 0 0;
    background: unset;
    box-shadow: unset;
  }
}

.ffc-text-icons.ffc-text-icons--wide .content-area .icons-list .icons-item .image-area img {
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 40px auto 44px;
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--wide .content-area .icons-list .icons-item .image-area img {
    margin: 0;
  }
}

@media (max-width: 834px) {
  .ffc-text-icons.ffc-text-icons--wide .content-area .button-wrapper {
    margin: 8px 0 0;
  }
}

.ffc-text-icons .content-area {
  text-align: center;
}

@media (max-width: 480px) {
  .ffc-text-icons .content-area {
    text-align: left;
  }
}

.ffc-text-icons .content-area .h2 {
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-text-icons .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.ffc-text-icons .content-area .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 24px;
}

.ffc-text-icons .content-area .icons-list {
  margin: 0 0 32px -88px;
}

@media (max-width: 834px) {
  .ffc-text-icons .content-area .icons-list {
    flex-wrap: wrap;
  }
}

.ffc-text-icons .content-area .icons-list .icons-item {
  width: 100%;
  max-width: 368px;
  margin: 0 0 0 88px;
}

@media (max-width: 834px) {
  .ffc-text-icons .content-area .icons-list .icons-item {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0 0 16px;
  }
}

.ffc-text-icons .content-area .icons-list .icons-item .content-area h4 {
  margin: 0;
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
}

@media (max-width: 834px) {
  .ffc-text-icons .content-area .icons-list .icons-item .content-area h4 {
    font-size: 18px;
    line-height: 1.22;
  }
  .ffc-text-icons .content-area .icons-list .icons-item .content-area h4 br {
    display: none;
  }
}

.ffc-text-icons .content-area .icons-list .icons-item .content-area .subtitle {
  line-height: 1.57;
  margin: 3px 0 0;
}

@media (max-width: 834px) {
  .ffc-text-icons .content-area .icons-list .icons-item .content-area .subtitle {
    display: none;
  }
}

.ffc-text-icons .content-area .button-wrapper {
  margin: 40px 0 0;
}

@media (max-width: 834px) {
  .ffc-image.ffc-image--has-content.ffc-image--has-video-popup .image-area .content-area {
    padding: 174px 63px 234px;
  }
}

@media (max-width: 834px) {
  .ffc-image.ffc-image--has-content .image-area .picture-element-wrapper {
    position: unset;
    height: 100%;
    padding-bottom: 0 !important;
  }
}

.ffc-image.ffc-image--has-content .image-area .content-area {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 660px;
  text-align: center;
}

@media (max-width: 834px) {
  .ffc-image.ffc-image--has-content .image-area .content-area {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    text-align: left;
    padding: 174px 63px;
  }
}

.ffc-image.ffc-image--has-content .image-area .content-area .h2 {
  font-size: 38px;
  line-height: 1;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-image.ffc-image--has-content .image-area .content-area .h2 {
    font-size: 28px;
    line-height: 1.14;
  }
}

.ffc-image.ffc-image--has-content .image-area .content-area .rte {
  margin: 16px 0 0;
  color: inherit;
}

@media (max-width: 834px) {
  .ffc-image.ffc-image--has-content .image-area .content-area .rte {
    margin: 8px 0 0;
  }
}

.ffc-image.ffc-image--has-content .image-area .content-area .rte * {
  color: inherit;
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .ffc-image.ffc-image--has-content .image-area .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

@media (max-width: 834px) {
  .ffc-image .wrapper {
    padding: 0;
  }
}

.ffc-image .image-area {
  position: relative;
}

.ffc-image .image-area .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #151515;
}

.ffc-image .image-area .video-popup-trigger {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

@media (max-width: 834px) {
  .ffc-image .image-area .video-popup-trigger {
    right: auto;
    left: 63px;
    bottom: 174px;
  }
}

.team-section {
  width: 100%;
}

@media (max-width: 834px) {
  .team-section .wrapper {
    padding: 0;
  }
}

.team-section .text-area {
  text-align: center;
  position: relative;
  max-width: 888px;
  margin: 88px auto 40px;
}

@media (max-width: 834px) {
  .team-section .text-area {
    text-align: left;
    background: #f9f9f9;
    padding: 35px 16px;
    margin: 0;
  }
}

.team-section .text-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .team-section .text-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.team-section .text-area .rte * {
  font-size: 16px;
  line-height: 1.63;
  margin: 8px 0 0;
}

@media (max-width: 834px) {
  .team-section .text-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.team-section .text-area .button-wrapper {
  text-align: center;
  margin: 16px 0 0;
}

.team-section .team-area {
  position: relative;
  overflow: hidden;
}

.team-section .team-area .image-area {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 834px) {
  .team-section .team-area .image-area {
    position: relative;
  }
}

@media (min-width: 835px) {
  .team-section .team-area .image-area .picture-element-wrapper {
    height: 100%;
    padding-bottom: 0 !important;
  }
}

.team-section .team-area .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #151515;
}

.team-section .team-area .team-list {
  width: calc(100% + 1px);
}

@media (max-width: 834px) {
  .team-section .team-area .team-list {
    display: none;
  }
}

.team-section .team-area .team-list .team-item {
  width: 20%;
  position: relative;
  border: 1px solid #fff;
  border-left: none;
  border-top: none;
}

.team-section .team-area .team-list .team-item > .inner {
  width: 100%;
  padding-bottom: 100%;
  opacity: 0;
  transition: opacity ease 0.3s;
}

.team-section .team-area .team-list .team-item > .inner:hover {
  opacity: 1;
}

.team-section .team-area .team-list .team-item > .inner .image-area {
  width: 100%;
  height: 100%;
}

.team-section .team-area .team-list .team-item > .inner .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-section .team-area .team-list .team-item > .inner .content-area {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.team-section .team-area .team-list .team-item > .inner .content-area .title {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.13;
}

.team-section .team-area .team-list .team-item > .inner .content-area .subtitle {
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 12px;
  margin: 4px 0 0;
  color: inherit;
}

.blog-hero {
  width: 100%;
  padding-top: 33px;
  padding-bottom: 33px;
  margin-bottom: 55px;
  max-width: 1750px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 834px) {
  .blog-hero {
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}

.blog-hero .image-area {
  flex: 591px 0 0;
  position: relative;
  padding: 15px 48px 15px 15px;
}

@media screen and (max-width: 1500px) {
  .blog-hero .image-area {
    flex: 558px 0 0;
    padding: 15px;
    margin-right: -100px;
  }
}

@media (max-width: 834px) {
  .blog-hero .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.blog-hero .image-area.image-area--left {
  order: 10;
}

.blog-hero .image-area.image-area--right {
  order: 30;
}

.blog-hero .image-area .picture-element-wrapper {
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
}

.blog-hero .content-area {
  width: 100%;
  order: 20;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 834px) {
  .blog-hero .content-area {
    width: 100%;
    padding: 40px 16px 0;
  }
}

.blog-hero .content-area .h2 {
  font-size: 72px;
  line-height: 1.11;
  letter-spacing: normal;
  margin: 0;
}

@media (max-width: 834px) {
  .blog-hero .content-area .h2 {
    font-size: 28px;
    line-height: 1.14;
    text-transform: uppercase;
  }
}

.blog-hero .content-area .rte {
  margin: 16px 0 0;
  max-width: 774px;
}

@media (max-width: 834px) {
  .blog-hero .content-area .rte {
    margin: 8px 0 0;
  }
}

.blog-hero .content-area .rte * {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: normal;
}

@media (max-width: 834px) {
  .blog-hero .content-area .rte * {
    font-size: 16px;
    line-height: 1.88;
  }
}

.blog-categories {
  background-color: #f9f9f9;
  margin-bottom: 88px;
  padding-top: 27px;
  padding-bottom: 27px;
}

@media (max-width: 834px) {
  .blog-categories {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 834px) {
  .blog-categories > .flex {
    flex-wrap: wrap;
  }
}

.blog-categories h3 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
  margin: 0 24px 0 0;
}

@media (max-width: 834px) {
  .blog-categories h3 {
    font-size: 22px;
    line-height: 1;
    margin: 0;
  }
}

@media (max-width: 834px) {
  .blog-categories .blog-categories-list {
    margin-top: 16px;
    margin-right: -16px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .blog-categories .blog-categories-list::-webkit-scrollbar {
    display: none;
  }
}

.blog-categories .blog-categories-list li {
  margin: 0 8px 0 0;
}

.blog-categories .blog-categories-list li a {
  min-width: 170px;
  background-color: #dbd6cf;
  padding: 8px 40px 8px 8px;
  border-radius: 49px;
}

@media (max-width: 834px) {
  .blog-categories .blog-categories-list li a {
    min-width: auto;
    background-color: #f9f9f9;
    padding: 5px 24px 7px;
    display: flex;
    align-items: center;
  }
}

.blog-categories .blog-categories-list li a img {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 16px 0 0;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 834px) {
  .blog-categories .blog-categories-list li a img {
    width: 20px;
    height: 20px;
    margin: 0 8px 0 0;
  }
}

.blog-categories .blog-categories-list li a h4 {
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: normal;
}

@media (max-width: 834px) {
  .blog-categories .blog-categories-list li a h4 {
    font-family: "ModernEra", Arial, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.57;
    white-space: nowrap;
  }
}

.blog.blog--simple {
  margin-bottom: 88px;
}

.blog.blog--simple .section-header .h2 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
}

.blog.blog--simple .section-header a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.63;
  text-decoration: underline;
}

.blog.blog--simple .blog-grid li {
  width: 33.33%;
  margin-bottom: 24px;
}

@media (max-width: 834px) {
  .blog.blog--simple .blog-grid li {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .blog.blog--simple .blog-grid li {
    width: 100%;
  }
}

.blog.blog--simple .pagination {
  padding-top: 64px;
}

.blog .section-header {
  padding-left: 0;
  margin-bottom: 24px;
}

@media (max-width: 834px) {
  .blog .featured-articles .section-header {
    display: none;
  }
}

.blog .featured-articles .section-header .h2 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
}

.blog .blog-category {
  border-top: 1px solid #d9d9d9;
  padding-top: 88px;
}

@media (max-width: 834px) {
  .blog .blog-category {
    padding-top: 40px;
  }
}

.blog .blog-category .section-header {
  padding: 0;
}

@media (max-width: 834px) {
  .blog .blog-category .section-header {
    margin-bottom: 16px;
  }
}

.blog .blog-category .section-header .h2 {
  font-size: 34px;
  line-height: 1.12;
}

@media (max-width: 834px) {
  .blog .blog-category .section-header .h2 {
    font-size: 22px;
    line-height: 1;
  }
}

.blog .blog-category .section-header a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.63;
  text-decoration: underline;
}

@media (max-width: 834px) {
  .blog .blog-category .section-header a {
    display: none;
  }
}

.blog .slider-wrapper {
  padding-left: 60px;
}

@media (min-width: 1494px) {
  .blog .slider-wrapper {
    padding-left: calc(var(--vw, 1vw) * 50 - 672px);
  }
}

@media (max-width: 834px) {
  .blog .slider-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.blog .keen-slider {
  margin: 0 -12px -16px;
}

@media (max-width: 834px) {
  .blog .keen-slider {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 8px;
  }
}

.blog .keen-slider .keen-slider__slide {
  padding: 0 12px 16px;
}

@media (max-width: 834px) {
  .blog .keen-slider .keen-slider__slide {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.blog .keen-slider .keen-nav {
  margin: 0 12px;
  width: calc(100% - 12px - 12px);
}

@media (max-width: 834px) {
  .blog .keen-slider .keen-nav {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .blog .keen-slider .keen-nav .keen-arrow.keen-arrow-prev {
    left: 32px;
  }
}

.retail-store .image-content {
  width: 100%;
}

@media (max-width: 834px) {
  .retail-store .image-content {
    flex-wrap: wrap;
    background-color: #f9f9f9 !important;
  }
}

@media (max-width: 834px) {
  .retail-store .image-content .wrapper {
    flex-wrap: wrap;
  }
}

.retail-store .image-content .image-area {
  width: 50%;
  position: relative;
}

@media (max-width: 834px) {
  .retail-store .image-content .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.retail-store .image-content .image-area.image-area--left {
  order: 10;
}

.retail-store .image-content .image-area.image-area--right {
  order: 30;
}

.retail-store .image-content .image-area .picture-element-wrapper {
  height: 100%;
}

.retail-store .image-content .content-area {
  width: 50%;
  order: 20;
  padding: 64px 75px;
  padding-bottom: 214px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 410px;
}

@media screen and (min-width: 1529px) {
  .retail-store .image-content .content-area.content-area--image-left {
    padding-right: calc(50vw - 600px);
  }
  .retail-store .image-content .content-area.content-area--image-right {
    padding-left: calc(50vw - 600px);
  }
}

@media (max-width: 834px) {
  .retail-store .image-content .content-area {
    width: 100%;
    min-height: unset;
    padding: 20px 15px;
  }
}

.retail-store .image-content .content-area .h2 {
  font-size: 29px;
  line-height: 110%;
  letter-spacing: 0.58px;
  margin: 0;
}

.retail-store .image-content .content-area .h2 .small {
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 110%;
  letter-spacing: 0.26px;
  text-transform: uppercase;
}

@media (max-width: 834px) {
  .retail-store .image-content .content-area .rte {
    margin: 10px 0 0;
  }
}

.retail-store .image-content .content-area .rte * {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 170%;
  letter-spacing: 0.26px;
}

@media (max-width: 834px) {
  .retail-store .image-content .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.retail-store .image-content .content-area .button-wrapper {
  margin: 22px 0 0;
}

@media (max-width: 834px) {
  .retail-store .image-content .content-area .button-wrapper {
    margin: 16px 0 0;
  }
}

.retail-store .about-contact {
  position: relative;
  margin-top: -150px;
  padding: 0 32px;
  z-index: 1;
}

@media (max-width: 834px) {
  .retail-store .about-contact {
    margin-top: 0;
    padding: 0;
  }
}

.retail-store .about-contact .inner {
  padding: 40px 150px;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .retail-store .about-contact .inner {
    padding: 40px 75px;
  }
}

@media (max-width: 834px) {
  .retail-store .about-contact .inner {
    flex-wrap: wrap;
    padding: 0;
  }
}

.retail-store .about-contact .about-area {
  padding-right: 24px;
  border-right: 1px solid #38383A;
}

@media (max-width: 834px) {
  .retail-store .about-contact .about-area {
    border-right: unset;
    padding: 20px 15px 24px;
  }
}

.retail-store .about-contact .contact-area {
  padding-left: 24px;
}

@media (max-width: 834px) {
  .retail-store .about-contact .contact-area {
    padding: 24px 15px 20px;
  }
}

.retail-store .about-contact .about-area,
.retail-store .about-contact .contact-area {
  width: 50%;
}

@media (max-width: 834px) {
  .retail-store .about-contact .about-area,
  .retail-store .about-contact .contact-area {
    width: 100%;
  }
}

@media (max-width: 834px) {
  .retail-store .mobile-divider {
    margin: 0px auto;
    width: calc(100% - 30px);
    height: 1px;
    background: #38383A;
  }
}

.retail-store .about-contact .about-area .h3,
.retail-store .about-contact .contact-area .h3 {
  font-size: 12px;
  letter-spacing: normal;
  color: #000;
  margin: 0 0 15px;
}

.retail-store .about-contact .about-area a, 
.retail-store .about-contact .about-area p,
.retail-store .about-contact .contact-area a,
.retail-store .about-contact .contact-area p {
  font-size: 13px;
  line-height: 164%;
  letter-spacing: 0.26px;
  color: #000000;
}

.retail-store .about-contact .about-area .rte > p + p {
  margin-top: 0;
}

.retail-store .about-contact .about-area a,
.retail-store .about-contact .contact-area a {
  text-decoration: underline;
}

@media (max-width: 834px) {
  .retail-store .about-contact .about-area a[href^="tel:"],
  .retail-store .about-contact .contact-area a[href^="tel:"] {
    padding: 10px;
    margin: -10px;
  }
}

@media (max-width: 834px) {
  .retail-store .about-contact .about-area a,
  .retail-store .about-contact .contact-area a {
    margin-bottom: 6px;
  }
}

.retail-store .about-contact .about-area svg,
.retail-store .about-contact .contact-area svg {
  margin-right: 13px;
}

.retail-store .about-contact .about-area > .flex,
.retail-store .about-contact .contact-area > .flex {
  margin-bottom: 10px;
}

.retail-store .about-contact .about-area > .flex:last-child,
.retail-store .about-contact .contact-area > .flex:last-child {
  margin-bottom: 0;
}

.retail-store .button-wrapper--about {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.retail-store .about-contact .about-area .button-wrapper--about .button {
  margin: 0;
  padding: 12px 18px !important; /* important needed to override styles */
  font-size: 12px !important; /* important needed to override styles */
  text-decoration: none;
}

.retail-manager-section {
  width: 100%;
}

.retail-manager-section .ffc-section {
  padding: 88px 0;
}

@media (max-width: 834px) {
  .retail-manager-section .ffc-section {
    padding: 40px 0;
  }
}

.retail-manager-section .section-header {
  margin: 0 0 16px;
}

@media (max-width: 834px) {
  .retail-manager-section .section-header {
    padding: 0;
  }
}

.retail-manager-section .section-header .h2 {
  font-size: 26px;
  line-height: 1.31;
  margin: 0;
}

.retail-manager-section .image-area {
  width: 50%;
  max-width: 520px;
}

@media (max-width: 834px) {
  .retail-manager-section .image-area {
    width: 100%;
    order: 10;
    margin: 0 0 24px;
  }
}

.retail-manager-section .image-area .picture-element-wrapper {
  padding-bottom: 100%;
  border-radius: 50%;
}

.retail-manager-section .content-area {
  width: 50%;
  padding: 0 140px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 834px) {
  .retail-manager-section .content-area {
    width: 100%;
    order: 20;
    padding: 0;
  }
}

.retail-manager-section .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .retail-manager-section .content-area .h2 {
    font-family: "ModernEra", Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.44;
  }
}

.retail-manager-section .content-area .h3 {
  font-size: 18px;
  line-height: 1.22;
  font-weight: 500;
  margin: 8px 0 0;
}

@media (max-width: 834px) {
  .retail-manager-section .content-area .h3 {
    margin: 0;
  }
}

.retail-manager-section .content-area .rte {
  margin: 36px 0 0;
}

@media (max-width: 834px) {
  .retail-manager-section .content-area .rte {
    margin: 16px 0 0;
  }
}

.retail-manager-section .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .retail-manager-section .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.retail-manager-section .content-area .signature {
  font-family: HolidayFree;
  font-size: 24px;
  line-height: 1.33;
  color: #000;
  margin: 32px 0 0;
}

@media (max-width: 834px) {
  .retail-manager-section .content-area .signature {
    font-size: 16px;
    line-height: 2;
    margin: 16px 0 0;
  }
}

.retail-manager-section .content-area .role {
  font-size: 14px;
  line-height: 1.71;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .retail-manager-section .content-area .role {
    margin: 4px 0 0;
  }
}

.ffc-image-gallery .section-header {
  text-align: left;
  margin: 0 0 16px;
}

@media (max-width: 834px) {
  .ffc-image-gallery .section-header {
    padding: 0;
  }
}

.ffc-image-gallery .section-header .h2 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-image-gallery .section-header .h2 {
    font-size: 22px;
    line-height: 1;
  }
}

@media (min-width: 835px) {
  .ffc-image-gallery .ffc-image-gallery-list--1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
  }
}

@media (max-width: 834px) {
  .ffc-image-gallery .ffc-image-gallery-list--1 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px -8px;
  }
}

@media (max-width: 834px) {
  .ffc-image-gallery .ffc-image-gallery-list--1 .ffc-image-gallery-item:nth-child(1) {
    width: 100%;
  }
  .ffc-image-gallery .ffc-image-gallery-list--1 .ffc-image-gallery-item:nth-child(1) .picture-element-wrapper {
    padding-bottom: 50%;
  }
}

@media (min-width: 835px) {
  .ffc-image-gallery .ffc-image-gallery-list--1 .ffc-image-gallery-item:nth-child(2) {
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .ffc-image-gallery .ffc-image-gallery-list--1 .ffc-image-gallery-item:nth-child(2) .picture-element-wrapper {
    padding-bottom: calc(118.7% + 8px);
  }
}

@media (max-width: 834px) {
  .ffc-image-gallery .ffc-image-gallery-list--1 .ffc-image-gallery-item {
    width: 50%;
    padding: 0 4px;
    margin-bottom: 8px;
  }
}

.ffc-image-gallery .ffc-image-gallery-list--1 .ffc-image-gallery-item .picture-element-wrapper {
  padding-bottom: 59.4%;
}

@media (max-width: 834px) {
  .ffc-image-gallery .ffc-image-gallery-list--1 .ffc-image-gallery-item .picture-element-wrapper {
    padding-bottom: 100%;
  }
}

.ffc-image-gallery .ffc-image-gallery-list--2 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -24px -24px;
}

@media (max-width: 834px) {
  .ffc-image-gallery .ffc-image-gallery-list--2 {
    margin: 0 0 -8px -8px;
  }
}

.ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item {
  width: calc(25% - 24px - 8px);
  margin-left: 24px;
  margin-bottom: 24px;
}

@media (max-width: 834px) {
  .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item {
    width: calc(50% - 8px);
    margin-left: 8px;
    margin-bottom: 8px;
  }
}

.ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(1), .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(6), .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(7), .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(12) {
  width: calc(50% - 8px);
}

@media (max-width: 834px) {
  .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(1), .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(6), .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(7), .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(12) {
    width: 100%;
  }
}

.ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(1) .picture-element-wrapper, .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(6) .picture-element-wrapper, .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(7) .picture-element-wrapper, .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(12) .picture-element-wrapper {
  padding-bottom: calc(50% - 24px - 4px);
}

@media (max-width: 834px) {
  .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(1) .picture-element-wrapper, .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(6) .picture-element-wrapper, .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(7) .picture-element-wrapper, .ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item:nth-child(12) .picture-element-wrapper {
    padding-bottom: 50%;
  }
}

.ffc-image-gallery .ffc-image-gallery-list--2 .ffc-image-gallery-item .picture-element-wrapper {
  padding-bottom: 100%;
}

.testimonials-section {
  padding-top: 108px;
  padding-bottom: 100px;
}

@media (max-width: 834px) {
  .testimonials-section {
    padding: 40px 0;
  }
}

.testimonials-section .slider-wrapper {
  padding: 0 50px;
  overflow: hidden;
}

@media (max-width: 834px) {
  .testimonials-section .slider-wrapper {
    padding: 0;
  }
}

.testimonials-section .slider-wrapper .keen-slider {
  overflow: visible;
}

.testimonials-section .slider-wrapper .keen-slider .keen-slider__slide {
  padding: 0 50px;
}

@media (max-width: 834px) {
  .testimonials-section .slider-wrapper .keen-slider .keen-slider__slide {
    padding: 0 25px;
  }
}

@media (max-width: 480px) {
  .testimonials-section .slider-wrapper .keen-slider .keen-slider__slide {
    padding: 0;
  }
}

.testimonials-section .slider-wrapper .keen-slider .keen-slider__slide svg {
  margin-bottom: 16px;
}

.testimonials-section .slider-wrapper .keen-slider .keen-slider__slide .h3 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
  margin: 0;
}

.testimonials-section .slider-wrapper .keen-slider .keen-slider__slide .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 0;
}

.testimonials-section .slider-wrapper .keen-slider .keen-slider__slide .author {
  font-size: 16px;
  font-style: italic;
  line-height: 1.63;
  margin: 5px 0 0;
}

.testimonials-section .slider-wrapper .keen-slider .keen-slider__slide .flex {
  font-size: 12px;
  color: #000000;
}

.testimonials-section .slider-wrapper .keen-slider .keen-slider__slide .flex img {
  height: 16px;
  margin: 0 0 0 8px;
}

.testimonials-section .slider-wrapper .keen-slider .keen-arrow {
  background: #E6E6E6;
}

.testimonials-section .slider-wrapper .keen-slider .keen-arrow.keen-arrow-prev {
  left: -50px;
}

.testimonials-section .slider-wrapper .keen-slider .keen-arrow.keen-arrow-next {
  right: -50px;
}

.ffc-landing-content-1 {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 88px 48px;
}

@media (max-width: 834px) {
  .ffc-landing-content-1 {
    flex-wrap: wrap;
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-1 .wrapper {
    flex-wrap: wrap;
  }
}

.ffc-landing-content-1 .image-area {
  width: 36%;
  position: relative;
  margin: -36px 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-1 .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.ffc-landing-content-1 .image-area.image-area--left {
  order: 10;
}

.ffc-landing-content-1 .image-area.image-area--right {
  order: 30;
}

.ffc-landing-content-1 .image-area .picture-element-wrapper {
  height: 100%;
}

.ffc-landing-content-1 .image-area .video-popup-trigger {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.ffc-landing-content-1 .content-area {
  width: 64%;
  order: 20;
  padding: 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 834px) {
  .ffc-landing-content-1 .content-area {
    width: 100%;
    padding: 40px 16px;
  }
}

.ffc-landing-content-1 .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-1 .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.ffc-landing-content-1 .content-area .rte {
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-1 .content-area .rte {
    margin: 8px 0 0;
  }
}

.ffc-landing-content-1 .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .ffc-landing-content-1 .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.ffc-landing-content-1 .content-area .button-wrapper {
  margin: 16px 0 0;
}

.ffc-landing-content-2 {
  width: 100%;
  padding: 114px 0 120px;
}

@media (max-width: 834px) {
  .ffc-landing-content-2 {
    flex-wrap: wrap;
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-2 .wrapper {
    flex-wrap: wrap;
  }
}

.ffc-landing-content-2 .image-area {
  width: 30%;
  position: relative;
}

@media (max-width: 834px) {
  .ffc-landing-content-2 .image-area {
    width: 100%;
  }
}

.ffc-landing-content-2 .image-area.image-area--1 {
  margin-bottom: -120px;
}

.ffc-landing-content-2 .image-area.image-area--2 {
  margin-top: -114px;
}

.ffc-landing-content-2 .image-area .picture-element-wrapper {
  height: 100%;
}

.ffc-landing-content-2 .image-area .video-popup-trigger {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.ffc-landing-content-2 .content-area {
  width: 40%;
  padding: 0 80px;
  text-align: center;
}

@media (max-width: 834px) {
  .ffc-landing-content-2 .content-area {
    width: 100%;
    padding: 40px 16px;
  }
}

.ffc-landing-content-2 .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-2 .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-2 .content-area .rte {
    margin: 8px 0 0;
  }
}

.ffc-landing-content-2 .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
  margin: 8px 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-2 .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.ffc-landing-content-2 .content-area .button-wrapper {
  margin: 22px 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-2 .content-area .button-wrapper {
    margin: 16px 0 0;
  }
}

.ffc-landing-content-3 {
  width: 100%;
  position: relative;
}

@media (max-width: 834px) {
  .ffc-landing-content-3 {
    flex-wrap: wrap;
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-3 .wrapper {
    flex-wrap: wrap;
  }
}

.ffc-landing-content-3 .image-area {
  position: relative;
}

@media (max-width: 834px) {
  .ffc-landing-content-3 .image-area {
    width: 100%;
  }
}

.ffc-landing-content-3 .image-area.image-area--1 {
  width: 45%;
}

.ffc-landing-content-3 .image-area.image-area--1 .picture-element-wrapper {
  height: 100%;
}

.ffc-landing-content-3 .image-area.image-area--2 {
  width: 40%;
  margin: 0 -154px 40px auto;
}

.ffc-landing-content-3 .image-area.image-area--2 .picture-element-wrapper {
  height: 0;
  padding-bottom: 100%;
}

.ffc-landing-content-3 .image-area .video-popup-trigger {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.ffc-landing-content-3 .content-area {
  width: 55%;
  padding: 0 114px;
  text-align: left;
  z-index: 1;
}

@media (max-width: 834px) {
  .ffc-landing-content-3 .content-area {
    width: 100%;
    padding: 40px 16px;
  }
}

.ffc-landing-content-3 .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  max-width: 324px;
  margin: 0 auto 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-3 .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.ffc-landing-content-3 .content-area .rte {
  max-width: 432px;
  margin: 8px auto 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-3 .content-area .rte {
    margin: 8px 0 0;
  }
}

.ffc-landing-content-3 .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .ffc-landing-content-3 .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.ffc-landing-content-3 .content-area .button-wrapper {
  margin: 22px 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-3 .content-area .button-wrapper {
    margin: 16px 0 0;
  }
}

.ffc-landing-content-4 {
  width: 100%;
}

@media (max-width: 834px) {
  .ffc-landing-content-4 {
    flex-wrap: wrap;
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-4 .wrapper {
    flex-wrap: wrap;
  }
}

.ffc-landing-content-4 .image-area {
  width: 36%;
  position: relative;
}

@media (max-width: 834px) {
  .ffc-landing-content-4 .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.ffc-landing-content-4 .image-area.image-area--left {
  order: 10;
}

.ffc-landing-content-4 .image-area.image-area--right {
  order: 30;
}

.ffc-landing-content-4 .image-area .picture-element-wrapper {
  height: 100%;
}

.ffc-landing-content-4 .image-area .video-popup-trigger {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.ffc-landing-content-4 .content-area {
  width: 64%;
  order: 20;
  padding: 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media screen and (min-width: 1529px) {
  .ffc-landing-content-4 .content-area.content-area--image-left {
    padding-right: calc(50vw - 600px);
  }
  .ffc-landing-content-4 .content-area.content-area--image-right {
    padding-left: calc(50vw - 600px);
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-4 .content-area {
    width: 100%;
    padding: 40px 16px;
  }
}

.ffc-landing-content-4 .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-4 .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-4 .content-area .rte {
    margin: 8px 0 0;
  }
}

.ffc-landing-content-4 .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
  margin: 8px 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-4 .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.ffc-landing-content-4 .content-area .button-wrapper {
  margin: 22px 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-4 .content-area .button-wrapper {
    margin: 16px 0 0;
  }
}

.ffc-landing-content-5 {
  width: 100%;
  position: relative;
  padding-bottom: 93px;
}

@media (max-width: 834px) {
  .ffc-landing-content-5 {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}

.ffc-landing-content-5 .bg-layer {
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 834px) {
  .ffc-landing-content-5 .bg-layer {
    display: none;
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-5 .wrapper {
    flex-wrap: wrap;
  }
}

.ffc-landing-content-5 .image-area {
  width: calc(50% + 50px);
  position: relative;
  z-index: 2;
}

@media (max-width: 834px) {
  .ffc-landing-content-5 .image-area {
    width: calc(100% + 16px + 16px);
    order: 10 !important;
    margin: 0 -16px !important;
  }
}

.ffc-landing-content-5 .image-area.image-area--left {
  order: 10;
  margin: 0 -50px 0 0;
}

.ffc-landing-content-5 .image-area.image-area--right {
  order: 30;
  margin: 0 0 0 -50px;
}

.ffc-landing-content-5 .image-area .picture-element-wrapper {
  height: 100%;
}

.ffc-landing-content-5 .image-area .video-popup-trigger {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.ffc-landing-content-5 .content-area {
  width: calc(50% + 50px);
  order: 20;
  padding: 111px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 3;
}

@media (min-width: 835px) {
  .ffc-landing-content-5 .content-area.content-area--image-left {
    margin: 58px 0 58px -50px;
  }
  .ffc-landing-content-5 .content-area.content-area--image-right {
    margin: 58px -50px 58px 0;
  }
}

@media (max-width: 834px) {
  .ffc-landing-content-5 .content-area {
    width: 100%;
    padding: 16px 0 0;
    background-color: #fff !important;
    color: #151515 !important;
  }
}

.ffc-landing-content-5 .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-5 .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.ffc-landing-content-5 .content-area .h2 img {
  display: block;
  margin-right: 16px;
  width: 34px;
}

@media (max-width: 834px) {
  .ffc-landing-content-5 .content-area .h2 img {
    display: none;
  }
}

.ffc-landing-content-5 .content-area .rte {
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-5 .content-area .rte {
    margin: 8px 0 0;
  }
}

.ffc-landing-content-5 .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

.ffc-landing-content-5 .content-area .button-wrapper {
  margin: 22px 0 0;
}

@media (max-width: 834px) {
  .ffc-landing-content-5 .content-area .button-wrapper {
    margin: 16px 0 0;
  }
}

.ffc-cta .flex {
  flex-wrap: wrap;
  border-top: 1px solid #272625;
  border-bottom: 1px solid #272625;
  padding: 24px 0 8px;
}

.ffc-cta .flex .button {
  margin: 0 16px 16px;
}

.retail-stores .stores-list {
  margin: 0 -12px -24px;
}

@media (max-width: 834px) {
  .retail-stores .stores-list {
    margin: 0 -8px -16px;
  }
}

.retail-stores .stores-list .store-card {
  width: 33.33%;
  padding: 0 12px 24px;
}

@media (max-width: 834px) {
  .retail-stores .stores-list .store-card {
    width: 50%;
    padding: 0 8px 16px;
  }
}

@media (max-width: 480px) {
  .retail-stores .stores-list .store-card {
    width: 100%;
  }
}

.retail-stores .stores-list .store-card .image-area {
  position: relative;
}

.retail-stores .stores-list .store-card .image-area .picture-element-wrapper {
  padding-bottom: 75%;
}

@media (max-width: 834px) {
  .retail-stores .stores-list .store-card .image-area .picture-element-wrapper {
    padding-bottom: 60%;
  }
}

.retail-stores .stores-list .store-card .content-area {
  background: #f9f9f9;
  padding: 16px 16px 24px;
}

.retail-stores .stores-list .store-card .content-area .h3 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
}

@media (max-width: 834px) {
  .retail-stores .stores-list .store-card .content-area .h3 {
    font-size: 16px;
    line-height: 1.13;
    letter-spacing: normal;
  }
}

.retail-stores .stores-list .store-card .content-area a, .retail-stores .stores-list .store-card .content-area p {
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .retail-stores .stores-list .store-card .content-area a, .retail-stores .stores-list .store-card .content-area p {
    font-size: 14px;
    line-height: 1.57;
  }
}

.retail-stores .stores-list .store-card .content-area a {
  text-decoration: underline;
}

@media (max-width: 834px) {
  .retail-stores .stores-list .store-card .content-area a {
    margin-bottom: 6px;
  }
}

.retail-stores .stores-list .store-card .content-area svg {
  margin-right: 13px;
}

.retail-stores .stores-list .store-card .content-area > .flex {
  margin-bottom: 10px;
}

.retail-stores .stores-list .store-card .content-area > .flex:last-child {
  margin-bottom: 0;
}

.retail-stores .stores-list .store-card .content-area .content-hours p {
  font-size: 14px;
}

.retail-stores .stores-list .store-card .content-area .button-wrapper {
  margin: 24px 0 0;
}

.retail-stores .stores-list .store-card .content-area .button-wrapper a {
  text-decoration: none;
  margin-bottom: 0;
}

@media (max-width: 834px) {
  .retail-stores .stores-list .store-card .content-area .button-wrapper {
    margin: 16px 0 0;
  }
}

.ffc-product-navigation {
  margin: 0;
  position: relative;
  height: 68px;
}

.ffc-product-navigation .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.ffc-product-navigation .inner.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media (max-width: 834px) {
  .ffc-product-navigation nav {
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .ffc-product-navigation nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 834px) {
  .ffc-product-navigation nav ul {
    justify-content: flex-start !important;
  }
}

.ffc-product-navigation nav ul li a {
  display: block;
  padding: 24px 48px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.28px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.ffc-product-navigation nav ul li a.active {
  border-bottom: 2px solid #151515;
}

@media (min-width: 835px) {
  .ffc-product-navigation nav ul li a:hover {
    border-bottom: 2px solid #151515;
  }
}

@media (max-width: 834px) {
  .ffc-product-navigation nav ul li a {
    padding: 24px 20px;
    white-space: nowrap;
  }
}

.ffc-product-text-columns .section-header {
  text-align: center;
  margin: 0 0 32px;
}

@media (max-width: 834px) {
  .ffc-product-text-columns .section-header {
    margin: 0 16px 32px 0;
    padding: 0;
    text-align: left;
  }
  .ffc-product-text-columns .section-header .h2 {
    font-size: 22px;
    line-height: 1;
  }
}

@media (max-width: 834px) {
  .ffc-product-text-columns .wrapper {
    padding-right: 0;
  }
}

.ffc-product-text-columns .text-columns-area {
  margin: 0 -20px -40px;
}

@media (min-width: 835px) {
  .ffc-product-text-columns .text-columns-area {
    justify-content: center;
  }
}

@media (max-width: 834px) {
  .ffc-product-text-columns .text-columns-area {
    flex-wrap: wrap;
    margin: 0;
  }
}

.ffc-product-text-columns .text-columns-area .text-column {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  margin: 0 20px 40px;
  background: #f9f9f9;
  padding: 32px 32px 48px;
}

@media (max-width: 834px) {
  .ffc-product-text-columns .text-columns-area .text-column {
    margin: 0;
    padding: 24px;
  }
}

.ffc-product-text-columns .text-columns-area .text-column > .flex h3 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0 0 8px;
}

@media (max-width: 834px) {
  .ffc-product-text-columns .text-columns-area .text-column > .flex h3 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.ffc-product-text-columns .text-columns-area .text-column > .flex span {
  display: inline-block;
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.4;
  color: #627787;
  margin: 0 0 12px 16px;
  text-transform: uppercase;
}

.ffc-product-text-columns .text-columns-area .text-column .content {
  font-size: 16px;
  line-height: 1.63;
  color: var(--color-pdp-content);
}

@media (max-width: 834px) {
  .ffc-product-text-columns .text-columns-area .text-column .content {
    font-size: 14px;
    line-height: 1.57;
  }
}

.ffc-product-text-columns .text-columns-area .text-column .content p {
  margin: 0 0 34px;
}

.ffc-product-text-columns .text-columns-area .text-column .content h4 {
  font-size: 18px;
  line-height: 1.22;
  margin: 0 0 12px;
}

@media (max-width: 834px) {
  .ffc-product-text-columns .text-columns-area .text-column .content h4 {
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 16px;
    text-transform: capitalize;
  }
}

.ffc-product-text-columns .text-columns-area .text-column .content ul {
  list-style: disc;
  padding: 0 0 0 16px;
}

.ffc-product-text-columns .text-columns-area .text-column .content ul li {
  margin: 0 0 8px;
}

.ffc-product-faq .wrapper {
  max-width: 1008px;
}

.ffc-product-faq .section-header {
  text-align: center;
  margin: 0 0 20px;
}

.ffc-product-faq .faq-content .faq-item {
  padding: 16px;
  border: 1px solid #f9f9f9;
  margin: 0 0 24px;
}

.ffc-product-faq .faq-content .faq-item .faq-item-title h3 {
  font-size: 18px;
  line-height: 1.22;
}

@media (max-width: 834px) {
  .ffc-product-faq .faq-content .faq-item .faq-item-title h3 {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: unset;
    text-transform: capitalize;
  }
}

.ffc-product-faq .faq-content .faq-item .faq-item-content {
  font-size: 14px;
  line-height: 1.57;
  color: #272625;
}

.ffc-product-faq .faq-content .faq-item .faq-item-content > :first-child {
  margin-top: 8px;
}

@media (max-width: 834px) {
  .ffc-product-image.ffc-image--has-content.ffc-image--has-video-popup .image-area .content-area {
    padding: 174px 63px 234px;
  }
}

@media (max-width: 834px) {
  .ffc-product-image.ffc-image--has-content .image-area .picture-element-wrapper {
    padding-bottom: 100%;
  }
}

.ffc-product-image.ffc-image--has-content .image-area .content-area {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  text-align: center;
}

.ffc-product-image.ffc-image--has-content .image-area .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .ffc-product-image.ffc-image--has-content .image-area .content-area .h2 {
    font-size: 16px;
    line-height: 1.13;
  }
}

.ffc-product-image.ffc-image--has-content .image-area .content-area .rte {
  margin: 16px 0 0;
  color: inherit;
}

@media (max-width: 834px) {
  .ffc-product-image.ffc-image--has-content .image-area .content-area .rte {
    margin: 8px 0 0;
  }
}

.ffc-product-image.ffc-image--has-content .image-area .content-area .rte * {
  color: inherit;
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .ffc-product-image.ffc-image--has-content .image-area .content-area .rte * {
    font-size: 14px;
    line-height: 1.57;
  }
}

.ffc-product-image .image-area {
  position: relative;
}

.ffc-product-image .image-area .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #151515;
}

.ffc-product-image .image-area .video-popup-trigger {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

@media (max-width: 834px) {
  .ffc-product-image .image-area .video-popup-trigger {
    right: auto;
    left: 63px;
    bottom: 174px;
  }
}

@media (max-width: 834px) {
  .ffc-product-images-with-text {
    flex-wrap: wrap;
  }
}

.ffc-product-images-with-text .image-with-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-right: 52px;
}

@media (max-width: 834px) {
  .ffc-product-images-with-text .image-with-text {
    width: 100%;
    padding-right: 0;
  }
}

.ffc-product-images-with-text .image-with-text.image-with-text--2 {
  padding-right: 0;
  padding-left: 52px;
}

@media (max-width: 834px) {
  .ffc-product-images-with-text .image-with-text.image-with-text--2 {
    padding-left: 0;
    margin-top: 40px;
  }
}

.ffc-product-images-with-text .image-with-text.image-with-text--2 .content-area {
  margin: 40px 0 0;
  order: 10;
}

@media (max-width: 834px) {
  .ffc-product-images-with-text .image-with-text .image-area {
    width: 100%;
  }
}

.ffc-product-images-with-text .image-with-text .image-area .picture-element-wrapper {
  overflow: visible;
}

@media (min-width: 835px) {
  .ffc-product-images-with-text .image-with-text .image-area .picture-element-wrapper picture,
  .ffc-product-images-with-text .image-with-text .image-area .picture-element-wrapper .placeholder {
    left: 8px;
    top: -8px;
  }
}

.ffc-product-images-with-text .image-with-text .content-area {
  margin: 0 0 40px;
  padding: 0 72px;
}

@media (max-width: 834px) {
  .ffc-product-images-with-text .image-with-text .content-area {
    width: 100%;
    padding: 0;
    margin: 0 0 16px;
  }
}

.ffc-product-images-with-text .image-with-text .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  color: var(--color-pdp-title);
}

@media (max-width: 834px) {
  .ffc-product-images-with-text .image-with-text .content-area .h2 {
    font-size: 22px;
    line-height: 1;
  }
}

.ffc-product-images-with-text .image-with-text .content-area .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 4px 0 0;
  color: var(--color-pdp-content);
}

@media (max-width: 834px) {
  .ffc-product-images-with-text .image-with-text .content-area .rte {
    margin: 16px 0 0;
  }
}

.ffc-product-image-with-accordion {
  width: 100%;
  padding: 80px 0 0;
}

@media (max-width: 834px) {
  .ffc-product-image-with-accordion {
    padding: 0;
  }
}

.ffc-product-image-with-accordion .image-area {
  width: 60%;
  position: relative;
}

@media (max-width: 834px) {
  .ffc-product-image-with-accordion .image-area {
    width: 100%;
    order: 30 !important;
  }
}

.ffc-product-image-with-accordion .image-area.image-area--left {
  order: 10;
}

.ffc-product-image-with-accordion .image-area.image-area--right {
  order: 30;
}

.ffc-product-image-with-accordion .image-area .picture-element-wrapper {
  height: 100%;
}

.ffc-product-image-with-accordion .image-area .accordion-button {
  position: absolute;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color ease 0.3s;
  background-color: #fff;
  color: #122958;
}

@media (max-width: 834px) {
  .ffc-product-image-with-accordion .image-area .accordion-button {
    display: none;
  }
}

.ffc-product-image-with-accordion .image-area .accordion-button:hover, .ffc-product-image-with-accordion .image-area .accordion-button.active {
  background-color: #151515;
  color: #fff;
  animation: ffc-pulse 1s;
}

.ffc-product-image-with-accordion .content-area {
  width: 40%;
  order: 20;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media screen and (min-width: 1529px) {
  .ffc-product-image-with-accordion .content-area.content-area--image-left {
    padding-right: calc(50vw - 674px);
  }
  .ffc-product-image-with-accordion .content-area.content-area--image-right {
    padding-left: calc(50vw - 674px);
  }
}

@media (max-width: 834px) {
  .ffc-product-image-with-accordion .content-area {
    width: 100%;
    padding: 30px 16px 0;
  }
}

.ffc-product-image-with-accordion .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: normal;
  margin: 0;
  color: var(--color-pdp-title);
}

@media (max-width: 834px) {
  .ffc-product-image-with-accordion .content-area .h2 {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.ffc-product-image-with-accordion .content-area .accordion-area {
  margin: 26px 0 0;
}

.ffc-product-image-with-accordion .content-area .accordion-area .accordion-item {
  padding: 16px 0;
  border-bottom: 1px solid #151515;
}

.ffc-product-image-with-accordion .content-area .accordion-area .accordion-item .accordion-item-title h3 {
  font-size: 18px;
  line-height: 1.22;
  color: var(--color-pdp-title);
}

.ffc-product-image-with-accordion .content-area .accordion-area .accordion-item .accordion-item-content {
  font-size: 14px;
  line-height: 1.57;
  color: var(--color-pdp-content);
}

.ffc-product-image-with-accordion .content-area .accordion-area .accordion-item .accordion-item-content > :first-child {
  margin-top: 8px;
}

@keyframes ffc-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.ffc-product-tabs .wrapper {
  max-width: 1260px;
}

.ffc-product-tabs .section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 40px;
}

@media (max-width: 834px) {
  .ffc-product-tabs .section-header {
    text-align: left;
    margin: 0 0 24px;
    padding: 0;
  }
}

.ffc-product-tabs .section-header .h2 {
  color: var(--color-pdp-title);
}

@media (max-width: 834px) {
  .ffc-product-tabs .section-header .h2 {
    font-size: 22px;
    line-height: 1;
  }
}

.ffc-product-tabs .section-header .rte {
  color: var(--color-pdp-content);
}

.ffc-product-tabs .tabs-wrapper .tabs-nav {
  margin: 0 0 40px;
}

@media (max-width: 834px) {
  .ffc-product-tabs .tabs-wrapper .tabs-nav {
    margin: 0 -16px 25px 0;
    padding-right: 16px;
    justify-content: flex-start;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .ffc-product-tabs .tabs-wrapper .tabs-nav::-webkit-scrollbar {
    display: none;
  }
}

.ffc-product-tabs .tabs-wrapper .tabs-nav li {
  padding: 0 40px;
  border-bottom: 1px solid #eee;
}

@media (max-width: 834px) {
  .ffc-product-tabs .tabs-wrapper .tabs-nav li {
    padding: 0 22px;
  }
  .ffc-product-tabs .tabs-wrapper .tabs-nav li:first-child {
    padding-left: 0;
  }
  .ffc-product-tabs .tabs-wrapper .tabs-nav li:last-child {
    padding-right: 0;
  }
}

.ffc-product-tabs .tabs-wrapper .tabs-nav li .tab-trigger {
  display: block;
  padding: 9px 0;
  font-family: "ModernEra", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22;
  position: relative;
  color: #151515;
  white-space: nowrap;
}

.ffc-product-tabs .tabs-wrapper .tabs-nav li .tab-trigger:hover:after, .ffc-product-tabs .tabs-wrapper .tabs-nav li .tab-trigger.active:after {
  content: "";
  height: 3px;
  width: 100%;
  background: #151515;
  position: absolute;
  left: 0;
  bottom: -1px;
}

@media (max-width: 834px) {
  .ffc-product-tabs .tabs-wrapper .tabs-nav li .tab-trigger:hover:after {
    content: none;
  }
  .ffc-product-tabs .tabs-wrapper .tabs-nav li .tab-trigger.active:after {
    content: "";
  }
}

.ffc-product-tabs .tabs-wrapper .tabs .tab {
  display: none;
}

.ffc-product-tabs .tabs-wrapper .tabs .tab.active {
  display: block;
}

@media (max-width: 834px) {
  .ffc-product-tabs .tabs-wrapper .tabs .tab > .flex {
    flex-wrap: wrap;
  }
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .image-area {
  width: 50%;
}

@media (max-width: 834px) {
  .ffc-product-tabs .tabs-wrapper .tabs .tab .image-area {
    width: 100%;
  }
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .content-area {
  width: 50%;
  padding: 0 0 0 40px;
  max-width: 432px;
}

@media (max-width: 834px) {
  .ffc-product-tabs .tabs-wrapper .tabs .tab .content-area {
    width: 100%;
    padding: 16px 0 0;
  }
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .content-area h3 {
  font-size: 18px;
  line-height: 1.22;
  color: var(--color-pdp-title);
}

@media (max-width: 834px) {
  .ffc-product-tabs .tabs-wrapper .tabs .tab .content-area h3 {
    font-size: 16px;
    line-height: 1.13;
  }
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .content-area > .rte {
  font-size: 14px;
  line-height: 1.57;
  margin: 8px 0 0;
  color: var(--color-pdp-content);
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .content-area .accordion-area .accordion-item {
  padding: 16px 0;
  border-bottom: 1px solid #151515;
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .content-area .accordion-area .accordion-item .accordion-item-title h3 {
  font-size: 18px;
  line-height: 1.22;
  color: var(--color-pdp-title);
}

@media (max-width: 834px) {
  .ffc-product-tabs .tabs-wrapper .tabs .tab .content-area .accordion-area .accordion-item .accordion-item-title h3 {
    font-size: 16px;
    line-height: 1.13;
  }
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .content-area .accordion-area .accordion-item .accordion-item-content {
  font-size: 14px;
  line-height: 1.57;
  color: var(--color-pdp-content);
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .content-area .accordion-area .accordion-item .accordion-item-content > :first-child {
  margin-top: 8px;
}

.ffc-product-tabs .tabs-wrapper .tabs .tab .content-area .button-wrapper {
  margin: 16px 0 0;
}

.ffc-product-reviews {
  padding: 80px 0;
}

.ffc-product-reviews .section-header {
  text-align: center;
  margin: 0 0 40px;
}

.landing-hero {
  width: 100%;
}

@media (max-width: 834px) {
  .landing-hero {
    flex-wrap: wrap;
  }
}

.landing-hero .image-area {
  width: 50%;
  position: relative;
}

@media (max-width: 834px) {
  .landing-hero .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.landing-hero .image-area.image-area--left {
  order: 10;
}

.landing-hero .image-area.image-area--right {
  order: 30;
}

.landing-hero .image-area .picture-element-wrapper {
  height: 100%;
}

.landing-hero .content-area {
  width: 50%;
  order: 20;
  padding: 67px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media screen and (min-width: 1529px) {
  .landing-hero .content-area.content-area--image-left {
    padding-right: calc(50vw - 620px);
  }
  .landing-hero .content-area.content-area--image-right {
    padding-left: calc(50vw - 620px);
  }
}

@media (max-width: 834px) {
  .landing-hero .content-area {
    width: 100%;
    padding: 24px 16px 40px;
  }
}

.landing-hero .content-area .h2 {
  font-size: 38px;
  line-height: 1;
  letter-spacing: normal;
  margin: 0;
  text-transform: capitalize;
}

@media (max-width: 834px) {
  .landing-hero .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
    text-transform: capitalize;
  }
}

.landing-hero .content-area .rte {
  margin: 16px 0 0;
  max-width: 511px;
}

@media (max-width: 834px) {
  .landing-hero .content-area .rte {
    margin: 8px 0 0;
  }
}

.landing-hero .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

.landing-hero .content-area .button-wrapper {
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .landing-hero .content-area .button-wrapper {
    margin: 16px 0 0;
  }
}

.landing-image-and-text {
  width: 100%;
}

@media (max-width: 834px) {
  .landing-image-and-text {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

.landing-image-and-text .image-area {
  width: 50%;
  position: relative;
}

@media (max-width: 834px) {
  .landing-image-and-text .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.landing-image-and-text .image-area.image-area--left {
  order: 10;
}

.landing-image-and-text .image-area.image-area--right {
  order: 30;
}

.landing-image-and-text .image-area .picture-element-wrapper {
  height: 100%;
}

.landing-image-and-text .content-area {
  width: 50%;
  order: 20;
  padding: 40px 102px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media screen and (min-width: 1529px) {
  .landing-image-and-text .content-area.content-area--image-left {
    padding-right: calc(50vw - 620px);
  }
  .landing-image-and-text .content-area.content-area--image-right {
    padding-left: calc(50vw - 620px);
  }
}

@media (max-width: 834px) {
  .landing-image-and-text .content-area {
    width: 100%;
    padding: 40px 16px;
  }
}

.landing-image-and-text .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
}

@media (max-width: 834px) {
  .landing-image-and-text .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.landing-image-and-text .content-area .rte {
  max-width: 504px;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .landing-image-and-text .content-area .rte {
    margin: 8px 0 0;
  }
}

.landing-image-and-text .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

.landing-image-and-text .content-area .button-wrapper {
  margin: 16px 0 0;
}

.image-and-accordion {
  width: 100%;
}

@media (max-width: 834px) {
  .image-and-accordion {
    flex-wrap: wrap;
  }
}

.image-and-accordion .image-area {
  width: 50%;
  position: relative;
}

@media (max-width: 834px) {
  .image-and-accordion .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.image-and-accordion .image-area.image-area--left {
  order: 10;
}

.image-and-accordion .image-area.image-area--right {
  order: 30;
}

.image-and-accordion .image-area .picture-element-wrapper {
  height: 100%;
}

.image-and-accordion .content-area {
  width: 50%;
  order: 20;
  padding: 40px 104px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media screen and (min-width: 1529px) {
  .image-and-accordion .content-area.content-area--image-left {
    padding-right: calc(50vw - 620px);
  }
  .image-and-accordion .content-area.content-area--image-right {
    padding-left: calc(50vw - 620px);
  }
}

@media (max-width: 834px) {
  .image-and-accordion .content-area {
    width: 100%;
    padding: 40px 16px;
  }
}

.image-and-accordion .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 834px) {
  .image-and-accordion .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.image-and-accordion .content-area .rte {
  max-width: 516px;
  margin: 8px 0 0;
}

.image-and-accordion .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

.image-and-accordion .content-area .accordion-area {
  margin: 7px 0 0;
  width: 100%;
  max-width: 516px;
}

@media (max-width: 834px) {
  .image-and-accordion .content-area .accordion-area {
    margin: 0;
  }
}

.image-and-accordion .content-area .accordion-area .accordion-item {
  padding: 8px 0;
  border-bottom: 1px solid #3f3f3f;
}

@media (max-width: 834px) {
  .image-and-accordion .content-area .accordion-area .accordion-item {
    padding: 25px 0 16px;
  }
}

.image-and-accordion .content-area .accordion-area .accordion-item .accordion-item-title .icon {
  width: 20px;
  height: 20px;
  margin-right: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 834px) {
  .image-and-accordion .content-area .accordion-area .accordion-item .accordion-item-title .icon {
    margin-right: 19px;
  }
}

.image-and-accordion .content-area .accordion-area .accordion-item .accordion-item-title .icon img {
  height: 100%;
}

.image-and-accordion .content-area .accordion-area .accordion-item .accordion-item-title h3 {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
  letter-spacing: normal;
}

@media (max-width: 834px) {
  .image-and-accordion .content-area .accordion-area .accordion-item .accordion-item-title h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.57;
  }
}

.image-and-accordion .content-area .accordion-area .accordion-item .accordion-item-content {
  font-size: 14px;
  line-height: 1.57;
  color: var(--color-pdp-content);
  margin: 0;
}

.image-and-accordion .content-area .accordion-area .accordion-item .accordion-item-content > :first-child {
  margin-top: 8px;
}

.image-and-accordion .content-area .button-wrapper {
  margin: 24px 0 0;
}

.content-cards-grid {
  max-height: 1000px;
  gap: 24px;
  margin-bottom: -11px;
}

@media (max-width: 834px) {
  .content-cards-grid {
    flex-direction: row;
    max-height: unset;
    padding: 0;
    gap: unset;
    margin-bottom: -20px;
  }
}

.content-cards-grid .content-card {
  width: 50%;
  margin-bottom: 11px;
}

@media (max-width: 834px) {
  .content-cards-grid .content-card {
    width: 100%;
    margin: 0 0 40px;
  }
}

.content-cards-grid .content-card:nth-child(1) .image-area .picture-element-wrapper {
  height: 762px;
}

@media (max-width: 834px) {
  .content-cards-grid .content-card:nth-child(1) .image-area .picture-element-wrapper {
    height: 0;
    padding-bottom: 76%;
  }
}

.content-cards-grid .content-card .image-area {
  margin-bottom: 16px;
}

@media (max-width: 834px) {
  .content-cards-grid .content-card .image-area {
    margin-bottom: 24px;
  }
}

.content-cards-grid .content-card .image-area .picture-element-wrapper {
  height: 325px;
  padding-bottom: 0;
}

@media (max-width: 834px) {
  .content-cards-grid .content-card .image-area .picture-element-wrapper {
    height: 0;
    padding-bottom: 76%;
  }
}

@media (max-width: 834px) {
  .content-cards-grid .content-card .content-area {
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }
}

.content-cards-grid .content-card .content-area .h3 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
}

@media (max-width: 834px) {
  .content-cards-grid .content-card .content-area .h3 {
    line-height: 1.15;
  }
}

.content-cards-grid .content-card .content-area .button-wrapper {
  margin: 8px 0 0;
}

@media (max-width: 834px) {
  .content-cards-grid .content-card .content-area .button-wrapper {
    margin: 18px 0 0;
  }
}

.landing-tabs {
  margin-bottom: 0;
}

.landing-tabs.text-color-scheme--dark .tab-trigger {
  color: #3f3f3f;
}

.landing-tabs.text-color-scheme--light .tab-trigger {
  color: #fff;
}

.landing-tabs .section-header {
  text-align: center;
  max-width: 990px;
  margin: 0 auto 48px;
}

@media (max-width: 834px) {
  .landing-tabs .section-header {
    text-align: left;
    margin: 0 0 24px;
  }
}

.landing-tabs .section-header .h2 {
  font-size: 34px;
  line-height: 1.12;
  text-transform: uppercase;
}

@media (max-width: 834px) {
  .landing-tabs .section-header .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
    text-transform: capitalize;
  }
}

.landing-tabs .section-header .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .landing-tabs .section-header .rte {
    margin: 8px 0 0;
  }
}

.landing-tabs .tabs-wrapper {
  max-width: 912px;
  margin: 0 auto;
}

.landing-tabs .tabs-wrapper .tabs-nav {
  width: 100%;
  margin: 0 0 40px;
  border-bottom: 1px solid #3f3f3f;
  justify-content: space-around;
}

@media (max-width: 834px) {
  .landing-tabs .tabs-wrapper .tabs-nav {
    margin: 0 0 16px;
  }
}

.landing-tabs .tabs-wrapper .tabs-nav li {
  padding: 0 40px;
}

@media (max-width: 834px) {
  .landing-tabs .tabs-wrapper .tabs-nav li {
    padding: 0;
  }
}

.landing-tabs .tabs-wrapper .tabs-nav li .tab-trigger {
  display: block;
  padding: 12px 0;
  position: relative;
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.19;
  letter-spacing: 0.52px;
}

@media (max-width: 834px) {
  .landing-tabs .tabs-wrapper .tabs-nav li .tab-trigger {
    font-size: 16px;
    line-height: 1.13;
    letter-spacing: normal;
    padding: 14px;
  }
}

.landing-tabs .tabs-wrapper .tabs-nav li .tab-trigger:hover:after, .landing-tabs .tabs-wrapper .tabs-nav li .tab-trigger.active:after {
  content: "";
  height: 4px;
  width: 100%;
  background: #3f3f3f;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.landing-tabs .tabs-wrapper .tabs-nav-tablet {
  background-color: #f9f9f9;
  padding: 12px 24px;
  position: relative;
  margin: 0 -16px 24px;
}

.landing-tabs .tabs-wrapper .tabs-nav-tablet [data-select-dropdown-active] h3 {
  font-size: 14px;
  line-height: 1.43;
  text-transform: uppercase;
}

.landing-tabs .tabs-wrapper .tabs-nav-tablet [data-select-dropdown-active].open svg {
  transform: rotate(-180deg);
}

.landing-tabs .tabs-wrapper .tabs-nav-tablet [data-select-dropdown-active] svg {
  transform: rotate(0deg);
}

.landing-tabs .tabs-wrapper .tabs-nav-tablet ul {
  background-color: #f9f9f9;
  padding: 0 24px;
  position: absolute;
  z-index: 10;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: translate(0, 100%);
}

.landing-tabs .tabs-wrapper .tabs-nav-tablet ul li {
  margin-bottom: 8px;
}

.landing-tabs .tabs-wrapper .tabs-nav-tablet ul li:last-child {
  margin-bottom: 24px;
}

.landing-tabs .tabs-wrapper .tabs-nav-tablet ul li a {
  font-size: 14px;
  line-height: 1.43;
  text-transform: uppercase;
}

.landing-tabs .tabs-wrapper .tabs .tab {
  display: none;
}

.landing-tabs .tabs-wrapper .tabs .tab.active {
  display: block;
}

@media (max-width: 834px) {
  .landing-tabs .tabs-wrapper .tabs .tab > .flex {
    flex-wrap: wrap;
  }
}

.landing-tabs .tabs-wrapper .tabs .tab .image-area {
  width: 318px;
}

@media (max-width: 834px) {
  .landing-tabs .tabs-wrapper .tabs .tab .image-area {
    width: 100%;
  }
}

.landing-tabs .tabs-wrapper .tabs .tab .content-area {
  width: 100%;
  padding: 0 0 0 32px;
  max-width: 594px;
}

@media (max-width: 834px) {
  .landing-tabs .tabs-wrapper .tabs .tab .content-area {
    padding: 24px 16px 20px;
  }
}

.landing-tabs .tabs-wrapper .tabs .tab .content-area h3 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
}

@media (max-width: 834px) {
  .landing-tabs .tabs-wrapper .tabs .tab .content-area h3 {
    font-size: 22px;
    line-height: 1;
    letter-spacing: normal;
  }
}

.landing-tabs .tabs-wrapper .tabs .tab .content-area > .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 0;
}

.landing-tabs .tabs-wrapper .tabs .tab .content-area .button-wrapper {
  margin: 16px 0 0;
}

.landing-press-logos {
  padding: 40px 0;
}

@media (max-width: 834px) {
  .landing-press-logos {
    padding: 26px 0;
  }
}

.landing-press-logos > .wrapper {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.landing-press-logos > .wrapper::-webkit-scrollbar {
  display: none;
}

.landing-press-logos .section-header {
  margin: 0 64px 0 0;
  padding: 0;
}

@media (max-width: 834px) {
  .landing-press-logos .section-header {
    margin: 0 8px 0 0;
    padding: 0;
  }
}

.landing-press-logos .section-header .h2 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
  white-space: nowrap;
}

@media (max-width: 834px) {
  .landing-press-logos .section-header .h2 {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.57;
  }
}

.landing-press-logos .logos {
  width: 100%;
  gap: 27px;
}

@media (max-width: 834px) {
  .landing-press-logos .logos {
    gap: 8px;
    justify-content: flex-start;
  }
}

@media (max-width: 834px) {
  .landing-press-logos .logos .logo {
    flex: auto 0 0;
    height: 22px;
  }
  .landing-press-logos .logos .logo:last-child {
    padding-right: 8px;
  }
}

.landing-press-logos .logos .logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
}

@media (max-width: 834px) {
  .landing-press-logos .logos .logo img {
    max-height: 22px;
  }
}

@media (max-width: 834px) {
  .landing-badges {
    padding: 0;
  }
}

.landing-badges .section-header {
  margin: 0 0 24px;
  text-align: center;
}

@media (max-width: 834px) {
  .landing-badges .section-header {
    margin: 0 0 16px;
  }
}

.landing-badges .section-header .h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 834px) {
  .landing-badges .section-header .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
    text-transform: capitalize;
  }
}

.landing-badges .section-header .rte {
  font-size: 16px;
  line-height: 1.63;
  margin: 8px 0 0;
}

.landing-badges .badges {
  gap: 40px;
}

@media (max-width: 834px) {
  .landing-badges .badges {
    gap: 17x;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .landing-badges .badges::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 834px) {
  .landing-badges .badges .badge {
    flex: auto 0 0;
    height: 87px;
  }
  .landing-badges .badges .badge:last-child {
    padding-right: 16px;
  }
}

.landing-badges .badges .badge img {
  display: block;
  width: auto;
  height: auto;
  max-height: 87px;
}

.find-a-store.text-color-scheme--dark .content-area .store-links li a {
  color: #555351;
}

@media (max-width: 834px) {
  .find-a-store .wrapper {
    flex-wrap: wrap;
    padding: 0;
  }
}

.find-a-store .image-area {
  width: 50%;
  position: relative;
}

@media (max-width: 834px) {
  .find-a-store .image-area {
    width: 100%;
    order: 10 !important;
  }
}

.find-a-store .image-area.image-area--left {
  order: 10;
}

.find-a-store .image-area.image-area--right {
  order: 30;
}

.find-a-store .image-area .picture-element-wrapper {
  height: 100%;
}

.find-a-store .content-area {
  width: 50%;
  order: 20;
  padding: 40px 104px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 834px) {
  .find-a-store .content-area {
    padding: 40px 16px !important;
  }
}

.find-a-store .content-area.content-area--image-left {
  padding-right: 87px;
}

.find-a-store .content-area.content-area--image-right {
  padding-left: 87px;
}

@media (max-width: 834px) {
  .find-a-store .content-area {
    width: 100%;
    padding: 40px 16px;
  }
}

.find-a-store .content-area .h2 {
  font-size: 34px;
  line-height: 1.12;
}

@media (max-width: 834px) {
  .find-a-store .content-area .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.find-a-store .content-area .rte {
  max-width: 504px;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .find-a-store .content-area .rte {
    margin: 8px 0 0;
  }
}

.find-a-store .content-area .rte * {
  font-size: 16px;
  line-height: 1.63;
}

.find-a-store .content-area .h3 {
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.52px;
  margin: 21px 0 0;
}

@media (max-width: 834px) {
  .find-a-store .content-area .h3 {
    margin: 32px 0 0;
    font-size: 22px;
    line-height: 1;
  }
}

.find-a-store .content-area .store-links {
  width: 100%;
  max-width: 500px;
  margin: 16px -22px -8px 0;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 834px) {
  .find-a-store .content-area .store-links {
    margin: 16px -24px -10px 0;
  }
}

.find-a-store .content-area .store-links li {
  flex: 25% 0 0;
  padding: 0 22px 8px 0;
}

@media (max-width: 834px) {
  .find-a-store .content-area .store-links li {
    flex: 33.33% 0 0;
    padding: 0 24px 10px 0;
  }
}

.find-a-store .content-area .store-links li a {
  font-size: 16px;
  line-height: 1.63;
}

@media (max-width: 834px) {
  .find-a-store .content-area .store-links li a {
    font-size: 14px;
    line-height: 1.57;
  }
}

.find-a-store .content-area .button-wrapper {
  margin: 24px 0 0;
}

.landing-featured-blog-posts.text-color-scheme--dark .keen-slider .keen-slider__slide .article-card .info-area .date {
  color: #3f3f3f;
}

.landing-featured-blog-posts .section-header {
  margin: 0 auto 25px;
}

@media (max-width: 834px) {
  .landing-featured-blog-posts .section-header {
    margin: 0 auto 8px;
  }
}

.landing-featured-blog-posts .section-header .h2 {
  font-size: 34px;
  line-height: 1.12;
}

@media (max-width: 834px) {
  .landing-featured-blog-posts .section-header .h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.52px;
  }
}

.landing-featured-blog-posts .keen-slider {
  display: flex;
  flex-wrap: wrap !important;
  margin: 0 -12px -88px;
}

@media (max-width: 834px) {
  .landing-featured-blog-posts .keen-slider {
    flex-wrap: nowrap !important;
    margin-bottom: -16px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 12px;
  }
}

.landing-featured-blog-posts .keen-slider .keen-slider__slide {
  width: 33.33%;
  padding: 0 12px 88px;
}

@media (max-width: 834px) {
  .landing-featured-blog-posts .keen-slider .keen-slider__slide {
    width: auto;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 16px;
  }
}

.landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .image-area .picture-element-wrapper {
  padding-bottom: 65% !important;
}

.landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .info-area {
  padding-top: 16px;
}

.landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .info-area .title {
  font-size: 18px;
  line-height: 1.22;
  margin: 0;
  letter-spacing: normal;
}

@media (max-width: 834px) {
  .landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .info-area .title {
    font-size: 16px;
    line-height: 1.13;
  }
}

.landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .info-area .subtitle {
  font-size: 16px;
  line-height: 1.63;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .info-area .subtitle {
    margin: 8px 0 0;
  }
}

.landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .info-area .date {
  display: inline-block;
  font-family: "ModernEra", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  margin: 16px 0 0;
}

@media (max-width: 834px) {
  .landing-featured-blog-posts .keen-slider .keen-slider__slide .article-card .info-area .date {
    font-weight: normal;
    line-height: 1.57;
  }
}

.landing-featured-blog-posts .keen-slider .keen-nav {
  margin: 0 12px;
  width: calc(100% - 12px - 12px);
}

@media (max-width: 834px) {
  .landing-featured-blog-posts .keen-slider .keen-nav {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .landing-featured-blog-posts .keen-slider .keen-nav .keen-arrow.keen-arrow-prev {
    left: 32px;
  }
}

.landing-bar {
  padding-top: 11px;
  padding-bottom: 11px;
}

.landing-bar > .flex {
  gap: 16px;
}

@media (max-width: 834px) {
  .landing-bar > .flex {
    gap: 8px;
  }
}

.landing-bar .rte {
  font-size: 14px;
  line-height: 2.14;
}

@media (max-width: 834px) {
  .landing-bar .rte {
    font-size: 12px;
    line-height: 2.5;
  }
}

@media (max-width: 834px) {
  .landing-bar .image:last-child {
    display: none;
  }
}

.landing-bar .image img {
  display: block;
  width: auto;
  height: auto;
  max-height: 24px;
}

@media (max-width: 834px) {
  .landing-bar .image img {
    max-height: 14px;
  }
}

.template-product .featured-products .h2, .template-product .featured-products .title {
  color: #151515;
}

.article__banner {
  margin-bottom: 40px;
  width: 100%;
}

@media (max-width: 834px) {
  .article__banner {
    margin-bottom: 24px;
  }
}

.article__banner .picture-element-wrapper {
  padding-bottom: 35%;
}

@media (max-width: 834px) {
  .article__banner .picture-element-wrapper {
    padding-bottom: 60%;
  }
}

.article__content {
  text-align: left;
}

.article__content h1 {
  padding-bottom: 24px;
  line-height: 1.12;
  font-size: 34px;
}

@media (max-width: 834px) {
  .article__content h1 {
    font-size: 26px;
  }
}

.article__content h2 {
  margin-top: 88px;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .article__content h2 {
    margin-top: 40px;
    margin-bottom: 8px;
  }
}

.article__content p {
  font-size: 16px;
}

@media (max-width: 480px) {
  .article__content p {
    font-size: 14px;
  }
}

.article__content .author__container {
  display: flex;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D9D9D9;
  gap: 8px;
}

.article__content .author__container .author__image {
  height: 70px;
  width: 70px;
  display: inline-block;
}

.article__content .author__container .author__image .picture-element-wrapper {
  height: 100%;
  border-radius: 100%;
}

.article__content .author__container h3 {
  margin-bottom: 8px;
  color: #151515;
}

.article__content .author__container .content {
  font-size: 14px;
  line-height: 20px;
  color: #272625;
  display: flex;
  gap: 8px;
}

.article__content .rte {
  padding-bottom: 48px;
  border-bottom: 1px solid #D9D9D9;
}

.article__content .socials-area {
  margin-bottom: 24px;
}

.article__content .socials-area .social-icons {
  justify-content: flex-end;
}

@media (max-width: 834px) {
  .article__content .socials-area .social-icons {
    justify-content: flex-start;
  }
}

.standard-content-page .page-header {
  padding: 88px 0 0;
}

@media (max-width: 834px) {
  .standard-content-page .page-header {
    padding: 40px 0;
  }
}

.standard-content-page .page-header.page-header--background {
  padding: 131px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

@media (max-width: 834px) {
  .standard-content-page .page-header.page-header--background {
    padding: 88px 0;
  }
}

.standard-content-page .page-header.page-header--background .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #151515;
}

.standard-content-page .page-header.page-header--background h1 {
  color: #ffffff;
  position: relative;
}

.standard-content-page .page-header h1 {
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 834px) {
  .standard-content-page .page-header h1 {
    font-size: 28px;
    line-height: 1.14;
  }
}

.standard-content-page .page-width {
  max-width: 1226px;
}

.standard-content-page .page-width .rte {
  font-size: 16px;
  line-height: 1.63;
  padding-top: 88px;
  padding-bottom: 88px;
  color: #000;
}

@media (max-width: 834px) {
  .standard-content-page .page-width .rte {
    font-size: 14px;
    line-height: 1.57;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.standard-content-page .page-width .rte > :first-child {
  margin-top: 0;
}

.standard-content-page .page-width .rte > * + * {
  margin-top: 24px;
}

.standard-content-page .page-width .rte h1, .standard-content-page .page-width .rte h2, .standard-content-page .page-width .rte h3, .standard-content-page .page-width .rte h4, .standard-content-page .page-width .rte h5, .standard-content-page .page-width .rte h6 {
  margin-top: 88px;
  margin-bottom: 12px;
  color: #151515;
}

@media (max-width: 834px) {
  .standard-content-page .page-width .rte h1, .standard-content-page .page-width .rte h2, .standard-content-page .page-width .rte h3, .standard-content-page .page-width .rte h4, .standard-content-page .page-width .rte h5, .standard-content-page .page-width .rte h6 {
    margin-top: 40px;
  }
}

.standard-content-page .page-width .rte ul, .standard-content-page .page-width .rte ol {
  margin-left: 5px;
}

.standard-content-page .page-width .rte p {
  color: #000;
}

.account-page {
  overflow: hidden;
  --ffc-account-text-color: #000;
  --ffc-account-text-secondary-color: #121212;
  --ffc-account-text-lighter-color: rgba(18, 18, 18, 0.75);
  --ffc-account-placeholder-color: rgba(0, 0, 0, 0.5);
  --ffc-account-inactive-text-color: #606060;
  --ffc-account-nav-background-color: #f4f4f4;
  --ffc-account-block-background-color: #fcfcfc;
  --ffc-account-border-radius: 0px;
  --ffc-account-nav-border-radius: 8px;
  --ffc-account-border-color: #ececec;
  color: var(--ffc-account-text-color);
}

.account-page h1, .account-page h2, .account-page h3, .account-page h4, .account-page h5, .account-page h6, .account-page .rte, .account-page .rte p, .account-page label, .account-page strong {
  color: inherit;
}

.account-page .hide {
  display: none !important;
}

.account-page .input-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.account-page .input-field + * {
  margin-top: 20px;
}

.account-page .input-field input, .account-page .input-field select {
  border: 1px solid var(--ffc-account-border-color);
  padding: 16px 20px;
  transition: border-color 0.35s ease;
  background: #fff;
  font-size: 14px;
  line-height: 1;
  border-radius: var(--ffc-account-border-radius);
  color: var(--ffc-account-text-color);
  max-width: 400px;
}

.account-page .input-field input::-moz-placeholder, .account-page .input-field select::-moz-placeholder {
  color: var(--ffc-account-placeholder-color);
  opacity: 1;
}

.account-page .input-field input::placeholder, .account-page .input-field select::placeholder {
  color: var(--ffc-account-placeholder-color);
  opacity: 1;
}

.account-page .input-field input:focus, .account-page .input-field select:focus {
  border-color: var(--ffc-account-text-color);
}

.account-page .input-field select {
  padding-top: 18px;
  padding-bottom: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,<svg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 13 7' style='enable-background:new 0 0 13 7;' xml:space='preserve'><g id='Path_125'><polygon points='6.5002499,7.0300469 0,0.6770196 0.7233601,-0.0300117 6.5002499,5.6159844 12.2766399,-0.0300117 13,0.6770196'/></g></svg>");
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-position: right 15px center;
}

.account-page .input-field label {
  order: -1;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.account-page .checkbox-flex {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.account-page .checkbox-flex input {
  width: 30px;
  height: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  box-shadow: 0 0 0 1px var(--ffc-account-border-color);
  border: 5px solid #fff;
  cursor: pointer;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.account-page .checkbox-flex input:checked {
  background-color: var(--ffc-account-text-color);
}

.account-page .checkbox-flex label {
  padding-left: 19px;
  font-size: 15px;
  cursor: pointer;
}

.account-page .checkbox-flex label a {
  text-decoration: underline;
}

.account-page .account-form {
  margin: 40px 0 60px 0;
  text-align: center;
}

@media (max-width: 834px) {
  .account-page .account-form {
    text-align: left;
    margin: 40px 0;
  }
}

.account-page .account-form form .form--header h1, .account-page .account-form form .form--header h2 {
  font-size: 52px;
}

@media (max-width: 834px) {
  .account-page .account-form form .form--header h1, .account-page .account-form form .form--header h2 {
    font-size: 30px;
  }
}

.account-page .account-form form .form--header .rte {
  font-size: 16px;
}

@media (max-width: 834px) {
  .account-page .account-form form .form--header .rte {
    font-size: 14px;
  }
}

.account-page .account-form form .form--header > * + * {
  margin-top: 20px;
}

.account-page .account-form form .form--main {
  max-width: 400px;
  margin: 40px auto 0 auto;
}

.account-page .account-form form .form--main .errors {
  color: red;
  margin-bottom: 20px;
}

.account-page .account-form form .form--main .form--footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.account-page .account-form form .form--main .form--footer button {
  width: 100%;
}

.account-page .account-form form .form--main .form--footer > * + .form--bottom-link, .account-page .account-form form .form--main .form--footer > * + .form--bottom-link-wrapper {
  margin-top: 20px;
}

.account-page .account-form form .form--main .form--footer .form--bottom-link-wrapper a {
  text-decoration: underline;
}

.account-page .account-form form .form--main .form--footer .form--bottom-link, .account-page .account-form form .form--main .form--footer .form--bottom-link-wrapper {
  font-size: 14px;
}

.account-page .account-form form .form--main .form--footer .form--bottom-link + .form--bottom-link, .account-page .account-form form .form--main .form--footer .form--bottom-link + .form--bottom-link-wrapper, .account-page .account-form form .form--main .form--footer .form--bottom-link-wrapper + .form--bottom-link, .account-page .account-form form .form--main .form--footer .form--bottom-link-wrapper + .form--bottom-link-wrapper {
  margin-top: 32px;
}

.account-page .account-form form #rc_login {
  margin-top: 40px;
}

.account-page .account-form form #rc_login h5 {
  margin-bottom: 10px;
  font-size: 14px;
}

.account-page .account-main {
  display: flex;
  margin: 50px -40px;
}

@media (max-width: 834px) {
  .account-page .account-main {
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.account-page .account-main > * {
  padding: 0 40px;
}

.account-page .account-main .account-main--nav {
  width: 370px;
  min-width: 370px;
  border-right: 1px solid #ececec;
}

.account-page .account-main .account-main--nav h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

.account-page .account-main .account-main--nav > a {
  margin-top: 10px;
  margin-left: 20px;
  color: var(--ffc-account-inactive-text-color);
  font-size: 14px;
}

@media (max-width: 834px) {
  .account-page .account-main ul.account-nav {
    display: flex;
    margin: 20px -5px 0 -5px;
  }
  .account-page .account-main ul.account-nav > * {
    padding: 0 5px;
  }
}

@media (max-width: 834px) {
  .account-page .account-main ul.account-nav li {
    width: 50%;
  }
}

.account-page .account-main ul.account-nav li a {
  display: block;
  background: var(--ffc-account-nav-background-color);
  padding: 20px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ffc-account-inactive-text-color);
  line-height: 1;
  transition: all 0.35s ease;
  border-radius: var(--ffc-account-nav-border-radius);
}

@media (max-width: 834px) {
  .account-page .account-main ul.account-nav li a {
    text-align: center;
  }
}

.account-page .account-main ul.account-nav li a.active, .account-page .account-main ul.account-nav li a:hover {
  color: var(--ffc-account-text-color);
}

@media (min-width: 835px) {
  .account-page .account-main ul.account-nav li + li {
    margin-top: 10px;
  }
}

.account-page .account-main .account--link {
  color: var(--ffc-account-inactive-text);
  display: inline-block;
  font-weight: 600;
  transition: all 0.35s ease;
}

.account-page .account-main .account--link:hover {
  color: #000;
}

.account-page .account-main .account-main--content {
  flex-grow: 1;
}

.account-page .account-main .account-main--content h5 {
  font-size: 14px;
  margin-bottom: 10px;
}

.account-page .account-main .account-main--content .rte {
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .rte {
    font-size: 14px;
  }
}

.account-page .account-main .account-main--content .account-main--header {
  margin-bottom: 40px;
}

.account-page .account-main .account-main--content .account-main--header h2 {
  font-size: 20px;
  margin: 0;
}

.account-page .account-main .account-main--content .account-main--header strong {
  font-size: 14px;
  margin: 5px 0;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-main--header .f-j-between {
    flex-wrap: wrap;
  }
}

.account-page .account-main .account-main--content .account-main--header .rte {
  margin-top: 15px;
}

.account-page .account-main .account-main--content .account-main--address {
  margin-bottom: 40px;
}

.account-page .account-main .account-main--content .account-main--address .account-main-address--actions {
  display: flex;
  margin: 10px -10px 0 -10px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-main--address .account-main-address--actions {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.account-page .account-main .account-main--content .account-main--address .account-main-address--actions > * {
  padding: 0 10px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-main--address .account-main-address--actions > * {
    padding: 0 20px;
  }
}

.account-page .account-main .account-main--content .account-main--address .account-main-address--actions > *:last-child a {
  opacity: 0.5;
  transition: all 0.35s ease;
}

.account-page .account-main .account-main--content .account-main--address .account-main-address--actions > *:last-child a:hover {
  opacity: 1;
}

.account-page .account-main .account-main--content .account-main--address .account-main-address--actions > * a {
  font-size: 13px;
  color: var(--ffc-account-text-secondary-color);
}

.account-page .account-main .account-main--content .account-main--address-list {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -10px -20px -10px;
}

.account-page .account-main .account-main--content .account-main--address-list .account-main--address {
  padding: 0 10px 20px 10px;
  margin: 0;
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-main--address-list .account-main--address {
    width: 100%;
  }
}

.account-page .account-main .account-main--content .account-main--address-list .account-main--address.is-default-address {
  order: -1;
}

.account-page .account-main .account-main--content .account-main--address-list .account-main--address .rte {
  margin-top: auto;
}

.account-page .account-main .account-main--content .account-main--address-new {
  margin-top: 40px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-main--address-new {
    margin-top: 20px;
  }
}

.account-page .account-main .account-main--content .account-address-form {
  margin-top: 60px;
  max-width: 750px;
}

.account-page .account-main .account-main--content .account-address-form > h2 {
  font-size: 20px;
  margin: 0 0 40px 0;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-address-form > h2 {
    margin-bottom: 20px;
  }
}

.account-page .account-main .account-main--content .account-address-form form .input-flex {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-address-form form .input-flex {
    flex-wrap: wrap;
  }
}

@media (min-width: 835px) {
  .account-page .account-main .account-main--content .account-address-form form .input-flex .input-field + * {
    margin-top: 0;
  }
}

.account-page .account-main .account-main--content .account-address-form form .input-flex + * {
  margin-top: 20px;
}

.account-page .account-main .account-main--content .account-address-form form .input-flex > * {
  padding-left: 10px;
  padding-right: 10px;
}

.account-page .account-main .account-main--content .account-address-form form .input-flex.input-flex--third-split > *:first-child {
  width: 33.3333333333%;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-address-form form .input-flex.input-flex--third-split > *:first-child {
    width: 100%;
  }
}

.account-page .account-main .account-main--content .account-address-form form .input-flex.input-flex--third-split > *:last-child {
  width: 66.6666666667%;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-address-form form .input-flex.input-flex--third-split > *:last-child {
    width: 100%;
  }
}

.account-page .account-main .account-main--content .account-address-form form .input-flex.input-flex--half > * {
  width: 50%;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-address-form form .input-flex.input-flex--half > * {
    width: 100%;
  }
}

.account-page .account-main .account-main--content .account-address-form form .input-flex.input-flex--third > * {
  width: 33.3333333333%;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-address-form form .input-flex.input-flex--third > * {
    width: 100%;
  }
}

.account-page .account-main .account-main--content .account-address-form form .form-bottom-area {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}

.account-page .account-main .account-main--content .account-address-form form .form-bottom-area > * {
  padding: 0 10px;
}

.account-page .account-main .account-main--content .account-address-form form .form-bottom-area > * a {
  font-size: 14px;
  font-weight: 600;
}

.account-page .account-main .account-main--content .account-main--orders .order-item {
  background: var(--ffc-account-block-background-color);
  border-radius: 8px;
  padding: 20px;
}

.account-page .account-main .account-main--content .account-main--orders .order-item + .order-item {
  margin-top: 20px;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--header {
  display: flex;
  margin: 0 -10px;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--header > * {
  padding: 0 10px;
  flex-basis: 0;
  flex-grow: 1;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--header > * p {
  font-size: 13px;
  color: var(--ffc-account-text-secondary-color);
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--header > * span, .account-page .account-main .account-main--content .account-main--orders .order-item .order-item--header > * a {
  font-size: 16px;
  text-decoration: none;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main {
  display: flex;
  margin: 20px -10px 0 -10px;
  border-top: 1px solid var(--ffc-account-border-color);
  padding-top: 20px;
  align-items: flex-end;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main {
    border-top: 0 none;
    padding-top: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main > * {
  padding: 0 10px;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main .order-item--products {
  flex-grow: 1;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main .order-item--products > ul {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main .order-item--products > ul > * {
  padding: 5px;
  width: 110px;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main .order-item--products > ul > * .order-item--image {
  display: block;
  padding-bottom: 100%;
  height: 0px;
  position: relative;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main .order-item--products > ul > * .order-item--image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.account-page .account-main .account-main--content .account-main--orders .order-item .order-item--main .order-item--actions a {
  white-space: nowrap;
}

.account-page .account-main .account-main--content .account-main--orders .load-more-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.account-page .account-main .account-main--order > ul > li {
  display: flex;
  margin: 0 -10px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--order > ul > li {
    margin: 0 -8px;
  }
}

.account-page .account-main .account-main--order > ul > li > * {
  padding: 0 10px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--order > ul > li > * {
    padding: 0 8px;
  }
}

.account-page .account-main .account-main--order > ul > li + li {
  margin-top: 20px;
}

.account-page .account-main .account-main--order > ul > li .order-main--image {
  width: 180px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--order > ul > li .order-main--image {
    width: 83px;
  }
}

.account-page .account-main .account-main--order > ul > li .order-main--image .order-main--image-inner {
  display: block;
  padding-bottom: 100%;
  height: 0px;
  position: relative;
}

.account-page .account-main .account-main--order > ul > li .order-main--image .order-main--image-inner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.account-page .account-main .account-main--order > ul > li .order-main--info {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}

.account-page .account-main .account-main--order > ul > li .order-main--info .order-main--info-inner h2 {
  font-size: 18px;
}

.account-page .account-main .account-main--order > ul > li .order-main--info .order-main--info-inner ul li {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ffc-account-text-lighter-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.account-page .account-main .account-main--order > ul > li .order-main--info .order-main--info-inner ul li span, .account-page .account-main .account-main--order > ul > li .order-main--info .order-main--info-inner ul li p {
  color: var(--ffc-account-text-secondary-color);
  margin-left: 10px;
}

.account-page .account-main .account-main--order > ul > li .order-main--info .order-main--price {
  font-size: 16px;
}

.account-page .account-main .account-main--order > ul > li .order-main--info .order-main--price s {
  text-decoration: line-through;
  font-size: 13px;
  color: var(--ffc-account-text-lighter-color);
}

.account-page .account-main .account-main--order .account-main--order--address {
  display: flex;
  margin: 40px -25px 0 -25px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--order .account-main--order--address {
    flex-direction: column;
  }
  .account-page .account-main .account-main--order .account-main--order--address > * + * {
    margin-top: 20px;
  }
}

.account-page .account-main .account-main--order .account-main--order--address > * {
  padding: 0 25px;
}

.account-page .account-main .account-main--order .account-main--order--address .shipping-adress h5, .account-page .account-main .account-main--order .account-main--order--address .billing-address h5 {
  font-size: 16px;
  margin-bottom: 20px;
}

.account-page .account-main .account-main--order .account-main--order--address .shipping-adress .rte, .account-page .account-main .account-main--order .account-main--order--address .billing-address .rte {
  font-size: 14px;
}

.account-page .account-main .account-main--order .account-main--order--address .order-summary {
  margin-left: 20px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--order .account-main--order--address .order-summary {
    margin: 40px 0 0 0;
    padding: 0;
  }
}

.account-page .account-main .account-main--order .account-main--order--address .order-summary .order-summary--inner {
  background: var(--ffc-account-block-background-color);
  padding: 20px;
  width: 300px;
}

@media (max-width: 834px) {
  .account-page .account-main .account-main--order .account-main--order--address .order-summary .order-summary--inner {
    width: 100%;
  }
}

.account-page .account-main .account-main--order .account-main--order--address .order-summary .order-summary--inner h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.account-page .account-main .account-main--order .account-main--order--address .order-summary .order-summary--inner ul li {
  display: flex;
  justify-content: space-between;
}

.account-page .account-main .account-main--order .account-main--order--address .order-summary .order-summary--inner ul li + li {
  margin-top: 10px;
}

.account-page .account-main .account-main--order .account-main--order--address .order-summary .order-summary--inner ul li p {
  font-size: 14px;
}

.account-page .account-main .account-main--order .account-main--order--address .order-summary .order-summary--inner ul li p strong {
  font-size: 16px;
}

.not-found-page {
  margin-top: 40px;
  margin-bottom: 60px;
}

@media (max-width: 834px) {
  .not-found-page {
    margin-bottom: 40px;
  }
}

.not-found-page .section-header {
  text-align: center;
  margin: 0;
}

@media (max-width: 834px) {
  .not-found-page .section-header {
    text-align: left;
  }
}

.not-found-page .section-header h1 {
  font-size: 52px;
}

@media (max-width: 834px) {
  .not-found-page .section-header h1 {
    font-size: 30px;
  }
}

.not-found-page .section-header h1, .not-found-page .section-header h2, .not-found-page .section-header h3, .not-found-page .section-header h4, .not-found-page .section-header h5, .not-found-page .section-header h6 {
  margin-bottom: 20px;
}

.not-found-page .section-header .rte {
  margin-bottom: 40px;
  font-size: 16px;
}

@media (max-width: 834px) {
  .not-found-page .section-header .rte {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

.giftcard-page {
  max-width: 550px;
  margin: 0 auto;
  padding: 100px 16px;
}

@media (max-width: 834px) {
  .giftcard-page {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.giftcard-page .giftcard-logo {
  max-width: 420px;
  margin: 0 auto 40px auto;
  display: block;
}

@media (max-width: 834px) {
  .giftcard-page .giftcard-logo {
    max-width: 270px;
    margin-bottom: 25px;
  }
}

.giftcard-page .giftcard-logo img {
  width: 100%;
}

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

.giftcard-page .giftcard h1 {
  margin-bottom: 30px;
}

@media (max-width: 834px) {
  .giftcard-page .giftcard h1 {
    font-size: 32px;
  }
}

.giftcard-page .giftcard .rte {
  margin-bottom: 30px;
  font-weight: 300;
}

.giftcard-page .giftcard .giftcard-image img {
  border-radius: 40px;
}

.giftcard-page .giftcard #GiftCardDigits {
  display: inline-block;
  border: 1px dashed #f9f9f9;
  margin-top: 25px;
  border-radius: 15px;
  text-transform: uppercase;
  font-size: 32px;
  padding: 16px 38px;
  margin-bottom: 10px;
}

@media (max-width: 834px) {
  .giftcard-page .giftcard #GiftCardDigits {
    font-size: 24px;
  }
}

@media (max-width: 834px) {
  .giftcard-page .giftcard .btn {
    width: 100%;
  }
}

.giftcard-page .giftcard .giftcard-print, .giftcard-page .giftcard .apple-wallet {
  margin-bottom: 25px;
}

.giftcard-page .giftcard .giftcard-print a, .giftcard-page .giftcard .apple-wallet a {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 12px;
  letter-spacing: 2px;
}

.giftcard-page .giftcard .giftcard-print a img, .giftcard-page .giftcard .apple-wallet a img {
  margin-right: 8px;
  width: 19px;
  height: 19px;
}

.giftcard-page .giftcard .apple-wallet {
  margin-bottom: 0;
  margin-top: 25px;
}

.giftcard-page .giftcard .giftcard-qr {
  margin-top: 25px;
}

.giftcard-page .giftcard .giftcard-qr img {
  display: block;
  margin: 0 auto;
}

.template-index .main-content {
  padding-top: 0 !important;
}

.template-index .site-footer {
  margin-top: 0;
}

@media (max-width: 834px) {
  .template-index .featured-card-links {
    margin-bottom: 31px;
  }
}

@media (max-width: 834px) {
  .template-index .featured-products {
    margin-top: 64px;
  }
}

@media (max-width: 834px) {
  .page-retail .ffc-text .content-area .h2 {
    font-size: 22px;
    line-height: 1;
  }
}

@media (max-width: 834px) {
  .page-retail .benefits .section-header .h2 {
    font-size: 22px;
    line-height: 1;
  }
}

/* ModernEra Light */
#judgeme_product_reviews {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
}

#judgeme_product_reviews .jdgm-rev-widg {
  padding: 24px 20px;
}



.wrapper.itg_search_vispring_show ,
.vispring .wrapper.itg_search_vispring_hide{
  display: none;
}
.top-area .itg_announcement_left img {
  width: 100%;
  display: block;
  height: 16px;
}
.top-area .itg_announcement_left {
  width: 30%;
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
}
.top-area .itg_announcement_first,
.top-area .itg_announcement_second,
.top-area .itg_announcement_third {
  width: 50%;
}
.top-area .itg_announcement_second {
  padding: 12px 15px;
  background-color: #a7806e;
}
.top-area .itg_announcement_third, .vispring .itg_announcement .itg_announcement_third {
  padding: 12px 15px;
  background-color: #415766;
}
ul.keen-slider.keen-slider--ready.fade-slider {
  width: 70%;
}
.top-area.itg_main_announcement {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1464px;
  padding-left: 60px;
  padding-right: 60px;
  margin-left: auto;
  margin-right: auto;
}
.top-area .itg_announcement_first {
  padding: 12px 15px;
  height: auto;
  background-color: #ffffff;
}
.main_contanier{
  background: #8fd6bd;
}
.itg_main_announcement li {
  background-color: transparent !important;
  color: #000 !important;
}
body.template-index {
  padding-top: 125px !important;
}
body.dark-mode .itg_announcement_second {
  padding: 12px 15px;
  background-color: brown;
}
body.dark-mode .main_contanier {
  background: #000;
}
body.dark-mode .ffc--header .top-area .keen-slider .keen-slider__slide .rte {
  color: #fff;
}
ul.keen-slider.keen-slider--ready.fade-slider {
  width: 70%;
  height: 60px !important;
  min-height: 40px;
    transition: height 0.3s ease;
}
.ffc--header .top-area .keen-slider .keen-slider__slide .rte {
  padding: 0px 12px;
  margin:0;
}

.product-option ul li:has(input[disabled]),
.product-page .product-info-area .product-form .product-options .product-option ul li:has(input[disabled]) label {
  cursor: no-drop ;
}
@media screen and (min-width: 768px) and (max-width: 991px) {

  .top-area.itg_main_announcement {
    padding-left: 16px;
    padding-right: 16px;
  }
  .top-area .itg_announcement_left {
    width: 30%;
  }
  ul.keen-slider.keen-slider--ready.fade-slider {
    width: 64%;
  }
  .top-area .itg_announcement_second {
    padding: 12px 15px;
  }


  
}


 .product-add-on.expanded>.add-ons-container {
  max-height: 100% !important;
}


@media screen and (max-width: 767px) {

  .top-area .itg_announcement_left {
    width: 100%;
  }
  .top-area.itg_main_announcement {
    padding-left: 0;
    padding-right: 0;
  }
  .top-area.itg_main_announcement ul.keen-slider.keen-slider--ready.fade-slider {
    padding-left: 15px;
    padding-right: 15px;
    width: 95% !important;
  }
  ul.keen-slider.keen-slider--ready.fade-slider {
    width: 100%;
    margin: 10px 0px;
  }
  /* .top-area .itg_announcement_first {
    padding: 19px 15px;
  } */
  .ffc--header .top-area .keen-slider .keen-slider__slide .rte {
    padding: 0;
  }
  /* ul.keen-slider.keen-slider--ready.fade-slider {
    height: 60px !important;
  } */
  .top-area .itg_announcement_left img {
    width: auto;
    margin: 0 auto;
  }
  .product-add-on.expanded>.add-ons-container {
    max-height: 100% !important;
  }
  
}

.template-full--page-stores .benefits.benefits--large-padding {
  padding: 40px 0;
  margin: 0;
  margin-top: 60px;
}
div#shopify-chat {
  position: relative;
  z-index: 1;
}
.image-and-text video.custom-video {
  object-fit: contain;
  height: 100%;
}
span.btn-text-two {
  display: none;
}
.image-and-text .image-area.image-area--left .object-fit--cover {
  padding-bottom: 75% !important;
}


.blog_body_center a {
    text-decoration: underline;
    color: #272526 !important;
}
.blog_body_center a span {
    color: #272526 !important;
}

#shopify-section-naturepedic-header .product-link .image-area.img-square {
    display: none;
}
#shopify-section-naturepedic-header .menu-area  .info-area .title {
    text-transform: capitalize !important;
}
#shopify-section-naturepedic-header .menu-area  a.product-link.flex-col.w-120 {
    height: max-content;
}
#shopify-section-naturepedic-header .menu-area .link-menu ul.flex-row {
    margin-top: 0;
}
#shopify-section-naturepedic-header .menu-area .link-menu ul.flex-row .product-link {
    width: 100%;
    max-width: 360px;
}
#shopify-section-naturepedic-header .mega-menu .mega-menu-inner>.wrapper>.menu-area .link-menu.images-item {
    flex: 20% 0 0;
}




@media screen and (max-width: 750px) {
  .top-area.itg_main_announcement {
    display: block;
  }
  .top-area .itg_announcement_third, .top-area .itg_announcement_second, .top-area .itg_announcement_first {
    width: 33.33%;
  }
  .banner-with-text .banner__content {
    padding: 30px 0px;
  }
  .itg_loaction_grid_bg {
    padding: 40px 20px;
  }
  body .banner-with-text .banner__content {
    padding: 30px;
  }
  body .banner-with-text .banner__content h2 {
    font-size: 18px;
    line-height: 2;
  }
  body .itg_loaction_grid_bg {
    padding:40px 20px;
  }
  .ffc-section h2.h2 {
    text-align: center;
    padding-bottom: 30px;
  }
}

.ffc--header .header-inner, .ffc--header .flex.f-a-center {
      margin: 0 auto;
}



.banner-with-text .banner img {
    width: 100%;
}
.banner-with-text .banner__content, .banner__question {
    background: #8fd6bd;
    padding: 50px 100px;
    text-align: center;
}
.banner-with-text .banner__content h2 {
    line-height: 1.5;
    /* text-transform: inherit !important; */
    font-size: 30px;
}
.itg_materials_grid_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* display: grid;
    grid-template-columns: repeat(4, 1.2fr); */
    gap: 10px;
}
.itg_materials_grid_main .materials__box h3 {
    font-size: 17px;
    padding-bottom: 15px;
}
.image-with-text {
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding-top: 50px;
    padding-bottom:50px;
    max-width: 1280px;
}
.itg_materials_grid_main  .materials__box{
    width: calc(33.3333% - 35px);
}
.itg_materials_grid_main.count-2  .materials__box {
  width: calc(50% - 35px);
}
.itg_materials_grid_main.count-4 .materials__box {
    width: calc(25% - 10px);
}
.image-with-text .image , .image-with-text .content{
    width: 50%;
}
.image-with-text .image img {
    width: 100%;
}
.image-with-text .content h2, .multi__list-content h3 {
  padding-bottom:30px;
}
@media screen and (max-width: 1200px) {
  .itg_materials_grid_main {
      grid-template-columns: repeat(2, 1.2fr);
  }
  body .itg_materials_grid_main .materials__box {
   width:calc(50% - 35px) !important;
  }
}
@media screen and (max-width: 500px) {
  .itg_materials_grid_main .materials__box {
   width:100%;
  }
}
.content__list__section.wrapper .image img {
    margin: 0 auto;
}
.content__list__section ul {
    column-count: 2;
    margin: 0 auto;
    max-width: 1000px;
}
.content__list__section li {
    font-size: 20px;
    color: #415766;
    line-height: 1.4;
    padding: 8px 11px;
    display: flex;
    gap: 15px;
}
.content__list__section li span.num {
    background: #97d5c9;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: fit-content;
    padding: 4.6px 10px;
    border-radius: 100%;
}
.image-with-text.wrapper.row--4 .image {
    order: 1;
}
@media screen and (max-width: 767px) {
  .content__list__section ul {
    column-count: 1;
  }
}
.template-product.naturepedic-concerto-pillow-top .product-page .banner {
    height: 583px;
}
.banner-with-text .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.content__list__section {
    padding-top: 50px;
}
.banner_richtext {
    width: 59%;
    margin: 30px auto;
    margin-bottom: 10px;
    text-align: center;
    padding: 30px;
}
.banner_richtext p {
    font-size: 20px;
    line-height: 40px;
    color: #415766 !important;
}
.image-with-text.not--list .content {
    /* height: -webkit-fill-available; */
    text-align: center;
    background-color: #a4d6c7;
    padding: 30px;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 750px) {
  .image-with-text.wrapper.row--2 .content , body.template-product.naturepedic-breathable-crib .image-with-text.wrapper.row--2 .content {
        order: 0;
  }
  .image-with-text.wrapper.row--1 .content, body.template-product.naturepedic-breathable-crib .image-with-text.wrapper.row--1 .content, .template-product.naturepedic-down-pillow-1 .image-with-text.wrapper.row--3 .content,
  .naturepedic-organic-sculpted-latex-pillow .image-with-text.wrapper.row--3 .content {
        order: -1;
  }
  .product-page .banner {
    height: 520px;
  }
}

.content__list__section .image {
    padding-top: 30px;
}

@media screen and (min-width: 750px) {
  .itg_materials_grid_main.count-2 {
    grid-template-columns: repeat(2, 1.2fr);
  } 
  /* .template-product.naturepedic-serenade-plush .itg_materials_grid_main, .template-product.naturepedic-concerto-pillow-top .itg_materials_grid_main {
      flex-wrap: wrap;
  }
  .template-product.naturepedic-serenade-plush .materials__box , .template-product.naturepedic-concerto-pillow-top .materials__box{
      width: calc(33.3333% - 35px);
  } */
  .template-product.naturepedic-breathable-crib .image-with-text.wrapper.row--1 {
    flex-direction: column;
    text-align: center;
  }
  .template-product.naturepedic-breathable-crib .image-with-text .image {
      width: 100%;
  }
  .template-product.naturepedic-breathable-crib .image-with-text .content {
      width: 80%;
      margin: 0 auto;
  }
  .template-product.naturepedic-breathable-crib .image-with-text.wrapper.row--2 .image, .template-product.naturepedic-2-in-1-ultra-organic-kids-mattress .image-with-text.wrapper.row--3 .image {
      order: 1;
  }

  .template-product.naturepedic-2-alpaca-topper .image-with-text.row--1 .content {
    order: 1;
  }  
  .naturepedic-2-alpaca-topper .image-with-text.wrapper.row--2 .content {
    order: -1;
  }
  .naturepedic-organic-waterproof-fitted-protector-pad .image-with-text.wrapper.row--1 .content,
  .template-product.naturepedic-organic-quilted-waterproof-mattress-protector-pad-for-kids .image-with-text.wrapper.row--1 .content,
  .naturepedic-organic-quilted-protector-pad-fitted  .image-with-text.wrapper.row--1 .content,
  .naturepedic-kapok-comforters-duvet-insert .image-with-text.wrapper.row--1 .content,
  .naturepedic-alpaca-comforters-duvet-insert .image-with-text.wrapper.row--1 .content,
  .naturepedic-down-comforters-duvet-insert .image-with-text.wrapper.row--1 .content,
  .naturepedic-blanket-waffle .image-with-text.wrapper.row--1 .content,
  .naturepedic-blanket-4-layer-breathable-muslin .image-with-text.wrapper.row--1 .content,
  .naturepedic-organic-solid-latex-pillow  .image-with-text.wrapper.row--1 .content,
  .naturepedic-organic-2-in-1-adjustable-latex-pillow  .image-with-text.wrapper.row--1 .content {
    order: 0;
  }
  .naturepedic-organic-waterproof-fitted-protector-pad .image-with-text.wrapper.row--2 .content,
  .naturepedic-organic-waterproof-fitted-protector-pad .image-with-text.row--6 .content,
  .naturepedic-organic-quilted-waterproof-mattress-protector-pad-for-kids .image-with-text.wrapper.row--6 .content,
  .naturepedic-organic-quilted-waterproof-mattress-protector-pad-for-kids .image-with-text.wrapper.row--2 .content,
  .naturepedic-organic-quilted-protector-pad-fitted  .image-with-text.wrapper.row--2 .content,
  .naturepedic-organic-quilted-protector-pad-fitted  .image-with-text.wrapper.row--6 .content,
  .naturepedic-kapok-comforters-duvet-insert .image-with-text.wrapper.row--2 .content,
  .naturepedic-kapok-comforters-duvet-insert .image-with-text.wrapper.row--6 .content,
  .naturepedic-alpaca-comforters-duvet-insert .image-with-text.wrapper.row--2 .content,
  .naturepedic-alpaca-comforters-duvet-insert .image-with-text.wrapper.row--6 .content,
  .naturepedic-down-comforters-duvet-insert .image-with-text.wrapper.row--2 .content,
  .naturepedic-down-comforters-duvet-insert .image-with-text.wrapper.row--4 .content,
  .naturepedic-blanket-waffle .image-with-text.wrapper.row--2 .content,
  .naturepedic-blanket-4-layer-breathable-muslin .image-with-text.wrapper.row--2 .content ,
  .naturepedic-organic-solid-latex-pillow .image-with-text.wrapper.row--2 .content,
  .naturepedic-organic-2-in-1-adjustable-latex-pillow  .image-with-text.wrapper.row--2 .content {
     order: -1;
  }


.template-product.naturepedic-down-pillow-1 .banner.sec--banner img,
.naturepedic-organic-sculpted-latex-pillow .banner.sec--banner img,
.naturepedic-organic-solid-latex-pillow  .banner.sec--banner img,
.naturepedic-2-alpaca-topper .banner.sec--banner img,
.naturepedic-down-comforters-duvet-insert .banner.sec--banner img,
.naturepedic-organic-solid-latex-pillow .banner.sec--banner img {
    width: calc(100% - 20%);
    margin: 0 auto;
    object-fit: contain;
}

}

.template-product.naturepedic-concerto-pillow-top .trellis-component--featured-video.container,
.template-product.naturepedic-serenade-plush .trellis-component--featured-video.container,
.template-product.naturepedic-verse .trellis-component--featured-video.container,
.template-product.naturepedic-2-in-1-ultra-organic-kids-mattress .trellis-component--featured-video.container,
.template-product.naturepedic-breathable-crib .trellis-component--featured-video.container {
    display: none;
}

.template-product.naturepedic-pla-and-organic-cotton-pillow-knit-cover .image-with-text,
.template-product.naturepedic-2-inch-organic-adagio-topper .image-with-text {
    padding-top: 0;
    padding-bottom: 0px;
}
.template-product .trellis-component--featured-video.container.meta_video {
  display:block;
}



.template-product.naturepedic-down-pillow-1 .product-page .banner,
.naturepedic-down-comforters-duvet-insert .product-page .banner {
    height: 450px;
}
.template-product.naturepedic-down-pillow-1 .banner-with-text .banner.sec--banner img,
.template-product.naturepedic-2-alpaca-topper .banner-with-text .banner.sec--banner img,
.naturepedic-alpaca-comforters-duvet-insert .banner.sec--banner img,
.naturepedic-down-comforters-duvet-insert .banner.sec--banner img,
.naturepedic-down-comforters-duvet-insert .banner.sec--banner img {
    object-fit: contain;
}


@media screen and (max-width: 767px) {
  .image-with-text.wrapper.row--4 .image {
    order: -0;
  }
  .naturepedic .banner_richtext {
    width:100%;
    padding: 0 30px;
  }
  .banner-with-text .banner__content, .banner__question {
    padding:30px 0;
  }
  .banner__question h2 {
      line-height: 1.5;
      font-size:20px;
  }
  .trellis-component--featured-video {
      margin: 20px auto;
  }
  .image-with-text {
      padding-bottom: 30px;
      padding-top: 30px;
  }
  .itg_loaction_grid_main {
      margin-bottom: 0px;
  }
  body .trellis-component--featured-video {
    margin-top: 35px;
 }
 .trellis-component.trellis-component--featured-video {
    margin-bottom: 0;
  }
}
@media (max-width: 499px) {
  body .itg_materials_grid_main .materials__box {
   width:100%  !important;
  }
}
@media (max-width: 834px) {
  .featured-products .section-header.wrapper {
    padding: 0 20px;
 }
}
@media screen and (max-width: 699px) {
  .image-with-text {
    flex-direction: column;
  }
  .image-with-text .image , .image-with-text .content{
    width: 100%;
  }
  .itg_materials_grid_main .materials__box {
   width:100%;
  }
}
.naturepedic-organic-waterproof-fitted-protector-pad .banner_richtext {
  text-align: left;
  background: #8fd6bd;
  width: 65%;
  padding: 50px;
  margin-bottom: 60px;
}
.naturepedic-organic-waterproof-fitted-protector-pad .banner_richtext p {
    font-size: 14px;
}
.naturepedic-organic-waterproof-fitted-protector-pad .banner_richtext ul {
    padding-top: 20px;
}
.naturepedic-organic-waterproof-fitted-protector-pad .banner_richtext ul li {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 20px;
}
.naturepedic-organic-waterproof-fitted-protector-pad .banner_richtext h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.richtext.wrapper h3 {
    margin-bottom: 20px;
}
.richtext.wrapper {
    max-width: 1280px;
}
.naturepedic-kapok-comforters-duvet-insert .banner {
    display: none;
}
.naturepedic-kapok-comforters-duvet-insert .banner_richtext {
  margin-top:0px;
}

.dark-mode .itg_loaction_grid_part .itg_grid_content, 
.dark-mode .itg_loaction_grid_head h2, .dark-mode .itg_loaction_grid_head p,
.naturepedic .dark-mode .itg_loaction_grid_part h2, .template-full--page-landing-naturepedic .itg_loaction_head h2, .template-full--page-landing-naturepedic .itg_loaction_head p,
.dark-mode .mega-menu a, .dark-mode .jdgm-carousel__rev-sum-wrapper p, .dark-mode .jdgm-carousel__rev-sum-wrapper h2,
.vispring-page.dark-mode p, .vispring-page.dark-mode h2 {
 color:#fff;
}
.dark-mode .itg_loaction_grid_bg .itg_loaction_grid_part {
 box-shadow: 0 0 10px #fff;
}
/* .naturepedic .dark-mode .mega-menu a,.naturepedic .dark-mode .mega-menu h2 {
    color: #000;
} */
.dark-mode .social-icons li a svg path, .dark-mode .social-icons li a .icon path {
    stroke: currentColor;
    fill: inherit;
}
.dark-mode .ffc--header .header-search .search-results-dropdown {
  background:#fff
}
.dark-mode .ffc--header .header-search [data-ajax-search-input] {
    background: transparent;
    color: #fff;
}
.dark-mode .header-search .h6, .dark-mode  .header-search a, 
.vispring-page.dark-mode .itg_loaction_part_content p,
.vispring-page.dark-mode .itg_loaction_part_content h2 {
  color:#000;
}
@media screen and (min-width: 999px) {
 .naturepedic-organic-waterproof-fitted-protector-pad .banner_richtext ul {
    column-count: 3;
  }
}

.multi__box-content {
    display: grid;
    grid-template-columns: repeat(2, 1.2fr);
    gap: 30px;
    margin-bottom: 50px;
}
.multi__box-content .content__box {
    background: #8fd6bd;
    padding: 30px;
    width:100%;
}
.multi__box-content .content__box h2 {
    padding-bottom: 10px;
}
.multi__box-content .content__box ul {
    column-count: 2;
    padding-top: 10px;
}
@media screen and (max-width: 750px) {
  .multi__box-content {
    grid-template-columns: repeat(1, 1.2fr);
    gap: 20px;
  }
  .multi__box-content .content__box {
    padding:20px 10px;
  }
  .ffc--header .top-area .keen-slider .keen-slider__slide {
    padding: 0 12px;
  }
  .multi__box-content .content__box h2 {
    font-size: 20px;
  }
  .jdgm-carousel__rev-sum-kwds {
        flex-wrap: wrap;
        gap: 8px;
    }
}
.multi__list-content .image-with-text {
    align-items: center;
}
@media screen and (min-width: 1399px) {
   .itg_main_announcement ul.keen-slider.keen-slider--ready.fade-slider {
      height: 80px !important;
  }
  .itg_main_announcement .keen-slider.fade-slider .fader-slide {
    top:20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
  .top-area.itg_main_announcement, body .itg_announcement {
    display: block;
    padding-bottom: 10px;
  }
  .top-area .itg_announcement_left, body .itg_announcement .itg_announcement_left {
    width: 60%;
    margin: 0 auto;
  }
  body ul.keen-slider.keen-slider--ready.fade-slider, #shopify-section-announcement-bar .itg_announcement_right {
    width: 100% !important;
  }
  .ffc--header .top-area .keen-slider .keen-slider__slide {
    padding-top: 10px;
  }
}
