/** Shopify CDN: Minification failed

Line 13:4 Unexpected "@charset"
Line 1896:2 Expected identifier but found "*"
Line 4382:2 "line-heihgt" is not a known CSS property
Line 6886:2 Expected identifier but found "*"
Line 6947:2 Expected identifier but found "*"
Line 15911:15 Expected identifier but found "!"
Line 16379:3 Expected identifier but found whitespace
Line 17318:2 "line-heigth" is not a known CSS property

**/
ver @charset "UTF-8";
.surface-pick-up-embed {
  --surface-pick-up-embed-theme-success-color: rgb(50, 205, 50);
  --surface-pick-up-embed-theme-error-color: rgb(179, 58, 58);
  --surface-pick-up-embed-theme-paragraph-font-size: 16px;
  --surface-pick-up-embed-theme-paragraph-smaller-font-size: calc(var(--surface-pick-up-embed-theme-paragraph-font-size) - 4px);
  --surface-pick-up-embed-theme-body-font-weight-bold: 600;
  --surface-pick-up-embed-theme-body-text-color: #808080;
  --surface-pick-up-embed-theme-link-text-decoration: underline;
  --surface-pick-up-embed-row-gap: 10px;
  --surface-pick-up-embed-column-gap: 10px;
  display: grid;
  grid-template-columns: min-content auto;
  row-gap: var(--surface-pick-up-embed-row-gap);
  column-gap: var(--surface-pick-up-embed-column-gap);
  justify-content: flex-start;
  text-align: left;
}

.surface-pick-up-embed__in-stock-icon,
.surface-pick-up-embed__out-of-stock-icon {
  grid-column-start: 1;
  grid-column-end: 2;
  margin-top: 3px;
}

.surface-pick-up-embed__in-stock-icon {
  fill: var(--surface-pick-up-embed-theme-success-color);
}

.surface-pick-up-embed__out-of-stock-icon {
  fill: var(--surface-pick-up-embed-theme-error-color);
}

.surface-pick-up-embed__location-info,
.surface-pick-up-embed__modal-btn {
  grid-column-start: 2;
  grid-column-end: 3;
}

.surface-pick-up-embed__location-info {
  grid-row-start: 1;
  grid-row-end: 2;
}

.surface-pick-up-embed__location-availability {
  margin-top: 0;
  margin-bottom: 0;
  font-family: inherit;
  font-size: var(--surface-pick-up-embed-theme-paragraph-font-size);
  font-weight: inherit;
  color: var(--surface-pick-up-embed-theme-body-text-color);
}
.surface-pick-up-embed__location-availability b {
  font-weight: var(--surface-pick-up-embed-theme-body-font-weight-bold);
}

.surface-pick-up-embed__location-pick-up-time {
  font-size: var(--surface-pick-up-embed-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-embed-theme-body-text-color);
}

.surface-pick-up-embed__modal-btn {
  grid-row-start: 2;
  grid-row-end: 3;
  justify-self: start;
  padding: 0;
  font-size: var(--surface-pick-up-embed-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-theme-embed-body-text-color);
  text-align: left;
  -webkit-text-decoration: var(--surface-pick-up-embed-theme-link-text-decoration);
          text-decoration: var(--surface-pick-up-embed-theme-link-text-decoration);
  cursor: pointer;
  background-color: initial;
  border: 0;
}

.surface-pick-up-items {
  padding: 0;
  margin: 0;
}

.surface-pick-up-item {
  --surface-pick-up-item-theme-success-color: rgb(50, 205, 50);
  --surface-pick-up-item-theme-error-color: rgb(179, 58, 58);
  --surface-pick-up-item-theme-paragraph-font-size: 16px;
  --surface-pick-up-item-theme-paragraph-smaller-font-size: calc(var(--surface-pick-up-item-theme-paragraph-font-size) - 4px);
  --surface-pick-up-item-theme-body-font-weight-bold: 600;
  --surface-pick-up-item-theme-body-text-color: #808080;
  --surface-pick-up-item-theme-border-color: #d9d9d9;
  --surface-pick-up-item-theme-link-text-decoration: underline;
  --surface-pick-up-item-row-gap: 10px;
  --surface-pick-up-item-column-gap: 5px;
  --surface-pick-up-item-gap: 28px;
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr;
  row-gap: var(--surface-pick-up-item-row-gap);
  column-gap: var(--surface-pick-up-item-column-gap);
  justify-content: flex-start;
  padding-bottom: var(--surface-pick-up-item-gap);
  margin: var(--surface-pick-up-item-gap) 0 0;
  text-align: left;
  border-bottom: 1px solid var(--surface-pick-up-item-theme-border-color);
}
.surface-pick-up-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.surface-pick-up-item__header {
  display: flex;
  grid-column: span 3;
  align-items: flex-end;
}

.surface-pick-up-item__pick-up-location {
  margin-top: 0;
  margin-bottom: 0;
  font-family: inherit;
  font-size: var(--surface-pick-up-item-theme-paragraph-font-size);
  font-weight: var(--surface-pick-up-item-theme-body-font-weight-bold);
  color: var(--surface-pick-up-item-theme-body-text-color);
}

.surface-pick-up-item__pick-up-distance {
  padding-left: 2rem;
  margin: 0 0 0 auto;
}

.surface-pick-up-item__in-stock-icon,
.surface-pick-up-item__out-of-stock-icon {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-top: 1px;
}

.surface-pick-up-item__in-stock-icon {
  fill: var(--surface-pick-up-item-theme-success-color);
}

.surface-pick-up-item__out-of-stock-icon {
  fill: var(--surface-pick-up-item-theme-error-color);
}

.surface-pick-up-item__availability {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 3;
  font-size: var(--surface-pick-up-item-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-item-theme-body-text-color);
}

.surface-pick-up-item__address-info {
  grid-row-start: 3;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 3;
  font-size: var(--surface-pick-up-item-theme-paragraph-smaller-font-size);
  font-style: normal;
  line-height: 1.4;
  color: var(--surface-pick-up-item-theme-body-text-color);
}
.surface-pick-up-item__address-info p {
  margin: 0;
}
.surface-pick-up-item__address-info a,
.surface-pick-up-item__address-info a:visited {
  color: inherit;
  text-decoration: none;
}
.surface-pick-up-item__address-info a:focus,
.surface-pick-up-item__address-info a:active,
.surface-pick-up-item__address-info a:hover {
  color: inherit;
}

.surface-pick-up-item__confirm-address {
  margin-top: var(--surface-pick-up-item-row-gap);
}

.surface-pick-up-item__confirm-address-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

.complementary-products {
  --slide-item-padding: 1rem;
  --slide-item-outer-gap: 1rem;
  --slide-item-inner-gap: 1rem;
  --slide-item-border-color: black;
  --slide-item-border-thickness: 1px;
  --slider-dot-gap: 0.5rem;
  --slider-dot-size: 0.5rem;
  --slider-dot-color: #cacaca;
  --slider-active-dot-color: #787878;
}

.complementary-products__slider [data-slide] {
  position: absolute;
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
  gap: var(--slide-item-outer-gap);
  width: 100%;
  height: auto;
}
.complementary-products__slider .flickity-page-dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: var(--slider-dot-gap);
}
.complementary-products__slider .flickity-page-dots .dot {
  margin: 0;
  border-radius: 50%;
  background: var(--slider-dot-color);
  height: var(--slider-dot-size);
  width: var(--slider-dot-size);
}
.complementary-products__slider .flickity-page-dots .dot.is-selected {
  background: var(--slider-active-dot-color);
}

.complementary-products__grid {
  display: flex;
  flex-direction: column;
  gap: var(--slide-item-outer-gap);
}

.complementary-product {
  display: flex;
  flex-direction: row;
  gap: var(--slide-item-inner-gap);
  padding: var(--slide-item-padding);
  border: var(--slide-item-border-thickness) solid var(--slide-item-border-color);
}

.complementary-product__name,
.complementary-product__price-text {
  margin: 0;
}

.complementary-product__price-text {
  display: inline-block;
}

.complementary-product__image-link {
  display: block;
  position: relative;
  line-height: 0;
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.age-gate::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color, #ffffff);
  content: "";
}

.age-gate__header {
  margin-bottom: 32px;
}

.age-gate__logo-wrapper {
  position: relative;
  display: block;
  max-width: 100px;
  margin: 0 auto;
}
.age-gate__logo-wrapper + .age-gate__heading,
.age-gate__logo-wrapper + .age-gate__description {
  margin-top: 32px;
}

.age-gate__logo {
  width: auto;
  height: auto;
  max-width: 100%;
}

.age-gate__heading {
  margin-top: 0;
  margin-bottom: 0;
}
.age-gate__heading + .age-gate__description {
  margin-top: 12px;
}

.age-gate__description {
  margin-top: 0;
  margin-bottom: 0;
}

.age-gate__content {
  position: relative;
  z-index: 1;
  /* Extra small devices (phones, 768px and down) */
  max-width: 75%;
  /* Medium devices (landscape tablets, 768px and up) */
}
@media only screen and (min-width: 768px) {
  .age-gate__content {
    max-width: 50%;
  }
  .cart .is_desktop .add_to_cart {
  border-radius:4px!important;
    margin-bottom:12px!important
 }
}

.age-gate__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.age-gate__select-wrapper {
  /* Extra small devices (phones, 768px and down) */
  grid-column: 1/4;
  /* Medium devices (landscape tablets, 768px and up) */
}
@media only screen and (min-width: 768px) {
  .age-gate__select-wrapper {
    grid-column: unset;
  }
}

.age-gate__select {
  margin-top: 0;
  margin-bottom: 0;
  /* Medium devices (landscape tablets, 768px and up) */
}
@media only screen and (min-width: 768px) {
  .age-gate__select {
    margin-top: inherit;
    margin-bottom: inherit;
  }
}

.age-gate__confirm_btn {
  grid-column: 1/4;
}

.age-gate__error {
  grid-column: 1/4;
  margin-top: 10px;
  color: var(--color-error, #ea555c);
}

.recipient-disclosure {
  --recipient-disclosure-top-margin: 0;
  --recipient-disclosure-bottom-margin: 0;
  --recipient-form-field-gap: 0;
  --recipient-form-label-gap: 0;
  --recipient-form-label-margin: 6px;
  --recipient-form-checkbox-width: 12px;
  --recipient-form-checkbox-border-width: 1px;
  --recipient-form-checkbox-border-color: #000000;
  --recipient-form-checkbox-border-radius: 0;
  --recipient-form-checkbox-svg-color: inherit;
  --recipient-form-error-color: #cc3333;
  margin: var(--recipient-disclosure-top-margin) 0 var(--recipient-disclosure-bottom-margin);
}

.recipient-disclosure__summary {
  position: relative;
  list-style: none;
}
.recipient-disclosure__summary::-webkit-details-marker {
  display: none;
}

.recipient-disclosure__checkbox {
  position: absolute;
  -webkit-appearance: none;
          appearance: none;
  width: var(--recipient-form-checkbox-width);
  height: var(--recipient-form-checkbox-width);
  border: var(--recipient-form-checkbox-border-width) solid var(--recipient-form-checkbox-border-color);
  border-radius: var(--recipient-form-checkbox-border-radius);
}
.recipient-disclosure__checkbox:checked ~ svg {
  visibility: visible;
}

.recipient-disclosure__checkbox-label {
  display: flex;
  align-items: center;
}
.recipient-disclosure__checkbox-label svg {
  visibility: hidden;
  position: absolute;
  width: var(--recipient-form-checkbox-width);
  height: var(--recipient-form-checkbox-width);
  color: var(--recipient-form-checkbox-svg-color);
}

.recipient-disclosure__checkbox,
.recipient-disclosure__checkbox-label {
  cursor: pointer;
}

.recipient-disclosure__checkbox-label-text {
  flex: 1;
  margin-left: calc(var(--recipient-form-checkbox-width) + var(--recipient-form-label-margin));
}

.recipient-form {
  display: flex;
  flex-direction: column;
  gap: var(--recipient-form-field-gap);
  margin-top: 1rem;
}

.recipient-form__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--recipient-form-label-gap);
}

.recipient-form__input {
  box-sizing: border-box;
}

.recipient-form__error-message {
  display: none;
}
.recipient-form--has-errors .recipient-form__error-message {
  display: block;
}

.recipient-form__max-characters-message {
  display: block;
  margin-top: 0.25rem;
}

/******************************************************************
Theme Name: Parallax
Theme URI: http://themes.shopify.com/themes/parallax/styles/aspen?ref=out-of-the-sandbox
Author: Out of the Sandbox (http://outofthesandbox.com)
Description: Shopify Theme (http://www.shopify.com/?ref=out-of-the-sandbox)
******************************************************************/
/* Table of Content
==================================================
  #Mixins
  #Functions
  #Helper Classes
  #Reset & Basics
  #Fonts
  #Basic Styles
  #Typography
  #Links
  #Lists
  #Menu
  #Images
  #Placeholders
  #Videos
  #Buttons
  #Cart
  #Tabs
  #Forms
  #Tables
  #Misc
  #Site Styles
  #Slideshow
  #Product thumbnail
  #Home page - Rich text
  #Home page - Gallery
  #Home page - Featured product
  #Home page - Featured promotions
  #Home page - Divider
  #Home page - Newsletter
  #Home page - Image with text
  #Home page - Quote
  #Contact form
  #Recipient form
  #Blog
  #Blog posts
  #Image Gallery
  #Image with text
  #Testimonials
  #Logo-list
  #Search
  #Predictive search
  #Mobile search
  #Swatch Styles
  #Sidebar
  #mmenu
  #FlexSlider
  #Quick Shop
  #Flickity
  #Product blocks
  #Product Slider Custom Styles
  #Thumbnail Gallery Styles
  #Content Creator
  #FancyBox
  #Plyr
  #Model Viewer
  #Product Media Custom Styles
  #Currency / Language switcher
  #Grid/layout
  #Password Page
  #Order Page
  #Integrated Shopify Reviews
  #Homepage Banner Images
  #Unit Pricing
  #Product rating
  #Font-Face
  #Complementary products
  #Custom Styles */
/* #Mixins
================================================== */
/*
  This mixin can be used to prevent word overflow:
  @include word-wrap();
*/
/* #Helper Classes
================================================== */
.is-flex {
  display: flex;
}

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

.is-align-start,
.is-align-left {
  align-items: flex-start;
}

.is-align-end,
.is-align-right {
  align-items: flex-end;
}

.is-align-self-end,
.is-align-self-right {
  align-self: flex-end;
}

.is-align-baseline {
  align-items: baseline;
}

.is-align-center {
  align-items: center;
}

.is-align-stretch {
  align-items: stretch;
}

.is-justify-start,
.is-justify-left {
  justify-content: flex-start;
}

.is-justify-end,
.is-justify-right {
  justify-content: flex-end;
}

.is-justify-center {
  justify-content: center;
}

.is-justify-space-around {
  justify-content: space-around;
}

.is-justify-space-between {
  justify-content: space-between;
}

.is-flex-nowrap {
  flex-wrap: nowrap;
}

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

.is-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

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

.is-flex-row-reverse {
  flex-direction: row-reverse;
}

.is-flex-column {
  flex-direction: column;
}

.is-flex-column-reverse {
  flex-direction: column-reverse;
}

.is-order-aligned-left {
  order: -1;
}
@media only screen and (max-width: 480px) {
  .is-order-aligned-left {
    order: inherit;
  }
}

.is-order-aligned-right {
  order: 1;
}
@media only screen and (max-width: 480px) {
  .is-order-aligned-right {
    order: inherit;
  }
}

.has-padding-top {
  padding-top: 20px;
}

.has-padding-bottom {
  padding-bottom: 20px;
}

.has-padding-left {
  padding-left: 20px;
}

.has-padding-right {
  padding-right: 20px;
}

.has-padding {
  padding: 20px;
}

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

.text-align-left,
.text-align-start {
  text-align: left;
}
.text-align-left h1, .text-align-left h2, .text-align-left h3,
.text-align-left h1.title,
.text-align-left h2.title,
.text-align-left h3.title,
.text-align-start h1,
.text-align-start h2,
.text-align-start h3,
.text-align-start h1.title,
.text-align-start h2.title,
.text-align-start h3.title {
  text-align: left;
}

.text-align-right,
.text-align-end {
  text-align: right;
}
.text-align-right h1, .text-align-right h2, .text-align-right h3,
.text-align-right h1.title,
.text-align-right h2.title,
.text-align-right h3.title,
.text-align-end h1,
.text-align-end h2,
.text-align-end h3,
.text-align-end h1.title,
.text-align-end h2.title,
.text-align-end h3.title {
  text-align: right;
}

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

.is-visible {
  display: block !important;
}

.is-sr-only {
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

.is-invisible {
  visibility: hidden !important;
}

@media only screen and (min-width: 481px) and (max-width: 798px) {
  .is-hidden-small {
    display: none !important;
  }
}
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .is-hidden-medium {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .is-hidden-large {
    display: none !important;
  }
}
@media only screen and (max-width: 798px) {
  .is-hidden-mobile-only {
    display: none !important;
  }
}
@media only screen and (min-width: 799px) {
  .is-hidden-desktop-only {
    display: none !important;
  }
}
@media only screen and (min-width: 1401px) {
  .is-hidden-widescreen {
    display: none !important;
  }
}
@media only screen and (max-width: 798px) {
  .is-visible--mobile {
    display: block !important;
  }
}
@media only screen and (max-width: 798px) {
  .is-hidden-offset-mobile-only {
    left: 0 !important;
  }
}
.is-invisible {
  visibility: hidden !important;
}

/* Scroll */
.scroll-locked {
  overflow: hidden;
  touch-action: manipulation;
}

/* #Reset & Basics
================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* #Fonts
================================================== */@font-face {
  font-family: Figtree;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n5.3b6b7df38aa5986536945796e1f947445832047c.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n5.f26bf6dcae278b0ed902605f6605fa3338e81dab.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i5.969396f679a62854cf82dbf67acc5721e41351f0.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i5.93bc1cad6c73ca9815f9777c49176dfc9d2890dd.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n4.3c0838aba1701047e60be6a99a1b0a40ce9b8419.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n4.c0575d1db21fc3821f17fd6617d3dee552312137.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i4.89f7a4275c064845c304a4cf8a4a586060656db2.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i4.6f955aaaafc55a22ffc1f32ecf3756859a5ad3e2.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


  @font-face {
  font-family: Nunito;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/nunito/nunito_n4.fc49103dc396b42cae9460289072d384b6c6eb63.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/nunito/nunito_n4.5d26d13beeac3116db2479e64986cdeea4c8fbdd.woff") format("woff");
}


  @font-face {
  font-family: Nunito;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/nunito/nunito_n7.37cf9b8cf43b3322f7e6e13ad2aad62ab5dc9109.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/nunito/nunito_n7.45cfcfadc6630011252d54d5f5a2c7c98f60d5de.woff") format("woff");
}


  @font-face {
  font-family: Nunito;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/nunito/nunito_i4.fd53bf99043ab6c570187ed42d1b49192135de96.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/nunito/nunito_i4.cb3876a003a73aaae5363bb3e3e99d45ec598cc6.woff") format("woff");
}


  @font-face {
  font-family: Nunito;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/nunito/nunito_i7.3f8ba2027bc9ceb1b1764ecab15bae73f86c4632.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/nunito/nunito_i7.82bfb5f86ec77ada3c9f660da22064c2e46e1469.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n9.c9185a1dab0680c9bce2d373c6fc665d10b5e421.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n9.60f18207a47942453faf8770b2e7e8f4757b2493.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i9.52cfd46a18002d3eb2c8e0abf4e3a200bcdcadf0.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i9.771e47ee6227db726e79da4a30fbe8788fe0e115.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n4.3c0838aba1701047e60be6a99a1b0a40ce9b8419.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n4.c0575d1db21fc3821f17fd6617d3dee552312137.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i4.89f7a4275c064845c304a4cf8a4a586060656db2.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i4.6f955aaaafc55a22ffc1f32ecf3756859a5ad3e2.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n9.c9185a1dab0680c9bce2d373c6fc665d10b5e421.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n9.60f18207a47942453faf8770b2e7e8f4757b2493.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i9.52cfd46a18002d3eb2c8e0abf4e3a200bcdcadf0.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i9.771e47ee6227db726e79da4a30fbe8788fe0e115.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n5.3b6b7df38aa5986536945796e1f947445832047c.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n5.f26bf6dcae278b0ed902605f6605fa3338e81dab.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i5.969396f679a62854cf82dbf67acc5721e41351f0.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i5.93bc1cad6c73ca9815f9777c49176dfc9d2890dd.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//thehappywife.com/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


/* #Basic Styles
================================================== */
body {
  background-color: #333333;
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  color: #363636;
  line-height: 1.8em;
  overflow-wrap: break-word;
}

#content_wrapper {
  width: 100%;
  background-color: #ffffff;
}.site-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
}
.site-overlay[data-animation] {
  display: block;
  transition: opacity 250ms;
}
.site-overlay[data-animation-state=open] {
  display: block;
  opacity: 1;
}

::selection {
  background: #FFF7B6;
  color: black;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

abbr {
  border-bottom: 1px dotted #0d0d0d;
}

/* #Typography
================================================== */
/* Secondary Logo */
.shopify-section--header .secondary-logo--true .secondary_logo {
  display: none;
}

.shopify-section--header .secondary-logo--true .primary_logo {
  display: none;
}

.shopify-section--header.feature_image .secondary-logo--true .secondary_logo {
  display: block;
}

.shopify-section--header:not(.feature_image) .secondary-logo--true .primary_logo {
  display: block;
}

.header.sticky--active .secondary-logo--true .primary_logo {
  display: block;
}
.header.sticky--active .secondary-logo--true .secondary_logo {
  display: none;
}

.logo {
  font-family: Figtree, sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: none;
}h1,
h2,
h3,
h4,
h5,
h6,
.collection_title,
.headline,
.subtitle p,
.footer_menu a,
.empty_cart,
.promo-banner {
  font-family: Nunito, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #363636;
  display: block;
  letter-spacing: 1px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.collection_title {
  font-weight: inherit;
}

h1 a,
h1 a:hover,
h1 a:visited,
h1 a:active,
.collection_title a,
.collection_title a:hover,
.collection_title a:visited,
.collection_title a:active {
  color: #363636;
}

h1,
.h1,
h1.home,
h2.title,
h2.title a,
.collection_title,
h3.title {
  font-size: 28px;
  line-height: 1.8em;
  margin: 0 auto 15px;
  clear: both;
  font-weight: 400;
  padding-top: 4px;
  color: #363636;
  text-align: center;
}

h2.title.align_right {
  text-align: right;
  margin: 0 0 15px 0;
}

h2.title.align_left {
  text-align: left;
  margin: 0 0 15px 0;
}

h1.product_name {
  margin-bottom: 15px;
  text-align: left;
}

h1.article_title {
  margin-bottom: 5px;
  text-align: left;
}

h1.article_title.align_center {
  text-align: center;
}

h2.product_name a {
  color: #363636;
}

h2,
.h2 {
  font-size: 22px;
  margin-bottom: 0.75em;
  line-height: 1.5em;
}

h3,
.h3 {
  font-size: 20px;
  line-height: 35px;
  margin: 0 auto 15px 0;
}

h3.title a {
  color: #363636;
}

h1.collection_title,
div.collection_title {
  margin-bottom: 0;
  line-height: 28px;
  display: inline;
}

h1.collection_title_tags,
div.collection_title_tags {
  padding-right: 25px;
  border-right: solid 1px #0d0d0d;
}

h4,
.h4,
h4.title a,
h6.title {
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 0.5em 0;
  padding: 0;
  padding: 7px 0;
  color: #363636;
}

h4.title a {
  border: 0;
  padding: 0;
  margin: 0;
}

h5,
.h5 {
  font-size: 18px;
  padding-bottom: 1em;
}

h5.sub_title {
  padding: 5px 0;
  color: #363636;
}

h5.sub_title a {
  color: #363636;
}

h6,
.h6,
h6.title,
ul.footer_menu a,
ul.footer_menu a:visited {
  font-size: 16px;
  letter-spacing: 0px;
  margin-bottom: 5px;
}

.subheader {
  color: #777;
}

p {
  margin: 0 0 15px;
  font-style: normal;
  line-height: 1.8em;
  max-width: 100%;
}

p img {
  margin: 0;
}

sub {
  font-size: 60%;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

small {
  font-size: 90%;
}

.items_left p {
  margin: 5px 0;
}.align_left .feature_divider {
  margin-left: 0;
  margin-right: 0;
}

.text-align--right {
  text-align: right;
  align-items: flex-end;
}
.text-align--right .description:before {
  margin-right: 0;
}

.text-align--left {
  text-align: left;
  align-items: flex-start;
}
.text-align--left .description:before {
  margin-left: 0;
}

.text-align--center {
  text-align: center;
  align-items: center;
}
.text-align--center .description:before {
  margin-left: 0;
}

p.trim-paragraph {
  margin-bottom: 0;
}

.trim-last-paragraph p:last-child {
  margin-bottom: 0;
}

.feature_divider_alternate {
  margin: initial;
  margin-bottom: 25px;
}

.content h2 {
  margin-bottom: 0;
  line-height: 1.8em;
}

.page-divider {
  opacity: 0;
  border-color: #363636;
}

.active-divider {
  opacity: 1;
}

/*  Blockquotes  */
blockquote,
blockquote p {
  font-size: 17px;
  line-height: 24px;
  font-style: italic;
}

blockquote {
  margin: 0 0 20px;
  padding: 9px 20px 0 19px;
  border-left: 1px solid #0d0d0d;
}

blockquote cite {
  display: block;
  font-size: 12px;
  color: #555;
}

blockquote cite:before {
  content: "— ";
}

blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited {
  color: #555;
}

hr {
  border: solid #0d0d0d;
  border-width: 1px 0 0;
  clear: both;
  margin: 12px 0;
  height: 0;
}

.quote,
.message {
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin: 20px 0;
  font-style: italic;
}
.footer .quote,
.footer .message {
  text-align: left;
  font-weight: bold;
  padding: 10px 0;
}

div.section.collection_description {
  margin: 0 0 1.5em 0;
}

.section.collection-main-section {
  max-width: 100%;
  padding: 0px 80px;
  width: 100%;
  box-sizing: border-box;
}

.collection_description-desktop {
  display: none;
}

@media(min-width: 799px ) {
  .collection_description-desktop {
    display: block;
  }

  .collection_description-mobile {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .section.collection-main-section {
    padding: 0px 18px;
  }
}

.collection-deliry-text {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.collection-deliry-text * {
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.014px;
  color: rgba(26, 26, 26, 0.8);
}

.collection_description * {
  text-align: left !important;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.016px;
  color: #1A1A1A;
}

.collection_description a {
  text-decoration: none;
  color: #FF6F6F;
}

input.action_button.sign_up {
  line-height: 1;
}

@media(min-width: 1024px) {
  .collection_description * {
    font-size: 18px;
  }
}

/* #Links
================================================== */
a, a:visited {
  color: #fa7268;
  text-decoration: none;
  outline: 0;
  transition: color 0.1s linear;
}

a:hover,
a:focus {
  color: #000000;
}

a:focus {
  outline: #025ECC auto 5px;
}

a, button, input, select, textarea, label, summary {
  touch-action: manipulation;
}

.breadcrumb--text a, 
.breadcrumb--text a:visited {
  color: black;
}

.breadcrumb--text a:hover {
  color: #fa7268;
}

/* #Lists
================================================== */
ul, ol {
  margin-bottom: 20px;
}

ul {
  list-style: disc outside;
}

ol {
  list-style: decimal;
}

ul, ol, ul.square, ul.circle, ul.disc {
  margin-left: 30px;
}

ul.square {
  list-style: square outside;
}

ul.circle {
  list-style: circle outside;
}

ul.disc {
  list-style: disc outside;
}

ul ul, ul ol,
ol ol, ol ul {
  margin: 4px 0 5px 30px;
}

ul ul li, ul ol li,
ol ol li, ol ul li {
  margin-bottom: 6px;
}

li {
  margin-bottom: 12px;
}

ul.large li {
  line-height: 21px;
}

ul.none {
  list-style: none outside;
  margin-left: 0;
}

ul.border {
  list-style: none outside;
  line-height: 26px;
}

ul.border li {
  border-bottom: 1px solid #0d0d0d;
  list-style: none outside none;
  padding: 12px 0;
  margin-bottom: 0;
}

.detailed-list {
  margin-top: 10px;
}

/* #Announcement bar
================================================== */
.promo-banner {
  width: 100%;
  position: relative;
  display: none;
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
}
@media only screen and (max-width: 798px) {
  .promo-banner {
    position: absolute;
    font-size: 11px;
    width: 100%;
    z-index: 200;
    margin-top:112px;
  }
  .page-blocks {
    margin-top:33px;
  }
}

.promo-banner__text {
  margin: 0;
  font-size: 12px;
  padding-right: 50px;
  padding-left: 50px;
}

.promo-banner__close {
  display: flex;
  align-items: center;
  top: 0;
  right: 10px;
  position: absolute;
  padding: 0;
  height: 100%;
  font-size: 18px;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  background: transparent;
}
.promo-banner__close:hover, .promo-banner__close:active {
  background: transparent;
}

.promo-banner__close[class*=" icon-"] {
  margin-right: 0;
}

.promo-banner--true .promo-banner {
  display: block;
}

@media only screen and (max-width: 798px) {
  .promo-banner--true .shopify-section--header {
    padding-top: 40px;
  }
  .promo-banner--true .global-wrapper {
    margin-top: 25px;
  }
  .promo-banner--true div.content {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 798px) {
  .promo-banner ~ .header {
    padding-top: 40px;
  }
}

.feature_image .promo-banner ~ .header.sticky-header--true.sticky--active {
  top: 25px;
}

.sticky-promo--true {
  position: fixed;
}

/* #Menu
================================================== */

.header {
  z-index: 10001;
  width: 100%;
  top: 0;
  transition: background-color 500ms ease;
  animation-delay: 1.25s;
}

div.header_bar,
div.sticky--active {
  top: 0;
  background: #000000;
}

.no-js .header {
  background: #000000;
}

.header.sticky--active {
  animation-delay: 0s;
}

.feature_image .header.sticky-header--true.header-background--false {
  position: absolute;
}

.feature_image .header.sticky-header--true.sticky--active {
  position: fixed;
  top: 0;
}

.header div.dropdown__wrapper {
  padding-bottom: 5px;
  padding-top: 5px;
}

.header.header-dropdown-position--below_header div.dropdown__wrapper,
.header.header-dropdown-position--below_parent div.dropdown__wrapper {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
.header.header-dropdown-position--below_header div.dropdown__wrapper ul.menu li,
.header.header-dropdown-position--below_parent div.dropdown__wrapper ul.menu li {
  padding: 10px 0 10px 3px;
}
.header.header-dropdown-position--below_header div.dropdown__wrapper ul.menu .dropdown-links li,
.header.header-dropdown-position--below_parent div.dropdown__wrapper ul.menu .dropdown-links li {
  padding: 5px 0 5px 3px;
}

/* @media only screen and (max-width: 798px) {
  .global-wrapper {
    margin-top: 73px;
  }
} */

body .mm-page {
  width: 100%;
}

body .mm-slideout {
  z-index: auto;
}
body .mm-slideout.mm-wrapper__blocker {
  z-index: 5002;
}

body .mm-slideout .promo-banner {
  /*z-index: 10001;*/
}

#header {
  display: none;
  background: #000000;
  border-bottom: 1px solid #0d0d0d;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  height: 74px;
  padding: 0 50px;
  z-index: 9999;
  width: 100%;
  opacity: 0.95;
  box-sizing: border-box;
}

#header.mm-fixed-top.mobile-sticky-header--false {
  /*position: absolute;*/
}

#header a {
  color: #ffffff;
  font-size: 32px;
  display: block;
  height: auto;
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 25px;
  padding-top: 5px;
}

div#header a span {
  display: inline;
  padding-left: 8px;
  position: relative;
  top: -2px;
}

#header a.right {
  left: auto;
  right: 15px;
  font-size: 20px;
  padding-top: 8px;
  top: 0px;
}
#header a.icon-menu,
#header a.right {
  z-index: 1;
  padding-top: 0;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}
#header a.icon-menu:before {
  font-size: 24px !important;
}
#header a.icon-menu span {
  top: -5px;
  line-height: 1;
}
#header a.icon-menu:before {
  margin-left: 38px;
}
#header a.icon-menu {
  left: -20px;
}

.header .nav {
  display: flex;
}

.nav ul {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
}

.nav ul li {
  display: inline-block;
  margin: 0;
  border: 0;
}

.nav ul li {
  *display: inline;
}

.nav ul li a.dropdown-link,
.nav ul li summary.dropdown-link {
  padding: 10px 4px;
}

.nav ul li:hover a.dropdown-link,
.nav ul li:hover summary.dropdown-link {
  color: #fa7268;
  z-index: 1009;
}

.nav a,
.nav a:visited,
.nav a:active,
#header a span,
.nav a.cart-button span,
select.currencies,
.nav summary,
.nav summary:visited,
.nav summary:active {
  font-family: Figtree, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
  color: #ffffff;
  position: relative;
  display: block;
  letter-spacing: 0px;
  padding: 10px 4px 10px 4px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* When a featured image is present use "main menu over content" color */
.feature_image .header .nav a,
.feature_image .header .nav summary,
.feature_image .header .nav a.icon-cart,
.feature_image .header .nav a.cart-button span,
.feature_image .header #header__selector-form button.disclosure__toggle,
.feature_image .header #header__selector-form button.disclosure__toggle span {
  color: #ffffff;
}

.feature_image .header .nav #header__selector-form button.disclosure__toggle {
  background-color: rgba(255, 255, 255, 0.2);
}

/* When the header becomes fixed use "main menu" color */
.header.header_bar .nav a,
.header.header_bar .nav summary,
.header.header_bar .nav a.icon-cart,
.header.header_bar .nav a.cart-button span,
.feature_image .header.header_bar #header__selector-form button.disclosure__toggle,
.feature_image .header.header_bar #header__selector-form button.disclosure__toggle span {
  color: #ffffff;
}

.header.header_bar .nav #header__selector-form button.disclosure__toggle {
  background-color: rgba(255, 255, 255, 0.2);
}

.header-text-shadow--true a,
.header-text-shadow--true a.icon-cart,
.header-text-shadow--true a.cart-button span,
.header-text-shadow--true #header__selector-form button.disclosure__toggle,
.header-text-shadow--true #header__selector-form button.disclosure__toggle span {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.feature_image .header .nav a:hover,
.nav a.active, .header_bar a.active,
.nav summary.active,
.feature_image .header .nav a:focus {
  color: #fa7268 !important;
}

@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .mm-opened .feature_image .promo-banner {
    top: 0;
  }
}
.nav a.icon-cart span {
  display: inline;
}

a.icon-cart,
a.icon-search {
  font-size: 20px !important;
}

.nav ul.search_nav {
  margin-bottom: 5px;
}

nav ul li a:focus,
.nav ul li a:hover,
.nav ul li a:hover .icon-arrow-down,
.nav a.icon-cart:hover span {
  color: #fa7268 !important;
}

.nav ul.menu li {
  line-height: 1;
  position: relative;
  padding: 5px 0 5px 3px;
}

.nav ul.menu li:hover {
  z-index: 1009;
}

input.guest_button,
input[type=button].guest_button {
  font-size: 16px;
  background-color: #666;
  padding: 8px 18px 8px 18px;
  border-radius: 35px;
}

input[type=submit].guest_button,
input[type=button].guest_button {
  color: #ffffff;
  box-shadow: none;
}

.nav ul li .cart-button span {
  padding-left: 5px;
  top: -1px;
}

input[type=submit].guest_button,
input[type=submit].guest_button:hover {
  background-color: #666;
}

input[type=submit].guest_button:hover {
  color: #fa7268;
}

/* sub-levels link */
.menu ul a,
.menu li:hover > ul a,
.header .nav ul.menu ul li a {
  padding: 8px 12px;
  background: none;
  text-align: left;
  color: #ffffff;
  line-height: 1.2;
}

/* sub-level ul */
.dropdown {
  top: 50%;
  z-index: 1008;
  position: absolute;
  padding-top: 20px;
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 1500ms, opacity 1500ms;
}
.dropdown a {
  text-shadow: none !important;
}

.dropdown--align {
  right: 0;
  left: auto;
}

.dropdown-wide {
  width: 500px;
}
.dropdown-wide ul li a {
  word-wrap: break-word;
}

.dropdown-link .icon-arrow-down {
  position: relative;
  top: 1px;
}

.dropdown-links {
  background: #000000;
  position: relative;
  display: flex;
}

.nav ul.menu ul {
  width: 250px;
  display: block;
}

.nav ul.menu ul li {
  display: block;
  text-align: left;
  padding: 0;
}

.nav ul.menu ul li a {
  border: 0;
}

.nav ul.menu ul li a.sub-link {
  display: block;
  padding: 5px 24px;
  font-weight: normal;
  text-transform: none;
  font-size: 19px;
}

/* show dropdown ul on hover */
.menu li:hover > .dropdown,
.menu li > details[open] + .dropdown {
  z-index: 1008;
  max-height: none;
  opacity: 1;
  visibility: visible;
  transition: max-height 0, opacity 500ms;
}

ul.header__navigation {
  flex: 1 1 auto;
}
ul.header__navigation details > summary::-webkit-details-marker {
  display: none;
}
ul.header__navigation summary {
  list-style: none;
  cursor: pointer;
}

ul.header__secondary-navigation {
  display: flex;
  z-index: 5;
  position: relative;
  flex: 0 0 auto;
  padding-left: 20px;
  text-align: right;
  max-width: 50%;
}

/* Currency / language switcher in header */
#header__selector-form.selectors-form {
  margin: 0;
}
#header__selector-form .selectors-form__wrap {
  margin: 0;
}
#header__selector-form button.disclosure__toggle {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 0;
}
#header__selector-form button.disclosure__toggle:hover, #header__selector-form button.disclosure__toggle:hover .icon-arrow-down {
  color: #fa7268;
}
#header__selector-form button.disclosure__toggle.is-clicked + .disclosure__list-wrap #header__selector-form button.disclosure__toggle:focus + .disclosure__list-wrap {
  display: block;
}
#header__selector-form button.disclosure__toggle span {
  color: #ffffff;
  text-shadow: none;
}
#header__selector-form .disclosure__list-wrap {
  top: 50%;
  position: absolute;
  padding-top: calc(20px + 8px); /* Accounts for the disclosure button padding and background color */
}
#header__selector-form .disclosure-list {
  background: #000000;
  bottom: initial;
  display: block;
  float: none;
  list-style: none;
  padding: 0;
  width: auto;
}
#header__selector-form .disclosure-list__item {
  padding: 0;
}
#header__selector-form button.disclosure__button {
  color: #ffffff;
  padding: 14px 18px;
  text-align: left;
}
#header__selector-form button.disclosure__button:hover {
  color: #fa7268;
  opacity: 1;
}

.header:not(.header-background--true) .menu .currencies .disclosure__toggle {
  color: #ffffff;
}

/* Currency / language switcher on mobile */
.mobile-menu__disclosure.selectors-form {
  display: block;
}
.mobile-menu__disclosure.selectors-form .disclosure__toggle {
  border: 0;
  margin-top: 0;
}
.mobile-menu__disclosure.selectors-form .disclosure-list__item {
  padding: 0;
}
.mobile-menu__disclosure.selectors-form .disclosure-list__item:last-child:after {
  border-bottom: 0;
}
.mobile-menu__disclosure.selectors-form button.disclosure__button {
  line-height: 1.8em;
  padding: 12px 10px 12px 20px;
  text-align: left;
  width: 100%;
}

/* Match mm-menu styling */
.mm-menu_theme-black .selectors-form button.disclosure__button {
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu_theme-white .selectors-form button.disclosure__button {
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu_theme-dark .selectors-form button.disclosure__button {
  color: rgba(255, 255, 255, 0.6);
}

.default-header li.cart,
.default-header li.search,
.default-header li.header-account {
  vertical-align: top;
}

.menu-toggle, .menu-toggle[class*=" icon-"] {
  float: right;
  display: inline-block;
  cursor: pointer;
  padding: 9px 6px 6px 6px;
  margin-right: 0;
  font-size: 20px;
  transition: transform 0.3s linear;
}
.menu-toggle.active, .menu-toggle[class*=" icon-"].active {
  transform: rotateX(180deg);
}

.scroll-arrow {
  opacity: 1;
  display: block;
  border: none;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 50px;
  animation-delay: 0.75s;
  width: 70px;
  z-index: 1;
  transition: opacity 0.3s;
}
.scroll-arrow span {
  color: #ffffff;
  font-size: 30px;
  display: block;
  margin: 0;
}

.scroll-arrow:hover {
  opacity: 0.5;
}

.vertical-text-position--bottom .scroll-arrow {
  bottom: 20px;
}

/* Featured image banners */
.featured-image--true + div.content {
  padding-top: 40px;
}

.container div.collection_nav {
  margin-bottom: 32px;
}

.collection_menu, .collection_menu li {
  display: inline;
  list-style: none;
  border: none;
  position: relative;
  top: -1px;
  margin: 0;
}

.collection_menu li {
  padding-left: 25px;
}

.toggle_list a {
  display: inline-block;
  position: relative;
  left: -8px;
  padding-left: 8px;
  border-left: solid 4px transparent;
  transition: border 200ms ease-out;
}

.toggle_list a.active, .toggle_list a:hover, ul.blog_list a.active--default {
  border-left: solid 4px #B8C6C6;
  display: inline-block;
}

/* #Images
================================================== */
/*
  The purpose of the below declaration is to make sure images don't
  exceed the width of columns they are put into when resizing window.
  Unfortunately, this declaration breaks certain lightbox, slider or other plugins,
  so the best solution is to individually call these properties on images that
  are children of the grid that you want to resize with grid.
*/
.product_row img,
.product_image_col img,
.article img,
.article_image img,
.section img,
.thumbnail img,
.page img,
.sidebar img,
.logo img,
.footer img,
#target img {
  max-width: 100%;
  height: auto;
}

.zoomImg {
  background-color: #ffffff;
}

.zoom-container {
  width: 100%;
  display: block;
}

.rounded {
  margin: 0 20%;
  overflow: hidden;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translate3d(0);
}

/* Lazyloading styles */
.lazyload--fade-in {
  -webkit-backface-visibility: hidden;
  filter: blur(5px);
  transition: filter 200ms, opacity 0.2s;
  opacity: 0.2;
}

.filter-button-wrap {
  margin-top: 16px;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
}

.collection-filter-heading {
  margin: 0px;
  display: none;
  max-width: 25%;
  width: 100%;
  color: #1A1A1A;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  letter-spacing: -0.016px;
}

.collection-filter-count {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
  flex-shrink: 0;
}

.filter-button-wrap .collection-filter-count {
  display: none;
}

.collection-filter-view {
  padding-left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-button-wrap .collection-filter-view {
  display: none;
}
.collection-filter-view-type {
  background: transparent;
  border: 0px;
  padding: 0px;
}

.collection-filter-view-type svg path {
  fill: #D6D6D6;
  transition: all 0.25s ease 0s;
}

.collection-filter-view-type.active svg path {
  fill: #FF6F6F;
  transition: all 0.25s ease 0s;
}

.collection-filter-mobile-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 0.3px solid rgba(26, 26, 26, 0.2);
}

@media only screen and (min-width: 799px) {
  .filter-button-wrap {
    width:100%;
    margin-top: 50px;
  }
  .lazyload--fade-in {
    transform: translate3d(0, 0, 0);
  }

  .collection-filter-heading{
    display: block;
  }
}

@media only screen and (min-width: 990px) {
  .filter-button-wrap .collection-filter-count {
    padding-left: 12px;
    display: block;
  }

  .filter-button-wrap .collection-filter-view {
    display: flex;
  }

  .collection-filter-mobile-wrap {
    display: none;
  }

  .filter-button-wrap {
    border-bottom: 0.3px solid rgba(26, 26, 26, 0.2);
  }
}

@media only screen and (min-width: 1440px) {
  .filter-button-wrap {
    margin-top: 80px;
  }
}
.lazyload--fade-in.lazyloaded {
  opacity: 1;
  filter: blur(0);
}

img[data-sizes=auto] {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.image__container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.image-element__wrap img {
  height: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.thumbnail .image-element__wrap {
  margin: 0 auto;
}

/* #Placeholders
================================================== */
.shopify-section--featured-promotions svg,
.featured-products-section svg,
.shopify-section--featured-collection svg,
.shopify-section--blog-posts svg,
.shopify-section--collection-list svg {
  background-color: #f3f3f3;
  fill: #7f8c8d;
}

.featured-products-section .section {
  margin: 30px 0px;
}

.placeholder-svg {
  fill: rgba(54, 54, 54, 0.3);
  background-color: rgba(54, 54, 54, 0.4);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  display: block;
}

.placeholder-svg--banner,
.placeholder-svg--slideshow,
.placeholder-svg--video {
  max-height: 600px;
}

.shopify-section--featured-promotions .feature-section:nth-child(even) .placeholder-svg--promotions,
.shopify-section--image-with-text .featured-link--image:nth-child(odd) .placeholder-svg--promotions,
.shopify-section--gallery .gallery_image:nth-child(even) .placeholder-svg,
.shopify-section--logo-list .logo-bar__item:nth-child(even) .placeholder-svg {
  background-color: rgba(54, 54, 54, 0.35);
}

.bcg-placeholder {
  background-color: #363636;
}

.homepage_slider .bcg-placeholder {
  background-color: transparent;
}

.homepage_slider ul li:nth-child(2n+1) .bcg-placeholder {
  background-color: #363636;
}

.homepage_slider ul li:nth-child(2n) .bcg-placeholder {
  background-color: rgba(54, 54, 54, 0.35);
}

.homepage_slider.slider-loading .slides > li:first-child {
  opacity: 1 !important;
}

/* #Videos
================================================== */
.video-wrapper {
  position: relative;
}
.video-wrapper .plyr--video,
.video-wrapper .plyr__video-embed,
.video-wrapper video {
  display: none;
}
.video-wrapper.video-is-playing .plyr--video,
.video-wrapper.video-is-playing .plyr__video-embed,
.video-wrapper.video-is-playing video {
  display: block;
}
.video-wrapper.video-is-playing .video__text {
  height: auto;
  width: 100%;
}
.video-wrapper.video-is-playing .horizontal-text-position--center .video__text-container {
  justify-content: center;
}
.video-wrapper.video-is-playing .horizontal-text-position--left .video__text-container {
  justify-content: flex-start;
}
.video-wrapper.video-is-playing .horizontal-text-position--right .video__text-container {
  justify-content: flex-end;
}
.video-wrapper.video-is-playing .vertical-text-position--center .video__text-container {
  align-items: center;
}
.video-wrapper.video-is-playing .vertical-text-position--top .video__text-container {
  align-items: flex-start;
}
.video-wrapper.video-is-playing .vertical-text-position--bottom .video__text-container {
  align-items: flex-end;
}
.video-wrapper.video-is-playing .banner__wrap,
.video-wrapper.video-is-playing .parallax__wrap {
  height: auto !important;
}
.video-wrapper.video-is-playing .parallax__wrap,
.video-wrapper.video-is-playing .banner__wrap {
  display: block;
}
@media only screen and (max-width: 798px) {
  .video-wrapper.video-is-playing .parallax {
    display: none;
  }
}
.video-wrapper.video-is-playing img {
  display: none;
}
.video-wrapper.video-is-playing .video__text-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.video-wrapper .video__overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  pointer-events: none;
}
.video-wrapper.darken-video--true .video__overlay {
  background: rgba(0, 0, 0, 0.3);
}
.video-wrapper .plyr--video.plyr--paused .plyr__video-embed iframe {
  z-index: 5;
}
.video-wrapper .plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: none;
}
.video-wrapper.play-button-icon--visible .plyr--paused .plyr__control--overlaid {
  display: block;
  opacity: 1;
}
.video-wrapper .video-wrapper__image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.video-wrapper .video-wrapper__image img {
  object-fit: cover;
}
.video-wrapper .action_button {
  padding: 10px 40px;
}
.video-wrapper .display-text-over-video--false {
  align-items: center;
  justify-content: center;
}
.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}
.video-wrapper .video__text-container {
  z-index: 2;
  pointer-events: none;
}
.video-wrapper .video__text-container a.action_button {
  pointer-events: all;
}
.video-wrapper .video__text {
  display: flex;
  height: 100%;
}
.video-wrapper .video__text.text-align--left {
  text-align: left;
  justify-content: flex-start;
}
.video-wrapper .video__text.text-align--left .headline,
.video-wrapper .video__text.text-align--left .subtitle {
  text-align: left;
}
.video-wrapper .video__text.text-align--right {
  text-align: right;
  justify-content: flex-end;
}
.video-wrapper .video__text.text-align--right .headline,
.video-wrapper .video__text.text-align--right .subtitle {
  text-align: right;
}
.video-wrapper .video__text.text-align--center {
  text-align: center;
  justify-content: center;
}
.video-wrapper .video__text.text-align--center .headline,
.video-wrapper .video__text.text-align--center .subtitle {
  text-align: center;
}
.video-wrapper .video__text-wrapper {
  max-width: 55%;
  padding: 50px 10px;
}
@media only screen and (max-width: 798px) {
  .video-wrapper .video__text-wrapper {
    padding: 20px;
    max-width: 80%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .video-wrapper .video__text-wrapper {
    max-width: 100%;
  }
}
.video-wrapper .horizontal-text-position--center .video__text-wrapper {
  max-width: 80%;
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .video-wrapper .horizontal-text-position--center .video__text-wrapper {
    max-width: 100%;
  }
}
@media only screen and (max-width: 798px) {
  .video-wrapper {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 798px) {
  .parallax-banner .mobile-parallax-enabled--false.mobile-image-crop-enabled--false .video__text-container {
    position: absolute;
  }
  .parallax-banner .mobile-parallax-enabled--false.mobile-image-crop-enabled--false.video-is-playing .mobile-placeholder-svg {
    display: none;
  }
}

:not(.plyr__video-wrapper) .plyr__video-embed {
  position: relative;
}

/* #Buttons
================================================== */
a.button,
button,
input[type=submit],
input[type=reset],
input[type=button],
.action_button,
a.action_button,
input.action_button[type=submit],
input.action_button[type=button],
.share-button,
.shopify-payment-button__button.shopify-payment-button__button--unbranded {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fa7268;
  color: #ffffff;
  border: 0;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: all 200ms ease 0s;
  -webkit-appearance: none;
  border-radius: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  box-sizing: border-box;
  /*text-transform: initial;
  width: 100%;
  max-width: 248px;
  line-height: 100%;*/
}

a.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.action_button:hover,
input.action_button[type=submit]:hover,
input.action_button[type=button]:hover,
button.shopify-payment-button__button.shopify-payment-button__button--unbranded:hover {
  /*background: #eadbda;*/
  transition: all 200ms ease 0s;
}

a.button:active,
button:active,
input[type=submit]:active,
input[type=reset]:active,
input[type=button]:active,
.action_button:active,
input.action_button[type=submit]:active,
input.action_button[type=button]:active,
button.shopify-payment-button__button.shopify-payment-button__button--unbranded:active {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media(min-width: 1024px) {
  a.button,
  button,
  input[type=submit],
  input[type=reset],
  input[type=button],
  .action_button,
  a.action_button,
  input.action_button[type=submit],
  input.action_button[type=button],
  .share-button,
  .shopify-payment-button__button.shopify-payment-button__button--unbranded {
    font-size: 20px;
  }
}

.add_to_cart,
#cart_form .add_to_cart,
form.product_form input.add_to_cart {
  width: 100%;
  margin-bottom: 0px;
}

.disabled {
  pointer-events: none;
}

.amazon-payments-pay-button {
  display: block !important;
  text-align: center;
}

.add_to_cart.action_button {
  line-height: initial;
  min-height: 44px;
  margin-bottom: 0;
}

.action_button.action_button--secondary,
.cart-button-update.action_button.action_button--secondary {
  background-color: transparent;
  border: 2px solid #fa7268;
  color: #fa7268;
  margin-bottom: 8px;
  box-shadow: none;
  line-height: 1.2;
  padding: 12px 0;
  min-height: 44px;
}

.cart-button-update.action_button.action_button--secondary {
  min-height: 55px;
  width: 100%;
}

.cart-button-update.action_button.action_button--secondary:hover {
  color: #ffffff;
}

.shopify-payment-button {
  position: relative;
}

.shopify-payment-button button {
  line-height: 1.2;
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 0;
}

[data-shopify-buttoncontainer] {
  justify-content: flex-end;
}

.shopify-payment-button__button--branded,
.shopify-payment-button__button--unbranded {
  overflow: hidden;
  min-height: 38px !important;
  border-radius: 100px !important;
}

.shopify-payment-button__button--unbranded {
  margin-top: 0;
}

button.shopify-payment-button__more-options {
  color: #363636;
  box-shadow: none;
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: 0;
  padding: 16px 0 28px;
  max-width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none !important;
}
button.shopify-payment-button__more-options:hover {
  background-color: transparent;
}

.purchase-details {
  display: flex;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  .purchase-details {
    align-items: flex-end;
  }
}

.purchase-details.smart-payment-button--true {
  padding-bottom: 24px;
}
@media only screen and (min-width: 1025px) {
  .purchase-details.smart-payment-button--true .purchase-details__quantity {
    margin-right: 8px;
  }
}

.purchase-details.smart-payment-button--false {
  align-items: flex-end;
}

.purchase-details__quantity {
  margin-right: 20px;
}
.purchase-details__quantity input.quantity {
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 1.4;
  min-height: 44px;
  margin-bottom: 0;
}
@media only screen and (max-width: 480px) {
  .purchase-details__quantity input.quantity {
    min-height: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .smart-payment-button--true input.quantity {
    min-height: 44px;
  }
}

.purchase-details__buttons {
  margin-top: 20px;
  display: flex;
  flex: 1 0 60%;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1025px) {
  .purchase-details__buttons {
    flex: 1 0 70%;
    flex-wrap: no-wrap;
    margin-top: 34px;
  }
}
.purchase-details__buttons .action_button--secondary {
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .purchase-details__buttons .action_button--secondary {
    margin: 0;
  }
}
.purchase-details__buttons .shopify-payment-button,
.purchase-details__buttons .action_button--secondary {
  flex: 1 0 100%;
  max-width: 100%;
}
@media only screen and (min-width: 1025px) {
  .purchase-details__buttons .shopify-payment-button,
  .purchase-details__buttons .action_button--secondary {
    flex: 1 0 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
  }
}

body.cart .dynamic-checkout__content {
  padding-top: 0 !important;
}

.additional-checkout-button.additional-checkout-button--paypal {
  min-width: 100% !important;
}

.additional-checkout-button + .additional-checkout-button {
  margin-left: 0 !important;
  max-width: 100% !important;
}

/* #Cart
================================================== */
#cart {
  z-index: 10000;
  margin-bottom: 0;
}
#cart textarea {
  min-height: 4em;
  box-sizing: border-box;
  margin: 10px 20px 0 20px;
  background: rgba(255, 255, 255, 0.8);
}
#cart textarea:hover {
  background-color: #fff;
}
@media only screen and (max-width: 798px) {
  #cart textarea {
    width: 220px;
  }
}
#cart .mm-listview > li:not(.mm-divider):after {
  border: none;
}
#cart .action_button {
  width: 100%;
  background-color: #fa7268;
  color: #ffffff;
  padding: 10px;
  line-height: 1.5em;
}
#cart .action_button.full-width {
  width: 100%;
  display: block;
}
#cart .action_button.edit_cart {
  margin-bottom: 0.75rem;
  background-color: #4A4A4A;
}
#cart .mm-action_buttons {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 20px;
}
#cart p::selection,
#cart p::-moz-selection,
#cart input::selection,
#cart input::-moz-selection,
#cart span::selection,
#cart span::-moz-selection {
  background: transparent;
  color: inherit;
}
#cart .price {
  font-weight: bold;
}
#cart label.tos_label {
  display: inline;
  font-weight: normal;
  text-transform: none;
}
#cart .tos {
  clear: both;
  text-align: right;
  margin: 20px;
  justify-content: flex-start;
}

.tos_checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.tos_checkbox p {
  margin-bottom: 0;
  margin-left: 3px;
  line-height: 1.2;
}
.tos_checkbox .tos_agree {
  min-width: 15px;
  min-height: 15px;
}

h4.discount,
h4.subtotal {
  margin-bottom: 0;
  padding-bottom: 0;
}

.notification-discount {
  display: block;
  font-weight: bold;
  margin-top: 0.5rem;
}

p.applied_discount {
  color: #fa7268;
}

p.add-to-cart-wrap {
  margin-bottom: 0;
}
p.add-to-cart-wrap input.add_to_cart {
  margin-bottom: 0;
}

.cart-currency-text {
  margin: 20px 20px 0px 20px;
}

/* Cart drawer */
#cart .mm-listview > li > a.cart__item {
  padding: 0;
  margin: 20px;
  display: flex;
  width: 100%;
}

#cart .mm-listview > li > a.cart__item-subtotal {
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  padding: 12px 20px;
  margin-top: 1rem;
}

.cart-mini__tax-label {
  display: flex;
  padding: 0 20px 12px;
}

.cart__info {
  width: 85%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 480px) {
  .cart__info {
    width: 65%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.cart__info .cart__price {
  font-weight: bold;
}
.cart__info .cart__description {
  white-space: normal;
  margin-bottom: 10px;
}
.cart__info .cart__description .line-item:first-child {
  margin-top: 6px;
}
.cart__info .cart__quantity {
  display: flex;
  align-items: center;
}
.cart__info .cart__quantity input.quantity {
  width: 32px;
  min-width: 32px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.cart__info .cart__quantity input.quantity:hover, .cart__info .cart__quantity input.quantity:focus {
  background: rgba(255, 255, 255, 0.95);
}
.cart__info .cart__quantity input.quantity::-webkit-inner-spin-button, .cart__info .cart__quantity input.quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .cart__info .cart__quantity input.quantity {
    height: 35px;
    min-height: 35px;
    line-height: 35px;
  }
}
.cart__info .cart__quantity .plus,
.cart__info .cart__quantity .minus {
  margin: 0;
  font-size: 24px;
  opacity: 0.8;
  cursor: pointer;
}
.cart__info .cart__quantity .plus:hover,
.cart__info .cart__quantity .minus:hover {
  opacity: 1;
}

.cart__image {
  width: 25%;
}
.cart__image img {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .cart__image {
    width: 35%;
  }
}

/* Bottom cart drawer */
#cart.side-cart-position--bottom .action_button {
  width: auto;
}
@media only screen and (max-width: 480px) {
  #cart.side-cart-position--bottom .action_button {
    width: 100%;
  }
}
#cart.side-cart-position--bottom .action_button.action_button.edit_cart {
  margin: 0 15px 0 0;
}
@media only screen and (max-width: 480px) {
  #cart.side-cart-position--bottom .action_button.action_button.edit_cart {
    margin: 0 0 0.75rem 0;
  }
}
#cart.side-cart-position--bottom .mm-action_buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  overflow: visible;
  white-space: normal;
}
@media only screen and (max-width: 480px) {
  #cart.side-cart-position--bottom .mm-action_buttons {
    justify-content: center;
    flex-direction: column;
  }
}
#cart.side-cart-position--bottom .cart__image {
  width: 5%;
}
@media only screen and (max-width: 480px) {
  #cart.side-cart-position--bottom .cart__image {
    width: 35%;
  }
}
#cart.side-cart-position--bottom .cart__info {
  width: 95%;
}
@media only screen and (max-width: 480px) {
  #cart.side-cart-position--bottom .cart__info {
    width: 65%;
  }
}

/* Right cart drawer */
#cart.side-cart-position--right textarea {
  width: 90%;
}

/* Shipping calculator */
/* Hide the shipping calculator when JS is disabled */
.no-js #shipping-calculator {
  display: none;
}

.cart__product-options {
  display: flex;
  flex-direction: column;
  list-style: none;
  font-size: 13px;
  margin: 10px 0px 0px;
}
.cart__product-options:empty {
  display: none;
}

.cart__product-option {
  margin-bottom: 0;
}

.cart__product-option-name {
  font-weight: bold;
}

/* #Tabs
================================================== */
ul.tabs {
  display: block;
  margin: 10px 0 15px 0;
  padding: 0;
  border-bottom: solid 1px #0d0d0d;
  border-top: 0;
  list-style: none outside;
  margin-left: 0;
}

ul.tabs li {
  display: block;
  width: auto;
  height: 30px;
  padding: 0;
  float: left;
  margin-bottom: 0;
  border: 0;
  list-style: none outside;
  margin-left: 0;
}

ul.tabs li a {
  display: block;
  text-decoration: none;
  width: auto;
  height: 29px;
  padding: 0px 15px;
  line-height: 30px;
  border-width: 1px 0 0 1px;
  margin: 0;
  font-size: 13px;
}

ul.tabs li a.active {
  border: solid 1px #0d0d0d;
  background-color: #ffffff;
  border-bottom: #ffffff;
  height: 30px;
  position: relative;
  top: -4px;
  padding-top: 4px;
  border-right-width: 1px;
  margin: 0 -1px 0 0;
  color: #363636;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

ul.tabs li:first-child a {
  border-top-left-radius: 4px;
}

ul.tabs li:last-child a {
  border-width: 1px 1px 0 1px;
  border-top-right-radius: 4px;
}

ul.tabs-content {
  margin: 0;
  display: block;
  border: 0;
}

ul.tabs-content > li {
  display: none;
  border: 0;
}

ul.tabs-content > li.active {
  display: block;
  border: 0;
  padding-left: 10px;
}

/* Clearfixing tabs for beautiful stacking */
ul.tabs:before,
ul.tabs:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

ul.tabs:after {
  clear: both;
}

ul.tabs {
  zoom: 1;
}

/* #Forms
================================================== */
form {
  margin-bottom: 20px;
}

fieldset {
  margin-bottom: 20px;
}

select,
textarea,
input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=url],
input[type=tel],
input[type=number],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=range],
input[type=color] {
  display: block;
  width: 100%;
  height: 40px;
  min-height: 40px;
  padding: 0 9px;
  margin: 0;
  line-height: 22px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  outline: none;
  background: #fff;
  color: #5f6a7d;
  box-sizing: border-box;
  font: 13px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 15px;
}

select:active,
select:focus,
textarea:active,
textarea:focus,
input[type=text]:active,
input[type=text]:focus,
input[type=password]:active,
input[type=password]:focus,
input[type=email]:active,
input[type=email]:focus,
input[type=search]:active,
input[type=search]:focus,
input[type=url]:active,
input[type=url]:focus,
input[type=tel]:active,
input[type=tel]:focus,
input[type=number]:active,
input[type=number]:focus,
input[type=date]:active,
input[type=date]:focus,
input[type=month]:active,
input[type=month]:focus,
input[type=week]:active,
input[type=week]:focus,
input[type=time]:active,
input[type=time]:focus,
input[type=range]:active,
input[type=range]:focus,
input[type=color]:active,
input[type=color]:focus {
  color: #444;
  border: 1px solid #aaa;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  margin: 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;
}

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

select:not(.n9-fbt-variant-select) {
  background: url(//thehappywife.com/cdn/shop/t/105/assets/select.png?v=36849872953622954181765207679) no-repeat right, #fff;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #414141;
  -webkit-appearance: none;
          appearance: none;
  padding: 10px 9px 8px;
  color:#414141;
  font-family: 'Avenir Next';
}

label,
legend,
.option_title {
  display: block;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
}

input[type=checkbox] {
  display: inline;
}

label span,
legend span {
  font-weight: bold;
  font-size: 13px;
  color: #444;
}

textarea {
  padding: 8px;
  min-height: 80px;
}

.btn.action_button,
input.btn.action_button[type=submit],
input.btn.action_button[type=button] {
  width: inherit;
}

#target {
  text-align: center;
}

.quantity_label {
  display: inline;
  font-size: smaller;
}

body.cart .quantity_label {
  text-transform: none;
  font-size: 14px;
  color: #363636;
}

.remove_item a {
  font-size: smaller;
  color: #fa7268;
}

input.quantity {
  width: 48px;
  display: inline;
  margin-bottom: 0;
  padding: 8px 5px;
}

.cart_items p {
  margin-bottom: 5px;
}

li.cart__item a {
  text-indent: 0 !important;
  font-size: small;
}

li.last_cart_item:after {
  border: none !important;
}

a.continue {
  text-align: right;
  font-size: 32px;
  margin-right: 10px !important;
  padding: 10px 0 5px 0 !important;
  opacity: 0.8;
}

a.continue:hover {
  opacity: 1;
}

.empty_cart {
  text-align: center;
  font-size: 22px;
  padding-top: 40px !important;
  color: inherit;
}

.empty_cart:after {
  border: 0 !important;
}

#get-rates-submit {
  margin-top: -1px;
  white-space: normal;
}

#customer_login {
  margin-bottom: 2px;
}

.multi_select {
  display: none;
}

.acceptsMarketing {
  margin-bottom: 10px;
}
.acceptsMarketing label,
.acceptsMarketing input {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.acceptsMarketing p {
  margin: 0 0 2px 0;
}

/* Comment form */
.comment-form {
  display: flex;
  flex-wrap: wrap;
}

.comment-form__name {
  margin-right: 20px;
}
@media only screen and (max-width: 480px) {
  .comment-form__name {
    margin: 0;
  }
}

.comment-form__name,
.comment-form__email {
  flex: 1 1 auto;
}
@media only screen and (max-width: 480px) {
  .comment-form__name,
  .comment-form__email {
    flex: 1 1 100%;
  }
}

.comment-form__body,
.comment-form__error,
.comment-form__submit,
.comment-form__success {
  flex-basis: 100%;
}

.comment-form__error-message,
.comment-form__success-message {
  font-size: 18px;
  line-height: 32px;
  font-style: italic;
}

/* #Tables
================================================== */
table {
  width: 100%;
  margin-bottom: 20px;
}
table th {
  font-weight: 700;
  text-align: left;
  background-color: #f9f9f9;
}
table th,
table td {
  padding: 4px;
  border-right: 1px solid #dcdcdc;
}
table th:first-child,
table td:first-child {
  border-left: 1px solid #dcdcdc;
}
table tr {
  border-bottom: 1px solid #dcdcdc;
}
table tr:first-child {
  border-top: 1px solid #dcdcdc;
}
table tr .order_summary td.label {
  text-align: right;
}/* Responsive order tables */
.collapsible-table .selling-plan {
  display: block;
}
@media only screen and (max-width: 798px) {
  .collapsible-table thead {
    display: none;
  }
}
@media only screen and (max-width: 798px) {
  .collapsible-table tr {
    display: block;
    margin-bottom: 0;
    border: 1px solid #dcdcdc;
  }
}
@media only screen and (max-width: 798px) {
  .collapsible-table tr td {
    display: block;
    display: flex;
    position: relative;
    align-items: stretch;
    padding: 0;
    justify-content: space-between;
    border: none;
    border-bottom: 1px solid #dcdcdc;
  }
  .collapsible-table tr td:before {
    content: attr(data-label);
    display: flex;
    align-items: center;
    min-width: 50%;
    font-weight: bold;
    padding: 0.5rem;
    border-right: 1px solid #dcdcdc;
    background-color: #f9f9f9;
  }
  .collapsible-table tr td .data-label-container {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
  }
  .collapsible-table tr td:first-child {
    border-left: none;
  }
  .collapsible-table tr td:last-child {
    border-bottom: none;
  }
}
@media only screen and (max-width: 798px) {
  .collapsible-table tfoot tr {
    border-top: none;
  }
}

@media only screen and (max-width: 798px) {
  #customer-orders tr {
    margin-bottom: 1rem;
  }
  #customer-orders tr:last-child {
    margin-bottom: 0;
  }
}

/* #Misc
================================================== */
.hidden {
  display: none;
}

.remove {
  color: #363636;
}

.relative {
  position: relative;
}

.right {
  float: right;
  position: relative;
}

.left {
  float: left;
}

.inline {
  display: inline;
}

.center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

.align_center {
  text-align: center;
}

p.warning {
  text-align: center;
  font-weight: bold;
  padding-top: 10px;
}

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

.warning--quantity {
  font-weight: bold;
  z-index: 0;
  float: left;
}

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

.cart_item p.warning {
  margin-top: 5px;
}

.mobile_only,
span.mobile_only,
.container div.mobile_only {
  display: none;
}

.extra_padding {
  padding-top: 4px;
}

div.hidden {
  display: none;
}

html.mm-bottom.mm-opened.mm-opening div.is-absolute {
  position: absolute !important;
  top: 0;
  margin-top: 0;
}

.is-absolute {
  position: absolute;
  top: 0;
  margin-top: 0;
}

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

#grid .column,
#grid .columns {
  background: #ddd;
  height: 25px;
  line-height: 25px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #555;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
}
#grid .column:hover,
#grid .columns:hover {
  background: #bbb;
  color: #333;
}

#grid .example-grid {
  overflow: hidden;
}

/* #Site Styles
================================================== */
div.container {
  margin: 0 auto;
  padding: 20px 0;
}

div.section {
  /*margin: 10px 0;*/
}

/* Overwrite shopify email marketing confirmation styles */
.global-wrapper .shopify-email-marketing-confirmation__container {
  max-width: 95%;
  text-align: center;
}

.header div.logo a {
  margin: 0 auto;
  display: block;
  color: #000000 !important;
}

.homepage_content {
  padding: 20px 0;
}

.featured-content {
  background-color: #ffffff;
}

.featured-content,
.featured-content h1,
.featured-content h2,
.featured-content h3,
.featured-content h4,
.featured-content h5,
.featured-content h6 {
  color: #363636;
}

.richtext_content--featured_text {
  font-size: 21px;
}

div.product_section {
  margin-top: 0;
}

.richtext_content--featured_text {
  font-size: 21px;
}

.frontpage_product_stagger--true .product_section:nth-child(2n) > div {
  float: right;
}

.container .breadcrumb {
  font-size: 13px;
}

.container,
.container .breadcrumb--text {
  margin-bottom: 1em;
  padding-top: 8px;
}

.collection .breadcrumb--text {
  padding: 0px;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

@media(min-width: 1440px) {
  .collection .breadcrumb--text {
    margin-top: 28px;
  }
}

.breadcrumb__wrapper a.ss-icon {
  font-size: 32px;
  margin: 10px 10px 10px 0;
  color: #363636;
}

.breadcrumb__wrapper .icon-arrow-right {
  font-size: 8px;
  position: relative;
  top: -1px;
}

.breadcrumb__wrapper a.ss-icon:hover {
  color: #fa7268;
}

.page-navigation-arrows {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .page-navigation-arrows {
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-top: 0;
  }
}
.page-navigation-arrows .page-navigation__divider {
  padding: 0 5px;
}

.continue_shopping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 12px;
  box-sizing: border-box;
  line-height: 100%;
}

.sku,
.spr-badge {
  margin-top: -10px;
}

.spr-badge {
  margin-bottom: 1em;
}

#category {
  width: 100%;
}

.paginate {
  text-align: center;
}

a.tag,
.paginate a,
.paginate .current {
  border: solid 1px #0d0d0d;
  border-radius: 2px;
  margin: 10px 5px;
  padding: 5px 10px;
  display: inline-block;
}

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

a.tag {
  font-size: smaller;
  padding: 4px 6px;
  margin: 5px 2px 5px 0;
}

.featured_collections {
  margin-bottom: 10px;
}

a.tag:hover,
.paginate a:hover {
  color: #000000;
}

.paginate .deco {
  border: none;
}

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

.new {
  position: relative;
  display: inline;
  padding: 5px;
  border-radius: 2px;
  font-size: 12px;
}

.thumbnail .image__container {
  overflow: hidden;
  padding: 10% 8%;
  flex: 1;
}

.thumbnail-image-variant {
  display: none;
}

.thumbnail-image-variant.active {
  display: block;
}

.thumbnail img,
.thumbnail svg,
.ie .product-gallery img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Swap to second image on hover */.has-secondary-media-swap img {
    visibility: visible;
    height: auto;
  }
.has-secondary-media-swap .secondary-media-hidden {
    display: none;
  }

  .has-secondary-media-swap:hover .image-element__wrap {
    display: none;
  }

  .has-secondary-media-swap:hover .secondary-media-hidden {
    display: block !important;
  }.thumbnail img {
    max-height: 250px;
    width: 100%;
    object-fit: contain;
  }
.thumbnail video,
  .thumbnail .plyr--youtube {
    width: 100%;
    max-height: 250px;
  }
.thumbnail .plyr--youtube {
    height: 250px;
  }
.thumbnail .plyr--youtube .plyr__video-embed {
    height: 100%;
  }.sold_out,
.thumbnail .sold_out {
  font-weight: 500;
  white-space: nowrap;
  font-size: 18px;
}

.sale,
.thumbnail .sale {
  color: #fa7268;
}

.banner_holder {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 2;
}

.new_banner,
.sale_banner {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fa7268;
  font-weight: 500;
  font-size: 12px;
  text-transform: none;
  letter-spacing: -0.012px;
  padding: 9px 12px;
  text-align: center;
  color: #ffffff;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  line-height: 100%;
}

@media(min-width: 1440px) {
  .new_banner, .sale_banner {
    font-size: 12px;
  }
}

.sale_banner .icon-arrow-right {
  font-size: 10px;
  line-height: 100%;
}

.new_banner {
  background: #98ffe0;
   color: #1A1A1A;
}

.klilt-mh {
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.012px;
  display: block;
}

.klilt {
  flex: 1 1 auto;
  justify-content: space-between !important;  
}

@media only screen and (max-width: 798px) {
  .block__rich_text_and_image {
    left: 0 !important;
  }
}

/* #Slideshow
================================================== */
.shopify-section--slideshow .container {
  padding: 0;
}

/* #Product thumbnail
================================================== */
.thumbnail {
  position: relative;
  margin: 6px 2px !important;
  display: flex;
  flex-direction: column;
  border: 0.7px solid #EAEAEA;
  box-sizing: border-box;
}

.thumbnail:hover  {
  box-shadow: -2px -2px 10px 0px rgba(26, 26, 26, 0.05), 2px 2px 10px 0px rgba(26, 26, 26, 0.05);
}

.products-wrapper.list .thumbnail {
  width: 100% !important;
  flex-direction: row;
}

.products-wrapper.list .thumbnail .thumbnail__link {
  flex-direction: row;
}

.products-wrapper.list .thumbnail__image {
  flex: 0 0 320px;
}

.products-wrapper.list .add-from-collection,
.products-wrapper.list .selectoptions {
  max-width: 254px;
  box-sizing: border-box
}

@media(max-width: 798px) {
  .thumbnail {
     width: calc(50% - 4px) !important;
  }

  .products-wrapper.list .thumbnail {
    width: 100% !important;
  }

  .products-wrapper.list .thumbnail__image {
    flex: 0 0 170px;
  }

}

@media(min-width: 1024px) {
  .thumbnail {
    margin: 9px !important;
  }
}

.thumbnail a {
  display: block;
  cursor: pointer;
  color: #363636;
}
.thumbnail a:hover {
  color: #000000;
}

.thumbnail .thumbnail__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.product-thumbnail-buttons .thumbnail__link {
  flex: auto
}

.thumbnail .thumbnail__content {
  flex: 1 1 auto;
  background-color: #1a1a1a05;
}

.thumbnail .spr-badge {
  margin: 0;
}
.thumbnail .collection-swatches--left {
  text-align: left;
}
.thumbnail .collection-swatches--center {
  text-align: left;
}

.thumbnail__image {
  position: relative;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.thumbnail__title {
    display: block;
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 600;
    line-height: 140%;
    margin-top: 12px;
    margin-bottom: 0px;
}

@media(min-width: 1440px) {
  .thumbnail__title {
    font-size: 18px;
    font-weight: 500;
  }
}

.thumbnail__description {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #363636;
}

.thumbnail__vendor {
    color: #767676;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.014px;
}

.thumbnail__price {
  margin-top: 10px;
  display: block;
  font-weight: 500;
  color: #FF6F6F;
  font-size: 20px;
  line-height: 120%;
}

.product-thumbnail__info-container .price.sale_price,
.product-thumbnail__info-container .order_price .strike{
  font-weight: 500 !important;
}

.thumbnail__price.sale .yousave {
  color: #1A1A1A;
}

@media(min-width: 1024px) {
  .thumbnail__price {
    font-size: 22px;
  }
}

.thumbnail__border {
  display: block;
  margin: 0 auto;
  width: calc(100% - 50px);
  border-bottom: 1px solid #0d0d0d;
}

.thumbnail__content {
  display: flex;
  position: relative;
  padding: 18px 10px;
  border-top: 0px;
  overflow:  hidden;
}

@media(max-width: 768px) {
  .thumbnail__content {
    padding-top: 8px;
  }
}

/* .jdgm-preview-badge .jdgm-star.jdgm-star,
.jdgm-prev-badge__text {
  color: #FF6F6F !important;
} */

.jdgm-prev-badge__text {
  font-size: 9px !important;
  line-heihgt: 100% !important;
  font-weight: 500;
  letter-spacing: -0.014px;
}

@media(min-width: 1440px) {
  .thumbnail__content {
    padding: 32px 16px;
  }
}
.thumbnail__content.thumbnail__content--left {
  text-align: left;
  flex-direction: column;
}
.thumbnail__content.thumbnail__content--center {
  text-align: left;
  flex-direction: column;
}
.thumbnail__content.thumbnail__content--right {
  flex-direction: row;
  justify-content: space-between;
}
.thumbnail__content.thumbnail__content--right .thumbnail__price {
  text-align: right;
}
@media only screen and (max-width: 798px) {
  .thumbnail__content.thumbnail__content--right .thumbnail__price {
    text-align: left;
  }
}
.thumbnail__content.thumbnail__content--right .product-details__unit-price {
  font-weight: initial;
}
.thumbnail__content.thumbnail__content--right .product-thumbnail__info-container {
  flex: 1 0 40%;
}
@media only screen and (max-width: 798px) {
  .thumbnail__content.thumbnail__content--right {
    flex-direction: column;
    align-items: flex-start;
  }
}

.banner_holder--list {
  text-align: left;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.banner_holder--list .new_banner,
.banner_holder--list .sale_banner {
  margin-right: 5px;
  font-size: 0.7rem;
  line-height: 1.3;
  align-self: center;
}
.banner_holder--list .new_banner:last-child,
.banner_holder--list .sale_banner:last-child {
  margin-right: 0;
}

.cart_price {
  float: right;
  text-align: right;
  padding-left: 20px;
  font-weight: bold;
  display: none;
}

.cart__tax-label,
#estimated-shipping {
  display: block;
}

.cart_page_image {
  text-align: center;
  display: block;
  margin: 0 1rem 1rem 0;
}
@media only screen and (max-width: 798px) {
  .cart_page_image {
    margin: 1rem 1rem 1rem 0;
  }
}
.cart_page_image img {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.size_chart {
  padding-top: 5px;
}
.size_chart .icon-arrow-right {
  font-size: 12px;
}

.size_chart_content {
  display: none;
  padding: 10px 20px;
}

.icon-arrow-right {
  font-size: smaller;
}

#size-chart h4 {
  padding: 15px 0 0 0;
  text-align: center;
}

.price_total_text {
  font-weight: normal;
  display: none;
}

.was_price {
  text-decoration: line-through;
  color: #1A1A1A99;
  text-shadow: none;
  font-size: 16px;
  font-weight: 500;
  margin-left: 7px;
}

@media (min-width: 1024px) {
  .was_price {
    font-size: 18px;
  }
}

.thumbnail span.quick_shop--button .icon-search {
  position: relative;
  top: 1px;
}
.thumbnail span.quick_shop--icon {
  width: auto;
  opacity: 0;
  cursor: pointer;
  color: #000000;
  background-color: transparent;
  transform: translateY(0px);
  transition: all 0.3s;
}
.thumbnail span.quick_shop--icon:hover {
  color: #3e3a3a;
}
.thumbnail span.quick_shop--icon span.icon-plus {
  font-size: 45px;
}
.thumbnail:hover span.quick_shop {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0px);
}
.thumbnail:hover span.quick_shop--icon {
  opacity: 1;
}

.thumbnails a {
  display: block;
  margin-bottom: 1em;
}

#instafeed img,
#instafeed svg,
#instafeed video {
  margin-bottom: 1em;
}

.arrow {
  font-size: smaller;
  position: relative;
  top: -1px;
  left: 2px;
  opacity: 0.6;
}

.modal {
  margin: 10px 0;
  display: none;
  background-color: #ffffff;
}

.modal_product {
  width: auto;
  line-height: 0px;
  max-width: 940px;
}
.modal_product img {
  cursor: pointer;
}

.modal_image {
  text-align: center;
}

.modal a {
  padding-bottom: 0;
}

p.modal_price,
.modal p.modal_price {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 0px;
}
p.modal_price + .product-details__unit-price,
.modal p.modal_price + .product-details__unit-price {
  margin-top: -10px;
}

:root {
  --color-body-text: #363636;
  --color-body: #ffffff;
  --color-bg: #ffffff;
}

shopify-payment-terms {
  margin-bottom: 20px;
}

/* Add to cart button container */
.atc-btn-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}
.atc-btn-container.disabled {
  opacity: 0.3;
}

.modal_price--sold-out {
  opacity: 0.3;
}

.modal form {
  margin-bottom: 10px;
}

.notify_form .action_button {
  width: 100%;
}

.product_image {
  text-align: center;
}

.product_image_col {
  margin-top: 15px;
  text-align: center;
}

.meta {
  font-size: 13px;
}
.meta p {
  font-size: 13px;
  margin-bottom: 0px;
}

p.meta {
  margin-bottom: 10px;
}

.comment-body p.meta {
  margin-bottom: 5px;
}

.comment-body h6 {
  padding-top: 0;
}

.content_block.toggle_list {
  padding-right: 15px;
}
.content_block.toggle_list a {
  display: inline;
  position: static;
  padding-left: 0;
  margin-left: 0;
  border-left: none;
  color: #fa7268;
}
.content_block.toggle_list a:hover {
  border-left: none;
  color: #000000;
}

@media only screen and (max-width: 480px) {
  .blog_filter {
    width: 100%;
  }
}

.blog_list {
  margin-left: 0;
}
.blog_list a {
  color: #363636;
}
.blog_list a:visited {
  color: #363636;
}
.blog_list a:hover, .blog_list a:active {
  color: #7f8c8d;
}

.blog_meta span {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  font-size: smaller;
  color: #363636;
}
.blog_meta span:after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  margin: -1px 5px 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #ced3d3;
  box-sizing: border-box;
}
.blog_meta span:last-child:after {
  background-color: transparent;
}

.tags span a {
  font-weight: bold;
  color: #fa7268;
}

.blog_list li {
  list-style: none;
}

.article h5.sub_title {
  line-height: 1.5em;
  letter-spacing: 0;
}

.excerpt {
  line-height: 1.8em;
  position: relative;
  max-height: 9em; /* exactly five lines */
  margin-bottom: 1em;
  overflow: hidden;
}

.excerpt-length--lg .truncation-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 30px 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.excerpt-length--sm .truncation-fade {
  display: none;
}

.continue_reading .action_button {
  padding: 8px 15px;
  margin-top: 15px;
}

.article h2 {
  margin-bottom: 0;
  line-height: 1.4em;
}
.article h2 a {
  color: #363636;
}
.article .image-element__wrap {
  margin: 0px auto;
}
.article img,
.article svg {
  margin-bottom: 10px;
}

.article,
.article_image {
  display: block;
  padding-bottom: 30px;
}

body.article {
  padding-bottom: 0;
}

.toggle span {
  width: 25px;
  text-align: center;
  color: #363636;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: smaller;
  float: right;
  display: none;
}
@media only screen and (max-width: 798px) {
  .toggle span {
    display: block;
  }
}

.toggle-all--true h4.toggle {
  cursor: pointer;
}
.toggle-all--true .toggle span {
  display: block;
}
.toggle-all--true .toggle_list,
.toggle-all--true .recent_articles {
  display: none;
}

form.search input[type=text] {
  width: 75%;
  display: inline-block;
  margin-right: 1em;
}
@media only screen and (max-width: 798px) {
  form.search input[type=text] {
    width: 100%;
    margin-right: 0;
  }
}

.label,
.meta .label {
  color: #363636;
}

.blog_meta,
.blog_meta a {
  color: #363636;
}

.blog_meta a:hover {
  color: #000000;
}

.count {
  font-style: normal;
  font-size: 13px;
}

/* Collection sorting */
.collection-filters {
  padding-top: 8px;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 798px) {
  .collection-filters {
    flex-direction: column;
  }
}
.collection-filters .filter-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 1199px) {
  .collection-filters .filter-wrap {
    /*flex-direction: column;*/
    align-items: flex-start;
  }
}
@media only screen and (max-width: 798px) {
  .collection-filters .filter-wrap {
    width: 100%;
    margin-bottom: 20px;
  }
  .collection-filters .filter-wrap:last-child {
    margin-bottom: 0;
  }
}
.collection-filters .filter-wrap #sort-by,
.collection-filters .filter-wrap #tag_filter {
  margin: 0;
  padding-right: 30px;
  font-family: "Satoshi-Variable", sans-serif;
}
@media only screen and (max-width: 798px) {
  .collection-filters .filter-wrap #sort-by,
  .collection-filters .filter-wrap #tag_filter {
    margin-top: 0px;
  }
  .filter-wrap #sort-by {
    border-radius: 0px;
    border: 0px;
    background-color: #F8F8F8;
    color: #1A1A1A;
    font-size: 16px !important;
    font-weight: 500;
  }
}
.collection-filters .filter-wrap label {
  margin-right: 10px;
  white-space: nowrap;
}

.checkout {
  display: block;
  float: right;
  margin-top: 0px;
}

.no-js .additional-checkout-buttons {
  display: none;
}

.additional-checkout-buttons {
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
}
.additional-checkout-buttons > *:not(script) {
  padding: 10px 0 0 10px;
  vertical-align: top;
  line-height: 1;
}
@media only screen and (max-width: 798px) {
  .additional-checkout-buttons > *:not(script) {
    padding: 10px 0 0 5px;
  }
}
.additional-checkout-buttons > *:not(script):empty, .additional-checkout-buttons > *:not(script):first-child {
  padding-left: 0px;
}

.or {
  font-size: smaller;
  font-style: italic;
  padding: 0 10px;
}

.purchase {
  margin-top: 25px;
}

.inline_purchase {
  display: inline-block;
  margin-left: 20px;
  margin-top: 25px;
}

.comment {
  margin-bottom: 20px;
}

.gravatar {
  width: 100px !important;
  padding-right: 20px;
}
.gravatar img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  border-radius: 50%;
}

.red {
  color: #C33;
}

.address p {
  margin-bottom: 5px;
}

div#disqus_thread ul,
div#disqus_thread li {
  border: none;
}

/* #Home page - map
================================================== */
.mapLayout {
  width: 100%;
  position: relative;
}
.mapLayout .placeholder-svg--banner {
  max-height: 400px;
}
.mapLayout .mapLayout--display img.lazyload--fade-in.lazyloaded {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}
.mapLayout .mapLayout--info {
  display: flex;
  align-items: center;
  width: 25%;
  max-width: 350px;
  height: 300px;
  position: absolute;
  padding: 20px 40px;
  top: 30px;
  border: 1px solid #0d0d0d;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
}
.mapLayout .mapLayout--info.info--right {
  right: 10%;
}
.mapLayout .mapLayout--info.info--left {
  left: 10%;
}
@media only screen and (max-width: 798px) {
  .mapLayout .mapLayout--info {
    position: relative;
    width: calc(100% - 82px);
    max-width: 100%;
    border-color: none;
    box-shadow: none;
    top: 0;
  }
  .mapLayout .mapLayout--info.info--right {
    right: 0%;
  }
  .mapLayout .mapLayout--info.info--left {
    left: 0%;
  }
}
.mapLayout .mapLayout--info .info {
  width: 100%;
}
.mapLayout .mapLayout--info p {
  margin-bottom: 0;
}
.mapLayout .mapLayout--info .action_button {
  margin-top: 20px;
}

/* #Home page - Newsletter
================================================== */
.shopify-section--newsletter h2.title {
  color: inherit;
}
.shopify-section--newsletter .newsletter--center {
  margin: 0px auto;
}
.shopify-section--newsletter .newsletter--right {
  float: right;
}
.shopify-section--newsletter .content_padding {
  padding: 0px 20px;
}
@media only screen and (max-width: 798px) {
  .shopify-section--newsletter .content_padding {
    padding: 0;
  }
}

/* #Home page - richtext
================================================== */
.shopify-section--rich-text {
  padding: 30px 0;
}
.shopify-section--rich-text img {
  /* NE compatibility
    max-width: 200px; Remove this style as a new setting will take it's place
  */
}
.shopify-section--rich-text .image-element__wrap {
  display: inline-block;
}
.shopify-section--rich-text .align_center img {
  margin: 0px auto;
}
.shopify-section--rich-text .align_left img {
  margin-left: 0;
  margin-right: auto;
}
.shopify-section--rich-text .align_right img {
  margin-left: auto;
  margin-right: 0;
}

/* #Home page - featured blog
================================================== */
.block__blog_posts .placeholder-svg,
.shopify-section--blog-posts .placeholder-svg {
  height: auto;
}

/* #Home page - slideshow
================================================== */
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .homepage_slider .flex-control-nav {
    position: static;
    bottom: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .homepage_slider .flex-control-nav li {
    padding: 10px;
  }
}
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .homepage_slider .flex-control-nav li a {
    margin: 0;
    width: 16px;
    height: 16px;
    display: block;
    background: #363636;
  }
  .homepage_slider .flex-control-nav li a:hover {
    background: #363636;
    border: 1px solid #363636;
    transform: scale(1);
  }
  .homepage_slider .flex-control-nav li a.flex-active {
    background: transparent;
    border: 1px solid #363636;
    transform: scale(1.2);
  }
}
.homepage_slider .vertical-text-position--bottom .action_button {
  margin-bottom: 2rem;
}

/* #Home page - featured product
================================================== */
.shopify-section--featured-product {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 798px) {
  .product_section[data-media-position=right] {
    display: flex;
    flex-direction: column-reverse;
  }
}

.product__content {
  padding: 0 2.5rem;
}

@media only screen and (max-width: 798px) {
  .is-featured-product {
    align-items: center;
  }
}
.is-featured-product .placeholder-svg {
  margin-bottom: 1rem;
}

.is-quickshop.container {
  padding: 0;
}

/* #Home page - featured promotions
================================================== */
.featured-promotions {
  padding-top: 30px;
  padding-bottom: 20px;
}

.container .column.featured-promotions__item,
.container .columns.featured-promotions__item {
  text-align: center;
}
@media only screen and (max-width: 798px) {
  .container .column.featured-promotions__item,
  .container .columns.featured-promotions__item {
    margin-bottom: 20px;
  }
  .container .column.featured-promotions__item:last-of-type,
  .container .columns.featured-promotions__item:last-of-type {
    margin-bottom: 0;
  }
}

.featured-promotions__image,
.placeholder-svg--promotions {
  margin: 0 auto 15px;
}
@media only screen and (max-width: 480px) {
  .featured-promotions__image,
  .placeholder-svg--promotions {
    max-width: 200px;
  }
}
.featured-promotions__image.featured-promotions__image-rounded-true img, .featured-promotions__image.featured-promotions__image-rounded-true svg,
.placeholder-svg--promotions.featured-promotions__image-rounded-true img,
.placeholder-svg--promotions.featured-promotions__image-rounded-true svg {
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

/* #Home page - Divider
================================================== */
.divider {
  opacity: 0;
  border-color: #363636;
}
.divider.divider--true {
  opacity: 1;
}

/* #Home page - Quote
================================================== */
.quote__text {
  font-size: 18px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid #363636;
  border-bottom: 1px solid #363636;
}

.quote__text p {
  margin: 0;
}

/* #Contact form
================================================== */
.contact_form {
  padding-top: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 798px) {
  .contact_form {
    display: block;
  }
}

.sidebar__content-block .contact-form {
  margin-bottom: 1rem;
}

.contact_form_position--right {
  flex-direction: row;
}

.contact_form_position--left {
  flex-direction: row-reverse;
}

.contact_form_position--center {
  flex-direction: column;
  align-items: center;
}

.page-contact .banner__text h1 {
  display: inline-block;
}

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

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

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

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

.contact-template_contact_form {
  width: 100%;
  margin-bottom: 50px;
}

.contact_form.contact_text_position--center .contact_content {
  margin-bottom: 25px;
}

.contact__form-name,
.contact__form-email,
.contact__form-message {
  flex-basis: 100%;
}

.contact__form-subheading {
  border: none;
  text-align: inherit;
}

.contact__form-image {
  margin-bottom: 20px;
}

#contact_form input,
#contact_form textarea {
  border: 0px;
  border-radius: 100px;
  background-color: #F8F8F8;
  padding: 14px 18px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #1A1A1A;
  min-height: 48px;
  transition: all 0.25s ease 0s;
}

#contact_form textarea {
  min-height: 150px;
  border-radius: 12px;
}

#contact_form input::placeholder,
#contact_form textarea::placeholder {
  color: #737373;
}

#contact_form input:focus,
#contact_form textarea:focus {
  box-shadow: none;
  background-color: #EFEFEF;
}

#contact_form input.button {
  width: 100%;
  max-width: 230px;
  border: 1px solid #fa7268;
  background: #fa7268;
  color: #fff;
  transition: all 0.25s ease 0s;
  font-size: 16px;
  font-weight: 700;
  text-transform: initial;
}

.contact-heading {
  font-family: 'eds-market-main-script';
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  font-size: 32px;
}

@media(min-width: 768px) {
  .contact-heading {
    font-size: 48px;
  }
}

/* #Recipient form
================================================== */
.recipient-disclosure {
  --recipient-form-checkbox-width: 15px;
  --recipient-form-checkbox-border-width: 2px;
  --recipient-form-checkbox-border-color: #363636;
  --recipient-form-checkbox-svg-color: #363636;
  --recipient-form-error-color: #D04343;
  width: 100%;
}
.recipient-disclosure + .quantity-button-true {
  margin-top: 15px;
}
@media only screen and (max-width: 1024px) {
  .recipient-disclosure + .quantity-button-true {
    margin-top: 0;
  }
}

.recipient-disclosure__checkbox,
.recipient-form__input--message {
  margin: 0;
}

.recipient-disclosure__checkbox-label {
  text-transform: none;
  font-weight: normal;
  font-size: initial;
}
.recipient-disclosure__checkbox-label .svg-icon.icon-filter-check {
  display: block;
}

.recipient-disclosure__checkbox-label-text {
  font-weight: normal;
  font-size: inherit;
  color: #363636;
}
@media only screen and (max-width: 798px) {
  .recipient-disclosure__checkbox-label-text {
    padding: 8px 0;
  }
}

@media only screen and (max-width: 798px) {
  .recipient-form {
    margin-top: 8px;
  }
}

.recipient-form--has-errors .recipient-form__input--email {
  border: 2px solid var(--recipient-form-error-color);
  margin-bottom: 2px;
}

.recipient-form__required {
  color: var(--recipient-form-error-color);
}

.recipient-form__error-message {
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--recipient-form-error-color);
}

.recipient-form__max-characters-message {
  margin-top: 5px;
}

/* #Blog
================================================== */
.shopify-section--blog-template .article h2 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.shopify-section--blog-template .breadcrumb,
.shopify-section--blog-template .section_select {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 798px) {
  .shopify-section--blog-template .breadcrumb,
  .shopify-section--blog-template .section_select {
    margin-top: 0.5rem;
  }
}

/* #Blog posts
================================================== */
.parallax-banner--article img {
  margin-bottom: 0;
}

/* Featured image */
.article-image {
  margin-bottom: 1rem;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
}

.article-tag {
  margin: 0 0.5rem 0.5rem 0;
  background-color: #eee;
  border-radius: 2px;
  padding: 2px 10px;
  color: #919191;
  font-size: 12px;
}
.article-tag:last-child {
  margin-right: 0;
}

/* #Newsletter
================================================== */
.input-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -5px;
  margin-left: -5px;
  margin-right: -5px;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .input-row {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.input-row input {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  margin: 5px;
  max-height: 40px;
}
@media only screen and (max-width: 798px) {
  .input-row input {
    margin: 5px 0;
  }
}
.input-row input.sign_up {
  display: inline-block;
  flex: none;
  max-height: 40px;
}
@media only screen and (max-width: 798px) {
  .input-row input.sign_up {
    width: 100%;
  }
}

/* #Home page - Gallery
================================================== */
.shopify-section--gallery .gallery__image {
  margin-bottom: 20px;
}
.shopify-section--gallery .is-width-wide .gallery__image {
  margin-bottom: 0;
}
.shopify-section--gallery .gallery__link {
  display: block;
}

.image-gallery .column {
  margin-bottom: 1em;
}

/* #Image with text
================================================== */
@media screen and (max-width: 767px) {
  .fstuln {
    margin-left:-15px!important;
  }
  .filter-button-wrap .action_button {
    font-family: "Satoshi-Variable", sans-serif;
    font-size: 16px;
    text-transform:none;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 15px;
    padding-top: 16px;
    padding-bottom: 16px;
}
  .t-image {
  width:100%;
 }
    .t-text {
    padding:0 10%;
}
  .image-text--align-right {
    display: flex;
    flex-direction: column-reverse;
  }
}
.homepage_content.image_with_text {
  padding: 0;
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .homepage_content.image_with_text {
    width: 100%;
    box-sizing: border-box;
    float: left;
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
  }
}
.homepage_content.image_with_text h3.title {
  padding-top: 0;
  margin: 0 0 15px 0;
}

/* #Testimonials
================================================== */
.testimonial-block {
  text-align: center;
  padding: 15px 0;
}

.testimonial-block__text {
  padding-top: 15px;
}

.testimonial-dash {
  font-size: 22px;
  vertical-align: top;
}

/* #Logo-list
================================================== */
.shopify-section--logo-list h2 {
  padding-bottom: 6px;
  color: #363636;
}

.logo-bar {
  text-align: center;
  margin-bottom: 20px;
}

.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  width: calc(20% - 45px);
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 798px) {
  .logo-bar__item {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* #Search
================================================== */
#search {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
}

.search-results-text {
  text-align: center;
  font-size: 16px;
  margin: 1.875rem 0 1rem;
}

.search_page .has-sidebar-option {
  width: 100%;
}

.search-form {
  margin: 0;
  position: relative;
}
.search-form.search-form--mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
  background-color: #ffffff;
}
.search-form.search-form--search-template {
  max-width: 500px;
  margin: 0 auto;
}
.sidebar__content-block .search-form {
  margin-bottom: 1rem;
}

.search-form__results-container {
  display: none;
  position: absolute;
  z-index: 10000;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
  overflow-y: auto;
  max-height: var(--search-results-max-height, auto);
  background-color: #ffffff;
  border: 1px solid #dfdfdf;
  margin-top: -1px; /* Account for border overlap */
  opacity: 0;
  border-radius: 12px;
}

body.search .search-form__results-container {
  top: calc(100% + 20px);
  border-radius: 12px;
  z-index: 3;
}

.search-form__results-container[data-animation] {
  display: block;
  transition: opacity 0.2s;
}
.search-form__results-container[data-animation-state=open] {
  display: block;
  opacity: 1;
}
.search-form--mobile-search .search-form__results-container {
  border: none;
  margin-top: 0;
  padding: 1.25rem 0;
}

.search-form__input-wrapper {
  margin-top: 20px;
  position: relative;
}

.mobile-search-bar input.search-form__input {
  margin: 0;
  padding: 0 20px;
}

.mobile-search-bar .search-form__submit-button {
  background:#fa7268
}
input.search-form__input {
  margin: 0;
  padding: 0 20px;
}

body.search input.search-form__input {
  border-radius: 1000px;
  background-color: #1A1A1A08;
  color: #1A1A1A99;
  border: 0px;
}

input.search-form__input:focus {
  box-shadow: none;
  border-color: #dfdfdf;
}
.search-form--header input.search-form__input {
  height: 40px;
  font-size: 17px;
}
.search-form--mobile-search-bar input.search-form__input {
  padding-right: 40px;
}
@media (min-width:768px){
.search-form__close-button {
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1px;
  height: 37px;
  width: 37px;
  padding: 0;
  color: inherit;
  background: none;
}
.search-form__submit-button {
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  right:2px!important;
  height: 36px;
  width: 36px;
  padding: 0;
  color: inherit;
  background: none;
}
}
@media (max-width:767px){
.search-form__close-button {
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 3px;
  height: 37px;
  width: 37px;
  padding: 0;
  color: inherit;
  background: none;
}
.search-form__submit-button {
  align-items: center;
        justify-content: center;
        position: absolute;
        top: 2px;
        height: 40px;
        width: 40px;
        padding: 0;
        color: inherit;
        background: none;
        right: 2px!important;
 }
}
.search-form__close-button {
  top:44px;
  z-index:100000
}
.search-form__close-button:hover,
.search-form__submit-button:hover {
  background: none;
}
.search-form__close-button:active,
.search-form__submit-button:active {
  box-shadow: none;
}
.search-form__close-button .icon-search,
.search-form__submit-button .icon-search {
  margin: 0;
}

.search-form__close-button {
  display: none;
  right: 0;
}
.mobile-search .search-form__close-button {
  display: flex;
}

.search-form__submit-button {
  display: flex;
  right: 2px;
 }
.search-wrap .search-form__submit-button {
  background:#fa7268;
}
.search-wrap .icon-search:before, .mobile-search-bar .icon-search:before {
color:#fff
}
.search-wrap input.search-form__input {
    margin: 0;
    padding: 0 20px 0 20px;
}
/* #Predictive search
================================================== */
.predictive-search {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.search-form__results-container-loading-state {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
[data-loading=false] .search-form__results-container-loading-state {
  display: none;
}

.search-form__results-container-loading-state-spinner path:first-child {
  opacity: 0.125;
}
.search-form__results-container-loading-state-spinner path:last-child {
  fill: #fa7268;
}
[data-loading=true] .search-form__results-container-loading-state-spinner path:last-child {
  transform-origin: center;
  animation: rotate 0.75s infinite linear;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

[data-loading=true] .predictive-search__header {
  display: none;
}

.predictive-search__heading {
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 1px;
  font-weight: 200;
  text-transform: uppercase;
  border-bottom: 1px solid #dfdfdf;
  font-family: Satoshi-Variable,sans-serif;
}

.predictive-search__heading a {
  color: #363636;
}

.predictive-search__heading a:hover {
  color: #fa7268;
}

.predictive-search__no-results {
  text-align: center;
  padding-top: 0.625rem;
  margin: 0;
}

.predictive-search__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
[data-loading=true] .predictive-search__main {
  display: none;
}

.predictive-search ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: normal;
}

.predictive-search__query-suggestions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
}

.predictive-search__query-suggestion-link span {
  font-weight: bold;
  color: inherit;
}
.predictive-search__query-suggestion-link mark {
  background: none;
  color: inherit;
}

.predictive-search__query-suggestion-link,
.predictive-search__page-suggestion-link,
.predictive-search__article-suggestion-link {
  display: block;
  color: #363636;
}
.predictive-search__query-suggestion-link:hover, .predictive-search__query-suggestion-link:focus, .predictive-search__query-suggestion-link:visited,
.predictive-search__page-suggestion-link:hover,
.predictive-search__page-suggestion-link:focus,
.predictive-search__page-suggestion-link:visited,
.predictive-search__article-suggestion-link:hover,
.predictive-search__article-suggestion-link:focus,
.predictive-search__article-suggestion-link:visited {
  color: #363636;
}

.predictive-search__product-suggestions,
.predictive-search__article-and-page-suggestions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
}

.predictive-search__product-suggestion-link {
  display: flex;
  gap: 1rem;
  color: #363636;
}
.predictive-search__product-suggestion-link:hover, .predictive-search__product-suggestion-link:focus, .predictive-search__product-suggestion-link:visited {
  color: #363636;
}

.predictive-search__product-suggestion-image {
  flex-shrink: 0;
  width: 50px;
}

.predictive-search__product-suggestion-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  font-size: 14px;
}

.predictive-search__product-suggestion-price .was-price {
  text-decoration: line-through;
}

[data-loading=true] .predictive-search__footer {
  display: none;
}

.predictive-search__footer-button.action_button {
  width: 100%;
  font-size: initial;
  padding: 12px 20px;
  text-transform: initial;
  transition: all .25s ease 0s;
}

.predictive-search__footer-button.action_button:hover {
  transition: all .25s ease 0s;
  background: #f75e5e;
}

/* #Mobile search
================================================== */
.mobile-search {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
  background-color: #ffffff;
  opacity: 0;
}
.mobile-search[data-animation] {
  display: block;
  transition: opacity 250ms;
}
.mobile-search[data-animation-state=open] {
  display: block;
  opacity: 1;
}

.mobile-search-bar {
  padding: 1rem;
}
@media only screen and (min-width: 1025px) {
  .mobile-search-bar {
    display: none;
  }
}

/* #Swatch Styles
================================================== *//* .product_section .product_form {
    opacity: 0;
    transition: opacity 0.2s ease;
  } */
.product_section .product_form.is-visible {
    opacity: 1;
  }
.select,
  .selector-wrapper {
    display: none;
  }
.swatch-options {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 24px 0px;
  border-top: 0.3px solid #1A1A1A33;
  border-bottom: 0.3px solid #1A1A1A33;
  }

.swatch {
  align-items: center;
}

.swatch:not(:first-child) {
  margin-top: 16px;
}
  
.swatch .option-title {
    width: fit-content;
    font-size: 16px;
    color: #1A1A1A;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.016px;
  margin-right: 8px;
  }

/* Allow user to cycle through radio buttons with keyboard */
.swatch input {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
  }

.swatch label {
    cursor: pointer;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
    text-transform: uppercase;
    height: 20px;
    min-width: 20px;
    line-height: 20px;
  }
.swatch .color label {
    background-size: cover;
    background-position: center;
    height: 24px;
    min-width: 24px;
    line-height: 24px;
  }
  
.swatch-element {
    min-width: 24px;
    min-height: 24px;
  }
.swatch-element.color, .swatch-element.color label {
    border-radius: 50%;
    background-clip: padding-box;
  }
.swatch-element.color.swatch-element label {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
.swatch .swatch-element {
    outline: none;
    text-align: center;
    position: relative;
    margin-right: 10px;
    margin-bottom:6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    padding: 5px;
    border: 0.5px solid #1A1A1A26;
  transition: all 0.25s ease 0s;
  }

.swatch input:checked + .swatch-element  {
  border-color: #1A1A1A;
  transition: all 0.25s ease 0s;
}

.swatch .swatch-element.color {
   border-radius: 50%;
}
.swatch .swatch-element .crossed-out {
    display: none;
  }
.swatch .swatch-element.soldout .crossed-out {
    width: 100%;
    height: 100%;
    display: block;
  }
.swatch .swatch-element.soldout label {
    opacity: 0.6;
  }
.crossed-out {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
  }
/* Tooltips */
.swatch .tooltip {
    text-align: center;
    background: #333333;
    background: rgba(51, 51, 51, 0.9);
    color: #ffffff;
    bottom: 100%;
    padding: 5px 10px;
    display: block;
    position: absolute;
    width: 120px;
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    z-index: 60;
    box-sizing: border-box;
    transition: all 0.25s ease-out;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    left: -35px;
    transform: translateY(10px);
  }
.swatch .tooltip:before {
    content: "";
    left: 0;
    bottom: -20px;
    height: 20px;
    width: 100%;
    display: block;
    position: absolute;
  }
/* CSS triangle */
.swatch .tooltip:after {
    content: "";
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid rgba(51, 51, 51, 0.9) 10px;
    bottom: -10px;
    height: 0;
    width: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
  }
.swatch .swatch-element:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }.collection-swatches {
    margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  }

.collection-swatches .swatch {
    display: inline-flex;
    margin: 2px;
    padding: 2px;
    border-radius: 50%;
    border: 0.5px solid #1A1A1A26;
    height: 24px;
    width:24px;
    box-sizing: border-box;
  background-color: transparent;
  }

  .collection-swatches .swatch.active {
    border-color: #1A1A1A;
  }
.collection-swatches .swatch span {
    width: 16px;
    min-width: 16px;
    height: 16px;
    float: none;
    display: inline-block;
    border-radius: 50%;
    background-clip: padding-box;
    background-position: center;
    background-size: cover;
    border: 0.3px solid rgba(0,0,0,0.1);
  }/* #Sidebar
================================================== */
.sidebar {
  padding-top: 20px;
}
@media only screen and (max-width: 798px) {
  .sidebar {
    padding-top: 0;
  }
}

.sidebar li ul {
  display: none;
  margin: 10px 0 0 15px;
  font-size: 13px;
}
.sidebar li ul.active {
  display: block;
}

.sidebar li ul li {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.sidebar li ul li:last-child {
  padding-bottom: 0;
}

@media only screen and (max-width: 798px) {
  .sidebar__content {
    padding: 0;
    margin-left: 10px;
  margin-right: 10px;
    border: none;
  }
}
.sidebar__content .input-row {
  flex-direction: column;
  margin-left: 0px;
  margin-right: 0px;
}
.sidebar__content .input-row input {
  margin: 5px 0;
}

.sidebar__content-block {
  margin-bottom: 12px;
  border-bottom: 1px solid #0d0d0d;
}
.sidebar__content-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.sidebar_title {
  padding-bottom: 0px;
}

.has-sidebar-option,
.section--has-sidebar-option {
  width: 100%;
}

.content-wrapper {
  width: 100%;
}

@media(min-width: 799px) {
  .collection .products-wrapper{
    padding-left: 32px;
  }
}

.product-row .container {
  padding: 0;
}
.product-row:first-child .container {
  padding-top: 20px;
}
.product-row hr {
  margin: 30px 0;
}

.sidebar--blog .sidebar__content,
.sidebar--article .sidebar__content {
  padding-left: 20px;
  border-left: 1px solid #0d0d0d;
}
@media only screen and (max-width: 798px) {
  .sidebar--blog .sidebar__content,
  .sidebar--article .sidebar__content {
    padding-left: 0;
    border: none;
  }
}

.shopify-section--blog-template .has-sidebar-option.sidebar-enabled--false,
.shopify-section--search-template .has-sidebar-option.sidebar-enabled--false {
  width: 100%;
}

/* #Footer
================================================== */
.footer {
  padding: 25px 0;
  margin-top: 2.5em;
  border-top: solid 1px rgba(0,0,0,0);
  background-color: #333333;
  color: #ffffff;
}
.footer form {
  margin-bottom: 0;
}
.footer .footer__title {
  margin-bottom: 20px;
  color: #ffffff;
}
.footer .footer__follow-on-shop {
  margin-bottom: 20px;
}
.footer p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ffffff;
}
.footer a {
  color: #ffffff;
  font-size: 14px;
}
.footer a:hover, .footer a:active {
  color: #eadbda;
}

.footer_menu {
  margin: 0;
  list-style: none;
}
.footer_menu li {
  padding-right: 20px;
  display: inline-block;
}
.footer_menu li a {
  margin-bottom: 20px;
  color: #ffffff;
}
.footer_menu li a:hover {
  color: #eadbda;
}
.footer_menu li a.ss-icon {
  font-size: 55px;
}

.footer__info {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
@media only screen and (max-width: 798px) {
  .footer__info {
    flex-direction: column;
  }
}

.selectors-form__locale + .selectors-form__currency {
  margin-left: 10px;
}

.index .footer {
  margin-top: 0;
}

.page-contact .footer {
  margin-top: 0;
}
.page-contact .maps {
  bottom: -6px;
  position: relative;
}

.maps iframe {
  display: block;
}

.sub-footer .social_icons li {
  display: inline;
  padding-right: 10px;
}

.payment_methods {
  margin: 4px 0 6px 0;
  filter: alpha(opacity=80);
  opacity: 0.9;
}
.payment_methods svg {
  width: 48px;
  height: 30px;
  padding-right: 4px;
}

.credits_right {
  text-align: right;
}

/* Custom mmenu styles
================================================== */
.mm-menu {
  background: #333333;
  background: rgba(51, 51, 51, 0.6);
  color: rgba(255, 255, 255, 0.6);
  max-height: 100vh;
}
.mm-menu .continue {
  color: rgba(255, 255, 255, 0.8);
  text-indent: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: -20px;
  margin-bottom: 5px;
  line-height: 10px;
}

.mm-menu.mm-opened {
  display: flex;
}

#nav a,
#nav span,
#nav li select.currencies {
  font-family: Figtree, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0px;
  color: inherit;
}
#nav a.mm-navbar__title,
#nav span.mm-navbar__title,
#nav li select.currencies.mm-navbar__title {
  font-size: 18px;
}

.mm-listview li.currencies {
  padding: 0 8px 0 20px;
}

#nav a.ss-icon span {
  font-size: 28px;
  font-weight: normal;
}

.mm-menu .mm-listview > li > a.mm-subopen:after,
.mm-menu .mm-listview > li > a.mm-subclose:before {
  border-color: rgba(255, 255, 255, 0.3);
}

.mm-listview a.mm-subopen:after,
.mm-listview a.mm-subclose:before {
  content: "";
  border: 2px solid transparent;
  display: block;
  width: 7px;
  height: 7px;
  margin-bottom: -5px;
  position: absolute;
  transform: rotate(-45deg);
}

.mm-listview a.mm-subclose:before {
  border-right: none;
  border-bottom: none;
  margin-bottom: -15px;
  left: 22px;
}

.mm-menu .mm-listview > li.mm-label {
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
}

#cart .continue {
  margin: 0;
}

#cart.mm-menu textarea {
  margin: 15px 20px 0px 20px;
  display: block;
  width: calc(100% - 40px);
}

#cart .mm-listview > li {
  border-color: inherit;
  position: relative;
}
#cart .mm-listview .mm-subtitle,
#cart .mm-listview .mm-label {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
#cart .mm-listview > li > a {
  color: inherit;
  display: block;
  padding: 12px 10px 12px 20px;
  margin: 0;
  overflow: hidden;
}
#cart .mm-discount-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 12px 20px;
  line-height: inherit;
}
#cart .mm-listview > li > a.action_button {
  padding: 10px;
  margin: 20px 20px 0 18px;
}

.mm-menu .mm-searchfield {
  margin: 30px 0;
}

.mm-menu .mm-searchfield input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.mm-searchfield input {
  border: none;
  border-radius: 30px;
  font: inherit;
  font-size: 14px;
  line-height: 30px;
  outline: none;
  display: block;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 20px;
}

.mm-listview > li .mm-btn_next {
  border-left: transparent;
}

.mm-menu .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.3);
  display: block;
  text-align: center;
  font-size: 21px;
  padding: 60px 0;
}
.mm-menu .mm-noresultsmsg a {
  color: rgba(255, 255, 255, 0.3);
}

#nav .mm-search ~ .mm-listview {
  padding-top: 25px;
}

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-btn_next),
.mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.05);
}

.mm-fixed-top {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

#nav .mm-panels, #nav .mm-panels > .mm-panel {
  max-width: 80vw;
}

.mm-navbar__title {
  min-height: 100%;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-navbar__title img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.mm-panel, .mm-panels,
.mm-navbar {
  background: inherit;
}

.mm-navbar {
  border-color: inherit;
  color: inherit;
  height: 80px;
}

.mm-panels > .mm-panel > .mm-listview:first-child,
.mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: 20px;
}

.mm-panels,
.mm-panel,
.mm-listview,
.mm-listitem {
  color: inherit;
  border-color: inherit;
}

.social-links-container {
  display: flex;
  justify-content: center;
}
.social-links-container .social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
  margin: 0 0 0 8px;
}

.mm-menu_theme-white {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
  border-left: 1px solid #EEEEEE;
  border-right: 1px solid #EEEEEE;
  border-top: 1px solid #EEEEEE;
}
.mm-menu_theme-white .mm-searchfield input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu_theme-white .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu_theme-white .mm-listview > .mm-listitem_selected > a:not(.mm-next) {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu_theme-white .mm-listview a.mm-subopen:after,
.mm-menu_theme-white .mm-listview a.mm-subclose:before {
  border-color: #888;
}
.mm-menu_theme-white .mm-counter {
  color: #666;
}
.mm-menu_theme-white .contine {
  color: inherit;
}

.mm-menu_theme-white#cart textarea,
.mm-menu_theme-white#cart .quantity {
  border-color: #ddd;
  color: #888;
}

#nav.mm-menu_theme-black {
  background-color: #000;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
#nav.mm-menu_theme-black .mm-listview {
  border-color: rgba(255, 255, 255, 0.2);
}
#nav.mm-menu_theme-black .mm-listview > li .mm-btn_next:after {
  border-color: rgba(255, 255, 255, 0.2);
}
#nav.mm-menu_theme-black .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4);
}

#nav.mm-menu_theme-dark {
  background-color: #333;
}
#nav.mm-menu_theme-dark .mm-listview {
  border-color: rgba(0, 0, 0, 0.15);
}
#nav.mm-menu_theme-dark .mm-listview > li .mm-btn_next:after {
  border-color: rgba(255, 255, 255, 0.4);
}
#nav.mm-menu_theme-dark .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4);
}

/* #jQuery FlexSlider v2.2
================================================== */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav, .flex-direction-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-direction-nav .flex-prev:before {
  font-family: "ootsb" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  line-height: 1em;
  text-decoration: inherit;
  display: inline;
  margin-right: 0.2em;
  text-align: center;
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul.slides li {
  border: none;
  padding: 0;
  margin-bottom: 0;
  position: relative;
}

/* FlexSlider Necessary Styles
*********************************/
html[xmlns] .slides {
  display: block;
}

.flexslider {
  margin: 0;
  padding: 0;
  z-index: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

* html .slides {
  height: 1%;
}

.flexslider .slides img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  position: relative;
  zoom: 1;
  clear: both;
  overflow: hidden;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides .flex-active-slide {
  z-index: 100 !important;
}

.flexslider .slides li {
  text-align: center;
  position: relative;
  z-index: -100 !important;
}

.flexslider-container {
  position: relative;
}

.carousel li {
  margin-right: 5px;
  border: 0;
}

.headline {
  font-family: Figtree, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  margin-bottom: 0.5em;
  line-height: 47px;
  position: relative;
  letter-spacing: 1px;
  color: #ffffff;
}.headline {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.3);
  }.subtitle p {
  font-family: Figtree, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 1.5em;
  position: relative;
  color: #ffffff;
}.subtitle p {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.3);
  }.headline,
.subtitle p {
  pointer-events: none;
}

.align_left .headline, .align_left .subtitle p {
  text-align: left;
}

.align_right .headline, .align_right .subtitle p {
  text-align: right;
}

.flex-direction-nav .flex-prev:before {
  content: initial;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a, .fancybox-next span, .fancybox-prev span {
  width: 60px;
  height: 60px;
  margin: -20px 0 0;
  display: block;
  z-index: 200;
  position: absolute;
  top: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  color: #333;
  text-shadow: 0 0 1px #fff;
}

.flex-direction-nav .flex-next, .fancybox-next span {
  right: -36px;
  text-align: center;
}

.flex-direction-nav .flex-prev, .fancybox-prev span {
  left: -36px;
  text-align: center;
}

.flexslider:hover .flex-next, .fancybox-next:hover span {
  opacity: 0.6;
  right: 15px;
}

.flexslider:hover .flex-prev, .fancybox-prev:hover span {
  opacity: 0.6;
  left: 25px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0.3 !important;
  filter: alpha(opacity=30);
  cursor: default;
}

/* Control Nav */
.flex-control-nav {
  position: absolute;
  bottom: 4%;
  text-align: center;
  width: 100%;
  z-index: 100;
}

.flex-control-nav li {
  margin: 0 0 0 5px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-nav li a {
  width: 6px;
  height: 6px;
  display: inline-block;
  cursor: pointer;
  text-indent: -9999em;
  background: #fff;
  border: 1px solid transparent;
  color: #fff;
  margin: 10px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.flex-control-nav li a.flex-active, .flex-control-nav li a:hover {
  border: 1px solid #fff;
  background: transparent;
  transform: scale(1.5);
}

.flex-control-thumbs {
  width: 100%;
  position: static;
  bottom: -40px;
  text-align: center;
  overflow: hidden;
}
.flex-control-thumbs li {
  zoom: 1;
  width: 16%;
  vertical-align: top;
  margin: 10px 2% 0 2%;
  display: inline-block;
}
.flex-control-thumbs li img {
  width: 100%;
  display: block;
  opacity: 0.3;
  cursor: pointer;
}
.flex-control-thumbs li img:hover {
  opacity: 1;
}
.flex-control-thumbs li .flex-active {
  opacity: 1;
  cursor: default;
}

.product_slider {
  margin-bottom: 1rem;
}

@media(min-width: 798px) {
  .product_slider,
  .product-info {
    position: sticky;
    top: 180px;
  }
}

@media(min-width: 990px) {
  .product_slider,
  .product-info {
    top: 140px;
  }
}

@media(min-width: 1150px) {
  .product_slider,
  .product-info {
    top: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .product-gallery .product-gallery__main .product-gallery__image a,
  .product-gallery .product-gallery__main .product-gallery__image .video__container,
  .product-gallery .product-gallery__main .product-gallery__image .plyr--youtube {
    min-height: 100%;
    max-height: 75vh;
  }
}
@media only screen and (max-width: 480px) {
  .product-gallery .product-gallery__main model-viewer {
    min-height: 300px;
  }
}

.flex-caption {
  pointer-events: none;
}
.flex-caption a.action_button {
  pointer-events: all;
}

/* #Quick shop
================================================== */
.quick-shop {
  display: flex;
  justify-content: space-between;
}
.quick-shop .quick-shop__product-gallery,
.quick-shop .quick-shop__product-description {
  width: calc(50% - 25px);
  position: relative;
}

.quick-shop__product-gallery .product_slider {
  margin-bottom: 0;
}

.quick-shop__lightbox .fancybox-content {
  padding: 2.5rem;
  max-width: 870px;
  background-color: #ffffff;
}
@media only screen and (min-width: 1401px) {
  .quick-shop__lightbox .fancybox-content {
    max-width: 1110px;
  }
}

.product-quickshop {
  background: grey;
}
.product-quickshop section.section,
.product-quickshop #shopify-section-header,
.product-quickshop #shopify-section-footer {
  display: none;
}
.product-quickshop #content_wrapper {
  background: transparent;
}
.product-quickshop .product-quickshop__container {
  padding: 2.5rem;
  position: relative;
  max-width: 870px;
  background-color: #ffffff;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 1401px) {
  .product-quickshop .product-quickshop__container {
    max-width: 1110px;
  }
}

/* #Flickity
================================================== */
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: hsla(0deg, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/* #Product blocks
================================================== */
.product-block--description__link {
  display: flex;
  margin: 1rem 0;
  align-items: center;
}

/* #Product Gallery/Slider Custom Styles
================================================== */
.flickity-viewport {
  width: 100%;
}

.product-gallery:hover .flickity-prev-next-button {
  opacity: 1;
}
.product-gallery .product-gallery__main .flickity-prev-next-button {
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 480px) {
  .product-gallery .product-gallery__main .flickity-prev-next-button {
    opacity: 1;
    top: 100%;
    padding: 0;
    z-index: 30;
    transform: none;
    opacity: 0.5;
    background: none;
  }
  .product-gallery .product-gallery__main .flickity-prev-next-button:hover {
    opacity: 1;
  }
  .product-gallery .product-gallery__main .flickity-prev-next-button .flickity-button-icon {
    height: 30px;
    width: 30px;
    fill: #363636;
  }
  .product-gallery .product-gallery__main .flickity-prev-next-button.next {
    right: 30%;
  }
  .product-gallery .product-gallery__main .flickity-prev-next-button.previous {
    left: 30%;
  }
}
.product-gallery .flickity-page-dots {
  display: none;
}

.product-section__lightbox .fancybox-image {
  padding: 0;
}

/* #Thumbnail Gallery Styles
================================================== */
.product-gallery__thumbnails .product-gallery__thumbnail {
  width: calc(25% - 4px);
  margin: 0 2px;
}
.product-gallery__thumbnails .product-gallery__thumbnail img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.product-gallery__thumbnails.is-slide-nav--true .product-gallery__thumbnail {
  position: relative;
  opacity: 1;
  cursor: grab;
  border: 0.5px solid #EAEAEA;
  box-sizing: border-box;
}

.product-gallery__thumbnails.is-slide-nav--true .product-gallery__thumbnail.is-nav-selected {
  border-color: #FF6F6F;
}
@media screen and (min-width: 580px) {
  .product-gallery__thumbnails.is-slide-nav--true.product-gallery__thumbnails--right-thumbnails, .product-gallery__thumbnails.is-slide-nav--true.product-gallery__thumbnails--left-thumbnails {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }
  .product-gallery__thumbnails.is-slide-nav--true.product-gallery__thumbnails--right-thumbnails::-webkit-scrollbar, .product-gallery__thumbnails.is-slide-nav--true.product-gallery__thumbnails--left-thumbnails::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
  }
}
.product-gallery__thumbnails.is-slide-nav--false {
  flex-wrap: wrap;
}
.product-gallery__thumbnails.is-slide-nav--false.product-gallery__thumbnails--bottom-thumbnails {
  display: flex;
  justify-content: center;
}
.product-gallery__thumbnails.is-slide-nav--false.product-gallery__thumbnails--bottom-thumbnails .product-gallery__thumbnail {
  margin-bottom: 20px;
  line-height: 0;
}
@media screen and (min-width: 580px) {
  .product-gallery__thumbnails.product-gallery__thumbnails--bottom-thumbnails {
    margin-top: 20px;
  }
}
.product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails {
  padding-top: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 580px) {
  .product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails {
    justify-content: flex-start;
    align-self: flex-start;
    display: block;
    width: 100%;
    padding-top: 0;
  }
  .product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail {
    width: 100%;
    margin: 0;
  }
  .product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail:last-child, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail:last-child {
    margin-bottom: 0;
  }
  .product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail:before, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail:before {
    line-height: 0;
    color: transparent;
    display: block;
    text-align: center;
    content: counter(carousel-cell);
  }
}
@media screen and (max-width: 580px) {
  .product-gallery__thumbnails {
    padding-top: 0px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 580px) {
  .product-gallery__thumbnails--true.product-gallery--right-thumbnails:not(.product-gallery--media-amount-1), .product-gallery__thumbnails--true.product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) {
    display: flex;
  }
  .product-gallery__thumbnails--true.product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__main, .product-gallery__thumbnails--true.product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__main {
    width: 80%;
    height: 100%;
  }
  .product-gallery__thumbnails--true.product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails, .product-gallery__thumbnails--true.product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails {
    width: 10%;
    margin-left: 20px;
  }
  .product-gallery__thumbnails--true.product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnail, .product-gallery__thumbnails--true.product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnail {
    width: 100%;
    margin-bottom: 10px;
  }
  .product-gallery__thumbnails--true.product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnail:last-child, .product-gallery__thumbnails--true.product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnail:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 580px) {
  .product-gallery__thumbnails--true.product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails {
    margin-left: 0;
  }
}
@media screen and (min-width: 580px) {
  .product-gallery__thumbnails--true.product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__main {
    order: 2;
  }
  .product-gallery__thumbnails--true.product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails {
    margin-right: 20px;
    order: 1;
  }
}

@media screen and (max-width: 580px) {
  .product-gallery__thumbnails--false {
    margin-bottom: 3em;
  }
}

@media screen and (min-width: 580px) {
  .product-gallery.display-arrows--false .flickity-viewport:hover .flickity-prev-next-button,
  .product-gallery.display-arrows--false .flickity-prev-next-button {
    display: none !important;
  }
}

.product-gallery__main,
.product-gallery__thumbnails.is-slide-nav--true {
  opacity: 0;
  transition: ease-in-out 0.2s opacity;
}
.product-gallery__main.flickity-enabled, .product-gallery__main.vertical-slider-enabled, .no-js .product-gallery__main,
.product-gallery__thumbnails.is-slide-nav--true.flickity-enabled,
.product-gallery__thumbnails.is-slide-nav--true.vertical-slider-enabled,
.no-js .product-gallery__thumbnails.is-slide-nav--true {
  opacity: 1;
}

.product-gallery__image {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .product-gallery__image .image__container {
    display: flex;
    max-height: 75vh;
  }
}
.product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 480px) {
  .product-gallery__image img {
    object-fit: contain;
  }
}
.no-js .product-gallery__image img {
  display: none;
}
.no-js .product-gallery__image noscript img {
  display: block;
}

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

.product-gallery__link {
  display: block;
}

.product-gallery__image .product-gallery__link,
.product-gallery__image model-viewer {
  width: 100%;
  margin: 0 auto;
}
.product-gallery__image .product-gallery__link:focus,
.product-gallery__image model-viewer:focus {
  outline: #025ECC auto 5px;
}

.slideshow-transition--fade .product-gallery__main .flickity-slider {
  transform: none !important;
}
.slideshow-transition--fade .product-gallery__main .product-gallery__image {
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.slideshow-transition--fade .product-gallery__main .product-gallery__image.is-selected {
  opacity: 1;
  z-index: 0;
}

.product_section.media-position--right {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .product_section.media-position--left,
  .product_section.media-position--right {
    flex-direction: column;
  }
}

/* #Content Creator
================================================== */
.flickity-slider > li {
  list-style-type: none;
  width: 100%;
  text-align: center;
}

.flexslider .flickity-prev-next-button {
  opacity: 0;
  background: transparent;
  border: 1px solid #333;
}
.flexslider:hover .flickity-prev-next-button.previous {
  opacity: 0.6;
  left: 25px;
}
.flexslider:hover .flickity-prev-next-button.next {
  opacity: 0.6;
  right: 15px;
}
.flexslider:hover .flickity-prev-next-button:hover {
  opacity: 1;
}
.flexslider .flickity-prev-next-button.arrow-is-inverse .flickity-button-icon {
  transform: scale(-1, 1);
}

/* #Fancybox
================================================== */
.fancybox-bg {
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.1s linear;
}

.fancybox-toolbar {
  display: none;
}

.fancybox-content {
  position: relative;
  width: 90%;
  background-color: #ffffff;
  color: #363636;
  text-shadow: none;
}

.collection .fancybox-content {
  width: 95%;
  height: 95%;
  margin: 0px;
} 

body.fancybox-active {
  overflow: hidden;
}

.collection .fancybox-slide {
  padding: 0px;
}

.collection .fancybox-close {
  top: 32px;
  right: 26px;
}

.collection .fancybox-close:before {
  color: #1A1A1A;
  content: '';
  display: block;
  background-image: url('/cdn/shop/files/Vector_14.svg?v=1724224197');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
}

.collection .fancybox-content .sidebar__block-heading.toggle {
  margin: 0px;
  padding: 12px 0px !important;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 150%;
  letter-spacing: -0.018px;
  text-transform: initial;
  font-family: 'Satoshi-Variable',sans-serif;
}

.fancybox-is-open {
  z-index: 100000;
}
.fancybox-is-open .fancybox-content {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.fancybox-content {
  padding: 45px 22px
}
/* Add border around images */
.fancybox-image {
  padding: 15px;
  background-color: #fff;
}

/* Style close button */
.fancybox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  line-height: 1;
  z-index: 8040;
  color: #363636;
}

/* Style navigation elements */
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
  color: #333;
  text-shadow: 0 0 1px #fff;
}
.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}
.fancybox-next:hover span {
  margin-right: 10px;
}

/* #Plyr
================================================== */
@keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  direction: ltr;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
}

.plyr audio, .plyr video {
  border-radius: inherit;
  height: auto;
  vertical-align: middle;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *, .plyr--full-ui ::after, .plyr--full-ui ::before {
  box-sizing: inherit;
}

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5764;
  border-radius: 2px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__captions .plyr__caption div {
  display: inline;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .toggle-all--true h4.toggle {
    text-transform: capitalize;
    font-family: 'Avenir Next';
    font-weight:700;
    letter-spacing:0;
    position:relative;
}
  .toggle span {
   text-align:right;
    width:100%;
    position:absolute;
  }
  .plyr__captions {
    font-size: 18px;
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px;
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

a.plyr__control {
  text-decoration: none;
}

a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed {
  display: none;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: #fff;
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: #fff;
}

.plyr__control--overlaid {
  background: rgba(0, 179, 255, 0.8);
  border: 0;
  border-radius: 100%;
  color: #fff;
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  background: #00b3ff;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr__controls .plyr__controls__item.plyr__volume {
  padding-right: 5px;
}

.plyr__controls .plyr__controls__item.plyr__volume:first-child {
  padding-right: 0;
}

.plyr__controls:empty {
  display: none;
}

.plyr--audio .plyr__controls {
  background: #fff;
  border-radius: inherit;
  color: #4a5764;
  padding: 10px;
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px;
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr [data-plyr=airplay], .plyr [data-plyr=captions], .plyr [data-plyr=fullscreen], .plyr [data-plyr=pip] {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay], .plyr--captions-enabled [data-plyr=captions], .plyr--fullscreen-enabled [data-plyr=fullscreen], .plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 16px;
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: "";
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
}

.plyr__menu__container [role=menuitem], .plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child, .plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5764;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(74, 87, 100, 0.8);
  right: 5px;
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: calc(100% - 14px);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(74, 87, 100, 0.8);
  left: 7px;
}

.plyr__menu__container .plyr__control--back::before {
  background: #c1c9d1;
  box-shadow: 0 1px 0 #fff;
  content: "";
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after, .plyr__menu__container .plyr__control[role=menuitemradio]::before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #00b3ff;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  color: #00b3ff;
  display: block;
  height: 19px;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  -webkit-appearance: none;
  margin-top: -4px;
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  height: 5px;
}

.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  margin-top: 0;
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr__time {
  font-size: 14px;
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: 10px;
}

@media (max-width: 767px) {
  .mm-listview .icon-facebook:before, .mm-listview .icon-phone:before {
    opacity: .7
  }
    .toggle-all--true h4.toggle {
    text-transform: capitalize;
    font-family: 'Avenir Next';
    font-weight:700;
    letter-spacing:0;
    position:relative;
}
  .toggle span {
   text-align:right;
    width:100%;
    position:absolute;
  }
  .sidebar__block-heading.toggle {
    position:relative
  }
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0, 0) scale(1);
}

.plyr--video {
  background: #000;
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%;
}

.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr__progress {
  left: 6.5px;
  margin-right: 13px;
  position: relative;
}

.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -6.5px;
  margin-right: -6.5px;
  width: calc(100% + 13px);
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 5px;
  left: 0;
  margin-top: -2.5px;
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--video .plyr__progress__buffer {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25);
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 201, 209, 0.66);
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 41, 47, 0.6) 25%, transparent 25%, transparent 50%, rgba(35, 41, 47, 0.6) 50%, rgba(35, 41, 47, 0.6) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr__volume {
  align-items: center;
  display: flex;
  flex: 1;
  position: relative;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px;
  }
}
@media (min-width: 768px) {
  .plyr__volume {
    max-width: 110px;
  }
}
.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important;
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-moz-full-screen video {
  height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div, .plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads::after {
  background: rgba(35, 41, 47, 0.8);
  border-radius: 2px;
  bottom: 10px;
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3;
}

.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  left: 0;
  margin: -2.5px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c9d1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

/* #Model Viewer
================================================== */
.shopify-model-viewer-ui {
  position: relative;
  display: block;
  cursor: pointer;
}

.shopify-model-viewer-ui model-viewer {
  transform: translateZ(0);
  z-index: 1;
}

.shopify-model-viewer-ui model-viewer.shopify-model-viewer-ui__disabled {
  pointer-events: none;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen model-viewer {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: block;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: none;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--desktop.shopify-model-viewer-ui--child-focused .shopify-model-viewer-ui__controls-area, .shopify-model-viewer-ui.shopify-model-viewer-ui--desktop:hover .shopify-model-viewer-ui__controls-area {
  opacity: 1;
}

.shopify-model-viewer-ui:not(.shopify-model-viewer-ui--desktop) .shopify-model-viewer-ui__controls-area {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  display: flex;
  flex-direction: column;
  background: #fff;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  transition: opacity 0.1s linear;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area:not(.shopify-model-viewer-ui__controls-area--playing) {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #3a3a3a;
  border-radius: 0;
  border: none;
  margin: 0;
  cursor: pointer;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button:not(.focus-visible) {
  outline: 0;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control {
  padding: 0;
  height: 44px;
  width: 44px;
  background: 0 0;
  position: relative;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
  color: rgba(0, 0, 0, 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active {
  color: rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.05);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  position: absolute;
  content: "";
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 28px;
  bottom: 0;
  right: 8px;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon {
  width: 44px;
  height: 44px;
  fill: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  background: #fff;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 0;
  transform: translate3d(-50%, -50%, 0);
  height: 62px;
  width: 62px;
  z-index: 1;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover {
  color: rgba(0, 0, 0, 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__poster-control-icon {
  width: 60px;
  height: 60px;
  z-index: 1;
  fill: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: block;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__spritesheet {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* #Product Media Custom Styles
================================================== */

  
.model__container {
  position: relative;
}
.model__container model-viewer {
  min-height: 300px;
}

.model__container--first-media {
  min-height: 300px;
}

.view-in-your-space {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  background: #e6e6e6;
  color: #363636;
  font: inherit;
  text-transform: none;
  border-radius: 0px;
  margin-top: 0;
}
.view-in-your-space:active, .view-in-your-space:focus, .view-in-your-space:hover {
  background: #e6e6e6;
  color: #363636;
}
.view-in-your-space svg {
  width: auto;
  height: auto;
  margin: 0;
}
.view-in-your-space svg path:first-child {
  stroke: #363636;
}
.view-in-your-space svg path:last-child {
  fill: #363636;
}

.plyr--video .plyr__controls {
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
}
.plyr--video .plyr__control {
  background: transparent;
  color: #363636;
}
.plyr--video .plyr__control:hover {
  background: #ffffff;
  color: #363636;
}
.plyr--video .plyr__controls__item.plyr__time,
.plyr--video input[type=range],
.plyr--video .plyr__controls__item {
  color: #363636;
}
.plyr--video .plyr__progress input[type=range] + .thumb {
  background-color: #363636;
  color: #363636;
}
.plyr--video input[type=range]::-webkit-slider-thumb {
  background-color: #363636;
}
.plyr--video input[type=range]::-moz-range-thumb {
  background-color: #363636;
}
.plyr--video input[type=range]::-ms-thumb {
  background-color: #363636;
}
.plyr--video .plyr__progress__buffer,
.plyr--video .plyr__control[aria-expanded=true] {
  background-color: rgba(54, 54, 54, 0.6);
}
.plyr--video .plyr__control.plyr__tab-focus {
  background-color: #363636;
}
.plyr--video .plyr__control--overlaid {
  background: #ffffff;
  padding: 4px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.plyr--video .plyr__control--overlaid svg {
  left: auto;
}
.plyr--video .plyr__control--overlaid:hover {
  background: #ffffff;
}
.plyr--video .plyr__control--overlaid:hover .play-icon-button-control rect {
  opacity: 0.75;
}
.plyr--video .plyr__control .play-icon-button-control {
  width: 52px;
  height: 52px;
}
.plyr--video .plyr__control .play-icon-button-control rect {
  fill: #ffffff;
}
.plyr--video .plyr__control .play-icon-button-control path {
  fill: #363636;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-right: 10px;
  padding-left: 10px;
}

.plyr--full-ui .plyr__volume {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  bottom: 105px;
  height: 40px;
  opacity: 0;
  padding: 10px 15px !important;
  position: absolute;
  transform: rotate(270deg);
  transition: visibility 0.4s linear 0.4s, opacity 0.4s linear 0.3s;
  width: 140px;
}
.plyr--full-ui .plyr__volume:before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.25);
  bottom: 18px;
  content: "";
  left: -6px;
  position: absolute;
  transform: rotate(90deg);
  z-index: 2;
}
.plyr--full-ui .plyr__volume:hover {
  opacity: 1;
  visibility: visible;
}
.plyr--full-ui .plyr__volume.plyr__volume--is-visible {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}
.plyr--full-ui .plyr__volume input[type=range] {
  color: #363636;
  margin: 0 auto;
}

.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-thumb {
  box-shadow: none;
}

.plyr--full-ui .plyr__volume input[type=range]::-ms-fill-upper,
.plyr--full-ui .plyr__volume input[type=range]::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-ms-thumb {
  box-shadow: none;
}

.plyr--audio .plyr--full-ui .plyr__volume {
  bottom: 125px;
  right: -37px;
}

.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr__control[data-plyr=mute]:hover + .plyr__volume {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}

@media (min-width: 480px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 90px;
  }
}
@media (min-width: 750px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 110px;
  }
}
@media only screen and (max-width: 989px) {
  .plyr--is-touch .plyr__volume {
    display: none !important;
  }
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #363636;
  background: #ffffff;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button[hidden] {
  display: none;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
  color: rgba(54, 54, 54, 0.55);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: #ffffff;
  border: 1px solid rgba(54, 54, 54, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-bottom: 1px solid rgba(54, 54, 54, 0.05);
}

.video-on-hover .plyr__controls,
.video-on-hover .plyr__control--overlaid,
.video-controls-enabled--false .plyr__controls,
.video-controls-enabled--false .plyr__control--overlaid {
  opacity: 0;
}
.video-on-hover .plyr__controls > *,
.video-on-hover .plyr__control--overlaid > *,
.video-controls-enabled--false .plyr__controls > *,
.video-controls-enabled--false .plyr__control--overlaid > * {
  pointer-events: none;
  cursor: auto;
}

.plyr.plyr--stopped .plyr__controls {
  display: none;
}

.product_slider.product-height-set model-viewer {
  margin: 0 auto;
}
.product_slider.product-height-set .product-gallery__main img,
.product_slider.product-height-set .product-gallery__main .plyr--html5 video {
  width: 100%;
}
.product_slider.product-height-set .product-gallery__main img {
  object-fit: contain;
  max-width: 80%;
  max-height: 100vh !important;
}
.product_slider.product-height-set .product-gallery__main .plyr--youtube .plyr__video-embed {
  height: 100%;
}

.product-gallery__thumbnails .product-gallery__thumbnail {
  position: relative;
}
.product-gallery__thumbnails .product-gallery__thumbnail img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.product-gallery__thumbnails .media-badge {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 33%;
  max-height: 33%;
  min-width: 20px;
  width: 25px;
  height: 25px;
}
.product-gallery__thumbnails .media-badge svg {
  width: 100%;
  height: 100%;
}
.product-gallery__thumbnails .media-badge path:first-child {
  fill: #ffffff;
}
.product-gallery__thumbnails .media-badge path:last-child {
  fill: #363636;
}
.product-gallery__thumbnails .media-badge g path:first-child {
  stroke: #363636;
}
.product-gallery__thumbnails .media-badge .media-badge__outline {
  stroke: rgba(54, 54, 54, 0.55);
}

/* Newsletter */
.js-newsletter-popup {
  display: none;
}

.newsletter_popup .js-newsletter-popup .contact-form {
  overflow: hidden;
  margin-bottom: 0;
}
.newsletter_popup .js-newsletter-popup .newsletter-popup__content {
  max-height: 90vh;
  overflow-y: auto;
}

.newsletter {
  max-width: 640px;
  display: inline-block;
  width: 100%;
}

.footer .newsletter {
  max-width: 100%;
}

.text-align--center .newsletter {
  margin: 0 auto;
}

.newsletter input {
  height: 44px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 798px) {
  .newsletter input {
    margin-right: 0;
  }
}

@media only screen and (max-width: 798px) {
  .newsletter .last-name {
    margin-top: 0;
  }
}

.text-align--center .newsletter {
  margin: 0 auto;
}

.newsletter_popup .js-newsletter-popup,
.newsletter_popup .js-newsletter-popup p.headline,
.newsletter_popup .js-newsletter-popup a,
.newsletter_popup .js-newsletter-popup a:visited {
  color: #363636;
}

.newsletter_popup .newsletter {
  margin-bottom: 0;
}

.newsletter_popup .newsletter {
  display: block;
  margin: 0px auto;
}
.newsletter_popup .newsletter .input-row {
  width: auto;
}

.newsletter_popup .js-newsletter-popup {
  background-color: #ded7c3;
  max-width: 560px;
}
.newsletter_popup .js-newsletter-popup.newsletter-popup__has-background-image {
  background: #ded7c3 url(//thehappywife.com/cdn/shopifycloud/shopify/assets/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c_1200x.gif) center center;
  background-color: transparent;
}
.newsletter_popup .js-newsletter-popup.newsletter-popup__has-background-stretched {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.newsletter_popup .fancybox-close {
  color: #363636 !important;
}

.shopify-challenge__container {
  padding: 150px 0;
}

[data-slideshow-animation=zoom] img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: zoom-in;
}

/* #Currency / Language switcher
================================================== */
.selectors-form__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 798px) {
  .selectors-form__wrap {
    margin-bottom: 10px;
    width: 100%;
  }
}

.selectors-form summary {
  list-style: none;
}
.selectors-form summary::-webkit-details-marker {
  display: none;
}

.no-js .selectors-form--no-js-hidden {
  display: none;
}

.disclosure {
  position: relative;
}
.no-js .disclosure {
  position: initial;
}

.disclosure-text-style-none button.disclosure__toggle,
.disclosure-text-style-none button.disclosure__button {
  text-transform: capitalize;
}

.disclosure-text-style-uppercase button.disclosure__toggle,
.disclosure-text-style-uppercase button.disclosure__button {
  text-transform: uppercase;
}

.disclosure-text-style-lowercase button.disclosure__toggle,
.disclosure-text-style-lowercase button.disclosure__button {
  text-transform: lowercase;
}

.disclosure__toggle {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  color: #000;
  font-family: Figtree, sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  margin-bottom: 10px;
  margin-top: 5px;
  padding: 10px;
  position: relative;
  z-index: 2;
}
.no-js .disclosure__toggle {
  pointer-events: none;
}
.disclosure__toggle:active {
  box-shadow: none;
}
.disclosure__toggle.is-clicked, .disclosure__toggle:focus, .disclosure__toggle:hover {
  background-color: #fff;
  color: gray;
}
.disclosure__toggle.is-clicked + .disclosure__list-wrap {
  display: block;
}
.disclosure__toggle .icon-arrow-down {
  margin-left: 10px;
  margin-right: 0;
  pointer-events: none;
}

.disclosure__details {
  position: relative;
}

.disclosure-list__item--radio {
  margin: 0;
}
.disclosure-list__item--radio + .disclosure-list__item--label {
  height: 100%;
  color: #363636;
  word-break: keep-all;
  margin-left: 5px;
  margin-bottom: 0;
  padding: 0;
}

.disclosure__submit {
  margin: 1rem 0;
}

.disclosure-list__item-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.disclosure-list__item-wrapper:first-child {
  margin-top: 0;
}

.disclosure__list-wrap {
  bottom: 100%;
  display: none;
  position: absolute;
  z-index: 3;
  min-width: 92px;
}
.disclosure__list-wrap.disclosure--left {
  right: 0;
}
[open] .disclosure__list-wrap {
  display: block;
  width: max-content;
}

.disclosure-list {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
  padding: 10px 10px 0;
  max-height: 400px;
  overflow-y: auto;
}
.no-js .disclosure-list {
  padding: 0.75rem !important;
}

.disclosure-list__item {
  line-height: 1;
  margin-bottom: 10px;
}

button.disclosure__button {
  background-color: transparent;
  color: #000;
  font-family: Figtree, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
  text-align: left;
  padding: 8px 0;
}
button.disclosure__button:hover, button.disclosure__button:focus, button.disclosure__button[aria-current=true] {
  color: #fa7268;
}

/* # Grid/layout
================================================== */
.index {
  display: flex;
  flex-wrap: wrap;
}

.index-sections,
.page-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.index-sections .shopify-section:first-child > .section > .container {
  padding-top: 0;
}

.shopify-section {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .shopify-section {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.section {
  max-width: 1200px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.section.is-width-wide {
  width: 100%;
  max-width: none;
}

.container {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.container .column,
.container .columns {
  margin-left: calc(20px / 2);
  margin-right: calc(20px / 2);
}

/* Global product wrapper */
/* Applied specifically to the product page */
.global-wrapper__product {
  position: relative;
  max-width: 1350px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}
.global-wrapper__product .section.is-width-wide {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .row .column,
  .row .columns {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

[class*=offset-by] {
  position: relative;
}

/*================ Build Base Grid Classes ================*/
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.one {
  width: calc(6.25% - 20px);
}

.two {
  width: calc(12.5% - 20px);
}

.three {
  width: calc(18.75% - 20px);
}

.four {
  width: calc(25% - 20px);
}

.five {
  width: calc(31.25% - 20px);
}

.six {
  width: calc(37.5% - 20px);
}

.seven {
  width: calc(43.75% - 20px);
}

.eight {
  width: calc(50% - 20px);
}

.nine {
  width: calc(56.25% - 20px);
}

.ten {
  width: calc(62.5% - 20px);
}

.eleven {
  width: calc(68.75% - 20px);
}

.twelve {
  width: calc(75% - 20px);
}

.thirteen {
  width: calc(81.25% - 20px);
}

.fourteen {
  width: calc(87.5% - 20px);
}

.fifteen {
  width: calc(93.75% - 20px);
}

.sixteen {
  width: calc(100% - 20px);
}

.one-whole {
  width: calc(100% - 20px);
}

.one-half {
  width: calc(50% - 20px);
}

.one-third {
  width: calc(33.3333333333% - 20px);
}

.two-thirds {
  width: calc(66.6666666667% - 20px);
}

.one-fourth {
  width: calc(25% - 20px);
}

.two-fourths {
  width: calc(50% - 20px);
}

.three-fourths {
  width: calc(75% - 20px);
}

.one-fifth {
  width: calc(20% - 20px);
}

.two-fifths {
  width: calc(40% - 20px);
}

.three-fifths {
  width: calc(60% - 20px);
}

.four-fifths {
  width: calc(80% - 20px);
}

.one-sixth {
  width: calc(16.6666666667% - 20px);
}

.two-sixths {
  width: calc(33.3333333333% - 20px);
}

.three-sixths {
  width: calc(50% - 20px);
}

.four-sixths {
  width: calc(66.6666666667% - 20px);
}

.five-sixths {
  width: calc(83.3333333333% - 20px);
}

.one-seventh {
  width: calc(14.2857142857% - 20px);
}

.two-sevenths {
  width: calc(28.5714285714% - 20px);
}

.three-sevenths {
  width: calc(42.8571428571% - 20px);
}

.four-sevenths {
  width: calc(57.1428571429% - 20px);
}

.five-sevenths {
  width: calc(71.4285714286% - 20px);
}

.one-eighth {
  width: calc(12.5% - 20px);
}

.two-eighths {
  width: calc(25% - 20px);
}

.three-eighths {
  width: calc(37.5% - 20px);
}

.four-eighths {
  width: calc(50% - 20px);
}

.five-eighths {
  width: calc(62.5% - 20px);
}

.six-eighths {
  width: calc(75% - 20px);
}

.seven-eighths {
  width: calc(87.5% - 20px);
}

.one-tenth {
  width: calc(10% - 20px);
}

.two-tenths {
  width: calc(20% - 20px);
}

.three-tenths {
  width: calc(30% - 20px);
}

.four-tenths {
  width: calc(40% - 20px);
}

.five-tenths {
  width: calc(50% - 20px);
}

.six-tenths {
  width: calc(60% - 20px);
}

.seven-tenths {
  width: calc(70% - 20px);
}

.eight-tenths {
  width: calc(80% - 20px);
}

.nine-tenths {
  width: calc(90% - 20px);
}

.one-twelfth {
  width: calc(8.3333333333% - 20px);
}

.two-twelfths {
  width: calc(16.6666666667% - 20px);
}

.three-twelfths {
  width: calc(25% - 20px);
}

.four-twelfths {
  width: calc(33.3333333333% - 20px);
}

.five-twelfths {
  width: calc(41.6666666667% - 20px);
}

.six-twelfths {
  width: calc(50% - 20px);
}

.seven-twelfths {
  width: calc(58.3333333333% - 20px);
}

.eight-twelfths {
  width: calc(66.6666666667% - 20px);
}

.nine-twelfths {
  width: calc(75% - 20px);
}

.ten-twelfths {
  width: calc(83.3333333333% - 20px);
}

.eleven-twelfths {
  width: calc(91.6666666667% - 20px);
}

.offset-by-one {
  left: calc(6.25%);
}

.offset-by-two {
  left: calc(12.5%);
}

.offset-by-three {
  left: calc(18.75%);
}

.offset-by-four {
  left: calc(25%);
}

.offset-by-five {
  left: calc(31.25%);
}

.offset-by-six {
  left: calc(37.5%);
}

.offset-by-seven {
  left: calc(43.75%);
}

.offset-by-eight {
  left: calc(50%);
}

.offset-by-nine {
  left: calc(56.25%);
}

.offset-by-ten {
  left: calc(62.5%);
}

.offset-by-eleven {
  left: calc(68.75%);
}

.offset-by-twelve {
  left: calc(75%);
}

.offset-by-thirteen {
  left: calc(81.25%);
}

.offset-by-fourteen {
  left: calc(87.5%);
}

.offset-by-fifteen {
  left: calc(93.75%);
}

.equal-columns--outside-trim .one-half:nth-of-type(2n),
.equal-columns--outside-trim .eight:nth-of-type(2n),
.equal-columns--outside-trim .one-third:nth-of-type(3n),
.equal-columns--outside-trim .one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .four:nth-of-type(4n),
.equal-columns--outside-trim .one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .two:nth-of-type(8n) {
  margin-right: 0;
}
.equal-columns--outside-trim .one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .eight:nth-of-type(2n+1),
.equal-columns--outside-trim .one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .four:nth-of-type(4n+1),
.equal-columns--outside-trim .one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .two:nth-of-type(8n+1) {
  margin-left: 0;
}
.equal-columns--outside-trim .one-whole:nth-of-type(1n+1) {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.equal-columns--outside-trim .one-half {
  width: calc(50% - (20px - (20px / 2)));
}
.equal-columns--outside-trim .one-third {
  width: calc(33.3333333333% - (20px - (20px / 3)));
}
.equal-columns--outside-trim .one-fifth {
  width: calc(20% - (20px - (20px / 5)));
}
.equal-columns--outside-trim .one-fourth {
  width: calc(25% - (20px - (20px / 4)));
}
.equal-columns--outside-trim .one-sixth {
  width: calc(16.6666666667% - (20px - (20px / 6)));
}
.equal-columns--outside-trim .one-seventh {
  width: calc(14.2857142857% - (20px - (20px / 7)));
}
.equal-columns--outside-trim .two {
  width: calc(12.5% - (20px - (20px / 8)));
}
.equal-columns--outside-trim .four {
  width: calc(25% - (20px - (20px / 4)));
}
.equal-columns--outside-trim .seven {
  width: calc(43.75% - (20px - (20px / 2)));
}
.equal-columns--outside-trim .eight {
  width: calc(50% - (20px / 2));
}
.equal-columns--outside-trim .nine {
  width: calc(56.25% - (20px - (20px / 2)));
}

.has-no-side-gutter.has-background {
  padding-right: 0px;
  padding-left: 0px;
}
.has-no-side-gutter .one-whole,
.has-no-side-gutter .one-half,
.has-no-side-gutter .eight,
.has-no-side-gutter .one-third,
.has-no-side-gutter .two-thirds,
.has-no-side-gutter .one-fourth,
.has-no-side-gutter .four,
.has-no-side-gutter .one-fifth,
.has-no-side-gutter .three-fifths,
.has-no-side-gutter .two-fifths,
.has-no-side-gutter .one-sixth,
.has-no-side-gutter .one-seventh,
.has-no-side-gutter .one-eighth,
.has-no-side-gutter .two {
  margin-right: 0;
  margin-left: 0;
}
.has-no-side-gutter .one-whole {
  width: 100%;
}
.has-no-side-gutter .one-half {
  width: 50%;
}
.has-no-side-gutter .one-third {
  width: 33.3333333333%;
}
.has-no-side-gutter .one-fourth {
  width: 25%;
}
.has-no-side-gutter .one-fifth {
  width: 20%;
}
.has-no-side-gutter .two-fifths {
  width: 40%;
}
.has-no-side-gutter .three-fifths {
  width: 60%;
}
.has-no-side-gutter .one-sixth {
  width: 16.6666666667%;
}
.has-no-side-gutter .one-seventh {
  width: 14.2857142857%;
}
.has-no-side-gutter .one-eighth {
  width: 12.5%;
}
.has-no-side-gutter .two-thirds {
  width: 66.6666666667%;
}
.has-no-side-gutter .two {
  width: 12.5%;
}
.has-no-side-gutter .four {
  width: 25%;
}
.has-no-side-gutter .seven {
  width: 43.75%;
}
.has-no-side-gutter .eight {
  width: 50%;
}
.has-no-side-gutter .nine {
  width: 56.25%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

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

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

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

/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 1024px) {
  .large-down--hidden {
    display: none !important;
  }
  .large-down--visible {
    display: block !important;
  }
  .large-down--one {
    width: calc(6.25% - 20px);
  }
  .large-down--two {
    width: calc(12.5% - 20px);
  }
  .large-down--three {
    width: calc(18.75% - 20px);
  }
  .large-down--four {
    width: calc(25% - 20px);
  }
  .large-down--five {
    width: calc(31.25% - 20px);
  }
  .large-down--six {
    width: calc(37.5% - 20px);
  }
  .large-down--seven {
    width: calc(43.75% - 20px);
  }
  .large-down--eight {
    width: calc(50% - 20px);
  }
  .large-down--nine {
    width: calc(56.25% - 20px);
  }
  .large-down--ten {
    width: calc(62.5% - 20px);
  }
  .large-down--eleven {
    width: calc(68.75% - 20px);
  }
  .large-down--twelve {
    width: calc(75% - 20px);
  }
  .large-down--thirteen {
    width: calc(81.25% - 20px);
  }
  .large-down--fourteen {
    width: calc(87.5% - 20px);
  }
  .large-down--fifteen {
    width: calc(93.75% - 20px);
  }
  .large-down--sixteen {
    width: calc(100% - 20px);
  }
  .large-down--one-whole {
    width: calc(100% - 20px);
  }
  .large-down--one-half {
    width: calc(50% - 20px);
  }
  .large-down--one-third {
    width: calc(33.3333333333% - 20px);
  }
  .large-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }
  .large-down--one-fourth {
    width: calc(25% - 20px);
  }
  .large-down--two-fourths {
    width: calc(50% - 20px);
  }
  .large-down--three-fourths {
    width: calc(75% - 20px);
  }
  .large-down--one-fifth {
    width: calc(20% - 20px);
  }
  .large-down--two-fifths {
    width: calc(40% - 20px);
  }
  .large-down--three-fifths {
    width: calc(60% - 20px);
  }
  .large-down--four-fifths {
    width: calc(80% - 20px);
  }
  .large-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }
  .large-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }
  .large-down--three-sixths {
    width: calc(50% - 20px);
  }
  .large-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }
  .large-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }
  .large-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }
  .large-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }
  .large-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }
  .large-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }
  .large-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }
  .large-down--one-eighth {
    width: calc(12.5% - 20px);
  }
  .large-down--two-eighths {
    width: calc(25% - 20px);
  }
  .large-down--three-eighths {
    width: calc(37.5% - 20px);
  }
  .large-down--four-eighths {
    width: calc(50% - 20px);
  }
  .large-down--five-eighths {
    width: calc(62.5% - 20px);
  }
  .large-down--six-eighths {
    width: calc(75% - 20px);
  }
  .large-down--seven-eighths {
    width: calc(87.5% - 20px);
  }
  .large-down--one-tenth {
    width: calc(10% - 20px);
  }
  .large-down--two-tenths {
    width: calc(20% - 20px);
  }
  .large-down--three-tenths {
    width: calc(30% - 20px);
  }
  .large-down--four-tenths {
    width: calc(40% - 20px);
  }
  .large-down--five-tenths {
    width: calc(50% - 20px);
  }
  .large-down--six-tenths {
    width: calc(60% - 20px);
  }
  .large-down--seven-tenths {
    width: calc(70% - 20px);
  }
  .large-down--eight-tenths {
    width: calc(80% - 20px);
  }
  .large-down--nine-tenths {
    width: calc(90% - 20px);
  }
  .large-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }
  .large-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }
  .large-down--three-twelfths {
    width: calc(25% - 20px);
  }
  .large-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }
  .large-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }
  .large-down--six-twelfths {
    width: calc(50% - 20px);
  }
  .large-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }
  .large-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }
  .large-down--nine-twelfths {
    width: calc(75% - 20px);
  }
  .large-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }
  .large-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }
  .large-down--offset-by-one {
    left: calc(6.25%);
  }
  .large-down--offset-by-two {
    left: calc(12.5%);
  }
  .large-down--offset-by-three {
    left: calc(18.75%);
  }
  .large-down--offset-by-four {
    left: calc(25%);
  }
  .large-down--offset-by-five {
    left: calc(31.25%);
  }
  .large-down--offset-by-six {
    left: calc(37.5%);
  }
  .large-down--offset-by-seven {
    left: calc(43.75%);
  }
  .large-down--offset-by-eight {
    left: calc(50%);
  }
  .large-down--offset-by-nine {
    left: calc(56.25%);
  }
  .large-down--offset-by-ten {
    left: calc(62.5%);
  }
  .large-down--offset-by-eleven {
    left: calc(68.75%);
  }
  .large-down--offset-by-twelve {
    left: calc(75%);
  }
  .large-down--offset-by-thirteen {
    left: calc(81.25%);
  }
  .large-down--offset-by-fourteen {
    left: calc(87.5%);
  }
  .large-down--offset-by-fifteen {
    left: calc(93.75%);
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n),
  .equal-columns--outside-trim .large-down--eight:nth-of-type(2n),
  .equal-columns--outside-trim .large-down--one-third:nth-of-type(3n),
  .equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n),
  .equal-columns--outside-trim .large-down--four:nth-of-type(4n),
  .equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n),
  .equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n),
  .equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n),
  .equal-columns--outside-trim .large-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n+1),
  .equal-columns--outside-trim .large-down--eight:nth-of-type(2n+1),
  .equal-columns--outside-trim .large-down--one-third:nth-of-type(3n+1),
  .equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n+1),
  .equal-columns--outside-trim .large-down--four:nth-of-type(4n+1),
  .equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n+1),
  .equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n+1),
  .equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n+1),
  .equal-columns--outside-trim .large-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-half.large-down--one-half,
  .equal-columns--outside-trim .large-down--eight.large-down--eight,
  .equal-columns--outside-trim .large-down--one-third.large-down--one-third,
  .equal-columns--outside-trim .large-down--one-fourth.large-down--one-fourth,
  .equal-columns--outside-trim .large-down--four.large-down--four,
  .equal-columns--outside-trim .large-down--one-fifth.large-down--one-fifth,
  .equal-columns--outside-trim .large-down--one-sixth.large-down--one-sixth,
  .equal-columns--outside-trim .large-down--one-seventh.large-down--one-seventh,
  .equal-columns--outside-trim .large-down--two.large-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n),
  .equal-columns--outside-trim .large-down--eight:nth-of-type(2n),
  .equal-columns--outside-trim .large-down--one-third:nth-of-type(3n),
  .equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n),
  .equal-columns--outside-trim .large-down--four:nth-of-type(4n),
  .equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n),
  .equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n),
  .equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n),
  .equal-columns--outside-trim .large-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n+1),
  .equal-columns--outside-trim .large-down--eight:nth-of-type(2n+1),
  .equal-columns--outside-trim .large-down--one-third:nth-of-type(3n+1),
  .equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n+1),
  .equal-columns--outside-trim .large-down--four:nth-of-type(4n+1),
  .equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n+1),
  .equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n+1),
  .equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n+1),
  .equal-columns--outside-trim .large-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .large-down--one-whole,
  .has-no-side-gutter .large-down--one-half,
  .has-no-side-gutter .large-down--eight,
  .has-no-side-gutter .large-down--one-third,
  .has-no-side-gutter .large-down--two-thirds,
  .has-no-side-gutter .large-down--one-fourth,
  .has-no-side-gutter .large-down--four,
  .has-no-side-gutter .large-down--one-fifth,
  .has-no-side-gutter .large-down--three-fifths,
  .has-no-side-gutter .large-down--two-fifths,
  .has-no-side-gutter .large-down--one-sixth,
  .has-no-side-gutter .large-down--one-seventh,
  .has-no-side-gutter .large-down--one-eighth,
  .has-no-side-gutter .large-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .large-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .large-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .large-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .large-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .large-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .large-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .large-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .large-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .large-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .large-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .large-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .large-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .large-down--four {
    width: 25%;
  }
  .has-no-side-gutter .large-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .large-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .large-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 798px) {
  .filter-button-wrap {
    display:flex;
    width:100%;
  }
  .collection-filters {
    padding-top:0
  }
  .medium-down--hidden {
    display: none !important;
  }
  .medium-down--visible {
    display: block !important;
  }
  .medium-down--one {
    width: calc(6.25% - 20px);
  }
  .medium-down--two {
    width: calc(12.5% - 20px);
  }
  .medium-down--three {
    width: calc(18.75% - 20px);
  }
  .medium-down--four {
    width: calc(25% - 20px);
  }
  .medium-down--five {
    width: calc(31.25% - 20px);
  }
  .medium-down--six {
    width: calc(37.5% - 20px);
  }
  .medium-down--seven {
    width: calc(43.75% - 20px);
  }
  .medium-down--eight {
    width: calc(50% - 20px);
  }
  .medium-down--nine {
    width: calc(56.25% - 20px);
  }
  .medium-down--ten {
    width: calc(62.5% - 20px);
  }
  .medium-down--eleven {
    width: calc(68.75% - 20px);
  }
  .medium-down--twelve {
    width: calc(75% - 20px);
  }
  .medium-down--thirteen {
    width: calc(81.25% - 20px);
  }
  .medium-down--fourteen {
    width: calc(87.5% - 20px);
  }
  .medium-down--fifteen {
    width: calc(93.75% - 20px);
  }
  .medium-down--sixteen {
    width: calc(100% - 20px);
  }
  .medium-down--one-whole {
    width: calc(100% - 20px);
  }
  .shopify-section--image-with-text .medium-down--one-whole {
    width: 100%; 
  }
  .medium-down--one-whole.cart-bottom-sidebar {
    width: 100%;
  }
  .medium-down--one-half {
    width: calc(50% - 20px);
  }
  .medium-down--one-third {
    width: calc(33.3333333333% - 20px);
  }
  .medium-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }
  .medium-down--one-fourth {
    width: calc(25% - 20px);
  }
  .medium-down--two-fourths {
    width: calc(50% - 20px);
  }
  .medium-down--three-fourths {
    width: calc(75% - 20px);
  }
  .medium-down--one-fifth {
    width: calc(20% - 20px);
  }
  .medium-down--two-fifths {
    width: calc(40% - 20px);
  }
  .medium-down--three-fifths {
    width: calc(60% - 20px);
  }
  .medium-down--four-fifths {
    width: calc(80% - 20px);
  }
  .medium-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }
  .medium-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }
  .medium-down--three-sixths {
    width: calc(50% - 20px);
  }
  .medium-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }
  .medium-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }
  .medium-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }
  .medium-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }
  .medium-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }
  .medium-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }
  .medium-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }
  .medium-down--one-eighth {
    width: calc(12.5% - 20px);
  }
  .medium-down--two-eighths {
    width: calc(25% - 20px);
  }
  .medium-down--three-eighths {
    width: calc(37.5% - 20px);
  }
  .medium-down--four-eighths {
    width: calc(50% - 20px);
  }
  .medium-down--five-eighths {
    width: calc(62.5% - 20px);
  }
  .medium-down--six-eighths {
    width: calc(75% - 20px);
  }
  .medium-down--seven-eighths {
    width: calc(87.5% - 20px);
  }
  .medium-down--one-tenth {
    width: calc(10% - 20px);
  }
  .medium-down--two-tenths {
    width: calc(20% - 20px);
  }
  .medium-down--three-tenths {
    width: calc(30% - 20px);
  }
  .medium-down--four-tenths {
    width: calc(40% - 20px);
  }
  .medium-down--five-tenths {
    width: calc(50% - 20px);
  }
  .medium-down--six-tenths {
    width: calc(60% - 20px);
  }
  .medium-down--seven-tenths {
    width: calc(70% - 20px);
  }
  .medium-down--eight-tenths {
    width: calc(80% - 20px);
  }
  .medium-down--nine-tenths {
    width: calc(90% - 20px);
  }
  .medium-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }
  .medium-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }
  .medium-down--three-twelfths {
    width: calc(25% - 20px);
  }
  .medium-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }
  .medium-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }
  .medium-down--six-twelfths {
    width: calc(50% - 20px);
  }
  .medium-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }
  .medium-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }
  .medium-down--nine-twelfths {
    width: calc(75% - 20px);
  }
  .medium-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }
  .medium-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }
  .medium-down--offset-by-one {
    left: calc(6.25%);
  }
  .medium-down--offset-by-two {
    left: calc(12.5%);
  }
  .medium-down--offset-by-three {
    left: calc(18.75%);
  }
  .medium-down--offset-by-four {
    left: calc(25%);
  }
  .medium-down--offset-by-five {
    left: calc(31.25%);
  }
  .medium-down--offset-by-six {
    left: calc(37.5%);
  }
  .medium-down--offset-by-seven {
    left: calc(43.75%);
  }
  .medium-down--offset-by-eight {
    left: calc(50%);
  }
  .medium-down--offset-by-nine {
    left: calc(56.25%);
  }
  .medium-down--offset-by-ten {
    left: calc(62.5%);
  }
  .medium-down--offset-by-eleven {
    left: calc(68.75%);
  }
  .medium-down--offset-by-twelve {
    left: calc(75%);
  }
  .medium-down--offset-by-thirteen {
    left: calc(81.25%);
  }
  .medium-down--offset-by-fourteen {
    left: calc(87.5%);
  }
  .medium-down--offset-by-fifteen {
    left: calc(93.75%);
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n),
  .equal-columns--outside-trim .medium-down--eight:nth-of-type(2n),
  .equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n),
  .equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n),
  .equal-columns--outside-trim .medium-down--four:nth-of-type(4n),
  .equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n),
  .equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n),
  .equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n),
  .equal-columns--outside-trim .medium-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n+1),
  .equal-columns--outside-trim .medium-down--eight:nth-of-type(2n+1),
  .equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n+1),
  .equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n+1),
  .equal-columns--outside-trim .medium-down--four:nth-of-type(4n+1),
  .equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n+1),
  .equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n+1),
  .equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n+1),
  .equal-columns--outside-trim .medium-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-half.medium-down--one-half,
  .equal-columns--outside-trim .medium-down--eight.medium-down--eight,
  .equal-columns--outside-trim .medium-down--one-third.medium-down--one-third,
  .equal-columns--outside-trim .medium-down--one-fourth.medium-down--one-fourth,
  .equal-columns--outside-trim .medium-down--four.medium-down--four,
  .equal-columns--outside-trim .medium-down--one-fifth.medium-down--one-fifth,
  .equal-columns--outside-trim .medium-down--one-sixth.medium-down--one-sixth,
  .equal-columns--outside-trim .medium-down--one-seventh.medium-down--one-seventh,
  .equal-columns--outside-trim .medium-down--two.medium-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n),
  .equal-columns--outside-trim .medium-down--eight:nth-of-type(2n),
  .equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n),
  .equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n),
  .equal-columns--outside-trim .medium-down--four:nth-of-type(4n),
  .equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n),
  .equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n),
  .equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n),
  .equal-columns--outside-trim .medium-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n+1),
  .equal-columns--outside-trim .medium-down--eight:nth-of-type(2n+1),
  .equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n+1),
  .equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n+1),
  .equal-columns--outside-trim .medium-down--four:nth-of-type(4n+1),
  .equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n+1),
  .equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n+1),
  .equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n+1),
  .equal-columns--outside-trim .medium-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .medium-down--one-whole,
  .has-no-side-gutter .medium-down--one-half,
  .has-no-side-gutter .medium-down--eight,
  .has-no-side-gutter .medium-down--one-third,
  .has-no-side-gutter .medium-down--two-thirds,
  .has-no-side-gutter .medium-down--one-fourth,
  .has-no-side-gutter .medium-down--four,
  .has-no-side-gutter .medium-down--one-fifth,
  .has-no-side-gutter .medium-down--three-fifths,
  .has-no-side-gutter .medium-down--two-fifths,
  .has-no-side-gutter .medium-down--one-sixth,
  .has-no-side-gutter .medium-down--one-seventh,
  .has-no-side-gutter .medium-down--one-eighth,
  .has-no-side-gutter .medium-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .medium-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .medium-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .medium-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .medium-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .medium-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .medium-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .medium-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .medium-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .medium-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .medium-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .medium-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .medium-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .medium-down--four {
    width: 25%;
  }
  .has-no-side-gutter .medium-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .medium-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .medium-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--hidden {
    display: none !important;
  }
  .small-down--visible {
    display: block !important;
  }
  .small-down--one {
    width: calc(6.25% - 20px);
  }
  .small-down--two {
    width: calc(12.5% - 20px);
  }
  .small-down--three {
    width: calc(18.75% - 20px);
  }
  .small-down--four {
    width: calc(25% - 20px);
  }
  .small-down--five {
    width: calc(31.25% - 20px);
  }
  .small-down--six {
    width: calc(37.5% - 20px);
  }
  .small-down--seven {
    width: calc(43.75% - 20px);
  }
  .small-down--eight {
    width: calc(50% - 20px);
  }
  .small-down--nine {
    width: calc(56.25% - 20px);
  }
  .small-down--ten {
    width: calc(62.5% - 20px);
  }
  .small-down--eleven {
    width: calc(68.75% - 20px);
  }
  .small-down--twelve {
    width: calc(75% - 20px);
  }
  .small-down--thirteen {
    width: calc(81.25% - 20px);
  }
  .small-down--fourteen {
    width: calc(87.5% - 20px);
  }
  .small-down--fifteen {
    width: calc(93.75% - 20px);
  }
  .small-down--sixteen {
    width: calc(100% - 20px);
  }
  .small-down--one-whole {
    width: calc(100% - 20px);
  }
  .small-down--one-half {
    width: calc(50% - 20px);
  }
  .small-down--one-third {
    width: calc(33.3333333333% - 20px);
  }
  .small-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }
  .small-down--one-fourth {
    width: calc(25% - 20px);
  }
  .small-down--two-fourths {
    width: calc(50% - 20px);
  }
  .small-down--three-fourths {
    width: calc(75% - 20px);
  }
  .small-down--one-fifth {
    width: calc(20% - 20px);
  }
  .small-down--two-fifths {
    width: calc(40% - 20px);
  }
  .small-down--three-fifths {
    width: calc(60% - 20px);
  }
  .small-down--four-fifths {
    width: calc(80% - 20px);
  }
  .small-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }
  .small-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }
  .small-down--three-sixths {
    width: calc(50% - 20px);
  }
  .small-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }
  .small-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }
  .small-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }
  .small-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }
  .small-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }
  .small-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }
  .small-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }
  .small-down--one-eighth {
    width: calc(12.5% - 20px);
  }
  .small-down--two-eighths {
    width: calc(25% - 20px);
  }
  .small-down--three-eighths {
    width: calc(37.5% - 20px);
  }
  .small-down--four-eighths {
    width: calc(50% - 20px);
  }
  .small-down--five-eighths {
    width: calc(62.5% - 20px);
  }
  .small-down--six-eighths {
    width: calc(75% - 20px);
  }
  .small-down--seven-eighths {
    width: calc(87.5% - 20px);
  }
  .small-down--one-tenth {
    width: calc(10% - 20px);
  }
  .small-down--two-tenths {
    width: calc(20% - 20px);
  }
  .small-down--three-tenths {
    width: calc(30% - 20px);
  }
  .small-down--four-tenths {
    width: calc(40% - 20px);
  }
  .small-down--five-tenths {
    width: calc(50% - 20px);
  }
  .small-down--six-tenths {
    width: calc(60% - 20px);
  }
  .small-down--seven-tenths {
    width: calc(70% - 20px);
  }
  .small-down--eight-tenths {
    width: calc(80% - 20px);
  }
  .small-down--nine-tenths {
    width: calc(90% - 20px);
  }
  .small-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }
  .small-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }
  .small-down--three-twelfths {
    width: calc(25% - 20px);
  }
  .small-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }
  .small-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }
  .small-down--six-twelfths {
    width: calc(50% - 20px);
  }
  .small-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }
  .small-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }
  .small-down--nine-twelfths {
    width: calc(75% - 20px);
  }
  .small-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }
  .small-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }
  .small-down--offset-by-one {
    left: calc(6.25%);
  }
  .small-down--offset-by-two {
    left: calc(12.5%);
  }
  .small-down--offset-by-three {
    left: calc(18.75%);
  }
  .small-down--offset-by-four {
    left: calc(25%);
  }
  .small-down--offset-by-five {
    left: calc(31.25%);
  }
  .small-down--offset-by-six {
    left: calc(37.5%);
  }
  .small-down--offset-by-seven {
    left: calc(43.75%);
  }
  .small-down--offset-by-eight {
    left: calc(50%);
  }
  .small-down--offset-by-nine {
    left: calc(56.25%);
  }
  .small-down--offset-by-ten {
    left: calc(62.5%);
  }
  .small-down--offset-by-eleven {
    left: calc(68.75%);
  }
  .small-down--offset-by-twelve {
    left: calc(75%);
  }
  .small-down--offset-by-thirteen {
    left: calc(81.25%);
  }
  .small-down--offset-by-fourteen {
    left: calc(87.5%);
  }
  .small-down--offset-by-fifteen {
    left: calc(93.75%);
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n),
  .equal-columns--outside-trim .small-down--eight:nth-of-type(2n),
  .equal-columns--outside-trim .small-down--one-third:nth-of-type(3n),
  .equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n),
  .equal-columns--outside-trim .small-down--four:nth-of-type(4n),
  .equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n),
  .equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n),
  .equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n),
  .equal-columns--outside-trim .small-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n+1),
  .equal-columns--outside-trim .small-down--eight:nth-of-type(2n+1),
  .equal-columns--outside-trim .small-down--one-third:nth-of-type(3n+1),
  .equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n+1),
  .equal-columns--outside-trim .small-down--four:nth-of-type(4n+1),
  .equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n+1),
  .equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n+1),
  .equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n+1),
  .equal-columns--outside-trim .small-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-half.small-down--one-half,
  .equal-columns--outside-trim .small-down--eight.small-down--eight,
  .equal-columns--outside-trim .small-down--one-third.small-down--one-third,
  .equal-columns--outside-trim .small-down--one-fourth.small-down--one-fourth,
  .equal-columns--outside-trim .small-down--four.small-down--four,
  .equal-columns--outside-trim .small-down--one-fifth.small-down--one-fifth,
  .equal-columns--outside-trim .small-down--one-sixth.small-down--one-sixth,
  .equal-columns--outside-trim .small-down--one-seventh.small-down--one-seventh,
  .equal-columns--outside-trim .small-down--two.small-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n),
  .equal-columns--outside-trim .small-down--eight:nth-of-type(2n),
  .equal-columns--outside-trim .small-down--one-third:nth-of-type(3n),
  .equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n),
  .equal-columns--outside-trim .small-down--four:nth-of-type(4n),
  .equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n),
  .equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n),
  .equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n),
  .equal-columns--outside-trim .small-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n+1),
  .equal-columns--outside-trim .small-down--eight:nth-of-type(2n+1),
  .equal-columns--outside-trim .small-down--one-third:nth-of-type(3n+1),
  .equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n+1),
  .equal-columns--outside-trim .small-down--four:nth-of-type(4n+1),
  .equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n+1),
  .equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n+1),
  .equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n+1),
  .equal-columns--outside-trim .small-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .small-down--one-whole,
  .has-no-side-gutter .small-down--one-half,
  .has-no-side-gutter .small-down--eight,
  .has-no-side-gutter .small-down--one-third,
  .has-no-side-gutter .small-down--two-thirds,
  .has-no-side-gutter .small-down--one-fourth,
  .has-no-side-gutter .small-down--four,
  .has-no-side-gutter .small-down--one-fifth,
  .has-no-side-gutter .small-down--three-fifths,
  .has-no-side-gutter .small-down--two-fifths,
  .has-no-side-gutter .small-down--one-sixth,
  .has-no-side-gutter .small-down--one-seventh,
  .has-no-side-gutter .small-down--one-eighth,
  .has-no-side-gutter .small-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .small-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .small-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .small-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .small-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .small-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .small-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .small-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .small-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .small-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .small-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .small-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .small-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .small-down--four {
    width: 25%;
  }
  .has-no-side-gutter .small-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .small-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .small-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-center {
    text-align: center !important;
  }
}
/*================ Build Grid Push Classes ================*/
/* #Media Queries
================================================== */
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
  input.contact_email[type=email] {
    width: 100%;
    margin-bottom: 1em;
    box-sizing: border-box;
  }
  .collection_menu {
    display: none;
  }
  h1.collection_title_tags,
  div.collection_title_tags {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }
  .cloudzoom-lens {
    width: 140px;
    height: 120px;
  }
}
/* Standard 960 to widescreen 1200(desktop browsers) */
@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .nav ul li {
    padding: 0 7px 0 7px;
  }
}
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .footer a.ss-icon {
    font-size: 42px;
    margin-right: 10px;
  }
  .nav ul.menu ul {
    margin-top: 7px;
  }
  .nav ul.menu li {
    padding: 3px 0 3px 3px;
  }
}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 798px) {
  .homepage_slider .flex-direction-nav {
    display: none;
  }
  .article_image {
    padding-bottom: 0;
  }
  .scroll-arrow {
    display: none;
  }
  .nav_arrows {
    float: none;
  }
  .nav_arrows .prev {
    float: left;
  }
  .nav_arrows .next {
    float: right;
  }
  .minus,
  .plus {
    display: none;
  }
  .minus {
    margin: 0 2px 0 0;
  }
  .plus {
    margin: 0 0 0 2px;
  }
  #header a.mobile_logo {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 18px;
    line-height: 34px;
    z-index: 0;
    width: 50%;
    padding: 0;
  }
  #header a.mobile_logo .image-element__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  #header a.mobile_logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
  }
  .footer_menu li {
    display: block;
  }
  .footer a.ss-icon {
    font-size: 30px;
    margin-right: 0px;
    margin-top: 6px;
  }.is-absolute {
    top: 0px !important;
  }
  p.mm-counter {
    right: 20px;
  }
  .breadcrumb--text {
    margin-bottom: 0 !important;
    clear: both;
  }
  .flex-control-nav {
    bottom: 10px;
  }
  .or {
    text-align: center;
    width: 100%;
    display: inline-block;
    padding-left: 0;
    padding-bottom: 5px;
  }
  .mobile_hidden {
    display: none !important;
  }
  table tr.order_summary td.label {
    text-align: left;
  }
  .breadcrumb {
    text-align: center;
    margin-bottom: 1.5em;
  }
  .featured_text {
    font-size: 14px;
    line-height: 1.7em;
    text-align: center;
  }
 
  .toggle_list {
    display: none;
  }
  select {
    width: 100%;
  }
  .flexslider a.action_button {
    width: initial;
  }
  input[type=submit],
  input[type=reset],
  input[type=button],
  input.action_button[type=submit],
  input.action_button[type=button],
  .sign_up {
    margin-left: 0;
    width: 100%;
  }
  .credits_right {
    text-align: left;
  }
  .title_column {
    float: left;
  }
  .container div.mobile_only,
  .mobile_only {
    display: block;
  }
  span.mobile_only {
    display: inline;
  }
  .price_total_text {
    display: block;
  }
  .update_subtotal,
  .remove_column,
  .checkout_table_header {
    display: none;
  }
  .mobile_right {
    text-align: right;
  }
  .quick_shop {
    display: none !important;
  }
  .cart_price {
    display: block;
    margin-bottom: 0;
  }
  table tr th,
  table tr td {
    padding: 2px;
  }
  .multiple_product_images {
    display: none;
  }
  .headline {
    font-size: 1.3em;
    line-height: 1.2em;
    position: relative;
  }
  .subtitle p {
    font-size: 1.1em;
    line-height: 1.2em;
    position: relative;
  }
  .banner__text .left {
    padding-left: 20px !important;
  }
  .banner__text .right {
    padding-right: 20px !important;
  }
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (max-width: 798px) {
  .mobile_hidden {
    display: none !important;
  }
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 480px) {
  #cart textarea {
    width: 280px;
  }
  .mobile_hidden {
    display: none !important; /* Force hide on mobile */
  }
  .action_button,
  .shopify-payment-button__button.shopify-payment-button__button--unbranded {
    font-size: 12px;
  }
  h1,
  h2,
  h2.title,
  h2.title a,
  h3,
  h4,
  h5,
  h6,
  .collection_title,
  .empty_cart {
    font-size: 120%;
    line-height: 1.5em;
  }
  h1,
  h1.home,
  .title a, h2 {
    padding: 0;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  select.currencies {
    position: relative;
    top: 15px;
  }
}
@-moz-document url-prefix() {
  #search form input {
    padding: 12px 15px 10px 55px;
    height: 60px;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 798px) {
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}
.socialButtons {
  padding: 0;
  margin: 20px 0px 0px 0px;
}
.socialButtons li {
  list-style: none;
  display: inline-block;
  margin: 0;
}
.socialButtons li a {
  color: #363636 !important;
  padding-left: 5px;
  font-size: 30px;
}
.socialButtons li a:hover {
  color: #fa7268 !important;
}
.socialButtons li:nth-of-type(1) {
  position: relative;
  top: -8px;
}

@font-face {
  font-family: "ootsb";
  src: url(//thehappywife.com/cdn/shop/t/105/assets/ootsb.eot?v=39625945060011876101765207679);
  src: url(//thehappywife.com/cdn/shop/t/105/assets/ootsb.eot?v=39625945060011876101765207679) format("embedded-opentype"), url(//thehappywife.com/cdn/shop/t/105/assets/ootsb.ttf?v=88425513192927513031765207679) format("truetype"), url(//thehappywife.com/cdn/shop/t/105/assets/ootsb.woff?v=42397042526341430171765207679) format("woff"), url(//thehappywife.com/cdn/shop/t/105/assets/ootsb.svg?v=58526098964867671161765207679) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ootsb" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  speak: none;
  text-decoration: inherit;
  display: inline;
  margin-right: 0.2em;
  text-align: center;
  padding-top: 0;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.icon-arrow-down:before {
  content: "\e900";
}
.icon-arrow-up:before {
  content: "\e901";
}
.icon-cart:before {
  content: "\e902";
  font-weight: normal;
}
.icon-circle-left:before {
  content: "\e903";
}
.icon-circle-right:before {
  content: "\e904";
}
.icon-close:before {
  content: "\e905";
}
.icon-facebook:before {
  content: "";
  background:url(/cdn/shop/files/reddit.svg?v=1705482877);
  height: 28px;
    width: 28px;
   margin-bottom:-1px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 100%;
    background-size: 56%;
    background-repeat: no-repeat;
    background-position: center;
}
.icon-flikr:before {
  content: "\e907";
}

.social-icons a:hover {
  color:#fff;
}
.icon-houzz:before {
  content: "\e909";
}
.icon-instagram:before {
  content: "\e90a";
}
.icon-arrow-left:before {
  content: "\e90b";
}
.icon-linkedin:before {
  content: "\e90c";
}
.icon-mail:before {
  content: "\e90d";
}
  .icon-phone:before {
      content: "";
    background: url(/cdn/shop/files/phone-call.svg);
    height: 28px;
    width: 28px;
    margin-bottom:-1px;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 100%;
    background-size: 56%;
    background-repeat: no-repeat;
    background-position: center;
    fill: #fff;
    filter: invert(1);
}  
.icon-menu:before {
  content: "\e90e";
  font-weight: normal;
}
.icon-minus:before {
  content: "\e90f";
}
.icon-pinterest:before {
  content: "\e910";
}
.icon-plus:before {
  content: "\e911";
}
.icon-arrow-right:before {
  content: "\e912";
}
.icon-search:before {
  content: "\e913";
  font-weight: bold;
}
.icon-snapchat:before {
  content: "\e914";
}
.icon-tumblr:before {
  content: "\e915";
}
/*
.icon-twitter:before {
  content: "\e916";
}*/
   .icon-twitter:before {
      content: "";
    background: url(/cdn/shop/files/twitter.png?v=1706606192);
    height: 28px;
    width: 28px;
    margin-bottom:-1px;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 100%;
    background-size: 54%;
    background-repeat: no-repeat;
    background-position: 50% 46%;;
    fill: #fff;
    filter: invert(1);
}  
.icon-vimeo:before {
  content: "\e917";
}
.icon-youtube:before {
  content: "\e918";
}
.icon-user-icon:before {
  content: "\f100";
}


.social-icons {
  margin-bottom: 15px;
}

.fancybox-close:before {
  content: "\e905";
  font-size: 27px !important;
  font-family: "ootsb" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  text-decoration: inherit;
  display: inline;
  text-align: center;
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.icon-check {
  display: block;
  float: left;
  height: 30px;
  margin-right: 8px;
  clear: both;
}

.icon-check-long {
  height: 60px;
}

/*
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    transform: scale(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    animation-timing-function: ease-out;
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(48px);
    animation-timing-function: ease-out;
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(-48px);
    animation-timing-function: ease-out;
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    animation-timing-function: ease-out;
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    transform-origin: center bottom;
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(42px);
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(-42px);
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    transform-origin: center top;
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

.delay-0s {
  animation-delay: 0;
}

.delay-025s {
  animation-delay: 0.25s;
  opacity: 0;
}

.delay-05s {
  animation-delay: 0.5s;
  opacity: 0;
}

.delay-075s {
  animation-delay: 0.75s;
  opacity: 0;
}

.delay-1s {
  animation-delay: 1s;
  opacity: 0;
}

.animate_right, .animate_left, .animate_up, .animate_down {
  opacity: 0;
}

.ie .animated, .ie .animate_right, .ie .animate_left, .ie .hsContent, .ie .animated, .ie .thumbnail img, .thumbnail svg, .ie .product_gallery img {
  opacity: 1 !important;
}

.ie delay-025s, .ie .delay-0s, .ie .delay-025s, .ie .delay-05s, .ie .delay-075s, .ie .delay-1s {
  opacity: 1 !important;
}

.ie select {
  background-image: none !important;
}

/* This triggers a redraw in IE to Fix IE8's :before content rendering. */
html:hover [class^=ss-] {
  -ms-zoom: 1;
}

.ss-icon, .footer .ss-icon, .ss-icon:visited, .ss-icon.ss-sandbox,
[class^=ss-]:before, [class*=" ss-"]:before,
[class^=ss-].ss-sandbox:before, [class*=" ss-"].ss-sandbox:before,
[class^=ss-].right:after, [class*=" ss-"].right:after,
[class^=ss-].ss-sandbox.right:after, [class*=" ss-"].ss-sandbox.right:after {
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  margin: 7px 0 7px 0;
  display: inline-block;
}

.remove {
  font-size: 24px !important;
  margin-right: 0;
  margin-top: 8px;
}

/* #Password Page
================================================== */
#password-page-bg {
  background-color: #000000;
  color: #ffffff;
}

input#password {
  width: 100%;
}

#password-container {
  margin: 0px auto;
  max-width: 100%;
  display: table;
  text-align: center;
  display: table;
}

#password-container h1 {
  color: #ffffff;
}

.password-page-row {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.password-page-col {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 30px;
  width: 100%;
  
}
.password-page-col .ss-icon {
  color: #ffffff;
}
.password-page-col .ss-icon:hover {
  color: #e6e6e6;
}
.password-page-col .ss-icon:last-child span {
  margin-right: 0;
}

.password-page-message {
  color: #ffffff;
  font-size: 28px;
  margin: 0 auto 25px;
}

.password-page-follow {
  color: #ffffff;
}

.password-logo {
  max-width: 205px;
  margin: 0px auto;
}

.password-message {
  max-width: 600px;
  margin: 0 auto;
}

.hr-small {
  margin: 20px auto;
  width: 50px;
}

.ss-password, .ss-password:hover, .ss-password:visited {
  font-family: "SSSandbox";
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 40px;
  margin: 15px 15px 25px 0;
  display: inline-block;
  color: #ffffff;
}

.password-footer {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
}

.powered {
  display: block;
  margin-top: 15px;
}

.shopify a {
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA0JJREFUeNqMU81vG0UU/83sR73YG+M4xrHj4jj9UCFNSaGlQQUhhFBRpXIo6jEHQFXFAbhy4B/gioTgzgGV7ws5IAoqUgUSoWoIaZJGpGpMHDuptf5a7+fM8nZpJaRy4M0+jd7szO/93u/NsAsX5vFvi6IInHNUq5NnstnsqXp96xur3f392HNlrIcLePHkS8hlTchIJvtVSTOjIaSAwhkiGsXi+BudjjVp28Oj+XzhrPDZh5qqfoIQD5j6wrxHCAJ6UMXVr3pgnB0c9O2843jrE5XMtZER47GTp+bOqfn++d9+Ct5TuLrCGAcjpgnAWEVSdg8HSyWUzTl8v7D08szxSltPB6/OPDWeW/q1caI2O0zfbrThBM7pjdbiz9PG7LsK01epYKiCaMlIQadnHag9UZ2vbuqvl47tVMwcY3fdFjLFCIHksB0bQojCTmfzlWyHf53S0qsyigESMRS0uqtvNbs330nXNHhRAWl3ChnNhLG/jzBy4fg27pGG5TSqWsARV6EGwk+WScgymIQ5auLpyTdRHj2arC//9QXuDpfgeDYkQcgoZixq4DKuAGoo7wEwVg5DD3PVt1EafRzL21/C0HJo9f4gYUO4gZNkFMk5Nkli3wcI4vP7yIvxhsLIIXhBHzfqlzHwWihkDiNjPEwlDJNE/zDABGPQKfR5QAzI8wRU9IWNurWIlJbF+dmP8Ig5ja67Az8cwvWdmCVi4YSMSlTzODjAQxGAvCZkaIpI4MeN97Fc/xbpfXk8WXmNqPcw9C1idR8gKSNN06GYEScZYwZVJ+xj/8hpPJp9HmvNK/Bd6g0zEXfJ9rvEwE0A4qbFLOibimN15RcLR57JVFx7iLGHpvFs9RJ8QZvofmzsXoEXDqAqWiIiyUaAUSIkBTVVY1BuXuth6rhxcaxizDb619EcrGPg7+JG8zJWdj8HZwplk7hTHyDiKrU5BVWXyKT57ncfNz9TRBjxrRWn3/zT2+7seV7DWuabnR+MTrCm6ikNnLLEL3R720dmQkMqFz8dia3rdmvhg8an7MH3hZRhKuVsQTtcPmCcGK+lZvLl1JEdK9T7PW9t75a72L7tXh3sBbdEELXxP00h1//rx98CDACS7p3N/ZPUwQAAAABJRU5ErkJggg==);
  padding-left: 21px;
  color: #ffffff;
  text-decoration: none;
}

.password-footer a {
  color: #ffffff;
  text-decoration: none;
}

/* Password Page Modal CSS */
.controls {
  display: block;
  margin: 1em 2em 1em 2em;
  text-align: right;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .controls {
    text-align: center;
  }
}

#open-me a {
  color: #ffffff;
}

.close-me {
  z-index: 8000;
}

.close-me a {
  color: #000;
}

.modalbox {
  position: absolute;
  height: 100%;
  top: -1em;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 5000;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  background: rgba(255, 255, 255, 0.95);
}

.overlay-close {
  width: 150px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid #000;
  font-size: 14px;
}

.overlay-data {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
  visibility: 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

.inputbox {
  margin: 0px auto;
  max-width: 100%;
  display: table;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  color: #000;
}

.storefront-password-form label {
  font-size: 0.9em;
  margin: 0 0 1em 0;
}

.storefront-password-form .actions {
  display: inline-block;
}

.storefront-password-form #password {
  width: 80%;
  display: inline-block;
}

#owner {
  font-size: 0.9em;
  margin-top: -1em;
  opacity: 0.8;
}

.pass-close {
  color: #000 !important;
  padding: 0 !important;
  margin: 1em !important;
  position: inherit !important;
  font-size: 2em;
}

@media screen and (min-width: 320px) and (max-width: 440px) and (max-height: 667px) {
  .modalbox {
    display: block;
    width: 414px !important;
    max-width: 100%;
    text-align: center;
  }
  .pass-close {
    display: block;
    margin: 0.65em -0.15em 1em 0 !important;
  }
}
/* #Order page
================================================== */
.order-details__discount {
  display: block;
}

/* #Product Details
================================================== */
.details-section {
  margin-top: 20px;
}
.details-section .container {
  padding: 0;
}
.details-section .action_button {
  width: auto;
}
.details-section img,
.details-section svg {
  width: 100%;
  margin-bottom: 1em;
}
.details-section img.rich-image {
  max-width: auto;
  margin-bottom: 20px;
}
.details-section .feature_divider_left {
  margin: 25px 0px 25px 0px;
}

.detail_title {
  line-height: initial;
  font-size: 42px;
  margin-bottom: 0.3em;
  font-family: Nunito, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #363636;
  display: block;
  letter-spacing: 1px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  .detail_title {
    font-size: 21px;
  }
}

.featured_collections .featured-link--half a[href] img {
  box-shadow: #000 0em 0em 0em;
  transition: opacity 0.2s linear;
}

.featured_collections .featured-link--half:hover a[href] img {
  opacity: 0.8;
}

.featured-link--section {
  box-sizing: border-box;
  float: left;
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
}
.featured-link--section:nth-child(odd) {
  flex-direction: row-reverse;
}
.featured-link--section:nth-child(odd) .featured-link--half {
  float: right;
}

.featured-link--half.featured-link--image {
  background-color: transparent;
  text-align: center;
}

.featured-link--half {
  box-sizing: border-box;
  float: left;
  width: 50%;
  position: relative;
  text-align: center;
  display: table;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 480px) {
  .featured-link--half {
    width: 100%;
    flex: 1 0 100%;
  }
}
.featured-link--half .featured-link--wrap {
  width: 100%;
  flex: 0 0 auto;
}
.featured-link--half img,
.featured-link--half svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .featured-link--half img,
  .featured-link--half svg {
    width: 100%;
    max-width: auto;
  }
}
.featured-link--half .info {
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}
.featured-link--half .info.text-align--right {
  text-align: right;
}
.featured-link--half .info.text-align--right .description:before {
  margin-right: 0;
}
.featured-link--half .info.text-align--left {
  text-align: left;
}
.featured-link--half .info.text-align--left .description:before {
  margin-left: 0;
}
@media only screen and (max-width: 480px) {
  .featured-link--half .info {
    position: static;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    padding: 2em 0;
  }
}
.featured-link--half .collection_title {
  font-size: 2vw;
  margin-bottom: 0.3em;
  display: inline-block;
  color: #363636;
}
@media only screen and (max-width: 798px) {
  .featured-link--half .collection_title {
    font-size: inherit;
  }
}
.featured-link--half .description {
  position: relative;
  font-size: 1.6vw;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .featured-link--half .description {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 480px) {
  .featured-link--half .description {
    font-size: inherit;
  }
}
@media only screen and (min-width: 1025px) {
  .featured-link--half .description {
    font-size: inherit;
  }
}
.featured-link--half .action_button {
  width: auto;
}
@media only screen and (max-width: 798px) {
  .featured-link--half .action_button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 798px) {
  .featured-link--half .action_button {
    padding: 7px 15px;
  }
}

.featured_collections.across-2 .featured-link--section.featured-link--no-image {
  width: 100%;
}
.featured_collections.across-2 .featured-link--section:nth-child(odd) .featured-link--half {
  float: left;
}

.featured-link--section.featured-link--no-image > img {
  display: none;
}
.featured-link--section.featured-link--no-image .featured-link--half {
  width: 100%;
}
.featured-link--section.featured-link--no-image .info {
  position: static;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  text-align: center;
  padding: 2em;
}
.featured-link--section.featured-link--no-image .info.text-align--left {
  text-align: center;
}
.featured-link--section.featured-link--no-image .info.text-align--right {
  text-align: center;
}
.featured-link--section.featured-link--no-image .description, .featured-link--section.featured-link--no-image .collection_title {
  display: none;
}

.featured_collections.across-2 {
  display: flex;
  flex-wrap: wrap;
}
.featured_collections.across-2 .featured-link--image:nth-of-type(4n+3) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 798px) {
  .featured_collections.across-2 .featured-link--image:nth-of-type(4n+3) {
    flex-direction: row;
  }
}
.featured_collections.across-2 .featured-link--image:nth-of-type(4n+4) {
  flex-direction: row-reverse;
}

.featured_collections.across-2 .featured-link--section.featured-link--no-image .featured-link--half {
  width: 100%;
}
.featured_collections.across-2 .featured-link--section {
  width: 50%;
  flex-direction: row;
}
@media only screen and (max-width: 798px) {
  .featured_collections.across-2 .featured-link--section {
    width: 100%;
  }
  .featured_collections.across-2 .featured-link--section:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 798px) {
  .featured_collections.across-2 .featured-link--section .featured-link--half {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .featured_collections.across-2 .featured-link--section .featured-link--half {
    width: 100%;
  }
}
.featured_collections.across-2 .featured-link--section .description {
  font-size: 1.2vw;
}
@media only screen and (max-width: 798px) {
  .featured_collections.across-2 .featured-link--section .description {
    font-size: inherit;
  }
}
.featured_collections.across-2 .featured-link--section .button {
  font-size: 1.2vw;
}
@media only screen and (max-width: 798px) {
  .featured_collections.across-2 .featured-link--section .button {
    font-size: inherit;
  }
}
.featured_collections.across-2 .featured-link--image:nth-of-type(2n+1) {
  clear: both;
}
.featured_collections.across-2 .featured-link--image:nth-of-type(2n+2) .featured-link--half {
  float: left;
}
@media only screen and (max-width: 798px) {
  .featured_collections.across-2 .featured-link--image:nth-of-type(2n+2) .featured-link--half {
    float: right;
  }
}
.featured_collections.across-2 .featured-link--image:nth-of-type(3n+3) .featured-link--half {
  float: right;
}
@media only screen and (max-width: 798px) {
  .featured_collections.across-2 .featured-link--image:nth-of-type(3n+3) .featured-link--half {
    float: left;
  }
}
.featured_collections.across-2 .featured-link--image:nth-of-type(4n+4) .featured-link--half {
  float: right;
}

.featured-link--half .collection_title {
  font-size: 2vw;
}
@media only screen and (max-width: 798px) {
  .featured-link--half .collection_title {
    font-size: inherit;
  }
}

@media only screen and (max-width: 798px) {
  .shopify-section--product-template .block__image_gallery .image-gallery__item {
    margin-bottom: 1em;
  }
}

/* #Integrated Shopify Reviews
================================================== *//* #Homepage Banner Images
================================================== */
.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
}

.full-link + .banner__text {
  pointer-events: none;
}

@media only screen and (max-width: 798px) {
  .delay-0s,
  .delay-025s,
  .delay-05s,
  .delay-075s,
  .delay-1s,
  .animate_right,
  .animate_left,
  .animate_up,
  .animate_down {
    opacity: 1;
  }
}
@media only screen and (min-device-width: 798px) and (max-device-width: 1024px) {
  .animate_right,
  .animate_left,
  .animate_up,
  .animate_down {
    opacity: 1;
  }
}
.parallax__wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.banner__wrap .container,
.parallax__wrap .container {
  padding: 0;
  max-width: 1200px;
  width: 95%;
}
.banner__wrap .container .video__text,
.parallax__wrap .container .video__text {
  width: 100%;
}

.parallax__wrap,
.banner {
  overflow: hidden;
}
.parallax__wrap.horizontal-text-position--center,
.banner.horizontal-text-position--center {
  justify-content: center;
}
.parallax__wrap.horizontal-text-position--left,
.banner.horizontal-text-position--left {
  justify-content: flex-start;
}
.parallax__wrap.horizontal-text-position--right,
.banner.horizontal-text-position--right {
  justify-content: flex-end;
}
.parallax__wrap.vertical-text-position--center,
.banner.vertical-text-position--center {
  align-items: center;
}
.parallax__wrap.vertical-text-position--top,
.banner.vertical-text-position--top {
  align-items: flex-start;
}
.parallax__wrap.vertical-text-position--bottom,
.banner.vertical-text-position--bottom {
  align-items: flex-end;
}


  
.parallax[style*="placeholder.svg"]::after {
  display: block;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #363636;
  opacity: 0.8;
}

.banner__text {
  z-index: 3;
  display: flex;
  overflow-wrap: initial;
}
@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .banner__text {
    width: 100%;
  }
}
.banner__text .subtitle p a {
  pointer-events: all;
}
.banner__text a.action_button {
  pointer-events: all;
  padding: 10px 40px;
}
@media only screen and (max-width: 798px) {
  .banner__text a.action_button {
    padding: 10px;
    font-size: 13px;
  }
}
.banner__text.text-align--left {
  text-align: left;
  justify-content: flex-start;
}
.banner__text.text-align--left .headline,
.banner__text.text-align--left .subtitle {
  text-align: left;
}
.banner__text.text-align--right {
  text-align: right;
  justify-content: flex-end;
}
.banner__text.text-align--right .headline,
.banner__text.text-align--right .subtitle {
  text-align: right;
}
.banner__text.text-align--center {
  text-align: center;
  justify-content: center;
}
.banner__text.text-align--center .headline,
.banner__text.text-align--center .subtitle {
  text-align: center;
}

.banner__inner-text {
  max-width: 55%;
  padding: 50px 10px;
}
@media only screen and (max-width: 798px) {
  .banner__inner-text {
    padding: 20px;
    max-width: 80%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .banner__inner-text {
    max-width: 100%;
  }
}

.horizontal-text-position--center .banner__inner-text {
  max-width: 80%;
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .horizontal-text-position--center .banner__inner-text {
    max-width: 100%;
  }
}

.banner__wrap {
  position: relative;
  display: flex;
}
.banner__wrap img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  z-index: 1;
}

.flexslider .slides .banner__wrap img {
  height: 100%;
}

.banner__image-wrapper {
  flex: 1;
}
@media only screen and (max-width: 798px) {
  .banner__image-wrapper .image-element__wrap {
    height: 100%;
  }
}

.parallax noscript img {
  display: block;
}

.banner {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.parallax__container {
  clip: rect(0, auto, auto, 0);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
@supports not (-ms-high-contrast: none) {
  .parallax__container {
    background-color: #ffffff;
  }
}

.parallax__container .parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  width: 100%;
}.mobile-placeholder-svg,
.flexslider .slides .mobile-placeholder-svg {
  display: none;
}

@media only screen and (max-width: 798px) {
  .parallax-banner .mobile-parallax-enabled--false.mobile-image-crop-enabled--false .parallax {
    background-size: contain !important;
    height: auto !important;
  }
  .parallax-banner .mobile-parallax-enabled--false.mobile-image-crop-enabled--false .mobile-placeholder-svg {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .parallax-banner .mobile-parallax-enabled--false.mobile-image-crop-enabled--false .banner__text {
    position: absolute;
  }
}

@supports (-ms-ime-align: auto) {
  .parallax__container .parallax {
    background-attachment: fixed;
    transform: none;
    transform-style: flat;
  }
}
@supports not (-ms-high-contrast: none) {
  .parallax__container .parallax {
    min-height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .parallax__container .parallax {
    position: static;
  }
  .product-gallery__image,
  .flexslider .slides {
    transition: none ease-in !important;
  }
  .animated {
    animation: none ease-in;
    opacity: 1;
  }
}
.darken-image-true .parallax::after,
.darken-image-true .banner__wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

/* #Unit Pricing
================================================== */
.product-details__unit-price,
.cart__item-unit-price,
.order-details__unit-price {
  font-size: smaller;
}

.cart__item-unit-price {
  font-weight: initial;
}

.order-details__unit-price {
  margin-bottom: 0;
}

.product-details__unit-price {
  color: #363636;
  font-weight: initial;
}
.predictive-search__product-suggestion-price .product-details__unit-price {
  margin: 0;
}

.product-details__unit-price--hidden,
.cart__item-unit-price--hidden,
.order-details__unit-price--hidden {
  display: none;
}

/* #Surface Pick-up
================================================== */
.surface-pick-up {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
.surface-pick-up.surface-pick-up--loading {
  visibility: hidden;
  opacity: 0;
}

.surface-pick-up-embed {
  --surface-pick-up-embed-theme-success-color: #099E4D;
  --surface-pick-up-embed-theme-error-color: #DE3618;
  --surface-pick-up-embed-theme-paragraph-font-size: 14px;
  --surface-pick-up-embed-theme-paragraph-smaller-font-size: 12.25px;
  --surface-pick-up-embed-theme-body-font-weight-bold: 600;
  --surface-pick-up-embed-theme-body-text-color: #363636;
  --surface-pick-up-embed-theme-link-text-decoration: underline;
  --surface-pick-up-embed-row-gap: 10px;
  --surface-pick-up-embed-column-gap: 10px;
  margin-bottom: 1.5rem;
}

.surface-pick-up-item {
  --surface-pick-up-item-theme-success-color: #099E4D;
  --surface-pick-up-item-theme-error-color: #DE3618;
  --surface-pick-up-item-theme-paragraph-font-size: 14px;
  --surface-pick-up-item-theme-paragraph-smaller-font-size: 12.25px;
  --surface-pick-up-item-theme-body-font-weight-bold: 600;
  --surface-pick-up-item-theme-body-text-color: #363636;
  --surface-pick-up-item-theme-border-color: rgba(13, 13, 13, 0.5);
  --surface-pick-up-item-theme-link-text-decoration: underline;
  --surface-pick-up-item-row-gap: 0.8rem;
  --surface-pick-up-item-column-gap: 5px;
  --surface-pick-up-item-gap: 22px;
}

.surface-pick-up__modal.fancybox-content {
  padding: 2rem;
  background: #fff;
  display: inline-block;
  margin: 0;
  width: auto;
  max-width: 600px;
  overflow: auto;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.surface-pick-up__modal.fancybox-content .fancybox-close-small svg {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.surface-pick-up__modal-header {
  display: flex;
  flex-direction: column;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.5);
}

.surface-pick-up__modal-title {
  font-family: Nunito, sans-serif;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 5px;
}

.surface-pick-up__modal-subtitle {
  font-size: 14px;
}

button.surface-pick-up-embed__modal-btn {
  font-family: inherit;
  font-size: smaller;
  font-weight: normal;
  text-transform: none;
}
button.surface-pick-up-embed__modal-btn:hover {
  background: none;
}
button.surface-pick-up-embed__modal-btn:active {
  box-shadow: none;
}

.surface-pick-up-embed__in-stock-icon,
.surface-pick-up-embed__out-of-stock-icon {
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.4em;
}

.surface-pick-up-item__pick-up-location {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: initial;
  text-transform: none;
}

.surface-pick-up-item__address-info {
  font-size: 0.85em;
  line-height: 1.5;
}

.surface-pick-up-item__in-stock-icon,
.surface-pick-up-item__out-of-stock-icon {
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.4em;
}

.surface-pick-up-item__pick-up-distance {
  padding-left: 5rem;
}

.surface-pick-up-item:last-child {
  padding-bottom: calc(var(--surface-pick-up-item-gap) / 2);
}

h3.surface-pick-up-embed__location-availability,
h3.surface-pick-up-item__pick-up-location {
  font-size: 14px;
  font-family: Figtree, sans-serif;
  letter-spacing: 0;
  border-bottom: none;
  padding-bottom: 0;
  text-transform: none;
  line-height: 1.8em;
}

.surface-pick-up-item__header {
  align-items: center;
}

/* #Product rating
================================================== */
.rating {
  display: flex;
  align-items: center;
}

.rating__star-wrapper {
  display: flex;
  margin-bottom: 3px;
}

.icon-star-background {
  transform: scaleX(var(--rating-scale, 0));
}

.icon-star-reference {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
}

.rating__star {
  width: 20px;
  height: auto;
}

.rating__star-1 {
  --rating-scale: calc(var(--rating-value));
}

.rating__star-2 {
  --rating-scale: calc(var(--rating-value) - 1);
}

.rating__star-3 {
  --rating-scale: calc(var(--rating-value) - 2);
}

.rating__star-4 {
  --rating-scale: calc(var(--rating-value) - 3);
}

.rating__star-5 {
  --rating-scale: calc(var(--rating-value) - 4);
}

.rating__text {
  display: none;
}

.rating__count {
  margin: 0 0 0 5px;
}

@media (forced-colors: active) {
  .rating__star-wrapper {
    display: none;
  }
  .rating__text {
    display: block;
  }
}
/* Faceted Filtering - Collection Template */
.faceted-filters__container {
  display: none;
}
@media only screen and (min-width: 799px) {
  .faceted-filters__container {
    display: block;
  }
}

.faceted-filters-modal__wrapper {
  display: block;
  margin-left: 0px !important;
  margin-right: 5px !important;
}

.filter-button-wrap .faceted-filters-modal__wrapper + .column {
  margin-left: 5px !important;
  margin-right: 0px !important;
}
@media only screen and (min-width: 799px) {
  .faceted-filters-modal__wrapper {
    display: none;
  }
}

.faceted-filters-modal__link {
  width: 100%;
  background-color: transparent;
  border-radius: 100px;
  color: #FF6F6F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #FF6F6F;
}

.faceted-filters__container.fancybox-content {
  width: 100%;
  height: 100%;
  padding: 24px;
}
.faceted-filters__container.fancybox-content li {
  list-style: none;
}

ul.faceted-filters__filter {
  margin-left: 0;
}

.faceted-filters__heading {
  margin-top: 0;
  margin-bottom: 8px;
}

.faceted-filters__filter-range {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  width: 100%;
}

.faceted-filters__filter-range--from,
.faceted-filters__filter-range--to {
  flex: 1 0 7rem;
}

.faceted-filters__filter-range-label {
  color: #1A1A1A;
  font-weight: 500;
}

.faceted-filters__filter-range-wrapper {
  position: relative;
}

.faceted-filters__filter-range-submit {
  width: 100%;
  text-transform: initial;
  color: #FF6F6F;
  padding: 16px;
  border-color: #FF6F6F;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.016px;
  font-weight: 500;
  font-family: "Satoshi-Variable", sans-serif;
  transition: all 0.25s ease 0s;
}

.faceted-filters__filter-range-submit:hover {
  background-color: #FF6F6F;
  color: white;
  transition: all 0.25s ease 0s;
}

@media(min-width: 1440px) {
  .faceted-filters__filter-range-submit {
    font-size: 20px;
  }
}

.faceted-filters__filter-range-currency {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}

.faceted-filters__filter-range-input[type=number] {
  padding-left: 1.25rem;
}
.faceted-filters__filter-range-input::placeholder {
  color: currentColor;
  opacity: 0.6;
}

.faceted-filters__filter-list {
  height: 100%;
  max-height: 300px;
  overflow-y: auto;
}

.faceted-filters__filter-list::-webkit-scrollbar {
  display: none;
}

.faceted-filters__filter-list-item a.faceted-filters__filter-link {
  display: flex;
  color: #363636;
}
.faceted-filters__filter-list-item a.faceted-filters__filter-link:visited {
  color: #363636;
}
.faceted-filters__filter-list-item a.faceted-filters__filter-link:hover, .faceted-filters__filter-list-item a.faceted-filters__filter-link:active {
  color: #7f8c8d;
}
.faceted-filters__filter-list-item a.faceted-filters__filter-link[data-disabled] {
  cursor: default;
  opacity: 50%;
}
.faceted-filters__filter-list-item a.faceted-filters__filter-link[data-disabled]:hover {
  color: currentColor;
}

li.faceted-filters__filter-list-item {
  list-style: none;
  margin: 0px;
}

.faceted-filters__filter-list-item-text {
  font-weight: 500;
  padding-bottom: 0;
  margin-left: 6px;
  cursor: pointer;
  font-size: 16px;
}

.filter-count {
  color: rgba(26, 26, 26, 0.6);
  font-size: 14px;
}

[data-disabled] .faceted-filters__filter-list-item-text {
  cursor: default;
}

.faceted-filters__filter-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid rgba(26, 26, 26, 0.2);
  outline-offset: -1px;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  min-width: 13px;
  width: 13px;
  height: 13px;
  margin-top: 6px;
}

[data-disabled] .faceted-filters__filter-checkbox {
  cursor: default;
}

.faceted-filters__filter-checkbox:checked:after {
  content: "✔";
  color: currentColor;
  background: transparent;
  font-size: 13px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(1px, -1px);
}

.svg-icon.icon-filter-check {
  display: none;
  margin-right: 0;
}

.faceted-filters__filter-checkbox[data-filter-checked] .icon-filter-check {
  display: block;
}

/* Active Filter Tags */
.collection-page__filters--active {
  display: block;
}
.collection-page__empty .collection-page__filters--active {
  margin-bottom: 12px;
}

.search-page__filters--active {
  display: block;
}
.collection-page__empty .search-page__filters--active {
  margin-bottom: 12px;
}

.active-filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 8px;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

a.active-filter-group__item {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  padding: 8px;
  color: #363636;
  cursor: pointer;
  background-color: transparent;
}
a.active-filter-group__item::after {
  width: 11px;
  height: 11px;
  margin-bottom: 2px;
  line-height: 1;
  content: url('data:image/svg+xml,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 9L9 1M9 9L1 1" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.active-filter-group__item-wrapper {
  display: inline-block;
  margin: 0;
  padding-top: 0;
  vertical-align: text-bottom;
  background-color: rgba(54, 54, 54, 0.1);
  border-radius: 3px;
  /* Safari fallback for 'gap' property */
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .active-filter-group__item-wrapper {
    margin-right: 8px;
  }
}

.active-filter-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  /* Safari fallback for 'gap' property */
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .active-filter-text {
    margin-right: 8px;
  }
}

.active-filter-group__clear-all {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 8px;
}

/* #Complementary products
================================================== */
.complementary-products {
  --slide-item-padding: 0;
  --slide-item-outer-gap: 1rem;
  --slide-item-inner-gap: 1rem;
  --slide-item-border-thickness: 0;
}

.complementary-products__container.complementary-products__container--grid {
  margin: 1.25rem 0 1rem;
}
.complementary-products__container.complementary-products__container--slider {
  margin: 1.25rem 0 2rem;
}
.product-block--first .complementary-products__container {
  margin-top: 0;
}

.complementary-products__slider .flickity-viewport {
  margin-bottom: 1rem;
}
.complementary-products__slider.flickity-enabled {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.complementary-products__slider .flickity-button {
  position: relative;
  padding: 0;
  transform: none;
  opacity: 0.5;
  background: none;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.complementary-products__slider .flickity-button:hover {
  opacity: 1;
}
.complementary-products__slider .flickity-button.next {
  margin-left: 1.25rem;
}
.complementary-products__slider .flickity-button.previous {
  margin-right: 1.25rem;
}
.complementary-products__slider .flickity-button-icon {
  height: 30px;
  width: 30px;
  fill: #363636;
}

.complementary-products__title {
  font-family: Figtree, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin: 1.25rem 0 0.75rem;
  letter-spacing: 0;
  text-transform: none;
}
.product-block--first .complementary-products__title,
.complementary-products__title + .complementary-products__container {
  margin-top: 0;
}

.complementary-product__name {
  font-family: Figtree, sans-serif;
  font-weight: 500;
  text-transform: none;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  line-height: 20px;
}

.complementary-product__price-text {
  font-weight: bold;
  font-style: italic;
  font-size: 90%;
}
.complementary-product__price-text.complementary-product__price-text--now {
  display: none;
}
.complementary-product--on-sale .complementary-product__price-text.complementary-product__price-text--from {
  color: #fa7268;
}

.complementary-product__price {
  font-weight: bold;
  color: #363636;
}
.complementary-product--on-sale .complementary-product__price {
  color: #fa7268;
}

.complementary-product__unit-price {
  font-size: smaller;
  color: #363636;
}

.complementary-product__price-wrapper {
  font-size: 15px;
  margin-bottom: 0.5rem;
}

.complementary-product__price-compare {
  text-decoration: line-through;
  color: #363636;
  font-style: italic;
}

.complementary-product__name-link {
  color: #363636;
}

.complementary-product__image {
  flex: 0 0 25%;
}
@media only screen and (min-width: 481px) {
  .complementary-product__image {
    flex-basis: 20%;
  }
}
@media only screen and (min-width: 799px) {
  .complementary-product__image {
    flex-basis: 30%;
  }
}
@media only screen and (min-width: 1025px) {
  .complementary-product__image {
    flex-basis: 25%;
  }
}
@media only screen and (min-width: 1401px) {
  .complementary-product__image {
    flex-basis: 20%;
  }
}

.complementary-product__details {
  flex-grow: 1;
}

.age-gate {
  z-index: 10001;
}

.age-gate__heading {
  font-family: Nunito, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #363636;
  display: block;
  letter-spacing: 1px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* #Font-Face
================================================== */
/*  This is the proper syntax for an @font-face file.
    Upload your font files to Assets and then
    copy your FontName into code below and remove
    comment brackets */
/*  @font-face {
      font-family: 'FontName';
      src: url('FontName.eot');
      src: url('FontName.eot?iefix') format('eot'),
           url('FontName.woff') format('woff'),
           url('FontName.ttf') format('truetype'),
           url('FontName.svg#webfontZam02nTh') format('svg');
      font-weight: normal;
      font-style: normal; }
*/
/* #Custom Styles
================================================== */
@media (min-width: 798px){
.head-wrap {
display:flex;
justify-content:space-between;
  width:100%;
}
.secondary-logo--true {
flex:0 0 15%
}
.search-wrap {
/*flex: 0 0 65%;*/
display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.search-wrap form {
padding-top:0!important;
  width:80%;
}
.head-wrap .five-sixths {
flex: 0 0 15%;
  display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
 }
.header .section {
    width: 1320px;
    max-width: 100%;
 }
  .flex-child-l form.search input[type=text] {
    width: 80%;
    display: inline-block;
    margin-right: unset;
}
  .flex-child-l form input {
    background: #333;
    border-radius: 25px;
    color: #fff!important;
}
      .ico-wrap {
      margin-top:80px;
    }
.CAD:before {
content:"";
background:url(/cdn/shop/files/canada.svg);
display:inline-block;
    height: 17px;
    width: 17px;
    margin-bottom: -3px;
    margin-right: 4px;
}
.GBP:before {
content:"";
background:url(/cdn/shop/files/united-kingdom.svg);
display:inline-block;
    height: 17px;
    width: 17px;
    margin-bottom: -3px;
    margin-right: 4px;
}
.USD:before {
content:"";
background:url(/cdn/shop/files/united-states.svg);
display:inline-block;
    height: 17px;
    width: 17px;
    margin-bottom: -3px;
    margin-right: 4px;
}
  .disclosure__toggle {
    display:flex;
    white-space:nowrap;
  }
}
.mobile-search-bar {
  background:#000;
}
.mobile-search-bar form input {
    background: transparent;
    border-radius: 25px;
    color: #fff!important;
    height: 44px!important;
    margin-bottom: 3px!important;
}
.dropdown.animated.fadeIn.dropdown-wide, .dropdown.animated.fadeIn  {
    padding-top: 0px!important;
    margin-top: 16px;
}
@media (min-width:1201px){
   .collection-template-section .featured-image--true {
    margin-top:168px;
  }
   .nav a, .nav a:visited, .nav a:active {
    font-size:16px
  }
   .promo-banner {
    top:183px;
  }
}
@media (min-width:1025px) and (max-width:1200px){
  .nav a, .nav a:visited, .nav a:active,  .nav summary {
    font-size:14px
  }
  .header__nav-item:first-child {
    display:none
  }
   .promo-banner {
    top:183px;
  }
   .collection-template-section .featured-image--true {
    margin-top:160px;
  }
}
@media (max-width:1024px){
  .is_desktop {
    display:none !important;
  }
   #header {
    display: block;
  }
  .header {
    display: none;
  }
  .add-to-cart-wrap.is_mobile {
    display:none;
    width:100%;
    max-width: 400px;
    margin:auto;
  }
  p.add-to-cart-wrap:not(.mob-adj) input.add_to_cart {
    max-height: 45px!important;
    margin-bottom: 0;
    font-size: 18px !important;
 }
  .continue_shopping.is_mobile {
    display:none;
    width: 100%;
    max-width: 400px;
    border: 1px solid salmon;
    border-radius: 100px;
    margin: 10px auto 38px auto;
    font-weight: 500;
    text-transform: initial;
  }

  .cart-section-top .breadcrumb-with-icon{
    display: none;
  }
   
}
@media (min-width:1025px){
  .is_mobile {
    display:none;
  }
  .gallery__image .image-element__wrap {
    max-width:unset!important;
  }
  .is_mobile {
    display:none !important;
  }
.mens-womens .fst {
    border-right:4px solid white;
  }
.mens-womens .scnd {
    border-left:4px solid white;
  }
 
  .gallery-brands  .fst {
    margin-right:5px;
  }
  .gallery-brands .scnd {
    margin-right:4px;
      margin-left:4px;
  }
  .gallery-brands .thrd{
    margin-right:4px;
      margin-left:4px;
    }
  .gallery-brands .ffth{
   margin-left:4px;
  }
  .gallery-brands {
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 10px;
 }
 .gallery-brands .one-fourth {
    width: 100%!important;
 }
}
@media (max-width:798px){
.mens-womens, .gallery-brands {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 10px;
 }
}
.header {
  top:0!important
}
.owler {
  color:#000!important;
  }
.usflag:after {
    content: "";
    background: url(/cdn/shop/files/usa.svg);
    height: 16px;
    width: 16px;
    display: inline-block;
    background-size: contain;
    margin-right: 3px;
    margin-bottom: -4px;
}
.index .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 5px!important;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0;
}
.index .slick-dots li.slick-active {
  background:#000;
  opacity:1
}
.index .slick-dots li {
  background:#000;
  opacity:.4 
}
@media (min-width:1025px){
     .boost-pfs-filter-product-bottom-inner .price, .cardwrap .price {
         display:flex;
         flex-wrap:wrap;
       align-items:flex-end;
    }
     .price.sale_price.coral, .order_wrap .boost-pfs-filter-product-item-sale-price {
         order:1;
         font-size:22px;
         line-height: 110%;
         font-weight: 400;
         font-style: normal;
    }
   .dizz {
     color:#363636!important;
     font-size:90%!important
   }
   .wrapit {
     display:flex;
     margin-top:-9px;
   }
     .order_price, .dizz {
         order:2;
         width:54%;
         font-size: 1.1rem;
        font-weight: 400;
        font-style: normal;
        opacity:.8;
    }
     .yousave {
         order:3;
         width:100%;
         line-height: .75rem;
         margin-bottom: 13px;
         margin-top:2px;
    }
   .yspct {
     margin-left:-10px;
   }
   .yousave strong, .yousave small {
     font-weight:500;
     font-size: 16px;
     line-height: 130%;
     color: #363636;
   }
}
 @media (max-width:1025px){
   
     .boost-pfs-filter-product-bottom-inner .price, .cardwrap .price {
         display:flex;
         flex-wrap:wrap;
         align-items:flex-end;
    }
     .price.sale_price.coral, .order_wrap .boost-pfs-filter-product-item-sale-price  {
        order:1;
       font-size: 20px;
       line-height: 100%;
         font-weight: 400;
         font-style: normal;
    }
    .dizz {
     color:#363636!important;
     /*font-size:98%!important;*/
      margin-top:-.5px;
   }
   .wrapit {
     display:flex;
     margin-top:-9px;
   }
     .order_price, .dizz {
        order:2;
        font-size: 19px;
        line-height: 24px;
        font-family: "sofia-pro", sans-serif;
        font-weight: 400;
        font-style: normal;
        margin-top:-6px;
    }
     .yousave {
        order:3;
      }
    .yspct {
     margin-left:6px;
   }
   .yousave strong, .yousave small  {
     font-weight:500;
     font-size:.85rem;
     /*font-family:'sofia-pro'*/
   }
   .order_wrap .boost-pfs-filter-product-item-price {
     display:flex;
     /*flex-direction:column*/
   }
}
.cardwrap {
  margin-top:10px;
}
.coral {
    color: #fa7268;
}
.boost-pfs-filter-product-item-price .boost-pfs-filter-product-item-sale-price {
    color: #f30000;
    display: inline-block;
}
.boost-pfs-filter-product-item-price s {
    color: #2229;
    margin-left: 5px;
    display: inline-block;
    opacity: .8;
}
.collection .order_price .strike {
    font-size: 18px;
    color: #1a1a1a99;
    margin-left: 12px;
}
.cardwrap .order_price .strike {
    font-size: 18px;
    color: #1a1a1a99;
    margin-left: 12px;
}
.order_price .strike {
    font-size: 22px;
    color: #1a1a1a99;
    margin-left: 12px;
}
.add-from-collection {
    background: #fa7268;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    padding:12px;
    position:relative;
    margin: 0px;
    transition: all 0.25s ease 0s;
    cursor: pointer;
}

.add-from-collection.soldout {
  pointer-events: none;
  cursor: not-allowed;
}

.add-from-collection:hover,
.add-from-collection:hover input,
.selectoptions:hover {
  transition: all 0.25s ease 0s;
  background: #F75E5E;
}


.add-from-collection .smaic {
  margin: 0px;
}
.loadmore-wrap {
  margin-top: 12px !important;
}

.load-more-btn {
  min-width: 100% !important;
  background-color: transparent !important;
  border: 1px solid #FF6F6F !important;
  padding: 15px !important;
  font-size: 18px !important;
  line-height: 100% !important;
  color: #FF6F6F !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
}

.featured-collection-slider .load-more-btn {
  min-width: 130px !important;
  margin: 0px;
  transition: all 0.25s ease 0s;
}

@media(min-width: 568px) {
  .load-more-btn {
    min-width: 248px !important;
  }
}

@media(min-width: 768px) {
    .featured-collection-slider .load-more-btn {
       min-width: 200px !important;
    }
}

@media(min-width: 1024px) {
  .featured-collection-slider .load-more-btn:hover {
    background-color: #F75E5E !important;
    color: white !important;
  }
}

@media(min-width: 1440px) {
  .load-more-btn {
    font-size: 20px !important;
    padding: 16px !important;
  }
}
.product_name,
.N9ProductUpsellsModalBody_QuickView h3 {
  margin: 0px;
  font-family: 'Satoshi-Variable', sans-serif;
  margin-top: 8px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: -0.02px;
  line-height: 110%;
  font-size: 18px;
  color: #1A1A1A;
}

@media (min-width:768px){
  h1.product_name,
  .N9ProductUpsellsModalBody_QuickView h3 {
    margin-top: 0px;
    margin-bottom: 24px;
    text-align: left;
    font-size: 22px;
}
  .header.nav-down-forced,
   #header.nav-down-forced{
  top:0px !important;
}
  .t-text {
    padding-left: 5%;
    flex: 0 0 35%;
    padding-right: 10%;
}
}
 @media (max-width:1024px){
   #header {
 
  background: #000000;
  border-bottom: 1px solid #0d0d0d;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 74px;
  height: 74px;
  padding: 0 50px;
  z-index: 5001;
  width: 100%;
  opacity: 0.95;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
   #header {
    height: 74px;
    position: fixed;
    transition: top 0.2s ease-in-out;
    width: 100%;
}
.nav-up {
    top: -74px;
}


   /*  .mobile-header {
         position:fixed!important;
         top:0 
    }*/
     #header {
         display: block;
         z-index:10005 
    }
     .darkHeader {
        position:relative!important
    }
}
@media (min-width:1025px){
  .header {
    height: 183px;
    position: fixed;
    transition: top 0.2s ease-in-out;
    width: 100%;
   background: #000000;
}
.nav-up {
    top: -183px!important;
} 
  .Footer__Aside {
    float: left;
    width: 100%;
    padding-top: 15px;
    text-align: center;
    border-top: #ddd solid 1px;
    margin-top: 25px;
}
}
.badge-wrap  {
  flex-direction:column
}
.shopify-section--image-with-text .title {
    font-family: eds-market-main-script;
    text-transform: none;
    line-height: 30px;
    margin-top: 8px!important;
}
.t-image {
  margin-left:0!important;
  margin-right:0!important;
 }
 .action__button {
   border-radius:25px;
 }
 .Footer__Block {
    width: 20%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}
.Footer__Title {
    font-size: 20px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 700;
    margin: 0 0 3px;
}


.Linklist__Item {
    width: 100%;
  margin:0;
  padding:0;
}
li.Linklist__Item a {
    font-size: 14px;
    margin:0;
    padding:0;
}
footer form.needsclick .go3894874857 {
    margin-left: -48px;
    height: 30px!important;
    width: 30px;
    padding: 0!important;
    margin-top: -8px!important;
  margin-bottom:7px;
  font-size:0!important
}
footer form.needsclick .go3894874857:before {
  content:"";
  background:url(/cdn/shop/files/arrow-right.svg?v=1700485032);
  background-size:contain;
    height:16px;
    width:16px;
    display:block;
    margin-left:7px;
}
.Footer__PaymentList {
    margin: 0;
    padding: 0;
    list-style: none;
    display:flex
}
.Footer__PaymentList li {
    margin-right: 3px;
    padding: 0;
    list-style: none;
}
.sort-footer {
    max-width: 1500px;
    margin: 0 auto;
}

.yousave {
  margin-top: 8px;
  width: 100%;
}

.product .yousave {
  margin-top: 0px;
  font-size: 16px;
  color: #1A1A1A;
}

@media (min-width:768px){
  .product .yousave {
    font-size: 16px;
    margin-top: 10px;
}
footer .page-width-full {
  margin: 0 40px
 }
  .Footer__Block--newsletter {
    width: 40%!important;
}
 
}

.collection h1 {
  text-align: left;
  padding: 0px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-size:32px;
  margin-top: 24px;
}

@media(min-width: 1440px) {
  .collection h1 {
    margin-top: 42px;
    font-size: 48px;
  }
}
@media (max-width: 767px){
  
.Footer__Inner {
    display: flex;
    flex-direction: column;
 }
  .Footer__Block {
    width: 100%;
    margin: 0 0 9px;
    border-bottom: #ddd solid 1px;
    padding-bottom: 5px;
}
  .Footer__Block--links {
    order: 2;
}
  .Footer__Block--newsletter {
    order: 1;
}
  .sort-footer {
    width:95%;
  }
}
#shopify-product-reviews {
  display: none!important;
}
.collection h1 {
  font-family: 'eds-market-main-script';
  text-transform: none;
  font-weight: 700;
 
}
.collection .jdgm-prev-badge__text:before {
    content: "(";
    display: inline-block;
    /*margin-right: -4px;*/
}

.collection .jdgm-prev-badge__text:after {
    content: ")";
    display: inline-block;
    /*margin-left: -3px;*/
}
.thumbnail__content .jdgm-prev-badge__text:before {
    content: "(";
    display: inline-block;
}
.thumbnail__content .jdgm-prev-badge__text:after {
    content: ")";
    display: inline-block;
}

.strike {
    text-decoration: line-through;
}
.product .salep {
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.02px;
}

@media(min-width: 1024px) {
  .product .salep {
    font-size: 22px;
    letter-spacing: -0.022px;
  }
}
.product .vendor {
  margin-bottom:0px;
}

.product .vendor a {
  color: #767676;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -.014px;
  transition: all 0.25s ease 0s;
}

.product .vendor a:hover {
  color: #FF6F6F;
  transition: all 0.25s ease 0s;
}

@media (max-width:767px){
  .index .slick-slide .title.weight {
    font-size: 12px;
    line-height: 14px;
    display: block;
    font-weight: 600;
    color: #000;
    min-height: 55px;
}
  .banner1 .slick-slide {
    margin: 0 10px;
  }
  .link-caro {
    font-size: 12px;
    line-height: 130%;
    display: flex !important;
    flex-direction: column;
    text-align: center;
    border: 0.5px solid #EAEAEA;
    background: #FFFFFF;
    padding: 12px 4px;
    min-height: 126px!important;
    margin-right:5px;
    box-shadow: -2px -2px 5px 0px rgba(26, 26, 26, 0.05), 2px 2px 5px 0px rgba(26, 26, 26, 0.05);
    box-sizing: border-box;
}
  .circlelink .slick-list {
    padding: 10px 0px;
  }
  .circlelink .slick-track {
    /*margin-left:-8px;*/
  }
.circlelink img {
  display: block;
  max-height: 50px;
  max-width:70px;
  object-fit: contain;
}
  .circlelink {
    background: #fff;
}
.collection-slide {
    overflow-x: hidden;
  padding-top: 20px;
}
  h1.product_name {
    margin-bottom: 12px;
    text-align: left;
}
  .product_name {
    font-family: Avenir Next;
    text-transform: capitalize;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.2px;
}
  .page .container.main-wrapper {
    padding-top:60px;
  }
  .page h1 {
    font-size: 32px;
    max-width: 80%;
    line-height: 38px;
  }
      .owner-pic {
        text-align: center;
    }
  .Footer__Title {
    position:relative
  }
  .Footer__Title:after {
    content: "";
    background: url(/cdn/shop/files/down-arrow.svg?v=1700325050);
    width: 14px;
    height: 14px;
    display: inline-block;
    position: absolute;
    right: 0;
    background-size: contain;
    top: 4px;
}
}
.product .order_price .strike {
  margin-left:18px;
}

h2.title.recommended-title,
.jdgm-rev-widg__title {
  font-weight: 500;
  color: #1A1A1A !important;
  line-height: 130%;
  font-family: "Satoshi-Variable", sans-serif;
  font-size: 22px !important;
  text-align: left;
  text-transform: initial;
}

.jdgm-rev-widg__summary {
  width: 100% !important;
}

.jdgm-rev-widg__summary-inner {
  width: 100%;
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.jdgm-rev-widg__summary-inner * {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100% !important;
  color: #1A1A1A;
}

.jdgm-rev-widg__summary-stars {
  display: flex;
  flex-direction: row-reverse;
}

.jdgm-rev-widg__summary-average {
  margin-right: 10px !important;
}

.jdgm-row-stars {
  border: 0px !important;
  flex-direction: column;
  gap: 32px;
  max-width: 400px;
}

.jdgm-histogram.jdgm-temp-hidden,
.jdgm-widget-actions-wrapper {
  border:0px !important;
}

.jdgm-histogram.jdgm-temp-hidden {
  width: 100% !important;
  justify-content: start !important;
}

.jdgm-histogram__row {
  display: flex !important;
  width: 100% !important;
}

.jdgm-widget-actions-wrapper {
  width: 100% !important;
}

.jdgm-write-rev-link {
  margin-left: 0px !important;
  max-width: 360px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 100% !important;
  font-family: "Satoshi-Variable", sans-serif !important;
  transition: all 0.25s ease 0s;
}

.jdgm-rev-widg__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.jdgm-rev-widg__header .jdgm-rev-widg__title {
  order: 1;
  flex: 1 1 100%;
}

.jdgm-rev-widg__header .jdgm-row-carousel {
  order: 3;
}

.jdgm-rev-widg__header .jdgm-row-stars {
  order: 2;
}

.jdgm-rev-widg__header .jdgm-row-readmore {
  display: flex;
  justify-content: center;
  flex: 1 1 100%;
  order: 4;
}

.jdgm-rev-widg__header  .jdgm-row-readmore  .jdgm-btn.jdgm-btn--dark {
  width: 100%; !important;
  max-width: 360px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 100% !important;
  font-family: "Satoshi-Variable", sans-serif !important;
  transition: all 0.25s ease 0s;
  background-color: #fa7268 !important;
  color: white !important;
  border: 0px !important;
}

.jdgm-rev-widg__header  .jdgm-row-readmore  .jdgm-btn.jdgm-btn--dark:hover {
  transition: all 0.25s ease 0s;
  opacity: 1 !important;
  background-color: #F75E5E !important;
}

.jdgm-rev-widg__header .jdgm-form-wrapper {
  flex: 1 1 100%;
  order: 5;
}

.jdgm-rev-widg__header .jdgm-form-dynamic-wrapper {
  order: 6;
}

.jdgm-rev__timestamp,
.jdgm-rev__author,
.jdgm-rev__title,
.jdgm-rev__body,
.jdgm-rev__read-full {
  font-size: 14px !important;
  color: #1A1A1A !important;
  line-height: 100% !important;
  font-weight: 500 !important;
}

.jdgm-rev__body { 
  font-weight: 400 !important;
}

.jdgm-glider-slide .jdgm-row-rating {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.jdgm-rev-carousel .jdgm-rev__actions, .jdgm-rev-carousel .jdgm-rev__read-full {
  position: static !important;
}

.jdgm-rev-carousel .jdgm-rev:after {
  display: none !important;
}

.jdgm-rev-carousel .jdgm-rev {
  box-shadow: none !important;
  min-height: 290px !important;
}

.jdgm-rev-carousel .jdgm-rev:not(:first-child):before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 0.7px;
  height: 100%;
  background-color: #EAEAEA;
}

.jdgm-rev__votes {
  float: unset !important;
}

.jdgm-rev-carousel-prev, .jdgm-rev-carousel-next {
  transform: translateY(-50%) !important;
}

.jdgm-row-carousel .jdgm-glider-track {
  margin-bottom: 0px !important;
}

.jdgm-rev-widg {
  padding: 24px 20px !important;
}

@media(min-width: 1024px) {

  .jdgm-widget:not(.jdgm-review-widget--small,.jdgm-review-widget--medium) .jdgm-row-stars {
    padding: 0px !important;
  }

  .jdgm-rev-carousel .jdgm-rev {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }

  .jdgm-rev-widg__header {
    justify-content: space-between;
  }

  .jdgm-rev-widg__header .jdgm-row-readmore {
    justify-content: start;
  }

  .jdgm-rev__timestamp,
  .jdgm-rev__author,
  .jdgm-rev__title,
  .jdgm-rev__body,
  .jdgm-rev__read-full {
    font-size: 14px !important;
  }
  
  .jdgm-rev-widg__header .jdgm-row-carousel {
    width: 63%;
  }

  .jdgm-rev-widg__header  .jdgm-row-stars {
    width: 35%;
  }
}

@media (min-width:768px){
  .cart-related, .recommended-title {
    font-size: 22px!important;
    margin: 0 0 1em!important;
    white-space: nowrap;
}
  .owner-pic {
    float: left;
    margin-right: 20px;
}
  #collection-slide {
    display: none;
}
}
.page h1 {
  font-family: 'eds-market-main-script';
  text-transform: none;
}

.product .modal_price .sale .current_price .money {
  font-size: 24px;
  line-height: 130%;
  font-weight: 700;
}

.product .modal_price .was_price .money{
  font-size: 22px;
  color: #000;
  margin-left: 10px;
}

@media(min-width: 1024px) {
  .product .modal_price .sale .current_price .money {
    font-size: 22px;
  }

  .product .modal_price .was_price .money{
    /*font-size: 18px;*/
  }
}

.fly-to-cart-image{
  height:auto !important;
  z-index:10100;
  transition:all 500ms;
  transition-delay:30ms;
  position:fixed;
}


.fly-to-cart-image.flying{
  top:40px !important;
  width:25px !important;
  opacity:0.7;
}

.shake-animation-active{
  animation-name:shake-animation;
  animation-duration: 800ms;
}

@keyframes shake-animation {
  0% { translate:0px; }
  20%, 60% { translate:-5px; }
  40%, 80% { translate:5px; }
  100% { translate:0px; }
}

@media(max-width:767px){
  .fly-to-cart-image{
    top:25px !important;
    right:48px;
    left:auto !important;
    width:75% !important;
  }
  .fly-to-cart-image.flying{
    top:25px !important;
  }  
}
/* Cart */
@media (min-width:1025px){
.cart-related {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-flow: row wrap;
   justify-content:space-around;
}
  .cart-related .one-fourth {
    width: 31%;
}
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .cart-related .one-fourth {
        width: 31%;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cart-related {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-flow: row wrap;
   justify-content:space-around;
}
    .cart-related .one-fourth {
        width: 48%;
    }
}
@media (max-width:767px){
  .cart-related {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-flow: row wrap;
   justify-content:space-around;
}
    .cart-related .one-fourth {
    width: 48%;
}
}
.cart .thumbnail__title {
  white-space:normal;
}
.cart-related .image-element__wrap img {
    position: absolute;
    height: 100%;
    max-height: initial;
    object-fit: scale-down;
    width: 100%!important;
}
.cart-related .image-element__wrap {
    position: relative;
    padding-bottom: 100%;
}
.cart .jdgm-preview-badge .jdgm-star.jdgm-star {
    font-size: 14px;
}
.cart .jdgm-prev-badge__text {
    font-size: 15px;
}
.cart-related .thumbnail__title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 35px;
    font-weight: 600;
    line-height: normal;
    font-size: 14px;
    white-space: normal;
}
.cart .product-card-aftercode {
    font-size: 80%!important;
}
.cart .thumbnail form .btn, .thumbnail form .btn  {
  font-size:16px!important;
  font-family: "Satoshi-Variable", sans-serif !important;
  padding: 7px 8px;
  display:inline-block;
  line-height: 130% !important;
  font-weight: 500  !important;
  text-transform: initial !important;
  width: fit-content !important;
}
@media(min-width: 1024px) {
  .cart .thumbnail form .btn, .thumbnail form .btn  {
   font-size:16px!important;
  }
}

.smaic {
     width: 16px;
    height: 17px;
}
.selectoptions .smaic {
    margin:0  6px 0 0;
}

.cart-shipping__success {
  margin: 0px;
  margin-bottom: 8px;
  color: #fa7268;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
}

@media (min-width:768px){
.cart-shipping__numOuter:before, .cart-shipping__success:before {
    content: "$0";
    color: #1A1A1A99;
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 22px);
}
  .cart-shipping__numOuter:after, .cart-shipping__success:after {
    content: "$59";
    color: #1A1A1A99;
    display: block;
    position: absolute;
    right: 0px;
    top: calc(100% + 22px);
}
  .cart-shipping__success {
    font-size: 16px;
    position: relative;
}
}
@media (max-width:767px){
  .cart .is-flex.is-flex-wrap.has-no-side-gutter {
   flex-wrap:nowrap
}
  .cart h1 {
    margin-top: 30px;
    font-size: 22px;
  }
  .cart-shipping__numOuter:after, .cart-shipping__success:after {
    content: "$59";
    color: #1A1A1A99;
    display: block;
    position: absolute;
    right: 0px;
    top: calc(100% + 22px);
}
  .cart-shipping__numOuter:before, .cart-shipping__success:before {
    content: "$0";
    color: #1A1A1A99;
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 22px);
}
}
.cart-shipping__numOuter {
    position: relative;
}
.footer {
  max-width:100%;
}
 @media (max-width: 1024px) {
    #header a.mobile_logo {
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        font-size: 18px;
        line-height: 34px;
        z-index: 0;
        width: 50%;
        padding: 0;
    }
   #header a.mobile_logo .image-element__wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    height: 100%;
}
   #header a.mobile_logo img {
    max-width: 150px;
    max-height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain";
}
}
/* Tablet size fixes */
@media (min-width:768px) and (max-width:799px) {
  .badge-inner-new {
    background:#f4f4f4;
    display:flex;
    flex-direction:column;
    align-items:center;
    margin: 0 6px;
    padding:5px;
    font-size: 11px;
    line-height: 16px;
    font-weight: 600;
    font-family:open sans, sans-serif;
    flex: 0 0 15%;
      text-align:center;
  }
   .Footer__PaymentList {
    flex-wrap:wrap;
  }
}
@media (min-width:799px) and (max-width:1024px){
  .promo-banner {
    position: absolute;
    font-size: 11px;
    width: 100%;
    z-index: 200;
    margin-top: 79px;
}
  .mobile-search-bar {
    margin-top:59px;
  }
  .Footer__PaymentList {
    flex-wrap:wrap;
  }
    .badge-inner-new {
    background:#f4f4f4;
    display:flex;
    flex-direction:column;
    align-items:center;
    margin: 0 6px;
    padding:5px;
    font-size: 11px;
    line-height: 16px;
    font-weight: 600;
    font-family:open sans, sans-serif;
    flex: 0 0 15%;
      text-align:center;
  }
}
@media (min-width:1025px){
  . flex-child-l .search-form__input {
  background:#333!important
  }
    .badge-inner-new {
    background:#f4f4f4;
    display:flex;
    flex-direction:column;
    align-items:center;
    margin: 0 6px;
    padding:5px;
    font-size: 11px;
    line-height: 16px;
    font-weight: 600;
    font-family:open sans, sans-serif;
    width:177px;
  }
}
.trad-wrap {
  display:flex
}
.trad {
  font-family: 'sofia-pro';
    opacity: .6;
    font-size: 17px!important;
}
.cart .one-half .image-element__wrap img {
  height: 150px;
  width: auto;
}
.cart .is-flex.is-flex-wrap.has-no-side-gutter {
   margin-bottom:30px;
}
  @media (max-width:600px){
   .Footer__PaymentList {
    flex-wrap:wrap;
   }
     .order_price .strike {
    /*opacity: .8;*/
    line-height: 100%;
}
  }
  @media (max-width:400px){
    .owler {
      white-space:nowrap;
    }
  }
 .usflag:after {
  content:"";
  background:url(/cdn/shop/files/usa.svg);
  height:16px;
  width:16px;
  display:inline-block;
  background-size:contain;
  margin-right: 3px;
    margin-bottom: -4px;
}
@media (max-width:360px){
  .cart-shipping__numOuter {
    font-size:11px!important
  }
}
.cart h1 {
   font-family: eds-market-main-script;
   text-transform:none;
  font-weight: 400;
}
@media (max-width:767px){
.cart .one-whole {
   width:100%
 }
.cart .container .column {
   margin-left:0;
   margin-right:0;
 }
.cart_items {
  border:0px dotted red;
  margin-left:0!important;
  margin-right:0!important;
  width:100%!important
 }
.cart_items .image-element__wrap img {
    height: auto!important;
    width: 80px!important;
}
  .cright {
    flex: 0 0 70%
  }
  .cright p {
    line-height:20px;
  }
.cart_items  .cart_page_image {
    margin: 0rem 1rem 1rem 0!important;
}
  .qty-rem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
  }
}

.sidebar__block-faceted-search {
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}


.sidebar__block-heading.toggle {
  padding-top:15px;
  font-weight: 500 !important;
}
.sidebar__block-heading.toggle span {
  font-family: "Satoshi-Variable", sans-serif;
  font-size: 27px;
  font-weight: 400;
}

.sidebar__block-heading.toggle span[aria-expanded="true"] {
  font-size: 40px;
}

@media(min-width: 1440px) {
  .sidebar__block-heading.toggle {
    font-size: 18px;
    letter-spacing: -0.018px;
    line-height: 140%;
  }
}
.age .shopify-section--footer {
  display:none
}
@media (max-width:767px){
.landing .container .sixteen.columns, .landing .container .nine.columns, .landing .container .seven.columns {
  width:100%
}
.landing .container {
  width:92% 
 }
}
.jdgm-rev__icon, .jdgm-row-extra {
  display:none!important
}
@media (min-width:768px){
.product div.content {
    padding: 183px 0px 0px 0px;
}
}
.landing .product-card-aftercode {
     display:none 
}
 .landing .salep {
     font-size:36px!important;
}
.landing .vendor {
  margin-bottom:0;
}
.landing .swatch .option_title {
    font-family: Raleway;
    font-size: 24px;
    text-transform: none;
    font-weight: 300;
}
 @media (min-width:768px){
     .landing .shopify-payment-button {
         margin-top:0 
    }
     .landing-btn-wrap img {
         height:45px 
    }
     .landing-btn-wrap {
         height:45px;
         background:#000;
         display:flex;
         border-radius:8px;
         width:250px;
         justify-content:center 
    }
}
 @media (max-width:767px){
   .landing #judgeme_product_reviews {
     margin-left:25px!important
   }
   .landing .badge-wrap {
    width: 92%!important;
    background: #f9f9f9;
   
}
   .landing .badge-mid {
      margin: 11px 17px 0 10px!important;
   }
     .landing-btn-wrap img {
         height:52px 
    }
     .landing-btn-wrap {
         height:52px;
         background:#000;
         display:flex;
         border-radius:8px;
         width:100%;
         justify-content:center;
       margin-bottom:8px;
    }
     .seven.columns.omega {
         margin-top:40px;
    }
     .landing .product-gallery__thumbnails .flickity-viewport {
         height:100px!important 
    }
}
 sp {
     display:none 
}
 .fuv {
     flex: 0 0 50% 
}
 .fuv .strike {
     font-size:24px 
}
 .fav {
     flex: 0 0 35% 
}
 .fus {
     flex: 0 0 100%;
     padding-top:14px;
}
 .fus strong small{
     font-size:20px;
     font-weight:600;
     padding-top:10px;
     font-family: Raleway;
}
 .landing .product_name {
     font-family: Raleway;
     font-size:24px;
     font-weight:400;
     line-height:28px;
}
 .landing .swatch-element.color label, .landing .swatch-element.color {
     border-radius:0 
}
 .landing .swatch .option_title {
     font-family: Raleway;
     font-size:24px;
     text-transform:none;
     font-weight:300;
}
 .landing .swatch-element.color {
     padding:0 
}
 .swatch_options:before {
     content:"";
     height:1px;
     width:100%;
     background:#000;
     display:block;
     margin-top: 27px;
     margin-bottom: 12px;
}
 .swatch_options:after {
     content:"";
     height:1px;
     width:100%;
     background:#000;
     display:block;
     margin-top: 27px;
     margin-bottom: 12px;
}
 .landing span.judge {
     display:block;
     margin-bottom:20px;
}
 .landing .jdgm-preview-badge .jdgm-star.jdgm-star {
     color:salmon;
     font-size:18px;
}
 .landing .jdgm-prev-badge__text {
     visibility: unset;
     font-size: 18px;
     padding-left: 5px;
}
 .landing-vid {
     margin-top:10px;
}
.notify_form:first-child {
  border:0px solid red;
}
.notify_form:last-child {
  border:0px solid blue;
  display:none;
}
.collection-pleasure-sleeves .collection-slide {
    overflow-x: hidden;
    margin-top: -22px;
}
.search h1 {
  font-family: eds-market-main-script;
  text-transform:none
}
@media (max-width:767px) {
  .search h1 {
    font-size:30px;
    margin-top:30px;
  }
  .product .action_button--secondary {
  border: 1px solid #fa7268;
    background: #fa7268;
    color: #fff;
    margin:10px auto;
    }
}
.shopify-payment-button__button--unbranded, .shopify-payment-button__button--branded {
  border-radius: 100px !important;
  min-height: 38px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
}

.product .action_button--secondary {
  border-radius: 100px !important;
  min-height: 38px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: initial !important;
}

.shopify-payment-button__button--branded .shopify-cleanslate div {
  min-height: 38px !important;
}

@media (min-width:768px){
  .product .action_button--secondary, .shopify-payment-button__button--unbranded {
    border: 1px solid #fa7268;
    background: #fa7268;
    color: #fff;
    transition: all 0.25s ease 0s;
  }

  .product .action_button--secondary:hover, .shopify-payment-button__button--unbranded:hover {
    border: 1px solid #F75E5E !important;
    background: #F75E5E !important;
    transition: all 0.25s ease 0s;
  }
}
.osm-container {
  margin-bottom:20px;
}
/* .sidebar__block:nth-of-type(3),.sidebar__block:nth-of-type(6), .sidebar__block:nth-of-type(7), .sidebar__block:nth-of-type(5) {
  display:none
} */
.cart .thumbnail__vendor {
  white-space: normal

}

.ts-icons-info {
  display: none;
  position: relative;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 30px;
}

.ts-icons-info.active {
  display: flex;
}

.ts-icons-close {
  background-color: transparent;
  padding: 0px;
  border: 0px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.ts-icons-text {
  margin-top: 8px;
  text-align: center;
  padding: 0px 20px;
}

.ts-icons-text * {
  margin: 0px;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.016px;
  font-weight: 400;
  color: #1A1A1A;
}

.ts-icons-text a {
  color: #FF6F6F;
  text-decoration: none;
}

.ts-icons__wrapper {
  margin-top: 16px;
}

.ts-icons-toggle {
  cursor: pointer;
}

.ts-icons-toggle.active {
  opacity: 0.8;
}

.ts-icons-info .ts-icons__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.016px;
}


@media(min-width: 1024px) {
  .ts-icons__wrapper {
    margin-top: 32px;
  }

  .ts-icons-text * {
    font-size: 16px;
  }
}

.collection .jdgm-row-media,
.collection .jdgm-widget-actions-wrapper,
.collection .jdgm-rev-widg__actions,
.collection .jdgm-all-reviews__body,
.collection .jdgm-all-reviews__footer,
.collection .jdgm-spinner,
.collection .jdgm-histogram__clear-filter {
  display: none !important;
}

body.collection .jdgm-all-reviews__body {
  display: block !important;
}

/* .jdgm-star,
.jdgm-histogram .jdgm-star {
  color: #FF6F6F !important;
} */

.collection .jdgm-histogram__frequency {
  min-width: min-content;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.014px;
  color: #1A1A1A !important;
}

.collection .jdgm-all-reviews-widget .jdgm-rev-widg__summary-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-left: 24px;
  margin-right: 24px;
}

.collection .jdgm-all-reviews-widget .jdgm-all-reviews__summary-stars {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.collection .jdgm-all-reviews-widget .jdgm-all-reviews__summary-average {
  margin-right: 10px;
}

.sidebar-filters-heading-mobile {
  margin: 0px;
  font-size: 18px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 130%;
  letter-spacing: -0.016px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}

.collection .jdgm-all-reviews-widget .jdgm-histogram__row {
  display: flex;
  align-items: center;
  padding: 0px 24px;
}

@media(min-width: 799px) {
  .collection .jdgm-widget.jdgm-widget.jdgm-all-reviews-widget,
  .sidebar-filters-heading-mobile {
    display: none;
  }
}

.collection_description-read-more,
.collection_description-read-less {
  color: #FF6F6F !important;
  text-decoration: underline;
  display: inline-block;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 130%;
  letter-spacing: -0.016px !important;
  cursor: pointer;
}

.collection_description-small.active {
  display: none;
}

.collection_description-big {
  display: none;
}

.collection_description-big.active {
  display: block;
}

.collection-filters .choices {
  width: 100%;
}

.collection-filters .choices__inner {
  box-sizing: border-box;
  border: 0px;
  padding-top: 13px;
  padding-bottom: 13px !important;
  background-color: transparent;
  border: 1px solid #363636;
  border-radius: 100px;
  padding-left: 20px;
  padding-right: 12px;
  min-height: 52px;
}

.collection-filters .choices.is-open .choices__inner {
  background-color: #FF6F6F;
}

.collection-filters .choices__list--single {
  padding: 0px;
}

.collection-filters .choices__list--single .choices__item {
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 500;
  line-height: 100%;
  font-size: 16px;
  letter-spacing: -0.016px;
  color: #1A1A1A;
}

.collection-filters .choices.is-open .choices__list--single .choices__item {
  color: white;
}

.collection-filters .choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent white;
}

.collection-filters .choices__list--dropdown, .choices__list[aria-expanded] {
  box-sizing: border-box;
  z-index: 3 !important;
}

.collection-filters .choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  color: #FF6F6F !important;
  background-color: white !important;
}

.collection-filters .choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 500;
  line-height: 100%;
  font-size: 16px !important;
  letter-spacing: -0.016px;
  color: #1A1A1A !important;
}

.collection .main-wrapper > .column {
  margin-left: 0px;
  margin-right: 0px;
}

@media(max-width: 797px) {
  .collection .main-wrapper {
    padding-top: 10px;
  }
}

.header-groups {
  background-color: black;
  z-index: 999;
  max-width: 100vw;
  width: 100%;
  transition: all 0.35s ease 0s;
  position: absolute;
  top: 0; 
}

.header-groups.scroll {
  transform: translateY(-100%);
  transition: all 0.35s ease 0s;
}

.header-groups.active {
  position: fixed;
  animation: animationHeader 0.25s linear forwards;
}

.header-groups.scroll .ts-header__search-wrapper--mobile,
.header-groups.scroll .ts-announcement  {
  display: none;
}

.header-groups.animate-hide-elements .ts-header__search-wrapper--mobile,
.header-groups.animate-hide-elements .ts-header__search-wrapper--mobile {
  animation: animationHeaderHide 0.25s linear forwards;
}

.header-groups.search-open .ts-header__search-wrapper--mobile {
  display: block;
  transform: translateY(-0%);
  pointer-events: all;
  opacity: 1;
}

.header-groups.animate-hide {  
  animation: animationHeaderHide 0.25s linear forwards;  
}  

@media(min-width: 990px) {
  .header-groups.scroll .ts-announcement  {
    display: block;
    transform: translateY(0%);
    pointer-events: all;
    opacity: 1;
    transition: all 0.35s ease 0s;
  }
}

@media(max-width: 990px) {
  .header-groups:not(.scroll) .ts-header__search-wrapper,
  .header-groups:not(.scroll) .ts-announcement{
    animation: animationHeader 0.25s ease;
  } 

  .header-groups.search-open .ts-header__search-wrapper {
    animation: animationHeader 0.25s ease;
  }

  .header-groups.search-open.animate-hide-search .ts-header__search-wrapper--mobile {  
    animation: animationHeaderHide 0.25s linear forwards;  
  } 
}

@keyframes animationHeader {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes animationHeaderHide {  
  0% {  
    transform: translateY(0%);  
    opacity: 1;  
  }  
  100% {  
    transform: translateY(-100%);  
    opacity: 0;  
  }  
}  

.product .product-card-aftercode {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #1A1A1ACC;
  line-height: 130%;
  letter-spacing: -0.014px;
}

.product-block--description__text *,
.n9Upsells-Product-Block-Info *:not(h3) {
  font-size: 14px;
  color: #1A1A1A;
  line-height: 130%;
  font-weight: 400;
  letter-spacing: -0.014px;
}

.product-block--description__text * strong,
.n9Upsells-Product-Block-Info *:not(h3) strong {
  font-weight: 700;
}

.product-block--description__text video,
  .product-block--description__text iframe {
    width: 100%;
  }

.product-block-heading {
  margin: 0px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 130%;
  font-size: 16px;
  letter-spacing: -0.016px;
}

.product-block--product_links {
  margin-top: 30px;
}

.product-block--product_links .label {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 14px;
}

.product-accordion {
  margin-top: 8px;
}

.product-accordion-toggle {
  padding: 12px 24px;
  background: #1A1A1A08;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease 0s;
}

.product-accordion-toggle:hover {
   background-color: #1a1a1a2e; 
  transition: all 0.25s ease 0s;
}

.product-accordion.active .product-accordion-toggle {
  transition: all 0.25s ease 0s;
  background-color: #FF6F6F;
}

.product-accordion-toggle-text {
  margin: 0px;
  color: #1A1A1A;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  transition: all 0.25s ease 0s;
}

.product-accordion.active .product-accordion-toggle-text {
  color: white;
  transition: all 0.25s ease 0s;
}

.product-accordion-toggle svg {
  flex: 0 0 11px;
  transition: all 0.25s ease 0s;
}

.product-accordion.active .product-accordion-toggle svg {
  transform: rotate(180deg);
  transition: all 0.25s ease 0s;
}

.product-accordion-toggle svg path {
  transition: all 0.25s ease 0s;
}

.product-accordion.active .product-accordion-toggle svg path {
  fill: white;
  transition: all 0.25s ease 0s;
}

.product-accordion-text {
  display: none;
  padding: 10px 0px;
}

.product-accordion-text * {
  font-size: 14px;
  color: #1A1A1A;
  line-height: 130%;
  font-weight: 400;
}

.product-accordion-text *:last-child {
  margin-bottom: 0px;
}

.product-accordion-text a {
  color: #FF6F6F;
  text-decoration: none;
}

.product-accordion.active .product-accordion-text {
  display: block;
}

.product-accordion-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
  border: 0px;
}

.jdgm--leex-script-loaded .jdgm-rev-widg__header, .jdgm--leex-script-loaded .jdgm-rev-widg__actions, .jdgm--leex-script-loaded .jdgm-rev, .jdgm--leex-script-loaded .jdgm-quest {
  box-shadow: none !important;
}

.product-features {
  display: grid;
  margin-top: 8px;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 8px;
  column-gap: 12px;
  margin-bottom: 24px;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-feature-icon {
  flex: 0 0 20px;
}

.product-feature-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(min-width: 1024px) {
  .product-features {
    column-gap: 32px;
    margin-bottom: 32px;
  }
  .product-feature-icon {
    flex: 0 0 24px;
  }
}

.product-feature-text {
  flex: 1 1 auto;
  margin: 0px;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.014px;
  color: #1A1A1ACC;
}

.shopify-product-form {
  margin: 0px;
}

.breadcrumb-container {
  padding: 12px !important;
}
@media(min-width: 1024px) {
  .breadcrumb-container {
    padding-top: 40px !important;
  }
}

.product_section {
  padding-top: 0px;
}

.product .section {
  max-width: 1350px;
}

.product-fixed-wrapper {
  width: 100%;
  background-color: white;
}

.flickity-button {
  color: #FA7268 !important;
}

/* @media(max-width: 767px) {

  .atc-btn-container .add_to_cart {
    position: fixed;  
    bottom: 20px;  
    width: calc(100% - 40px);
    left: 20px;  
    z-index: 999999;  
  }
} */

.atc-btn-container  .add_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
} 

.cart-section-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.breadcrumb-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: fit-content;
  font-weight: 500;
  color: #1A1A1A99 !important;
  font-size: 14px;
  line-heigth: 130%  !important;
}

.breadcrumb-with-icon svg {
  flex: 0 0 8px;
  width: 8px;
  display: block;
}

#cart_form  {
  margin: 0px;
}

#cart_form h1,
.cart h1.shadow {
  margin: 0px;
  margin-bottom: 24px;
  text-align: start;
  font-size: 32px;
  line-height: 100%;
}

.cart h1.shadow {
  text-align: center;
}

@media(min-width: 1024px) {
  #cart_form h1,
  .cart h1.shadow{
    font-size: 38px;
    margin-bottom: 40px;
    text-shadow: -2px 0px 0px rgba(255, 141, 132, 0.4);
  }

  .cart h1.shadow {
    text-shadow: -2px 0px 0px rgba(255, 141, 132, 0.4);
  }
}

.cart-products-container {
  padding: 0px;
  gap: 20px;
}

.cart-row {
  border-top: 0.3px solid #1A1A1A33;
  padding-top: 16px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr;
}

@media(max-width: 768px) {
  padding-top: 16px;
  padding-bottom: 16px;
}

.cart-row-main {
  border: 0px;
  padding: 0px;
  margin-bottom: 16px;
  margin-left: 10px;
  margin-right: 10px;
  display: none;
  width: calc(62.5% - 20px);
}

.cart-row-action {
  padding-left: 96px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media(min-width: 350px) {
  .cart-row-action.non-options {
    margin-top: -23px;
  } 
}

.cart__quantity {
  margin-left: auto !important;
}

@media(min-width: 1024px) {
  .cart-row-action {
    margin-top: 0px;
    display:  grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-left: 30px;
  }

  .cart-row-action.non-options {
    margin-top: 0px;
  }

  .cart__quantity {
    margin-left: 0px !important;
  }

  .cart-row:last-child {
    border-bottom: 0.3px solid #1A1A1A33;
  }
}

.cart-row-remove {
  display: block;
  padding-left: 30px;
}

.cart-row-heading {
  margin: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #1A1A1A;
}

.cart-row-product {
  display: flex;
  gap: 16px;
}

.card-row-product-info {
  width: 100%;
}

.cart-row-product-image {
  flex: 0 0 80px;
  border: 0.5px solid #EAEAEA;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

@media(min-width: 1024px) {
  .cart-row-product-image {
    aspect-ratio: auto;
    padding: 20px;
  }

  .cart-row-product {
    align-items: center;
  }
}

.cart-row-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-row-price {
  display: flex;
  flex-direction: column;
}

.cart-row-price .yousave small,
.card-row-product-bottom-price .yousave small{
  font-size: 12px;
  color: #1a1a1a99;
}

.card-row-product-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card-row-product-title {
  margin: 0px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #1A1A1A !important;
}

.cart-row-price .price {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.cart-row-price .price .yousave {
  margin: 0px;
  flex-shrink: 0;
}

.cart-row-price .cardwrap {
  margin-top: 0px;
}

.cart-row-price .cardwrap br {
  display: none;
}

.cart-row-price .price.sale_price.coral, .order_wrap .boost-pfs-filter-product-item-sale-price {
  font-size: 18px;
  font-weight: 500;
}

.cart-row-price .order_price {
  width: fit-content;
  font-size: 18px;
}

.cart-row-price .order_price .strike {
  margin: 0px;
  font-size:18px;
}


@media(min-width: 1024px) {
  .cart-row-quantity,
  .cart-row-price,
  .cart-row-remove {
    display: flex;
    flex-direction: column;
    justify-content: center;
  } 

  .cart-row-price .price {
    flex-direction: column;
    align-items: start;
  }
}

.cart-row-quantity > div,
.card-row-product-bottom-quantity > div{
  margin: 0px;
  background: #1A1A1A08;
  padding: 10px;
  border-radius: 100px;
  display: flex;
  align-items: stretch;
  max-width: fit-content;
  align-items: center;
}

.cart-row-quantity input.quantity,
.card-row-product-bottom-quantity input.quantity {
  width: fit-content;
  flex: 1 1 auto;
  min-height: unset;
  height: auto;
  border: 0px;
  background-color: transparent;
  padding: 0px;
  margin: 0px;
  min-width: 20px;
  max-width: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #1A1A1A;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
}

@media(min-width: 1024px) {
  .cart-row-quantity input.quantity,
  .card-row-product-bottom-quantity input.quantity {
    min-width: 45px;
    max-width: 45px;
  }
}

.cart__quantity .icon-plus,
.cart__quantity .icon-minus {
  color: #1A1A1A;
  cursor: pointer;
}

.card-row-product-bottom-quantity input.quantity::-webkit-inner-spin-button, 
.cart-row-quantity input.quantity::-webkit-inner-spin-button, 
.cart-row-quantity input.quantity::-webkit-outer-spin-button,
.card-row-product-bottom-quantity input.quantity::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.cart-row-quantity .quantity-minus,
.cart-row-quantity .quantity-plus,
.card-row-product-bottom-quantity .quantity-minus,
.card-row-product-bottom-quantity .quantity-plus {
  border: 0px;
  margin: 0px;
  padding: 0px;
  box-shadow: none;
  background-color: transparent;
  width: 16px;
  flex: 0 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.card-row-product-bottom {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cart-row-remove a,
.card-row-product-top a:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1A1A1A08;
  border-radius: 50%;
  padding: 10px;
  box-sizing: border-box;
  transition: all 0.25s ease 0s;
}

.cart-row-remove a:hover {
  transition: all 0.25s ease 0s;
  background: rgba(234, 234, 234, 1);
}


.cart-subtotal-title {
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 24px;
  font-weight: 500;
  color: #1A1A1A;
  font-family: "Satoshi-Variable", sans-serif;
  text-transform: initial;
}

.subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  /* border-bottom: 0.3px solid #1A1A1A33; */
}

.subtotal-row.border {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 0.3px solid #1A1A1A33;
  border-bottom: 0.3px solid #1A1A1A33;
  align-items: start;
  margin-bottom: 32px;
}

.subtotal-row .yousave {
  display: none !important
}

.subtotal-row .subtotal {
  margin: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #1A1A1A;
  text-transform: unset;
}

.subtotal-discount {
  display: flex;
  align-items: center;
  gap: 4px;
}

.subtotal-row .subtotal.coral {
  color: #F75E5E;
}

.subtotal-row-shipping .subtotal_amount .money {
  color: #1a1a1a;
}

.subtotal-wrapper {
  padding: 24px 32px;
  border: 0.5px solid #EAEAEA;
  background: #1a1a1a05;
  width: calc(100% + 38px);
  box-sizing: border-box;
  position: relative;
  left: -19px;
}

@media(min-width: 768px) {
  .subtotal-wrapper {
    width: 100%;
    left: 0;
    padding: 24px 12px;
  }
}

.cart__tax-label {
  margin: 0px;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #1A1A1A99;
  max-width: 160px;
}

.add-to-cart-wrap .action_button  {
  text-transform: initial !important;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.dynamic-checkout__content .shopify-cleanslate .IcgSIE7pEVZrlnAeRS6j,
.dynamic-checkout__content .shopify-cleanslate .DefhEHZZf4y32pvV7mZj{
  border-radius: 25px !important;
}

.dynamic-checkout__content .shopify-cleanslate .ybSyad5RbtOghAuCHUvv {
  border-radius: 25px !important;
}

.dynamic-checkout__content li {
  margin: 0px;
}

.cart-related.title {
  display: block;
  text-transform: initial;
  margin: 0px !important;
  margin-top: 20px !important;
  margin-bottom: 32px !important;
  padding-bottom: 16px;
  border-bottom: 0.3px solid #1A1A1A33;
  text-align: left;
  font-weight: 500;
  font-family: "Satoshi-Variable", sans-serif;
  font-size: 22px;
  line-height: 110%;
  color: #1A1A1A;
  margin-left: 20px !important;
  margin-right: 20px !important;
}

@media(min-width: 1024px) {
  .subtotal-wrapper {
    border-top: 0px;
    padding: 32px 16px;
  }
  
  .cart-related.title {
    margin-top: 80px !important;
  }
}

.cart__product-option {
  margin-top: 6px;
}

.cart__product-option-color {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  
}

#cart_form .container .three-eighths {
  margin-left: 0px;
  margin-right: 0px;
}

.subtotal_amount {
  margin: 0px;
}

.subtotal_amount .money {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 8px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.subtotal_amount .money.coral {
  color:#ff6f6f!important
}
.subtotal_amount-main .money {
  color: #1A1A1A;
}

.subtotal_amount-main .money.active {
  color: #ff6f6f;
}

.subtotal_amount .money del {
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A99;
  line-height: 100%;
}

.cart .section {
  width: 90%;
}

.related-load-more-wrapper {
  display: flex;
  justify-content: center;
}

.related-load-more {
  background-color: transparent;
  border: 0px;
  box-shadow: none;
  width: 100%;
  max-width: 248px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
  border: 1px solid #FF6F6F;
  padding: 16px;
  color: #FF6F6F;
  font-weight: 500;
  line-height: 100%;
  font-size: 20px;
  cursor: pointer;
  text-transform: initial;
}

.cart .ts-icons {
  margin: 30px 0px;
}


.cart-continue-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-continue {
  text-transform: initial !important;
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
  max-width: 370px !important;
  font-weight: 500 !important;
}

@media(max-width: 480px) {
  .products.cart-related {
    padding: 0px 16px;
  }
}


@media(min-width: 1024px) {
  .cart .main-wrapper{
    padding-top: 48px;
    padding-bottom: 0px;
  }

  .subtotal_amount .money{
    font-size: 20px;
  }

  .cart-row {
    padding-top: 32px;
    padding-bottom: 32px;
    grid-template-columns: 1fr 1fr 70px;
  }
  
  .cart-section-top {
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .breadcrumb-with-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .cart-row-main {
    display: grid;
  }

  .cart-row-product-image {
    flex: 0 0 100px;
  }
}

.page-about .ts-icons,
.customers-register .ts-icons,
.customers-login .ts-icons{
  display: none;
}

.who-section {
  background: #F7F5EB80;
  padding: 32px 0px;
}

.who-section .section {
  max-width: 1300px;
  width: 90%;
}

.who-section-heading * {
  margin: 0px;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
  font-family: "Satoshi-Variable", sans-serif;
  text-transform: initial;
}

.who-section-body {
  margin-top: 24px;
  display: grid;
  gap: 32px;
}

.who-section-left {
  display: grid;
}

.who-section-slider {
  width: 100%;
  min-width: 0;
}

.who-section-slide img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 320px;
}

.who-section-slide img.who-section-image-desktop {
  display: none;
}

.who-section-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 10px;
}

.who-section-btn-prev,
.who-section-btn-next {
  background-color: transparent;
  border-radius: 0px;
  border: 0px;
  box-shadow: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease 0s;
  padding: 0px;
}

.who-section-btn-prev svg,
.who-section-btn-next svg {
  display: block;
  width: 8px;
}

.who-section-btn-prev svg {
  transform: rotate(180deg);
}

.who-section-btn-prev.swiper-button-disabled {
  opacity: 0.6;
  transition: all 0.25s ease 0s;
}

.who-section-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: fit-content;
  gap: 8px;
}

.who-section-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #CECDC9 !important;
  transition: all 0.25s ease 0s;
  margin: 0px !important;
  opacity: 1 !important;
}

.who-section-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1A1A1A !important;
  transition: all 0.25s ease 0s;
}

.who-section-info:not(:first-child) {
  margin-top: 24px;
}

.who-section-title {
  margin: 0px;
  font-family: "Satoshi-Variable", sans-serif;
  text-transform: initial;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #1A1A1ACC;
}

.who-section-text {
  margin-top: 12px;
}

.who-section-text * {
  margin: 0px;
  color: #1A1A1ACC;
  font-size: 16px;
  line-height: 150%;
}

.who-section-text p {
  min-height: 20px;
}

.who-section-text > * {
  font-weight: 400;
}

.info-section {
  padding: 32px 0px;
  position: relative;
}

.new-container {
  position: relative;
  z-index: 2;
  padding: 0px 24px;
  margin: 0px auto;
  width: 100%;
  box-sizing: border-box;
}

.info-section-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.info-section-heading {
  width: 100%;
}

.info-section-heading * {
  margin: 0px;
  font-size: 24px;
  line-height: 130%;
  font-weight: 500;
  font-family: "Satoshi-Variable", sans-serif;
  text-transform: initial;
  color: #1A1A1A;
}

.collection-hero-section.second .info-section-heading * {
  text-align: left;
}

.info-section-text * {
  margin: 0px;
  color: #1A1A1ACC;
  font-size: 16px;
  line-height: 130%;
}

.info-section-text > * {
  font-weight: 400;
}

.collection-hero-section.second .collection-hero-section-text {
  max-width: 570px;
}

.info-section-text a {
  text-decoration: none;
  color: #FF6F6F;
  font-weight: 700;
}

.info-section-text p {
  min-height: 18px;
}

.info-section-bottom {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.info-section-avatar {
  flex: 0 0 58px;
  height: 58px;
  border-radius: 50%;
}

.info-section-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-section-name {
  margin: 0px;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  color: #1A1A1ACC;
}

.info-section-position {
  margin: 0px;
  margin-top: 8px;
  font-size: 18px;
  line-height: 130%;
  font-weight: 400;
  color: #1A1A1A99;
}

.info-section-image {
  position: absolute;
  z-index: 1;
  width: 45%;
  bottom: 60px;
  right: 0%;
}

.info-section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-section-image img:first-child {
  display: none;
}

.story-section {
  padding: 32px 0px;
}

.story-section .section {
  max-width: 1300px;
  width: 90%;
}

.story-section-heading * {
  margin: 0px;
  font-size: 24px;
  line-height: 130%;
  font-weight: 500;
  font-family: "Satoshi-Variable", sans-serif;
  text-transform: initial;
  color: #1A1A1A;
}

.story-section-images {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
}

.story-section-image:first-child {
  display: none;
}

.story-section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section-image:nth-child(2) img:first-child {
  display: none;
}

.story-section-body {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.story-section-item:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 0.3px solid #1A1A1A33
}

.story-section-number {
  margin: 0px;
  font-size: 20px;
  line-height: 100%;
  color: #1A1A1ACC;
  font-weight: 400;
}

.story-section-title {
  margin: 0px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 18px;
  color: #1A1A1ACC;
  line-height: 120%;
}

.story-section-text {
  margin-top: 18px;
}

.story-section-text * {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #1A1A1ACC;
}

.story-section-text strong {
  font-weight: 700;
  color: #FF6F6F;
}

.features-section .section {
  max-width: 1300px;
  width: 90%;
}

.features-section {
  padding: 32px 0px;
}

.features-section-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.features-section-content {
  order: 2;
  width: 100%;
  max-width: 770px;
}

.features-section-heading {
  width: 100%;
}

.features-section-heading * {
  margin: 0px;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 130%;
  font-size: 24px;
  font-family: "Satoshi-Variable", sans-serif;
  text-transform: initial;
}

.features-section-text {
  margin-top: 24px;
}

.features-section-text * {
  margin: 0px;
  font-size: 16px;
  line-height: 150%;
  color: #EAEAEACC;
}

.features-section-text > * {
  font-weight: 400;
}

.features-section-text p:not(:first-child) {
  margin-top: 18px;
}

.features-section-text strong {
  color: #98FFE0;
}

.features-section-items {
  margin-top: 24px;
}

.features-section-item {
  display: flex;
  align-items: start;
  gap: 8px;
}

.features-section-item:not(:first-child) {
  margin-top: 18px;
}

.features-section-item-icon {
  flex: 0 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-section-item-icon svg {
  display: block;
  width: 20px;
}

.features-section-item-text {
  margin: 0px;
  color: #EAEAEAB2;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}

.features-section-icons {
  order: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 18px;
}

.features-section-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-section-icon svg {
  display: block;
  width: 26px;
  height: 100%;
}

.columns-section .section {
  max-width: 1300px;
  width: 90%;
}

.columns-section-body {
  padding: 32px 0px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.columns-section-title {
  margin: 0px;
  color: #1A1A1ACC;
  font-size: 18px;
  line-height: 120%;
  font-weight: 700;
}

.columns-section-text {
  margin-top: 24px;
}

.columns-section-text * {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #1A1A1ACC;
}

.columns-section-text strong {
  font-weight: 700;
  color: #FF6F6F;
}

.columns-section-images {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.columns-section-image:first-child {
  flex: 1 1 100%;
}

.columns-section-image:not(:first-child) {
  flex: 0 1 calc(50% - 5px);
}

.columns-section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.columns-section-image img:first-child {
  display: none;
}

.collection-hero-section {
  padding: 16px 0px 32px 0px;
}

.collection-hero-section-body {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.collection-hero-section-content {
  order: 2;
}

.collection-hero-section-heading {
  margin-bottom: 24px;
}

.collection-hero-section-heading * {
  margin: 0px;
  font-size: 28px;
  line-height: 120%;
  font-family: eds-market-main-script;
  text-transform: none;
  font-weight: 400;
  text-shadow: -2px 0px 0px rgba(255, 141, 132, .4);
  color: #1A1A1A;
  text-align: left;
}

.collection-hero-section-text {
  margin-top: 18px;
}

.collection-hero-section-text-desktop {
  display: none;
}

.collection-hero-section-text * {
  margin: 0px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  color: #1A1A1ACC;
}

.collection-hero-section-text p:not(:first-child) {
  margin-top: 18px;
}

.collection-hero-section-text strong {
  font-weight: 500;
  color: #FF6F6F;
}

.collection-hero-section-items {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.collection-hero-section.second .collection-hero-section-items {
  margin-top: 18px;
  gap: 12px;
}

.collection-hero-section-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.collection-hero-section-item-icon {
  flex: 0 0 18px;
}

.collection-hero-section.second .collection-hero-section-item-icon {
  flex: 0 0 32px;
}

.collection-hero-section-item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-hero-section-item-text {
  margin: 0px;
  font-size: 16px;
  line-height: 130%;
  color: #1A1A1A;
  font-weight: 400;
}

.collection-hero-section-buttons {
  margin-top: 18px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}

.collection-hero-section-buttons a {
  max-width: 100%;
}

@media(min-width: 576px) {
  .collection-hero-section-buttons a {
    max-width: 248px;
  }
}

.collection-hero-section-buttons .action_button.action_button--secondary {
  margin: 0px;
}

.collection-hero-section-media {
  order: 1;
  margin-left: -24px;
  margin-right: -24px;
}

.collection-hero-section-media video,
.collection-hero-section-media svg,
.collection-hero-section-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0px;
  box-shadow: none;
}

.collection-hero-section-media svg {
  background-color: #AEAEAE;
}

.collection-columns-section {
  margin: 10px 0px;
}

.collection-columns-section-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.collection-columns-section-body.grid {
  grid-template-columns: 1fr 1fr;
}

.collection-columns-section-slider .collection-columns-section-item {
  flex: none;
}

.collection-columns-item-has-mobile img:last-child {
  display: none !important;
}

.collection-columns-section-body.grid .collection-columns-section-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.collection-columns-section-body.grid .collection-columns-section-title {
  position: static;
  transform: none;
  max-width: fit-content;
  font-size: 14px;
}

.collection-columns-section-body.grid .collection-columns-section-item img {
  height: auto;
  width: 40px;
  flex-shrink: 0;
}

@media(max-width:1023px) {
  .collection-columns-section-body.line {
    display: flex;
  }
  
  .collection-columns-section-body.line .collection-columns-section-item {
    flex: 1 0;
    padding: 0px;
    background-color: transparent;
  }

  .collection-columns-section-slider .collection-columns-section-item {
    flex: none;
    padding: 0px;
  }

  .collection-columns-section-body.line .collection-columns-section-item img {
    object-fit: cover;
  }

  .collection-columns-item-has-mobile img:last-child {
    display: block !important;
  }

  .collection-columns-item-has-mobile img:not(:last-child) {
    display: none !important;
  }
}

@media(min-width: 768px) {
  .collection-columns-section-body.grid {
    grid-template-columns: 1fr 1fr;
  }
}

.collection-columns-section-item {
  display: block;
  text-decoration: none;
  position: relative;
  background-color: #F7F7F7;
  padding-bottom: 50px;
}

.collection-columns-section-item img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 150px;
}

.collection-columns-section-slider .collection-columns-section-item img {
  max-height: 100%;
}

.collection-columns-section-item.collection-columns-hover-item .collection-columns-hover-image{
  display: none;
}

.collection-columns-section-title {
  margin: 0px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 120%;
  font-weight: 500;
  transition: all 0.25s ease 0s;
  pointer-events: none;
  width: 100%;
  justify-content: center;
}

.collection-columns-section-item:hover .collection-columns-section-title {
  color: #FF6F6F;
  transition: all 0.25s ease 0s;
}

.collection-columns-section-title svg {
  display: block;
  width: 12px;
  flex: 0 0 12px;
}

.know-section {
  overflow: hidden;
}

.know-section-body {
  display: grid;
  grid-template-columns: 1fr;
}

.know-section-content {
  padding: 32px 24px;
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.know-section-content-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.know-section-content-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.know-section-content-image img:first-child {
  display: none;
}

.know-section-heading {
  margin: 0px;
  font-size: 32px;
  line-height: 120%;
  font-family: eds-market-main-script;
  text-transform: none;
  font-weight: 400;
  text-shadow: -2px 0px 0px rgba(255, 141, 132, .4);
  color: #FFFFFF;
  text-align: left;
  position: relative;
  z-index: 2;
}

.know-section-bottom {
  position: relative;
  z-index: 2;
}

.know-section-text {
  max-width: 420px;
}

.know-section-text * {
  margin: 0px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  color: #EAEAEA;
}

.know-section-button {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  background-color: #98FFE0;
  padding: 16px;
  border-radius: 100px;
  color: #1A1A1A !important;
  font-size: 18px;
  line-height: 110%;
  font-weight: 500;
  box-sizing: border-box;
  transition: all 0.25s ease 0s;
}

.know-section-button:hover {
  background: #71ECC7;
  transition: all 0.25s ease 0s;
}

.know-section-right {
  background-color: #1A1A1A;
  padding: 32px 24px;
}

.know-section-subheading {
  margin: 0px;
  color: white;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.know-section-right-text {
  margin-top: 18px;
}

.know-section-right-text * {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #EAEAEAB2;
}

.know-section-items {
  margin-top: 32px;
}

.know-section-absolute {
  margin-left: auto;
  width: 100%;
  max-width: 319px;
  margin-right: -24px;
}

.know-section-absolute img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-tabs-section {
  padding: 32px 0px;
}

.collection-tabs-section-toggles {
  display: grid;
  gap: 10px;
}

.collection-tabs-section-toggle {
  margin: 0px;
  padding: 21px 24px;
  background: #1A1A1A08;
  color: #1A1A1A;
  font-size: 16px;
  line-height: 110%;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease 0s;
}

.collection-tabs-section-toggle:not(:first-child) {
  margin-top: 10px;
}
 
.collection-tabs-section-toggle.active {
  background: #FF6F6F;
  color: white;
  transition: all 0.25s ease 0s;
}

.collection-tabs-section-toggle span {
  position: relative;
  z-index: 2;
}

.collection-tabs-section-toggle svg:first-child {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.collection-tabs-section-toggle svg:first-child path {
  transition: all 0.25s ease 0s;
}

.collection-tabs-section-toggle.active svg:first-child path {
  fill: white;
}

.collection-tabs-section-toggle svg:last-child {
  display: block;
  flex: 0 0 32px;
  transition: all 0.25s ease 0s;
}

.collection-tabs-section-toggle svg:last-child path {
  transition: all 0.25s ease 0s;
}

.collection-tabs-section-toggle.active svg:last-child {
  transition: all 0.25s ease 0s;
  transform: rotate(180deg);
}

.collection-tabs-section-toggle.active svg:last-child path{
  transition: all 0.25s ease 0s;
  fill: white;
}

.collection-tabs-section-mobile {
  margin-left: -24px;
  margin-right: -24px;
}

.collection-tabs-section-desktop {
  display: none;
}

.collection-tabs-section-tab {
  margin-top: 24px;
  display: none;
  padding: 0px 24px;
}

.collection-tabs-section-tab.active {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.extensions-section {
  overflow: hidden;
}

.extensions-section .collection-tabs-section-tab.active {
  display: block;
}

.extensions-section.white .know-section-heading {
  margin: 0px;
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: #1A1A1A;
  text-transform: initial;
  text-align: left;
  text-shadow: none;
}

.extensions-section.white  .collection-tabs-section-content * {
  color: #1A1A1A;
}

.extensions-section.white .extensions-section-btn {
  background: #fa7268;
  color: #fff !important; 
}

.extensions-section.white .extensions-section-btn:hover {
  background: #F75E5E;
  color: #fff !important; 
}

.extensions-section.white .extensions-section-image {
  max-width: 100%;
}

.extensions-section.white .collection-tabs-section-content {
  max-width: 100%;
  max-height: 100%;
}

.extensions-section.white .collection-tabs-section-toggle {
  color: #1A1A1A;
}

.extensions-section.white .collection-tabs-section-toggle.active {
  color: #FFFFFF;
}

.extensions-section.white .collection-tabs-section-toggles {
  max-width: 780px;
}

.extensions-section.white .extensions-section-inner {
  padding-top: 30px;
}

@media(min-width: 1024px) {
  .extensions-section.white .know-section-heading {
    font-size: 32px;
  }

  .extensions-section.white .collection-tabs-section-tab.active {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
  }

  .extensions-section.white .extensions-section-image {
    margin: 0px;
  }

  .extensions-section.white .collection-tabs-section-tab {
    padding: 0px;
  }

  .extensions-section.white .collection-tabs-section-toggle.active {
    color: #FF6F6F;
  }

  .extensions-section.white .extensions-section-inner {
    padding-top: 60px;
  }
}

.collection-tabs-section-content * {
  margin: 0px;
  font-size: 16px;
  line-height: 150%;
  color: #1A1A1A;
  font-weight: 400;
}

.collection-tabs-section-content *:not(:first-child) {
  margin-top: 12px;
}

.collection-tabs-section-content p {
  min-height: 12px;
}

.collection-tabs-section-content strong {
  font-weight: 500;
  color: #FF6F6F;
}

.collection-tabs-section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-tabs-section-btn {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  background-color: #ff6f6f;
  color: #fff;
  border-radius: 100px;
  line-height: 1.3;
  font-size: 16px;
  font-family: Satoshi-Variable, sans-serif;
  transition: all .25s ease 0s;
  max-width: 200px;
}

.collection-tabs-section-btn:hover {
  transition: all .25s ease 0s;
  background-color: #f75e5e;
  color: white;
}

.guide-section {
  margin: 10px 0px;
}

.guide-section-body {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-section-main {
  flex: 1 1 100%;
  position: relative;
  padding: 42px 24px;
  box-sizing: border-box;
}

.guide-section-item {
  position: relative;
  flex: 0 1 calc(50% - 5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  min-height: 138px;
  box-sizing: border-box;
}

.guide-section .know-section-text {
  margin-top: 12px;
}

.guide-section-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.guide-section-title {
  margin: 0px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.guide-section-text {
  margin: 0px;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: #EAEAEAB2;
  word-break: break-word;
}

.guide-section .know-section-text * {
  color: #EAEAEAB2;
}

.guide-section-icon {
  flex: 0 0 20px;
}

.guide-section-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  padding: 48px 0px;
}

.faq-section-items {
  margin-top: 32px;
}

.faq-section-item {
  padding: 8px 0px 12px 0px;
  border-bottom: 1px solid #1A1A1A99;
}

.faq-section-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.faq-section-question * {
  margin: 0px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
}

.faq-section-icon {
  flex: 0 0 32px;
  max-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  transition: all 0.25s ease 0s;
}

.faq-section-item.active .faq-section-icon {
  transition: all 0.25s ease 0s;
  transform: rotate(-90deg);
}

.faq-section-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.faq-section-answer {
  display: none;
}

.faq-section-item.active .faq-section-answer {
  padding: 10px 0px;
  display: block;
}

.faq-section-answer * {
  margin: 0px;
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 130%;
}

.faq-section-answer p:not(:first-child) {
  margin-top: 15px;
}

.faq-section-answer a {
  text-decoration: underline;
}

.collection-heading-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 0.3px solid #1A1A1A33;
  margin-bottom: 12px;
}

.collection-heading-wrap h2 {
  margin: 0px;
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: #1A1A1A;
  text-transform: initial;
}

.collection-pleasure-sleeves .ts-icons__wrapper {
  padding-top: 10px;
}

.guide-hero-section {
  padding: 65px 0px;
}

.guide-hero-section-heading {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.guide-hero-section-heading * {
  text-align:center;
  margin: 0px;
  font-size: 32px;
  line-height: 130%;
  color: #1A1A1A;
  font-family: eds-market-main-script;
  text-transform: none;
  font-weight: 400;
  text-shadow: -2px 0px 0px rgba(255, 141, 132, .4);
}

.guide-hero-section-text {
  margin-top: 12px;
  text-align: center;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.guide-hero-section-text * {
  margin: 0px;
  font-size: 18px;
  line-height: 130%;
  color: #1A1A1A;
  font-weight: 400;
}

.who-section.guide-newest-section {
  background-color: #1A1A1A08;
}

.guide-newest-section-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guide-newest-section-title {
  margin: 0px;
  color: #1A1A1ACC;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
}

.guide-newest-section-text {
  margin-top: 12px;
}

.guide-newest-section-text * {
  margin: 0px;
  color: #1A1A1ACC;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
}

.guide-newest-section-text *:not(:first-child) {
  margin-top: 12px;
}

.guide-newest-section-link {
  margin: 0px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #FF6F6F;
  line-height: 100%;
  transition: all 0.25s ease 0s;
}

.guide-newest-section-link svg {
  display: block;
  width: 10px;
  margin: 0px;
}

.guide-newest-section-link:hover {
  color: #F75E5E;
  transition: all 0.25s ease 0s;
}

.guides-main-section {
  padding: 32px 0px;
}

.guides-main-section .new-container {
  z-index: unset;
}

.guide-main-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #EAEAEA;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.article-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 270px;
  aspect-ratio: 1 / 0.6;
}

.article-card-content {
  flex: 1 1 auto;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.article-card-tag {
  display: inline-flex;
  margin: 0px;
  font-size: 14px;
  line-height: 130%;
  color: #1A1A1A99;
  font-weight: 400;
  gap: 4px;
  align-items: center;
  min-width: max-content;
}

.article-card-tag a {
  color: #1A1A1A99;
  transition: all 0.25s ease 0s;
}

.article-card-tag a:hover {
  color: #FF6F6F;
}

.article-card-tag:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF6F6F;
  flex-shrink: 0;
}

.article-card-top {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.article-card-top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-card-date {
  margin: 0px;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #1A1A1A99;
}

.article-card-title {
  display: block;
  max-width: fit-content;
  margin: 0px;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: #1A1A1A;
  transition: all 0.25s ease 0s;
}

.article-card-title:visited {
  color: #1A1A1A;
}

.article-card-title:hover {
  color: #FF6F6F;
}
.article-card-comments {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-card-comments svg {
  margin: 0px;
}

.article-card-comments span {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: #1A1A1A99;
}

.article-card .guide-newest-section-link {
  font-size: 16px;
  font-weight: 500;
}

.guide-main-blocks {
  padding-bottom: 32px;
}

.guide-main-block {
  margin-top: 48px;
}

.guide-main-block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 0.3px solid #1A1A1A33;
}

@media(min-width: 768px) {
  .guide-main-block-top {
    flex-direction: row;
  }
}

.guide-main-block-heading {
  margin: 0px;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
  text-transform: initial;
  font-family: "Satoshi-Variable", sans-serif;
}

.guide-main-block-link {
  margin: 0px;
  color: #FF6F6F;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
}

.guide-main-section-grid {
  margin-top: 32px;
}

.guide-main-load-more-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

body.blog .ts-icons,
body.blog-tag .ts-icons{
  display: none;
}

.guide-read-more {
  padding: 32px 0px;
}

.guide-read-more-items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.guide-read-more-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  background-color: #1A1A1A08;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
}

.guide-read-more-item:visited {
  color: #1A1A1A;
}

.guide-main-sorting {
  display: none;
  flex-direction: column;
  max-width: fit-content;
  gap: 12px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: #FFFFFF;
  z-index: 2;
  transition: all 0.25s ease 0s;
}

.guide-main-sort-wrapper.active .guide-main-sorting {
  display: flex;
  border: 1px solid black;
  border-top: 0px;
  transition: all 0.25s ease 0s;
}

.guide-main-sort {
  display: flex;
  max-width: fit-content;
  font-size: 16px;
  color: #1A1A1A;
  font-weight: 400;
  line-height: 130%;
  transition: all 0.25s ease 0s;
  cursor: pointer;
}

.guide-main-sort:visited {
  color: #1A1A1A;
}

.guide-main-sort:hover {
  color: #FF6F6F;
}

.guide-main-sort.active {
  color: #FF6F6F;
  transition: all 0.25s ease 0s;
}

.guide-main-sort-wrapper {
  background-color: #1A1A1A08;
  padding: 18px 24px;
  position: relative;
  box-sizing:  border-box;
  transition: all 0.25s ease 0s;
  width: 100%;
}

@media(min-width: 768px) {
  .guide-main-sort-wrapper {
    min-width: 190px;
    width: auto;
  }
}

.guide-main-sort-wrapper.active {
  background-color: #FF6F6F;
  transition: all 0.25s ease 0s;
}

.guide-main-sort-toggle {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #1A1A1A;
  transition: all 0.25s ease 0s;
}

.guide-main-sort-toggle svg {
  transition: all 0.25s ease 0s;
}

.guide-main-sort-toggle svg path {
  transition: all 0.25s ease 0s;
}

.guide-main-sort-wrapper.active .guide-main-sort-toggle {
  color: white;
  transition: all 0.25s ease 0s;
}

.guide-main-sort-wrapper.active .guide-main-sort-toggle svg {
  transform: rotate(180deg);
  transition: all 0.25s ease 0s;
}

.guide-main-sort-wrapper.active .guide-main-sort-toggle svg path {
  fill: white;
  transition: all 0.25s ease 0s;
}

.extensions-section.desktop {
  display: none;
}

.extensions-section-inner {
  position: relative;
  padding: 200px 0px 24px 0px;
}

.extensions-section .know-section-content-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.extensions-section .new-container {
  position: relative;
  z-index: 2;
}

.extensions-section .collection-tabs-section-toggles {
  margin-top: 48px;
}

.extensions-section.other .extensions-section-inner {
  padding: 32px 0px 10px 0px;
}

.extensions-section.other .know-section-heading {
  text-align: left;
  font-family: "Satoshi-Variable", sans-serif;
  font-size: 24px;
  color: #1A1A1A;
  text-shadow: none;
}

.extensions-section.other .collection-tabs-section-toggles {
  max-width: 800px;
} 

.collection-tabs-section-tab-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(min-width: 1024px) {
  .extensions-section.other .know-section-heading {
    font-size: 32px;
  }

  .extensions-section.other .collection-tabs-section-toggle,
  .extensions-section.other .collection-tabs-section-content * {
    color: #1A1A1A;
  }

  .extensions-section.other .extensions-section-btn {
    color: white !important;
    background-color: #ff6f6f;
  }

  .extensions-section.other .extensions-section-btn:hover {
    color: white !important;
    background-color: #f75e5e;
  }

  .extensions-section.other .collection-tabs-section-tab{
    padding: 0px;
    grid-template-columns: calc(60% - 10px) calc(40% - 10px);
    gap: 20px;
    align-items: center;
  }

  .extensions-section.other .collection-tabs-section-tab.active {
    display: grid;
  }

  .extensions-section.other .collection-tabs-section-content {
    max-height: 100%;
    max-width: 100%;
  }
}

.advanced-dropdowns .collection-tabs-section-toggles {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  margin-left: -24px;
  padding-left: 24px;
  margin-right: -24px;
  padding-right: 24px;
  align-items: center;
}

.advanced-dropdowns .collection-tabs-section-toggles::-webkit-scrollbar {
  display: none;
}

.advanced-dropdown-toggle {
  padding: 11px 32px;
  background-color: #1A1A1A08;
  border-radius: 100px;
  color: #1A1A1A;
  line-height: 1.3;
  font-size: 16px;
  font-family: "Satoshi-Variable", sans-serif;
  transition: all 0.25s ease 0s;
  min-width: max-content;
  flex-shrink: 0;
}

.advanced-dropdown-toggle.active {
  background-color: #FF6F6F;
  color: white;
  transition: all 0.25s ease 0s;
}

.advanced-dropdown-tab {
  display: none;
}

.advanced-dropdown-tab.active {
  display: block;
}

.extensions-section .collection-tabs-section-toggle:first-child {
  margin-top: 10px;
}

.extensions-section-btn {
  display: block;
  margin-top: 24px;
  background-color: #FF6F6F;;
  padding: 16px 80px;
  font-size: 20px;
  line-height: 100%;
  color: #FFFFFF !important;
  font-weight: 500;
  border-radius: 100px;
  text-align: center;
  margin-bottom: 24px;
  transition: all 0.25s ease 0s;
}

.extensions-section-btn:focus {
  transition: all 0.25s ease 0s;
  background: #EAEAEA;
  color: #1A1A1A;
}

.extensions-section-btn:hover {
  transition: all 0.25s ease 0s;
  background: #EAEAEA;
  color: #1A1A1A !important;
}

.extensions-section-image {
  max-width: 180px;
  margin-bottom: 24px;
}

.extensions-section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brands-section {
  padding: 10px 0px;
}

.brands-section-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.brands-section-item {
  height: 150px;
  display: block;
}

.brands-section-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-banner {
  position: relative;
  padding: 140px 20px;
}

.article-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,0.3);
}

.article-desktop-image,
.article-mobile-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.article-banner h1 {
  position: relative;
  z-index: 2;
  margin: 0px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-family: eds-market-main-script;
  text-transform: initial;
  font-size: 32px;
  line-height: 130%;
  color: white;
  font-weight: 400;
  text-shadow: -2px 0px 0px rgba(255, 141, 132, .4);
}

.article-desktop-image {
  display: none;
}

.article-top {
  width: 100%;
  padding: 32px 0px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.article-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-short-description {
  margin-top: 16px;
}

.article-short-description * {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #1A1A1ACC;
}

.share-icon {
  padding: 2px;
}

.share-icon svg {
  margin: 0px;
  display: block;
}

.article-content * {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #1A1A1ACC;
}

.article-content h2 {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 0.3px solid #1A1A1A33;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
  text-transform: initial;
}

.article-content h2 * {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
  text-transform: initial;
}

.article-content a,
.article-content a * {
  color: rgb(250, 114, 104) !important;
}

.article-content tbody td,
.article-content tbody td * {
  word-break: break-word;
}

.article-new-comment {
  width: 100%;
  position: relative;
}

.article-new-comment-top {
  margin-top: 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 0.3px solid #1A1A1A33;
}

.article-new-comment h4 {
  margin: 0px;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
  text-transform: initial;
}

.article-new-comment-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-new-comment-share {
  margin: 0px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: #1A1A1A;
}

.article-new-comment form {
  margin-top: 32px;
  max-width: 770px;
  width: 100%;
}

.article-new-comment form label {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #1A1A1A99;
  margin-bottom: 8px;
  text-transform: initial;
}

.article-new-comment form input,
.article-new-comment form textarea {
  background-color: #1A1A1A08;
  padding: 14px 18px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  border: 0px;
}

.article-new-comment form button[type="submit"] {
  margin-top: 16px;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-transform: initial;
  min-width: 100%;
  text-align: left;
}

.article-new-comment form button[type="submit"] svg {
  margin: 0px;
}

.article-new-comment-image {
  display: none;
}

.article-comments {
  margin-bottom: 48px;
}

.article .ts-text-button {
  margin-left: -20px;
  margin-right: -20px;
}

.article .ts-text-button .ts-text-button__subtitle {
  max-width: 570px;
}

.small-banner {
  position: relative;
  padding: 26px 0px;
  background: #1A1A1A;
}

.small-banner-absolute {
  position: absolute;
  left: -330px;
  top: 0;
  height: 100%;
  width: 435px;
  z-index: 2;
}

.small-banner-absolute img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-banner-body {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.small-banner-title {
  margin: 0px;
  color: #FFFFFF;
  font-family: 'eds-market-main-script';
  font-weight: 400;
  font-size: 28px;
  line-height: 110%;
  text-shadow: -2px 0px 0px 0px #FF8D8466;
}

.small-banner-button-mobile {
  margin-top: 12px;
}

.small-banner-button-desktop {
  display: none;
}

.small-banner-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.small-banner-feature {
  display: flex;
  align-items: center;
  gap: 4px;
}

.small-banner-feature-icon {
  flex: 0 0 20px;
}

.small-banner-feature-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-banner-feature-title {
  margin: 0px;
  font-weight: 300;
  font-size: 12x;
  line-height: 110%;
  color: #FFFFFF80;
  flex-shrink: 0;
}

.global-wrapper__customer h1,
.global-wrapper__customer h4 {
  margin: 0px;
  margin-top: 12px;
  font-family: "Satoshi-Variable", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: #1A1A1A;
  text-transform: initial;
}

.global-wrapper__customer h4 {
  margin: 0px;
  margin-bottom: 12px;
  font-size: 18px;
}

.global-wrapper__customer input {
  font-family: "Satoshi-Variable", sans-serif;
  background: #1A1A1A08;
  border-radius: 100px;
  padding: 14px 18px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  border: 0px;
  height: auto;
  margin-bottom: 12px;
}

.global-wrapper__customer input::placeholder {
  color: #1A1A1A99;
}

.global-wrapper__customer form {
  padding-bottom: 12px;
}


.global-wrapper__customer .forgot {
  display: block;
  margin-top: -5px;
  margin-left: auto;
  line-height: 100%;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.global-wrapper__customer .action_button {
  margin-top: 20px;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 500 !important;
  font-size: 18px !important;
  text-transform: initial !important;
  transition: all 0.25s ease 0s !important;
}

.global-wrapper__customer .action_button:hover {
  background: #F75E5E;
}

.global-wrapper__customer .register {
  display: block;
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 130%;
}

.global-wrapper__customer .register a {
  margin-left: 5px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.global-wrapper__customer .register a svg path {
  transition: all 0.25s ease 0s;
}

.global-wrapper__customer .register a:hover svg path {
  fill: #1A1A1A;
}

.acceptsMarketing {
  position: relative;
}

.acceptsMarketing label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 400;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 100%;
  width: 100%;
  text-transform: initial;
  cursor: pointer;
  position: relative;
}

.acceptsMarketing input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.acceptsMarketing label:before {
  content: '';
  display: inline-block;
  flex: 0 0 18px;
  height: 18px;
  border: 1px solid #1A1A1A33;
  border-radius: 2px;
}

.acceptsMarketing label:after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  background-color: #1A1A1A33;
  border-radius: 2px;
  opacity: 0;
  transition: all 0.25s ease 0s;
}

.acceptsMarketing input:checked + label:after {
  opacity: 1;
  transition: all 0.25s ease 0s;
}

.list-collections-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-collections-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 32px;
}

.list-collections-count {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 130%;
  flex-shrink: 0;
}

.list-collections-header .guide-main-sorting {
  justify-content: end;
}

.list-collections-container .thumbnail {
  margin: 0px !important;
  border: 0px;
  background-color: #1A1A1A08;
  /* aspect-ratio: 1 / 1.45; */
}

.list-collections-container .thumbnail:hover {
  box-shadow: none;
}

.list-collections-container .one-fifth {
  width: calc(20% - 8px);
}

.list-collections-container .thumbnail .image__container {
  display: flex;
  align-items: center;
}

.list-collections-container .thumbnail .product_image,
.list-collections-container .thumbnail .product_container {
  height: 100%;
}

.list-collections-container .thumbnail .product_container a {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}

.list-collections-container .thumbnail .product_container .info {
  padding: 12px;
  padding-top: 0px;
}

.list-collections-container .thumbnail .title {
  font-size: 14px;
  line-height: 110%;
  color: #1A1A1A;
  font-weight: 500;
  text-align: center;
}

@media(max-width: 798px) {
  .list-collections-container {
    gap: 4px;
  }

  .list-collections-header {
    flex-direction: column;
    align-items: start;
  }
  
  .list-collections-container .thumbnail {
    width: calc(33% - 3px) !important;  
  }
}

@media(min-width: 576px) {
  .info-section-image {
     width: 30%;
  }

  .know-section-button {
    max-width: 250px;
  }
}

@media(min-width: 750px) {
  .new-container {
    padding: 0px 80px;
  }
}


@media(min-width: 768px) {
  .who-section-body {
    grid-template-columns: 1fr 1fr;
  }

  .who-section-slide img {
    max-height: 100%;
  }

  .who-section-slide img.who-section-image-desktop {
    display: block;
  }

  .who-section-slide img.who-section-image-mobile {
    display: none;
  }

  .who-section-navigation {
    margin-top: 32px;
    justify-content: center;
  }

  .who-section-btn-prev,
  .who-section-btn-next {
    display: none;
  }

  .info-section-image {
     width: 25%;
  }

  .story-section-image:nth-child(2) img:first-child {
    display: block;
  }

  .story-section-image:nth-child(2) img:last-child {
    display: none;
  }

  .story-section-text * {
    font-size: 18px;
  }

  .collection-columns-section-item img {
    max-height: 300px;
  }

  .collection-columns-section-slider .collection-columns-section-item img {
    max-height: 100%;
  }

  .guide-main-section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .guide-read-more-items {
    grid-template-columns: 1fr 1fr;
  }

  .article .ts-text-button {
    margin-left: -80px;
    margin-right: -80px;
  }
  
}

@media(min-width: 1024px) {

  .list-collections-header {
    padding: 12px 80px 22px 80px;
  }

  .list-collections-container .thumbnail .title {
    font-weight: 500;
    font-size: 16px;
  }
  
  .who-section {
    padding: 60px 0px;
  }

  .who-section-heading * {
    font-size: 32px;
  }

  .who-section-info:not(:first-child) {
    margin-top: 36px;
  }
  
  .who-section-info:not(:last-child) {
    padding-bottom: 36px;
    border-bottom: 0.3px solid #1A1A1A33;
  } 

  .who-section-title {
    font-size: 24px;
  }

  .who-section-text * {
    font-size: 20px;
  }

  .info-section {
    padding: 60px 0px;
  }

  .info-section-body {
    grid-template-columns: 1fr 1fr;
    gap: 0px;
  }

  .info-section-heading * {
    font-size: 32px;
  }

  .info-section-text * {
    font-size: 20px;
  }

  .info-section-name {
    font-size: 20px;
  }

  .info-section-position {
    font-size: 20px;
    line-height: 150%;
  }

  .info-section-image {
    width: 23%;
    left: 0%;
    bottom: 90px;
    right: unset;
  }

  .info-section-image img:first-child {
    display: block;
  }

  .info-section-image img:last-child {
    display: none;
  }

  .story-section {
    padding: 60px 0px;
  }

  .story-section-heading * {
    font-size: 32px;
  }

  .story-section-images {
    grid-template-columns: 32.3% 1fr;
    gap: 10px;
  }

  .story-section-image:first-child {
    display: block;
  }

  .story-section-body {
    margin-top: 32px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .story-section-item:not(:last-child) {
    padding-bottom: 0px;
    padding-right: 24px;
    border-bottom: 0px;
    border-right: 0.3px solid #1A1A1A33;
  }

  .story-section-number {
    font-size: 24px;
  }

  .story-section-title {
    margin-top: 12px;
    font-size: 20px;
  }

  .story-section-text {
    margin-top: 24px;
  }

  .features-section {
    padding: 80px 0px;
  }

  .features-section-heading * {
    font-size: 32px;
  }

  .features-section-text * {
    font-size: 20px;
  }

  .features-section-body {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }

  .features-section-content {
    order: 1;
  }

  .features-section-items {
    margin-top: 32px;
  }

  .features-section-icons {
    order: 2;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
  }

  .features-section-icon {
    width: 48px;
    height: 48px;
  }

  .features-section-icon svg {
    display: block;
    width: 38px;
  }

  .features-section-button.know-section-button {
    margin-top: 32px;
  }

  .columns-section-body {
    padding: 60px 0px 32px 0px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .columns-section-title {
    font-size: 20px;
  }

  .columns-section-text * {
    font-size: 20px;
  }

  .columns-section-images {
    flex-wrap: nowrap;
  }

  .columns-section-image:first-child {
    flex: 1 0;
  }
  
  .columns-section-image:not(:first-child) {
    flex: 1 0;
  }

  .columns-section-image img:first-child {
    display: block;
  }

  .columns-section-image img:last-child {
    display: none;
  }

  .collection-hero-section {
    padding: 60px 0px;
  }

  .collection-hero-section-body {
    margin-top: 0px;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .collection-hero-section.second .collection-hero-section-body {
    grid-template-columns: 1fr 1fr;
  }

  .collection-hero-section-heading {
    margin-bottom: 32px;
  }

  .collection-hero-section-heading * {
    font-size: 38px;
  }

  .collection-hero-section.second .collection-hero-section-text {
     margin-top: 24px;
  }

  .collection-hero-section-buttons {
    margin-top: 32px;
  }

  .collection-hero-section-text * {
    font-size: 20px;
    color: #1A1A1A;
  }

  .collection-hero-section.second .collection-hero-section-text * {
    font-size: 18px;
  }

  .collection-hero-section.second .collection-hero-section-items {
     margin-top: 32px;
  }

  .collection-columns-section-body {
    display: flex;
    gap: 10px;
  }

  .collection-columns-section-body.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-columns-section-item {
    padding: 0px;
    flex: 1 0;
  }

  .collection-columns-section-body.grid .collection-columns-section-item {
    padding: 40px;
    gap: 40px;
  }

  .collection-columns-section-body.grid .collection-columns-section-title {
    font-size: 16px;
  }

  .collection-columns-section-body.grid .collection-columns-section-item img {
    width: 92px;
  }

  .collection-hero-section-content {
    order: 1;
  }

  .collection-hero-section-media {
    margin: 0px;
    order: 2;
  }

  .collection-columns-section-title {
    font-size: 18px;
  }
  
  .collection-columns-section-title svg {
    width: 14px;
    flex: 0 0 14px;
  }

  .collection-columns-section-item img {
    max-height: 534px;
  }

  .collection-columns-section-item.collection-columns-hover-item:hover img:first-child{
    display: none;
  }

  .collection-columns-section-item.collection-columns-hover-item:hover .collection-columns-hover-image{
    display: block;
  }

  .know-section-body {
    grid-template-columns: 1fr 1fr;
  }

  .know-section-content {
    padding: 60px 24px 48px 80px;
  }

  .know-section-heading {
    font-size: 38px;
  }

  .guide-section .know-section-heading {
    font-size: 48px;
  }

  .know-section-button {
    font-size: 20px;
  }

  .know-section-subheading {
    font-size: 22px;
    position: relative;
    z-index: 2;
  }

  .know-section-text * {
    font-size: 18px;
  }

  .know-section-right-text {
    position: relative;
    z-index: 2;
  }

  .know-section-right-text * {
    font-size: 18px;
  }

  .know-section-items {
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }

  .know-section-right {
    position: relative;
    padding: 60px 80px 182px 32px;
  }

  .know-section-absolute {
    max-width: 367px;
    position: absolute;
    bottom: -30px;
    right: 0;
    z-index: 1;
  }

  .know-section-content-image img:first-child {
    display: block;
  }

  .know-section-content-image img:last-child {
    display: none;
  }

  .collection-tabs-section {
    padding: 60px 0px;
  }

  .collection-tabs-section-desktop {
    display: block;
  }

  .collection-tabs-section-mobile {
    display: none;
  }

  .collection-hero-section-text-desktop {
    display: block;
  }

  .collection-tabs-section-toggles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 20px;
  }

  .collection-tabs-section-toggles.wrap {
    flex-wrap: wrap;
  }

  .collection-tabs-section-toggle {
    padding: 0px;
    background: transparent;
    font-size: 18px;
    color: #1A1A1A99;
    margin-left: 0px;
    margin-right: 0px;
    font-weight: 400;
  }

  .collection-tabs-section-toggle:not(:first-child) {
    margin-top: 0px;
  }

  .collection-tabs-section-toggle:hover {
    color: #FF6F6F;
    transition: all 0.25s ease 0s;
  }

  .collection-tabs-section-toggle.active {
    background-color: transparent;
    color: #FF6F6F;
    transition: all 0.25s ease 0s;
    font-weight: 500;
  }

  .collection-tabs-section-toggle svg {
    display: none !important;
  }

  .collection-tabs-section-tab {
    margin-top: 48px;
  }

  .collection-tabs-section-tab.active {
    flex-direction: row;
    gap: 20px;
  }

  .collection-tabs-section-content {
    flex: 1 0;
  }

  .collection-tabs-section-media {
    flex: 1 0;
  }

  .collection-tabs-section-content * {
    font-size: 18px;
  }

  .extensions-section.desktop {
    display: block;
  }

  .extensions-section .collection-tabs-section-tab.active {
    display: block;
  }

  .collection-tabs-section-content {
    max-height: 316px;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .collection-tabs-section-content::-webkit-scrollbar {
    display: none;
  }

  .extensions-section .collection-tabs-section-content {
    max-height: 260px;
    max-width: 535px;
  }

  .extensions-section .collection-tabs-section-content * {
    color: #FFFFFFCC;
  }

  .extensions-section .collection-tabs-section-toggle {
    color: #FFFFFF99;
  }

  .extensions-section .collection-tabs-section-toggle:first-child {
    margin-top: 0px;
  }

  .extensions-section .collection-tabs-section-toggle.active {
    color: #FF6F6F;
  }

  .collection-tabs-section-media img {
    max-height: 316px;
  }

  .guide-section-body {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
  }

  .guide-section-main {
    padding: 60px 80px;
  }

  .guide-section-item {
    flex: unset;
    justify-content: end;
  }

  .guide-section-title {
    font-size: 22px;
  }

  .guide-section-text {
    font-size: 18px;
  }

  .faq-section {
    padding: 60px 0px 30px 0px;
  }

  .faq-section-question * {
    font-size: 22px;
  }


  .collection-heading-wrap h2 {
    font-size: 22px;
  }

  .faq-section-item {
    padding: 14px 0px 26px 0px;
  }

  .guide-hero-section {
    padding: 90px 0px;
  }

  .guide-hero-section-text {
    margin-top: 24px;
  }

  .guide-newest-section-title {
    font-size: 24px;
  }

  .guide-newest-section-text {
    margin-top: 24px;
  }

  .guide-newest-section-text * {
    font-size: 20px;
  }

  .guide-newest-section-right {
    padding-bottom: 42px;
  }

  .guide-newest-section-link {
    font-size: 20px;
    font-weight: 700;
  }

  .article-card .guide-newest-section-link {
    font-size: 16px;
    font-weight: 500;
  }

  .guide-hero-section-heading * {
    font-size: 80px;
  }

  .guide-main-section-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .guide-main-sort-wrapper {
    min-width: 190px;
    background-color: transparent;
    padding: 0px;
  }
  
  .guide-main-sort-toggle {
    display: none;
  }

  .guide-main-sorting {
    position: static;
    padding: 0px;
    background-color: transparent;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .guide-main-sort {
    padding: 6px 32px;
    background-color: #1A1A1A08;
    border-radius: 100px;
  }

  .guide-main-sort.active {
    background-color: #FF6F6F;
    color: white;
  }

  .article-card-top {
    margin-top: 24px;
  }

  .guide-main-block-heading {
    font-size: 22px;
  }

  .guide-main-block-link {
    font-size: 20px;
    font-weight: 500;
  }

  .guides-main-section {
    padding: 48px 0px;
  }

  .guide-read-more {
    padding: 48px 0px;
  }

  .guide-read-more-items {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .guide-read-more-item,
  .guide-read-more-item svg path {
    transition: all 0.25s ease 0s;
  }

  .guide-read-more-item:hover {
    background-color: #FF6F6F;
    color: white;
  }

  .guide-read-more-item:hover svg path {
    fill: white;
  }

  .extensions-section-inner {
    padding: 60px 0px;
  }

  .extensions-section-btn {
    margin-bottom: 0px;
    max-width: fit-content;
    background-color: #EAEAEA14;
    color: #EAEAEA !important;
  }

  .extensions-section .know-section-heading {
    text-align: center;
  }

  .brands-section-item {
    height: 260px;
  }

  .article-banner {
    padding: 90px 80px;
  }

  .article-banner h1 {
    font-size: 50px;
  }

  .article-desktop-image {
    display: block;
  }

  .article-mobile-image {
    display: none;
  }


  .article-top {
    flex-direction: row;
  }

  .article-left {
    flex: 0 1 60%;
  }

  .article-right {
    flex: 0 1 32%;
  }

  .article-short-description * {
    font-size: 20px;
  }

  .article-content {
    max-width: 60%;
  }

  .article-content * {
    font-size: 20px;
  }

  .article-content h2 {
    margin-top: 60px;
    padding-top: 60px;
    margin-bottom: 32px;
    font-size: 32px;
  }
  
  .article-content h2 * {
    font-size: 32px;
  }
    
  .article-new-comment form {
    max-width: 500px;
  }

  .article-new-comment h4 {
    font-size: 22px;
  }

  .article-new-comment-image {
    display: flex;
    position: absolute;
    bottom: -10px;
    right: -90px;
    width: 334px;
  }

  .article-new-comment-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .article-new-comment form button[type="submit"] {
    justify-content: space-between;
    min-width: 248px;
  }

  .small-banner-body {
    padding-left: 100px;
    gap: 10px;
  }

  .small-banner-title {
    font-size: 48px;
  }

  .small-banner-button-mobile {
    display: none;
  }

  .small-banner-button-desktop {
    margin: 0px;
    display: flex;
  }

  .small-banner-absolute {
    left: 12px;
    width: 270px;
  }

  .small-banner-features {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .small-banner-feature-title {
    font-size: 14px;
  }

  .global-wrapper__customer h1 {
    margin-top: 40px;
    font-size: 22px;
  }

  .global-wrapper__customer form {
    padding-bottom: 40px;
  }

  .features-section-item-text {
    font-size: 18px;
  }
  
}

@media(min-width: 1440px) {
  .collection-hero-section-body {
    gap: 120px;
  }

  .collection-hero-section.second .collection-hero-section-body {
    gap: 0px;
  }

  .collection-hero-section-items {
    margin-top: 18px;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
    columns-gap: 18px;
  }

  .collection-hero-section.second .collection-hero-section-items {
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-top: 32px;
  }

  .collection-hero-section-item-text {
    font-size: 18px;
  }

  .collection-columns-section-title {
    font-size: 22px;
  }

  .article-banner h1 {
    font-size: 80px;
  }

  .article-top {
    gap: 90px;
  }

  .article-new-comment form {
    max-width: 770px;
  }

  .small-banner-features {
    gap: 24px;
  }
}

@media(min-width: 1560px) {
  .info-section-image {
    width: 16%;
  }
}

@media(min-width: 1920px) {
  .info-section-image {
    width: 12%;
  }
}

.dynamic-checkout__content {
  --shopify-accelerated-checkout-button-border-radius: 100px !important;
}

body.page .main-wrapper .page + .column * {
  font-family: Satoshi-Variable;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -.02em;
}

body.page .main-wrapper .page + .column strong {
  font-weight: 700;
}

@media(min-width: 1024px) {
  body.page .main-wrapper .page + .column * {
    font-size: 18px;
  }
}

.needsclick {
  /*display: none !important;*/
}

.collection-view-all {
  margin: 0px;
  display: block;
  max-width: fit-content;
  margin-left: auto;
  color: #FF6F6F;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.2px;
  font-family: Satoshi-Variable;
  flex-shrink: 0;
}

@media(min-width: 1024px) {
  .collection-view-all {
    font-size: 20px;
    font-weight: 500;
  }
}

.jdgm-widget {
  overflow-x: hidden !important;
}

button.chat-toggle {
  background-color: #363636 !important;
}

.jm-mfp-container:before {
  display: none !important;
}

.jdgm-rev-popup .jm-mfp-content.jm-mfp-content {
  box-sizing: border-box;  
}

.jdgm-prev-badge__text{
  display: inline-block !important;
}

.product-thumbnail-buttons {
  padding: 0px 10px;
  margin-bottom: 10px;
}

@media (min-width: 1440px) {
    .product-thumbnail-buttons {
         padding: 0px 16px;
    }
}

.fancybox-inner .product-gallery__image img {
  max-height: 50vh;
}

.jdgm-histogram__row.jdgm-histogram__clear-filter {
  display: none !important;
}

.ClassicFormTab_classicFormTab__b6hh6 .ant-btn,
.global-wrapper .hulk__wishlist-wrap .wishlist-btn,
.global-wrapper  .customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Action .chButton,
.global-wrapper .customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chaEa .chaEa2 .chField.chField-UAC .chButton[type=submit]{
  background-color: #FF6F6F !important;
  border-radius: 100px !important;
  text-transform: initial !important;
  transition: all 0.25s ease 0s;
}

.global-wrapper  .customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Action .chButton,
.global-wrapper .customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chaEa .chaEa2 .chField.chField-UAC .chButton[type=submit]{
  border: 0px !important;
  font-weight: 500;
  padding: 10px;
}

.global-wrapper .hulk__wishlist-wrap .wishlist-btn {
  height: auto !important;
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  max-width: 200px !important; 
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border: 0px !important;
  font-weight: 500;
  line-height: 1.2 !important;
  padding: 10px !important;
}

.global-wrapper .hulk__wishlist-wrap .wishlist-grid-view .wishlist-btn {
  max-width: 100% !important;
}

.global-wrapper .hulk__wishlist-wrap .wishlist-list-view .wishlist-btn {
  margin-right: 0px !important;
}

.global-wrapper .hulk__wishlist-wrap .wishlist-btn:hover {
  transition: all 0.25s ease 0s;
  background-color: #f75e5e !important;
}

.ClassicFormTab_classicFormTab__b6hh6 .ant-btn:hover,
.global-wrapper  .customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Action .chButton:hover,
.global-wrapper .customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chaEa .chaEa2 .chField.chField-UAC .chButton[type=submit]:hover {
  transition: all 0.25s ease 0s;
  background-color: #f75e5e !important;
  opacity: 1 !important;
}

.ClassicFormTab_classicFormTab__b6hh6 .ant-form-item + p {
  display: none !important;
}

.ClassicFormTab_classicFormTab__b6hh6 .ClassicFormTab_title__Htyjk{
  font-family: EdsMarketMainScript !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  text-shadow: -2px 0px 0px rgba(255, 141, 132, .4) !important;
  line-height: 130% !important;
}

.hulk__wishlist-wrap .fancy_title h3 {
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 130% !important;
  text-transform: initial !important;
}

.hulk__wishlist-wrap {
  margin-top: 50px;
}

.global-wrapper__customer input {
  background-color: #1A1A1A08 !important;
  border-radius: 100px !important;
  padding: 14px 18px !important;
  color: #1A1A1A !important;
  border: 0px !important;
}

.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Value .chContent-BPG-group-Value-Label,
.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chaEa .chaEa2 .chField .chField-Label{
  position: static !important;
  text-align: left !important;
  height: auto !important;
  margin-bottom: 4px;
  color: #1A1A1A;
}

.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper #chMfFields .chContent-BPG-group-Value.chHasPhone,
.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Value.chHasPhone {
  flex-wrap: wrap !important;
  width: 100%;
}
.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper #chMfFields .chContent-BPG-group-Value.chHasPhone .chContent-BPG-group-Value-Label, .customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Value.chHasPhone .chContent-BPG-group-Value-Label {
  width: 100% !important;
  display: block;
}

.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper #chMfFields .chContent-BPG-group-Value.chHasPhone input,
.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Value.chHasPhone input {
  width: auto !important;
  min-width: auto !important;
  flex: 1;
  max-width: 260px;
}

.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Value .chpCm {
  border-radius: 100px !important;
}

.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chContent-Body-Page-Content-Wrapper .chContent-BPG-group .chContent-BPG-group-Value .chpCb .chpCm:after {
  width: 4px !important;
  height: 10px !important;
  left: 10px !important;
  top: 4px !important;
}

.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chaEa .chaEa2 .chField select {
  padding: 14px 18px !important;
}

.customerHub .chContent .chContent-Wrapper .chContent-Body .chContent-Body-Page .chContent-Body-Page-General .chContent-Body-Page-Profile .chaEa .chaEa2 .chField.chField-Checkbox input[type=checkbox]:checked+label:after {
  left: 8px !important;
  top: 2px !important;
}

.wishlist-btn:hover {
  color: #fa7268;
}

.wishlist-btn span {
  display: none;
}

.wishlist-btn i {
  margin: 0px;
}

.atc-btn-container .hulk_wl_icon-text {
  margin-top: 6px;
}

.site-header__icon:before {
  color: white;
}

.icon-wishlist-remove {
  color: #fa7268 !important;
}

.wishlist-modal__content .wrapper_grid > * {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.wishlist-modal__content .wishlist-btn {
  border-radius: 100px !important;
  text-transform: initial !important;
  font-weight: 500 !important;
}

.hulk__wishlist-wrap .product-view-popup .wrapper_grid .slider-arrows {
  position: static !important;
}

.hulk__wishlist-wrap .carousel .carousel-inner * {
  height: 100%;
}

.hulk__wishlist-wrap .wishlist-popup .wishlist-modal .wishlist-modal__body.product-view-popup .slider-arrows .carousel-control:last-child:before{
  display: none !important;
}

.hulk__wishlist-wrap .wishlist-grid-view .wishlist__product .wishlist__product-img img,
.hulk__wishlist-wrap .wishlist-list-view .wishlist__product .wishlist__product-img img {
  object-fit: contain !important;
}

#chRecentViewed .chShowPopular-Item .chButton, #chShowPopular .chShowPopular-Item .chButton {
  color: white !important;
}

@media(max-width: 1024px) {
  .heart-wishlist-animation .heart-hulk-animation {
    font-size: 20px !important;
  }
}

.wishlist-btn[data-custom-wishlist-icon] {
  z-index: 2 !important;
}

.hulk__wishlist-wrap * {
  box-sizing: border-box !important;
}

@media screen and (max-width: 576px) {
    .global-wrapper .hulk__wishlist-wrap .wishlist-grid-view {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-gap: 16px !important;
    }
}

.site-header__icon {
  margin-top: 3px;
  margin-right: 0px;
  margin-left: 3px;
}

.site-header__icon:before {
  font-weight: 600;
}

.product-gallery {
  position: relative;
}

.product-gallery .product-thumbnail-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.product-gallery .icon-wishlist-heart {
  font-size: 20px;
}

.needsclick[data-testid="POPUP"] * {
  top: 0px !important;
}

/* .needsclick.go681896951.kl-private-reset-css-Xuajs1 {
  height: auto !important;
} */

.needsclick.klaviyo-close-form.go2324193863.kl-private-reset-css-Xuajs1 {
  left: unset !important;
  right: -10px !important;
  bottom: -4px !important;
  position: fixed !important;
}

.needsclick.kl-teaser-QRC4Yp.undefined.kl-private-reset-css-Xuajs1 {
  transform: translateY(-50%) !important;
  -webkit-transform: translateY(-50%) !important;
  transform-origin: none !important;
  -webkit-transform-origin: none !important;
  filter: unset !important;
  transform-style: preserve-3d;
  width: 55px !important;
  height: 95px !important;
  position: relative;
}

/*.needsclick.kl-private-reset-css-Xuajs1[data-testid="animated-teaser"] > span > div:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(90deg);
  width: max-content;
}*/

div[role="dialog"].needsclick > .needsclick.kl-private-reset-css-Xuajs1 {
  position: static !important;
}

.interstitial-view__welcome .store-info{
  margin-top: -1px !important;
}

.needsclick.kl-private-reset-css-Xuajs1[data-testid="animated-teaser"] {
  position: relative;
  transform: none !important;
  -webkit-transform: none !important;
}

.product-thumbnail-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.jdgm-widget.jdgm-widget:not([style="display: none;"]) + .product-thumbnail-tags {
  margin-top: 16px;
}

.product-thumbnail-tag {
  background-color: #27272A;
  box-shadow: 4px 4px 6px 0px rgba(26, 26, 26, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
}

.product-thumbnail-tag * {
  margin: 0px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  font-style: normal;
  line-height: 110%;
}

.product-thumbnail-tag strong {
  color: var(--other-color);
}

.guide-main-sorting-inner {
  position: relative;
}

.guide-main-sorting-active {
  margin: 0px;
  background-color: #FF6F6F;
  color: white;
  padding: 18px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  cursor: pointer;
  transition: all 0.25s ease 0s;
}
.guide-main-sorting-wrapper {
  width: 100%;
}

@media(min-width: 768px) {
  .guide-main-sorting-wrapper {
    width: auto;
  }
  .guide-main-sorting-active {
    padding: 18px 24px;
    min-width: 240px;
  }
}

.guide-main-sorting-active svg {
  flex-shrink: 0;
  width: 12px;
  transition: all 0.25s ease 0s;
}

.guide-main-sorting-inner.active .guide-main-sorting-active svg {
  transform: rotate(180deg);
  transition: all 0.25s ease 0s;
}

.guide-main-sorting-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease 0s;
  background-color: #F8F8F8;
  padding: 18px 24px;
  box-sizing: border-box;
  z-index: 3;
}

.guide-main-sorting-inner.active .guide-main-sorting-dropdown  {
  transition: all 0.25s ease 0s;
  transform: translateY(4px);
  opacity: 1;
  pointer-events: all;
}

.guide-main-sorting-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 240px;
  overflow-y: auto;
}

.guide-main-sorting-link {
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 6px 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease 0s;
}

.guide-main-sorting-link:visited {
  color: #1A1A1A;
}

.guide-main-sorting-link.active {
  color: #fa7268;
}

.guide-main-blocks-sort {
  padding: 0px;
}

@media(min-width: 576px) {
  .guide-main-sorting-inner {
    margin-left: 0px;
    margin-right: 0px;
    max-width: fit-content;
  }

  .guide-main-sorting-active {
    border-radius: 100px;
  }

  .guide-main-sorting-inner.active .guide-main-sorting-active {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: all 0.25s ease 0s;
  }
}

@media(min-width: 768px) {
  .guide-main-sorting-inner {
    margin-left: auto;
  }
}

@media(min-width: 1024px) {

  .guide-main-sorting-active {
    padding: 14px 18px;
  } 
  
  .guide-main-sorting-dropdown {
    padding: 18px;
  }

  .guide-main-sorting-link:hover {
    transition: all 0.25s ease 0s;
    color: #fa7268;
  }
}
.final-coral .money {
  color:#ff6f6f!important
}

.predictive-search__popular-products .predictive-search__product-suggestions {
  display: grid;
  grid-template-columns: 1fr;
}

@media(min-width: 768px) {
  .predictive-search__popular-products .predictive-search__product-suggestions {
    grid-template-columns: 1fr 1fr;
  }
}

.jdgm-carousel__rev-sum-wrapper {
  display: none !important;
}

.jdgm-carousel-wrapper {
  width: 100%;
}

.jdgm-carousel--card-theme .jdgm-carousel-item {
  padding: 8px !important;
}

.jdgm-carousel-item__inner-wrapper {
  box-shadow: none !important;
}

.jdgm-carousel-item:not(:first-child) .jdgm-carousel-item__inner-wrapper {
  border-left: 1px solid #F4F4F4;
}

@media(min-width: 1024px) {
  .jdgm-carousel-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }
}

.jdgm-carousel-title {
  color: #1A1A1A;
  font-size: 22px;
  font-weight: 500;
  font-family: "Satoshi-Variable", sans-serif;
  text-transform: capitalize;
}

.jdgm-carousel-title-and-link {
  margin: 0px !important;
  padding: 0px 20px !important;
}

.jdgm-all-reviews-rating-wrapper {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.jdgm-all-reviews-rating-wrapper > * {
  max-width: fit-content !important;
}

.shopify-block .jdgm-carousel-wrapper .jdgm-star.jdgm-star {
  background: white;
  padding: 0px !important;
  margin: 0 2px !important;
  color: #FF6F6F;
}

.jdgm-carousel-number-of-reviews {
  color: #1A1A1A !important;
}

.sidebar__content,
.cart-bottom-sidebar-inner {
  position: sticky;
  top: 140px;
}

@media(min-width: 1151px) {
  .sidebar__content,
  .cart-bottom-sidebar-inner {
    position: sticky;
    top: 220px;
  }
}

.predictive-search-toggles {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-y: auto;
  scrollbar-width: none;
  margin: 0px -1.25rem;
  padding: 0px 1.25rem;
}

.predictive-search-toggles:-webkit-scrollbar {
  display: none;
}

.predictive-search-toggle {
  padding: 8px 32px;
  background-color: rgba(26, 26, 26, 0.03);
  border-radius: 100px;
  font-size: 16px;
  color: #1A1A1A;
  font-weight: 400;
  transition: all 0.25s ease 0s;
  cursor: pointer;
  min-width: max-content;
}

.predictive-search-toggle:hover {
  background-color: rgba(26, 26, 26, 0.1);
}

.predictive-search-toggle.active {
  background-color: rgba(255, 111, 111, 1);
  color: white;
}

.predictive-search-tab {
  display: none;
}

.predictive-search-tab.active {
  display: block;
}

.predictive-search__query-suggestion-link,
.predictive-search__article-suggestion-link,
.predictive-search__page-suggestion-link{
  color: rgba(255, 111, 111, 1);
  font-weight: 500;
  font-size: 16px;
}

.predictive-search__footer-button {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: fit-content;
  background-color: transparent !important;
  border: 0px !important;
  color: #1A1A1A !important;
  padding: 0px !important;
  margin: 6px auto;
  text-transform: initial !important;
}

.predictive-search__footer-button:active {
  box-shadow: none !important;
}

.products-wrapper .product-thumbnail-buttons-list {
  display: none;
}

.products-wrapper.list .product-thumbnail-buttons-list {
  margin-top: 16px;
  display: block;
  padding: 0px !important;
}

.products-wrapper.list .product-thumbnail-buttons-grid {
  display: none;
}
.thumbnail__link .product-thumbnail-buttons.product-thumbnail-buttons-list {
 display:none
}
.codetag:after {
  content:"";
  background:url(/cdn/shop/files/price-tag.svg);
  height:17px;
  width:17px;
  display:block;
  position:absolute;
    left:-18px;
    top:1px;
  background-size:contain;
 
}
.codetag {
    position:relative;
    font-size:0;
    margin-left:20px;
}
.kiz span {
  color:#000
}
.liz {
  color:#1a1a1a99
}
.niz {
  font-size:21px;
}
@media (max-width:767px){
.niz .money {
 font-size:18px!important;
 /*opacity:.8;*/
 font-family: 'sofia-pro';
}
}
.cardwrap .yousave {
  border:0px solid red!important;
  margin-top:8px;
}

.image-with-text-second  {
  display: grid;
  grid-template-columns: 1fr;
}

.image-with-text-second.desktop {
  display: none;
}

.image-with-text-second-left {
  position: relative;
}

.image-with-text-second-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.image-with-text-second-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-with-text-second-bg img.ts-image-text__media--desktop {
  display: none;
}

.image-with-text-second-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.image-with-text-second.second .image-with-text-second-content {
  padding: 40px 20px;
}

.image-with-text-second-title {
  font-family: EdsMarketMainScript;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  text-transform: unset;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: -2px 0px 0px rgba(255, 141, 132, .4);
  text-align: center;
}

.image-with-text-second.second .image-with-text-second-title {
  text-align: left;
  font-size: 32px;
}

.image-with-text-second-text {
  margin: 0px;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 150%;
}

.image-with-text-second-content .image-with-text-second-text {
  text-align: center;
  max-width: 560px;
  margin: 0px auto;
  width: 100%;
}

.image-with-text-second.second .image-with-text-second-content .image-with-text-second-text {
  text-align: left;
  max-width: 100%;
}

.image-with-text-second.second .image-with-text-second-text {
  font-size: 16px;
}

.image-with-text-second-features-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-with-text-second-features-card {
  background-color: #2B2B2B;
  padding: 16px;
}

.image-with-text-second-features-card-value {
  margin: 0px;
  color: #FF6F6F;
  font-size: 20px;
  line-height: 110%;
}

.image-with-text-second-features-card-title {
  margin: 0px;
  margin-top: 8px;
  color: white;
  font-size: 16px;
  line-height: 110%;
}

.image-with-text-second.second .image-with-text-second-right {
  display: block;
}

.image-with-text-second.second .image-with-text-second-content {
  justify-content: space-between;
  min-height: 500px;
}

.image-with-text-second.second .image-with-text-second-right .image-with-text-second-text {
  margin: 0px;
  color: #71ECC7;
  font-size: 32px;
  line-height: 100%;
  font-family: EdsMarketMainScript;
}

.image-with-text-second.second .image-with-text-second-right-content {
  gap: 32px;
  padding: 40px 20px;
}

.image-with-text-second-content-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media(min-width: 1024px) {
  .image-with-text-second.second .image-with-text-second-right .image-with-text-second-text {
    font-size: 38px;
  }

  .image-with-text-second.second .image-with-text-second-right-content {
    gap: 47px;
  }

  .image-with-text-second-features-card-value {
    font-size: 22px;
  }

  .image-with-text-second-features-card-title {
    font-size: 18px;
  }

  .image-with-text-second-features-body {
    gap: 16px;
  }
}

@media(min-width: 1200px) {
  .image-with-text-second.second .image-with-text-second-content {
    padding: 60px 80px;
  }

  .image-with-text-second.second .image-with-text-second-right-content {
    padding: 60px 80px 60px 30px;
  }
}

.image-with-text-second-items {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.image-with-text-second-item {
  padding-top: 13px;
  border-top: 1px solid white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.image-with-text-second-item-icon {
  flex-shrink: 0;
  width: 28px;
}

.image-with-text-second-item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-with-text-second-item-title {
  margin: 0px;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 140%;
}

.image-with-text-second-right {
  display: grid;
  grid-template-columns: 60% 40%;
  background-color: #1A1A1A;
}

.image-with-text-second-right-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  box-sizing: border-box;
}

.image-with-text-second-right-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-with-text-second-button {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  width: 100%;
  max-width: 248px;
  background-color: #98FFE0;
  color: #1A1A1A !important;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.25s ease 0s;
  border-radius: 100px;
  border: 0px;
  box-sizing: border-box;
}

.image-with-text-second-button:hover {
  background-color: #71ECC7;
}

@media(min-width: 1024px) {
  .image-with-text-second {
    grid-template-columns: 1fr 1fr;
  }

  .image-with-text-second.second .image-with-text-second-title {
    font-size: 48px;
  }
  
  .image-with-text-second.desktop {
    display: grid;
  }

  .image-with-text-second-bg img.ts-image-text__media--desktop {
    display: block;
  }

  .image-with-text-second-bg img.ts-image-text__media--mobile {
    display: none;
  }
  
}

.welcome-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;  
}

.welcome-section-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.welcome-section-bg img,
.welcome-section-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-section-bg img:first-child {
  display: none;
}

.welcome-section-content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 24px;
  text-align: center;
  box-sizing: border-box;
}

.welcome-section-logo {
  width: 100%;
  max-width: 86px;
}

.welcome-section-content h1,
.welcome-section-content h2 {
  font-family: eds-market-main-script;
  text-transform: initial;
}

.welcome-section-content h1 {
  margin: 0px;
  margin-top: 12px;
  font-size: 38px;
  line-height: 110%;
  font-weight: 400;
  color: white;
}

.welcome-section-content h2 {
  margin: 0px;
  margin-top: 80px;
  font-size: 32px;
  font-weight: 400;
  color: white;
}

.welcome-section-text {
  margin: 0px;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  max-width: 583px;
  color: white;
}

.welcome-section-btn {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #FF6F6F;
  border-radius: 100px;
  padding: 16px;
  width: 100%;
  max-width: 340px;
  font-size: 18px;
  font-weight: 700;
  color: white !important;
  transition: all 0.25s ease 0s;
  line-height: 100%;
  font-family: "Satoshi-Variable", sans-serif;
  box-sizing: border-box;
}

.welcome-section-socials {
  margin-top: 80px;
}

.welcome-section-socials * {
  color: white;
}

@media(min-width: 768px) {
  .welcome-section-bg img:first-child {
    display: block;
  }

  .welcome-section-bg img:last-child {
    display: none;
  }
}

@media(min-width: 1024px) {
  .welcome-section-content h1 {
    margin-top: 32px;
    font-size: 80px;
  }

  .welcome-section-content h2 {
    margin-top: 80px;
    font-size: 48px;
  }

  .welcome-section-btn {
    margin-top: 40px;
    max-width: 250px;
    font-size: 20px;
  }

  .welcome-section-btn:hover {
    background-color: #F75E5E;
  }

  .welcome-section-logo {
    max-width: 150px;
  }
}

.page-welcome {
  overflow: hidden;
}

.featured-collection-slider {
  padding: 40px 0px;
}

.featured-collection-swiper .swiper-wrapper {
  align-items: stretch !important;
}

.featured-collection-swiper .swiper-slide {
    height: auto !important;
}

.featured-collection-swiper .swiper-slide > * {
  margin: 0px !important;
  width: 100% !important;
  height: 100% !important;
}

.featured-collection-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media(min-width: 1024px) {
  .featured-collection-bottom {
    margin-top: 40px;
    gap: 40px;
  }                                            
}

.featured-collection-btn-next,
.featured-collection-btn-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(234, 234, 234, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
}

.featured-collection-btn-prev svg,
.featured-collection-btn-next svg  {
  width: 10px;
  display: block;
  position: relative;
}

@media(min-width: 768px) {
  .featured-collection-btn-next,
  .featured-collection-btn-prev {
    width: 51px;
    height: 51px;
  }

  .featured-collection-btn-prev svg,
  .featured-collection-btn-next svg  {
    width: 14px;
  }
}

.featured-collection-btn-prev {
  left: 20px;
}

.featured-collection-btn-prev svg {
  transform: rotate(-180deg);
  left: -2px;
}

.featured-collection-btn-next {
  right: 20px;
}

.featured-collection-btn-next svg {
  left: 2px;
}

.featured-collection-swiper {
  margin-left: -24px !important;
  margin-right: -24px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
@media(min-width: 750px) {
  .featured-collection-swiper {
    margin-left: -80px !important;
    margin-right: -80px !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}

@media(min-idth: 1024px) {
  .featured-collection-slider {
    padding: 80px 0px;
  }

  .featured-collection-swiper {
    padding: 0px !important;
    margin: 0px !important;
  }
}



@media(max-width: 480px) {
  .featured-collection-swiper .add-from-collection {
    font-size: 12px;
  }

  .featured-collection-swiper .add-from-collection svg {
    display: block;
    width: 12px;
  }
}

.image-with-text__wrapper h3 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-family: "Satoshi-Variable", sans-serif !important;
  font-weight: 500;
}

.image-with-text__wrapper p {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #5F5F5F;
}

.shopify-section--image-with-text .container2 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.shopify-section--image-with-text .new-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.image-with-text__wrapper .action_button {
  margin-top: 24px;
  text-transform: initial;
  width: 100%;
  transition: all 0.25s ease 0s;
}

.image-with-text__wrapper .action_button:hover {
  background-color: #F75E5E;
}

@media(min-width: 576px) {
  .image-with-text__wrapper .action_button {
    max-width: 248px; 
  }
}

@media(min-width: 1024px) {
  .image-with-text__wrapper h3 {
    font-size: 32px;
  }

  .shopify-section--image-with-text .container2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .image-with-text__wrapper p {
    font-size: 20px;
  }
}

.why-section {
  padding: 32px 0px;
  background-color: #FBFAF5;
}

.why-section-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-section .info-section-heading * {
  font-family: EdsMarketMainScript;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.why-section .info-section-text {
  margin-top: 20px;
  max-width: 540px;
}

.why-section-right {
  background-color: white;
  padding: 20px;
}

.why-section-quote {
  margin: 0px;
  font-size: 18px;
  line-height: 140%;
  color: #1A1A1A;
}

.why-section-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-section-avatar {
  flex: 0 0 48px;
}

.why-section-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.why-section-name {
  margin: 0px;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}

.why-section-jobtitle {
  margin: 0px;
  margin-top: 4px;
  font-size: 18px;
  line-height: 100%;
  color: #484848;
}

@media(min-width: 1024px) {
  .why-section {
    padding: 60px 0px; 
  }

  .why-section-body {
    grid-template-columns: 1fr 1fr;
  }

  .why-section .info-section-heading * {
    font-size: 38px;
  }

  .why-section-right {
    padding: 26px 32px;
  }

  .why-section-quote {
    font-size: 24px;
  }

  .why-section-bottom {
    margin-top: 24px;
  }
}

.Vtl-StickyAddToCart {
  padding: 10px !important;
  box-sizing: border-box !important;
}

.Vtl-StickyAddToCart__Container {
  flex-direction: row !important;
}

.Vtl-StickyAddToCart__ProductInfoContainer {
  flex-direction: column !important;
  gap: var(--vtl-space-4) !important;
  align-items: start !important;
}

.Vtl-StickyAddToCart__AddToCartButton {
  flex-shrink: 0;
  min-width: 120px !important;
}

.Vtl-StickyAddToCart__ProductPriceDiscounted {
  color: #fa7268 !important;
  font-size: 16px !important;
}

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

@media(max-width: 1023px) {
  .Vtl-StickyAddToCart__ProductInfoTitle {
    width: 100% !important;
    max-width: 130px !important;
  }
}

limespot-box[data-box-style=bundleGrid i] .ls-bundle-add-to-cart-select-wrap {
  display: none;
}

limespot-box[data-box-style=bundleGrid i] .ls-bundle-cta-container,
limespot-box[data-box-style=bundleGrid i] .limespot-recommendation-box-bundle-left-section{
  display: block !important;
}

limespot-box[data-box-style=bundleGrid i] .ls-add-to-cart {
  border: 1px solid #fa7268;
  background: #fa7268;
  color: #fff;
  transition: all 0.25s ease 0s;
  border-radius: 100px !important;
  min-height: 38px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: initial !important;
  min-height: 43px !important;
}

limespot-box[data-box-style=bundleGrid i] .ls-add-to-cart:hover {
  background: #F75E5E !important;
}

limespot-box[data-box-style=bundleGrid i] .ls-bundle-cta-container {
  margin: 0px !important;
  margin-top: 16px !important;
  padding-top: 16px;
  padding-left: 0px !important;
  border-top: 1px solid #dddddd;
  padding-bottom: 0px !important;
}

.ls-bundle-list-ul .ls-bundle-list-li.ls-this-item .limespot-bundle-list-item-info:before,
limespot-box[data-box-style=bundleGrid i] .ls-bundle-list-ul .limespot-bundle-list-item-info:before {
  display: none;
}

limespot-box[data-box-style=bundleGrid i] .ls-title {
  font-size: 12px;
  font-weight: 500;
  text-transform: initial !important;
}

limespot-box[data-box-style=bundleGrid i] .ls-bundle-list-li,
limespot-box[data-box-style=bundleGrid i] .ls-image-wrap .ls-image {
  width: 100px !important;
}

limespot-box[data-box-style=bundleGrid i] .limespot-recommendation-box-bundle-item-image .ls-image-wrap {
  height: 100px !important;
}

limespot-box[data-box-style=bundleGrid i] .ls-original-price.ls-original-price {
  font-size: 12px;
  color: #1a1a1a99;
  margin: 0px;
  font-weight: 400;
}

limespot-box[data-box-style=bundleGrid i] .ls-price-wrap {
  display: none !important;
}


limespot-box[data-box-style=bundleGrid i] .ls-bundle-price-wrap{
  margin-top: 0px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 4px;
  flex-wrap: wrap;
}

.ls-bundle-price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

limespot-box[data-box-style=bundleGrid i] .ls-sale-price {
  margin: 0px;
  color: #fa7268;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}

limespot-box[data-box-style=bundleGrid i] .ls-box-title {
  font-family: "Satoshi-Variable", sans-serif;
  font-weight: 500;
  font-size: 18px !important;
  text-transform: initial;
}

limespot-box[data-box-style=bundleGrid i] .ls-bundle-price-text {
  font-size: 16px;
}

.limespot-recommendation-box-bundle-products {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0px !important;
}

limespot-box[data-box-style=bundleGrid i] .ls-bundle-list-item {
    margin: 0px !important;
}

@media(min-width: 750px) {
  limespot-box[data-box-style=bundleGrid i] .ls-original-price.ls-original-price {
    font-size: 14px;
  }

  limespot-box[data-box-style=bundleGrid i] .ls-sale-price {
    font-size: 18px;
  }

  limespot-box[data-box-style=bundleGrid i] .ls-title {
    font-size: 14px;
  }
}

.jdgm-preview-badge--with-link {
  cursor: auto !important;
}

/* n9-fbt .n9-product-price-layout2 {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.n9-fbt-add-checkbox-text {
  display: none !important;
}

n9-fbt .n9-product-item-layout2 {
  position: relative;
}

.n9-fbt-add-checkbox-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
} */

.product-app .n9-product-select-layout9 {
  margin-top: 13px !important;
  background: none !important;
}

.product-app n9-fbt .n9-fbt-product-price-final {
  color: #fa7268 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.product-app .n9-fbt-product-price-compare-layout9 {
  font-size: 12px !important;
}

n9-fbt .n9-fbt-column2-holder-layout9 .titleCharLimit {
  margin: 0px !important;
  font-size: 14px !important;
}

@media(min-width: 990px) {
  .product-app n9-fbt .n9-fbt-product-price-final {
    font-size: 18px !important;
  }

  .product-app .n9-fbt-product-price-compare-layout9 {
    font-size: 16px !important;
  }

  n9-fbt .n9-fbt-column2-holder-layout9 .titleCharLimit {
    font-size: 18px !important;
  }
}

@media(max-width: 989px) {
  .product-app n9-fbt .n9-product-img-layout9 {
    width: 60px !important;
    height: 60px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }
  .modalUpsellProducts {
    position: fixed;
    z-index: 99999999999!important;
 }
 .n9Upsells-Product-FooterBox {
  display:flex!important;
  justify-content:space-between
 }
 .N9ProductUpsellsModalFooter {
    padding: 10px!important;
}
.n9Upsells-Product-FooterBox > div {
  flex-direction: column;
  flex: 0 0 50%;
  align-items: flex-start!important;
}
.n9-quickview-variant-select {
  margin-bottom:0
}
.add_to_cart_addlyAIBundles {
    max-height: 42px;
    line-height: 10px;
    margin-top: 0 !important;
}
}
.closeN9QuickView {
    color: #000!important;
    top: 8px!important;
    
}

.N9ProductUpsellsModalFooter {
  display: none !important;
}

.closeN9QuickView {
  font-size: 26px !important;
}

.shopify-payment-button__more-options {
  display: none !important;
}

@media(max-width: 1023px) {
  .guide-section-bottom {
    height: 100%;
  }
}

.n9-product-img-layout2 {
  width: 100% !important;
  object-fit: contain !important;
}

.product-banner {
  margin: 8px 0px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-banner-text {
  color: rgba(26, 26, 26, 0.6);
  font-size: 14px;
  line-height: 100%;
}

.product-banner-icon {
  display: flex;
  width: 80px;
}

.home-banner-section {
  background-color: #1A1A1A;
  border-bottom: 10px solid white;
  padding: 60px 0px;
}

.home-banner-section-top {
  max-width: fit-content;
  margin: 0px auto;
  padding: 46px 0px;
  border: 6px solid white;
  text-align: center;
}

.home-banner-section-top h2 {
  margin: 0px -16px;
  font-family: EdsMarketMainScript;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: unset;
  color: #fff;
  background-color: #1A1A1A;
}

.home-banner-section-icons {
  position: relative;
  z-index: 2;
  margin-top: -13px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.home-banner-section-icon {
  width: 80px;
}

.home-banner-section-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section-text {
  margin-top: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 448px;
}

.home-banner-section-text * {
  margin: 0px;
  color: rgba(234, 234, 234, 0.7);
  font-size: 150%;
  font-size: 16px;
  font-weight: 400;
}

@media(min-width: 768px) {
  .home-banner-section-top h2 {
    margin: 0px -34px;
    font-size: 56px;
  }
  .home-banner-section-icon {
    width: 150px;
  }
  .home-banner-section-icons {
    margin-top: -21px;
  }
}

@media(min-width: 1024px) {
  .home-banner-section-top h2 {
    font-size: 80px;
  }
  .home-banner-section-text * {
    font-size: 20px;
  }
}