/** Shopify CDN: Minification failed

Line 1833:2 Expected identifier but found "*"
Line 6546:2 Expected identifier but found "*"
Line 6607:2 Expected identifier but found "*"
Line 15181:3522 Expected identifier but found "."
Line 16600:5 Comments in CSS use "/* ... */" instead of "//"
Line 16739:2 Comments in CSS use "/* ... */" instead of "//"
Line 16889:2 Comments in CSS use "/* ... */" instead of "//"
Line 24330:14 Expected ":"

**/
@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%;
  }
}

.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: Montserrat;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.81949fa0ac9fd2021e16436151e8eaa539321637.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=aa668f2ea3c6ab01efcf647298b1778eb48445db883fc887ccd6c4ff8ceb4303") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.a6c632ca7b62da89c3594789ba828388aac693fe.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=6de0667655ef099dd1f490afb17c40c3cd087500178137939d32cfc5f75ebdee") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=515142a408d1ae7dedf9ef53ded8331a41a658de3e957aae676c10a015e40e1a") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5888a5aec10c48313b9fdf746b233e4e448036ebd94d610e201ed6f81277ab9b") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.5a4ea298b4789e064f62a29aafc18d41f09ae59b.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=34fdd82bfdecd291135635d03b54962bcd6156cde406729a76a108c16189074f") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.072b5869c5e0ed5b9d2021e4c2af132e16681ad2.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=9e1624f1ecfaee25720fdba90c1068af12e36e7e17f4356c2f151cf43ec76a4e") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=d5ca9cf072682d8dedf2562bc7f241e2024be4e7d9f3dd772d299cc853d82093") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=62479ed22b2b58908bc46ec3987a1b5575df8086b2f305416121bd98e1d12900") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.81949fa0ac9fd2021e16436151e8eaa539321637.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=aa668f2ea3c6ab01efcf647298b1778eb48445db883fc887ccd6c4ff8ceb4303") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.a6c632ca7b62da89c3594789ba828388aac693fe.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=6de0667655ef099dd1f490afb17c40c3cd087500178137939d32cfc5f75ebdee") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=515142a408d1ae7dedf9ef53ded8331a41a658de3e957aae676c10a015e40e1a") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5888a5aec10c48313b9fdf746b233e4e448036ebd94d610e201ed6f81277ab9b") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.5a4ea298b4789e064f62a29aafc18d41f09ae59b.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=34fdd82bfdecd291135635d03b54962bcd6156cde406729a76a108c16189074f") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.072b5869c5e0ed5b9d2021e4c2af132e16681ad2.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=9e1624f1ecfaee25720fdba90c1068af12e36e7e17f4356c2f151cf43ec76a4e") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=d5ca9cf072682d8dedf2562bc7f241e2024be4e7d9f3dd772d299cc853d82093") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=62479ed22b2b58908bc46ec3987a1b5575df8086b2f305416121bd98e1d12900") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n5.07ef3781d9c78c8b93c98419da7ad4fbeebb6635.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=32a896bf150ea6c4a1442e5bef3558997787751d849d8597ec969aaafaa575a4") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n5.adf9b4bd8b0e4f55a0b203cdd84512667e0d5e4d.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=d45e666683497e81bb7a93b791dd653076086945bb8b29d6b08412f0925d356a") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=515142a408d1ae7dedf9ef53ded8331a41a658de3e957aae676c10a015e40e1a") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5888a5aec10c48313b9fdf746b233e4e448036ebd94d610e201ed6f81277ab9b") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i5.d3a783eb0cc26f2fda1e99d1dfec3ebaea1dc164.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=fdd14c7f8ee8c9a05684a3dc6d840caaee9a2349f42185470c12b3b5d2e16a83") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i5.76d414ea3d56bb79ef992a9c62dce2e9063bc062.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=e47762ecc471cab171d3c1f7219ec55d330f27dea99ee79dc2a0307f27e1ac2c") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=d5ca9cf072682d8dedf2562bc7f241e2024be4e7d9f3dd772d299cc853d82093") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=62479ed22b2b58908bc46ec3987a1b5575df8086b2f305416121bd98e1d12900") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.81949fa0ac9fd2021e16436151e8eaa539321637.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=aa668f2ea3c6ab01efcf647298b1778eb48445db883fc887ccd6c4ff8ceb4303") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.a6c632ca7b62da89c3594789ba828388aac693fe.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=6de0667655ef099dd1f490afb17c40c3cd087500178137939d32cfc5f75ebdee") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=515142a408d1ae7dedf9ef53ded8331a41a658de3e957aae676c10a015e40e1a") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5888a5aec10c48313b9fdf746b233e4e448036ebd94d610e201ed6f81277ab9b") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.5a4ea298b4789e064f62a29aafc18d41f09ae59b.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=34fdd82bfdecd291135635d03b54962bcd6156cde406729a76a108c16189074f") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.072b5869c5e0ed5b9d2021e4c2af132e16681ad2.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=9e1624f1ecfaee25720fdba90c1068af12e36e7e17f4356c2f151cf43ec76a4e") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=d5ca9cf072682d8dedf2562bc7f241e2024be4e7d9f3dd772d299cc853d82093") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=62479ed22b2b58908bc46ec3987a1b5575df8086b2f305416121bd98e1d12900") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n1.2f0714cbd41857ba00d5d4fafdce92c40aadb8e6.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7a96b28759585429a1055760c7e0f3ee564220b8b791f7e3e58c851274ac187c") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n1.7bec1bf4c4d0f77c37dc95cf9616413eceba9082.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=ab91dd091190eeb11f0457db7cf2a251ad306ebdad5ad9d5401c24ff45dedd79") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 100;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i1.9b40a9d3a0c01d36941e389cd64a63103055c80e.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=07ded78e28ea9786fd3ee584e5c0036e881afbe4a0adf5f3d10d6f74c57e7fd8") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i1.27282f568267f77d06827c3bb45844a9294ff8e0.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=a9794cea58846799dd1d02f89f774593dff1eec2ac07f952b640acd87777b604") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.81949fa0ac9fd2021e16436151e8eaa539321637.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=aa668f2ea3c6ab01efcf647298b1778eb48445db883fc887ccd6c4ff8ceb4303") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.a6c632ca7b62da89c3594789ba828388aac693fe.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=6de0667655ef099dd1f490afb17c40c3cd087500178137939d32cfc5f75ebdee") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=515142a408d1ae7dedf9ef53ded8331a41a658de3e957aae676c10a015e40e1a") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5888a5aec10c48313b9fdf746b233e4e448036ebd94d610e201ed6f81277ab9b") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.5a4ea298b4789e064f62a29aafc18d41f09ae59b.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=34fdd82bfdecd291135635d03b54962bcd6156cde406729a76a108c16189074f") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.072b5869c5e0ed5b9d2021e4c2af132e16681ad2.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=9e1624f1ecfaee25720fdba90c1068af12e36e7e17f4356c2f151cf43ec76a4e") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=d5ca9cf072682d8dedf2562bc7f241e2024be4e7d9f3dd772d299cc853d82093") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=62479ed22b2b58908bc46ec3987a1b5575df8086b2f305416121bd98e1d12900") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.81949fa0ac9fd2021e16436151e8eaa539321637.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=aa668f2ea3c6ab01efcf647298b1778eb48445db883fc887ccd6c4ff8ceb4303") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n4.a6c632ca7b62da89c3594789ba828388aac693fe.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=6de0667655ef099dd1f490afb17c40c3cd087500178137939d32cfc5f75ebdee") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.3c434e22befd5c18a6b4afadb1e3d77c128c7939.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=515142a408d1ae7dedf9ef53ded8331a41a658de3e957aae676c10a015e40e1a") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_n7.5d9fa6e2cae713c8fb539a9876489d86207fe957.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5888a5aec10c48313b9fdf746b233e4e448036ebd94d610e201ed6f81277ab9b") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.5a4ea298b4789e064f62a29aafc18d41f09ae59b.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=34fdd82bfdecd291135635d03b54962bcd6156cde406729a76a108c16189074f") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i4.072b5869c5e0ed5b9d2021e4c2af132e16681ad2.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=9e1624f1ecfaee25720fdba90c1068af12e36e7e17f4356c2f151cf43ec76a4e") format("woff");
}


  @font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.a0d4a463df4f146567d871890ffb3c80408e7732.woff2?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=d5ca9cf072682d8dedf2562bc7f241e2024be4e7d9f3dd772d299cc853d82093") format("woff2"),
       url("//www.swanwicksleep.com/cdn/fonts/montserrat/montserrat_i7.f6ec9f2a0681acc6f8152c40921d2a4d2e1a2c78.woff?h1=c3dhbndpY2tzbGVlcC5jb20&h2=c3dhbndpY2stc2xlZXAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=62479ed22b2b58908bc46ec3987a1b5575df8086b2f305416121bd98e1d12900") format("woff");
}


/* #Basic Styles
================================================== */
body {
  background-color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 17px;
  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 #b8c6c6;
}

/* #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: Montserrat, 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: Montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #494c50;
  display: block;
  letter-spacing: 0px;
  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: #494c50;
}

h1,
.h1,
h1.home,
h2.title,
h2.title a,
.collection_title,
h3.title {
  font-size: 26px;
  line-height: 1.8em;
  margin: 0 auto 15px;
  clear: both;
  font-weight: 500;
  padding-top: 4px;
  color: #494c50;
  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: 10px;
  text-align: left;
  font-weight: 700;
  line-height:1.3em;
  padding-top:0;
      width: 100% !important;
}

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

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

h2.product_name a {
  color: #494c50;
}

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: #494c50;
}

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

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

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: #494c50;
}

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

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

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

h5.sub_title a {
  color: #494c50;
}

h6,
.h6,
h6.title,
ul.footer_menu a,
ul.footer_menu a:visited {
  font-size: 14px;
}

.subheader {
  color: #777;
}

p {
  margin: 0 0 10px;
  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;
}.feature_divider {
    border: solid 3px;
    border-bottom: 0;
    display: block;
    width: 30px;
    margin: 25px auto;
    border-color: #494c50;
  }.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: #494c50;
}

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

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 #b8c6c6;
  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: 0 0 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;
}

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

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

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

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

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

/* #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 #b8c6c6;
  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;
  }
} */

.promo-banner__text {
  margin: 0;
  font-size: 12px;
  padding-right: 50px;
  padding-left: 50px;
}
@media only screen and (max-width: 798px) {
  .promo-banner__text {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.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: #333333;
}

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

.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: 40px;
  }
} */

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: #333333;
  /* border-bottom: 1px solid #b8c6c6; */
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  height: 40px;
  padding: 0 50px;
  z-index: 9999;
  width: 100%;
  opacity: 0.95;
  top: 0;
  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: #db883e;
  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: Montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  display: block;
  letter-spacing: 1px;
  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: #db883e !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: 12px !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: #db883e !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: #db883e;
}

/* 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: 12px;
  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: #333333;
  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: 11px;
}

/* 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;
  text-align: right;
}
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: #db883e;
}
#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(12px + 8px); /* Accounts for the disclosure button padding and background color */
}
#header__selector-form .disclosure-list {
  background: #333333;
  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: #db883e;
  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: 12px;
  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: 1.5em;
}

.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.1s;
  opacity: 0.1;
}
@media only screen and (min-width: 799px) {
  .lazyload--fade-in {
    transform: translate3d(0, 0, 0);
  }
}
.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-collection {
    margin: 40px 0;
}
.shopify-section--featured-collection .container{
      justify-content: center;
}
.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;
}

.shopify-section--featured-collection .thumbnail {
    display: inline-flex !important;
    flex-direction: column;
}
.shopify-section--featured-collection .thumbnail .product--btn{
  margin-top: auto;
  display:none;
}
.index .shopify-section--featured-collection .thumbnail .product--btn{ display:block;}
.shopify-section--featured-collection .thumbnail .product--btn .text-viewdetails {display:none;} 
.shopify-section--collection-template .thumbnail {
    display: inline-flex !important;
    flex-direction: column;
}
.shopify-section--collection-template .thumbnail .product--btn{
  margin-top: auto;
  display:none;
}

@media (min-width: 799px){
.shopify-section--collection-template .thumbnail .product--btn{
  display:block;
}
.shopify-section--collection-template .thumbnail .product--btn .text-viewdetails {display:block;}
.shopify-section--collection-template .thumbnail .product--btn .text-shopnow {display:none;}
}

@media (max-width: 749px){
.shopify-section--featured-collection {
    margin: 10px 0;
}
}
@media (max-width: 480px){
  .shopify-section--featured-collection .column.thumbnail {
    width:100%;
  }
}



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

.placeholder-svg {
  fill: rgba(73, 76, 80, 0.3);
  background-color: rgba(73, 76, 80, 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(73, 76, 80, 0.35);
}

.bcg-placeholder {
  background-color: #494c50;
}

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

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

.homepage_slider ul li:nth-child(2n) .bcg-placeholder {
  background-color: rgba(73, 76, 80, 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 {
  background: #2d626d;
  color: #ffffff;
  border: 0;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 200ms ease 0s;
  -webkit-appearance: none;
  border-radius: 2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  box-sizing: border-box;
}

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: #29486b;
  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);
}

.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;
}
@media only screen and (max-width: 480px) {
  .add_to_cart.action_button {
    min-height: 50px;
  }
}

.action_button.action_button--secondary,
.cart-button-update.action_button.action_button--secondary {
  background-color: transparent;
  border: 1px solid #2d626d;
  color: #2d626d;
  margin-bottom: 8px;
  box-shadow: none;
  line-height: 1.2;
  padding: 10px 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: 44px;
}

.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%);
}
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: 30px;
}
@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: 10px;
  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;
  }
}
.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 8px 0 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% - 4px);
    max-width: calc(50% - 4px);
  }
}

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: #2d626d;
  color: #ffffff; */
  background-color: #ffa92a;
    color: #282421;
  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;
  display: none;
}
#cart .action_button svg {
    vertical-align: middle;
    display: inline-block;
}
#cart .mm-action_buttons {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 20px;
  margin-bottom: 0;
}
#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: normal;
  margin-top: 0.5rem;
}

.notification-discount strong{
  font-weight: 400;
}

p.applied_discount {
  color: #4d4d4f;
}

p.add-to-cart-wrap {
  margin-bottom: 0;
}
p.add-to-cart-wrap input.add_to_cart {
  min-height: 55px;
  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: normal;
}
.cart__info .cart__description {
  white-space: normal;
  margin-bottom: 10px;
  font-weight: 700;
}
.cart__info .cart__description .line-item {
    font-weight: 400;
}
.cart__info .cart__description .line-item:first-child {
  margin-top: 6px;
}
.cart__info .cart__quantity {
  display: flex;
  align-items: center;
}
.cart__info .cart__quantity.d-none{

  display: none;

}
.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: 0 0 10px;
}
.cart__product-options:empty {
  display: none;
}

.cart__product-option {
  margin-bottom: 0;
  line-height: 22px;
}

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

/* #Tabs
================================================== */
ul.tabs {
  display: block;
  margin: 10px 0 15px 0;
  padding: 0;
  border-bottom: solid 1px #b8c6c6;
  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 #b8c6c6;
  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 {
  background: url(//www.swanwicksleep.com/cdn/shop/t/222/assets/select.png?v=112595941721225094991754644743) no-repeat right, #fff;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d9dbdc;
  -webkit-appearance: none;
          appearance: none;
  padding: 10px 9px 8px;
}

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: 17px;
  color: #363636;
}

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

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

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

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: #ffffff !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: 26px;
}

div.product_section {
  margin-top: 0;
}

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

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

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

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

.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: #db883e;
}

.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 {
  text-align: center;
  font-size: 16px;
  padding-top: 10px;
}

.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 #b8c6c6;
  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: #db883e;
}

.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;
  margin-bottom: 15px;
}

.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 {
    opacity: 0;
    visibility: hidden;
    height: 0 !important;
  }.thumbnail img {
    max-height: 200px;
    width: 100%;
    object-fit: contain;
  }
.thumbnail video,
  .thumbnail .plyr--youtube {
    width: 100%;
    max-height: 200px;
  }
.thumbnail .plyr--youtube {
    height: 200px;
  }
.thumbnail .plyr--youtube .plyr__video-embed {
    height: 100%;
  }.sold_out,
.thumbnail .sold_out {
  font-weight: bold;
  color: #363636;
  white-space: nowrap;
}

.sale,
.thumbnail .sale {
  color: #4d4d4f;
}

.banner_holder {
  position: absolute;
  top: 0;
  left: 0;
}

.new_banner,
.sale_banner {
  display: block;
  background: #ffb400;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 5px;
  text-align: center;
  color: #ffffff;
}

.new_banner {
  background: #ffb400;
}

@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-bottom: 1em;
  margin-top: 1em;
}
.thumbnail a {
  display: block;
  cursor: pointer;
  color: #363636;
}
.thumbnail a:hover {
  color: #db883e;
}
.thumbnail .spr-badge {
  margin: 0;
}
.thumbnail .collection-swatches--left {
  text-align: left;
}
.thumbnail .collection-swatches--center {
  text-align: center;
}

.thumbnail__image {
  position: relative;
  text-align: center;
}

.thumbnail__title {
  display: block;
  font-size: 1rem;
}

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

.thumbnail__vendor {
  color: #363636;
}

.thumbnail__price {
  display: block;
  font-weight: bold;
  color: #363636;
  font-size: 16px;
}
@media (max-width: 798px){
.thumbnail__price {
  font-size: 15px;
}
}
.thumbnail__border {
  display: block;
  margin: 0 auto;
  width: calc(100% - 50px);
  border-bottom: 1px solid #b8c6c6;
}

.thumbnail__content {
  display: flex;
  position: relative;
  margin-top: 0.75em;
}
.thumbnail__content.thumbnail__content--left {
  text-align: left;
  flex-direction: column;
}
.thumbnail__content.thumbnail__content--center {
  text-align: center;
  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: #4d4d4f;
  font-style: italic;
  text-shadow: none;
  font-weight: normal;
}

.thumbnail span.quick_shop {
  position: absolute;
  right: 0;
  bottom: 0;
}
.thumbnail span.quick_shop--button {
  margin: 0;
  width: 100%;
  font-size: 12px;
  transition: all 0.3s;
  font-weight: bold;
  letter-spacing: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  visibility: hidden;
  text-align: center;
  pointer-events: none;
  white-space: normal;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #546a3a;
  transform: translateY(60px);
}
.thumbnail span.quick_shop--button .icon-search {
  position: relative;
  top: 1px;
}
.thumbnail span.quick_shop--button:hover {
  background-color: #6e8454;
}
.thumbnail span.quick_shop--icon {
  width: auto;
  opacity: 0;
  cursor: pointer;
  color: #546a3a;
  background-color: transparent;
  transform: translateY(0px);
  transition: all 0.3s;
}
.thumbnail span.quick_shop--icon:hover {
  color: #6e8454;
}
.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-bottom: 10px;
}
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;
}
.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: #db883e;
}
.content_block.toggle_list a:hover {
  border-left: none;
  color: #db883e;
}

@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: #4d4d4f;
}
.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: #db883e;
}

.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: #494c50;
}
.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: #4d4d4f;
  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: #4d4d4f;
}

.blog_meta,
.blog_meta a {
  color: #4d4d4f;
}

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

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




/* Collection sorting */
.collection-filters {
  padding-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 798px) {
  .collection-filters {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.collection-filters .filter-wrap {
  width: 25%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .collection-filters .filter-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1050px) {
  .collection-filters .filter-wrap {
    width: 45%;
  }
}
@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;
}
@media only screen and (max-width: 798px) {
  .collection-filters .filter-wrap #sort-by,
  .collection-filters .filter-wrap #tag_filter {
    margin-top: 5px;
  }
}
.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 #b8c6c6;
  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 - Image with text
================================================== */
.image-with-text__wrapper {
  padding: 40px;
}
@media only screen and (max-width: 798px) {
  .image-with-text__wrapper {
    padding: 20px 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: #494c50;
}
.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 #494c50;
  border-bottom: 1px solid #494c50;
}

.quote__text p {
  margin: 0;
}

/* #Contact form
================================================== */
.contact_form {
  padding-top: 0.75em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@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 {
  margin-right: 20px;
}
@media only screen and (max-width: 480px) {
  .contact__form-name {
    margin-right: 0;
  }
}

.contact__form-name,
.contact__form-email {
  flex: 1 1 auto;
}
@media only screen and (max-width: 480px) {
  .contact__form-name,
  .contact__form-email {
    flex: 1 1 100%;
  }
}

.contact__form-message,
.contact__form-type,
.contact__form-subject{
  flex-basis: 100%;
}

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

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

/* #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;
}

.owl-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.owl-dots span {
    width: 10px;
    height: 10px;
    text-align: center;
    background-color: #fff;
    display: inline-block;
    margin: 0 9px;
    border-radius: 50%;
}

.owl-dots .active span {
  background-color: #ffd64f;
}

@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;
}
.shopify-section--gallery .gallery__slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}
.shopify-section--gallery .gallery__slider .gallery__item{
padding:0 15px;
}
.image-gallery .column {
  margin-bottom: 1em;
}

/* #Image with text
================================================== */
@media screen and (max-width: 767px) {
  .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 .one-fourth {margin:0 auto;}
.search-form {
  margin: 0;
  position: relative;
  padding-top: 140px !important;
}
.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: 100%;
  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;
}
.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 {
  position: relative;
}

input.search-form__input {
  margin: 0;
  padding: 0 20px 0 40px;
}
input.search-form__input:focus {
  box-shadow: none;
  border-color: #dfdfdf;
}
.search-form--header input.search-form__input {
  height: 50px;
  font-size: 22px;
}
.search-form--mobile-search-bar input.search-form__input {
  padding-right: 40px;
}

.search-form__close-button,
.search-form__submit-button {
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  padding: 0;
  color: inherit;
  background: none;
}
.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;
  left: 0;
}

/* #Predictive search
================================================== */
.predictive-search {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.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: #2d626d;
}
[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: 12px;
  line-height: normal;
  letter-spacing: 1px;
  font-weight: normal;
  text-transform: uppercase;
  border-bottom: 1px solid #dfdfdf;
}

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

/* #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: 799px) {
  .mobile-search-bar {
    display: none;
  }
}

/* #Swatch Styles
================================================== */.product_section .product_form {
    opacity: 1;
  }
.product_section .product_form.is-visible {
    opacity: 1;
  }
.select,
  .selector-wrapper {
    display: none;
  }
.swatch-options {
    margin-bottom: 10px;
  }
.swatch .option-title {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
/* Allow user to cycle through radio buttons with keyboard */
.swatch input {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
  }
/* .swatch input:focus + .swatch-element {
    outline: #025ECC auto 5px;
  } */
.swatch label {
    cursor: pointer;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
    text-transform: uppercase;
    height: 35px;
    min-width: 25px;
    line-height: 35px;
  }
.swatch .color label {
    background-size: cover;
    background-position: center;
    height: 30px;
    min-width: 30px;
    line-height: 30px;
  }
.swatch-element {
    min-width: 30px;
    min-height: 30px;
    border: 1px solid #e2e2e2;
  }
.swatch-element.color {
    padding: 5px;
  }
.swatch-element.color, .swatch-element.color label {
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    background-clip: padding-box;
  }
.swatch-element.color.swatch-element label {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
/* .swatch-options input:checked + .swatch-element {
    border-color: #666666;
  } */
.swatch .swatch-element {
    outline: none;
    text-align: center;
    position: relative;
    margin-right: 10px;
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
  }
.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: 10px;
  }
.collection-swatches .swatch {
    display: inline-block;
    margin: 2px;
  }
.collection-swatches .swatch span {
    width: 20px;
    min-width: 20px;
    height: 20px;
    float: none;
    display: inline-block;
    border-radius: 50%;
    border: #e2e2e2 1px solid;
    background-clip: padding-box;
    background-position: center;
    background-size: cover;
  }/* #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: 16px;
}
.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;
}

.sidebar__content {
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 798px) {
  .sidebar__content {
    padding: 0;
    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 #b8c6c6;
}
.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%;
}

.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 #b8c6c6;
}
@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: #ffffff;
  color: #4d4d4f;
}
.footer form {
  margin-bottom: 0;
}
.footer .footer__title {
  margin-bottom: 20px;
  color: #000000;
}
.footer .footer__follow-on-shop {
  margin-bottom: 20px;
}
.footer p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #4d4d4f;
}
.footer a {
  color: #4d4d4f;
  font-size: 14px;
}
.footer a:hover, .footer a:active {
  color: #db883e;
}
.footer .credits{
  margin-bottom: 0px;
}
.footer .footer-logo img {
    width: 282px;
    height: auto;
}

.footer .payment_methods{
    justify-content: flex-start;
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
}
.footer .payment_methods .payment_methods--text{
    font-size: 14px;
    font-weight: 600;
}
.footer .payment_methods .payment_methods--logos{
    justify-content: flex-start;
    margin: auto 0;
    display: flex;
}
.footer .payment_methods .payment_methods--logos .payment-icon{
    height: 25px;
    width: 45px;
}
.footer_menu {
  margin: 0;
  list-style: none;
}
.footer_menu .linklist-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.footer_menu li {
  display: block;
  margin-bottom: 5pxpx;
}
.footer_menu li a {
  color: #4d4d4f;
  font-size:14px;
  letter-spacing:0;
  font-weight: 400;
  text-transform:unset;
  line-height:26px;
}
.footer_menu li a:hover {
  color: #db883e;
}
.footer_menu li a.ss-icon {
  font-size: 55px;
}

.footer__info {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.social-icons .ss-icon{
  display:inline-block;
  vertical-align: middle;
}
.social-icons .ss-icon svg{
  margin-right: 0.2em;
  text-align: center;
  height: 19px;
  border: 1px solid #4d4d4f;
  padding: 7px;
  border-radius: 50%;
  width: 19px;
  display: block;
  transition:all 0.2s ease-in-out;
}
.social-icons .ss-icon:hover svg{
 border-color: #db883e;
 fill:#db883e;
}
.social-links-container.mm-listitem .social-icons .ss-icon svg{
 fill: #adadad;
  border: 1px solid #adadad;
  margin-right: 8px;
  height: 20px;
  padding: 9.5px;
  width: 20px;
}
@media (max-width: 798px) {
  .footer__info {
    flex-direction: column;
  }
  .footer-logo img {
      max-width: 150px;
  }
  .footer .footer-left{
    text-align:center;
  }
  .footer .payment_methods{
      justify-content: center;
  }
  .footer .footer-right{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
  }
  .footer .footer-right .one-third{
    margin:0;
  }
}
@media (max-width: 543px) {
  .footer .footer-right{
    grid-template-columns: repeat(2,1fr);
  }
  .social-links-container.mm-listitem .social-icons .ss-icon svg{
    height: 15px;
    padding: 6.5px;
    width: 15px;
  }
}
.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: Montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  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: 40px;
  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;
}
.social-links-container.mm-listitem:after {
    border:none; 
}
.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: Montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  margin-bottom: 0.5em;
  line-height: 65px;
  position: relative;
  letter-spacing: 0px;
  color: #ffffff;
}.subtitle p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.5em;
  margin-bottom: 1.5em;
  position: relative;
  color: #ffffff;
}.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 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% - 10px);
  margin: 0 5px;
}
.product-gallery__thumbnails .product-gallery__thumbnail img {
  max-width: 100%;
  height: auto;
}
.product-gallery__thumbnails.is-slide-nav--true .product-gallery__thumbnail {
  position: relative;
  opacity: 0.3;
  cursor: grab;
}
.product-gallery__thumbnails.is-slide-nav--true .product-gallery__thumbnail.is-nav-selected {
  opacity: 1;
}
@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 {
    height: 100%;
    width: calc(100% - 100px);
  }
  .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: 80px;
    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 {
    height: 80px;
    width: 80px;
    padding: 10px 0;
    margin: 0!important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .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.1s 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__main:not(.flickity-enabled){
display:flex;
}

.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;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
 .video__container .plyr__video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 480px) {
  .product-gallery__image img,
  .video__container .plyr__video-wrapper video{
    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;
}

.fancybox-is-open {
  z-index: 10002;
}
.fancybox-is-open .fancybox-content {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* 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) {
  .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) {
  .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;
}
.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;
}
.product-gallery__thumbnails .product-gallery__thumbnail[data-thumbnail="video"] img{
  height: 120px;
  object-position: center;
  object-fit: cover;
}

.product-gallery__thumbnails .media-badge {
  position: absolute;
  top: 10px;
  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(//www.swanwicksleep.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: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  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: Montserrat, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  padding: 8px 0;
}
button.disclosure__button:hover, button.disclosure__button:focus, button.disclosure__button[aria-current=true] {
  color: #db883e;
}

/* # 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: 1200px;
  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) {
  .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);
  }
  .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: 30px;
    object-fit: contain;
  }
  .footer_menu li {
    display: block;
  }
  .footer a.ss-icon {
    font-size: 38px;
    margin-right: 0px;
    margin-top: 6px;
  }.is-absolute {
    top: 0px !important;
  }
  p.mm-counter {
    right: 20px;
  }
  .breadcrumb--text {
    margin-bottom: 1em !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: 17px;
    line-height: 1.7em;
    text-align: center;
  }
  #header {
    display: block;
  }
  .header {
    display: none;
  }
  .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;
  }
  .container .column.thumbnail, .container .columns.thumbnail {
    margin-top: 1em;
  }
  .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: #4d4d4f !important;
  padding-left: 5px;
  font-size: 30px;
}
.socialButtons li a:hover {
  color: #db883e !important;
}
.socialButtons li:nth-of-type(1) {
  position: relative;
  top: -8px;
}

@font-face {
  font-family: "ootsb";
  src: url(//www.swanwicksleep.com/cdn/shop/t/222/assets/ootsb.eot?v=39625945060011876101754644738);
  src: url(//www.swanwicksleep.com/cdn/shop/t/222/assets/ootsb.eot?v=39625945060011876101754644738) format("embedded-opentype"), url(//www.swanwicksleep.com/cdn/shop/t/222/assets/ootsb.ttf?v=88425513192927513031754644739) format("truetype"), url(//www.swanwicksleep.com/cdn/shop/t/222/assets/ootsb.woff?v=42397042526341430171754644740) format("woff"), url(//www.swanwicksleep.com/cdn/shop/t/222/assets/ootsb.svg?v=58526098964867671161754644739) 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: "\e906";
}

.icon-flikr:before {
  content: "\e907";
}

.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-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-vimeo:before {
  content: "\e917";
}

.icon-youtube:before {
  content: "\e918";
}

.icon-user-icon:before {
  content: "\f100";
}
.icon-google:before {
    content: "\e908";
}
.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: 35px;
  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: 26px;
  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: #4d4d4f;
  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: #4d4d4f;
  text-decoration: none;
}

.password-footer a {
  color: #4d4d4f;
  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: 60px;
  margin-bottom: 0.3em;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #494c50;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  .detail_title {
    font-size: 30px;
  }
}

.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: #494c50;
}
@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: 13px;
  }
}
@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 {
  
  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: 12px;
  }
}
.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%;
}@media only screen and (max-width: 798px) {
    .parallax__container .parallax {
      position: static;
    }
  }.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: 17px;
  --surface-pick-up-embed-theme-paragraph-smaller-font-size: 14.875px;
  --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: 17px;
  --surface-pick-up-item-theme-paragraph-smaller-font-size: 14.875px;
  --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(184, 198, 198, 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(184, 198, 198, 0.5);
}

.surface-pick-up__modal-title {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
}

.surface-pick-up__modal-subtitle {
  font-size: 17px;
}

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: 17px;
  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: 17px;
  font-family: Montserrat, 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-bottom: 10px;
}
@media only screen and (min-width: 799px) {
  .faceted-filters-modal__wrapper {
    display: none !important;
  }
}

.faceted-filters-modal__link {
  width: 100%;
}

.faceted-filters__container.fancybox-content {
  width: 100%;
}
.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;
}

.faceted-filters__filter-range--from,
.faceted-filters__filter-range--to {
  flex: 1 0 7rem;
}

.faceted-filters__filter-range-label {
  font-weight: 400;
}

.faceted-filters__filter-range-wrapper {
  position: relative;
}

.faceted-filters__filter-range-submit {
  width: 100%;
}

.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-item a.faceted-filters__filter-link {
  display: flex;
  align-items: center;
  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;
}

.faceted-filters__filter-list-item-text {
  font-weight: 400;
  padding-bottom: 0;
  margin-left: 4px;
  cursor: pointer;
}

[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: 2px solid currentColor;
  outline-offset: -1px;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  min-width: 13px;
  width: 13px;
  height: 13px;
}

[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: 17px;
  /* 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: Montserrat, sans-serif;
  font-size: 17px;
  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: Montserrat, sans-serif;
  font-weight: 400;
  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: #4d4d4f;
}

.complementary-product__price {
  font-weight: bold;
  color: #363636;
}
.complementary-product--on-sale .complementary-product__price {
  color: #4d4d4f;
}

.complementary-product__unit-price {
  font-size: smaller;
  color: #363636;
}

.complementary-product__price-wrapper {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.complementary-product__price-compare {
  text-decoration: line-through;
  color: #4d4d4f;
  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: Montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #494c50;
  display: block;
  letter-spacing: 0px;
  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
================================================== */

img{
  vertical-align: middle;
  width:auto;
  height:auto;
  max-width:100%;
}
button.promo-banner__close.icon-close {
    display: none;
}
.modal_price .current_price, 
.modal .modal_price .current_price{
      font-size: 28px;
      font-weight: 700;
      color: #2d626d;
      line-height:30px;
}
.modal_price .was_price,
.modal .modal_price .was_price {
    font-style: inherit;
    text-shadow: none;
    font-weight: 400;
    color: #888888;
    font-size: 24px;
    margin-right:5px;
    display: inline-block;
    vertical-align: middle;
}
.modal_price .sale,.modal_price .regular-price,
.modal .modal_price .sale,.modal .modal_price .regular-price{
  display: inline-block;
  vertical-align: middle;
}
  
.modal_price .discount_percentage,
.modal .modal_price .discount_percentage{
  background-color: #f68826;
  font-size:14px;
  color:#fff;
  font-weight:400;
  line-height:20px;
  display: inline-block;
  vertical-align: middle;
  padding: 3px 6px;
  border-radius: 5px;
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .modal_price .current_price, 
  .modal .modal_price .current_price{
      font-size: 24px;
      line-height:26px;
    
  }
  .modal_price .was_price,
  .modal .modal_price  .was_price {
      font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .modal_price .current_price, 
  .modal .modal_price .current_price{
      font-size: 22px;
      line-height:22px;
    
  }
  .modal_price .was_price,
  .modal .modal_price  .was_price {
      font-size: 18px;
      margin-right:0;
  }
  .modal_price .discount_percentage,
  .modal .modal_price .discount_percentage{
    font-size:12px;
    line-height:18px;
    padding: 3px 5px;
    margin-left: 3px;
  }
}
@media only screen and (max-width: 380px) {
  .modal_price .current_price, 
  .modal .modal_price .current_price{
      font-size: 18px;
      line-height:20px;
    
  }
  .modal_price .was_price,
  .modal .modal_price  .was_price {
      font-size: 16px;
  }
  .modal_price .discount_percentage,
  .modal .modal_price .discount_percentage{
    font-size:11px;
    margin-left: 3px;
  }
}
.metafield-rich_text_field ul{
  margin:0;
}
.metafield-rich_text_field ul li{
  list-style: none;
  display: flex;
  margin: 0;
  font-size: 14px!important;
  line-height: 1.4;
  margin-bottom: 5px!important;
  color: #000;
}
.metafield-rich_text_field ul li:before{
    display: block;
    width: 20px!important;
    height: 20px!important;
    content: url(/cdn/shop/files/icons8-approval_1.png)!important;
    margin: 0 8px 0 0;
}
.metafield-rich_text_field ul li:last-child{  margin-bottom: 0!important;}
.bundleinclusionbelowgallery{
  margin-top:30px;
}
.bundleinclusionbelowgallery .metafield-rich_text_field p{
    line-height: 1.6em;
    font-size: 16px;
}
.product-images-guarantee-divider{
  border-color: #000;
    margin: 25px 0;
}
.product-images-guarantee .flex-container {
    display: flex;
    justify-content: center;
}
.product-images-guarantee .guarantee-icon{
  margin-bottom:8px;
}
.product-images-guarantee .guarantee-container {
    width: 90px;
    text-align: center;
}
.product-images-guarantee .guarantee-text{
    font-size: 11px;
    width: 85px;
    margin:0 auto;
    line-height: 1.3;
}
.js-view-measurements-lightbox{
  width: 65%;
}
@media only screen and (max-width: 1300px) {
 .js-view-measurements-lightbox{
  width: 85%;
} 
}
@media only screen and (max-width: 798px) {
 .js-view-measurements-lightbox{
   width: 95%;
   padding:40px 20px 20px;
 }
}
.shopify-section--gallery .gallery__grid,
.shopify-section--gallery .gallery__slider{
  width:100%;
  display:flex;
}

@media only screen and (min-width: 799px) {
.shopify-section--gallery .gallery__grid.two-column{
   width:75%;
   margin:0 auto;
}
}
.swatch-options .swatch .size_chart{
    font-weight: 500;
    color: #282421!important;
    margin-left: 10px;
    text-decoration: underline;
   text-transform: capitalize;
    font-size: 13px;
}
.swatch .option-title{
  font-size: 13px;
  text-transform: uppercase;
}
.thumbnail__title{
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 798px) {
  .thumbnail__title{
    font-size: 15px;
  }
  .product-gallery .flickity-page-dots{
   display:block;
    margin: 10px 0 0;
    position: unset;
   }
  .product-gallery .product-gallery__main .flickity-prev-next-button{
    display:none;
  }
  .product-gallery__thumbnails{
     display:none !important;
  }
  #header a.icon-menu span{
    display:none;
  }
  .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:100%;           
  }
  .product_section.media-position--left, .product_section.media-position--right {
    gap: 10px;
  }
  .shopify-section--product-template,
  .global-wrapper__product{
    padding:0  !important;
  }
  
}




/* custom Benifit section */
.swanniesbenefitsmaindiv{padding-top:5%}.swanniesbenefitscolscontainer{display:flex;justify-content:center}.swanniesbenefitsbox{display:flex;padding:20px;margin:5px 5px 30px;justify-content:center;font-size:18px;box-shadow:0 5px 8px 0 #00000029}.swanniesbenefitsboxttext,.swanniesbenefitsboxytext{width:70%;margin-right:5%;padding-top:20px}.swanniesbenefitsboxtimg,.swanniesbenefitsboxyimg{width:25%;display:flex;align-items:center}.swanniesbenefitsboxtimg img,.swanniesbenefitsboxyimg img{border-radius:5px}.swanniesbenefitscol{width:45%;display:flex}.swanniesbenefitsboxt,.swanniesbenefitsboxy{border-radius:6px}.swanniesbenefitsboxy{background-color:#2d626d}.swanniesbenefitsboxt{background-color:#576f74}h2.swanniesbenefitstitle{text-align:center;font-size:38px;width:70%;margin-inline:auto}p.swanniesbenefitstext{text-align:center;font-size:20px;width:90%;margin-inline:auto}.swanniesbenefitscol h3{font-size:15px;text-transform:uppercase!important;margin-bottom:5px;font-weight:800!important;line-height:20px;}.swanniesbenefitscol p{font-weight:600;line-height:1.4}.swanniesbenefitscol1 h3,.swanniesbenefitscol1 p,.swanniesbenefitstext,.swanniesbenefitstitle{color:#000}.swanniesbenefitscol2 h3,.swanniesbenefitscol2 p{color:#fff}.yotpostarscontainer{display:flex}a.yotpostarscontainerlink{font-size:14px;font-weight:700;margin-left:5px}
h2.swanniesbenefitstitle {
    text-transform: inherit;
    font-weight:500;
}
.swanniesbenefitscol p {
    font-size: 14px;
  
}

.shopify-section__custom-benefit {
    display: flex;
    justify-content: center;
}
.shopify-section__custom-benefit  .swanniesbenefitsboxytext > * {
    color: #fff;
}
.swanniesbenefitscol p {
    font-weight: 500;
}
.swanniesbenefitsboxtimg img, .swanniesbenefitsboxyimg img {
    width: 100%;
    margin-bottom: 1em;
}
.swanniesbenefitscolscontainer {
    flex-wrap: wrap;
}
.swanniesbenefitscol:nth-child(even) .swanniesbenefitsbox{
  background: #576f74;
}
@media only screen and (min-width: 741px) and (max-width: 1000px){
.swanniesbenefitscol p{font-size:16px}.swanniesbenefitscolscontainer{flex-flow:column}.affiliate2021sec1col,.swanniesbenefitscol{width:100%}

}

@media only screen and (max-width : 740px) {
  .swanniesbenefitscol p{font-size:18px}h2.swanniesbenefitstitle{font-size:22px}.swanniesbenefitscol h3,p.swanniesbenefitstext{font-size:14px}.swanniesbenefitsboxtimg,.swanniesbenefitsboxttext,.swanniesbenefitsboxyimg,.swanniesbenefitsboxytext,h2.swanniesbenefitstitle,p.swanniesbenefitstext{width:100%}.swanniesbenefitsbox,.swanniesbenefitscolscontainer{flex-flow:column}.swanniesbenefitscol{width:100%}.swanniesbenefitsbox{justify-content:flex-start;margin-bottom:60%;height:100%}.swanniesbenefitsboxtimg,.swanniesbenefitsboxyimg{margin-bottom:-80%}

}


/* custom-product-tab */
.custom-product-tab ul.tabs {
    border-bottom: 0;
    margin: 0;
}

.custom-product-tab ul.tabs li{
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  
}
.custom-product-tab ul.tabs li div{
  text-transform:initial;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #494c50;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 35px;
  margin: 0 auto 15px 0;
}

    
.custom-product-tab ul.tabs li:first-child {
    padding-left: 0;
}
.custom-product-tab ul.tabs li a{
  padding-bottom:15px;
}
.custom-product-tab  ul.tabs li a.active {
    padding-bottom: 12px;
    border:0;
    border-bottom: 3px solid #29486b;
}
.custom-product-tab ul.tabs-content {
    padding-top: 15px;
    border-top: 1px solid #4d4d4f;
}
.tab-inner {
    width: 100%;
}
.custom-product-tab ul.tabs li .active h3 {
    color: #29486b;
    font-weight: 700;
}
/**features tab**/
.featurestabtext table tr:first-child{border-top:none}.featurestabtext table td:first-child,.featurestabtext table td:last-child{font-weight:600;padding:20px!important}.featurestabtext table td:first-child{border-left:none;text-transform:uppercase;line-height:1.3}.featurestabtext table td:last-child{border-right:none;font-size:13px;font-weight:600;line-height:1.5}.featurestabtext table tr:last-child{border-bottom:none}.featurestabtext img{width:200px!important;margin:0!important}
.featurestabtext table td:first-child {
    font-size: 17px;
}
.featurestabtext img {
    min-width: 200px;
    margin: 0!important;
    width: 100%;
}
.block__faq_accordion .faq-content{
  display:none;
}

.removetab-Features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: inherit;
}
.tab-mobile {
    width: 100%;
}
.removetab-Features.active .icon-plus:before {
    content: "\e90f";
}

 .tab-mobile {
    display: none;
}
.tab-item {
    display: none;
}
.tab-item.active{
  display:block;
}
@media(max-width:767px){
  .tab-desktop{
    display: none;
  }
   .tab-mobile {
    display: block;
}
.featurestabtext table td:first-child, .featurestabtext table td:last-child {
    padding: 20px 5px!important;
    border: none;
}
  .featurestabtext img {
    min-width: 100px;
    margin: 0!important;
    width: 100% !important;
}
.block__faq_accordion {
    border-top: 1px solid #e4e4e4;
    padding: 15px 0 15px 0;
    position: relative;
}
  .removetab-Features {
    margin-bottom: 0;
}
.featurestabtext td p {
    margin-bottom: 0;
    font-size: 10px;
}
}

/* pdpcontent start */
.pdp-classic-rx-button2 a, .virtooalcontainer button {
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    letter-spacing: 0;
    filter: drop-shadow(0 4px 4px rgba(51,51,51,.5));
    border-radius: 5px!important;
    line-height: 2.3!important;
    box-shadow: none;
    margin-right: 15px;
   
}
.pdp-classic-rx-button2 a {
    color: #333;
    background-color: #d8d7d7;
    padding: 5px 15px;
    min-width: 100px;
    text-transform: capitalize;
    display:inline-block;
    text-align: center;
}

.virtooalcontainer button {
  width: 120px;
    padding: 5px 10px;
    font-size: 13px;
  background-color: #f2dea2;
    color:#000;
}
.pdpotherbtnsinner, .pdpotherbtns {
    display: flex;
    align-items: center;
   
}
.prodinternallinkcon {
    margin: 10px 0;
}
.prodinternallink, .prodinternallink a {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
}
.prodinternallink a {
    text-decoration: underline;
}
.virtooalcontainer button {
    text-transform: capitalize;
}
.classic-pdp-bundle-upsell {
    font-size: 13px;
    font-weight: 600;
}
.classic-pdp-bundle-upsell a {
    color: #29486b;
    text-decoration: underline;
}
.risk{
  font-family: Monterrat,sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #282421;
    font-size: 13.6px;
  margin:15px 0;
}

@media(max-width:543px){
.prodinternallinkcon {
    width: 100%;
    margin-top: 10px;
}
  .pdpotherbtnsinner, .pdpotherbtns {
    flex-wrap: wrap;
}
}
/* pdpcontent end */


@media(min-width:799px){
  .sticky-cart{display:none !important;}
}
.sticky-cart{
    position: fixed;
    bottom: 10px;
    top: auto;
    z-index: 5;
    left: 10px;
    right: 10px;
}
.sticky-cart .add_to_cart{
    font-size: 16px;
    line-height: 30px;
}
.sticky-cart .add_to_cart:hover{
    background: #29486b;
    color:#fff;
}
.product_section .shopify-app-block{
  margin-bottom: 10px;
}
.product_section .product-block--text .product-text p{
      line-height: 1.5em;
}
.promoted-products-box {
    display: none!important;
}
.yotpo .standalone-bottomline .yotpo-stars{
    display: flex;
    align-items: baseline;
    flex-direction: row;
}
.yotpo .standalone-bottomline .yotpo-stars .yotpo-icon{
    color: #fbb319!important;
    font-size: 27px!important;
}
.yotpo .standalone-bottomline .yotpo-stars .yotpo-icon:nth-child(1){
  order:2;
}
.yotpo .standalone-bottomline .yotpo-stars .yotpo-icon:nth-child(2){
  order:3;
}
.yotpo .standalone-bottomline .yotpo-stars .yotpo-icon:nth-child(3){
  order:4;
}
.yotpo .standalone-bottomline .yotpo-stars .yotpo-icon:nth-child(4){
  order:5;
}
.yotpo .standalone-bottomline .yotpo-stars .yotpo-icon:nth-child(5){
  order:6;
}
.yotpo .standalone-bottomline .yotpo-stars .sr-only{
    overflow: hidden;
    width: 40px;
    height: 18px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    order: 1;
    position: static;
}
.yotpo .standalone-bottomline .text-m{
    color: #000!important;
    text-decoration: underline!important;
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
}
.yotpo-nav-wrapper span,
span.y-label,
.content-title.yotpo-font-bold,
.yotpo-review-wrapper span,
.content-review {
  color: #282421 !important; }

.yotpo-star-distribution-score-wrapper div {
  background-color: #576f74 !important; }

.yotpo {margin: 5px; }
.yotpo .text-m {margin-left: 5px; }
.yotpo.QABottomLine + .clearfix { margin-bottom: 20px; }
.yotpo .yotpo-bottomline span.yotpo-icon-star,
.yotpo .yotpo-bottomline .yotpo-icon-half-star,
.yotpo .yotpo-bottomline .yotpo-icon-empty-star { color: #FFAA29 !important; }
.yotpo .promoted-products-box .promoted-products .yotpo-promoted-product .yotpo-product-image {
    padding-bottom: 100%;
    height: 0;
    position: relative; 
}
.yotpo .promoted-products-box .promoted-products .yotpo-promoted-product .yotpo-product-image img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
}
.yotpo-icon-star,
.yotpostarscontainer .yotpo-icon-star {color: #FFAA29 !important; }

.yotpo-icon-btn { background-color: #29486B !important; }

.yotpo .transparent-color-btn span.yotpo-icon { color: #2d626d !important; }
.yotpo-header.yotpo-verified-user .yotpo-icon-profile,
.yotpo-header.yotpo-verified-buyer .yotpo-icon-profile { background: #29486b !important; }

span.yotpo-icon.yotpo-icon-circle-checkmark { color: #576f74 !important; }

/*--------PRODUCT FEATURES TAB ------- */
.featurestextimage {display: flex;align-items: center; }
.normalsizetext {font-size: 18px !important;font-weight: 400; }
.normalsizetext p {line-height: 1.3; }
.featurestextimaget {width: 100%; }
.featurestextimagei {font-size: 20px;width: 70%; }
.featurestextimagetitle h2 {margin: 0; }
.featurestextimaget img {
    height: auto;
    width: 100%;
    margin-bottom: 1em;
}
.featurestextimaget p{
  font-size:17px;
}
.featurestextimaget table {
    font-size: 16px;
}
@media(max-width:798px){
  .featurestextimage{
   flex-direction: column-reverse;
  }
  .featurestextimaget p{
    font-size:15px;
  }
  .featurestextimagei {font-size: 15px;width: 100%; }
  .normalsizetext {font-size: 15px !important;font-weight: 400; }
}

/*--------PRODUCT media-logos ------- */
.product-media-logos{
  background-color: #2d626d!important;
  margin: 40px 0;
}
.product-media-logos .container{
   justify-content: center;
}
.product-media-logos .flex-container{
      padding: 0 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
      display: flex;
}
.product-media-logos .flex-container .media-logo{
      display: flex;
    text-align: center;
    height: 35px;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.product-media-logos .flex-container .media-logo.media-logo--larger{
  height: 50px;
}
.product-media-logos .flex-container .media-logo.media-logo--white{
  filter: invert(1);
}
.product-media-logos .flex-container .media-logo img{
   height: 100%;
    width: 100%;
    margin: auto;
}

@media(max-width:798px){
  .product-media-logos .flex-container .media-logo img{
      height: auto;
      width: auto;
  }
  .product-media-logos .flex-container .media-logo,
  .product-media-logos .flex-container .media-logo.media-logo--larger{
    width:50%;
    margin-bottom: 15px;
    margin-top: 15px;
    height: auto;
  }
  .product-media-logos .flex-container{
  padding: 0;
  }
}


/*--------blog author------- */
.authorbiosection{margin-top:30px}.authorbiosecinner{display:flex;padding:30px;background-color:#494c50;justify-content:center}.authorbiosecimg{width:20%}.authorbiosectext{width:70%;padding-left:20px}.authorbiosecimg{width:20%}.authorbiosecimg img{border-radius:100%!important;width:200px}.authorbiosecname{font-size:25px;font-weight:700}.authorbiosecinner h4,.authorbiosecinner p{color:#fff}.authorbiosecinner h4{margin-bottom:0;padding-bottom:0}.authorbiosecabout{margin-top:10px}h4.authorbiosecdesc{padding:0;line-height:1.5}


/*--------BLOGS------- */
.articlecontentnew img{margin-top:30px!important;margin-bottom:30px!important}.articlecontentslinks ul{list-style:none;margin:0;font-weight:600}.articlecontentslinks ul ul{font-weight:500;margin-left:10px}.articleauthorcon{text-align:center}.authorbiosectext h3 {font-size:15px;color:#fff;margin:0;line-height:1}.article-new0621 .container.main.content.main-wrapper,.article-new1019 .container.main.content.main-wrapper{width:100%!important;background-color:#f1f2f2}.articlecontentmaincon{max-width:1080px;margin-inline:auto}.articleheadingcon{margin-bottom:20px}.articleheadingcon h1{text-align:center}.articlecontentnew{padding:35px;background-color:#fff}.articlecontentnew h2,.articlecontentnew h3{font-weight:700}.hsContent .articleauthorcon{color:#fff}.hsContent .articleauthorcon a{color:#fff}.hsContent .updated_date{color:#fff}.commentsectionnew{max-width:1080px;margin-inline:auto}.commentsectionnewinner{padding:0 5%;max-width:80%;margin-inline:auto}.articlecontentmaincon ul.socialButtons{text-align:center}.recentpostscolcon{display:flex}.recentpostscolwithheadercon{max-width:850px;margin:35px auto}.recentpostscol{background-color:#fff;padding:15px}.recentpostscol h5{font-size:28px;text-transform:none}div#shopify-section-blog-template{background-color:#f1f2f2}.article-cont-boxwithborder{border:1px solid #000;padding:10px;margin:15px 0}sup{font-size:13px}.articlecontboxgreenbg a,.articlecontboxgreenbg h2,.articlecontboxgreenbg p{color:#fff}.articlecontboxgreenbg h2{margin-bottom:20px;font-weight:400!important}.articlecontboxgreenbg{background-color:#2d626d;padding:40px;text-align:center;margin:35px -35px}.articlecontboxgreenbg a{padding:6px 20px;border:2px solid #fff;border-radius:3px;font-size:22px;font-weight:400;transition-duration:.2s;transition-property:all}.articlecontboxgreenbg a:hover{background-color:#407a86;border-color:#407a86}.artcontboxgrnbgbtn{margin-top:20px;padding-top:10px}.listennowbuttoncon{text-align:center;margin-top:40px}.listennowbutton{padding:10px;background-color:#000;color:#fff;border-radius:3px}.listennowbutton:hover{background-color:#1f1f1f;color:#fff}.listennowbutton:visited{color:#fff}
.article-new0621 .container.main.content.main-wrapper, .article-new1019 .container.main.content.main-wrapper {
    display: block;
}
.article-new0621 .container.main.content.main-wrapper .section, .article-new1019 .container.main.content.main-wrapper .section {
    max-width: 100%;
    width: 100%;
}
.article-new0621 .container.main.content.main-wrapper .comment-form, .article-new1019 .container.main.content.main-wrapper  .comment-form {
    display: block;
} 
.container .one.column                      { width: 45.625px;  }
    .container .two.columns                     { width: 111.25px; }
    .container .three.columns                   { width: 176.875px; }
    .container .four.columns                    { width: 236.5px; }
    .container .five.columns                    { width: 308.125px; }
    .container .six.columns                     { width: 373.75px; }
    .container .seven.columns                   { width: 439.375px; }
    .container .eight.columns                   { width: 505px; }
    .container .nine.columns                    { width: 570.625px; }
    .container .ten.columns                     { width: 636.25px; }
    .container .eleven.columns                  { width: 701.875px; }
    .container .twelve.columns                  { width: 767.5px; }
    .container .thirteen.columns                { width: 833.125px; }
    .container .fourteen.columns                { width: 898.75px; }
    .container .fifteen.columns                 { width: 964.375px; }
    .container .sixteen.columns                 { width: 1030px; }

    .container .one-third.column                { width: 330px; }
    .container .two-thirds.column               { width: 680px; }
    .container .one-fifth.column                { width: 190px; }
    .column.alpha, .columns.alpha {
    margin-left: 0;
}
/*--------BLOG CATEGORIES PAGE------- */
.mbfb-gridsmpinner,.mbfb-gridsqrinner{display:flex;justify-content:center}.blogcatseccontainermodern,.mbfb-gridsmpinner,.mbfb-gridsqrinner{margin:0 -10px}.mbfb-gridsqrmain{margin-bottom:40px}.mbfb-gridsmpcard h2,.mbfb-gridsqrcard h2{font-size:16px;font-weight:600}.blogcatsecmoderncard h2{font-size:20px;font-weight:600}div#shopify-section-blog-categories-featured-blogs{width:100%;padding:2% 15%;box-sizing:border-box;background:#000}a.blogcatsecmodernlink,a.mbfb-gridsmpcardlink,a.mbfb-gridsqrcardlink{display:flex;margin:1%;text-align:center;background-position:center;background-repeat:no-repeat;background-size:cover}a.mbfb-gridsqrcardlink{width:333px}a.mbfb-gridsmpcardlink{width:250px}a.blogcatsecmodernlink{width:23%;height:250px;max-width:250px}.mbfb-gridsmpcard,.mbfb-gridsqrcard{height:250px;padding:5%;box-sizing:border-box}.blogcatsecmoderncard,.mbfb-gridsmpcard,.mbfb-gridsqrcard{background:linear-gradient(rgba(255,0,0,0),rgba(0,0,0,.26),#000);display:flex;align-items:center;width:100%;flex-flow:column}.mbfb-gridsmpcard,.mbfb-gridsqrcard{justify-content:space-between}.blogcatsecmoderncard{justify-content:flex-end}.mbfb-gridsmpcard img,.mbfb-gridsqrcard img{align-self:flex-start;width:75px}.blogcatsecmoderncard h2,.mbfb-gridsmaincontainer h2{color:#fff;margin-bottom:0}.blogcatsecmainheading,.blogcatsecmoderncard h2,.mbfb-gridsmaincontainer h2{text-transform:unset}.blogcatsecmainheading{text-align:center;font-size:33px;font-weight:600;color:#000}.blogcatsecmaincontainermodern{padding:1% 15% 3%}.blogcatseccontainermodern{display:flex;flex-wrap:wrap;justify-content:center}.mbfbslideitemcontainer{background-position:center;background-size:cover;background-repeat:no-repeat}.mbfbslideitemcontainerinner{padding:2% 15% 5%;height:450px;box-sizing:border-box;display:flex;flex-flow:column;justify-content:center}.mbfb-slideinnermobile{display:none!important}.mbfb-slideinner a,.mbfb-slideinner h1,.mbfb-slideinner h2,.mbfb-slideinner h3,.mbfb-slideinner span{text-transform:none}.mbfbtextmaincontainer h1{text-align:left}.mbfbtextblogtitle{font-size:51px;font-weight:800;width:90%;line-height:1.2;margin-bottom:20px;display:flex;align-items:center}.mbfbtextmaincontainer h3{font-size:15px}.mbfbslideitemcatcon h1,.mbfbslideitemcatcon h2,.mbfbslideitemcatcon span,.mbfbslideiteminfoinner span,.mbfbtextmaincontainer h3{font-weight:700!important}.mbfbtextmaincontainer{width:65%;text-align:left}.mbfbslideitemcatcon h1,.mbfbslideitemcatcon h2,.mbfbslideitemcatcon span{width:fit-content;font-size:12px;margin:0;padding-top:10px;font-weight:300;line-height:1;padding-bottom:10px}.mbfbslideitemcatcon h1,.mbfbslideitemcatcon h2{padding-bottom:10px}.mbfbslideitemcatcon span{padding:10px 5px}.mbfbslideitemcatcon{display:flex;align-items:center;width:fit-content}a.mbfbslideitembtn{padding:8px 20px;font-size:15px;font-weight:600;border-radius:5px}.mbfbslideinfoiconcon{width:15px;height:15px;display:flex;justify-content:center;align-items:center;border:2px solid;border-radius:100px;font-size:12px;font-weight:600}.mbfbslideiteminfoinner{display:flex;flex-flow:column;align-items:center;width:fit-content}.mbfbslideitembtninfocon{display:flex;align-items:center;margin-top:10px}.mbfbinfoicontext{font-size:13px;line-height:1;margin-top:5px}.mbfbslideitembtncon{margin-right:30px}.mbfbslideitemcontainer .slick-track{display:flex}.mbfb-slidemaincontainer ul.slick-dots{bottom:10px}.mbfb-slidemaincontainer .slick-dots li button{width:10px;background-color:#fff;border-radius:100px;height:10px;border:none}..mbfb-slidemaincontainer .slick-dots li button:before{display:none;}.mbfb-slidemaincontainer li.slick-active button{background-color:#ffd64f}.mbfb-slideinner.slick-initialized.slick-slider.slick-dotted{margin:0}.mbfbslideiteminfocon{height:40px}.infocontentmaincontainer{background-color:#fff;border-radius:10px;font-size:12px;padding:10px;line-height:1.7;margin-top:-80%;opacity:.9;color:#000;align-self:center;width:200px;overflow-y:scroll;height:150px;box-sizing:border-box}.slideinfohide{display:none}div#blogsslideinfobtn{cursor:pointer}.infocontentmaincontainer::-webkit-scrollbar-track{background-color:#828282;border-radius:10px}.infocontentmaincontainer::-webkit-scrollbar{width:8px}.infocontentmaincontainer::-webkit-scrollbar-thumb{background-color:#000!important;border-radius:10px}.blogcatseccontainermodernouter::-webkit-scrollbar-track,.mbfb-gridsmpouter::-webkit-scrollbar-track,.mbfb-gridsqrouter::-webkit-scrollbar-track{background-color:#b7b7b7;border-radius:10px}.blogcatseccontainermodernouter::-webkit-scrollbar,.mbfb-gridsmpouter::-webkit-scrollbar,.mbfb-gridsqrouter::-webkit-scrollbar{height:10px!important}.blogcatseccontainermodernouter::-webkit-scrollbar-thumb,.mbfb-gridsmpouter::-webkit-scrollbar-thumb,.mbfb-gridsqrouter::-webkit-scrollbar-thumb{background-color:#313131;border-radius:10px}h2.mbfb-sectionheading{max-width:1070px;margin-inline:auto}
@media only screen and (max-width : 1000px) {
.affpagelogo {filter: invert(1)}.mbfbtextblogtitle{font-size:40px}.affiliate2021sec1{flex-flow:column}
}
@media only screen and (max-width: 1249px) {
  .blogcatseccontainermodern{flex-wrap:nowrap}.blogcatseccontainermodern,.mbfb-gridsmpinner,.mbfb-gridsqrinner{width:fit-content}.blogcatseccontainermodernouter,.mbfb-gridsmpouter,.mbfb-gridsqrouter{overflow-x:scroll}a.blogcatsecmodernlink,a.mbfb-gridsmpcardlink,a.mbfb-gridsqrcardlink{margin:10px}a.blogcatsecmodernlink{width:250px}
}
.header .section {
    max-width:1070px;
}

.mbfb-slidemaincontainer #slick-slide00 .mbfbtextblogtitle{
    font-size: 38px;
    line-height: 1.2;
    text-transform: unset;
    font-weight: 800;
 }
 .mbfb-slidemaincontainer #slick-slide00 .mbfbtextmaincontainer {
    width: 55%;
    text-align: left;
}
@media only screen and (max-width: 1400px) {
  .mbfb-slidemaincontainer #slick-slide00 .mbfbtextmaincontainer {
      width: 62%;
  }
}
@media only screen and (max-width: 1199px) {
  .mbfb-slidemaincontainer #slick-slide00 .mbfbtextmaincontainer {
      width: 60%;
  }  
  .mbfb-slidemaincontainer #slick-slide00 .mbfbtextblogtitle{
      font-size: 30px;
  }
}
@media only screen and (max-width: 900px) {
  .mbfb-slidemaincontainer #slick-slide00 .mbfbtextmaincontainer {
      width: 70%;
  }  
}
.mbfb-slidemaincontainer #slick-slide00 .mbfbslideitemcatcon h1,.mbfb-slidemaincontainer #slick-slide00 .mbfbslideitemcatcon span{
    display: none;
}
.mbfb-slidemaincontainer #slick-slide00 .mbfbslideiteminfocon{
    display: none;
}

 .mbfb-slidemaincontainer #slick-slide10 .mbfbtextblogtitle{
    font-size: 4vw;
    line-height: 1.2;
    text-transform: unset;
    font-weight: 800;
 }
 @media only screen and (max-width: 543px) {
    .mbfb-slidemaincontainer #slick-slide10 .mbfbtextblogtitle{
      font-size: 6vw;
    }
 }
 .mbfb-slidemaincontainer #slick-slide10 .mbfbtextmaincontainer {
    width: 86%;
    text-align: left;
}
@media only screen and (max-width: 1199px) {
  .mbfb-slidemaincontainer #slick-slide10 .mbfbtextmaincontainer {
      width: 100%;
  }  
}
.mbfb-slidemaincontainer #slick-slide10 .mbfbslideitemcontainerinner{
 margin-bottom:30px;
}
.mbfb-slidemaincontainer #slick-slide10 .mbfbslideitemcatcon h1,#slick-slide10 .mbfbslideitemcatcon span{
    display: none;
}
.mbfb-slidemaincontainer #slick-slide10 .mbfbslideiteminfocon{
    display: none;
}
.mbfb-slidemaincontainer #slick-slide10 .mbfbslideitembtninfocon{
  margin-top:15px;
}
.mbfb-slidemaincontainer #slick-slide00.mbfbslideitemcontainer{
  background-position: right;
}
.mbfb-slidemaincontainer #slick-slide10.mbfbslideitemcontainer{
  background-position: right;
}

@media only screen and (max-width : 740px) {
 /*--------BLOG CATEGORIES ------- */  
  
.mbfbtextmaincontainer{width:100%}.mbfbslideiteminfocon{margin-top:10px}.mbfbslideitembtninfocon{flex-flow:column;align-items:flex-start;margin-bottom:30px}.infocontentmaincontainer{margin-left:0}.mbfbtextblogtitle{width:100%;font-size:30px}.mbfbslideitemcontainerinner{padding:5% 10% 5%;height:700px;justify-content:flex-end}.mbfb-gridsmaincontainer{margin-bottom:-20%}.blogcatsecmaincontainermodern{padding:15% 15% 3%}div#shopify-section-blog-categories-featured-blogs{padding:7% 15% !important}.mbfb-slideinnermobile{display:block!important}.mbfb-slideinnerdesktop{display:none!important}
}


/* article */
.article-template-section .hsContainer img {
    height: unset;
    width: 100%;
}
.hsContainer__image {
    width: 100%;
}
.parallax_effect--false .hsContainer__image {
    display: block;
    line-height: 0;
}
.parallax_effect--false .hsContainer__image+.hsContent {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
}
.article-template-section .hsContent {
    max-width: 100%;
    margin: -150px auto 0;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    float: none;
    width: 100%;
    z-index: 2;
    position: relative;
}
.article-template-section .bcg .hsContent {
    transition: background-color .2s linear;
    background-color: #fff;
    z-index: 100;
}
.article-template-section .bcg.lazyloaded .hsContent, .lazyloaded+.hsContent {
    background-color: #fff0;
}
.article-template-section .hsContent .container {
    padding: 0;
    pointer-events: none;
}


   .article-template-section .column, .article-template-section .columns {
    float: left;
    display: inline;
    margin-left: 10px;
    margin-right: 10px;
}
.article-new1019 .hsContent h1 {
    text-transform: unset;
    font-weight: 600;
    margin: 10px;
}
   .article-template-section .hsContainer.image-darken--true:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #00000080;
}
   .article-template-section .hsContainer {
    display: table;
    table-layout: fixed;
    width: 100%;
    overflow: hidden;
    position: relative;
    opacity: 1;
    z-index: 1;
}
   .article-template-section .parallax_effect--false .hsContainer {
    height: auto!important;
}
   .article-template-section .offset-by-two {
    left: auto;
}
.article-template-section .container .offset-by-two {
    padding-left: 0;
    margin: 0;
}
@media only screen and (min-width: 769px){
  .article-new1019 .hsContent h1 {
    font-size: 3vw;
    line-height: 1.2;
}
}



@media(max-width:768px){
  .article-new1019 .hsContent {
    background-color: #000!important;
}
  .parallax-banner .bcg .hsContainer .hsContent {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}
  .container .one.column, .container .one.columns, .container .two.columns, .container .three.columns, .container .four.columns, .container .five.columns, .container .six.columns, .container .seven.columns, .container .eight.columns, .container .nine.columns, .container .ten.columns, .container .eleven.columns, .container .twelve.columns, .container .thirteen.columns, .container .fourteen.columns, .container .fifteen.columns, .container .sixteen.columns, .container .one-third.column, .container .two-thirds.column {
    width: 300px;
}
}


@media only screen and (min-width: 480px) and (max-width: 768px){
.container .one.column, .container .one.columns, .container .two.columns, .container .three.columns, .container .four.columns, .container .five.columns, .container .six.columns, .container .seven.columns, .container .eight.columns, .container .nine.columns, .container .ten.columns, .container .eleven.columns, .container .twelve.columns, .container .thirteen.columns, .container .fourteen.columns, .container .fifteen.columns, .container .sixteen.columns, .container .one-third.column, .container .two-thirds.column {
    width: 420px;
}
}


@media only screen and (max-width: 740px){
  .recentpostscolwithheadercon {
    padding: 20px;
}
  .recentpostscolcon {
    flex-flow: column;
    align-items: center;
}
  .recentpostscol {
    margin: 10px 0!important;
}
  .authorbiosecimg, .authorbiosectext {
    width: 100%;
}
  .authorbiosecinner {
    flex-flow: column;
}
  .authorbiosectext {
    padding-left: 0;
}
  .authorbiosectext h3 {
    margin: 20px 0 0;
}
}


/*====================AFFILIATES PAGE 2021====================== */
/*------------------------AFFILIATE EVERFLOW PAGE----------------------- */ 
/*--------GENERAL------- */ 
.affiliate2021layoutmain h1,.affiliate2021layoutmain h1 p,.affiliate2021layoutmain h2,.affiliate2021layoutmain h3{text-transform:none;color:#000}.aff2021ctacol2 a,.affiliate2021sec1col a{padding:12px 30px;background-color:#4dc2b3;color:#fff;border-radius:5px;box-shadow:0 4px 4px #0000003d;width:fit-content;text-align:center;line-height:1.3}.headaff2021innerscrolled{background-color:#29486b}.page-aff2021everflow .affpagelogo{filter:invert(1)}.headaff2021innerscrolled .affpagelogo{filter:invert(1)}.headeraff2021inner{position:fixed;display:flex;width:100%;justify-content:space-between;padding:2% 10%;box-sizing:border-box;align-items:center}a.headeraff2021loginbtn img,a.headeraff2021signbtn img{width:120px}.headeraff2021innercol2inner{justify-content:center;display:flex;align-items:center}a.headeraff2021loginbtn,a.headeraff2021signbtn{display:flex;align-items:center;justify-content:center;margin:0 5px}
/*--------END GENERAL------- */ 



/*--------GENERAL------- */ 
.page-affiliate2021{color:#101010} .affiliate2021layoutmain .newPDP2021v2border{margin-bottom:5%;width:50%}sup.registerediconaff{font-size:60%}.affiliate2021layoutmain h1,.affiliate2021layoutmain h1 p,.affiliate2021layoutmain h2,.affiliate2021layoutmain h3{text-transform:none;color:#000}.aff2021ctacon,.aff2021ctacon h2{color:#fff}.affiliate2021sec1col a{background-color:#29486B;color:#fff}.aff2021ctacol2 a{background-color:#FFA92A;color:#000;font-weight:600}.aff2021ctacol2 a,.affiliate2021sec1col a{padding:12px 30px;border-radius:5px;box-shadow:0 4px 4px #0000003d;width:fit-content;text-align:center;line-height:1.3}.headaff2021innerscrolled{background-color:#29486B}.headeraff2021inner{position:fixed;display:flex;width:100%;justify-content:space-between;padding:2% 10%;box-sizing:border-box;align-items:center;z-index:99}a.headeraff2021loginbtn img,a.headeraff2021signbtn img{width:120px}.headeraff2021innercol2inner{justify-content:flex-end;display:flex;align-items:center}a.headeraff2021loginbtn,a.headeraff2021signbtn{display:flex;align-items:center;justify-content:center;margin:0 5px}
/*--------END GENERAL------- */ 

/*--------SEC 1------- */ 
img.halfcircleaffsec1{margin-bottom:-45%;margin-left:-70%;display:flex}.affiliate2021sec1col h1{text-align:left;font-size:15px;font-weight:500;display:flex;margin-bottom:10px}.affsec1linkcon{margin-top:40px}.affiliate2021sec1col h1 span{margin-left:5px}.affiliate2021sec1col h2{font-weight:800;font-size:40px;line-height:1.3}.affiliate2021layoutmain div{box-sizing:border-box}.affiliate2021sec1,.affiliate2021sec1col2row{display:flex}.affiliate2021sec1col1{width:55%;padding:10%}.affiliate2021sec1col2{width:45%;background-image:url(/cdn/shop/files/affpagebluebg.jpg);background-size:cover;background-position:center;background-repeat:no-repeat;padding:7% 3% 5%;padding-bottom:1%}.aff2021sec1col2row1col img{max-width:100%;min-width:50%}.affiliate2021sec1col2row{justify-content:space-around;text-align:center}.aff2021sec1col2row1col h3{text-transform:none;margin:0;font-size:15px;font-weight:700;line-height:1.2}.aff2021sec1col2row1col p{font-size:13px!important;line-height:1.3;font-weight:100!important}.aff2021sec1col2row1col h3,.aff2021sec1col2row1col p{color:#fff}.aff2021sec1col2row1col2{align-self:flex-end!important;margin-bottom:-5%}.aff2021sec1col2row2col2{align-self:center}.aff2021sec1col2row2col1{margin-top:-10%}.affiliate2021sec1col a{margin-top:20px}
/*--------END OF SEC 1------- */ 

/*--------SEC 2------- */ 
.affiliate2021sec2inner{display:flex;padding:3% 15%;justify-content:center;flex-flow:column;align-items:center;text-align:center}.aff2021sec2innercol,.aff2021sec4innerlogoimg{display:flex!important;justify-content:center;margin-inline:auto!important}.affiliate2021sec2{text-align:center}.affiliate2021sec2 h3{margin-bottom:20px;letter-spacing:5px;width:100%}.aff2021sec4innerlogos2slider.slick-initialized.slick-slider,.affiliate2021sec2logos.slick-initialized.slick-slider{width:100%}.aff2021sec2innercol img{height:65px}
/*--------END OF SEC 2------- */ 

/*--------SEC 3------- */ 
.affiliate2021sec3inner{display:flex;padding:5% 10% 0;background-color:#B2BDC9;text-align:center}.aff2021sec3innercoltextcon{background-color:#fff;background-size:cover;background-repeat:no-repeat;height:250px;display:flex;flex-flow:column;align-items:center;justify-content:center;padding:5%;margin-bottom:10px;background-position:center;border-radius:10px}.aff2021sec3innercol{width:31%;margin-inline:auto}.aff2021sec3innercolnamecon h2,.aff2021sec3innercoltextcon h2{font-weight:700}.aff2021sec3innercoltextcon h2{margin-bottom:5px}.aff2021sec3innercolnamecon h2{font-size:17px}.aff2021sec3innercolnamecon p,.aff2021sec3innercoltextcon p{font-size:13px;font-weight:600!important}.aff2021sec3innercoltextcon p{padding:0 10%;margin:0}img.affpagearrowdown{width:40px;margin-top:-20px}.affiliate2021sec2inner .slick-initialized .slick-slide{display:flex!important}
/*--------END OF SEC 3------- */ 

/*--------SEC 4 new for slick------- */ 
div#affillogoslider{width:80%;margin-inline:auto}.affiliate2021layoutmain .slick-prev{left:0}.affiliate2021layoutmain .slick-next{right:0}.affiliate2021layoutmain .slick-track{display:flex;align-items:center}.aff2021sec4innerlogoimgnew.slick-slide.slick-active{justify-content:center;display:flex;align-items:center}.affiliate2021layoutmain button.slick-prev.slick-arrow:before{content:url(/cdn/shop/files/aff_arrow_left_3.svg)}.affiliate2021layoutmain button.slick-next.slick-arrow:before{content:url(/cdn/shop/files/aff_arrow_right_3.svg)}.affiliate2021layoutmain button.slick-next.slick-arrow:before,.affiliate2021layoutmain button.slick-prev.slick-arrow:before{display:flex;width:50px;height:50px}.affiliate2021layoutmain button.slick-next.slick-arrow:hover,.affiliate2021layoutmain utton.slick-prev.slick-arrow:hover{background-color:transparent}.affiliate2021layoutmain button.slick-next.slick-arrow:active,.affiliate2021layoutmain button.slick-prev.slick-arrow:active{box-shadow:none}.affiliate2021layoutmain button{z-index:9;width:50px;height:50px}.aff2021sec4innerlogoimgnew.slick-slide img,.aff2021sec4innerlogoimgnew.slick-slide.slick-active img{width:100px}.affiliate2021layoutmain .slick-list.draggable{width:80%;margin-inline:auto}.affiliate2021layoutmain .slick-arrow:hover{border-radius:100px;background-color:#f2f2f2}
/*--------SEC 4 old------- */ 
.aff2021sec4innerlogos1,.aff2021sec4innerlogos2{display:flex;padding:3% 0 1%;align-items:center;justify-content:center}.aff2021sec4innerlogoimg{width:fit-content;display:flex;justify-content:center;margin:0 5%}.aff2021sec4innerlogoimg img{height:80px}.affiliate2021sec4inner{text-align:center;padding:5% 13%}.aff2021sec4innerlogoscon h3{margin-bottom:40px;letter-spacing:5px}.aff2021sec4innerhiw{display:flex}.aff2021sec4innerhiwcol{width:50%}.aff2021sec4innerhiwcol1{text-align:right}.aff2021sec4innerhiwcol2{text-align:left}.aff2021sec4innerhiwcol2 h2,.aff2021sec4innertextcon h2{font-size:35px;font-weight:800}.aff2021sec4innertextcon{padding:0 5% 5%}.aff2021sec4innerhiwcol2 h2{margin-bottom:10px}
/*--------END OF SEC 4------- */ 

/*--------CTA 1------- */ 
.aff2021ctacon{display:flex;background-color:#29486B;padding:5% 15%;justify-content:center}.aff2021ctacol1,.aff2021ctacol2{justify-content:center;display:flex;flex-flow:column}.aff2021ctacol1{width:50%}.aff2021ctacol2{width:30%}.aff2021ctacol1 h2{font-size:30px;font-weight:800;margin:0}.aff2021ctacol1 p{font-size:14px}.aff2021ctacol2{align-items:flex-end}.aff2021ctacon2 a{font-size:20px}
/*--------END OF CTA 1------- */ 

/*--------SEC 5------- */ 
.affiliate2021sec5row{display:flex;justify-content:space-between;margin-bottom:3%}.affiliate2021sec5rowcol{display:flex;flex-flow:column}.affiliate2021sec5rowcol1{width:67%}.affiliate2021sec5rowcol1 p,.affiliate2021sec5rowcol1 ul{width:80%}.affiliate2021sec5rowcol2{width:30%;justify-content:center;align-items:center}.affiliate2021sec5{padding:5% 13% 0}.aff2021sec5rowcolnum p{width:60px!important;background-color:#29486B;display:flex;justify-content:center;height:60px;align-items:center;border-radius:100%;font-size:32px;color:#fff;font-weight:700;margin:0;line-height:1}.aff2021sec5rowcolnum{display:flex;align-items:center}.aff2021sec5rowcolnum h2{margin:0 0 0 20px}.aff2021sec5rowcoltxt{margin-left:12%}.affiliate2021sec5rowcol img{max-height:230px}.affiliate2021sec5 h2{font-size:28px;font-weight:800;width:85%}.aff2021sec5rowcoltxt p{line-height:1.3;font-weight:500}.aff2021sec5rowcoltxt li{font-size:14px;margin:0;line-height:1.6;list-style:none;display:flex}.aff2021sec5rowcoltxt ul{margin:0}.aff2021sec5rowcoltxt li::before{content:url(/cdn/shop/files/Checkmark.png)!important;display:block;width:20px!important;height:20px!important;margin:2px 8px 0 0}
/*--------END OF SEC 5------- */ 

/*--------SEC 6------- */ 
.affiliate2021sec6{padding:5% 13% 0;text-align:center}.affiliate2021sec6cardscon{display:flex;flex-wrap:wrap}.aff2021sec6card{width:28%;margin:20px auto}.affiliate2021sec6 h2,.affiliate2021sec6 h3{font-weight:800}.aff2021sec6card p{font-size:13px}.affiliate2021sec6 h3{margin:0}
/*--------END OF SEC 6------- */ 

/*--------SEC 7------- */ 
.affiliate2021sec7{padding:5% 13% 3%;background-color:#f4f5f7;text-align:center}.aff2021sec7logoscol img{margin:15px;width:150px}.aff2021sec7logoscol{display:flex;flex-flow:column}.affiliate2021sec7logoscon{display:flex;align-items:center;justify-content:center}.affiliate2021sec7 h2{font-size:35px;font-weight:800}.affiliate2021sec7 p{font-weight:600}
/*--------END OF SEC 7------- */ 

/*--------LAST CTA------- */ 
.aff2021ctacon3{padding:4% 15%;background-color:#FFA92A;text-align:center}.aff2021ctacon3 a,.aff2021ctacon3 h2,.aff2021ctacon3 p{color:#29486B}.aff2021ctacon3trustcon{margin-top:30px;display:flex;width:80%;justify-content:center;margin-inline:auto}.aff2021ctacon3trustcol{width:33.33%;display:flex;align-items:center;justify-content:center}.aff2021ctacon3 h2{font-weight:700;font-size:30px}.aff2021ctacon3 a{background-color:#29486B;color:#fff;font-size:15px;padding:10px 20px;border-radius:5px;font-weight:600}.aff2021ctacon3trustcol p{margin:0;font-size:13px}.aff2021ctacon3trustcol span{align-items:center;display:flex;margin-right:10px}
/*--------END OF LAST CTA------- */

  .newPDP2021v2border {
    border-top: 1px solid;
    width: 90%;
}
.affiliate2021layoutmain .newPDP2021v2border {
    margin-inline: auto;
}


@media only screen and (min-width : 741px) and (max-width : 1000px) {
  .aff2021sec4innerlogoimgnew.slick-slide img,.aff2021sec4innerlogoimgnew.slick-slide.slick-active img{width:80px}.swanniesbenefitscol p{font-size:16px}.swanniesbenefitscolscontainer{flex-flow:column}.affiliate2021sec1col,.swanniesbenefitscol{width:100%}.affiliate2021sec3inner{padding:5%}.headeraff2021inner{background-color:#29486b;padding:30px 5%;width:100%}div#affillogoslider{width:100%}.aff2021sec2innercol img{height:50px}  
 .headeraff2021inner {
    top: 0;
}
}

@media only screen and (max-width : 950px) {
.affiliate2021sec3inner{flex-flow:column}.aff2021sec3innercol{width:100%}.aff2021sec7logoscol img{margin:10px;width:100px}
}


@media(max-width:740px){
.headeraff2021inner{background-color:#29486b;padding:30px 5%}a.headeraff2021loginbtn img,a.headeraff2021signbtn img{width:90px}.affiliateeverflowcon{padding-top:100px}  
  
.affsec1linkcon a{font-size:15px;padding:10px 20px}.aff2021ctacol1,.aff2021ctacol2,.aff2021sec4innerhiwcol,.affiliate2021sec1col,.affiliate2021sec5rowcol,.affiliate2021sec5rowcol1 p,.affiliate2021sec5rowcol1 ul{width:100%}.aff2021ctacon,.aff2021sec4innerlogos1,.affiliate2021sec2inner,.affiliate2021sec3inner,.affiliate2021sec4inner,.affiliate2021sec5{padding:5%}.aff2021ctacon,.aff2021sec4innerhiw,.affiliate2021sec3inner,.affiliate2021sec7logoscon{flex-flow:column}.aff2021sec7logoscol{flex-flow:row}.aff2021sec6card{width:42%}.aff2021ctacol1,.aff2021ctacol2{align-items:center}.affiliate2021sec5row{flex-flow:column;flex-direction:column-reverse}.affiliate2021sec5row{margin-bottom:10%}.affiliate2021sec5rowcol2{align-items:center;margin-bottom:20px}.aff2021sec2innercol img{height:35px!important}.aff2021sec4innerlogoimg{width:fit-content!important;margin-inline:auto!important}.aff2021ctacon{text-align:center}.aff2021sec7logoscol img{margin:10px;width:120px}.aff2021ctacon3trustcon{flex-flow:column}.aff2021ctacon3trustcol{width:90%;margin:5px auto}.affiliate2021sec1col1{padding-top:100px}a.headeraff2021loginbtn img,a.headeraff2021signbtn img{width:90px}.aff2021sec4innerlogoimgnew.slick-slide img,.aff2021sec4innerlogoimgnew.slick-slide.slick-active img{width:70px}.headeraff2021innercol.headeraff2021innercol2{width:65%}.headeraff2021innercol.headeraff2021innercol1{width:35%}.affiliate2021layoutmain button,.affiliate2021layoutmain button.slick-next.slick-arrow:before,.affiliate2021layoutmain button.slick-prev.slick-arrow:before{display:flex;width:35px;height:35px}.aff2021sec4innerlogoimgnew img{width:60px!important}.aff2021sec4innerlogoimgnew{margin:0 5px;width:fit-content!important}.affiliate2021layoutmain .slick-list.draggable{width:100%!important;margin-inline:auto}.affiliate2021layoutmain button.slick-prev.slick-arrow:before{content:url(/cdn/shop/files/left_aff_arrow_small.svg)}.affiliate2021layoutmain button.slick-next.slick-arrow:before{content:url(/cdn/shop/files/right_aff_arrow_small.svg)}.aff2021sec4innerlogoscon h3{margin-bottom:20px}.aff2021sec4innerlogoimg img{height:35px}.headeraff2021inner{padding:2%}  
.headeraff2021inner {
    top: 0;
}
}


/* blog template section start*/

.blog-template-section  .column, .blog-template-section  .columns {
    float: left;
    display: inline;
    margin-left: 10px;
    margin-right: 10px;
}
.blog-template-section .container {
    justify-content:center;
}

.blog .shopify-section--footer {
    float: left;
}
.column.omega, .columns.omega {
    margin-right: 0;
}
.column.alpha, .columns.alpha {
    margin-left: 0;
}
.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),white);
}

.blog-template-section {
    float: left;
    background-color: #f1f2f2;
}

/* blog template section end*/


    .column, .columns                           { float: left; display: inline; margin-left: 10px; margin-right: 10px;}

    .row                                        { margin-bottom: 20px; }


    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column                      { width: 45.625px;  }
    .container .two.columns                     { width: 111.25px; }
    .container .three.columns                   { width: 176.875px; }
    .container .four.columns                    { width: 236.5px; }
    .container .five.columns                    { width: 308.125px; }
    .container .six.columns                     { width: 373.75px; }
    .container .seven.columns                   { width: 439.375px; }
    .container .eight.columns                   { width: 505px; }
    .container .nine.columns                    { width: 570.625px; }
    .container .ten.columns                     { width: 636.25px; }
    .container .eleven.columns                  { width: 701.875px; }
    .container .twelve.columns                  { width: 767.5px; }
    .container .thirteen.columns                { width: 833.125px; }
    .container .fourteen.columns                { width: 898.75px; }
    .container .fifteen.columns                 { width: 964.375px; }
    .container .sixteen.columns                 { width: 1030px; }

    .container .one-third.column                { width: 330px; }
    .container .two-thirds.column               { width: 680px; }
    .container .one-fifth.column                { width: 190px; }



    .container .offset-by-one-alternate         { padding-right: 65.625px;
      @include respond-to('medium') {
        padding-right: 0;
      }
    }
 @media only screen and (min-width: 960px) and (max-width: 1050px) {
  
    .container .column,
    .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column,
    .container .one.columns                     { width: 40px;  }
    .container .two.columns                     { width: 100px; }
    .container .three.columns                   { width: 160px; }
    .container .four.columns                    { width: 220px; }
    .container .five.columns                    { width: 280px; }
    .container .six.columns                     { width: 340px; }
    .container .seven.columns                   { width: 400px; }
    .container .eight.columns                   { width: 460px; }
    .container .nine.columns                    { width: 520px; }
    .container .ten.columns                     { width: 580px; }
    .container .eleven.columns                  { width: 640px; }
    .container .twelve.columns                  { width: 700px; }
    .container .thirteen.columns                { width: 760px; }
    .container .fourteen.columns                { width: 820px; }
    .container .fifteen.columns                 { width: 880px; }
    .container .sixteen.columns                 { width: 940px; }

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }
    .container .one-fifth.column                { width: 172px; }

    /* Offsets */
    .container .offset-by-one                   { padding-left: 60px;  }
    .container .offset-by-two                   { padding-left: 120px; }
    .container .offset-by-three                 { padding-left: 180px; }
    .container .offset-by-four                  { padding-left: 240px; }
    .container .offset-by-five                  { padding-left: 300px; }
    .container .offset-by-six                   { padding-left: 360px; }
    .container .offset-by-seven                 { padding-left: 420px; }
    .container .offset-by-eight                 { padding-left: 480px; }
    .container .offset-by-nine                  { padding-left: 540px; }
    .container .offset-by-ten                   { padding-left: 600px; }
    .container .offset-by-eleven                { padding-left: 660px; }
    .container .offset-by-twelve                { padding-left: 720px; }
    .container .offset-by-thirteen              { padding-left: 780px; }
    .container .offset-by-fourteen              { padding-left: 840px; }
    .container .offset-by-fifteen               { padding-left: 900px; }

    .container .offset-by-one-alternate         { padding-right: 60px;  }
  }

  /* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 960px) {
       
        .container .column,
        .container .columns                         { margin-left: 10px; margin-right: 10px;  }
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }
        .alpha.omega                                { margin-left: 0; margin-right: 0; }

        .container .one.column,
        .container .one.columns                     { width: 28px; }
        .container .two.columns                     { width: 76px; }
        .container .three.columns                   { width: 124px; }
        .container .four.columns                    { width: 172px; }
        .container .five.columns                    { width: 220px; }
        .container .six.columns                     { width: 268px; }
        .container .seven.columns                   { width: 316px; }
        .container .eight.columns                   { width: 364px; }
        .container .nine.columns                    { width: 412px; }
        .container .ten.columns                     { width: 460px; }
        .container .eleven.columns                  { width: 508px; }
        .container .twelve.columns                  { width: 556px; }
        .container .thirteen.columns                { width: 604px; }
        .container .fourteen.columns                { width: 652px; }
        .container .fifteen.columns                 { width: 700px; }
        .container .sixteen.columns                 { width: 748px; }

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }
        .container .one-fifth.column                { width: 133px; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 48px; }
        .container .offset-by-two                   { padding-left: 96px; }
        .container .offset-by-three                 { padding-left: 144px; }
        .container .offset-by-four                  { padding-left: 192px; }
        .container .offset-by-five                  { padding-left: 240px; }
        .container .offset-by-six                   { padding-left: 288px; }
        .container .offset-by-seven                 { padding-left: 336px; }
        .container .offset-by-eight                 { padding-left: 384px; }
        .container .offset-by-nine                  { padding-left: 432px; }
        .container .offset-by-ten                   { padding-left: 480px; }
        .container .offset-by-eleven                { padding-left: 528px; }
        .container .offset-by-twelve                { padding-left: 576px; }
        .container .offset-by-thirteen              { padding-left: 624px; }
        .container .offset-by-fourteen              { padding-left: 672px; }
        .container .offset-by-fifteen               { padding-left: 720px; }

        .container .offset-by-one-alternate         { padding-right: 48px;  }
    }


    /*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 768px) {
        
        /* .container .columns,
        .container .column { margin: 0; } */

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column { width: 300px; }
        .container .one-fifth.column  { width: 140px; }

        
          .container .thumbnail.even, .container .thumbnail.odd  { width: 140px !important; }
          .container div.thumbnail.even  { clear: left }
          .container div.thumbnail.odd  { margin-left: 20px }
          br.product_clear { display: none }
        

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { padding-left: 0; }

        .container .offset-by-one-alternate         { padding-right: 0;  }

    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 768px) {
       
        /* .container .columns,
        .container .column { margin: 0; } */

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column { width: 420px; }
        .container .one-fifth.column  { width: 200px;}

        
          .container .thumbnail.even, .container .thumbnail.odd  { width: 200px !important; }
          .container div.thumbnail.even  { clear: left }
          .container div.thumbnail.odd  { margin-left: 20px }
          br.product_clear { display: none }
        
    }

/******WHOLESALE PAGE********/

.blacktext, .blacktext h2 {
    color: #000;
}
.wholesaleherosec,.wholesaleinfosec{background-size:cover;background-repeat:no-repeat}.wholesaleherosec{background-image:url(/cdn/shop/files/wholesale-herov1.jpg);display:flex;justify-content:center;align-items:center;flex-flow:column;background-position:center}.wholesaleinfosec{background-image:url(/cdn/shop/files/wholesale-backv5.png);background-position:left;padding:5%;background-attachment:fixed;background-position:60%}.wholesaleheroinner{text-align:center;background-color:rgba(25,25,25,.36);padding:10% 5%;width:100%}.wholesaleherosecbtn{margin-top:25px}.wholesalemapsec{background-image:url(/cdn/shop/files/dots-and-lines_wholesale-map-image-1920x1080.png);text-align:center;padding:5% 0 0;background-size:cover;background-repeat:no-repeat;background-position:center}.wholesalecontainer{margin:0!important;width:100%}.wholesalefeatinner{display:flex;justify-content:center;padding:10px 0}.wholesalefeatcol{display:flex;width:20%;justify-content:center;margin:0 10px;align-items:center}.wholesalefeatlowtext p,.wholesalefeatuptext p{margin:0;font-size:12px;font-weight:700;font-family:Montserrat}.wholesalefeatuptext p{color:#000}.wholesalefeatlowtext p{color:#898989}.wholesaleinfoinner{flex-flow:column;display:flex;align-items:center;width:65%;text-align:center;color:#fff;padding:0 5%}.wholesaleinfoinner h2,.wholesaleinfoinner h3{color:#fff;text-transform:unset;font-weight:700}.wholesaleinfoinner h2{font-size:36px}.wholesaleinfoinner h3{text-align:center;width:100%;font-size:26px}.wholesaleinfoinner p{font-size:20px;line-height:1.3}.wholesaleinfoouter{background-image:linear-gradient(to bottom,#2b87d9 ,#29c4aa)}.wholesaleherosecbtn a,.wholesaleinfosecbtn a,.wholesalemapsecbtn a{background-color:#ffd64f;padding:11px 20px;font-weight:600;border-radius:5px}.wholesaleinfosecbtn a,.wholesalemapsecbtn a{color:#4d4d4f!important;font-size:23px}.wholesaleherosecbtn a{color:#fff;font-size:20px}.wholesaleinfosecbtn{margin-top:30px}.wholesaleherosec h1,.wholesaleherosec h2{color:#fff;font-weight:700}.wholesaleherosec h1{font-size:24px;margin:0}.wholesaleherosec h2{font-size:50px;line-height:1.3}.wholesalemapsec img{width:100%;max-width:1000px}.wholesalemapsec h2{text-transform:unset;font-weight:700;color:#333}.wholesalemapsec p{font-size:21px;line-height:1;color:#333;font-weight:700;width:80%;margin-inline:auto}
.paddingfive{padding:5%}.paddingfourzero{padding:4% 0}.paddingonezero{padding:1% 0}.hugetext{font-size:64px}.wholesalepage2022main img{width:100%}.wholesalepage2022main h1,.wholesalepage2022main h2{text-transform:none}.whsale2022stylesinner{padding:0 5% 4% 5%}.whsale2022heroinner h1,.whsale2022heroinner h2{color:#282421;text-align:left}.whsale2022heroinner h2{margin:0;letter-spacing:2px;line-height:1.3}.whsale2022heroinner h1{margin-bottom:30px}.wholesalepage2022feattext,.wholesalepage2022hero{background-size:cover;background-position-x:right;background-position-y:top;background-repeat:no-repeat}.whsale2022featscol{align-items:center;text-align:center;justify-content:center}.whsale2022featscol p{line-height:1.5;margin-bottom:0}.whsale2022featscol .rdccolonefourth{margin-right:10px}.whsale2022featscol img{max-width:36px}.wholesalepage2022styles h2{margin-bottom:0}.whsale2022featprodsinner{align-items:center;justify-content:center}.wholesalepage2022hero{background-image:url(/cdn/shop/files/swanwick_wholesale_hero_2.jpg)}.whsale2022herobtncon{box-shadow: 0px 4px 4px #00000040;background-color:#29486b!important}.wholesalepage2022featprod a,.wholesalepage2022feattext a{color:#282421}.wholesalepage2022featprod h2{line-height:1.2;margin-bottom:10px}.wholesalepage2022main .nc2021btns a{color:#282421;font-size:22px;font-weight:400}.nc2021btnscontainerinner,.whsale2022feattextbtncon,.whsale2022herobtncon{display:flex;border-radius:6px;width:fit-content}.nc2021btnscontainerinner,.whsale2022feattextbtncon{background-color:#ffa92b}.whsale2022herobtncon a{padding:10px 30px}.nc2021btnscontainerinner a,.whsale2022feattextbtncon a{padding:10px 40px}.wholesalepage2022hero a.wspage2022btn{font-size:16px}.wspage2022btn{line-height:1.5}.wholesalepage2022main .nc2021btns{margin-top:5%}.wholesalepage2022feattext{background-image:url(/cdn/shop/files/swanwick_wholesale_blue_bg.jpg)}.wholesalepage2022feattext{background-image:url(/cdn/shop/files/swanwick_wholesale_blue_bg.jpg)}.wholesalepage2022featprod{background-color:#94a4b5}.whsale2022herocol1{padding:10% 0 15%}.whsale2022herocol{width:50%}.rdccolhalf{width:45%}.rdccolonefourth{width:24%}.whsale2022featsinner{justify-content:space-around}.whsale2022feattextbtn .whsale2022feattextbtncon{margin-inline:auto}.wholesalemapsec p,.wholesalepage2022feattext p{font-weight:600!important}.wholesalepage2022styles .slick-prev:before{content:url(/cdn/shop/files/Chevron_Right.svg)}.wholesalepage2022styles .slick-next:before{content:url(/cdn/shop/files/Chevron_Left.svg)}.wholesalepage2022styles button:hover{background-color:transparent}.wholesalepage2022styles button:active{box-shadow:none}.wholesalepage2022styles button.slick-next{right:-13px}

.nc2021Flex {
display: flex;
}
.newPDPv2secinnerunique, .newPDPv2sectionsinner, .newPDPv2smasksec2info, .newPDPv2smasksec3header h2, .newPDPv2smasksec4row1, .newPDPv2smasksec4row2, .newPDPv2smasksec5info1, .newPDPv2smasksec5info2 {
    margin-inline: auto;
}
.newPDPv2sectionsinner {
    max-width: 1000px;
}
.blackweighttext {
    font-weight: 700;
}
.whsale2022heroinner h1 {
    line-height: 1.3;
}
.whitetext {
    color: #fff!important;
}
.nc2021MainContainer {
    padding-top: 79px;
}

.fontextrabold {
font-weight: 800;
}
.wholesalepage2022styles h2 {
    margin-bottom: 0;
    text-align: center;
}
.mediumtext {
    font-size: 36px;
}
.nc2021smallfontsize {
    font-size: 14px;
}
.centertext {
    text-align: center;
}
.paddingfive {
    padding: 5%;
}
.whsale2022stylesinner {
    padding: 0 5% 4%;
}

@media only screen and (min-width : 769px) {
      .whsale2022heroinner {
      width: 90%;
  }
}
@media(max-width:1200px){
  .normalsizetext, .normalsizetext p {
    font-size: 14px!important;
    font-weight: 400;
}
  .mediumtext {
    font-size: 28px;
}
}
@media(max-width:798px){
  .nc2021MainContainer {
    padding-top: 0;
}
  .wholesaleinfoinner p, .wholesalemapsec p {
    line-height: 1.5;
}
  .wholesalemapsec {
    padding: 10% 5%;
}
}

@media(max-width:768px){
 
.rdccolhalf,.whsale2022herocol{width:100%}.rdccolonefourth{width:40%}.whsale2022featsinner,.whsale2022stylescols{align-items:center}.whsale2022featscol{margin:20px 0}.whsale2022featprodsinner,.whsale2022heroinner{flex-flow:column-reverse}.paddingfive,.whsale2022featprodsinner{padding:10% 5%}.wholesalepage2022hero{background-position:82%}.whsale2022herocol1{padding:35% 0 10%}.hugetext{font-size:40px}.whsale2022featscol{font-size:12px}.whsale2022herocol,.whsale2022herocol h1,.whsale2022herocol h2{text-align:center;color:#000}.whsale2022heroinner{background-image:linear-gradient(to top,#ecedea,transparent 70%)}.whsale2022herocol h2{font-weight:700}.wholesalepage2022main a{font-size:16px!important}.whsale2022stylesinner{padding:10%}.whsale2022stylescol{width:fit-content}.whsale2022herobtncon{margin-inline:auto}.whsale2022featsinner{flex-wrap:wrap!important;flex-flow:row}

.mediumtext {
    font-size: 20px;
  }
}

@media(max-width:740px){
  .nc2021Flex {
    flex-flow: column;
  }
  .whsale2022featscol .rdccolonefourth {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/******end of wholesale page********/


/* About us page start */
.main-wrapper-about-us{
  padding-top: 79px;

  h1,h2,h3,h4,h5,h6{
    text-transform: none;
    font-weight: bold;
  }

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

  .about-us__section1{
    background-image: url('//www.swanwicksleep.com/cdn/shop/t/222/assets/about-us-section-1-bg.png?v=136414507717398023581754644713') !important;
    background-size: cover;
    height: 0;
    padding-top: 55.72%;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;

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

.main-wrapper-about-us .clearfix {
    clear: both; }
  .main-wrapper-about-us h1, .main-wrapper-about-us h2, .main-wrapper-about-us h3, .main-wrapper-about-us h4, .main-wrapper-about-us h5, .main-wrapper-about-us h6,
  .main-wrapper-about-us .h1, .main-wrapper-about-us .h2, .main-wrapper-about-us .h3, .main-wrapper-about-us .h4, .main-wrapper-about-us .h5, .main-wrapper-about-us .h6 {
    text-transform: none;
    font-weight: bold;
    color: #000; }
  .main-wrapper-about-us .container img {
    width: 100%; }
  .main-wrapper-about-us h1, .main-wrapper-about-us .h1 {
    font-size: 50px;
    line-height: 1.7em; }
  .main-wrapper-about-us h2, .main-wrapper-about-us .h2 {
    font-size: 35px;
    line-height: 1.5em; }
  .main-wrapper-about-us h3, .main-wrapper-about-us .h3 {
    font-size: 25px;
    line-height: 1.3em; }
  .main-wrapper-about-us h4, .main-wrapper-about-us .h4 {
    font-size: 20px;
    line-height: 1.1em; }
  .main-wrapper-about-us .about-us__section1 {
    background-image: url("//www.swanwicksleep.com/cdn/shop/t/175/assets/about-us-section-1-bg.png?v=11004636396679715391632237361") !important;
    background-size: cover;
    height: 0;
    padding-top: 55.72%;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative; }
.main-wrapper-about-us .about-us__section1 .about-us__section1-inner {
    position: absolute;
    top: calc(50% - 85px);
    left: 50%;
    transform: translate(-50%,-50%);
    justify-content: center;
}
  .main-wrapper-about-us .about-us__section2 h2 {
    font-size: 23px;
    text-align: left; }
  .main-wrapper-about-us .about-us__section3 {
    margin-top: 150px; }
    .main-wrapper-about-us .about-us__section3 h2 {
      font-size: 23px;
      text-align: left; }
  .main-wrapper-about-us .about-us__section4 {
    padding-top: 300px;
    background-image: url(" //www.swanwicksleep.com/cdn/shop/t/175/assets/about-us-section-4-bg.png?v=35975066865794844981632237363 ") !important;
    background-repeat: no-repeat;
    background-size: 800px;
    margin-top: -250px;
    margin-bottom: 200px; }
    .main-wrapper-about-us .about-us__section4 h2 {
      margin-bottom: 40px; }
    .main-wrapper-about-us .about-us__section4 .timeline-container:before {
      left: 50%;
      margin-left: -1px;
      content: '';
      border: 0;
      border-left: 2px solid #939393;
      position: absolute;
      height: 100%; }
    .main-wrapper-about-us .about-us__section4 .timeline-container p {
      font-size: 12px;
      font-weight: 600; }
    .main-wrapper-about-us .about-us__section4 .timeline-container .timeline-container-inner .six {
      background-color: #f0f1f1;
      border-radius: 30px;
      padding: 20px;
      box-sizing: border-box; }
    .main-wrapper-about-us .about-us__section4 .timeline-container .timeline-container-inner .two {
      text-align: center; }
      .main-wrapper-about-us .about-us__section4 .timeline-container .timeline-container-inner .two span {
        font-weight: bold; }
    .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2015 {
      margin-top: 250px; }
    .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2016 {
      margin-top: 50px; }
    .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2017 {
      margin-top: 120px; }
    .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2019 {
      margin-top: 160px; }
    .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-squiggle {
      margin-left: -17px;
      margin-top: 20px;
      -webkit-user-select: none;
      /* Safari 3.1+ */
      -moz-user-select: none;
      /* Firefox 2+ */
      -ms-user-select: none;
      /* IE 10+ */
      user-select: none;
      /* Standard syntax */ }
    .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-squiggle--reversed {
      margin-left: 10px;
      -moz-transform: scaleY(-1);
      -o-transform: scaleY(-1);
      -webkit-transform: scaleY(-1);
      transform: scaleY(-1);
      -webkit-user-select: none;
      /* Safari 3.1+ */
      -moz-user-select: none;
      /* Firefox 2+ */
      -ms-user-select: none;
      /* IE 10+ */
      user-select: none;
      /* Standard syntax */ }
    .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-history-image {
      padding: 15px;
      box-sizing: border-box;
      width: 100%;
      height: auto; }
  .main-wrapper-about-us .about-us__section5 {
    margin-top: 100px; }
    .main-wrapper-about-us .about-us__section5 .one-third {
      padding: 0 20px;
      box-sizing: border-box; }
    .main-wrapper-about-us .about-us__section5 span {
      margin-top: 15px;
      text-transform: uppercase;
      font-weight: bold;
      display: block;
      text-align: center; }
    .main-wrapper-about-us .about-us__section5 img {
      box-sizing: border-box; }
    .main-wrapper-about-us .about-us__section5 a {
      color: #000; }
    .main-wrapper-about-us .about-us__section5 .twelve {
      margin-top: 75px;
      margin-bottom: 75px; }
      .main-wrapper-about-us .about-us__section5 .twelve p {
        text-align: center;
        font-weight: bold;
        letter-spacing: 1px; }
      .main-wrapper-about-us .about-us__section5 .twelve a {
        padding: 0;
        color: #000;
        text-decoration: underline; }
    .main-wrapper-about-us .about-us__section5 .sixteen {
      text-align: center; }
  .main-wrapper-about-us .about-us__section6 {
    margin-top: 100px; }
    .main-wrapper-about-us .about-us__section6 .sixteen h2 {
      margin-bottom: 125px; }
    .main-wrapper-about-us .about-us__section6 p {
      font-size: 14px;
      font-weight: bold; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-container {
      background-color: #fff;
      position: relative;
      float: left;
      width: 100%; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-container .about-us-black-arc-bg-top {
        width: 100%;
        position: absolute;
        bottom: 20px;
        -webkit-user-select: none;
        /* Safari 3.1+ */
        -moz-user-select: none;
        /* Firefox 2+ */
        -ms-user-select: none;
        /* IE 10+ */
        user-select: none;
        /* Standard syntax */ }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info {
      margin-top: 100px; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info h2, .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info span, .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info p, .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info .ss-icon {
        color: #000; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info h2 {
        font-size: 18px;
        text-align: left;
        margin-bottom: 0; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info span {
        margin-bottom: 15px;
        display: block; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info .ss-icon {
        font-size: 35px; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container {
      float: left;
      width: 100%;
      margin-top: -20px; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container .about-us__section6__james-main-container {
        position: relative;
        padding-top: 50px;
        padding-bottom: 180px;
        width: 100%;
        float: left;
        background-color: #000; }
        @media only screen and (max-width: 1700px) {
          .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container .about-us__section6__james-main-container {
            padding-bottom: 130px; } }
        @media only screen and (max-width: 1400px) {
          .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container .about-us__section6__james-main-container {
            padding-bottom: 80px; } }
        @media only screen and (max-width: 960px) {
          .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container .about-us__section6__james-main-container {
            padding-bottom: 50px; } }
        @media only screen and (max-width: 960px) {
          .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container .about-us__section6__james-main-container {
            padding-bottom: 50px; } }
        @media only screen and (max-width: 850px) {
          .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container .about-us__section6__james-main-container {
            padding-bottom: 20px; } }
        @media only screen and (max-width: 720px) {
          .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container .about-us__section6__james-main-container {
            padding-bottom: 0px; } }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__james-container .about-us-black-arc-bg-bottom {
        width: 100%;
        position: absolute;
        bottom: 0;
        -webkit-user-select: none;
        /* Safari 3.1+ */
        -moz-user-select: none;
        /* Firefox 2+ */
        -ms-user-select: none;
        /* IE 10+ */
        user-select: none;
        /* Standard syntax */ }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info {
      margin-top: 100px; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info h2, .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info span, .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info p, .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info .ss-icon {
        color: #fff; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info h2 {
        font-size: 18px;
        text-align: left;
        margin-bottom: 0; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info span {
        margin-bottom: 15px;
        display: block; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info .ss-icon {
        font-size: 35px; }
    .main-wrapper-about-us .about-us__section6 .about-us-social-media-icons {
      position: relative;
      z-index: 999; }
      .main-wrapper-about-us .about-us__section6 .about-us-social-media-icons a {
        margin-right: 5px; }
      .main-wrapper-about-us .about-us__section6 .about-us-social-media-icons span {
        margin: 0; }
  .main-wrapper-about-us .about-us__section8 {
    background-image: url(" //www.swanwicksleep.com/cdn/shop/t/175/assets/about-us-section-8-bg.png?v=183224989588948662631632237364 ") !important;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #363636;
    padding-top: 215px;
    padding-bottom: 70px;
    color: #fff;
    text-align: center; }
    .main-wrapper-about-us .about-us__section8 h4 {
      color: #fff; }
    .main-wrapper-about-us .about-us__section8 a {
      background-color: #fff;
      padding: 5px 20px;
      border-radius: 35px;
      font-weight: bold;
      color: #363636;
      margin-top: 10px;
      display: inline-block; }
      .main-wrapper-about-us .about-us__section8 a:hover, .main-wrapper-about-us .about-us__section8 a:visited {
        color: #363636; }
  @media only screen and (min-width: 1199px) {
    .main-wrapper-about-us {
      /* Nested Column Classes */
      /* Base Grid */
      /* Offsets */ }
      .main-wrapper-about-us .container {
        position: relative;
        width: 1200px;
        margin: 0 auto;
        padding: 0; }
      .main-wrapper-about-us .column, .main-wrapper-about-us .columns {
        float: left;
        display: inline;
        margin-left: 10px;
        margin-right: 10px; }
      .main-wrapper-about-us .row {
        margin-bottom: 20px; }
      .main-wrapper-about-us .column.alpha, .main-wrapper-about-us .columns.alpha {
        margin-left: 0; }
      .main-wrapper-about-us .column.omega, .main-wrapper-about-us .columns.omega {
        margin-right: 0; }
      .main-wrapper-about-us .container .one.column {
        width: 55px; }
      .main-wrapper-about-us .container .two.columns {
        width: 130px; }
      .main-wrapper-about-us .container .three.columns {
        width: 205px; }
      .main-wrapper-about-us .container .four.columns {
        width: 280px; }
      .main-wrapper-about-us .container .five.columns {
        width: 355px; }
      .main-wrapper-about-us .container .six.columns {
        width: 430px; }
      .main-wrapper-about-us .container .seven.columns {
        width: 505px; }
      .main-wrapper-about-us .container .eight.columns {
        width: 580px; }
      .main-wrapper-about-us .container .nine.columns {
        width: 655px; }
      .main-wrapper-about-us .container .ten.columns {
        width: 730px; }
      .main-wrapper-about-us .container .eleven.columns {
        width: 805px; }
      .main-wrapper-about-us .container .twelve.columns {
        width: 880px; }
      .main-wrapper-about-us .container .thirteen.columns {
        width: 955px; }
      .main-wrapper-about-us .container .fourteen.columns {
        width: 1030px; }
      .main-wrapper-about-us .container .fifteen.columns {
        width: 1105px; }
      .main-wrapper-about-us .container .sixteen.columns {
        width: 1180px; }
      .main-wrapper-about-us .container .one-third.column {
        width: 380px; }
      .main-wrapper-about-us .container .two-thirds.column {
        width: 780px; }
      .main-wrapper-about-us .container .one-fifth.column {
        width: 220px; }
      .main-wrapper-about-us .container .offset-by-one {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-two {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-three {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-four {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-five {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-six {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-seven {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-eight {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-nine {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-ten {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-eleven {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-twelve {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-thirteen {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-fourteen {
        padding-left: 0; }
      .main-wrapper-about-us .container .offset-by-fifteen {
        padding-left: 0; } }
  @media only screen and (min-width: 960px) and (max-width: 1199px) {
    .main-wrapper-about-us {
      /* Nested Column Classes */
      /* Base Grid */
      /* Offsets */ }
      .main-wrapper-about-us .container {
        position: relative;
        width: 960px;
        margin: 0 auto;
        padding: 0; }
      .main-wrapper-about-us .container .column,
      .main-wrapper-about-us .container .columns {
        float: left;
        display: inline;
        margin-left: 10px;
        margin-right: 10px; }
      .main-wrapper-about-us .row {
        margin-bottom: 20px; }
      .main-wrapper-about-us .column.alpha, .main-wrapper-about-us .columns.alpha {
        margin-left: 0; }
      .main-wrapper-about-us .column.omega, .main-wrapper-about-us .columns.omega {
        margin-right: 0; }
      .main-wrapper-about-us .container .one.column,
      .main-wrapper-about-us .container .one.columns {
        width: 40px; }
      .main-wrapper-about-us .container .two.columns {
        width: 100px; }
      .main-wrapper-about-us .container .three.columns {
        width: 160px; }
      .main-wrapper-about-us .container .four.columns {
        width: 220px; }
      .main-wrapper-about-us .container .five.columns {
        width: 280px; }
      .main-wrapper-about-us .container .six.columns {
        width: 340px; }
      .main-wrapper-about-us .container .seven.columns {
        width: 400px; }
      .main-wrapper-about-us .container .eight.columns {
        width: 460px; }
      .main-wrapper-about-us .container .nine.columns {
        width: 520px; }
      .main-wrapper-about-us .container .ten.columns {
        width: 580px; }
      .main-wrapper-about-us .container .eleven.columns {
        width: 640px; }
      .main-wrapper-about-us .container .twelve.columns {
        width: 700px; }
      .main-wrapper-about-us .container .thirteen.columns {
        width: 760px; }
      .main-wrapper-about-us .container .fourteen.columns {
        width: 820px; }
      .main-wrapper-about-us .container .fifteen.columns {
        width: 880px; }
      .main-wrapper-about-us .container .sixteen.columns {
        width: 940px; }
      .main-wrapper-about-us .container .one-third.column {
        width: 300px; }
      .main-wrapper-about-us .container .two-thirds.column {
        width: 620px; }
      .main-wrapper-about-us .container .one-fifth.column {
        width: 172px; }
      .main-wrapper-about-us .container .offset-by-one, .main-wrapper-about-us .container .offset-by-two, .main-wrapper-about-us .container .offset-by-three, .main-wrapper-about-us .container .offset-by-four, .main-wrapper-about-us .container .offset-by-five, .main-wrapper-about-us .container .offset-by-six, .main-wrapper-about-us .container .offset-by-seven, .main-wrapper-about-us .container .offset-by-eight, .main-wrapper-about-us .container .offset-by-nine, .main-wrapper-about-us .container .offset-by-ten, .main-wrapper-about-us .container .offset-by-eleven, .main-wrapper-about-us .container .offset-by-twelve, .main-wrapper-about-us .container .offset-by-thirteen, .main-wrapper-about-us .container .offset-by-fourteen, .main-wrapper-about-us .container .offset-by-fifteen {
    padding-left: 0;
} }
  @media only screen and (max-width: 1199px) {
    .main-wrapper-about-us h1, .main-wrapper-about-us .h1 {
      font-size: 35px;
      line-height: 1.4em; }
    .main-wrapper-about-us h2, .main-wrapper-about-us .h2 {
      font-size: 27px;
      line-height: 1.4em; }
    .main-wrapper-about-us h3, .main-wrapper-about-us .h3 {
      font-size: 25px;
      line-height: 1.4em; }
    .main-wrapper-about-us h4, .main-wrapper-about-us .h4 {
      font-size: 20px;
      line-height: 1.4em; }
    .main-wrapper-about-us p {
      font-size: 15px; }
    .main-wrapper-about-us .about-us__section1 .about-us__section1-inner {
      top: 50%; }
    .main-wrapper-about-us .about-us__section4 .timeline-container p {
      font-size: 10px; }
    .main-wrapper-about-us .about-us__section6 p {
      font-size: 12px; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info,
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info {
      margin-top: 0; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-main-container {
      padding-top: 50px; } }

    @media only screen and (min-width: 768px) and (max-width: 960px){
       .main-wrapper-about-us .container .offset-by-one, .main-wrapper-about-us .container .offset-by-two, .main-wrapper-about-us .container .offset-by-three, .main-wrapper-about-us .container .offset-by-four, .main-wrapper-about-us .container .offset-by-five, .main-wrapper-about-us .container .offset-by-six, .main-wrapper-about-us .container .offset-by-seven, .main-wrapper-about-us .container .offset-by-eight, .main-wrapper-about-us .container .offset-by-nine, .main-wrapper-about-us .container .offset-by-ten, .main-wrapper-about-us .container .offset-by-eleven, .main-wrapper-about-us .container .offset-by-twelve, .main-wrapper-about-us .container .offset-by-thirteen, .main-wrapper-about-us .container .offset-by-fourteen, .main-wrapper-about-us .container .offset-by-fifteen {
    padding-left: 0;
    }
 
    }
  @media only screen and (max-width: 960px) {
    .main-wrapper-about-us .about-us__section6 p {
      font-size: 11px; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-container .about-us__section6__tristan-img {
      position: relative;
      bottom: -30px; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-container .about-us__section6__tristan-info {
      padding-top: 35px;
      padding-left: 50px;
      width: calc(268px + 46px); }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-main-container .about-us__section6__james-img {
      padding-left: 50px; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-main-container .about-us__section6__james-info {
      width: calc(268px + 46px); } }
  @media only screen and (max-width: 798px) {
    .main-wrapper-about-us {
      padding-top: 40px; }
    .main-wrapper-about-us .about-us__section3 {
      margin-top: 0; }
    .main-wrapper-about-us .about-us__section5 h2 {
      margin-bottom: 0; }
    .main-wrapper-about-us .about-us__section6 {
      margin-top: 50px; }
      .main-wrapper-about-us .about-us__section6 .sixteen h2 {
        margin-bottom: 0; } }
  @media only screen and (max-width: 768px) {
    .main-wrapper-about-us .about-us__section2 .container {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-direction: column; }
      .main-wrapper-about-us .about-us__section2 .container .seven {
        order: 2;
        margin-top: 40px; }
      .main-wrapper-about-us .about-us__section2 .container .offset-by-two.seven {
        order: 1;
        margin-top: 0px; }
    .main-wrapper-about-us .about-us__section4 {
      margin-bottom: 50px; }
      .main-wrapper-about-us .about-us__section4 .timeline-container:before {
        content: none; }
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-squiggle,
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-squiggle--reversed {
        display: none; }
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2015,
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2015,
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2016,
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2017,
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2018,
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2019 {
        margin-top: 70px; }
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2019 .two {
        padding-bottom: 15px; }
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-history-image {
        width: 50%;
        display: block;
        margin: 0 auto; }
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2014,
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2016,
      .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2018 {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: column; }
        .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2014 .six,
        .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2016 .six,
        .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2018 .six {
          order: 2; }
        .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2014 .two,
        .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2016 .two,
        .main-wrapper-about-us .about-us__section4 .timeline-container .about-us-2018 .two {
          order: 1; }
    .main-wrapper-about-us .about-us__section5 .one-third {
      margin-bottom: 60px; }
    .main-wrapper-about-us .about-us__section5 .twelve {
      margin-top: 40px; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-container .container {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-direction: column; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-container .container .about-us__section6__tristan-info {
        order: 1; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-container .container .about-us__section6__tristan-img {
        order: 2; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-img,
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-info,
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-img,
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-info {
      width: initial !important;
      padding-left: 0 !important;
      padding-right: 0 !important; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-img {
      margin-top: 30px; }
    .main-wrapper-about-us .about-us__section8 {
      padding-top: 130px; } 
    .main-wrapper-about-us .about-us__section2 .container .seven {
    margin-inline: auto;
      }
    }
  @media only screen and (max-width: 480px) {
    .main-wrapper-about-us .about-us__section1 h3 {
      font-size: 15px; }
    .main-wrapper-about-us .about-us__section5 h2 {
      font-size: 20px; }
    .main-wrapper-about-us .about-us__section6 .about-us__section6__james-img,
    .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-img {
      width: 100% !important; }
      .main-wrapper-about-us .about-us__section6 .about-us__section6__james-img img,
      .main-wrapper-about-us .about-us__section6 .about-us__section6__tristan-img img {
        min-width: 150px;
        max-width: 270px;
        margin: 0 auto;
        display: block; }
    .main-wrapper-about-us .about-us__section8 {
      padding-top: 80px; } }

.page-about-us .footer {
  margin-top: 0; }

  @media only screen and (min-width: 1199px){
.main-wrapper-about-us .container .offset-by-two {
    padding-left: 150px;
}
}
/* About us page end */

/* notify form*/
#notify_me p {
    display: inline;
}
.notify_form__inputs {
    margin-top: 15px;
}
#product-form .risk {
  margin-bottom: 0;
  text-transform: unset;
  font-weight:400;
  font-size:16px;
  color: #363636;
  font-family: Montserrat, sans-serif;
}
.main-wrapper-about-us .container {
    justify-content: space-between;
}

.customers-register .container, .customers-login  .container{
    justify-content: center;
}
@media(max-width:768px){
.main-wrapper-about-us   .container {
    width: 300px;
}
  .main-wrapper-about-us .container {
    justify-content: center;
}

}
@media only screen and (min-width: 480px) and (max-width: 768px){
.main-wrapper-about-us  .container {
    width: 420px;
}
}
/* notify end*/
@media(max-width:769px){
  /* .about-us__section7 {
      display: block;
      float: left;
      width: 100%;
  }
  .about-us__section8 {
      display: block;
      float: left;
      width: 100%;
  } */
  }

/* contact template */
.contact-template_contact_form {
    width: 100%;
    margin-bottom: 50px;
    flex-direction: column;
}
.contact_text_alignment--left .contact_content {
    margin-bottom: 25px;
}

.promo-banner .promo_banner--show {
  display: block !important; }


#promoBanner p {
    margin-bottom: 0;
}

/********Products Display Section with Tabs Filter********/
ul#nc2021fcTabsMain,ul.nc2021fcTabsSec{list-style:none;margin:0;display:flex;justify-content:center;flex-wrap:wrap}ul#nc2021fcTabsMain li{padding:0 10px;border-right:1px solid;line-height:1;margin:5px 0!important;display:flex;justify-content:center}ul#nc2021fcTabsMain li a{font-size:14px}ul.nc2021fcTabsSec li a{font-size:12px}ul#nc2021fcTabsMain li a,ul.nc2021fcTabsSec li a{color:#000;font-family:Montserrat}ul#nc2021fcTabsMain li:last-of-type{border-right:none}.nc2021fcTabsSecContent{display:flex;flex-wrap:wrap;padding:5% 20% 0;align-items:flex-start}.nc2021fccard{width:50%;display:flex;flex-flow:column;align-items:center;justify-content:center;padding:0 7%;box-sizing:border-box;margin-bottom:40px}.nc2021fccardsingle{margin-inline:auto}.nc2021fccardimg{display:flex;align-items:center;overflow:hidden;padding-bottom:20px;height:150px;justify-content:center}.nc2021fccard h4{text-transform:unset;font-size:20px;font-weight:700;text-align:center}.nc2021fccardimgtall{height:auto}ul.nc2021fcTabsSec li{margin:5px!important}ul.nc2021fcTabsSec li a{width:100px;height:80px;display:flex;align-items:center;justify-content:center;background-color:#fafafa;font-weight:700;text-transform:uppercase;color:#000;text-align:center;line-height:1.2}ul.nc2021fcTabsSec li.active a{background-color:#182e2b;color:#fff}ul#nc2021fcTabsMain li.active a{color:#a66932;text-decoration:underline;font-weight:700}ul#nc2021fcTabsMain{padding:32px 3%;background-color:#fafafa;margin-bottom:3%}.nc2021fccardimg img{width:340px;min-width:270px}

.nc2021MainContainer {
padding-top: 110px;
}
.nc2021CollectionInner {
margin: 0 -5%;
}
.nc2021Flex {
display: flex;
}
.nc2021InfoThreeCols, .nc2021InfoFourCols {
    justify-content: space-around;
    padding: 5% 0;
}
.nc2021HeaderCol {
width: 50%;
}
.nc2021HeaderImg {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100%;
width: 100%;  
}
.nc2021HeaderText {
  /* padding: 12% 5% 12% 30%; */
  padding: 40px 40px 40px 30%;
  h1 {
  font-weight: 500;
  } 
  h1, h2 {
     //font-size: 36px;
  font-size: 2.1vw;
  text-align: left;
  line-height: 1.3;
  text-transform: unset;
  margin: 0;
  }
  p {
  font-size: 14px;
  font-weight: 300;
  }
}
.nc2021half {
width: 50%;
}
.nc2021onethird {
width: 27%;
}
.nc2021onefourth {
width: 25%;
}
.nc2021CollItemCard {
width: 49%;
display: inline-block;
vertical-align: top;  
}
.collimgcontainer img {
width: 100%;
}
.nc2021CollItemCardInner {
    text-align: center;
    padding: 10% 20%;
}
.nc2021sidepadding {
padding: 3% 20%;
}
.nc2021sidepadding2 {
padding: 3% 15%;
}
.nc2021center {
text-align: center;
}
.newCollection2021Wrapper img {
    max-width: 100%;
    height:auto;
}
.newCollection2021Wrapper {
  div {
    box-sizing: border-box;
  }
  h2, h3, h4, a, span, li {
    text-transform: unset;
    font-family: 'Montserrat' !important;  
  }
  h3, h4, a, span, li {
    margin: 0 !important;
  }
  p {
    margin-bottom: 0;
    font-family: 'Montserrat' !important;  
    line-height: 1.3;
    font-size: 16px;
  }
  .nc2021btns {
    padding: 8px 27px;
    background-color: #2D626D;
    border-radius: 10px;
    font-weight: 400;
    display: inline-block;
    &:hover {
    background-color: #29486b;
    }
  }
  h2 {
    line-height: 1.2;
    margin-bottom: 20px;  
  }
  img {
    border-radius: 18px;
  }
  a {
    color: #fff;
  }
}
.nc2021dividerline {
    height: 20px;
    border-top: 1px solid #dfdfdf;
    margin-inline: auto;
}
.shortdividerline {
    width: 50%;
}
.leftdividerline {
width: 80%;
height: 20px;
border-top: 1px solid;
}
.nc2021CollItemCardLink {
margin-top: 30px;
}
.nc2021regfontsize {
font-size: 24px;
}
.nc2021mediumfontsize {
    font-size: 16px;
}
.nc2021smallfontsize {
  font-size: 14px;
}
.nc2021xsmallfontsize,
.nc2021InfoMidImgMain p.nc2021xsmallfontsize {
font-size: 11px !important;
}
.fontextrabold {
font-weight: 800;
}
.nc2021imgcon {
margin: 2% 0;
}
/*---------featured product------- */
.nc2021CollFpInner {
  align-items: center;
  justify-content: center;
}
.nc2021CollFpInnerReversed {
  flex-flow: row-reverse;
}
.nc2021CollHeaderContainer {
  h2 {
    font-weight: 500;
  }
  p {
    font-size: 16px;

    width: 100%;
    margin-inline: auto !important;
  }
}
.nc2021xlargefontsize {
  //font-size: 36px;
  font-size: 2.1vw !important;
}
.nc2021largefontsize {
  font-size: 30px;
}
.nc2021smallerfontsize {
  font-size: 13px;
}
.nc2021CollHeaderPadding {
  h2 {
    padding: 5% 5% 0;
  }
}
.nc2021CollFpRight {
  padding: 5% 7%;
  text-align: left;
}
.nc2021btnscontainer {
  margin-top: 40px;
}
.nc2021CollInfoPaddingText {
  padding: 0px 5%;
}
.nc2021CollInfoLh p, .nc2021CollInfoLh {
  line-height: 1.6 !important;
}
.nc2021CollInfoLh {
  padding-bottom: 1%;
}
.nc2021InfoNumRows {
  padding-top: 3%;
}
.fontbold {
  font-weight: 500;
}
.fontbolder {
  font-weight: 600;
}
.nc2021InfoImgText {
  padding: 0 25px;
}

.nc2021sectionh2 {
margin-bottom: 20px !important;
}
.nc2021InfoNumRowsMain h2.nc2021xlargefontsize.fontbold {
  width: 60%;
}
.nc2021InfoNumRowsMain .nc2021CollInfoLh {
  width: 80%;
  padding-bottom: 30px;
}
.nc2021InfoNumRowNum span.nc2021xlargefontsize {
  height: 50px;
  width: 50px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 2px solid;
}
.nc2021InfoNumRowNum {
  margin-right: 10px;
  margin-top: -10px;
}
.nc2021InfoNumRow {
  margin-bottom: 20px;
}
.nc2021CollItemCardInner .slick-dots li button:before,
.nc2021CollItemCardInner  .slick-dots li {

  width: 13px;
}
.nc2021CollItemCardInner .slick-dots li button:before {
  font-size: 30px;
}
.newCollection2021Wrapper .image__container {
  display: flex;
  max-width: 300px;
  height: 300px;
  align-items: center;
  justify-content: center;
}
.newCol2021hide {
  display: none;
}
.newCollection2021faqOuter h2 {
  margin-bottom: 20px;
}
div#newCollection2021faqacontent {
  padding: 20px 0 40px;
}
div#newCollection2021faqqbtn {
  cursor: pointer;
  padding: 10px 0;
  border-top: 1px solid;
  display: flex;
  justify-content: space-between;
}
.newCollfaqiconcon {
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}
span.newCollfaqicon.newCollfaqiconminus {
  padding-bottom: 5px;
  font-size: 35px;
}
.nc2021InfoThreeColsCol h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}
.nc2021InfoThreeColsCol p {
  font-size: 16px;
  text-align: left;
  line-height: 1.8;
  padding: 5px 10px;
}
.nc2021InfoFourColsCol .nc2021xlargefontsize,
.nc2021InfoThreeCols .nc2021xlargefontsize {
  font-family: 'Roboto';
  width: 50px;
  height: 50px;
  display: flex;
  margin-inline: auto !important;
  text-align: center;
  border: 2px solid;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-bottom: 20px !important;
}
.nc2021InfoFourCols .nc2021mediumfontsize,
.nc2021InfoThreeCols .nc2021mediumfontsize  {
  font-size: 15px;
  line-height: 1.3;
}
.nc2021CollectionDescMain {
  font-size: 17px;
}
.newCollection2021Feat h2 a {
  //font-size: 24px;
  font-size: 1.5vw;
  font-weight: 700;
  color: #000;
}
.newCollection2021Feat .feature_divider {
  width: 40px;
  margin: 18px auto;
  border-color: #000000;
}
.newCollection2021Wrapper .container.featured_products.newCollection2021Feat.nc2021sidepadding {
  width: 100%;
  padding: 0 20%;
  display: flex;
}
.newCollection2021Wrapper .container .one-third.column {
  width: 33.33333%;
  margin: auto;
}
.nc2021FeatSFcon,
.nc2021FeatFiltercon, 
.nc2021FeatSearchcon,
.nc2021FeatFilterconInner {
  display: flex;
  background-color: #FAFAFA;
}
.nc2021FeatFiltercon,
.nc2021FeatSearchcon {
  width: 100%;
}
.nc2021FeatFilterconInner,
.nc2021FeatSearchcon {
  align-items: center;
}
.nc2021FeatFiltercon,
.nc2021FeatFilterconInner {
  justify-content: flex-end;
}
.nc2021FeatFiltercon {
  padding: 10px 5% 10px 10px;
}
.nc2021FeatSearchcon {
  padding: 10px 10px 10px 5%;
}
.nc2021FeatSearchcon input {
  margin: 0;
  border: none;
  background-color: #fafafa;
  padding: 0;
}
.nc2021FeatSFcon img {
  border-radius: unset;
  width: 25px;
  margin-right: 10px;
}
input#ncFeatColSearchInput:focus {
  border: none;
  box-shadow: none;
}
.nc2021FeatFilterconInner {
  height: 40px;
  cursor: pointer;
}
.nc2021FeatFilterbtnscon ul {
  list-style: none;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
}
.nc2021FeatFilterbtnscon ul li {
  margin: 5px 10px !important;
}
.nc2021FeatFilterbtnscon {
  padding: 0 5%;
}
.nc2021smallfontsize2.fontbold {
  font-weight: 600;
  margin-bottom:10px;
}
.nc2021smallfontsize2,
.nc2021smallfontsize2 p {
  font-size: 14px !important;
}
.nc2021InfoThreeColsCol p {
  font-size: 15px;
}
.nc2021InfoColMain h2 {
  margin-bottom: 20px;
}
.nc2021colitemdesc {
  padding-bottom: 5px !important;
}

.mbfb-slideinner .slick-dots li button:before
{
  display:none;
}
.newCollection2021Wrapper .nc2021MainContainer {
    padding-top: 0;
}
.nc2021imgcon img {
    width: 100%;
}
.newCollection2021Wrapper p.nc2021xsmallfontsize {
    margin-top: 7px;
}
/*====================END OF NEW COLLECTION PAGE 2021====================== */
  
@media(max-width:1500px){
  .nc2021CollItemCardInner {
    padding: 10% 10%;
  }
  .nc2021regfontsize{font-size:20px;}
}
@media only screen and (max-width : 1200px) { 
/*====================NEW COLLECTION PAGE 2021 MOBILE 1200====================== */

.container.featured_products.newCollection2021Feat.nc2021sidepadding,.nc2021sidepadding{padding:3% 10%!important}.nc2021InfoFourColsCol .nc2021xlargefontsize,.nc2021InfoNumRowNum span.nc2021xlargefontsize,.nc2021InfoThreeCols .nc2021xlargefontsize{height:35px;width:35px!important}
  
/*========font sizes====== */  
.nc2021regfontsize{font-size:18px!important}.nc2021smallfontsize{font-size:11.5px!important}.nc2021CollectionDescMain,.nc2021InfoFourCols .nc2021mediumfontsize,.nc2021InfoThreeCols .nc2021mediumfontsize,.newCollection2021Wrapper p{font-size:15px!important}h2.nc2021xlargefontsize,p.nc2021xlargefontsize,span.nc2021xlargefontsize{font-size:25px!important}.newCollection2021Feat h2 a{font-size:23px!important}.nc2021InfoThreeColsCol h3{font-size:14px!important}.nc2021CollItemCardLink a.nc2021regfontsize{font-size:18px!important}.nc2021HeaderText h1,.nc2021HeaderText h2{font-size:24px!important}
 /*====================END OF NEW COLLECTION PAGE 2021 MOBILE 1200====================== */ 
}


@media(max-width:740px){

  /*====================NEW COLLECTION PAGE 2021 MOBILE====================== */
.nc2021HeaderInner{flex-flow:column-reverse!important}.nc2021HeaderText{padding:20px;}.nc2021HeaderImg{padding:17.5% 0}.nc2021CollItemCard,.nc2021HeaderCol,.nc2021half,.nc2021onefourth,.nc2021onethird{width:100%}.nc2021MainContainer{padding-top:107px}.nc2021Flex{flex-flow:column}.nc2021InfoColsNum .nc2021onefourth{width:50%}.nc2021Flex.nc2021InfoColsNum{flex-flow:wrap}.nc2021onefourth,.nc2021onethird{padding:10px 0}.newCollection2021Wrapper .image__container{height:150px}.newCollection2021Wrapper .container.featured_products.newCollection2021Feat.nc2021sidepadding{justify-content:center!important}.newCollection2021Wrapper .container .one-third.column{width:45%!important;margin:2.5%}.nc2021FeatSFcon{flex-flow:column-reverse}.nc2021FeatFiltercon,.nc2021FeatSearchcon{width:100%;justify-content:flex-start;padding:10px 10%}.nc2021FeatFiltercon{justify-content:center!important}.nc2021FeatSFcon img{width:20px}.nc2021FeatFilterconInner,input#ncFeatColSearchInput{height:20px!important;min-height:unset}div#shopify-section-newCollection2021FeatCol .products{display:flex;flex-wrap:wrap}
/*====================END OF NEW COLLECTION PAGE 2021 MOBILE====================== */
  .nc2021sidepadding {
    padding: 10%!important;
}
  .nc2021InfoNumRowsMain h2, .nc2021InfoNumRowsMain .nc2021CollInfoLh {
    width: 100%!important;
}
  .nc2021InfoNumRow {
    flex-flow: row;
}
  .nc2021section img {
    margin: 30px 0;
}
  .nc2021InfoImgText, .nc2021CollInfoLh {
    padding: 0;
}
  .newCollection2021Wrapper .nc2021InfoImgImg  img,   .newCollection2021Wrapper .nc2021CollFpLeft img{
    width: inherit;
}
  ul.nc2021fcTabsSec li a {
    width: 80px;
    height: 65px;
}
.nc2021InfoImgMain img {
    margin-top: 0;
}
}

@media(max-width:500px){
  .nc2021CollItemCardInner {
    padding: 10% 0;
}
  .nc2021CollHeaderContainer p {
    width: 100%;
}
}


/************** footer newsletter ****************/
.newsletter-section{
  margin-bottom:50px;
}
.newsletter-section .footer__title {
	font-size: 24px;
	color: #000000;
	font-weight: 600;
	text-transform: capitalize;
	text-align: center;
}

@media only screen and (max-width: 479px) {
	.newsletter-section .footer__title {
		line-height: 30px;
	}
}

.newsletter-section p {
	/* font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	text-align: center; */
   color:#000;
}

.newsletter-section .news-letter-form form{
  float:unset !important;
  margin:0 auto;
  padding:0 !important;
}
.newsletter-section .news-letter-form form input[type=text],
.newsletter-section .news-letter-form form input[type=email] {
	background-color: #fff !important;
	border: none !important;
	font-family: 'Montserrat' !important;
	height: 48px !important;
	width: 100%;
    border-radius: 0 !important;
	filter: drop-shadow(0px -4px 16px rgba(0, 0, 0, 0.2));
}

.newsletter-section .news-letter-form form [data-testid="form-component"]{
  padding: 8px 5px !important;
}
.newsletter-section .news-letter-form form>div>div:nth-child(2){
  margin-bottom: 10px !important;
}
.newsletter-section .news-letter-form form button[type=button] {
    align-self: center !important;
	font-family: 'Montserrat' !important;
	font-size: 18px !important;
	line-height: 24px !important;
	width: 100%;
	border-radius: 0 !important;
}
/* .newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 479px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div {
		flex-direction: column;
	}
}
 */
/* .newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>label,
.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>div>label>div {
	margin-bottom: 0;
	padding-bottom: 0px;
	font-weight: bold;
	font-size: 13px;
	line-height: 16px;
}

.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>label {
	margin-right: 30px;
}

@media only screen and (max-width: 768px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>label {
		margin-bottom: 12px;
	}
}

@media only screen and (max-width: 479px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>label {
		flex-direction: column;
		margin-right: 0;
		width: 100% !important;
	}
}

@media only screen and (max-width: 479px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>div {
		flex-direction: column;
	}
}

.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>div>label {
	padding-bottom: 0;
}

.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>div>label>svg:first-child {
	stroke: #757575;
}

.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>div>label>svg:nth-child(2)>g>g circle {
	fill: #757575;
}

@media only screen and (max-width: 479px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>div>label {
		padding-bottom: 10px;
	}

	.newsletter-section .news-letter-form>div>div>form>div>div:first-child>div>div>div>label:last-child {
		padding-bottom: 0;
	}
}

.newsletter-section .news-letter-form>div>div>form>div>div:nth-child(2)>div>div>div>label {
	padding-bottom: 0;
}

.newsletter-section .news-letter-form>div>div>form>div>div:nth-child(2)>div>div>div>label>div {
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	margin-right: 0 !important;
}

.newsletter-section .news-letter-form>div>div>form>div>div:last-child {
	display: flex;
	flex-direction: column !important;
	margin-top: 20px !important;
	height: 160px;
}

@media only screen and (max-width: 479px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:last-child {
		height: 120px !important;
	}
}

.newsletter-section .news-letter-form>div>div>form>div>div:last-child>div:first-child {
	flex: 1;
	max-width: 375px;
	margin: 0 auto;
	width: 100%;
	padding: 10px 0px !important;
}

.newsletter-section .news-letter-form>div>div>form>div>div:last-child>div:first-child input[type=email] {
	background-color: #fff !important;
	border: none !important;
	font-family: 'Montserrat' !important;
	height: 48px !important;
	width: 100%;
	filter: drop-shadow(0px -4px 16px rgba(0, 0, 0, 0.2));
}

@media only screen and (max-width: 479px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:last-child>div:first-child input[type=email] {
		height: 38px !important;
	}
}

.newsletter-section .news-letter-form>div>div>form>div>div:last-child>div:last-child {
	width: 100%;
	max-width: 375px;
	margin: 0 auto;
	display: flex;
	flex-direction: column !important;
	align-items: center;
	justify-content: center;
	padding: 0px 0px !important;
	height: 110px !important;
}

@media only screen and (max-width: 479px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:last-child>div:last-child {
		font-size: 16px !important;
		padding: 8px 0px !important;
		height: 70px !important;
	}
}

.newsletter-section .news-letter-form>div>div>form>div>div:last-child>div:last-child:after {
	content: "";
	height: 5px;
	width: 134px;
	background: #2d626d;
	border-radius: 20px;
	display: none;
} */

.newsletter-section .news-letter-form>div>div>form>div>div:last-child>div:last-child>button {
	align-self: center !important;
	font-family: 'Montserrat' !important;
	font-weight: 500 !important;
	font-size: 18px !important;
	line-height: 24px !important;
	width: 100%;
	border-radius: 0 !important;
	background: #000000 !important;
	padding: 15px 0px !important;
	margin-bottom: 15px !important;
}

@media only screen and (max-width: 479px) {
	.newsletter-section .news-letter-form>div>div>form>div>div:last-child>div:last-child>button {
		font-size: 16px !important;
		padding: 8px 0px !important;
	}
}

/********HYPNO PDP V2 LAYOUT  2021********/
div.product-details img, div.product-details svg {
    width: 100%;
    height:auto;
    margin-bottom: 1em;
}

.newPDP2021v2flex {
  display: flex; }

.newPDP2021v2-infosec3-inner, .newPDP2021v2-infosec4-body, .newPDP2021v2-infosec6-main, .newPDP2021v2-infosecinner {
  padding: 5% 0;
  width: 1000px; }

.newPDP2021v2-infosec3-inner, .newPDP2021v2-infosec4-body, .newPDP2021v2-infosec5-outer, .newPDP2021v2-infosec6-main, .newPDP2021v2-infosecinner, .newPDP2021v2border {
  margin-inline: auto; }

.newPDP2021v2-infosec5-outer, .newPDP2021v2-infosecinner {
  flex-flow: column; }

.newPDP2021v2-infosec5-inner {
  flex-flow: row;
  width: 100%;
  padding: 25px 0 35px; }

.newPDP2021v2-infosec5-outer {
  width: 900px; }

.newPDP2021v2-infosec1-p p, .newPDP2021v2-infosecsmain h2 {
  text-align: center; }

.newPDP2021v2-infosecsmain h2, .newPDP2021v2-infosecsmain h3, .newPDP2021v2-infosecsmain h4 {
  text-transform: unset; }

.newPDP2021v2-infosec1-img img, .newPDP2021v2-infosec2-col2 img, .newPDP2021v2-infosec5-box {
  border-radius: 15px; }

.featurestextimaget img, .newPDP2021v2-infosec3-img img, .newPDP2021v2-infosec5-btn a, .newPDP2021v2-infosec6-quotesbox {
  border-radius: 10px; }

.newPDP2021v2-infosec6-quotesbox {
  background-color: #152c31; }

.blacktext, .blacktext h2 {
  color: #000; }

.browntext {
  color: #a66932; }

.whitetext {
  color: white !important; }

.greentext {
  color: #2d626d; }

.centertext {
  text-align: center; }

.blackweighttext {
  font-weight: 700; }

.extraboldtext {
  font-weight: 600; }

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

.gianttext {
  font-size: 48px; }

.extrabigtext {
  font-size: 44px; }

.bigtext {
  font-size: 40px; }

.mediumtext {
  font-size: 36px; }

.pbigger {
  font-size: 24px; padding-top:0;
}

.normalsizetext {
  font-size: 18px !important;
  font-weight: 400; }

.normalsizetext p {
  line-height: 1.3; }

.normalsizetext li {
  margin: 0; }

.newPDP2021v2-infosec6-quotesbox, .shopify-section-newPDPlayout2021-v2 .tab-desktop {
  box-sizing: border-box; }

.newpdp2021container, .newpdp2021container .tab-desktop, .newpdp2021container .product-details a.active h3 {
  color: black !important;
  font-weight: 600; }

.newpdp2021container .product-details a.active {
  border-bottom: 5px solid !important;
  padding-bottom: 10px; }

.newPDP2021v2-infosec1-h2 h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.3; }

.newPDP2021v2-infosec1-inner {
  align-items: center;
  padding-top: 3%; }

.newPDP2021v2-infosec1-p li {
  margin: 0;
  max-width: 400px;
  line-height: 1.5; }

.newPDP2021v2-infosec1-img {
  width: 100%;
  justify-content: center; }

.newPDP2021v2-infosec1-img img {
  width: 100%;
  max-width: 600px; }

.newPDP2021v2-infosec2-col {
  width: 47%; }

.newPDP2021v2-infosec2-col2 {
  margin-left: 3% !important; }

.newPDP2021v2-infosec2-col1 {
  margin-right: 3% !important; }

.newPDP2021v2-infosec2-body {
  justify-content: center; }

.newPDP2021v2-infosec2-main {
  background-color: #2d626d; }

.pbrownbg {
  background-color: #a66932;
  padding: 20px 20px 15px 20px;
  border-radius: 10px;
  margin-left: -20px; }

.newPDP2021v2-infosec2-inner {
  padding-bottom: 8%; }

.newPDP2021v2-infosec2-col2 img {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  margin-bottom: 20px; }

.newPDP2021v2-infosec2-headings .newPDP2021v2border {
  margin: 1% auto 6%;
  width: 65%; }

.newPDP2021v2-infosec2-headings h3 {
  margin: 0; }

.newPDP2021v2-infosec3-num {
  width: 60px; }

.newPDP2021v2-infosec3-num span {
  justify-content: center;
  border: 3px solid;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  min-width: 50px;
  align-items: center; }

.newPDP2021v2-infosec3-text {
  padding-left: 15px;
  width: calc(100% - 60px);}

.newPDP2021v2-infosec3-p {
  padding-left: 5px; }

.newPDP2021v2-infosec3-h2 h2 {
  text-align: left; }

.newPDP2021v2-infosec3-h2 {
  width: 60%; }

.newPDP2021v2-infosec3-title {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;}

.newPDP2021v2-infosec3-main {
  padding: 3% 0 2%; }

.newPDP2021v2-infosec3-img {
  width: 40%; }

.newPDP2021v2-infosec2-col2 img, .newPDP2021v2-infosec3-img img {
  width: 100%; }

.newPDP2021v2-infosec4-inner {
  padding: 0;
  margin: 0;
  width: 100%; }

.newPDP2021v2-infosec4-body {
  justify-content: center; }

.newPDP2021v2-infosec4-h2 {
  background-color: #a66932;
  padding: 5%; }

.newPDP2021v2-infosec4-h2 h2 {
  margin-bottom: 0; }

.newPDPv24col1 {
  width: 30%;
  justify-content: center;
  padding: 20px 0; }

.newPDPv24col2 {
  width: 50%; }

.newPDPv24col1 li {
  line-height: 1; }

.newPDP2021v2-infosec5-box {
  width: 100%;
  padding: 4%;
  justify-content: space-between;
  align-items: center;
  background-color: #a66932;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.7); }

.newPDPv25col1 {
  width: 70%; }

.newPDPv25col2 {
  min-width: fit-content; }

.newPDP2021v2-infosec5-btn a {
  color: #000;
  background-color: #4dc2b3;
  padding: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.56); }

.newPDP2021v2-infosec5-btn {
  padding: 10px; }

.newPDP2021v2border {
  border-top: 1px solid;
  width: 90%; }

.newPDP2021v2-infosec6-quotesbox {
  padding: 4% 5% 4% 3%;
  width: 49%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); }

.newPDP2021v2-infosec6-quotes {
  justify-content: space-between; }

.newPDP2021v2-infosec6-heading {
  text-align: center; }

.newPDP2021v2-infosec6-main {
  padding-top: 0; }

.newPDP2021v2-infosec6-video {
  display: flex;
  width: 57vw;
  height: 32vw;
  margin: 2% auto 3%;
  max-width: 890px;
  max-height: 500px; }

.newPDP2021v2-infosec7-main {
  margin-bottom: 30px;
  background-image: url(/cdn/shop/files/An_Alternative_to_Over-the-Counter_Sleep_Aids.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.newPDP2021v2-infosec7-inner {
  padding-top: 8%; }

.newPDP2021v2-infosec7-outer {
  background-color: rgba(0, 0, 0, 0.3); }

.newPDP2021v2-infosec7-heading h2 {
  text-align: left;
  line-height: 1.3; }

.newPDP2021v2-infosec7-col {
  width: 49%; }

.newPDP2021v2-infosec7-body {
  justify-content: space-between; }


@media only screen and (max-width: 1200px) {
  .newPDP2021v2-infosec3-inner, .newPDP2021v2-infosec4-body, .newPDP2021v2-infosec6-main, .newPDP2021v2-infosecinner {
    max-width: 90%; }

  .newPDP2021v2-infosec5-outer {
    max-width: 70%; }

  .newPDP2021v2-infosec4-inner {
    max-width: 100%; }

  .gianttext, .newPDP2021v2-infosec1-h2 h2 {
    font-size: 40px; }

  .extrabigtext {
    font-size: 38px; }

  .bigtext, .newPDP2021v2-infosec5-bigtext.bigtext.blackweighttext p {
    font-size: 32px !important; }

  .newPDP2021v2-infosec5-text .bigtext p {
    font-weight: 700; }

  .mediumtext {
    font-size: 28px; }

  .pbigger {
    font-size: 20px; }

  .normalsizetext, .normalsizetext p {
    font-size: 14px !important;
    font-weight: 400; }

  .newPDP2021v2-infosec5-smalltext p {
    font-size: 24px !important; }

  .newPDP2021v2-infosec5-btn a.extraboldtext {
    font-size: 18px !important; }

  .newPDP2021v2-infosec5-btn a {
    padding: 15px; }

  .newPDP2021v2-infosec1-img {
    width: 70%; }

  .newPDP2021v2-infosec3-row {
    justify-content: space-between; }

  .newpdp2021container {
    width: 90% !important; }

  .newpdp2021container .tab-desktop, div#yotporeviewssubmitted {
    width: 100% !important; }

  .newpdp2021container {
    box-sizing: border-box; }
}

@media only screen and (max-width: 768px) {
   .newPDPv24col1 {
    justify-content: center !important;
    text-align: center; }

  .gianttext, .newPDP2021v2-infosec1-h2 h2 {
    font-size: 28px; }

  .extrabigtext {
    font-size: 26px; }

  .bigtext, .bigtext p .newPDP2021v2-infosec3-num span, .newPDP2021v2-infosec5-bigtext.bigtext.blackweighttext p.infosec5-bigtextmobile {
    font-size: 24px !important; }

  .mediumtext {
    font-size: 20px; }

  .pbigger p {
    font-size: 18px !important; }

  .newPDP2021v2-infosec4-col {
    padding-bottom: 0; }

  .newPDP2021v2-infosec3-h2, .newPDP2021v2-infosec3-img, .newPDP2021v2-infosec4-col, .newPDP2021v2-infosec6-quotesbox, .newPDP2021v2-infosec7-body, .newPDP2021v2-infosec7-col {
    width: 100%; }

  .newPDP2021v2-infosec1-img, .newPDP2021v2-infosec2-col2 img, .newPDP2021v2-infosec3-img img {
    width: 80%; }

  .newPDP2021v2-infosec2-col {
    margin-left: 3% !important; }

  .newPDP2021v2-infosec3-img {
    justify-content: center; }

  .newPDP2021v2-infosec2-body, .newPDP2021v2-infosec3-title, .newPDP2021v2-infosec4-body, .newPDP2021v2-infosec5-box, .newPDP2021v2-infosec6-quotes, .newPDP2021v2-infosec7-body {
    flex-flow: column; }

  .newPDP2021v2-infosec2-col {
    width: 94% !important; }

  .newPDP2021v2-infosec2-col, .pbrownbg {
    margin: 0; }

  .newPDP2021v2-infosec3-h2 h2 {
    text-align: center; }

  .newPDP2021v2-infosec3-num span {
    height: 30px;
    width: 30px;
    min-width: 30px; }

  .newPDP2021v2-infosec6-quotesbox {
    margin: 5px 0;
    padding: 15px; }

  .newpdp2021container .tab-mobile, div#yotporeviewssubmitted {
    width: 100% !important; }

  .newPDPv24col1 {
    justify-content: flex-start; }

  .newPDP2021v2-infosec5-outer {
    max-width: 100%; }

  .newPDP2021v2-infosec5-box {
    text-align: center;
    padding: 10% 5%; }

  .newPDPv25col1 {
    width: 100%; }

  .newPDP2021v2-infosec6-video {
    width: 74vw;
    height: 42vw; }

  .newPDP2021v2-infosec3-img {
    margin-bottom: 30px; }

  h4.greentext.pbigger.boldtext {
    padding: 0; }

  .yotpostarscontainer, .yotpostarscontainermobile {
    margin: 20px 0; }

  .newPDP2021v2-infosec6-video {
    margin: 20px auto; }
  
  .newPDP2021v2-infosec3-num {
  width: 36px; }

  .newPDP2021v2-infosec3-text {
    width: calc(100% - 40px);}
}
@media only screen and (max-width: 543px) {
.newPDP2021v2-infosec1-img, .newPDP2021v2-infosec2-col2 img, .newPDP2021v2-infosec3-img img{
  width: 100%;
}
}


/************************ MASK PDP V2 LAYOUT  2021********************/
.newPDPv2sm6reviewsinner {
  margin-bottom: 8%; }

.borderboxsizing, .borderboxsizing div {
  box-sizing: border-box; }

.rdccolof2 {
  width: 50%; }

.newPDPv2sectionsinner {
  max-width: 1000px; }

.newPDPv2secinnerunique {
  max-width: 1025px; }

.newPDPv2secinnerunique, .newPDPv2sectionsinner, .newPDPv2smasksec2info, .newPDPv2smasksec3header h2, .newPDPv2smasksec4row1, .newPDPv2smasksec4row2, .newPDPv2smasksec5info1, .newPDPv2smasksec5info2 {
  margin-inline: auto; }

.newpdpv2fitcontent {
  width: fit-content; }

.newpdpv2justcenter {
  justify-content: center;  gap:10px; }

.newpdpv2aligncenter {
  align-items: center;
  gap:10px;}

.newPDPv2smasksecmain h2, .newPDPv2smasksecmain h4 {
  text-transform: unset;
  line-height: 1.2; }

.newPDPv2sm6headercolinner, .newPDPv2sm6headercolinner h2, .newPDPv2smasksec2inner, .newPDPv2smasksec2inner h2, .newPDPv2smasksec4row, .newPDPv2smasksec4row h2, .newPDPv2smasksec5info, .newPDPv2smasksec5info h2, .newPDPv2smasksec5info h3 {
  color: #282421; }

.newPDPv2sm6rvwsinnercol, .newPDPv2smasksec3main, .newPDPv2smasksec4rowtxt {
  background-color: #29486b; }

.newPDPv2smasksec7main {
  background-image: url(/cdn/shop/files/Swanwick_Sleep_Mask_bg.jpg); }

.newPDPv2smasksec1main {
  padding-top: 3%; }

.newPDPv2smasksec1img {
  width: 40%; }

.newPDPv2smasksec1img.rdccol1of2 {
  justify-content: flex-end; }

.newPDPv2smasksec1img img {
  max-width: 90% !important; }

.newPDPv2sm6rvwsinnercol, .newPDPv2smasksec1img img, .newPDPv2smasksec3main img, .newPDPv2smasksec4rowtxt {
  border-radius: 10px; }

.newPDPv2smasksec1img img {
  margin: 10px; }

.newPDPv2smasksec2info {
  width: 85%; }

.newPDPv2smasksec2infoimg img, .newPDPv2smasksec2infolowerimg img {
  max-width: 100%; }

.newPDPv2smasksec2header h2 {
  text-align: center; }

.newPDPv2smasksec3main {
  padding: 7% 0; }

.newPDPv2smasksec3infoimg {
  width: 30%;
  justify-content: center; }

.newPDPv2smasksec3infoimg img {
  max-width: 68%; }

.newPDPv2smasksec3header h2 {
  width: 85%;
  margin-bottom: -30px; }

.bignumbercircle span {
  justify-content: center;
  border: 3px solid;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  min-width: 50px;
  align-items: center; }

.newPDPv2smsec3infodesc {
  margin-left: 15px; }

.newPDPv2smasksec3inforow {
  align-items: center;
  margin: 20px 0; }

.newPDPv2smasksec2infolowerimg {
  text-align: center; }

.newPDPv2smasksec3infotxt.rdccol1of2 {
  width: 55%; }

.newPDPv2smasksec2inner {
  padding: 5% 0 20px; }

.newPDPv2smasksec4row1 {
  align-items: flex-end;
  width: 85%;
  margin-bottom: 20px; }

.newPDPv2smasksec4row2, .newPDPv2smasksec5info2 {
  width: 90%; }

.newPDPv2smasksec4col h2 {
  line-height: 1.2; }

.newPDPv2smasksec4col.rdccol1of2 {
  padding-bottom: 4%;
  width: 55%; }

.newPDPv2smasksec4col.rdcco21of2 {
  overflow: hidden; }

.newPDPv2smasksec4rowtxt {
  text-align: center;
  padding: 5%; }

.newPDPv2smasksec4rowtxt p {
  margin: 0; }

.newPDPv2smasksec4col.rdccol2of2 {
  justify-content: center;
  width: 45%; }

.newPDPv2smasksec4col.rdccol2of2 img {
  margin-right: -25px; }

.newPDPv2smasksec5main h2 {
  margin-bottom: 20px; }

.newPDPv2smasksec5info1 {
  width: 85%; }

.newPDPv2smaskinfo5cols.rdccol1of2 {
  justify-content: center; }

.newPDPv2smaskinfo5cols img, .newPDPv2smasksec6headercol img {
  width: 100%; }

.newPDPv2sm6headercolinner h2 {
  font-size: 55px; }

.newPDPv2sm6headercolinner span {
  font-size: 30px; }

.newPDPv2smasksec6headercol.rdccol1of2 {
  background-color: #c4c4c4;
  justify-content: flex-end;
  align-items: center;
  padding: 4% 3%; }

.newPDPv2smasksec6headercol.rdccol1of2 h2 {
  margin: 0; }

.newPDPv2sm6rvwsinnercol p {
  font-style: italic; }

.newPDPv2sm6rvwsinnercol {
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); }

.newPDPv2sm6rvwsinnercol.rdccolof2.rdccol2of2.whitetext {
  margin-bottom: -30px !important;
  margin-top: 50px; }

.newPDPv2sm6rvwsinnercols {
  margin-bottom: 5%; }

.newPDPv2smasksec5info {
  padding: 10% 0 2%; }

.newPDPv2smasksec2header .newPDP2021v2border {
  width: 60%;
  border: 2px solid;
  margin-bottom: 8%; }

@media only screen and (min-width: 741px) and (max-width: 1000px) {
  .newPDPv2sm6headercolinner h2 {
    font-size: 40px; }

  .newPDPv2sm6headercolinner span {
    font-size: 25px; }
  }

  @media only screen and (min-width: 769px) {
      .newPDPv2smasksec2infoimg {
    padding-left: 20px; }

  .newPDPv2smasksec2infotxt {
    padding-right: 20px; }
  }
@media only screen and (max-width: 768px) {

   .newPDPv2smasksec3infotxt, .newPDPv2smasksec4col img, .newPDPv2smasksec6headercol img, .rdccolof2 {
    width: 100% !important; }

  .newPDPv2smasksec2infocols, .newPDPv2smasksec3inforow {
    flex-flow: column-reverse; }

  .newPDPv2sm6rvwsinnercols, .newPDPv2smasksec5info2, .newPDPv2smasksec6headercols {
    flex-flow: column; }

  .newPDPv2smasksec3inforow {
    padding: 5%;
    margin: 0; }

  .newPDPv2smasksec3header {
    margin-bottom: 10%; }

  .newPDPv2smasksec3infoimg {
    margin-bottom: 20px; }

  .newPDPv2smasksec4row {
    flex-flow: column-reverse; }

  .newPDPv2smasksec4col.rdccol2of2 img {
    margin-right: 0;
    margin-top: -15%; }

  .newPDPv2smasksec4col.rdccol2of2 {
    overflow: hidden; }

  .newPDPv2smasksec4col.rdccol1of2 {
    padding: 10% 0 0; }

  .newPDPv2sm6headercolinner h2 {
    font-size: 33px; }

  .newPDPv2sm6headercolinner span {
    font-size: 28px; }

  .newPDPv2smasksec6headercol.rdccol1of2 {
    display: block; }

  .newPDPv2sm6rvwsinnercol.rdccolof2.rdccol2of2.whitetext {
    margin: 0 !important; }

  .newPDPv2sm6rvwsinnercols {
    margin-bottom: 0;
    align-items: center; }

  .newPDPv2sm6reviewsinnerrows {
    padding: 5% 10%; }

  .newPDPv2sm6rvwsinnercol {
    width: 90% !important; }

  .newPDPv2smasksec2header .newPDP2021v2border {
    border: 1px solid; }

  .newPDPv2smasksec4col li {
    width: fit-content;
    margin-inline: auto; }

  .newPDPv2sm6headercolinner, .newPDPv2smasksec3header, .newPDPv2smasksec4col.rdccol1of2 {
    text-align: center; }

  .newPDPv2smaskinfo5cols.rdccol1of2 {
    margin: 20px 0; }

  .newPDPv2smaskinfo5cols img {
    max-width: 70% !important; }

  .newPDPv2smasksec3infoimg {
    max-width: 55%; }

  .bignumbercircle span {
    height: 30px;
    width: 30px;
    min-width: 30px; }
}


/* sleep-lab*/
.sleep-labs .sleep-labs__percent span:first-child {
  margin-right: 15px;
}
.sleep-labs h2 {
    text-align: center;
  font-size: 42px;
  line-height: 1.2;
  text-transform: unset;
  font-weight: 500;
  color: #000;
}
.sleep-labs .four img {
  width: 45%;
  margin-bottom: 25px;
}
.sleep-labs .sleep-labs__percent {
  color: #29486b;
  font-size: 55px;
  display: flex;
  text-align: center;
  margin-bottom: 20px;
}
.sleep-labs .sleep-labs__percent span {
  margin: auto;
}
.sleep-labs .sleep-labs__percent span:first-child {
  margin-right: 15px;
}
.sleep-labs .sleep-labs__percent span:last-child {
  margin-left: 0;
}
.sleep-labs .sleep-labs__percent .chevron-up img {
  height: 35px;
  width: auto;
  margin-bottom: 0;
}
.sleep-labs .four p {
  font-weight: 700;
}
.sleep-labs .row {
  justify-content: center;
}
.sleep-labs .four.columns .SleepScore{
   width: 220px;
}

   

  @media(max-width:768px){
    .sleep-labs .four img {
    width: 25%;
          margin-bottom: 0;
}
    .sleep-labs .sleep-labs__percent span {
    font-size: 28px;
}
    .sleep-labs .sleep-labs__percent .chevron-up img {
    height: 23px;
}
.sleep-labs h2 {
  font-size: 20px;
}
.sleep-labs .six img{
    width: 50%;
    margin-bottom: 0;
   }  
  }
/* Image gallery */
.shopify-section--gallery .has-no-side-gutter .one-fourth {
  width: 16.66%;
}

/* richtext */
.shopify-section--custom-html h4 {
  text-transform: capitalize;
  margin-top: 30px;
}

/* swanwick_science_text */
.section {
  max-width: 1050px;
}
.swanwick_science_text {
  text-align: center;
  margin: 0 auto;
}
.swanwick_science_text a{
  color: #00f;
  text-decoration: underline;
  font-weight: 500;
}
@media only screen and (min-width: 769px){
.swanwick_science_text{
    width: 800px;
}
  }
.swanwick_science_text h2 {
  font-size: 42px;
  line-height: 1.2;
  text-transform: unset;
  font-weight: 500;
  color: #000;
}
.swanwick_science_text h4 {
  font-size: 28px;
  line-height: 1.2;
  text-transform: unset;
  font-weight: 500;
  color: #000;
}
.swanwick_science_text h4 .text-decoration {
  text-decoration: underline;
}
.swanwick_science_text p {
  font-size: 18px;
  line-height: 1.43;
  color: #262626;
  font-weight: 400;
}
.swanwick_science_text p .text-decoration {
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.43;
  color: #262626;
  font-weight: 500;
}
.swanwick_science_text .image-right {
  width: 50%;
  margin: 20px auto;
}
.swanwick_science_text .image-right img {
  width: unset;
  height: unset;
  max-width: 100%;
}

.swanwick_science_text p {
  text-align: center;
}

.thumbnail .image__container {
  padding-bottom: 100%;
}
.thumbnail .image-element__wrap {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: auto !important;
  max-height: none !important;
  transform: translateY(-50%);
}

@media only screen and (min-width: 769px) {
  .swanwick_science_text .container {
    width: 800px;
  }
}
@media only screen and (max-width: 768px) {
  .swanwick_science_text .image-right {
    width: 100%;
  }
  .swanwick_science_text h2 {
    font-size: 20px;
  }
  .swanwick_science_text {
    padding: 40px 0 0;
  }
}

/* swanwick-video-v2 */


 #shopify-section-swanwick-video-v2 .title-mobile {
	 display: none;
}

 #shopify-section-swanwick-video-v2 .title-mobile.title-mobile-2 {
	 margin-top: -1px;
}
 .swanwick-embedded-video {
	 position: relative;
	 background-color: #000;
	 overflow: hidden;
}
.swanwick-embedded-video .container {
    display: flex;
    padding: 0;
    
}
.swanwick-embedded-video > .container {
  flex-wrap: nowrap;
    width: 1050px;
}
.video-section .swanwick-embedded-video .thumbnail-overlay {
    padding: 0;
    cursor: pointer;
}

.swanwick-embedded-video .video-block {
	width: 100%;
	padding: 0 15px;
}
.swanwick-embedded-video:not(.video-overlay--exists) {
	padding-top: 60px;
	padding-bottom: 60px;
}
.swanwick-embedded-video .swanwick-embedded-video-container {
	text-align: center;
	padding-top: 0;
	padding-bottom: 0;
	z-index: 2;
	width: 100%;
}
.swanwick-embedded-video .swanwick-embedded-video-container .columns {
	width: 100%;
	margin: 0;
	position: relative;
	text-align: center;
}
.swanwick-embedded-video .swanwick-embedded-video-container.video-overlay--exists {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.swanwick-embedded-video .swanwick-embedded-video-container .w-big-play-button {
	display: none !important;
}
.swanwick-embedded-video .swanwick-embedded-video-container .video-loader-anim {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.swanwick-embedded-video .thumbnail-overlay {
	width: 100%;
	height: 100%;
	z-index: 3;
	padding: 60px 0;
	text-align: center;
   
}
.swanwick-embedded-video .thumbnail-overlay .embed-text-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 3;
}
.swanwick-embedded-video .thumbnail-overlay .embed-text-container .title {
	color: #fff;
	width: 100%;
	font-size: larger;
	text-transform: capitalize;
	font-weight: bold;
	font-size: 32px;
}

.swanwick-embedded-video .thumbnail-overlay .embed-text-container .play-button-container {
	text-align: center;
}
.swanwick-embedded-video .thumbnail-overlay .embed-text-container .title-2 {
	margin-top: 15px;
}
.swanwick-embedded-video .thumbnail-overlay img {
    max-width: 100%;
    padding: 0;
    vertical-align: middle;
    box-sizing: border-box;
    background: black;
    height: auto;
    width: inherit;
}


@media screen and (min-width: 769px) {
	#shopify-section-swanwick-video-v2 {
		margin-bottom: 60px;
   }
  
}

@media only screen and (min-width: 960px) and (max-width: 1050px){
  .swanwick-embedded-video > .container { 
      width: 960px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px){
  .swanwick-embedded-video > .container { 
      width: 768px;
  }
}



@media only screen and (max-width: 798px) {
	.swanwick-embedded-video  .container {
		flex-direction: column;
       width: 100%;
   }
   .swanwick-embedded-video .video-block {
	width: unset;
	padding: 15px;
}
}
@media only screen and (max-width: 768px) {
	.swanwick-embedded-video:not(.video-overlay--exists) {
		padding-top: 30px;
		padding-bottom: 30px;
   }
   .swanwick-embedded-video .thumbnail-overlay .embed-text-container .title {
	font-size: 26px;
	}
	.swanwick-embedded-video .thumbnail-overlay .embed-text-container .play-button-container button, .swanwick-embedded-video .thumbnail-overlay .embed-text-container .play-button-container div, .swanwick-embedded-video .thumbnail-overlay .embed-text-container .play-button-container svg {
		height: 62.5px !important;
		width: 100.719px !important;
	}
}



@media screen and (max-width: 480px) {
	#shopify-section-swanwick-video-v2 .title {
		display: none;
   }
   #shopify-section-swanwick-video-v2 .title-mobile {
	display: block;
	margin: 0;
	padding: 15px 0;
	font-size: 20px;
	line-height: 25px;
	font-weight: 600;
	background-color: #000;
	color: #fff;
}
}


/* instaram */
#shopify-section-swanwick-instagram {
	padding-top: 70px;
	padding-bottom: 70px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#shopify-section-swanwick-instagram .feature_divider {
	margin-bottom: 35px;
}

#shopify-section-swanwick-instagram h2 {
	text-align: center;
	font-weight: bold;
	position: relative;
	color: #000;
	margin: 0;
}
.index #shopify-section-swanwick-instagram .slick-arrow:before, .index-ab-b #shopify-section-swanwick-instagram .slick-arrow:before, .index-ab-c #shopify-section-swanwick-instagram .slick-arrow:before, .index-ab-d #shopify-section-swanwick-instagram .slick-arrow:before, .product-classic-v2 #shopify-section-swanwick-instagram .slick-arrow:before, .product-flight-club-bundle #shopify-section-swanwick-instagram .slick-arrow:before, .product-aromatherapy #shopify-section-swanwick-instagram .slick-arrow:before, .product-prescription-classic-v2 #shopify-section-swanwick-instagram .slick-arrow:before {
    content: url(//www.swanwicksleep.com/cdn/shop/t/175/assets/slick-arrow-white.svg?v=14770339423871675661632237453);
}
#shopify-section-swanwick-instagram a {
	color: #fff;
	background-color: #2d626d;
	padding: 10px 35px;
	margin-bottom: 30px;
	position: relative;
	border-radius: 5px;
	font-size: 18px;
	font-weight: bold;
}
#shopify-section-swanwick-instagram a:hover {
	background-color: #29486b;
}
#shopify-section-swanwick-instagram .instagram-posts-slider {
	margin-left: -50px;
	margin-right: -50px;
	margin-top: 40px;
}

#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item {
	padding: 5px;
}
#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item:focus {
	outline: none;
}
#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--author {
   justify-content: flex-start;
   padding: 5px;
   background-color: #fff;
   overflow: hidden;
   display: flex;
}
#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--author .author--icon {
	width: 32px;
}
#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--author .author--icon img {
	height: 32px;
	width: auto;
	border-radius: 50%;
}
#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--author .author--info {
   text-align: left;
   width: calc(100% - 32px);
   padding-left: 10px;
   padding-right: 10px;
   box-sizing: border-box;
   flex-direction: column;
   font-size: 13px;
   display: flex;
}

#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--author .author--info .author--handle, #shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--author .author--info .author--location {
	line-height: 16px;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--author .author--info .author--handle {
	font-weight: 600;
}
#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--photo {
	width: 100%;
	padding-top: 100%;
	height: 0;
	overflow: hidden;
	position: relative;
}
#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--photo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#shopify-section-swanwick-instagram .slick-arrow {
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 1;
	height: 120%;
	width: 100px;
}


#shopify-section-swanwick-instagram .slick-arrow:active {
	box-shadow: none;
}
#shopify-section-swanwick-instagram .slick-next {
	right: 5%;
}


#shopify-section-swanwick-instagram .slick-prev {
	left: 5%;
}


#shopify-section-swanwick-instagram .slick-prev:before {
	display: block;
	transform: rotate(180deg);
}
#shopify-section-swanwick-instagram .slick-dots {
	bottom: -50px;
}
#shopify-section-swanwick-instagram .slick-dots li {
	width: 100px;
	background-color: #000;
	height: 5px;
	margin: 0;
}

#shopify-section-swanwick-instagram .slick-dots li.slick-active {
	background-color: #fff;
}
#shopify-section-swanwick-instagram .slick-dots li:first-child:before {
	content: "";
	width: 20px;
	height: 5px;
	background-color: #000;
	position: absolute;
	left: -20px;
	top: 0;
}
#shopify-section-swanwick-instagram .slick-dots li:last-child:after {
	content: "";
	width: 20px;
	height: 5px;
	background-color: #000;
	position: absolute;
	right: -20px;
	top: 0;
}
#shopify-section-swanwick-instagram .slick-dots li button {
	height: 5px;
	width: 100%;
	padding: 0;
}
#shopify-section-swanwick-instagram .slick-dots li button:before {
	line-height: 5px;
	height: 5px;
	width: 100%;
	color: transparent;
} 
.index #shopify-section-swanwick-instagram::before{
 
   background-size: cover;
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   filter: opacity(.08);
   background-position: bottom;
}


@media screen and (max-width: 1024px) {
	#shopify-section-swanwick-instagram .instagram-posts-slider .instagram--item .instagram--author .author--info {
		font-size: 10px;
   }
}

@media screen and (max-width: 768px) {
	#shopify-section-swanwick-instagram .slick-dots li {
		width: 25px;
   }
   #shopify-section-swanwick-instagram .slick-arrow {
	width: 50px;
}
#shopify-section-swanwick-instagram .slick-prev {
	left: 50px;
}
#shopify-section-swanwick-instagram .slick-next {
	right: 50px;
}
}

@media screen and (max-width: 480px) {
	#shopify-section-swanwick-instagram h2 {
		margin-bottom: 35px;
		line-height: 34px;
		padding-left: 20px;
		padding-right: 20px;
   }
   #shopify-section-swanwick-instagram .slick-prev {
	left: 70px;
}
#shopify-section-swanwick-instagram .slick-next {
	right: 70px;
}
#shopify-section-swanwick-instagram .instagram-posts-slider {
	margin-left: -70px;
	margin-right: -70px;
}
}


/* cbb-also-bought-slider */

.cbb-also-bought-slider-container {
  text-align: center; 
}
li.cbb-also-bought-product {
  border: 1px solid #c7c7c7; 
}
@media only screen and (max-width: 740px) {
 li.cbb-also-bought-product {
    width: 45% !important;
    margin: 5px !important; }

  .cbb-also-bought-slider {
    overflow: unset !important;
    white-space: normal !important; }

  .cbb-also-bought-container.cbb-mobile-view {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important; }

  h2.cbb-also-bought-title {
    margin: 0 !important;
    padding: 0 !important; }
}


/* featured text slider */

#shopify-section-swanwick-featured-text {
	 background-color: #efefef;
}
@media only screen and (min-width: 768px) {
#shopify-section-swanwick-featured-text .slick-dots {
    display:none !important;
}
}
 #shopify-section-swanwick-featured-text .container {
	 padding-top: 70px;
	 padding-bottom: 70px;
}
 #shopify-section-swanwick-featured-text .container .media--inner-container {
	 position: relative;
	
}
 
 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-list {
	 margin-bottom: 40px;
}
 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-track {
	 display: flex !important;
}
 
 #shopify-section-swanwick-featured-text .container .media--inner-container .media--text {
	 margin-top: 40px;
	 margin-bottom: 40px;
	 text-align: left;
}


 #shopify-section-swanwick-featured-text .container .media--inner-container .media--text p {
	 line-height: 25px;
}
 #shopify-section-swanwick-featured-text .container .media--inner-container .media--item {
	 outline: none;
	 display: flex;
	 flex-direction: column;
}
 
 #shopify-section-swanwick-featured-text .container .media--inner-container .media--item .media--logo {
	 display: flex;
	 margin: 0 auto;
	 margin-bottom: 50px;
	 width: 100%;
	 height: 60px;
}
 #shopify-section-swanwick-featured-text .container .media--inner-container .media--item .media--logo img {
	 max-height: 60px;
	 height: unset;
	 width: auto;
	 margin: auto;
	 margin-bottom: 0;
}
 #shopify-section-swanwick-featured-text .container .media--inner-container .media--item .media--quote {
	 display: inline-block;
	 text-align: left;
	 margin: auto;
	 margin-top: 0;
}

 #shopify-section-swanwick-featured-text .container .media--inner-container .media--item .media--quote p {
	 margin: 0;
	 text-align: center;
	 font-weight: 900;
}
 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-dots {
	 bottom: -60px;
}

 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow {
	 z-index: 1;
	 height: 120%;
	 width: 50px;
	 background-color: transparent;
}

 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:active {
	 box-shadow: none;
}
 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-prev {
	 left: -100px;
}
 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-prev:before {
	 display: block;
	 transform: rotate(180deg);
}
 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-next {
	 right: -100px;
}
 
#shopify-section-swanwick-featured-text .container .media--inner-container .media--item .media--quote p {
    margin: 0;
    text-align: center;
    font-weight: 900;
    color: #000;
}
#shopify-section-swanwick-featured-text .container {
    justify-content: center;
}
.index #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:before, .index-ab-b #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:before, .index-ab-c #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:before, .index-ab-d #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:before, .product-classic-v2 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:before, .product-flight-club-bundle #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:before, .product-aromatherapy #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:before, .product-prescription-classic-v2 #shopify-section-swanwick-featured-text .container .media--inner-container .slick-arrow:before {
    content: url(//www.swanwicksleep.com/cdn/shop/t/175/assets/slick-arrow-gray.svg?v=13791749368377437921632237452);
    color: #777;
}
.index #shopify-section-swanwick-featured-text .container .media--inner-container .media-slider:before, .index-ab-b #shopify-section-swanwick-featured-text .container .media--inner-container .media-slider:before, .index-ab-c #shopify-section-swanwick-featured-text .container .media--inner-container .media-slider:before, .index-ab-d #shopify-section-swanwick-featured-text .container .media--inner-container .media-slider:before, .product-classic-v2 #shopify-section-swanwick-featured-text .container .media--inner-container .media-slider:before, .product-flight-club-bundle #shopify-section-swanwick-featured-text .container .media--inner-container .media-slider:before, .product-aromatherapy #shopify-section-swanwick-featured-text .container .media--inner-container .media-slider:before, .product-prescription-classic-v2 #shopify-section-swanwick-featured-text .container .media--inner-container .media-slider:before {
    content: "";
    background-image: url(//www.swanwicksleep.com/cdn/shop/t/175/assets/media-faint-quote.png?v=59860757250493614481632237427);
    background-size: contain;
    background-repeat: no-repeat;
    height: 200px;
    width: 100%;
    position: absolute;
    background-position: center;
    left: 50%;
    transform: translate(-50%);
}
@media screen and (min-width: 769px) {
	#shopify-section-swanwick-featured-text .container .media--inner-container .slick-slide {
		height: inherit !important;
   }
}
@media screen and (max-width: 768px) {
	#shopify-section-swanwick-featured-text .container .media--inner-container .media--text {
		margin-bottom: 60px;
   }
   #shopify-section-swanwick-featured-text .container .media--inner-container .media--item {
	display: block;
}
#shopify-section-swanwick-featured-text .container .media--inner-container .media--item .media--quote {
	margin-left: 0;
}
#shopify-section-swanwick-featured-text .container .media--inner-container .slick-dots {
	bottom: -85px;
}
}

/* Review */
#shopify-section--testimonials .container {
    justify-content: center;
}
#shopify-section-swanwick-reviews {
	 padding-top: 50px;
	 padding-bottom: 50px;
}
 #shopify-section-swanwick-reviews .sleep-labs .four {
	 text-align: center;
}

 #shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent {
	 color: #29486b;
	 font-size: 55px;
	 display: flex;
	 text-align: center;
	 margin-bottom: 20px;
}

#shopify-section-swanwick-reviews h2 {

    color: #000;
}
 #shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent span {
	 margin: auto;
}
 #shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent span:first-child {
	 margin-right: 15px;
}
 #shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent span:nth-child(2) {
	 margin-left: 0;
}
 #shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent .chevron-up img {
	 height: 35px;
	 width: auto;
}

 #shopify-section-swanwick-reviews .sleep-labs .four p {
	 font-weight: bold;
}
 #shopify-section-swanwick-reviews .sleep-labs .four > img {
	 width: 45%;
	 margin-bottom: 25px;
}
 

 #shopify-section-swanwick-reviews .sleep-labs .four.offset-by-six img {
	 width: 90%;
	 margin-bottom: 0;
}

 #shopify-section-swanwick-reviews h2, #shopify-section-swanwick-reviews h3, #shopify-section-swanwick-reviews h4 {
	 text-transform: capitalize;
	 font-weight: 500;
	 margin: 0;
	 padding: 0;
}
 #shopify-section-swanwick-reviews h2 {
	 font-size: 35px;
	 margin-bottom: 20px;
	 font-weight: 600;
}

 
 #shopify-section-swanwick-reviews h3 {
	 font-size: 30px;
}


 #shopify-section-swanwick-reviews .h4 {
	 font-size: 26px;
}

 
 #shopify-section-swanwick-reviews .reviews--container:before {
	 content: "";
	 width: 1px;
	 background-color: #2d626d;
	 height: 50px;
	 position: absolute;
	 top: 0;
	 left: 50%;
	 transform: translate(-50%);
	 display: none;
}
 #shopify-section-swanwick-reviews .reviews--container .fourteen {
	 margin-top: 0px;
}
 #shopify-section-swanwick-reviews .reviews--container .reviews-slider {
	 margin-top: 30px;
	 margin-bottom: 30px;
}
 #shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item:focus {
	 outline: none;
}
 #shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--quote_img, #shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--stars {
	 margin: 0 auto;
}

 #shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--headline, #shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--author {
	 margin-top: 15px;
	 margin-bottom: 15px;
	 font-size: 27px;
}

 
 #shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--content {
	 font-family: Montserrat;
}
 #shopify-section-swanwick-reviews .reviews--container .reviews-slider .slick-dots {
	 bottom: -40px;
}

 
#shopify-section-swanwick-reviews .container{
justify-content:center;
}
@media screen and (max-width: 768px) {
	#shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent {
		margin-bottom: 15px;
   }
   #shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent .chevron-up img {
	height: 23px;
}
#shopify-section-swanwick-reviews .sleep-labs .four > img {
	width: 25%;
}
#shopify-section-swanwick-reviews .sleep-labs .four.offset-by-six img {
	width: 50%;
}
#shopify-section-swanwick-reviews h2 {
	font-size: 30px;
	line-height: 40px;
}
#shopify-section-swanwick-reviews h3 {
	font-size: 23px;
	line-height: 30px;
}
#shopify-section-swanwick-reviews .h4 {
	font-size: 20px;
	line-height: 30px;
}
#shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent span {
   font-size: 28px;
}
#shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--headline, #shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--author {
	font-size: 23px;
	line-height: 30px;
}
#shopify-section-swanwick-reviews {
	 padding-top: 30px;
	 padding-bottom: 30px;
}
}

 @media only screen and (max-width: 676px) {
	 #shopify-section-swanwick-reviews .sleep-labs .four {
		 margin-bottom: 20px;
	}
	#shopify-section-swanwick-reviews .sleep-labs .four > img {
		margin-bottom: 0;
   }
}


@media screen and (max-width: 480px) {
	#shopify-section-swanwick-reviews .sleep-labs .four .sleep-labs__percent {
		font-size: 25px;
   }
   #shopify-section-swanwick-reviews h2 {
	font-size: 26px;
	line-height: 30px;
}
#shopify-section-swanwick-reviews h3 {
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 10px;
}
#shopify-section-swanwick-reviews .h4 {
	font-size: 18px;
	line-height: 25px;
}
#shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--quote_img {
	width: 30px;
}
#shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--verified {
	font-size: smaller;
}
#shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--headline, #shopify-section-swanwick-reviews .reviews--container .reviews-slider .reviews--item .reviews--author {
	font-size: 18px;
	line-height: 25px;
}
}


/* product-page */
.sticky-cart .add_to_cart {
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    filter: drop-shadow(0 4px 4px #333333);
    font-weight: 600;
    background-color: #ffa92a;
    color: #282421;
}
    /* #launcher {
      bottom:70px !important;
  } */
@media only screen and (max-width: 768px){
    #launcher {
      display: none!important;
  }
  button.needsclick[aria-label="Open Form"] {
    transform: scale(.8);
    bottom: -20px!important;
    left: -20px!important;
}
  .sticky-cart {
    left: 75px;
    right: 75px;
}
}

@media (max-width: 380px){
  .sticky-cart .add_to_cart {
      font-size: 16px;
      padding: 10px;
  }  
}


/** sports landing page css **/


@font-face {
    font-family: 'Lato';
    src: url('/cdn/shop/files/Lato-Bold.ttf?v=1691573957') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/cdn/shop/files/Lato-Regular.ttf?v=1691573985') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/cdn/shop/files/Lato-Light.ttf?v=1691573999') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


.sports-page-content .container {
    width: 1050px;
}
.page-sports-landing-page .new-container {
    width: 1450px;
}

.page-sports-landing-page.promo-banner--true .global-wrapper {
    margin-top: 0;
}

@media only screen and (min-width: 960px) and (max-width: 1050px){
.sports-page-content .container {
    width: 960px;
}
}
@media only screen and (min-width: 768px) and (max-width: 960px){ 
 .sports-page-content .container {
      width: 768px;
  }
}


@media only screen and (max-width: 768px){
.sports-page-content .container {
    width: 300px;
}
 .sports-page-content .container .columns, .sports-page-content .container .column {
    margin: 0;
}
  #slide-swanwick-image-with-text-overlay-section-v3-sp .hsContainer {
    height: auto !important;
}
}

@media only screen and (min-width: 480px) and (max-width: 768px){
.sports-page-content .container  {
    width: 420px;
}
}

@media only screen and (max-width: 798px){
.container.homepage-content-container .columns {
    text-align: center!important;
    width: 100%;
}
  .align_left .headline, .align_left .subtitle p {
    text-align: center;
}
  .hsContainer {
    display: table;
    table-layout: fixed;
    width: 100%;
    overflow: hidden;
    position: relative;
    opacity: 1;
    z-index: 1;
}
}

  
.page-sports-landing-page #promoBanner,
.page-sports-landing-page .promo_banner{
  display: none !important;
}
.page-sports-landing-page .feature_image .header.sticky-header--true.header-background--false {
  position: unset;
}
.page-sports-landing-page .promo_banner ~ .header {
  top: 0 !important;
  position: unset;
}
.page-sports-landing-page .header .menu.right, .page-sports-landing-page .nav ul.menu {
  display: none;
}
.page-sports-landing-page .page-btn {
  float: right;
}
body.page-sports-landing-page,
.page-sports-landing-page .header-btn,
.page-sports-landing-page .headline,
.banner-v3-sp .subtitle p,
.page-sports-landing-page .hsContainer .action_button.page-btn,
.action_button.shop-btn,
.font-family{
  font-family: Lato;
}
.page-sports-landing-page .header-btn {
  border-radius: 0;
  background-color: #F47E37;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: unset;
}
.page-sports-landing-page .new-container{
  width: 1450px;
}
.page-sports-landing-page .home-image-content{
  width: 100%;
  float: right;
  padding: 0;
}
.page-sports-landing-page .header-btn:hover, 
.feature_image .header .nav a:hover {
  color: #fff !important;
  background-color: #29486B;
}
.swanwick-image-with-text-overlay-section-v2.banner-v3-sp .subtitle p{
  font-size: 16px;
}

.page-sports-landing-page .hsContainer .action_button.page-btn,
.action_button.shop-btn{
  background-color: #29486B;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  padding: 11px 28px;
  font-size: 16px;
  font-weight: 700;
}
.page-sports-landing-page .hsContainer .action_button.page-btn svg,
.action_button.shop-btn svg{
  margin-right: 8px;
}
.page-sports-landing-page .feature_image .header.sticky-header--true.sticky--active{
  position: unset;
}
.parallax-banner-v3-sp {
  margin-bottom: 30px;
}
.btn-with-icon {
  gap: 10px;
}
/** sleep bundle css **/
.section-title {
  font-size: 35px;
  font-family: 'Lato';
  text-transform: inherit;
  color: #232323;
  font-weight: 600;
}
.section-subtitle {
  font-size: 18px;
  line-height: 28px;
  font-family: 'Lato';
  color: #232323;
}
.section-heading {
  text-align: center;
  margin-bottom: 30px;
}
.section-margin-top{
  margin-top: 50px;
}
.page-shop-btn {
  display: inline-block;
  vertical-align: middle;
  margin-top: 15px;
}
.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-left-content {
  width: 70%;
}
.section-right-content {
  width: 30%;
}
.left-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #232323;
  text-transform: inherit;
}
.bundle-content-list {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.bundle-content-list:first-child {
 margin-top: 0;
}
.bundlelist-blocks{
  width: 80%;
}
.bundlelist-img {
  height: 62px;
  width: 62px;
  line-height: 72px;
  background-color: #F0F0F0;
  border-radius: 50%;
  min-width: 62px;
  text-align: center;
  border: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bundlelist-content p {
  margin: 0;
}
.bundlelist-content {
  margin-left: 14px;
  font-size: 16px;
  color: #232323;
}
.bundlelist-content strong {
  color: #29486b;
  border-bottom: 1px solid #29486b;
}
.bundle-content-list:hover .bundlelist-img {
  border-color: #F47E37;
}

/**---------- compare section --------------------**/
.bundle-compare-section {
  background-color: #EFF5FC;
  padding: 90px 0;
}
@media(min-width:1200px){
  .bundle-compare-section .container{
  width: 1150px;
}
}

.compare-section-content > div {
  width: 50%;
}
.compare-section-content {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
}
.compare-content {
  font-size: 17px;
}

 .info-container {
    display: flex;
    flex-flow: row;
    border-radius: 30px;
}

.info-container .features-name {
  width: 50%;
  background: #29486B;
  border-radius: 30px 0 0 30px;
}
.info-container .features-name ul {
  padding: 0;
  margin: 0;
}
 .info-container .features-name ul li {
    list-style: none;
    padding: 15px 10px 15px 45px;
    line-height: 29px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.66);
    margin:0;
}
.aboutus-info .heading-part {display:flex;}
.aboutus-info .heading-part span{
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #232323;
  text-align: center;
  padding: 12px 0;
}
.aboutus-info .heading-part span:first-child{
  width:50%
}
.aboutus-info .heading-part span{
  width:25%
}
.info-container .features-value {
  width: 50%;
  display: flex;
  flex-flow: row;
  text-align:center;
  background: #fff;
  border-radius: 0 30px 30px 0;
}

.info-container .features-value .our {
  width: 50%;
  text-align:center;
}
.info-container .features-value .other {
  width: 50%;
  text-align:center;
}
.info-container .features-value  ul{
  padding: 0;
  margin: 0;
}
.info-container .features-value ul li{
  padding: 19px 5px;
  list-style: none;
  margin:0;
}

.info-container .features-value  ul li span {
  background: #4bae4f;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.info-container .features-value  ul li .icon-close-small{
  background:#3c3c3c;
}

.info-container .features-value ul li span svg {
  color: #fff;
  width: 12px;
  height: 12px;
  stroke: #fff;
  margin: 0;
} 
.info-container .features-value ul li span.icon-close-small svg {
  height: 9px;
  width: 9px;
  fill: #fff;
}
.info-container .features-value  ul li span svg.icon-close-small{
    width: 14px;
  height: 14px;
}

.info-container .features-value  ul li span svg.icon-close-small path {
  color: #fff;
  stroke: #fff;
  stroke-width:2px;
}


/* Benifit-section css */
#shopify-section-benefits-section {
  margin-bottom: 20px;
}
.section-title.title-v2 {
    font-size: 40px;
    margin-bottom: 18px;
    line-height: 45px;
}
.benifit_information .section-subtitle p{
  line-height:26px;
}
.benifits_section .benefits-theragel .image-container {
    position: relative;
    z-index: 2;
    margin-top: 25px;
}
.benifits_section .benefits-theragel .image-container:before {
    border: 1px dashed #26262661;
    border-radius: 50%;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    height: 300px;
    z-index: -1;
    margin: 50px auto;
}
.benifits_section .benefits-theragel .benefitsitem {
    display: inline-block;
    text-align: center;
    width: 40%;
    float: left;
    margin-bottom: 30px;
    clear: left;
}
.benifits_section .benefits-theragel .benefitsitem .benefits-img {
    display: inline-flex;
    vertical-align: middle;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #F47E37;
    border: 1px solid #777;
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.25);
}
.benifits_section .benefits-theragel .benefitsitem .benefits-title {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #232323;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}
.benifits_section .benefits-theragel .benefitsitem:first-child {
    clear: both;
    float: unset;
    margin: -30px auto 30px;
    display: block;
}
.benifits_section .benefits-theragel{
  width: 50%;
  display: inline-block;
  position: relative;
}
.benifits_section .benifit_right {
    width: 49%;
    display: inline-block;
    vertical-align: middle;
}
.benifits_section .benefits-theragel .benefitsitem:nth-child(2) {
    position: relative;
    top: -60px;
}
.benifits_section .benefits-theragel .benefitsitem:nth-child(3), .benifits_section .benefits-theragel .benefitsitem:last-child {
    clear: none;
    float: right;
}
.benifits_section .benefits-theragel .benefitsitem:nth-child(3) {
    position: relative;
    top: -60px;
}
.benifits_section .benefits-theragel .benefitsitem:nth-child(4) {
    position: relative;
    left: 50px;
    top: -50px;
    margin: 0;
}
.benifits_section .benefits-theragel .benefitsitem:last-child {
    position: relative;
    right: 50px;
    top: -50px;
    margin: 0;
}
.benifit_info_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.list_item_title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #29486b;
  border-bottom: 1px solid #29486b;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 20px;
}
.benifit_list_item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.benefits-center-img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
}
.swanwick-embedded-video.video-swanwick-video-v3 .thumbnail-overlay,
.swanwick-embedded-video.video-swanwick-video-v3{
  background-color: #ffffff;
}
.swanwick-embedded-video.video-swanwick-video-v3 .thumbnail-overlay:before,
.swanwick-embedded-video.video-swanwick-video-v3 .thumbnail-overlay:after{
  display: none;
}
.video-swanwick-video-v3 #videoThumbnail {
  padding-top: 0;
}
.benifit_list_item {
    margin-bottom: 15px;
}
.section-title {
    margin-bottom: 17px;
    line-height: 40px;
}
.bundlelist-content p {
    line-height: 26px;
}
.page-sports-landing-page #video-swanwick-video-v3 .section-title.title-v2 {
    margin-bottom: 13px;
}
.page-sports-landing-page .section-heading {
    margin-bottom: 25px;
}
.product-banner-inner .product-description p {
    line-height: 28px;
}
/*------------------------ service section -----------------*/
 .service-style .services-section {
	 text-align: center;
	 position: relative;
}
 .service-style .section-header {
	 margin-bottom: 20px;
}
 @media (max-width: 543px) {
	 .service-style .section-header {
		 margin-bottom: 0px;
	}
}
 .service-style .services {
	text-align: left;
    cursor: pointer;
    position: relative;
    padding: 25px 0;
    display: block;
    width: 25%;
}
 @media (max-width: 1500px) {
	 .service-style .services {
		 padding: 25px 0;
	}
}
 @media screen and (min-width:481px) and (max-width: 991px) {
	 .service-style .services:nth-child(4n+1), .service-style .services:nth-child(4n+2) {
		 margin-bottom: 30px;
	}
}
@media (max-width:991px) {
  .service-style .services:nth-child(2n+1){
    clear:left;
  }
}
 @media (max-width: 480px) {
	 .service-style .services {
		 margin-bottom: 30px;
		 width: 100%;
	}
	 .service-style .services:last-child {
		 margin-bottom: 0;
	}
}
 .service-style .services .service-img {
	 width: 50px;
	 height: 50px;
	 position: relative;
	 display: inline-block;
	 vertical-align: middle;
	 text-align: center;
}
 .service-style .services .service-block {
	 overflow: hidden;
	 text-align: left;
	 margin-left: 10px;
	 display: inline-block;
	 vertical-align: middle;
	 max-width: 65%;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 .service-style .services .service-block {
		 text-align: center;
		 display: block;
		 margin: 0;
		 margin-top: 10px;
		 max-width: 100%;
	}
}
 @media (max-width: 991px) {
	 .service-style .services .service-block {
		 margin-left: 10px;
		 max-width: 60%;
	}
}
 @media (max-width: 767px) {
	 .service-style .services .service-block {
		 max-width: 70%;
	}
}
 @media (max-width: 543px) {
	 .service-style .services .service-block {
       max-width: 100%;
       width: 100%;
       margin: 0;
       margin-top:5px;
       text-align: center;
	}
}
 @media (max-width: 480px) {
	 .service-style .services .service-block {
       width:70%;
       margin:0;
       margin-left:5px;
       text-align:left;
	}
}
 .service-style .services .service-block .service-title {
	 font-size: 16px;
	 font-weight: 500;
	 color: #ffffff;
}
 @media (max-width: 1300px) {
	 .service-style .services .service-block .service-title {
		 font-size: 15px;
	}
}
 .service-style .services .service-block .service-desc {
	 color: #ffffff;
	 font-size: 15px;
     line-height: 20px;
}
 
.service-style .services .service-block.fullservice{
	width:100%;
  	margin:0;
  	text-align:center;
}
.service-wrapper{
   background-color: #29486B; 
    margin: auto;
    text-align: center;
}
#services-swanwick-service-section {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: auto;
}	 


/* service-section */
.service-section .service-wrapper {
    background: transparent;
}
.service-section .services .service-block .service-desc {
    color: #232323;
    font-family: 'Montserrat';
    font-weight: 500;
    line-height: 25px;
}
.service-section .services {
    width: 33%;
    display: inline-block;
    vertical-align: middle;
    padding: 15px 0;
}
.service-section .section-heading {
    margin-bottom: 0;
}
.service-section .section-title {
    margin-bottom: 10px;
}
.service-section  .services .service-block {
    max-width: 55%;
}
.subtitle-v2, .subtitle-v2 p {
    font-size: 16px;
    color: #777;
    line-height: 26px;
}
@media(max-width:1199px){
  .service-section .services {
    width: 33%;
    text-align: center;
  }
  .service-style .services .service-img {
    display: block;
    margin: 0 auto;
}
.service-section .services .service-block {
    max-width: 60%;
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
    margin-inline: auto;
}
  .service-section.service-style .services:nth-child(4n+1), .service-section.service-style .services:nth-child(4n+2) {
    margin-bottom: 0;
}
    .service-section .section-heading {
    margin-bottom: 0;
    padding-inline: 20px;
}
  .service-section .service-wrapper {
    background: transparent;
    padding-inline: 20px;
}
}
@media(max-width:991px){
  .service-section .services .service-block {
    max-width: 80%;
  }
}
@media(max-width:768px){
  .service-section .section-heading {
    padding-inline: 0;
}
  .service-section .service-wrapper {
    padding-inline: 0;
}
  .service-section .services {
    width: 100%;
}
  .service-section .services .service-block {
    max-width: 100%;
}
  .section-title {
    font-size: 30px;
    line-height: 40px;
}
  .section-title {
    font-size: 26px;
    line-height: 35px;
}
}
/* custom-image-text */
.custom_image_text_one {
    padding: 55px 0;
}

.custom_image_text_one .main_title {
    font-family: Montserrat;
    font-size: 30px;
    text-align: center;
    color: #232323;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}
.custom_image_text_one .main_title:after {
    content: "";
    background: #F47E37;
    height: 4px;
    width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.custom_image_text_one .section_wrapper, .custom_image_text_two .section_wrapper{
    display: flex;
}
.title-inner {
    font-family: 'Montserrat';
    color: #fff;
    font-size: 25px;
    font-weight: 500;
}
.custom-text-title {
    clip-path: polygon(0 0,95% 0,100% 100%,0% 100%);
    background: #F47E37;
    padding: 20px 0;
    margin-bottom: 30px;
}
.left-part > * {
    padding-left: 20%;
    padding-right:30px;
}
.custom_image_text_one .description {
    
    max-width: 63%;
}
.content-details {
    display: flex;
    align-items: center;
}
.content-name {
    font-size: 20px;
    font-weight: 600;
    color: #F47E37;
    margin-bottom: 5px;
}
.content-designation {
    font-size: 16px;
    font-weight: 500;
    color: #777;
    line-height:26px;
}
.custom_image_text_one .content-designation {
  font-size:18px;
}
.content-name, .content-designation, .custom_image_text_one .description, .description{
  font-family: 'Montserrat';
}
.content-left {
    width: 50%;
}
.right-side {
    position: relative;
    z-index: 1;
}

.blue-overlay{
   background: #29486b;
}
.left-part{
    width: 58%;
}
.right-side{
    position: relative;
    z-index: 1;
    width: 42%;
}
.section_wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
}

.custom_image_text_two .content_image img {
    margin-right: 50px;
}
.custom-item .custom-text-title .description{
    font-size: 18px;
    color: #fff;
    line-height: 26px;
    font-weight: 600;
    max-width: 60%;
}
.content_image {
    margin-bottom: 30px;
}

.custom_image_text_two .custom-text-title {
    clip-path: none;
    left: 0;
    position: relative;
    width: calc(100% + 20px);
}
.custom_image_text_three .right-side img {
    position: relative;
}

.custom_image_text_three .content-designation {
    color: #232323;
    max-width: 80%;
    line-height: 24px;
}
.custom_image_text_three .content-details {
    margin-bottom: 25px;
}
.custom_image_text_three .custom-text-title {
    margin-bottom: 20px;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%);
}
.custom_image_text_one, .custom_image_text_two{
    padding-bottom: 65px;
}
 .custom_image_text_three {
     padding-bottom: 20px;
 }
.custom_image_text_three .right-side, .custom_image_text_three .left-part{
  width:50%;
}
.custom_image_text_two .custom-text-title, .custom_image_text_three .custom-text-title{
  padding-block:35px;
}
.description p {
    margin: 0;
}
.custom_image_text_four .left-part {
    width: 70%;
}
.custom_image_text_four .right-side {
    width: 30%;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
}
.custom_image_text_four .section_wrapper{
  align-items:center;
}
.custom_image_text_four .custom-text-title {
    clip-path: polygon(0 0, 100% 0%, 93% 100%, 0 100%);
    background: #274B77;
    padding-block: 45px;
}
.custom_image_text_four .custom-text-title .description {
    max-width: 75%;
}
.custom-item .custom-text-title .description p{
  line-height:26px;
}
.custom_image_text_four  .content-left {
    width: 70%;
}
.custom_image_text_four img {
    margin-bottom: 20px;
}
.custom_image_text_four{
  padding-bottom:50px;
}
.custom_image_text_five.custom-item .custom-text-title .description {
    max-width: 90%;
}
.custom_image_text_five .custom-text-title {
    margin-bottom: 40px;
    clip-path: polygon(0 0,100% 0%,100% 100%,15% 100%);
    min-height: 310px;
    display: flex;
    align-items: center;
}
.custom_image_text_five .left-part, .custom_image_text_five .right-side {
    width: 50%;
}
.custom_image_text_five .content-left {
    width: 70%;
}
.custom_image_text_five {
    padding-bottom: 130px;
}
.custom_image_text_five .section_wrapper {
    align-items: center;
}
.right-side img {
    width: 100%;
}
.custom_image_text_one .content_right {
    margin-left: 20px;
}
@media(max-width:1600px){
  .custom-text-title {
    margin-bottom: 20px;
}
  .custom_image_text_one .description {
    max-width: 70%;
}
  .custom_image_text_two .content_image img {
    margin-right: 30px;
}
  .content_image {
    margin-bottom: 10px;
}
  .custom_image_text_two .custom-text-title, .custom_image_text_three .custom-text-title {
    padding-block: 20px;
}
  .custom_image_text_three .content-details {
    margin-bottom: 15px;
}

}

@media(max-width:1400px){
    .content-left {
    width: 60%;
}
  .custom_image_text_four .content-left {
    width: 90%;
}
  .custom_image_text_five .content-left {
    width: 90%;
}
  .custom_image_text_five .custom-text-title {
    min-height: 250px;
}
  .right-side {
    width: 44%;
}
  .left-part {
    width: 56%;
}
  .content-left {
    width: 80%;
}
  .section_wrapper {
    align-items: center;
}
}

@media(max-width:1199px){
  .left-part>* {
    padding-left: 10%;
  }
  .custom_image_text_one .description {
    max-width: 100%;
}
  .content-name {
    font-size: 18px;
    margin-bottom:0;
}
  .custom_image_text_one .content-designation {
    font-size: 15px;
    line-height: 23px;
}
  .content_right img {
    height: 130px;
    width: 130px;
}
  .custom_image_text_two .content_image img {
    margin-right: 20px;
    height: 100px;
    width: 100px;
}
  .custom-item .custom-text-title .description {
    font-size: 16px;
    line-height: 26px;
    max-width: 80%;
}
  .content-designation {
    font-size: 15px;
    line-height: 24px;
}
  .custom-text-title {
    margin-bottom: 15px;
}
  .custom-item .custom-text-title .description {
    max-width: 90%;
}
  .custom_image_text_three .custom-text-title {
    margin-bottom: 10px;
}
  .content_image img {
    height: 100px;
    width: 100px;
}
  .custom_image_text_four .custom-text-title .description {
    max-width: 95%;
}
  .custom_image_text_five .custom-text-title {
    min-height: auto;
}
  .custom_image_text_five .custom-text-title {
    margin-bottom: 20px;
}
  .title-inner {
    font-size: 21px;
}
  .custom_image_text_five .right-side {
    width: 40%;
}
  .custom_image_text_five .left-part{
    width:60%;
  }
  .custom_image_text_five.custom-item .custom-text-title .description {
    max-width: 100%;
}
  .custom_image_text_five .custom-text-title {
    clip-path: polygon(0 0,100% 0%,100% 100%,7% 100%);
}
  .custom_image_text_five {
    padding-bottom: 80px;
}
  .custom_image_text_one, .custom_image_text_two {
    padding-bottom: 45px;
}
}

@media(max-width:991px){
  .left-part, .right-side {
    width: 100%;
}
  .left-part>* {
    padding-left: 0px;
    padding-right: 0px;
}
  .right-side {
    text-align: center;
    margin-top: 20px;
}
  .right-side img {
    width: auto;
    max-width: 100%;
}
  .left-part, .right-side {
    width: 100%;
    text-align: center;
}
  .content-details {
    flex-wrap: wrap;
    justify-content: center;
}
  .content-left {
    width: 100%;
}
  .custom_image_text_one .content_right {
    margin-left: 0;
    margin-top:20px;
}
  .custom_image_text_one .description {
    margin-bottom: 15px;
}
  .custom_image_text_two .custom-text-title {
    width: 100%;
}
  .custom-item .custom-text-title .description {
    max-width: 100%;
}
  .custom_image_text_three .right-side, .custom_image_text_three .left-part {
    width: 100%;
}
  .custom-item .custom-text-title .description {
    justify-content: center;
}
  .custom_image_text_three .content-designation {
    max-width: 100%;
}
  .custom_image_text_three .right-side, .custom_image_text_five .right-side {
    order: 2;
}
  .custom_image_text_four .left-part, .custom_image_text_four .right-side {
    width: 100%;
}
  .custom_image_text_five .left-part, .custom_image_text_five .right-side {
    width: 100%;
}
  .custom-text-title {
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%) !important;
}
  .custom-item {
    padding-inline: 20px;
}

  .custom_image_text_one .main_title {
    margin-bottom: 30px;
}
  .custom-item .custom-text-title .description, .custom_image_text_five.custom-item .custom-text-title .description {
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
}
    .custom-item {
    padding-bottom: 50px !important;
}
}


@media(max-width:767px){
  .custom_image_text_one .main_title {
    font-size: 20px;
}
  .title-inner {
    font-size: 17px;
}
  .custom-text-title {
    padding: 15px 0;
}
  .subtitle-v2, .subtitle-v2 p {
    font-size: 15px;
    line-height: 24px;
}
  .custom_image_text_one .description {
    margin-bottom: 10px;
}
  .content-name {
    font-size: 16px;
}
  .custom_image_text_one .content-designation {
    font-size: 14px;
}
  .custom_image_text_one .content_right {
    margin-top: 10px;
}
  .right-side {
    margin-top: 10px;
}
  .custom-item .custom-text-title .description {
    font-size: 15px;
}
  .custom-item .custom-text-title .description p{
    line-height:23px;
  }
  .content-designation {
    font-size: 14px;
    line-height: 23px;
}
  .custom-text-title {
    padding: 15px;
}
  .custom_image_text_five {
    padding-bottom: 50px;
}
  .custom_image_text_one .main_title:after {
      margin-top: 7px;
  }
}

@media(max-width:543px){
   .custom-item {
    padding-bottom: 30px !important;
}
.custom_image_text_four .content-left, .custom_image_text_five .content-left {
    width: 100%;
}
  .custom-text-title, .custom_image_text_four .custom-text-title, .custom_image_text_five .custom-text-title, .custom_image_text_three .custom-text-title {
    clip-path: none !important;
}
  .custom-item .custom-text-title .description, .custom_image_text_five.custom-item .custom-text-title .description {
    max-width: 100%;
}
  .custom_image_text_one {
    padding-block: 35px;
}
  .custom_image_text_two .custom-text-title {
    width: auto;
}
}

/* faq */
.faq_answer {
    display: none;
}
.faq_section_items.active .icon_plus, .faq_section_items .icon_minus{
    display: none;
}
.faq_section_items.active .icon_minus, .faq_section_items .icon_plus{
  display:flex;
}
.faq_section_items .summary__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.summary__title svg {
    height: 18px;
    width: 18px;
    text-align: center;
    justify-content:center;
}
.faq_section_items .faq-title {
    font-size: 18px;
    color: #232323;
}
.accordion__content p {
    font-size: 15px;
    color: #777;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: 5px;
}
.faq_section_items {
    border-bottom: 1px solid #E6E6E6;
    padding-block: 20px;
    padding-right: 30px;
}
.accordion__content {
    padding-right: 4rem;
}
 .section_faq .section-heading, .section_faq .section-title {
    margin-bottom: 20px;
}
.faq_section_items:first-child{
  padding-top:0;
}
.faq_section .container {
    margin: 0 auto;
    padding: 20px;
}
.faq_section_items .faq-title {
    padding-right: 1rem;
}
@media(max-width:768px){
  .accordion__content {
    padding-right: 0;
}
  .faq_section_items .faq-title {
    font-size: 16px;
    line-height: 25px;
}
  .faq_section_items {
    padding-block: 15px;
    padding-right: 10px;
}

  .accordion__content p {
    font-size: 14px;
    line-height: 23px;
}
  .summary__title svg {
    height: 14px;
    width: 14px;
}
}

/* product-banner */
.progress-content {
   margin-bottom: 10px;
}
.product-service .service-title{
  text-transform:capitalize;
}
.progress-content .quantity-value {
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    color: #232323;
}
.progress-content .quantity-value .variant_quantity {
    padding: 5px;
    color: #F47E37;
   animation: blink-animation 1s steps(5, start) infinite;
}
.progress-content #progress-bar {
    height: 12px;
    width: 90%;
    position: relative;
    border-radius: 10px;
    background: #e1e1e1;
    box-shadow: 1px 1px 2px #0003;
}

.product-info p {
    margin-bottom: 10px;
}
.progress-content #progress-bar > span {
     display: block;
    height: 100%;
    border-radius: 10px;
    background: -webkit-linear-gradient(left,#ff3d12 0%,#edd728 100%);
    position: relative;
    overflow: hidden;
}

.progress-space {
  margin-bottom: 10px;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
.product-banner-inner {
    display: flex;
    /* align-items: center; */
}
.product-banner-inner > * {
  width:50%;
}
.product-banner-inner .product-title {
    font-size: 35px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 17px;
}
.product-banner-inner .product-description {
    color: #232323;
    margin-bottom: 20px;
}
.product-service {
    display: inline-flex;
    align-items: center;
    margin-bottom: 23px;
}
.service-title {
    font-size: 16px;
    color: #232323;
    font-weight: 500;
    font-family: 'Montserrat';
}
.product-service>* {
    width: 50%;
    display: flex;
    align-items: center;
}
.service-item img{
  height:46px;
  width:46px;  
}
.service-desc {
    font-size: 15px;
    color: #666;
    line-height: 20px;
}
.service-info {
    margin-left: 15px;
}

.service-item:first-child {
    display: inline-flex;
    align-items: center;
    padding-right: 15px;
}
.service-offer {
    background: #232323;
    display: inline-flex;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 20px;
    border-radius: 20px;
    align-items: center;
    margin-bottom: 15px;
}
.service-offer span {
    padding-left: 10px;
}
.product-info {
    color: #232323;
}
.product-banner-inner .product-content {
    padding-left: 30px;
}
.banner-img img {
    max-width: 100%;
}
.sports-page-content > * {
    margin-bottom: 40px;
}
.sports-page-content .custom-item{
  margin-bottom:0;
}
.video-section  .swanwick-embedded-video .thumbnail-overlay {
    padding: 0;
   cursor:pointer;
}
.product-info p {
    line-height: 28px;
}
@media(max-width:991px){
  .product-banner-inner .product-content {
    padding-left: 20px;
}
  .product-service>* {
    width: 100%;
}
  .product-service {
    flex-wrap: wrap;
}
  .service-item:first-child {
    padding-right: 0;
    padding-bottom: 20px;
}
  .product-banner-inner .product-title {
    font-size: 30px;
}
  .custom-item {
    padding-inline: 20px !important;
    width: fit-content !important;
}
}
@media(max-width:768px){
  .product-banner-inner>* {
    width: 100%;
}
  .product-banner-inner {
    flex-wrap: wrap;
}
.product-banner-inner .product-content {
    padding-left: 0;
    text-align: center;
    margin-top: 10px;
}
  .service-item {
    flex-direction: column;
}
  .service-info {
    margin-left: 0;
    margin-top: 10px;
}
  .progress-content .quantity-value {
    justify-content: center;
}
.product-banner-inner .product-title {
    font-size: 23px;
    margin-bottom: 7px;
}
  .product-banner-inner .product-description p {
    font-size: 16px;
    line-height:26px;
}
  .service-item img {
    height: 40px;
    width: 40px;
}
  .service-offer {
    font-size: 12px;
    padding: 3px 10px;
    margin-bottom: 10px;
}
  .service-offer img {
    height: 18px;
    width: 18px;
}
  .service-offer span {
    padding-left: 5px;
}
  .product-info p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
}
  .progress-content .quantity-value {
    font-size: 16px;
}
  .progress-content #progress-bar {
    margin: 0 auto;
}
}

@media(max-width:479px){
  .page-sports-landing-page  .container {
    width: 330px;
}
}

@media(max-width:400px){
  .page-sports-landing-page  .container {
    width: 300px;
}
}

/* sports-footer */
.page-sports-landing-page #content_wrapper {
  overflow: hidden;
}
.footer-bottom-wrapper {
    width: 100%;
}
.page-sports-landing-page .shopify-section--footer {
    display: none;
}
.page-sports-landing-page .footer-template-section {
    display: none;
}
.footer-top {
    text-align: center;
   
}
.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 295px;
}
.footer-btn .page-shop-btn {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
}
#shopify-section-sports-footer{
  margin:0;
}
.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom-wrapper .copyright {
    color: #fff;
}
.footer-bottom-wrapper .footer-logo a {
    display: flex;
}
.footer-btn .page-shop-btn span {
    font-size: 15px;
}
.footer-bottom .container {
    padding: 16px 0;
}



@media(max-width:991px){
  .footer-bottom-wrapper {
      padding: 0 20px;
  }
    .footer-btn {
    min-height: 160px;
}
  .section-title.title-v2 {
    font-size: 30px;
}
  .benifit_info_wrapper {
    gap: 10px;
}
}



@media(max-width:768px){
  .footer-bottom-wrapper {
    flex-direction: column;
}
  .footer-logo{
     margin-bottom:5px;
  }

  .footer-logo img {
    max-width: 150px;
}
  .footer-bottom-wrapper .copyright {
    font-size: 14px;
}
}



/* swanwick image-text */
.banner-v3-sp .subtitle p {
    line-height: 23px;
}

@media(max-width:1199px){
 #shopify-section-swanwick-image-with-text-overlay-section-v3-sp.banner-v3-sp .headline {
    margin-bottom: 10px;
    line-height: 30px;
}
   #shopify-section-swanwick-image-with-text-overlay-section-v3-sp.banner-v3-sp .subtitle {
    margin-bottom: 30px;
}
}
@media only screen and (min-width: 481px) and (max-width: 1050px){
.swanwick-image-with-text-overlay-section-v2.banner-v3-sp .hsContent .container {
    padding-top: 10px;
    padding-bottom: 10px;
}
}


@media(max-width:798px){
  .homepage-hero-cta {
    display: flex;
    justify-content: center;
    width: auto;
}
}

@media(max-width:798px){
  .homepage-hero-cta {
    display: flex;
    justify-content: center;
}
  .homepage-hero-cta .action_button {
    width: auto !important;
}
}

@media(max-width:768px){
  #shopify-section-swanwick-image-with-text-overlay-section-v3-sp.banner-v3-sp .headline {
    margin-bottom: 5px;
    line-height: 23px;
}
  #shopify-section-swanwick-image-with-text-overlay-section-v3-sp.banner-v3-sp .subtitle {
    margin-bottom: 20px;
}
}

@media(max-width:543px){
  .swanwick-image-with-text-overlay-section-v2.banner-v3-sp .headline {
    font-size: 18px!important;
}
  .page-sports-landing-page .banner-v3-sp .hsContainer .action_button.page-btn, .banner-v3-sp .action_button.shop-btn {
    padding: 6px 22px;
    font-size: 13px;
}
  .swanwick-image-with-text-overlay-section-v2.banner-v3-sp .headline {
    font-size: 17px!important;
    line-height: 21px;
    margin-top: 0;
}
  #shopify-section-swanwick-image-with-text-overlay-section-v3-sp.banner-v3-sp .headline {
    line-height: 25px;
      margin-bottom:7px;
}
   #shopify-section-swanwick-image-with-text-overlay-section-v3-sp.banner-v3-sp .headline p {
    line-height: 25px;
}
}

@media(max-width:480px){
  .swanwick-image-with-text-overlay-section-v2.banner-v3-sp .hsContent {
    padding-bottom: 63%!important;
}
  .swanwick-image-with-text-overlay-section-v2.banner-v3-sp .hsContent .container.homepage-content-container {
    top: 50%;
    padding: 5% 0;
    left: 0;
    display: flex;
    align-items: center;
    transform: translatey(-50%);
}
  .banner-v3-sp .headline p{
      margin-bottom:0 !important;
  }
}


/* benifits_section */

@media(max-width:991px){
  .sports-page-content .container > * {
    padding: 0 20px;
}
.benifits_section .benefits-theragel {
    width: 60%;
}
  .benifits_section .benifit_right {
    width: 40%;
    display: inline-block;
    vertical-align: middle;
}
  .benifits_section .benefits-theragel .benefitsitem:nth-child(2), .benifits_section .benefits-theragel .benefitsitem:nth-child(3), .benifits_section .benefits-theragel .benefitsitem:nth-child(4), .benifits_section .benefits-theragel .benefitsitem:last-child {
    position: relative;
    top: -80px;
}

    .sports-page-content .section-subtitle p,  .sports-page-content .section-subtitle {
    line-height: 25px;
    font-size: 16px;
}
  .section-title.title-v2, .section-title {
    font-size: 30px;
    margin-bottom: 10px;
}
  .list_item_title {
    font-size: 17px;
    line-height: 24px;
}
  .benifit_list_item {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 5px;
    align-items: baseline;
}
.benifit_list_item img {
    height: 15px;
    width: 15px;
    top: 2px;
    position: relative;
}
  .sports-page-content .banner-v3-sp .container>* {
    padding: 0;
}
}


@media(max-width:768px){
  .benifits_section .benefits-theragel, .benifits_section .benifit_right {
    width: 100%;
    display:block;
}
  .benifit_info_wrapper {
    flex-direction: column;
}
  .benifits_section .benefits-theragel .benefitsitem .benefits-img {
    width: 60px;
    height: 60px;
}
  .benifits_section .benefits-theragel .benefitsitem .benefits-title {
    font-size: 12px;
    line-height: 19px;
    width: 90%;
}
.benifits_section .benefits-theragel .image-container:before {
    width: 260px;
    height: 260px;
}
  .benifits_section .benefits-theragel .benefitsitem:nth-child(2), .benifits_section .benefits-theragel .benefitsitem:nth-child(3), .benifits_section .benefits-theragel .benefitsitem:nth-child(4), .benifits_section .benefits-theragel .benefitsitem:last-child {
    position: relative;
    top: -50px;
}
  .benifit_info_wrapper {
    gap: 0;
}
.section-title.title-v2, .section-title {
    font-size: 23px;
    line-height: 31px;
}
  
}

@media(max-width:479px){
  .benifits_section .benefits-theragel .benefitsitem .benefits-title {
    font-size: 11px;
    line-height: 16px;
}
  .benefits-img img {
    height: 35px;
    width: 35px;
}
  .benifits_section .benefits-theragel .benefitsitem .benefits-img {
    width: 50px;
    height: 50px;
}
.benifits_section .benefits-theragel .image-container:before {
    width: 240px;
    height: 240px;
}
  .benifits_section .benefits-theragel .benefitsitem .benefits-title {
    margin: 0 auto;
}
  .benifits_section .benefits-theragel .benefitsitem:first-child {
    margin: -30px auto 20px;
}
  .benifits_section .benefits-theragel .benefitsitem:nth-child(2), .benifits_section .benefits-theragel .benefitsitem:nth-child(3), .benifits_section .benefits-theragel .benefitsitem:nth-child(4), .benifits_section .benefits-theragel .benefitsitem:last-child {
    top: -30px;
}
  .benifits_section .benefits-theragel .benefitsitem {
    width: 30%;
}
  .benifits_section .benefits-theragel .benefitsitem:nth-child(4) {
    left: 30px;
}
  .benifits_section .benefits-theragel .benefitsitem:last-child {
    right: 30px;
}
  .benifits_section .benefits-theragel .benefitsitem:nth-child(2) {
    left: -20px;
}
  .benifits_section .benefits-theragel .benefitsitem:nth-child(3) {
    right: -20px;
}
  .benifits_section .benefits-theragel .benefitsitem:first-child {
    top: 10px;
    position: relative;
}
}


/* sleep-bundle */
.section-right-content img {
    width: 100%;
}
@media(max-width:991px){
  .bundlelist-blocks {
    width: 90%;
}
  
}

@media(max-width:768px){
  .section-left-content, .section-right-content {
    width: 100%;
}
  .section-content {
    flex-direction: column;
}
  .left-section-title {
    text-align: center;
}
  .section-right-content{
      margin-top:20px;
  }
  .sports-page-content .container>* {
    padding: 0 10px;
}
  .bundlelist-blocks {
    width: 100%;
}
}

/* comparision */

@media(max-width:991px){
 .info-container .features-name ul li {
    padding: 15px 10px 15px 20px;
    font-size: 15px
}
  .compare-section-content {
    gap: 20px;
}
  .compare-content ul{
    margin-bottom:10px;
  }
  .aboutus-info .heading-part span {
    font-size: 16px;
}
  .compare-section-content>div {
    width: 100%;
}
.sports-page-content #video-swanwick-video-v3 .container>* {
    padding: 0;
}
}
@media(max-width:768px){
  .compare-section-content {
    gap: 0;
    flex-direction: column;
  }
    .bundle-compare-section {
      padding: 30px 0;
  }
    .compare-content {
      font-size: 16px;
      line-height: 25px;
  }
    .info-container .features-name ul li {
      padding: 15px 7px 15px 12px;
      font-size: 13px;
  }
  .info-container .features-name {
    border-radius: 20px 0 0 20px;
}
    .aboutus-info .heading-part span {
      font-size: 14px;
  }
  .info-container .features-value {
    border-radius: 0 20px 20px 0;
}
}


/* service-style */

 .sports-page-content  .section-margin-top {
    margin-top: 0;
} 
@media(max-width:1199px){
 .sports-page-content  .service-style .services:not(.service-section .services ) {
    padding: 25px 10px;
}
 .sports-page-content .service-style .services {
    text-align: center;
}
}

@media(max-width:991px){
 .sports-page-content  .service-style .services .service-block {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
    margin-top: 5px;
}
 .sports-page-content  #services-swanwick-service-section {
    margin-bottom: 0;
    align-items: center;
}
 .sports-page-content .service-style .services:nth-child(4n+1), .sports-page-content .service-style .services:nth-child(4n+2) {
    margin-bottom: 0;
}
  .sports-page-content #services-swanwick-service-section {
    width: 100%;
}
  .sports-page-content>* {
    margin-bottom: 20px;
}
}

@media(max-width:768px){
  .sports-page-content  .service-style .services {
    width: 50%;
}
 .sports-page-content   #services-swanwick-service-section {
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
   padding:20px 0;
}
  .sports-page-content  .service-style .services:not(.service-section .services) {
    padding: 15px 0px;
}
  .sports-page-content  #services-swanwick-service-section .services .service-block {
    padding: 0 5px;
}
}

@media(max-width:543px){
  .sports-page-content .service-style .services {
    width: 100%;
      margin-bottom:0;
}
  
}


/* header */
.sports-page-content #shopify-section-header-alt-v2 {
    margin-bottom: 0;
}
.page-sports-landing-page .header{
  display:none !important;
}
.header-alt-v2 .header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo a {
    display: flex;
    align-items: center;
}
.header-alt-v2 .container {
    margin: 0 auto;
    padding: 17px 0;
}
.page-sports-landing-page.promo_banner--active .global-wrapper {
    margin-top: 0;
}
.benifit_info_wrapper{
  align-items: center;
}

@media(max-width:768px){
  .parallax-banner-v3-sp {
    margin-bottom: 20px;
  }
  .sports-page-content>* {
    margin-bottom: 10px;
}
  .parallax-banner-v3-sp {
    margin-bottom: 10px;
}
  #shopify-section-benefits-section {
    margin-bottom: 0px;
}
  .sports-page-content #shopify-section-swanwick-compare-section, .sports-page-content  #shopify-section-swanwick-video-v3 {
    margin-bottom: 20px;
}
}

@media(max-width:798px){
 .page-sports-landing-page #header {
    display:none !importat;
  }
  .page-sports-landing-page #header {
    display: none !important;
}
  .page-sports-landing-page.promo_banner--active .header-section {
    padding-top: 0;
}
  .page-sports-landing-page .header_logo img {
    width: auto;
    max-width: 150px;
    max-height: 30px;
}
.page-sports-landing-page .header-btn {
    font-size: 11px;
    line-height: 20px;
    padding: 8px 12px;
}
  .header-alt-v2 {
    position: fixed;
    z-index: 9;
    width: 100%;
}
  .banner-v3-sp {
    padding-top: 69px;
}
}

@media(max-width:480px){
  .page-sports-landing-page .header_logo img {
    max-width: 130px;
    image-rendering: -webkit-optimize-contrast;
}
}

/* slider */
.page-sports-landing-page .hsContainer .action_button.page-btn:hover, .action_button.shop-btn:hover {
    background: #f47e37;
}
.banner-v3-sp .headline p {
    margin: 0;
}
.banner-v3-sp .headline {
    margin-bottom: 15px;
    line-height:52px;
}
.banner-v3-sp .subtitle {
    margin-bottom: 35px;
}
.banner-v3-sp .headline p {
    line-height: 52px;
}
.parallax-banner.parallax-banner-v2 .featured_hero_desktop {
  display: block;
}

/* missing-css */

#shopify-section-1556703303153 .headline {
	 color: #494c50 !important;
}
 @media screen and (max-width: 480px) {
	 #shopify-section-1556703303153 .headline {
		 color: #fff !important;
	}
}
 #shopify-section-1556703303153, .product-classic-v2, .product-flight-club-bundle, .index, .index-ab-b, .index-ab-c, .index-ab-d {
	 color: #000;
}
 #shopify-section-1556703303153 .as-seen-on-icons, .product-classic-v2 .as-seen-on-icons, .product-flight-club-bundle .as-seen-on-icons, .index .as-seen-on-icons, .index-ab-b .as-seen-on-icons, .index-ab-c .as-seen-on-icons, .index-ab-d .as-seen-on-icons {
	 display: block;
}
 #shopify-section-1556703303153 h1, .product-classic-v2 h1, .product-flight-club-bundle h1, .index h1, .index-ab-b h1, .index-ab-c h1, .index-ab-d h1, #shopify-section-1556703303153 .h1, .product-classic-v2 .h1, .product-flight-club-bundle .h1, .index .h1, .index-ab-b .h1, .index-ab-c .h1, .index-ab-d .h1, #shopify-section-1556703303153 h1.home, .product-classic-v2 h1.home, .product-flight-club-bundle h1.home, .index h1.home, .index-ab-b h1.home, .index-ab-c h1.home, .index-ab-d h1.home, #shopify-section-1556703303153 h2.title, .product-classic-v2 h2.title, .product-flight-club-bundle h2.title, .index h2.title, .index-ab-b h2.title, .index-ab-c h2.title, .index-ab-d h2.title, #shopify-section-1556703303153 h2.title a, .product-classic-v2 h2.title a, .product-flight-club-bundle h2.title a, .index h2.title a, .collection h2.title a, .index-ab-b h2.title a, .index-ab-c h2.title a, .index-ab-d h2.title a, #shopify-section-1556703303153 .collection_title, .product-classic-v2 .collection_title, .product-flight-club-bundle .collection_title, .index .collection_title, .index-ab-b .collection_title, .index-ab-c .collection_title, .index-ab-d .collection_title, #shopify-section-1556703303153 h3.title, .product-classic-v2 h3.title, .product-flight-club-bundle h3.title, .index h3.title, .index-ab-b h3.title, .index-ab-c h3.title, .index-ab-d h3.title {
	 color: #000;
}
 #shopify-section-1556703303153 .featured_products_v3 .thumbnail a, .product-classic-v2 .featured_products_v3 .thumbnail a, .product-flight-club-bundle .featured_products_v3 .thumbnail a, .index .featured_products_v3 .thumbnail a, .index-ab-b .featured_products_v3 .thumbnail a, .index-ab-c .featured_products_v3 .thumbnail a, .index-ab-d .featured_products_v3 .thumbnail a, #shopify-section-1556703303153 .featured_products_v3 .thumbnail .price, .product-classic-v2 .featured_products_v3 .thumbnail .price, .product-flight-club-bundle .featured_products_v3 .thumbnail .price, .index .featured_products_v3 .thumbnail .price, .index-ab-b .featured_products_v3 .thumbnail .price, .index-ab-c .featured_products_v3 .thumbnail .price, .index-ab-d .featured_products_v3 .thumbnail .price {
	 color: #000;
}
 #shopify-section-1556703303153 .featured_products_v3 .thumbnail a:hover, .product-classic-v2 .featured_products_v3 .thumbnail a:hover, .product-flight-club-bundle .featured_products_v3 .thumbnail a:hover, .index .featured_products_v3 .thumbnail a:hover, .index-ab-b .featured_products_v3 .thumbnail a:hover, .index-ab-c .featured_products_v3 .thumbnail a:hover, .index-ab-d .featured_products_v3 .thumbnail a:hover, #shopify-section-1556703303153 .featured_products_v3 .thumbnail .price:hover, .product-classic-v2 .featured_products_v3 .thumbnail .price:hover, .product-flight-club-bundle .featured_products_v3 .thumbnail .price:hover, .index .featured_products_v3 .thumbnail .price:hover, .index-ab-b .featured_products_v3 .thumbnail .price:hover, .index-ab-c .featured_products_v3 .thumbnail .price:hover, .index-ab-d .featured_products_v3 .thumbnail .price:hover, #shopify-section-1556703303153 .featured_products_v3 .thumbnail a:hover span, .product-classic-v2 .featured_products_v3 .thumbnail a:hover span, .product-flight-club-bundle .featured_products_v3 .thumbnail a:hover span, .index .featured_products_v3 .thumbnail a:hover span, .index-ab-b .featured_products_v3 .thumbnail a:hover span, .index-ab-c .featured_products_v3 .thumbnail a:hover span, .index-ab-d .featured_products_v3 .thumbnail a:hover span, #shopify-section-1556703303153 .featured_products_v3 .thumbnail .price:hover span, .product-classic-v2 .featured_products_v3 .thumbnail .price:hover span, .product-flight-club-bundle .featured_products_v3 .thumbnail .price:hover span, .index .featured_products_v3 .thumbnail .price:hover span, .index-ab-b .featured_products_v3 .thumbnail .price:hover span, .index-ab-c .featured_products_v3 .thumbnail .price:hover span, .index-ab-d .featured_products_v3 .thumbnail .price:hover span {
	 color: #db883e;
}
 .swanwick-image-with-text-overlay-section-v2 .hsContainer {
	 max-height: 730px !important;
}
 .swanwick-image-with-text-overlay-section-v2 .hsContent {
	 background: transparent;
}
 @media only screen and (min-width: 481px) and (max-width: 1050px) {
	 .swanwick-image-with-text-overlay-section-v2 .hsContent .container {
		 padding-top: 40px;
	}
}
 @media only screen and (max-width: 480px) {
	 .swanwick-image-with-text-overlay-section-v2 .hsContent {
		 padding-bottom: 106.67% !important;
		 padding-top: 0 !important;
		 padding-left: 0;
		 padding-right: 0;
		 display: block;
		 background: none;
	}
	 .swanwick-image-with-text-overlay-section-v2 .hsContent .container {
		 width: calc(100% - 40px);
		 margin-left: 20px;
		 margin-right: 20px;
	}
	 .swanwick-image-with-text-overlay-section-v2 .hsContent .container.homepage-content-container {
		 position: absolute;
		 bottom: auto;
		 top: 0px;
		 padding: 5% 0;
	}
}
 .swanwick-image-with-text-overlay-section-v2 .headline {
	 font-size: 40px !important;
	 letter-spacing: 1px;
	 text-transform: capitalize;
	 font-weight: 700;
	 line-height: 47px;
}
 @media only screen and (max-width: 1500px) {
	 .swanwick-image-with-text-overlay-section-v2 .headline {
		 font-size: 33px !important;
	}
}
 @media only screen and (max-width: 1199px) {
	 .swanwick-image-with-text-overlay-section-v2 .headline {
		 font-size: 26px !important;
		 line-height: 37px;
	}
}
 @media only screen and (max-width: 480px) {
	 .swanwick-image-with-text-overlay-section-v2 .headline {
		 font-size: 26px !important;
		 line-height: 30px;
		 margin-top: 15px;
		 color: #fff;
	}
}
 @media only screen and (max-width: 380px) {
	 .swanwick-image-with-text-overlay-section-v2 .headline {
		 font-size: 24px !important;
	}
}
 .swanwick-image-with-text-overlay-section-v2 .subtitle p {
	 font-size: 20px;
	 text-transform: initial;
	 font-weight: 500 !important;
}
 @media only screen and (max-width: 480px) {
	 .swanwick-image-with-text-overlay-section-v2 .subtitle p {
		 font-size: 15px !important;
		 color: #fff;
		 margin-bottom: 12px;
	}
}
 .swanwick-image-with-text-overlay-section-v2 .cta-and-sold-icons-row {
	 justify-content: normal;
}
 .swanwick-image-with-text-overlay-section-v2 .cta-and-sold-icons-row .homepage-hero-cta {
	 display: flex;
	 -webkit-display: flex;
	 margin: auto 0;
}
 .swanwick-image-with-text-overlay-section-v2 .cta-and-sold-icons-row .swanwick-pairs-sold {
	 margin-right: 20px;
}
.hsContent {
    max-width: 100%;
    margin: -150px auto 0;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    float: none;
    width: 100%;
    z-index: 2;
    position: relative;
}
.bcg {
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    background-color: #fff;
}
.page-sports-landing-page .parallax-banner .new-container {
    justify-content: right;
}
body.page-sports-landing-page, .page-sports-landing-page .header-btn, .page-sports-landing-page .headline, .banner-v3-sp .subtitle p, .page-sports-landing-page .hsContainer .action_button.page-btn, .action_button.shop-btn, .font-family {
    font-family: Lato;
}
 @media only screen and (max-width: 1200px) {
	 .swanwick-image-with-text-overlay-section-v2 .cta-and-sold-icons-row .swanwick-pairs-sold {
		 display: none;
	}
}
 .swanwick-image-with-text-overlay-section-v2 .cta-and-sold-icons-row .swanwick-pairs-sold img {
	 width: 185px;
}
 .as-seen-on-icons {
	 display: block;
}
 .as-seen-on-icons:not(#shopify-snippet-swanwick-featured-media) {
	 position: absolute;
	 bottom: 30px;
	 left: 50%;
	 transform: translateX(-50%);
}
 @media screen and (max-width: 768px) {
	 .as-seen-on-icons:not(#shopify-snippet-swanwick-featured-media) {
		 display: none;
	}
}
 .as-seen-on-icons .flex-container div {
	 padding-right: 25px;
}
 .as-seen-on-icons .flex-container div:last-child {
	 padding-right: 0;
}
 .as-seen-on-icons .flex-container div img {
	 width: 100%;
	 height: auto;
}
 .parallax-banner .featured_hero_desktop {
	 display: block;
}
 @media only screen and (max-width: 798px) {
	 .parallax-banner .featured_hero_desktop {
		 display: none;
	}
}
 .parallax-banner .featured_hero_mobile {
	 display: none;
}
 @media only screen and (max-width: 798px) {
	 .parallax-banner .featured_hero_mobile {
		 display: block;
	}
	 .parallax-banner .featured_hero_mobile img.hsContainer__image {
		 position: absolute;
		 display: block !important;
	}
}
 
/* header */

.page-sports-landing-page .shopify-section--header {
    display: none;
}
.sports-page-content #shopify-section-header-alt-v2 {
    padding-top: 0 !important;
}
.sports-page-content  .header-alt-v2 .header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sports-page-content  .container {
    justify-content: center;
}
.header-alt-v2 .header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.faq_section_wrapper {
    width: 100%;
}
.section_faq .section-heading, .section_faq .section-title {
    width: 100%;
}

/* Sports landing page end */

/* homepage herobanner start*/




.index.shopify-section--image-with-text-overlay .banner__text {
    text-align: left;
    justify-content: flex-start;
    top: 15%;
    max-width: 1500px;
    width: 100%;
}
.index.shopify-section--image-with-text-overlay .banner__inner-text {
    max-width: 32%;
    padding: 20px 10px;
}
.index.shopify-section--image-with-text-overlay .banner__inner-text .headline {
    color: #fff !important;
      font-size: 40px;
      line-height: 55px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.index.shopify-section--image-with-text-overlay  .banner__inner-text .subtitle p{
    font-size: 21px;
    text-transform: capitalize;
    font-weight: 500!important;
    color: #fff !important;
}
.index.shopify-section--image-with-text-overlay  .banner__text .action_button {
    pointer-events: all;
    background-color: #ffa92a;
    color: #282421;
    padding: 5px 60px;
    border-radius: 5px;
    box-shadow: 0 4px 4px #00000040;
}

.hero-mobile-quote {
    background-color: #f9f9f9;
    display: flex;
    gap:20px;
    align-items: center;
    padding: 20px;
}
.hero-mobile-quote img {
    display: block;
    margin: 0 auto;
    max-width: 150px;
    height: auto;
}
.hero-mobile-quote .hero-mobile-quote__text {
    color: #000;
    text-align: left;
    font-size: 12px;
    font-weight: 500;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px){
  .index.shopify-section--image-with-text-overlay .banner__text {
    max-width: 1199px;
}
}

@media only screen and (min-width: 960px) and (max-width: 1050px){
  .index.shopify-section--image-with-text-overlay .banner__text {
    max-width: 960px;
}
}

@media only screen and (min-width: 768px) and (max-width: 960px){
  .index.shopify-section--image-with-text-overlay .banner__text {
    max-width: 768px;
}
}

@media (max-width:1199px){
   .index.shopify-section--image-with-text-overlay .banner__inner-text .headline {
      font-size: 26px!important;
      line-height: 37px !important;
  } 
    .index.shopify-section--image-with-text-overlay .banner__text .subtitle p {
    font-size: 16px;
  }
}
@media (max-width:1050px){
.index.shopify-section--image-with-text-overlay .banner__inner-text {
    max-width: 43%;
}
}
@media (max-width: 991px) {
  .index.shopify-section--image-with-text-overlay .banner__text .headline {
    font-size: 30px;
    line-height: 40px;
  }
  .index.shopify-section--image-with-text-overlay .banner__text .subtitle p {
    font-size: 15px;
  }
}
@media (max-width: 543px) {
  .index.shopify-section--image-with-text-overlay .banner__text .headline {
    font-size: 24px;
    line-height: 34px;
  }
  .index.shopify-section--image-with-text-overlay .banner__text .subtitle p {
    font-size: 14px;
  }
}
@media (max-width:798px){
  .index.shopify-section--image-with-text-overlay .banner__text{
    text-align: center;
    justify-content: center;
    top: 0;
  }
  .index .banner__text.text-align--left .headline,
  .index .banner__text.text-align--left .subtitle{
    text-align: center;
  }
  .index.shopify-section--image-with-text-overlay .banner__inner-text {
    max-width: calc(100% - 150px);
  }
}
@media (max-width:480px){
  .index.shopify-section--image-with-text-overlay .banner__inner-text {
    max-width: calc(100% - 50px);
  }
  .index.shopify-section--image-with-text-overlay .banner__wrap{
    /* height: 500px !important;  */
    height: unset !important;
 }
  .index.shopify-section--image-with-text-overlay .banner__wrap .banner{
    top: 0;
    bottom:auto;
 }
  .index.shopify-section--image-with-text-overlay .banner__text .subtitle p {
    font-size: 13px;
  }
}  
@media (max-width:410px){
  .index.shopify-section--image-with-text-overlay .banner__wrap{
    /* height: 450px !important;  */
    height: unset !important;
 }
}
@media (max-width:380px){
  .index.shopify-section--image-with-text-overlay .banner__inner-text {
    max-width: calc(100% - 50px);
  }

}
/* featured product */
.product--btn .action_button {
    color: #fff!important;
    padding: 5px 20px;
    border-radius: 5px;
    margin-top: 13px;
}
@media (max-width:543px){
  .product--btn .action_button {
    padding: 5px 5px;
  }
}
.product_ribbon {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #29486b;
    text-align: center;
    height: 25px;
    line-height: 25px;
    text-transform: uppercase;
    color: #fff;
    font-size: smaller;
    z-index: 1;
}
/* css changes */
.page-sports-landing-page .header-btn:hover, .feature_image .header .nav a:hover{
  background-color: unset;
}
.nav ul li .cart-button span{
  position: absolute;
  top: -10px;
  left: 13px;
}
.header div.container {
  padding-top: 12px !important;
  padding-bottom: 12px !important; 
}

.header div.dropdown__wrapper .one-sixth{
    width: 210px;
}

.header div.dropdown__wrapper .five-sixths{
      width: calc(100% - 250px);
}

/****** collection page faq *******/


.faq-element .faq-accordion div.title {
  text-align: left;
  margin-bottom: 18px;
  font-size: 22px; 
}
.faq-element .faq-accordion .block__faq_accordion .faq-heading, .faq-element .faq-accordion .block__faq_accordion .faq-heading-alt {
  font-size: 16px;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  line-height: 35px;
}
.faq-element .faq-accordion .block__faq_accordion .faq-content {
  font-size: 15px; 
}
.faq-element .faq-accordion .block__faq_accordion .faq-content ul.list {
  padding-left: 18px; 
}
.faq-element .faq-accordion .block__faq_accordion .faq-content ul.list li {
  margin-bottom: 0; 
}

.block__faq_title {
  padding-top: 0 !important;
  padding-bottom: 0 !important; 
}
.block__faq_title h2 {
  margin-bottom: 20px;
  font-weight: 500; 
}

.block__faq_accordion {
  padding-top: 0 !important;
  padding-bottom: 0 !important; 
}
.block__faq_accordion .faq-heading, .block__faq_accordion .faq-heading-alt {
  position: relative;
  text-transform: initial;
  padding-right: 30px;
  cursor: pointer;
  padding-top: 15px !important;
  padding-bottom: 15px  !important;
  margin-bottom: 0;
  border-top: 1px solid #e4e4e4;
  font-weight: 500; 
}
  .block__faq_accordion .faq-heading .accordion-icon, .block__faq_accordion .faq-heading-alt .accordion-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0; 
  }
.block__faq_accordion .faq-content {
  margin-top: 15px; 
}

/********** cart page css **********/
.cart #cart_form > .container{
      justify-content: end;
}
.cart #cart_form h4.title {
	height: 32px;
    white-space: nowrap;
}
@media (max-width: 480px) {
	.cart #cart_form h4.title {
		height: 1.5em;
	}
}
.cart #cart_form .product-title {
	color: #4d4d4f !important;
	font-weight: 600;
}
.cart #cart_form .remove_item_container {
	left: 0;
}
.cart #cart_form .remove_item_container .remove_item {
	text-align: right;
}
.cart #cart_form .remove_item_container .remove_item .icon-close {
	font-size: 25px;
}
.cart #cart_form .cart_items{
  overflow: hidden;
  width: 100%;
}
.cart #cart_form .cart_items p.meta {
	margin-bottom: 0px;
}
@media only screen and (max-width: 768px) {
	.cart #cart_form .cart_items {
		position: relative;
        width: 420px;
        margin: 0 auto;
	}
	.cart #cart_form .cart_items .remove_item_container {
		position: absolute;
	}
	.cart #cart_form .cart_items .remove_item_container .remove_item {
		text-align: left;
	}
    .cart #cart_form .cart_items .is-flex{
      flex-direction: column;
      align-items: center;
      margin-bottom: 15px;
    }
    .cart #cart_form .payment-checkout{
         width: 420px;
        margin: 0 auto;
    } 
}
@media only screen and (max-width: 480px) {
	.cart #cart_form .cart_items {
        width: 300px;
	}
  .cart #cart_form .payment-checkout{
         width: 300px;
    } 
  }
.cart #cart_form .quantity.quantity_dropdown,
.cart #cart_form .quantity.quantity_input {
	display: block;
	width: 100%;
}
.cart #cart_form .update-btn {
	margin-top: 10px;
    display:none;
}
.cart .additional-checkout-buttons {
	flex-wrap: wrap;
	justify-content: space-between;
   display:none;
}
.cart .additional-checkout-buttons ._3TUeZPsTWjDxakSmeDcA4D {
	flex-basis: calc(50% - 10px) !important;
	margin-bottom: 10px !important;
	height: auto !important;
}
.cart .additional-checkout-buttons .additional-checkout-button {
	flex-basis: 48% !important;
	margin: 0 !important;
	padding: 0 !important;
	width: initial !important;
	max-width: initial !important;
	min-width: 50px !important;
}
.cart .additional-checkout-buttons .additional-checkout-button--apple-pay {
	flex-basis: 100% !important;
	margin-bottom: 10px !important;
}
.cart .additional-checkout-buttons .paypal-button {
	min-width: 100px !important;
}
@media only screen and (max-width: 768px) {
	.cart .cart_page_image {
		max-width: 150px;
		float: none;
		margin: 15px auto;
	}
	.cart .title {
		display: none;
	}
	.cart .column-subtotal {
		display: none;
	}
}
.cart .continue_shopping a {
	color: #4d4d4f !important;
}
.cart #checkout {
	background: #2d626d;
	color: #fff;
	font-size: larger;
	letter-spacing: 1px;
	font-weight: 600;
}
.cart #checkout:hover {
	background: #29486B;
}
.cart-alert-message {
    width: 45%;
    line-height: 1.2;
    font-size: 15px;
    background-color: #fff3cd;
    border: 1px solid #ffe69c;
    padding: 1rem 1rem;
    border-radius: 7px;
    margin-right: auto;
}

.cart-alert-message p:last-child {
    margin: 0;
}

.cart-alert-message a {
    color: #363636;
    display: inline-block;
}

.cart-alert-message p {
    line-height: 1.5;
}

@media only screen and (max-width: 798px) {
	.cart .action_button.add_to_cart {
		margin-bottom: 0 !important;
	}
    .cart-alert-message {
    width: 390px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 480px) {
    .cart-alert-message {
        width: 270px;
    }
}
.cart .collection_nav h1.center {
	margin-top: 20px;
}
.cart #countDownTimer {
	text-align: center;
	font-size: smaller;
}
.cart #countDownTimer p {
	margin-bottom: 5px;
}
.cart #countDownTimer .timer-strip {
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #ffe9a4;
	border-radius: 2px;
	border: 2px solid #e6ac00;
}
.cart #countDownTimer .timer-strip .time {
	font-weight: bold;
}

.cartItemDisabled + select {
  display: none !important; }

.cartItemEnabled {
  display: none !important; }

  .ufe-widget{padding:0 20px;}

/* collection page css  */

.collection.collection-accessories .shopify-section--featured-collection,
.collection.collection-other-swannies-products .shopify-section--featured-collection,
.collection.collection-aromatherapy .shopify-section--featured-collection{
    display:none;
}

@media only screen and (min-width: 790px){
.shopify-section--collection-template .container .one-third.column {
    width: calc(33.3333333333% - 20px);
}
  }
@media only screen and (max-width: 798px){
.shopify-section--collection-template .container .medium-down--one-half {
    width: calc(50% - 20px);
}
}

/************* cod red page css *************/
body .mm-slideout {
  z-index: auto; }

body .mm-slideout .promo_banner {
  z-index: 10001; }
body.theme-aff {
  background-color: #fff;
  font-family: Montserrat;
}
body.theme-aff .promo_banner {
  background-color: #000;
  color: #fff;
  text-transform: none;
  padding-top: 10px;
  padding-bottom: 10px;
  letter-spacing: 1px;
  font-size: 12px;
  left: 0;
  right: 0;
  text-align: center;
}
body.theme-aff .promo_banner p.dr-axe-promo-banner {
  font-size: 16px;
}
body.theme-aff .promo_banner p{
  margin-bottom:0;
}
@media screen and (max-width: 429px) {
  body.theme-aff .promo_banner p.dr-axe-promo-banner {
    font-size: 11px;
  }
}
body.theme-aff .promo_banner ~ .header {
  top: 41.6px !important;
}
body.theme-aff .header div.container {
    padding-top: 20px!important;
    padding-bottom: 20px!important;
}
body.theme-aff .header {
  background-color: #fff;
  box-shadow: 0 -5px 10px 0px #333;
}
body.theme-aff .header .nav {
    display: inline;
}
body.theme-aff .gmiheaderlogo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.page-code-red-rx .gmiheaderlogo .header-account{
  display:none;
}
body.theme-aff .header .nav a, body.theme-aff .header .nav a:visited, body.theme-aff .header .nav a:active {
  color: #000;
}
body.theme-aff .header .nav a span.icon-search {
  color: #000;
}
body.theme-aff .header .nav a span.icon-search:hover {
  color: #30AABC;
}
body.theme-aff .header .nav .cart a,body.theme-aff .header .nav .cart a span{
    color: #000;
}
body.theme-aff .header .nav .cart a:hover,body.theme-aff .header .nav .cart a:hover span{
   color: #30aabc !important;
}
body.theme-aff .header .nav a svg {
  fill: #000 !important;
}
body.theme-aff .header .nav a:hover svg {
  fill: #30AABC !important;
}
body.theme-aff .footer {
  background-color: #000;
  padding:45px 0;
  color:#fff;
}
body.theme-aff .footer p{
    color:#fff;
}
body.theme-aff .footer .section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
body.theme-aff .footer .section .sixteen {
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  body.theme-aff .footer .section .sixteen {
    text-align: center;
  }
}
body.theme-aff .footer .section .sixteen .footer-logo img {
  width: 150px;
}
@media screen and (max-width: 768px) {
  body.theme-aff .footer .section .sixteen .footer-logo img {
    margin: 0 auto;
  }
}
body.theme-aff .footer .section .eight {
  text-align: left;
}
@media screen and (max-width: 768px) {
  body.theme-aff .footer .section .eight {
    text-align: center !important;
    width:100%;
  }
}
body.theme-aff .footer .section .eight .footer_custom-text {
  margin-bottom: 0;
}
body.theme-aff .footer .section .eight .footer_custom-text p{
  font-size:13px;
}
body.theme-aff .footer .section .eight .footer_submenu {
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  body.theme-aff .footer .section .eight .footer_submenu {
    text-align: center;
  }
}
body.theme-aff .footer .section .eight .footer_submenu li:first-child {
  padding-left: 0;
}
body.theme-aff .footer .section .eight .footer_submenu li{
    margin-bottom: 0;
    padding: 0 7.5px;
    display: inline-block;
}
body.theme-aff .footer .section .eight .footer_submenu li a {
   color: #fff;
}
body.theme-aff .footer .section .eight .footer_submenu li a:hover {
  color: #ffd64f;
}
body.theme-aff .footer .section .eight.text-right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  body.theme-aff .footer .section .eight.text-right {
    text-align: center;
  }
  body.theme-aff .footer .section .eight.text-right p.credits {
    margin-top:15px;
  }
}
body.theme-aff .footer .section .eight.text-right p {
  margin-bottom: 0;
}
body.theme-aff .footer .section .eight.text-right p.credits {
color: #fff;
}
body.theme-aff .footer .section .eight.text-right a {
color: #fff;
}
body.theme-aff .footer .section .eight.text-right a:hover {
  color: #ffd64f;
}

@media (min-width: 799px){
body.theme-aff .search-form{
  padding-top: 170px!important;
}
}
.page-code-red-rx .aff-desktop-image img,
.page-code-red-rx .aff-mobile-image img{
  border-radius: 35px!important;
}
@media (max-width: 768px){
  .page-code-red-rx img.aff-signature {
      display: block!important;
      margin: 0 auto!important;
  }
}
.page-code-red-rx .gmiheaderlogo .promoafflogo{
  background: #232323;
  padding: 5px;
}
.page-code-red-rx .header-logo-combo {
    display: flex;
    align-items: center;
    width:100%;
      justify-content: space-between;
}
.page-code-red-rx .header div.container.header-rx-padding {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
body.theme-aff.page-code-red-rx .product_image {
    text-align: center;
    max-width: 200px!important;
    margin: 0 auto;
}
body.theme-aff.page-code-red-rx .aff-shop-favorites .image__container {
    padding-bottom: 100%;
    height: 0;
}
body.theme-aff.page-code-red-rx .aff-shop-favorites .image__container img.lazyloaded{
  width: 100%;
  transform: unset;
  position: unset;
}
body.theme-aff.page-code-red-rx .aff-shop-favorites .info .title {
    font-weight: 700;
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
}
/* @media (min-width: 769px){
  body.theme-aff.page-code-red-rx .products .four.columns:nth-child(4n+1) {
      clear: both;
      display: block;
  }
} */
@media (min-width: 799px){
  body.theme-aff.page-code-red-rx .products .columns.four:hover {
    box-shadow: 0 0px 0px 0 rgba(0,0,0,0.2), 0 0px 20px 0 rgba(0,0,0,0.19) !important;
    border-radius: 5px;
  }
}
body.theme-aff.page-code-red-rx .aff-shop-favorites h2.title {
    display: block;
    position: relative;
    padding-top: 4px !important;
    font-weight: 400;
    text-transform: inherit;
}
body.theme-aff.page-code-red-rx #affFavorites h2.title:before{
  display: none;
}
@media (max-width: 480px){
  body.theme-aff.page-code-red-rx .aff-shop-favorites h2.title{
    font-size: 18px;
  }
}
body.theme-aff.page-code-red-rx #affFavorites{
  text-align: center;
}
body.theme-aff.page-code-red-rx #affFavorites .products{ 
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
body.theme-aff.page-code-red-rx .products .one-fourth.columns {
    display: inline-block;
    float: unset;
    vertical-align: top;
}

@media (max-width: 768px){
  body.theme-aff.page-code-red-rx .products .one-fourth.columns {
    margin-left: 0;
  }
}
.shop_fullrange {
  text-align: center;
  margin-bottom: 50px; }

.shop_fullrange a {
  width: 500px; }

@media (max-width: 768px) {
  .shop_fullrange a {
    width: unset; } }
.featurestextimaget {
  width: 100%; }

body.theme-aff .main.content.main-wrapper{
  padding-top:150px;
}
@media (max-width: 798px) {
  body.theme-aff .main.content.main-wrapper{
    padding-top:40px;
  }
}
body.theme-aff .aff-hero-text {
  padding-top: 30px;
  justify-content: center;
}
body.theme-aff .aff-hero-text .offset-by-one{
   padding-left: 65px;
}
@media  (min-width: 960px) and (max-width: 1050px) {
  body.theme-aff .aff-hero-text .offset-by-one{
   padding-left: 60px;
}
}
@media  (min-width: 768px) and (max-width: 960px) {
  body.theme-aff .aff-hero-text .offset-by-one{
   padding-left: 48px;
}
}
@media (max-width:767px) {
  body.theme-aff .aff-hero-text .offset-by-one{
   padding-left: 0;
}
}
body.theme-aff .aff-hero-text .aff-hero-text__hero img {
  width: 100%;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
body.theme-aff .aff-hero-text .aff-hero-text__text img {
  width: 45%;
  min-width: 150px;
  max-width: 320px;
  margin-right: 0;
  margin-left: auto;
  display: block;
}
body.theme-aff .aff-hero-text .aff-hero-text__text h1 {
  font-weight: 900;
  text-transform: none;
  text-align: left;
  color: #000;
  position: relative;
  padding-top: 95px;
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 42px;
}
body.theme-aff .aff-hero-text .aff-hero-text__text h1:before {
  content: "";
  width: 3px;
  height: 65px;
  background-color: #30AABC;
  position: absolute;
  left: 0;
  top: 0;
}
body.theme-aff .aff-hero-text .aff-hero-text__text h1 sup {
  font-size: 25px;
}
body.theme-aff .aff-hero-text .aff-hero-text__text p {
  color: #000;
}
body.theme-aff .aff-hero-text .aff-hero-text__text .action_button {
  margin-top: 43px;
  width: 100%;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 18px;
}
body.theme-aff .aff-audio-transcript {
  padding-top: 50px;
  padding-bottom: 30px;
}
body.theme-aff .aff-audio-transcript video {
  max-width: 320px;
  width: 90%;
  margin: 0 auto;
}

body.theme-aff .aff-shop-favorites .image__container {
  padding-bottom: 30%;
}
body.theme-aff .aff-shop-favorites .image__container img.lazyloaded {
  width: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.theme-aff .aff-shop-favorites h2.title {
  display: inline-block;
  position: relative;
  padding-top: 95px;
  font-weight: 700;
  text-transform: capitalize;
}
body.theme-aff .aff-shop-favorites h2.title:before {
  content: "";
  width: 3px;
  height: 65px;
  background-color: #30AABC;
  position: absolute;
  left: 50%;
  top: 0px;
}
body.theme-aff .aff-shop-favorites .aff-promo-text {
  background: #000;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  padding: 0px;
  color: #fff;
}
body.theme-aff .aff-shop-favorites .aff-promo-text p {
  padding: 5px;
  font-size: 14px;
}
@media screen and (max-width: 479px) {
  body.theme-aff .aff-shop-favorites .aff-promo-text p {
    font-size: 11px;
  }
}
body.theme-aff .aff-shop-favorites .aff-spacing {
  margin-bottom: 80px;
}
body.theme-aff .aff-shop-favorites .price {
  display: inline-block;
}
body.theme-aff .aff-shop-favorites form {
  margin-bottom: 100px;
}

body.theme-aff video{
      display: block;
    width: 100%;
    height: auto;
}
body.theme-aff .aff-media-slider {
    margin: 60px 0;
}
@media screen and (max-width: 1024px) {
  body.theme-aff .aff-media-slider {
    margin: 40px 0;
  }
}


body.theme-aff .aff-media-slider .media-slider {
  box-sizing: content-box;
  display: none;
}
body.theme-aff .aff-media-slider .media-slider.slick-initialized {
  display: block !important;
}
body.theme-aff .aff-media-slider .media-slider .slick-track {
  display: flex;
}
body.theme-aff .aff-media-slider .media-slider .slick-arrow{display:none !important;}
body.theme-aff .aff-media-slider .media-slider .slick-track .media--item {
  margin: auto;
  outline: 0;
  flex-direction: row;
  display: flex;
  -webkit-display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  body.theme-aff .aff-media-slider .media-slider .slick-track .media--item {
    flex-direction: column;
  }
}
body.theme-aff .aff-media-slider .media-slider .slick-track .media--item .media--logo {
  flex-basis: 50%;
  width: 50%;
  display: flex;
  -webkit-display: flex;
}
@media screen and (max-width: 768px) {
  body.theme-aff .aff-media-slider .media-slider .slick-track .media--item .media--logo {
    width: calc(100% - 20px);
    flex-basis: calc(100% - 20px);
    margin: 0 auto;
  }
}
body.theme-aff .aff-media-slider .media-slider .slick-track .media--item .media--logo img {
  margin: auto;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  body.theme-aff .aff-media-slider .media-slider .slick-track .media--item .media--logo img {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 400px;
  }
}
body.theme-aff .aff-media-slider .media-slider .slick-track .media--item .media--quote {
  flex-basis: 50%;
  width: 50%;
  display: flex;
  -webkit-display: flex;
}
@media screen and (max-width: 768px) {
  body.theme-aff .aff-media-slider .media-slider .slick-track .media--item .media--quote {
    width: calc(100% - 20px);
    flex-basis: calc(100% - 20px);
    margin: 0 auto;
  }
}
body.theme-aff .aff-media-slider .media-slider .slick-track .media--item .media--quote p {
  margin: auto;
  font-style: italic;
  font-size: 23px;
}
@media screen and (max-width: 768px) {
  body.theme-aff .aff-media-slider .media-slider .slick-track .media--item .media--quote p {
    margin-top: 30px;
    font-size: 16px;
  }
}
body.theme-aff .aff-media-slider .media-slider .slick-dots {
  bottom: -60px;
}
body.theme-aff .aff-media-slider .media-slider .slick-dots li {
  margin: 0;
}
body.theme-aff .aff-media-slider .media-slider .slick-dots li button:before {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  body.theme-aff .aff-gold-standard .section {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
}
body.theme-aff .aff-gold-standard .section .aff-gold-standard-content {
  width: 40%;
}
@media screen and (max-width: 1400px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content {
    transform-origin: left;
    transform: scale(0.9);
    width: 47%;
  }
}
@media screen and (max-width: 1112px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content {
    transform: scale(0.8);
    width: 53%;
  }
}
@media screen and (max-width: 800px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content {
    transform: scale(0.7);
    width: 63%;
  }
}
@media screen and (max-width: 768px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content {
    transform: none;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-headings {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    width: 80%;
  }
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-headings h3 {
    font-size: 32px;
  }
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-headings h2 {
    font-size: 50px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-headings {
    top: 35px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-headings h3 {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 429px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-headings h3 {
    font-size: 22px !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-headings h2 {
    font-size: 30px !important;
    margin-top: 0;
  }
}
body.theme-aff .aff-gold-standard .section .aff-gold-standard-content div.aff-gold-standard-text {
  width: 100%;
}
body.theme-aff .aff-gold-standard .section .aff-gold-standard-content div.aff-gold-standard-text p {
  font-size: 16px;
  line-height: 1.5em;
  margin-top: 15px;
}
@media screen and (max-width: 480px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content div.aff-gold-standard-text p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content div.aff-gold-standard-text {
    max-width: 80%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15%;
  }
}
@media screen and (max-width: 429px) {
  body.theme-aff .aff-gold-standard .section .aff-gold-standard-content div.aff-gold-standard-text {
    bottom: 20%;
  }
}
.aff-reviews-container{
   overflow: hidden;
  margin:20px 0;
}
.aff-reviews-container h3 {
  font-weight: 900;
  text-transform: unset;
  font-size: 30px;
  max-width: 485px;
  margin: 40px auto;
  text-align: center;
  line-height: 1.3;
}
.aff-reviews-container h3 {
  position: relative;
  padding-top: 95px;
}
.aff-reviews-container h3:before {
  content: "";
  width: 3px;
  height: 65px;
  background-color: #30AABC;
  position: absolute;
  left: 50%;
  top: 0;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review {
  display: flex;
  padding: 20px;
  gap:20px;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review:first-child {
  padding: 0 20px 20px 20px;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-author-image {
  flex-basis: 20%;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-author-image img {
  width: 160px;
  height: auto;
  padding-right: 20px;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review {
  flex-basis: 80%;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-title {
  line-height: 1;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: nowrap;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-title .aff-review-author {
  margin-right: 16px;
  color: #5778ba;
  font-weight: 600;
  font-size: 20px;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-title .aff-review-ratings {
  color: #fed13a;
  font-size: 21px;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-description {
  max-width: 720px;
}
.aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-description p {
  line-height: 1.5;
}
@media (max-width: 768px) {
  .aff-reviews-container .aff-customer-reviews .aff-customer-review {
    padding: 10px 25px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review:first-child {
    padding: 0 25px 10px 25px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-author-image img {
    width: 100px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-title .aff-review-author {
    margin-right: 16px;
    font-size: 17px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-description p {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .aff-reviews-container .aff-customer-reviews .aff-customer-review {
    padding-right: 15px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-author-image img {
    width: 75px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-title {
    flex-direction: column;
  }
}
@media (max-width: 429px) {
  .aff-reviews-container h3 {
    font-size: 23px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review {
    padding-right: 15px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-author-image img {
    padding: 0 15px 0 0;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-title .aff-review-author {
    font-size: 11px;
  }
  .aff-reviews-container .aff-customer-reviews .aff-customer-review .aff-review .aff-review-description p {
    font-size: 11px;
  }
}

.aff-money-back-container{
  margin: 20px 0;
}
.aff-money-back-container .aff-money-back-content {
  display: flex;
  padding: 0 20px;
}
.aff-money-back-container .aff-money-back-content .aff-money-back-logo {
  flex-basis: 30%;
  text-align: right;
}
.aff-money-back-container .aff-money-back-content .aff-money-back-logo img {
  width: 230px;
  padding-right: 10px;
}
.aff-money-back-container .aff-money-back-content .aff-money-back-description {
  flex-basis: 70%;
  margin: auto 0;
}
.aff-money-back-container .aff-money-back-content .aff-money-back-description h3 {
  color: #080808;
  font-weight: 900;
  font-size: 38px;
  text-transform: unset;
  line-height: 1.5;
  max-width: 480px;
  text-align: right;
  margin: 0 auto 0 40px;
}
.aff-money-back-container .aff-money-back-content .aff-money-back-description p {
  line-height: 1.5;
  color: #0d0d0d;
  font-weight: 600;
  max-width: 480px;
  text-align: right;
  margin: 0 auto 0 40px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .aff-money-back-container .aff-money-back-content {
    flex-direction: column;
  }
  .aff-money-back-container .aff-money-back-content .aff-money-back-logo {
    flex-basis: 100%;
    text-align: center;
  }
  .aff-money-back-container .aff-money-back-content .aff-money-back-logo img {
    width: 140px;
    padding-right: 0;
  }
  .aff-money-back-container .aff-money-back-content .aff-money-back-description {
    flex-basis: 100%;
    text-align: center;
  }
  .aff-money-back-container .aff-money-back-content .aff-money-back-description h3 {
    max-width: unset;
    text-align: center;
    font-size: 30px;
    margin: 0;
  }
  .aff-money-back-container .aff-money-back-content .aff-money-back-description p {
    max-width: unset;
    text-align: center;
    font-size: 19px;
    margin: 0;
  }
}
@media (max-width: 479px) {
  .aff-money-back-container .aff-money-back-content .aff-money-back-logo img {
    width: 100px;
  }
  .aff-money-back-container .aff-money-back-content .aff-money-back-description h3 {
    font-size: 22px;
  }
  .aff-money-back-container .aff-money-back-content .aff-money-back-description p {
    font-size: 13px;
  }
}
.aff-money-back-shop-button {
  text-align: center;
}
.aff-money-back-shop-button .aff-action_button {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 25px;
  padding: 15px 30px;
  margin: 10px 0;
  min-width: 300px;
}
@media (max-width: 479px) {
  .aff-money-back-shop-button .aff-action_button {
    font-size: 13px !important;
    max-width: 300px;
    text-transform: capitalize;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 20px !important;
  }
}
@media (max-width: 960px) {
  .aff-money-back-shop-button {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .aff-money-back-shop-button .aff-action_button {
    width: 100%;
    font-size: 18px;
    padding: 10px 30px;
  }
}
.aff-gold-standard {
  position: relative;
}
.aff-gold-standard img.aff-the-gold-standard-of-sleep-desktop {
  width: 100%;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  z-index: -1;
}
.aff-gold-standard img.aff-the-gold-standard-of-sleep-mobile {
  display: none;
}
.aff-gold-standard .section {
  position: absolute;
  z-index: 2;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-vl {
  border-left: 3px solid #5abfba;
  height: 65px;
  margin-bottom: 35px;
}
.aff-gold-standard .section .aff-gold-standard-content h3 {
  color: #c58c0e;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}
.aff-gold-standard .section .aff-gold-standard-content h2 {
  color: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  font-size: 30px;
  text-transform: none;
}
.aff-gold-standard .section .aff-gold-standard-content p {
  color: #ffffff;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.1;
  padding-top: 10px;
}
.aff-gold-standard .section .aff-gold-standard-content div.aff-gold-standard-author p {
  margin: 0px;
  padding: 15x 0px 0px 0px;
  font-size: 14px;
}
@media (max-width: 960px) {
  .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-vl {
    display: none;
  }
}
@media (max-width: 768px) {
  .aff-gold-standard img.aff-the-gold-standard-of-sleep-desktop {
    display: none;
  }
  .aff-gold-standard img.aff-the-gold-standard-of-sleep-mobile {
    display: block;
    width: 100%;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    z-index: -1;
  }
  .aff-gold-standard .section .aff-gold-standard-content .aff-gold-standard-vl {
    display: none;
  }
  .aff-gold-standard .section .aff-gold-standard-content h3 {
    max-width: 235px;
    text-align: center;
    margin: 0 auto;
  }
  .aff-gold-standard .section .aff-gold-standard-content h2 {
    text-align: center;
    margin: 0 auto;
  }
  .aff-gold-standard .section .aff-gold-standard-content p {
    text-align: center;
    margin: 0 auto;
  }
}
.page-code-red .aff-desktop-image img, .page-code-red .aff-mobile-image img {
  border-radius: 35px !important;
}
@media screen and (max-width: 768px) {
  .page-code-red img.aff-signature {
    display: block !important;
    margin: 0 auto !important;
  }
}
.theme-aff .swell-tab {
  display: none !important;
}
.theme-aff #header a.mobile_logo {
  pointer-events: none;
}
.theme-aff .aff-shop-favorites form#product_form_2438011650127, .theme-aff .aff-shop-favorites form#product_form_2438001983567, .theme-aff .aff-shop-favorites form#product_form_4809207808079, .theme-aff .aff-shop-favorites form#product_form_8660182662 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .theme-aff .aff-shop-favorites form#product_form_2438011650127, .theme-aff .aff-shop-favorites form#product_form_2438001983567, .theme-aff .aff-shop-favorites form#product_form_4809207808079, .theme-aff .aff-shop-favorites form#product_form_8660182662 {
    margin-bottom: 100px;
  }
}
.theme-aff .aff-shop-all {
  padding-bottom: 55px;
}
.theme-aff .aff-shop-all .aff-shop-all-button {
  font-weight: bold;
  font-size: 22px;
  padding: 10px 30px;
  margin: 10px 0;
  min-width: 300px;
}
@media (max-width: 479px) {
  .theme-aff .aff-shop-all .aff-shop-all-button {
    font-size: 16px;
    min-width: 250px;
  }
}
.theme-aff #shopify-section-header-aff .header .logo a {
  /*           pointer-events: none; */
}
@media (max-width: 768px) {
  .theme-aff .aff-shop-favorites .image__container img {
    position: absolute;
  }
}
.aff-hero-text.container .aff-mobile-image {
  display: none;
}
.aff-hero-text.container .aff-signature-dr-axe-mobile {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .aff-hero-text.container .aff-signature-dr-axe-mobile {
    margin: unset !important;
    padding-bottom: 20px;
    display: block !important;
  }
}
.aff-hero-text.container .aff-desktop-image img {
  max-height: 595px;
}
@media screen and (max-width: 991px) {
  .aff-hero-text.container .aff-desktop-image img {
    max-height: none;
  }
}
@media screen and (max-width: 768px) {
  .aff-hero-text.container .aff-desktop-image {
    display: none;
  }
  .aff-hero-text.container .aff-hero-text-container img.aff-signature {
    display: none;
  }
  .aff-hero-text.container .aff-hero-text-container .aff-action_button {
    margin-top: 10px !important;
    margin-bottom: 40px !important;
  }
  .aff-hero-text.container .aff-hero-text-container .aff-mobile-image {
    margin-top: 25px;
    display: block !important;
  }
  .aff-hero-text.container .aff-hero-text-container h1.aff-title {
    font-size: 30px;
  }
  .aff-hero-text.container .aff-hero-text-container p {
    font-size: 13.5px;
    font-weight: 500;
  }
  .aff-hero-text.container .aff-mobile-image {
    display: block;
  }
}
@media (max-width: 479px) {
  .aff-hero-text.container .aff-hero-text-container .aff-action_button {
    font-size: 13px !important;
    max-width: 300px;
    text-transform: capitalize;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 20px !important;
  }
  .aff-hero-text.container .aff-hero-text-container .aff-mobile-image {
    display: block !important;
  }
  .aff-hero-text.container .aff-hero-text-container h1.aff-title {
    font-size: 20px;
    line-height: 1.5;
  }
  .aff-hero-text.container .aff-hero-text-container h1.aff-title sup {
    font-size: 18px;
  }
  .aff-hero-text.container .aff-hero-text-container p {
    font-size: 12px;
    line-height: 1.5;
  }
}
.aff-audio-transcript video {
  border-radius: 30px;
}
@media (max-width: 479px) {
  .promo_banner .promo_banner--aff p {
    font-size: 7px;
  }
  .aff-hero-text .aff-hero-text__text h1 {
    padding-top: 45px !important;
  }
  .aff-hero-text .aff-hero-text__text h1:before {
    height: 33px !important;
  }
  .aff-shop-favorites h2.title {
    padding-top: 45px !important;
  }
  .aff-shop-favorites h2.title:before {
    height: 33px !important;
  }
  .aff-reviews h3 {
    padding-top: 45px !important;
  }
  .aff-reviews h3:before {
    height: 33px !important;
  }
}
.dr-axe-quote {
  font-size: 22px !important;
  text-align: justify;
}
.aff-transcript-alt-text {
  padding-top: 50px !important;
  padding-bottom: 0px !important;
}
.aff-transcript-alt-text div {
  text-align: justify;
}
.aff-transcript-alt-text div h2.title {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  text-transform: inherit;
}
@media screen and (max-width: 768px) {
  .aff-transcript-alt-text {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .aff-transcript-alt-images {
    padding: 0px !important;
  }
}
.aff-transcript-alt-images div .transcript-alt-images {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .aff-transcript-alt-images div .transcript-alt-images {
    flex-direction: column;
    align-items: center;
  }
}
.aff-transcript-alt-images div .transcript-alt-images img {
  max-width: 300px;
}
.aff-transcript-alt-images div .transcript-alt-images img:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .aff-transcript-alt-images div .transcript-alt-images img:first-child {
    margin-right: 0px;
    margin-bottom: 35px;
  }
}

.product_main_price_block{
  display: flex;
    flex-direction: column;
}
.product_main_price_block .modal_price{
  order:1;
}
.product_main_price_block .from-price{
    order:2;
}
.product_main_price_block square-placement {
    order:3;
    margin: 5px 0;
}
.product_main_price_block shopify-payment-terms{
    order:4;
    font-size: 14px;
}

/* .product_section .product_form .shopify-product-form{
  display:block !important;
}   */

/************** collection page banner *************/
.collection-banner-block{
  display:flex;
}
.collection-banner-block.onlyimage{
  display:block;
}
.collection-banner-block.onlydescription{
  display:block;
}
.collection-banner-block div{
    box-sizing: border-box;
}
.collection-banner-block .collection-text,
.collection-banner-block .collection-banner{
  width:50%;
  position:relative;
}
.collection-banner-block.onlyimage .collection-banner{
  width:100%;
}
.collection-banner-block.onlydescription .collection-text {
  width:100%;
}
.collection-banner-block.onlydescription .collection-text .collection_description{
    padding: 5%;
}
.collection-banner-block .collection-text{
  padding: 10% 5%;
  background-color: #2d626d;
}
.collection-banner-block .collection-text *{
color:#fff;
}
.collection-banner-block .collection-text .collection_title{
  font-size: 40px;
  text-transform: unset;
  display: block;
  padding: 0;
  text-align: left;
  line-height: 44px;
  margin-bottom:10px;
}
.collection-banner-block .collection-text .collection_description p{
  font-size: 16px;
  line-height:24px;
} 
.collection-banner-block .collection-text .collection_description h1,
.collection-banner-block .collection-text .collection_description .h1{
  font-size: 34px;
  text-transform: capitalize;
  display: block;
  padding: 0;
  text-align: left;
  margin-bottom:10px;
  line-height: 1.3;
}
.collection-banner-block .collection-text .collection_description h2,
.collection-banner-block .collection-text .collection_description .h2{
  font-size: 28px;
  text-transform: capitalize;
  display: block;
  padding: 0;
  text-align: left;
  margin-bottom:10px;
  line-height: 1.3;
}
.collection-banner-block .collection-text .collection_description h3,
.collection-banner-block .collection-text .collection_description .h3{
  font-size: 24px;
  text-transform: unset;
  display: block;
  padding: 0;
  text-align: left;
  margin-bottom:10px;
  line-height: 1.3;
}
.collection-banner-block .collection-text .collection_description h4,
.collection-banner-block .collection-text .collection_description .h4{
  font-size: 22px;
  text-transform: unset;
  display: block;
  padding: 0;
  text-align: left;
  margin-bottom:10px;
  line-height: 1.3;
}
.collection-banner-block .collection-text .collection_description h5,
.collection-banner-block .collection-text .collection_description .h5{
  font-size: 20px;
  text-transform: unset;
  display: block;
  padding: 0;
  text-align: left;
  line-height: 24px;
  margin-bottom:10px;
  line-height: 1.3;
}
.collection-banner-block .collection-text .collection_description h6,
.collection-banner-block .collection-text .collection_description .h6{
  font-size: 18px;
  text-transform: unset;
  display: block;
  padding: 0;
  text-align: left;
  line-height: 22px;
  margin-bottom:10px;
  line-height: 1.3;
} 
.collection-banner-block .collection-banner img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.collection-banner-block.onlyimage .collection-banner img{
  position: unset;
}

@media screen and (max-width: 1199px) {
.collection-banner-block .collection-text .collection_title{
  font-size: 30px;
}
}
@media screen and (max-width: 798px) {
  .collection-banner-block{
    flex-direction: column-reverse;
   }
  .collection-banner-block .collection-text,
  .collection-banner-block .collection-banner{
    width:100%;
  }
  .collection-banner-block .collection-banner .hsContainer{
    padding-bottom:35%;
  }
  .collection-banner-block.onlyimage .collection-banner .hsContainer{
  padding-bottom:0;
  }
  .collection-banner-block .collection-text {
    padding: 40px 20px;
  }
  .collection-banner-block .collection-text .collection_description h1,
  .collection-banner-block .collection-text .collection_description .h1{
    font-size: 30px;
  }
  .collection-banner-block .collection-text .collection_description h2,
  .collection-banner-block .collection-text .collection_description .h2{
    font-size: 24px;
  }
  .collection-banner-block .collection-text .collection_description h3,
  .collection-banner-block .collection-text .collection_description .h3{
    font-size: 22px;
  }
  .collection-banner-block .collection-text .collection_description h4,
  .collection-banner-block .collection-text .collection_description .h4{
    font-size: 20px;
  }
  .collection-banner-block .collection-text .collection_description h5,
  .collection-banner-block .collection-text .collection_description .h5{
    font-size: 18px;
  }
  .collection-banner-block .collection-text .collection_description h6,
  .collection-banner-block .collection-text .collection_description .h6{
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .collection-banner-block .collection-text .collection_title{
    font-size: 24px;
  }
  .collection-banner-block .collection-text .collection_description{
    font-size: 15px;
  } 
  .collection-banner-block .collection-text .collection_description h1,
  .collection-banner-block .collection-text .collection_description .h1{
    font-size: 26px;
  }
  .collection-banner-block .collection-text .collection_description h2,
  .collection-banner-block .collection-text .collection_description .h2{
    font-size: 22px;
  }
  .collection-banner-block .collection-text .collection_description h3,
  .collection-banner-block .collection-text .collection_description .h3{
    font-size: 20px;
  }
}

.collection-all .collection-banner-block .collection-text .collection_description h1{
  display:none;
}
/* .blog_list-items{
    margin: 0;
  }
.collection-all .blog_list-items{
    margin: 0;
    display: flex;
    flex-direction: column;
}
.collection-all .blog_list-items li:nth-child(1){
 order:2;
}    
.collection-all .blog_list-items li:nth-child(2){
 order:1;
}   
.collection-all .blog_list-items li:nth-child(3){
 order:3;
}    
.collection-all .blog_list-items li:nth-child(4){
 order:4;
} 
.collection-all .blog_list-items li:nth-child(5){
 order:5;
}    
.collection-all .blog_list-items li:nth-child(6){
 order:6;
}    */
/* custom-product-section */
.tab_block {
  width: 100%;
  padding: 25px 5px 40px;
  background: #f5f5f5;
}
.tab_block .collection_title {
  margin-bottom: 10px;
}
.tab_block .tab_items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.custom_product_grid {
  padding-top: 40px;
}
.custom_product_grid .section_title_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.custom_product_grid .section_title_block h2.title {
  margin: 0;
  padding: 0;
  color: #000000;
  text-align: left;
}
.custom_product_grid .section_title_block .button {
  line-height: 30px;
}
.section_divider {
  height: 3px;
  width: 100%;
  background: #2d626d;
}
@media screen and (max-width: 575px) {
  .custom_product_grid {
    padding-top: 0;
  }
  .custom_product_grid .section_title_block .button {
    line-height: 15px;
    font-size: 12px;
    font-weight: normal;
    padding: 8px 10px;
    min-width: 80px;
  }
}

/** collection page **/
.collection_description {
  padding: 30px 30px 30px 30%;
}
.collection-banner-block .collection-text{
  padding : 0;
}
.collection-banner-block .collection-text p,
.collection-banner-block .collection-text li{
  margin-bottom: 0;
  font-family: Montserrat!important;
  font-size: 16px;
  font-weight: 400;
}
.collection-banner-block .collection-text ul{
  margin-bottom: 0;
}
@media (max-width: 1549px){
  .collection_description {
     padding: 30px 30px 30px 20%;
  }
}
@media (max-width: 1200px){
  .collection-banner-block .collection-text p, .collection-banner-block .collection-text li {
    font-size: 15px;
  }
  .collection_description {
    padding: 30px;
  }
}
@media (max-width: 798px){
  .collection_description {
      padding: 20px;
  }
}

.cbb-also-bought-product-compare-at-price{
  font-weight: 500 !important;
  color:#000 !important;
}
.cbb-also-bought-sale-tag{
   color:#fff !important;
}

.b2b-customer-button .b2b-ajax-cart{
  line-height: initial;
  min-height: 44px;
  margin-bottom: 0;
  width: 100%;
}

.page-unsubscribe .one-whole.column.page.page-title,
.page-unsubscribe .footer .newsletter-section {
  display:none;
}


[bss-b2b-cart-item-key], [bss-b2b-product-id], [bss-b2b-variant-id], [bss-b2b-cart-item-key], [bss-b2b-cart-total-price], [bss-b2b-cart-total-discount], [data-cart-item-regular-price], [bss-b2b-ajax-cart-subtotal], [data-cart-subtotal]{
 visibility:visible !important;
  display: block !important;
}

.shopify-section--featured-product .product_name.title{
    font-weight: 700;
    line-height: 1.3em;
  font-size:26px;
}
.shopify-section--featured-product .product_name.title a{
  font-size:26px;
}
.shopify-section--featured-product .sticky-cart{display:none !important;}
@media (max-width: 798px){
  .shopify-section--featured-product .product-gallery__image .image__container{
    padding-bottom:100% !important;
  }
}
@media (max-width:480px){
  .shopify-section--featured-product .product_name.title a{
    font-size:20px;
  }
  .cbb-also-bought-product-compare-at-price{
   display:block;
  }
}


/************************  404 Page css  *********************/
  .empty-page{
      padding:10px 0;
    }  
.empty-page .banner-image .image-container a{
    display: block;
    position: relative;
    overflow: hidden;
}
  .empty-page .banner-image .image-container a img{
    width:100%;
  }
  .empty-page .empty-page-content .home-title{
    font-size: 100px;
    margin: 15px 0;
    font-weight: bold;
    line-height: 1;
    color: #232323;
    text-align:left;
  } 
 .empty-page .empty-page-content .sub-title {
   font-size: 30px;
   margin-bottom: 20px;
   font-weight: bold;
   line-height: 1.2;
   color: #232323;
 }
 .empty-page .empty-page-content .description {
   font-size: 14px;
   margin-bottom: 30px;
   font-weight: 400;
   line-height: 24px;
   color: #787878;
   letter-spacing: .5px;
 }
  .empty-page .empty-page-content a {
    padding: 12px 35px;
    font-size: 16px;
  }
  .empty-page .empty-page-center {
    margin: 0 auto;
    text-align: center;
  }
  @media (min-width: 992px) {
    .empty-page{
      display:flex;
      align-items:center;
      gap: 10px;
      width: 100%;
    }  
  }
  @media (max-width: 767px) {
   .empty-page .empty-page-content .home-title{
     font-size: 80px;
   }
   .empty-page .empty-page-content .sub-title {
     font-size: 24px;
   }
   .empty-page .empty-page-content .description {
     font-size: 15px;
   }
 }
 @media (max-width: 543px) {
   .empty-page .empty-page-content .home-title{
     font-size: 60px;
  }
   #nav a.ss-icon span {
    font-size: 30px;
  }
}

div.product_section .columns[data-product-details]{
    display: flex;
    flex-direction: column;
}

.product_short_description{
  margin-bottom:15px;
}


/*********************** video-review-content **************************/

.video-review-content{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
  align-items: center;
  margin-bottom:20px;
}
.video-review-content.full-width{
  grid-template-columns: repeat(1, 1fr);
}
.video-review-content .socialproof-image{

}
.video-review-content .socialproof-video .section-header{
  margin-bottom:20px;
}
.video-review-content .socialproof-video .section-header h2{
    padding: 0;
    margin-bottom: 10px;
    line-height: 26px;
    font-weight: 600;
    color: #000;
}
.video-review-content .socialproof-video video{
  width:100%;
  vertical-align: middle;
}
.video-review-content .socialproof-video .video-part{
  position:relative;
}
.video-review-content .socialproof-video .video-part #controls .controls-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.video-review-content .socialproof-video .video-part #controls svg{
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    display:block;
}
@media (max-width: 798px) {
  .video-review-content {
    grid-template-columns: repeat(1,1fr);
    margin-bottom: 10px;
  }
}


/*********************** video-review-column **************************/
.video-review-column{
    margin: 30px 0;
}
.video-review-column .socialproof-video{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  align-items: center;
  margin-bottom:20px;
}

.video-review-column .socialproof-video video{
  width:100%;
  vertical-align: middle;
}
.video-review-column .socialproof-video .video-part{
  position:relative;
}
.video-review-column .socialproof-video .video-part #controls .controls-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.video-review-column .socialproof-video .video-part #controls svg{
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    display:block;
}
@media (max-width: 798px) {
  .video-review-column {
    margin: 0;
  }
  .video-review-column .socialproof-video{
    grid-template-columns: repeat(1,1fr);
  }
}


.global-wrapper__product .faq_section .container {
    padding: 20px 10px;
}
.global-wrapper__product .faq_section .faqs-heading {
    font-size: 22px;
    font-weight: 600;
    color: #f68826;
    margin: 45px 0 10px;
}
.global-wrapper__product .faq_section_items .faq-title {
    font-weight: 500;
}

.global-wrapper__product .section_faq .accordion__content {
    padding: 15px 30px;
}
.global-wrapper__product .faq_section_items{
    padding: 0;
    border: 1px solid #e9e9e9;
    border-bottom:none;
}
.global-wrapper__product .faq_section_items:last-child{
    border-bottom:1px solid #e9e9e9;;
}

.global-wrapper__product .faq_section_items .summary__title {
    padding: 15px 30px;
}
.global-wrapper__product .faq_section_items.active .summary__title{
    background: #f1f1f1;
}
@media (max-width: 543px) {
  .global-wrapper__product .section_faq .section-heading,.global-wrapper__product .section_faq .section-title {
    margin-bottom: 10px;
 }
  .global-wrapper__product .faq_section_items .summary__title {
      padding: 15px 20px;
  }
    .global-wrapper__product .faq_section_items .summary__title .faq-title{
     font-size: 15px;
    }
    .global-wrapper__product .section_faq .accordion__content {
      padding: 15px 20px;
  }
}
.gameday-bundle-image,
.restday-bundle-image{
   width:55%;
   margin:auto auto 0;
}
@media (max-width: 1199px) {
.gameday-bundle-image,
 .restday-bundle-image{
   width:60%;
   margin:auto auto 0;
}
}
@media (max-width: 1024px) {
.gameday-bundle-image,
 .restday-bundle-image{
   width:65%;
}
}
@media (max-width: 950px) {
 .gameday-bundle-image,
 .restday-bundle-image{
   width:75%;
}
}
@media (max-width: 850px) {
 .gameday-bundle-image,
 .restday-bundle-image{
   width:85%;
}
}
@media (max-width: 820px) {
 .gameday-bundle-image,
 .restday-bundle-image{
   width:95%;
}
}
@media (max-width: 798px) {
 .gameday-bundle-image,
 .restday-bundle-image{
   width:100%;
}
}

/********* blog page breadcrumb css ********/

.breadcrumb_text ul#breadcrumblist {
    margin: 0;
}
.breadcrumb_text ul#breadcrumblist li{
   list-style: none;
   display: inline-block;
}
@media (min-width: 799px) {
  .shopify-section--featured-product .product_section {
        display: flex;
      align-items: start;
  }
  .shopify-section--featured-product .product_section .thumb-part{
      position: sticky;
      top: 110px;
  }
}



/******* product badges ********/
h4.product_name {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap:5px;
}
h1.product_name {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap:5px;
}
.product-badge{
  font-size: 12px;
  font-weight: 500;
  padding: 4px 5px;
  display: inline-block;
  vertical-align: middle;
  line-height: 15px;
  border-radius: 5px;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  text-align: center;
  white-space: nowrap;
  margin-top:5px;
}
.tag_bestseller{
    background: #5a31f4;
   color: #fff;
}
.tag_lowstock{
   background: #f00;
   color: #fff;
}


.sidebar__block .faceted-filters__filter.color-swatch .faceted-filters__filter-list-item{
    display: inline-block;
    vertical-align: middle;
    padding: 0 7px 0 0;
}
.sidebar__block .faceted-filters__filter.color-swatch .faceted-filters__filter-list-item a.faceted-filters__filter-link{
    left: 0;
    padding: 0;
    border:none;
}

.sidebar__block .faceted-filters__filter.color-swatch .faceted-filters__filter-list-item a.faceted-filters__filter-link--active .filter-color{
  border:1px solid #000;
}
.sidebar__block .faceted-filters__filter.color-swatch .faceted-filters__filter-list-item .faceted-filters__filter-checkbox {
    display:none;
}
.sidebar__block .faceted-filters__filter.color-swatch .faceted-filters__filter-list-item .filter-color {
    width: 28px;
    height: 28px;
    box-shadow: 5px 5px 5px #e0e0e0;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* home page featuted collection section changes */

.index .shopify-section--featured-product{
  display: inline;
  width: 45%;
}
.index .shopify-section--featured-product .section {
    max-width: unset;
    width:auto;
    margin:0;
}
.index .shopify-section--featured-product .one-whole.column{
  display: none;
}
.index .shopify-section--rich-text {
    padding: 0;
}
.index .shopify-section--featured-product .bundleinclusionbelowgallery{
display:none;
}
.index .shopify-section--featured-product .section > div.container{
  padding: 0;
}
@media (max-width: 1400px) {
.index .shopify-section--featured-product{
  display: block;
  width: 100%;
}
.index .shopify-section--featured-product .section {
  max-width: 1050px;
}
}

/* for home page revies design */
.index .shopify-section--featured-product .product_name.title{
  margin-bottom: 0;
}



.secondmetric.three-eighths,.secondmetric_cart.three-eighths{
     display: none;
}

  
.old_position{
  display: none;
  }

.old_position{
  display: block;
  }

.firstmetric.three-eighths {
    width: unset;
}

.firstmetric.three-eighths {
    display: none;
}

  @media (max-width: 768px) {
  .secondmetric_cart.three-eighths{
         display: block; 
         transform: unset; 
         position: unset; 
         width: 100%;
         margin-bottom: 30px;
         margin-top: -40px;
  }
    body.cart .footer .newsletter-section{
      display:none;
    }
  }
/* body.index .shopify-section--image-with-text-overlay .banner__text {
  display: none;
} */


.shopify-section--header {
    padding-bottom: 0 !important;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}

.shopify-section--header{
  
}
@media (min-width: 799px) {
.promo-banner .promo-banner__text{
  height:21.6px !important;
}
}



  .lead_magnet .page-width {
       max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.lead_magnet .right_content .main_product {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto 30px;
    width: auto;
}
.lead_magnet {
       padding-top: 70px;
}

.lead_magnet .form  {
 margin: 30px auto;
}
.lead_magnet .left_content {
  width:70%;
}
.lead_magnet .left_content .header_div .description p{
   margin-bottom:5px;
}
.lead_magnet .bio {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    margin-top: 5px;
}
.lead_magnet .bio p{
  margin-bottom:5px;
}
.lead_magnet .right_content {
    width: calc(30% - 50px);
    padding-left: 50px;
}
                            
.lead_magnet .left_content .q_a_div {
  padding-top: 30px;
  clear: left;
}

.lead_magnet .left_content .customer_img {
     max-width: 150px;
    float: left;
    margin-right: 20px;
}
.lead_magnet .left_content .customer_img .user-accounts .social-icons{
  margin-bottom: 0;
}

.lead_magnet .left_content .customer_img .user-accounts .social-icons .ss-icon{
  margin:0;
  font-size: 24px;
}
.lead_magnet .right_content .img_title h2{
     text-align: center;
     font-size: 22px;
    margin-bottom:0px !important;
    line-height: 1.5em;
     font-weight: 500;
}
.lead_magnet .right_content .img_subtitle h2 {
       text-align: center;
           font-size: 22px;
    margin-bottom: .75em;
    line-height: 1.5em;
  
}

.lead_magnet .right_content .img_div img {
   margin: 0 auto;
    display: block;
}
.lead_magnet .right_content .img_div {
      text-align: center;
}
.lead_magnet .right_content .img_btn {
      text-align: center;
}
.right_content .product_title {
   font-weight: 600;
    font-size: 17px;
    margin-bottom: 5px;
    color: #363636;
}
 .right_content .product_div:hover .product_title {
        color: #db883e;
  }
.right_content .product_price {
        font-weight: 700;
    color: #363636;
    font-size: 16px;
}
.lead_magnet .right_content .product_title {
        padding-top: 20px;
}
.lead_magnet .left_content .social_div {
    padding-top: 20px;
    text-align: center;
}
.lead_magnet .left_content .social_div .social_txt {
       font-size: 20px;
    font-weight: 600;
}

.lead_magnet .left_content .social-icons .ss-icon svg  {
    margin-right: 0.2em;
    text-align: center;
    height: 19px;
    border: 1px solid #db883e;;
    padding: 7px;
    border-radius: 50%;
    width: 19px;
    display: block;
    transition: all 0.2s ease-in-out;
    fill: #db883e
}
.lead_magnet .left_content .main_title h1 {
   font-size: 26px;
    line-height: 1.8em;
    margin: 0 auto 15px;
    clear: both;
    font-weight:600;
    padding-top:0;
    color: #494c50;
    text-align:left;
    text-transform:none;
}
.lead_magnet .left_content .social_div .social-icons {
      text-align: center;
}
.lead_magnet .right_content .img_btn .btn {
       color: #fff !important;
    padding: 10px 40px;
    border-radius: 5px;
    margin-top: 13px;
}
.lead_magnet .left_content .q_a_div .question {
  font-weight: 700;
}
.blog-health-journal-may-2025 .newsletter-section {
   display: none;
}

@media (max-width:1199px) {
	.lead_magnet .page-width {
		max-width: 940px;
	}
}




@media(max-width:991px) {
    .lead_magnet .page-width {
		max-width: 720px;
	}
    .lead_magnet {
       padding-top:40px;
}
   .lead_magnet .left_content {
       width:100%;      
}
.lead_magnet .main_div {
    flex-direction: column-reverse;
    display: flex !important;
   }
  .lead_magnet .main_div {
    display:block;
   }

   .lead_magnet .left_content .main_title h1  {
      text-align:center;
       font-size: 24px;
   }
   .lead_magnet .left_content .description p {
    text-align:center;
 }
   .lead_magnet .right_content .form form.klaviyo-form{
    margin:0 auto;
   }
   .lead_magnet .right_content .main_product {
      width: 278px;
  }
   .lead_magnet .right_content .img_subtitle h2 {
        font-size:18px;
    }
  .lead_magnet .right_content {
   width:100%;
  padding-left:0px;
} 
}

@media(max-width:767px) {
   .lead_magnet .left_content .q_a_div {
      display:block;
   }
   .lead_magnet .page-width {
		max-width: 576px;
	}
}

@media(max-width:543px) {
    .lead_magnet .left_content .q_a_div .question {
      font-size:16px;
    }
   .lead_magnet .left_content .q_a_div .answer p {
       font-size:15px;
    }
  .lead_magnet .left_content .main_title h1 {
       font-size:22px;
    }
  .lead_magnet .page-width {
		max-width: auto;
	}
}

@media(max-width:350px) {
    .lead_magnet .right_content .main_product {
      width:max-content;
  }
}


.info-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.modal.fade {
  display: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.modal.show {
  display: flex !important;
  opacity: 1;
}

/* Modal container */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  align-items: center;
  justify-content: center;
}

/* Modal dialog */
.modal-dialog {
  position: relative;
  width: 100%;
  margin: 1.75rem 1rem;
  max-width: 500px;
  pointer-events: none;
}


/* Modal content */
.modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 1rem;
  pointer-events: auto;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease-out;
}

/* Header and close */
.modal-header {
  text-align: center;
  border-bottom: 1px solid #dee2e6;
}

.modal-title {
  margin: 0;
    padding-bottom: 12px;
font-size: 16px;
    color: #323232;
    font-weight: 600;
}

.btn-close {
  background: transparent !important;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.btn-close svg{
width: 16px;
  height: 16px;
}

.modal-body {
  padding-top: 1rem;
}
.modal-footer {
    text-align: center;
    margin-top: 26px;
}

/* Animation */
@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

  ul.modal-collection-info {
    margin: 10px 0;
    display: flex;
    gap: 16px;
}

ul.modal-collection-info li {
    list-style: none;
    flex: 1;
    text-align: center;
    margin: 0;
}

ul.modal-collection-info li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #323232;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 8px;
  transition: all .25s;
  border: 1px solid #e8e8e8;
  height: 100%;
}
ul.modal-collection-info li a span{
  margin: 8px 0;
}
ul.modal-collection-info li a:hover {
    color: #fff;
  background-color: #29486b;
}

ul.modal-collection-info li a small{
  display: block;
  font-size: 11px;
}

/** cart button color ***/
/* .product_section .atc-btn-container .add_to_cart.action_button{
  background-color: #fbbc04;
  color: #282421;
  text-transform: none;
} */
.product_section .atc-btn-container .add_to_cart.action_button svg{
  width: 16px;
  height: auto;
  margin-left: 4px;
  display: none;
}
/* .product-info-iconlist {
    line-height: 1;
    margin-bottom: 24px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}
.product-info-iconlist svg{
  width: 16px;
  height: auto;
  margin-right: 4px;
} */


.mm-wrapper_opened #auglio-bubble, .mm-wrapper_opened #launcher{
  z-index: 9 !important;
}
.drawer_rating-block{
  text-align: center;
  margin-top: 10px;
}
span.star-svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

span.star-svg svg {
    width: 14px;
    height: 14px;
    fill: #ffaa29;
}
.drawer_rating-block .drawer_rating-label {
    display: inline-block;
    white-space: normal;
    font-size: 16px;
}
small.cart-mini__tax-label {
    margin-top: 10px;
  justify-content: center;
  text-align: center;
      white-space: normal;
}
@media (max-width: 991px){
  .drawer_rating-block .drawer_rating-label {
    font-size: 14px
  }
}

#cart .mm-label.mm-label-subtotal.mm-listitem::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

/***** START: cart drawer overflow css ***/
html.cart-drawer-open body {
  overflow: visible;
}
html.cart-drawer-open {
  overflow: visible;
}
@media (max-width: 575px){
  .template-product.popup-active #cart{
    /* display: block; */
  }
}
/***** END: cart drawer overflow css ***/

/***** START: PDP Note metafield ***/
.product-note {
  background-color: #fdeba8;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: #5C4521;
  margin: 12px 0 5px;
}
.product-note p {
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 480px){
  .product-note {
    font-size: 11px;
    margin: 6px 0 0;
  }
}
/***** END: PDP Note metafield ***/



/** template-night-swannies-2025 **/
.template-night-swannies-2025 .add_to_cart.action_button{
  background-color: #fea92a;
  color: #fff;
}
.template-night-swannies-2025 .add_to_cart.action_button:hover{
  background-color: #f68826;
  color: #fff;
}

.template-night-swannies-2025 .product-images-guarantee-divider,
.template-night-swannies-2025 .product-images-guarantee,
.template-night-swannies-2025 .bundleinclusionbelowgallery, .template-night-swannies-2025 .product-text.product_short_description{
  display: none;
}
.template-night-swannies-2025 .product_section .product-block--text .product-text p{
      font-size: 15px;
    color: #000;
}
.template-night-swannies-2025 .payment_methods--logos.flex-container {
    display: block;
}
.template-night-swannies-2025 .payment_methods svg {
    display: inline-block;
    vertical-align: middle;
}
.template-night-swannies-2025 .product_form #product-form{
  margin-bottom: 0;
}

.template-night-swannies-2025 .product_slider {
    margin-bottom: 1rem;
    position: sticky;
    top: 110px;
}

.template-night-swannies-2025 .feature-tab-img-block {
    margin-bottom: 24px;
}
.feature-tab-img-content{
  display:none;
}
@media (max-width: 767px) {
  .template-night-swannies-2025 .feature-tab-img-block{
    margin-bottom: 0;
  }
}
@media (max-width: 991px){
  .template-night-swannies-2025 .shopify-section--product-template .section{
    width: 100%;
  }
}
/**** accordion ****/
.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
    background: #fff;
    border: none;
    width: 100%;
    padding: 12px 10px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
  box-shadow: none !important;
}
.accordion-header:hover {
    background: #fff;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-content {
  display: none;
  padding: 0 10px 15px;
  font-size: 14px;
      color: #000;
    line-height: 1.5;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-icon .icon-arrow {
  transform: rotate(180deg);
}
.accordion-content ul {
    margin: 0 0 12px 20px;
}

.accordion-content ul li {margin-bottom: 4px;line-height: 1.5;}

.accordion-header .icon-arrow {
  transition: transform 0.3s ease;
}

/**** icon-with-text ****/
.icon-with-text-wrapper {
    display: flex;
    Montserrat,font-family: sans-serif;
    width: 100%;
}

.icon-with-text-label {
    font-family: Montserrat, sans-serif !important;
    line-height: 1.5;
    display: inline-block;
      text-transform: uppercase;
    color: #000;
    font-weight: 500;
    letter-spacing: 0;
}

.icon-with-text-list {
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.icon-with-text-icon {
    width: 18px;
    height: 18px;
}

.icon-with-text-item {
    color: #000;
    font-size: 13px;
    display: block;
    margin: 0;
  text-align:left;
}

.icon-with-text-icon {
    display: inline-block;
    vertical-align: middle;
}
.icon-with-text-inner {
    display: flex;
    gap: 6px;
}

img.icon-with-text-icon {
    flex-shrink: 0;
}

span.icon-with-text-label {
    flex-grow: 1;
    text-align: left;
}

.template-night-swannies-2025 .shopify-section--image-with-text .image-element__wrap {
    max-width: 320px !important;
    margin: 0 auto;
}

.template-night-swannies-2025 .section-title{
  text-transform: uppercase;
}
.template-night-swannies-2025 .image-with-text__wrapper p {
    line-height: 1.5;
}
@media only screen and (max-width: 798px) {
    .template-night-swannies-2025 .image-with-text__wrapper {
        padding: 0;
    }
}
.template-night-swannies-2025 .custom-product-tab .tab-inner.tab-desktop .tabs{
  display: none;
}
.custom-product-tab ul.tabs-content .section-heading{
  display: none;
}
.template-night-swannies-2025 .custom-product-tab ul.tabs-content .section-heading{
  display: block;
}
.template-night-swannies-2025 .custom-product-tab ul.tabs-content{
  border-top: none;
}
.template-night-swannies-2025 .custom-product-tab ul.tabs-content .tab-item{
  display: block;
  margin-bottom: 40px;
}

.template-night-swannies-2025 .footer{
  margin-top: 0;
  padding-top: 0;
}

/* product subtitle */
.template-night-swannies-2025 .product_title_with_subtitle {
    margin-bottom: 10px;
    font-size: 16px;
}
.template-night-swannies-2025 h1.product_name {
    font-size: 24px;
    margin-bottom: 0;
}
@media(max-width: 991px){
  .section-heading{
    margin-bottom: 15px;
  }
}

@media(max-width:767px){
  .template-night-swannies-2025 h1.product_name {
    font-size: 17px;
  }
}

.template-night-swannies-2025 .image-with-text__wrapper {
  padding: 0px;
}

/****** Cart drawer ******/

.side-cart-position--right.mm-menu{
  background-color: #333333;
}

.side-cart-position--right .mm-panel:after, .side-cart-position--right .mm-panel:before {
    content: '';
    display: block;
    height: 10px;
}
.cart-drawer-title-block {
  display: flex !important;
      margin-bottom: 10px !important;
}

span.cart-drawer-title.mm-listitem__text {
  width: auto;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-drawer-title-block a.continue.ss-icon {
  flex-shrink: 0;
  /* flex-grow: 0; */
}
a.continue{
  font-size: 22px;
}
.side-cart-position--right .mm-panels > .mm-panel > .mm-navbar + .mm-listview{
  margin-top: 0;
}
.cart_payment_methods{
  text-align: center;
}
.cart_payment_methods svg.payment-icon {
    width: 38px;
    height: 24px;
    padding-right: 2px;
}

.side-cart-position--right.mm-menu{
  color: #fff;
}
#free-shipping-progress-wrapper {
  margin: 0;
  padding: 15px 15px 50px 15px;
}

@media (max-width: 991px){
  #free-shipping-progress-wrapper {
    padding: 15px 15px 45px 15px;
  }
}

.shipping-message {
  font-size: 16px;
  margin-bottom: 6px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  display:block;
  white-space: normal;
  line-height: 1.4;
}

.progress-bar {
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  display:block;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  transition: width 0.4s ease;
  display:block;
  background-color: #3aaf85;
}
.free-shipping-progress-block + .mm-listitem + .free-shipping-progress-block {
  display: none !important;
}
#free-shipping-progress-wrapper .free-shipping-progress-bar {
  position: relative;
  width: 100% !important;
  display: block !important;
}

#free-shipping-progress-wrapper .free-shipping-progress-bar .free-shipping-progress-icon svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
#free-shipping-progress-wrapper .free-shipping-progress-bar .free-shipping-progress-icon {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  background-color: #414141;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#free-shipping-progress-wrapper.active-shipping .free-shipping-progress-bar .free-shipping-progress-icon {
    background-color: #3aaf85;
}

/* cart-drawer-upsell */


.cart-drawer-upsell span {
    display: block;
    white-space: normal;
}

span.upsell-title{
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}
.cart-drawer-upsell span.swiper-wrapper{
  display: flex;
}

span.upsell-product {
    display: flex;
    align-items: center;
}

.upsell-image {
    width: 90px;
    display: block;
    flex-shrink: 0;
    margin-right: 16px;
}
.upsell-image img{
  border-radius: 4px;
  background-color: #fff;
}
.cart__image img{
  border-radius: 4px;
  background-color: #fff;
}
.cart-drawer-upsell {
    padding: 12px 20px 16px !important;
}
span.upsell-variant-block {
    display: flex;
    gap: 6px;
}

a.upsell-title-link {
    display: inline-block;
    white-space: normal;
}

select.upsell-variant-select {
    margin: 0;
    height: 35px;
    min-height: 35px;
}

a.upsell-title-link {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
}

span.upsell-price {
    font-size: 13px;
    margin-bottom: 7px;
}

button.upsell-add-btn {
    font-size: 13px;
    height: 35px;
    border-radius: 3px;
    flex-shrink: 0;
    max-width: 120px;
    width: 100%;
    padding: 10px 10px;
}
button.upsell-add-btn[disabled] {
    cursor: auto;
}

.side-cart-position--right ul{
  min-height: calc(100vh - 20px);
  margin-bottom: 0 !important;
  display: flex;
  flex-direction:  column;
}

.cart-drawer-upsell-block {
    margin-top: auto !important;
}
.upsell-products{
  padding: 0 20px;
}

.cart-drawer-upsell.mm-listitem__text .upsell-products{
  padding: 0 0px;
}
span.upsell-details{
  flex-grow: 1;
}
.upsell-products-slider{
  position: relative;
}
.upsell-products-slider .swiper-button-next, 
.upsell-products-slider .swiper-button-prev{
  color: #fff;
  width: 32px;
      top: 50%;
    transform: translateY(-50%);
    margin: 0;
    display:flex;
    align-items: center;
}
.upsell-products-slider .swiper-button-next:after, 
.upsell-products-slider .swiper-button-prev:after{
  font-size: 16px;
}

.upsell-products-slider .swiper-button-next {
    right: -2px;
}
.upsell-products-slider .swiper-button-prev {
    left: -2px;
}

.cart-drawer-upsell.mm-listitem__text .upsell-products-slider .swiper-button-next {
  right: -24px;
}
.cart-drawer-upsell.mm-listitem__text .upsell-products-slider .swiper-button-prev {
  left: -24px;
}
#cart .mm-listview > li > a.cart__item-subtotal{
  margin-top:0;
}
#free-shipping-progress-wrapper .free-shipping-progress-bar .free-shipping-progress-icon::after{
    content: "Free shipping";
    position: absolute;
    font-size: 9px;
    line-height: 1;
    bottom: -23px;
    text-align: center;
        width: 55px;
    white-space: normal;
}
#free-shipping-progress-wrapper{
  overflow: visible !important;
}
@media (max-width: 991px){
  span.cart-drawer-title.mm-listitem__text{
    font-size: 16px;
  }
  .shipping-message {
    font-size: 14px;
  }
  span.upsell-title {

    font-size: 18px;
  }
  .cart__info .cart__description {
    font-size: 16px;
  }
  small.cart-mini__tax-label {
    font-size: 14px;
        margin-top: 6px;
    padding-bottom: 6px;
  }
  select.upsell-variant-select {
    height: 30px;
    min-height: 30px;
    line-height: 1;
    font-size: 12px !important;
  }
  button.upsell-add-btn {
    font-size: 12px;
    line-height: 1;
    height: 30px;
  }
  .cart-drawer-title-block {
    display: flex !important;
    margin-bottom: 0px !important;
  }
  .side-cart-position--right .mm-panel:after, .side-cart-position--right .mm-panel:before{
    display: none;
  }
  #free-shipping-progress-wrapper .free-shipping-progress-bar .free-shipping-progress-icon {
    width: 24px;
    height: 24px;
  }
  #free-shipping-progress-wrapper .free-shipping-progress-bar .free-shipping-progress-icon svg {
    fill: #fff;
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 575px){
  .shipping-message {
    font-size: 12px;
  }
  .cart__info .cart__description {
    font-size: 14px;
    line-height: 1.2;
  }
  span.upsell-title {
    font-size: 16px;
  }
  a.upsell-title-link {
    font-size: 14px;
  }
  .drawer_rating-block .drawer_rating-label, small.cart-mini__tax-label {
    font-size: 12px;
  }
  #cart .mm-listview > li > a.cart__item-subtotal {
    font-size: 14px;
  }
  .upsell-image {
    width: 70px;
    margin-right: 10px;
  } 
  .side-cart-position--right .cart__image {
    width: 70px;
  }
  .cart__info .cart__quantity input.quantity {
    height: 30px;
    min-height: 30px;
    line-height: 30px;
  }
  #free-shipping-progress-wrapper .free-shipping-progress-bar{
    width: 100%;
  }
  
}