/** Shopify CDN: Minification failed

Line 3246:14 Expected identifier but found whitespace
Line 3246:32 Unexpected "!"
Line 11664:14 Expected identifier but found whitespace
Line 11664:32 Unexpected "!"
Line 14634:2 "positon" is not a known CSS property
Line 16932:14 Expected identifier but found whitespace
Line 16932:32 Unexpected "!"
Line 16974:14 Expected identifier but found whitespace
Line 16974:32 Unexpected "!"
Line 16991:14 Expected identifier but found whitespace
... and 3 more hidden warnings

**/
@charset "UTF-8";

.surface-pick-up-embed {
  --surface-pick-up-embed-theme-success-color: limegreen;
  --surface-pick-up-embed-theme-error-color: #b33a3a;
  --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: -webkit-min-content auto;
  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: limegreen;
  --surface-pick-up-item-theme-error-color: #b33a3a;
  --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;
}

  

  

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

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

.has-margin-bottom {
  margin-bottom: 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;
}

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

.index {
  display: flex;
  flex-wrap: wrap;
}

.index-sections,
.page-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.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 {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.section.is-width-wide {
  width: 100%;
  max-width: none;
}

.shopify-section-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.shopify-section-wrapper .is-width-wide {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
}

.shopify-section-wrapper .shopify-section .section:not(.is-width-wide) {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.shopify-section-wrapper .shopify-section.shopify-section--search .is-width-wide {
  background-color: ;
}

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

.product-container .container .column,
.product-container .container .columns {
  margin-left: 20px;
  margin-right: 20px;
}

.product-container .two-fourths {
  width: calc(50% - 40px);
}

.product-container {
  width: 100%;
}

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

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

@media only screen and (max-width: 1024px) {
  .large-down--hidden {
    display: none;
  }

  .large-down--visible {
    display: block;
  }

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

  .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-left: calc(20px / 2);
    margin-right: calc(20px / 2);
  }

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

  .medium-down--visible {
    display: block;
  }

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

  .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-left: calc(20px / 2);
    margin-right: calc(20px / 2);
  }

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

  .small-down--visible {
    display: block;
  }

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

  .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-left: calc(20px / 2);
    margin-right: calc(20px / 2);
  }

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

.container-border--top::before {
  display: block;
  content: "";
  height: 0;
  width: calc(100% - 20px);

  border-top: thin solid ;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  float: left;
}

@media only screen and (max-width: 480px) {
  .container-border--top::before {
    width: 100%;
  }
}

.container-border--bottom::after {
  display: block;
  content: "";
  height: 0;
  width: calc(100% - 20px);

  border-top: thin solid ;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  clear: both;
}

@media only screen and (max-width: 480px) {
  .container-border--bottom::after {
    width: 100%;
  }
}

.narrow-width--true.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.container.full-width--true,
.full-width--true > .container {
  width: 100%;
  max-width: 100%;
}

@media only screen and (max-width: 480px) {

  .container.fullWidthMobile--true,
  .column.fullWidthMobile--true,
  .columns.fullWidthMobile--true {
    width: 100% !important;
    max-width: 100%;
  }
}

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

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-family: 'GT Eesti Display', sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  font-size: 2em;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: “”‘’;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

body,
figure {
  margin: 0;
}

legend,
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}

* {
  box-sizing: border-box;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

@media only screen and (max-width: 798px) {
  .clear {
    display: none;
  }
}


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 


 

body {

  font-family: 'GT Eesti Text', 'Helvetica', 'Helvetica Neue', sans-serif;

font-size: px;

color: ;
line-height: 1.6em;
overflow: auto;

background-color: ;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
}Liquid error: Unknown operator !=blankbody.blocked-scroll {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

body.blocked-overflow {
  overflow: hidden;
}

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

abbr {
  border-bottom: 1px dotted ;
}

details summary::-webkit-details-marker {
  display: none;
}

.editor-visible--true {
  display: block !important;
}img[data-sizes=auto].lazyloaded {
  height: auto;
}

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

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

.image-element__wrap {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.image-element__wrap img {
  height: auto;
}

.logo,
.header__logo {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

font-size: px;

text-transform: ;
line-height: 1.2em;
}.logo a span,
.header__logo a span {
  color: ;
}

h1 {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.2;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;
margin: 0 auto 15px;
clear: both;

font-weight: ;
padding-top: 4px;
}

h1 a:link,
h1 a:visited {
  font-weight: inherit;

  color: ;
}

h1 a:hover,
h1 a:active {
  color: ;
}

h1.collection_title_tags {
  padding-right: 25px;

  border-right: solid 1px ;
}

h2,
.h2,
h2.title {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.2;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;
margin-bottom: 0.75em;
}

h2 a,
.h2 a,
h2.title a {
  font-weight: inherit;
}

h2.collection_title,
.h2.collection_title,
h2.title.collection_title {
  margin-bottom: 0;
  display: inline;
}

h2.product_name a,
.h2.product_name a,
h2.title.product_name a {
  color: ;
}

.cart h2 {
  margin-top: 0;
}

h3,
.h3 {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.2;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;
margin: 0 auto 15px 0;
}

h3 a,
h3 a:visited,
.h3 a,
.h3 a:visited {
  font-weight: inherit;

  color: ;
}

h3.title,
.h3.title {
  line-height: 1.25;
  margin: 0 auto 15px;
  clear: both;
  padding-top: 4px;
}

h3.title a,
h3.title a:visited,
.h3.title a,
.h3.title a:visited {
  color: ;
}

h3.sub_title,
.h3.sub_title {
  padding: 5px 0;

  color: ;
}

h3.sub_title a,
.h3.sub_title a {
  color: ;
}

h4,
.h4 {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.5;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;
margin: 0 0 0.5em 0;
padding: 7px 0;
}

h4 a,
.h4 a {
  font-weight: inherit;
}

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

h5,
.h5 {
  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.5;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;
margin: 0 0 0.5em 0;
padding: 7px 0;
}

h5 a,
.h5 a {
  font-weight: inherit;
}

h5.sub_title,
.h5.sub_title {
  padding: 5px 0;

  color: ;
}

h5.sub_title a,
.h5.sub_title a {
  color: ;
}

h6, .h6 {
  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.5;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;

letter-spacing: 0px;
margin: 0 0 0.5em 0;
padding: 7px 0;
}

h6 a,
.h6 a {
  font-weight: inherit;
}

h6.title,
.h6.title {
  line-height: 32px;
  margin: 0 0 0.5em 0;

  color: ;
}

.cart h6 {
  margin-top: 0;
}

.collection_title {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.5;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;
margin: 0 auto 15px;
clear: both;
padding-top: 4px;
}

.collection_title a {
  font-weight: inherit;

  color: ;
}

.collection_title a:hover,
.collection_title a:active {
  color: ;
}

div.collection_title {
  margin-bottom: 0;

  line-height: px;
  display: inline;
}

div.collection_title_tags {
  padding-right: 25px;

  border-right: solid 1px ;
}

.headline,
.empty_cart,
.promo-banner,
.title {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.5;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;
}

.title.center.blog a {
  color: ;
}

p {
  margin: 0 0 15px;
  font-style: normal;
  line-height: 1.6em;
}

p img {
  margin: 0;
}

sub {
  font-size: 60%;
}

i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 90%;
}

.feature img {
  position: relative;
  top: 7px;
  margin-right: 5px;
  width: 25px;
  height: 25px;
}

.onboard-text {
  margin: 0;
}

.feature p {
  font-size: smaller;
}

#featured_links {
  padding: 20px 0;
}

#featured_links h2 {
  padding-top: 15px;
}#featured_links .column,
#featured_links .columns {
  opacity: 1;
}.slider-gallery .shopify-product-reviews-badge {
  height: 30px;
  display: block;
}

.spr-badge+.feature_divider {
  margin-top: 15px;
}

.spr-badge {
  padding: 5px 0;
}

.thumbnail .spr-badge-caption {
  display: none;
}

.spr-badge-container {
  cursor: pointer;
  display: inline-block;
}

div#shopry-review-photos a {
  display: block !important;
}

.feature_divider {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  border: 0;

  border-color: ;

  border-bottom-width: px;

  border-bottom-style: ;
}

.feature_divider.no-margin {
  margin-bottom: 0px;
}

@media only screen and (max-width: 798px) {
  .feature_divider {
    margin-bottom: 10px;
  }
}

.page {
  overflow-wrap: anywhere;
}

.page .feature_divider,
.page h2.title+.feature_divider {
  margin-bottom: 15px;
}

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

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

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

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

hr {
  border-color: ;

  border-style: ;
  clear: both;
  margin: 12px 0;
  height: 0;
}hr {
  border-width: 0;
}.cart-container hr {
  border-top-width: 0;
}

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

a {
  color: ;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

ul,
ol {
  margin-bottom: 20px;
}

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

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

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

ul {
  list-style: disc outside;
}

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

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

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

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 ;
  list-style: none outside none;
  padding: 12px 0;
  margin-bottom: 0;
}

ol {
  list-style: decimal;
}

.header {
  z-index: 1000;
  width: 100%;
  top: 0;
}

.header a,
.header a span,
.header select.currencies {
  color: ;
  text-shadow: none;
}

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

body.is-active {
  overflow-y: hidden;
  height: 100vh;
}

body.is-active #header {
  bottom: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

#header.mobile_nav-fixed--true,
.mobile_nav-fixed--false.is-active #header {
  position: fixed;
  z-index: 1001;
  width: 100%;
  top: 0;
  left: 0;
}

#header {
  display: none;
  pointer-events: all;
}

#header .top-bar {
  text-align: center;
  display: flex;
  align-items: center;
}

#header .top-bar a.right {
  left: auto;
  right: 15px;
  font-size: 20px;
  padding-top: 8px;
  top: 4px;
  z-index: 1;
}

#header .top-bar a.mobile_nav {
  display: flex;
  align-items: center;
  z-index: 1;
}

#header .top-bar > a,
#header .top-bar > a:visited,
#header .top-bar > a:active {
  display: block;
  font-size: 25px;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#header .top-bar a span {
  display: inline-block;
  position: relative;
}

#header .top-bar a.icon-bag:before,
#header .top-bar a.icon-cart:before {
  font-size: 18px !important;
}

.nav ul.mobile_menu li a {
  display: inline-block;
}

.menu .vertical-menu li {
  position: relative;
  margin-right: 15px;
}

.vertical-menu {
  display: inline;
}

.main-nav:not([data-show-dropdown-on-click]) .menu .vertical-menu li:hover .vertical-menu_submenu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  pointer-events: all;
  z-index: 2000;
}

.main-nav:not([data-show-dropdown-on-click]) .menu .vertical-menu_submenu li:hover .vertical-menu_sub-submenu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  pointer-events: all;
  z-index: 2000;
}

.menu .vertical-menu_submenu {
  position: absolute;
  left: 0;
  top: 100%;
  padding-left: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  pointer-events: none;
  text-align: left;
  width: 270px;
}.menu .vertical-menu_submenu {
  background: ;
}.menu .vertical-menu_submenu li {
  padding: 0 20px;
  display: block;
}

.menu .vertical-menu_submenu li a {
  display: block;

  font-size: px;

  letter-spacing: px;
  color: #3F409A;
}

@media only screen and (max-width: 798px) {
  .menu .vertical-menu_submenu li a {
    font-size: -2px;
  }
}

.menu .vertical-menu_submenu span.icon-down-arrow {
  transform: rotate(-90deg);
}

.menu .vertical-menu_submenu.is-visible,
.menu .vertical-menu_sub-submenu.is-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  pointer-events: all;
  z-index: 2000;
}

.menu .vertical-menu_sub-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  padding-left: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 5s ease-in;
  pointer-events: none;
  width: 270px;
}.menu .vertical-menu_sub-submenu {
  background: ;
}.menu .vertical-menu_sub-submenu li {
  display: block;
  padding: 0 20px;
}

.menu .vertical-menu_sub-submenu a {
  display: block;
}

.vertical-menu_submenu.vertical-menu--align-right {
  right: 0;
  left: auto;
}

.vertical-menu_sub-submenu.vertical-menu--align-right {
  right: 100%;
  left: auto;
}

li > a.url-deadlink {
  cursor: default;
}

#header .mobile_nav.dropdown_link {}

#header .mobile_nav.dropdown_link span.menu_title {
  position: absolute;
  left: 43px;
  font-size: 16px;
}

.mobile_nav div {
  width: 30px;
  height: 40px;
  position: relative;
  float: left;
  margin: 0 8px 0 5px;
  transform: rotate(0deg);
  transition: 0.1s ease-in-out;
  cursor: pointer;
}

.mobile_nav div span {
  display: block !important;
  position: absolute !important;
  height: 2px !important;
  width: 100%;
  background: #e8442e;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  padding: 0 !important;
  transform: rotate(0deg);
  transition: 0.1s ease-in-out;
}

.mobile_nav div span:nth-child(1) {
  top: 10px;
}

.mobile_nav div span:nth-child(2),
.mobile_nav div span:nth-child(3) {
  top: 20px;
}

.mobile_nav div span:nth-child(4) {
  top: 30px;
}

.mobile_nav div.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile_nav div.open span:nth-child(2) {
  transform: rotate(45deg);
}

.mobile_nav div.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile_nav div.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

#mobile_menu {
  margin: 10px 20px;
  height: 100vh;
}

#mobile_menu .sublink ul {
  display: none;
  margin-left: 0;
  padding-left: 10px;
}

#mobile_menu li {
  display: block;
  padding-right: 0;
}

#mobile_menu li a span.icon-down-arrow {
  padding: 0 15px !important;
}

.mobile-menu__disclosure .selectors-form__wrap {
  justify-content: center;
  flex-direction: column;
}

.mobile-menu__disclosure .selectors-form__item {
  margin-left: 0;
}

.mobile-menu__disclosure .selectors-form__item:first-of-type .disclosure__toggle {
  border-top: none;
}

.mobile-menu__disclosure .disclosure {
  padding-top: 0;
}

.mobile-menu__disclosure .disclosure-list__item {
  padding: 0;
}

.mobile-menu__disclosure button.disclosure__button {
  justify-content: flex-start;

  font-size: px;

  color: ;
  padding-left: 0;
  min-height: 0;
  height: unset;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.9em;
}

.mobile-menu__disclosure button.disclosure__button:hover,
.mobile-menu__disclosure button.disclosure__button:focus {
  color: ;
}

#mobile_menu li.sublink span.currency-code {
  display: inline;
  padding-left: 0;
}

.feature_image.editor-hover--true .main-nav,
.feature_image.editor-hover--true .dropdown {
  clear: both;
  transition: all 0.3s linear;
  animation: fadeIn 0.3s linear none;
}.feature_image.editor-hover--true .main-nav,
.feature_image.editor-hover--true .dropdown {
  background: ;
}.cart-container {
  float: right;
  position: relative;
}

p.cart-message a {
  display: inline-block;
}

.top-bar {
  display: flex;
  justify-content: space-between;

  background-color: ;
}

.top-bar .social_icons {
  margin: 0;
  padding-left: 10px;
}

.top-bar .social_icons li {
  padding: 5px;
}

.top-bar a {
  display: flex;
  align-items: center;
}

.top-bar ul.social_icons a {
  display: inline;
  flex: none;
}

.top-bar .top-bar--right {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 40px;
}

.top-bar .top-bar--right .icon-search {
  height: 100%;
  z-index: 10;
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
}

.top-bar .top-bar--right .icon-search:before {
  margin-left: 0;
  font-size: 18px;
}

.top-bar .top-bar--right .cart-container {
  display: inline-block;
  margin-right: 9px;
}

.top-bar .mini-cart__item-title a {
  display: block;
  color: white !important;
}

.top-bar .mini-cart__item-title span {
  color: ;
}

.top-bar .mini-cart__item-title .sale {
  color: ;
  margin-right: 3px;
}

.top-bar .mini-cart__item-title .was_price {
  color: ;
}

.top-bar--right-menu {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  column-gap: 25px;
  margin-left: 25px;
  align-items: center;
}

.main-nav,
.dropdown {
  clear: both;
  transition: all 0.3s linear;
  animation: fadeIn 0.3s linear none;
}.main-nav,
.dropdown {
  background: ;
}.is-active .sticky_nav {
  bottom: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

.sticky_nav {
  position: fixed;
  width: 100%;
  z-index: 35;
  top: 0;
  left: 0;
  padding: 0;
  transform: translateY(-100%);
  transition: all 300ms ease-in-out;
}

.sticky_nav .main-nav {
  flex-wrap: nowrap;
  padding: 0 0 0 20px;
}

.sticky_nav .nav--left {
  padding-left: 20px;
}

.sticky_nav .nav--combined ul.menu {
  padding: 0 20px;
}

.sticky_nav ul.menu {
  font-size: px;
  padding-bottom: 0 !important;
}

.sticky_nav .header__logo {
  padding: 12px 0;
}

.sticky_nav .menu-position--block.search-enabled--true .nav.nav--center {
  padding-left: 0;
}

.sticky_nav .menu-position--block .header__logo {
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
}

.sticky_nav .menu-position--inline.logo-position--center.search-enabled--false .nav--right {
  width: calc(45% - 70px);
}

.sticky_nav .menu-position--inline.logo-position--center .nav--right {
  width: calc(45% - 130px);
}

.sticky_nav .header__logo span {
  color: ;
}

.sticky_nav .search-container {
  max-width: 60px;
  padding: 12px 0;
}

.sticky_nav .search-container a {
  padding: 0 20px;

  color: ;
}

.sticky_nav .mini_cart {
  font-size: 18px;
  padding: 12px;
  align-items: center;
}

.sticky_nav .mini_cart:before {
  margin: 0;
}

.sticky_nav .mini_cart .cart_count {
  margin: 0;
  padding: 0 0 0 8px;
}

.sticky_nav--stick {
  opacity: 1;
  transform: translateY(0%);
}

@media only screen and (max-width: 798px) {
  .sticky_nav--stick {
    display: none;
  }
}

.sticky_nav--unstick {
  opacity: 0;
  transition: opacity 0s;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: fit-content;
  padding: 0 0 0 0;
}

.main-nav .nav {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.main-nav .nav--combined .menu li:last-child,
.main-nav .nav--right .menu li:last-child {
  padding-right: 0;
}

.menu {
  flex: 1 1 auto;
  display: block;
  border: none;
  padding: 0;
  margin: 0;
}

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

.menu-position--inline {
  flex-wrap: nowrap;
}

.menu-position--inline .header__logo {
  width: 100%;
}

.menu-position--block.search-enabled--true .nav.nav--center {
  padding-left: 200px;
}

.menu-position--block .header__logo {
  width: 100%;
  max-width: none;
}

.header__logo {
  width: auto;
  line-height: 1;
  margin-left: 20px;
  margin-right: 20px;
}

.header__logo a {
  display: inline-block;
}

.header__logo img,
.header__logo span.header__logo-text {
  width: 100%;
  display: inline-block;

  color: ;
}

.logo-alignment--left.menu-position--block .header__logo {
  padding-right: 0;
  padding-left: 0;
}

.logo-alignment--center .header__logo {
  text-align: center;
}

.logo-position--left .header__logo {
  margin-right: 0;
  margin-left: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.logo-position--center.menu-position--block .header__logo {
  margin: 0;
}

.logo-position--center.search-enabled--true .nav--right {
  width: calc(45% - 220px);
}

.logo-position--center .nav {
  width: 45%;
}

.cart-container .mini_cart {
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

@media only screen and (max-width: 480px) {
  .cart-container .mini_cart {
    max-width: 50px;
  }
}

.search-container {
  width: 100%;
  max-width: 200px;
  padding-left: 20px;
}

.search-container .search-link {
  display: none;
}

.search-container input {
  z-index: 29;
}

.nav ul li a.sub-menu {
  padding: 10px 4px 10px 4px;
  z-index: 1001;
}

.nav ul li:hover a.sub-menu {
  color: ;
}

.menu a,
.menu a:visited,
.menu a:active,
#header span.menu_title,
.menu a span,
select.currencies,
.mini_cart span {

font-weight: ;

font-style: ;

font-size: px;

text-transform: ;

color: ;
padding-top: 12px;
padding-bottom: 12px;
position: relative;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
outline: 0;
}

@media only screen and (max-width: 798px) {

  .menu a,
  .menu a:visited,
  .menu a:active,
  #header span.menu_title,
  .menu a span,
  select.currencies,
  .mini_cart span {
    font-size: px;
  }
}

.feature_image .main-nav a,
.feature_image .main-nav a span:not(.header__logo-text) {
  color: ;
}

#header span.menu_title,
.menu a span,
select.currencies,
.mini_cart span {}

#header span.menu_title {
  cursor: pointer;
  height: 40px;
  line-height: 20px;
  margin-top: -2px;
}

.menu li {
  position: relative;
  vertical-align: top;
}

.shopify-currency-form {
  margin-bottom: 0;
}

select.currencies {
  height: 40px;
  min-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
  background-image: url(//www.beginhealth.com/cdn/shop/t/66/assets/select_light.png?v=38379460423634441311703708152);
}

@media only screen and (max-width: 798px) {
  select.currencies {
    font-size: 16px;
  }
}

#mobile_menu select.currencies {
  padding-left: 0;
}

.feature_image .header .menu a,
.feature_image .header .menu a:visited,
.feature_image .header .menu a span {
  color: #3F409A;
}.feature_image .header .menu a[href]:hover,
.menu a.active,
.menu a.active span,
.feature_image .header .menu a.active,
.header_bar a.active,
.feature_image .header .menu a:focus {
  color: ;
}

.menu li a[href]:hover,
.menu li a:focus,
.menu a[href]:hover span {
  color: ;
  text-decoration: none;
}

.menu a.top_link,
.menu a.dropdown_link {
  border-bottom: solid 1px transparent;
}

.menu a.top_link:hover,
.menu a.dropdown_link:hover,
.menu a.active_link {
  border-bottom: solid 1px ;
}

.feature_image a.top_link:hover {
  border-bottom: solid 1px ;
}

.menu a span {
  display: inline;
  vertical-align: top;
}

.top-bar a,
.top-bar a:visited,
.top-bar a:active,
.top-bar a span,
.top-bar select.currencies,
a.mini_cart,
a.mini_cart span,
.feature_image .header .top-bar .menu a,
.feature_image .header .top-bar .menu a span {
  font-size: px;

  letter-spacing: px;
}

.top-bar li a:hover,
.top-bar li a[href]:hover,
.top-bar li a[href]:hover span,
.top-bar li a:active,
.top-bar li a:hover span,
.top-bar a:active span,
.top-bar .currencies:hover,
.feature_image .header .top_bar .menu a:hover,
.feature_image .header .top_bar .menu a:hover span {
  color: ;
}

.top-bar li {}

.top-bar .menu a,
.top-bar .social_icons a {
  padding: 0;
}

.mini_cart,
.nav a.mini_cart {
  float: right;
  text-align: center;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
  z-index: 2001;
}

@media only screen and (min-width: 799px) {

  .mini_cart,
  .nav a.mini_cart {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 798px) {

  .mini_cart,
  .nav a.mini_cart {
    right: 0;
  }
}

.cart-container li.mini-cart__item {
  display: flex;
  justify-content: space-between;
}

a.tos_icon,
.cart_content a.tos_icon {
  font-size: 13px;

  color: ;
}

a.tos_icon:visited,
.cart_content a.tos_icon:visited {
  color: ;
}

a.tos_icon:hover,
.cart_content a.tos_icon:hover {
  color: ;
}

.cart_content__continue-shopping {
  display: none;
}

.no-touchevents a.cart_content__continue-shopping.secondary_button {
  display: none;
}

.no-touchevents a.cart_content__continue-shopping.secondary_button,
.touchevents a.cart_content__continue-shopping.secondary_button {
  display: none;
}

@media only screen and (max-width: 798px) {

  .no-touchevents a.cart_content__continue-shopping.secondary_button,
  .touchevents a.cart_content__continue-shopping.secondary_button {
    display: block;
    border-top: 0;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: static;
    font-size: inherit;
    letter-spacing: inherit;
  }
}

.mini_cart span {
  display: inline-block;
}

.cart-container .cart_content {
  display: none;
  width: fit-content;
}

.cart-container.active_link .cart_content {
  display: block;
  overflow-y: auto;
  max-height: calc(90vh - 100px);
  width: 300px;
}

.cart-container.active_link .cart_content::-webkit-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  width: 7px;
}

.cart-container.active_link .cart_content::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

html.touchevents .cart .cart-container {
  pointer-events: none;
}

#cart_form {
  width: 100%;
}

#cart_form p.modal_price {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 480px) {
  #cart_form p.modal_price {
    font-size: inherit;
  }
}

#cart_form .product-quantity-box {
  margin: 15px 0;
  width: 130px;
}

#cart_form .product-quantity-box .far {
  font-size: 16px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
}

.cart_content .product-quantity-box {
  margin: 15px 0 0;
  width: 130px;
}

.cart_content .product-plus.is-disabled,
.cart_content .product-minus.is-disabled,
#cart_form .product-plus.is-disabled,
#cart_form .product-minus.is-disabled {
  pointer-events: none;
}

.cart_content .product-quantity-box .quantity,
#cart_form .product-quantity-box .quantity {
  padding: 0 5px;
  width: 30%;
  min-height: 30px;
  height: 30px;
  border: 1px solid #3F409A;
  font-weight: 600;
  font-size: 16px;
  border-left: none;
  border-right: none;
}

.cart_content .product-quantity-box .product-plus,
#cart_form .product-quantity-box .product-plus {
  font-size: 15px;
  line-height: 30px;
  height: 30px;
  padding-right: 2px;
  width: 25%;
}

.cart_content .product-quantity-box .product-minus,
#cart_form .product-quantity-box .product-minus {
  font-size: 15px;
  line-height: 30px;
  height: 30px;
  padding-right: 2px;
  width: 25%;
}

#cart_form .product-quantity-box .product-minus,
#cart_form .product-quantity-box .product-plus,
.nav .product-quantity-box .product-minus,
.nav .product-quantity-box .product-plus {
  padding-right: 0;
}

#cart_form .icon-minus,
#cart_form .icon-plus {
  position: relative;
  left: 1px;
}

.cart__continue-shopping {
  width: 100%;
  margin-top: 25px;
}.cart-container.active_link .mini_cart {}

.cart_content {
  top: 40px;
  right: 0;
  position: absolute;
  z-index: 2000;

  background-color: ;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;

color: ;

border: 1px solid ;
border-top: 0;
border-right: 0;
width: 100%;
max-width: 320px;
}

@media only screen and (min-width: 799px) {
  .cart_content {
    max-width: 420px;
  }
}

div.cart_content form {
  margin: 15px 0 0 0;
  padding: 0;
}

.mini-cart__item.animated,
.cart__item.animated {
  animation-duration: 0.7s;
}

.mini-cart__item--image {
  width: 40%;
}

.cart_content li.mini-cart__item {
  position: relative;
}

.cart_content li.mini-cart__item a.cart__remove-btn {
  position: absolute;
  top: -7px;
  right: -13px;
}

.cart_content li.mini-cart__item a.cart__remove-btn:active {
  position: absolute;
}

.cart_content li.mini-cart__item a.cart__remove-btn span {
  color: ;
}

.cart_content li.mini-cart__item a.cart__remove-btn .remove-icon {
  margin-left: 0;
}

.cart_content li.mini-cart__item a.cart__remove-btn .remove-icon:before {
  font-size: 25px;
}

.cart_content li.mini-cart__item a.cart__remove-btn img {
  width: 25px;
}

#header .top-bar a span.remove-icon {
  color: ;
}

#header li.mini-cart__item a.cart__remove-btn {
  top: 0;
}

.mini-cart__item-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  text-align: left;
}

.mini-cart__item-price {
  padding-top: 10px;
  line-height: 1;
  font-weight: bold;
}

.mini-cart__unit-price {
  margin: 0;
  font-size: 0.925em;
}

.mini-cart__item-title {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.cart__item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 10px 0;
  position: relative;

  border-bottom: 1px solid ;
}

@media only screen and (max-width: 798px) {
  .cart__item--content {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 798px) {
  .cart__item--image {
    max-width: 33.333%;
  }
}

.container .column.cart__item--image {
  margin-left: 0;
}

.cart__item--title {
  margin-right: 15%;
}

@media only screen and (max-width: 798px) {
  .cart__item--title {
    margin-right: 20px;
  }
}

.cart__item-unit-price,
.order-details__unit-price,
.product-details__unit-price,
.thumbnail .unit-pricing {
  margin: 0;
  font-size: 0.925em;
}

.product-details__unit-price {
  margin-bottom: 5px;
}

.order-details__unit-price {
  display: block;
}

.product-details__unit-price,
.product-details__unit-price span {
  color: ;
}

.thumbnail-overlay .product-details__unit-price,
.thumbnail-overlay .product-details__unit-price span {
  color: ;
}

.cart__item--discount,
.meta.cart__item--discount .label {
  color: ;
  margin-top: 15px;
}

.cart_discounts {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.cart_discounts .cart_discounts--title {
  width: 60%;
  margin-right: 20px;
}

.cart_discounts .cart_discounts--price {
  width: calc(40% - 20px);
  text-align: right;
}

.cart__remove-btn {
  display: flex;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 10px;
}

.cart__remove-btn span.remove-text,
.cart__remove-btn span.remove-icon {
  color: ;
}

.cart__remove-btn:hover span,
.cart__remove-btn:active span {
  color: ;
}

@media only screen and (max-width: 1024px) {
  .cart__remove-btn .remove-text {
    display: none;
  }
}

.cart__remove-btn .remove-icon {
  margin-left: 5px;
}

.cart__remove-btn .remove-icon:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 1em;
  display: block;
  content: "×";
  color: #ffffff;
}

.cart .cart_subtotal {
  font-weight: bold;
  font-size: larger;
}

.cart_content .cart_subtotal {
  text-align: left;
  font-weight: bold;
}

.cart_content a,
.cart_content a:visited,
.cart_content a:hover,
.cart_content a .price,
.cart_content a .price span {
  color: 

  !important;
}

.cart_content a .price span {
  padding-left: 5px;
}

.cart_content ul {
  list-style: none;
  margin: 0;
  padding: 15px 20px;
}

.cart_content ul li {
  padding-left: 0;
  padding-right: 0;
}

.cart_content ul li:empty {
  margin-bottom: 0;
}

.cart_content ul li .cart_discounts--title {
  text-align: left;
}

.cart_content ul li {
  list-style: none;
  clear: both;
}

.mini_cart,
.top-bar [class^=icon-]:before,
.top-bar [class*=" icon-"]:before {
  font-size: 3px;
  margin-right: 0;
}

#customer_login,
#customer_login_guest {
  display: inline;
}

@media only screen and (max-width: 480px) {

  #customer_login,
  #customer_login_guest {
    display: block;
  }
}

input[type=submit].guest_button,
input[type=button].guest_button {
  color: ;
  box-shadow: none;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

input[type=submit].guest_button:hover,
input[type=button].guest_button:hover {
  background: transparent;
  border: 0;

  color: ;
}

@media only screen and (min-width: 799px) {

  input[type=submit].guest_button,
  input[type=button].guest_button {
    text-align: center;
  }
}

.menu ul li .mini_cart span {
  padding-left: 5px;
  top: -1px;
}

.dropdown_container {
  clear: both;
  width: 100%;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 798px) {
  .dropdown_container {
    position: relative;
    bottom: initial;
  }
}

.dropdown_container img {
  max-width: 100%;
}

.dropdown {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.dropdown_content {
  display: table;
  width: 100%;
  margin: 0 auto;
}

.dropdown_container.mega-menu .dropdown_content {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0 auto;
}

.mega-menu__richtext,
.mega-menu__image-caption-link {
  padding: 0 5px;
}

.mega-menu__richtext a,
.mega-menu__richtext a:active,
.mega-menu__richtext a:hover {
  display: inline-block;
  text-transform: none;
}

.mega-menu__image-caption-link {
  text-align: center;
  margin-bottom: 10px;
}

.mega-menu__image-caption-link a,
.mega-menu__image-caption-link a:visited,
.mega-menu__image-caption-link a:active,
.mega-menu__image-caption-link a:hover {
  text-decoration: none;
  text-transform: none;
  display: block;
}

.mega-menu__image-caption,
.mobile-mega-menu__image-caption {
  margin: 10px 0;
}

.dropdown_content a p,
.mobile-mega-menu a p {
  padding: 0;
}

.dropdown_content p,
.mobile-mega-menu p {

  font-family: 'GT Eesti Display',
  ,
;

font-size: px;

font-style: ;

color: ;
padding-top: 12px;
padding-bottom: 12px;
position: relative;
display: block;
text-rendering: optimizeLegibility;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
outline: 0;
margin-bottom: 0;
}

.dropdown_content p,
.dropdown_content a,
.dropdown_content a:hover,
.dropdown_content a:active {
  font-size: px;

  letter-spacing: px;
}

.dropdown_column__menu+.dropdown_column__menu {
  margin-top: 10px;
}

.dropdown_narrow {
  width: 60%;
}

.dropdown_column {
  display: table-cell;
  padding: 15px 20px 30px 20px;
  width: 16.666%;
  vertical-align: top;
}

.dropdown_column img {
  max-width: 100%;
}

.dropdown_column ul {
  margin: 0;
  padding: 0;
}

.dropdown_column ul.dropdown_title {
  border-bottom: solid 1px ;
  padding-bottom: 10px;
}

.dropdown_column ul.dropdown_item {
  text-align: center;
}

.dropdown_container.mega-menu .dropdown_column {
  display: inline-block;
  padding: 15px 20px 30px 20px;
  flex: 1 0 16.666%;
  flex-wrap: wrap;
  vertical-align: top;
}

.dropdown_column li {
  display: block;
}

.dropdown_column li a,
.dropdown_column li a:hover,
.dropdown_column li a:active {
  padding-bottom: 0;
  text-transform: none;
}

.dropdown_row {
  display: table-row;
}

select.currencies {
  border: 0 !important;
  background-color: transparent;
  margin-bottom: 0 !important;
  min-width: 65px;
  outline: 0;
  background-position: 96.5% 55%;
  background-size: 18px 12px;
  text-shadow: none !important;
  box-shadow: none !important;
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-appearance: none;
  appearance: none;
}

select.currencies:active {
  border: 0;
  outline: 0;
  text-shadow: 0;
  box-shadow: 0;
}

select.currencies option {
  color: ;
}select.currencies option {
  background: ;
}.menu li.currencies {
  padding: 0;
}

.container div.collection_nav {
  margin-bottom: 1.5em;
}

.register-form.container div.collection_nav {
  margin-bottom: 0;
  text-align: center;
}

.register-form.container h1 {
  font-size: 80px;
  text-align: center;
}

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

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

.sidebar-wrap {
  border-right: 1px solid ;
  margin-right: 10px;
  padding-right: 20px;
}

@media only screen and (max-width: 798px) {
  .sidebar-wrap {
    border: none;
    padding-right: 0;
  }
}

.sidebar a,
.sidebar a:visited {
  color: ;
}

.sidebar a:hover,
.sidebar a:active {
  color: ;
}

.sidebar .meta {
  margin-left: 2px;
}

.sidebar .spr-badge {
  color: ;
}

.sidebar .recently-viewed-list .brand {
  color: ;
}

.toggle-all--true h4.toggle {
  cursor: pointer;
  pointer-events: all;
}

.toggle-all--true .toggle span {
  display: block;
}

.content_block.toggle_list a {
  display: inline;
  position: static;
  padding-left: 0;
  margin-left: 0;
  border-left: none;

  color: ;
}

.content_block.toggle_list a:hover {
  border-left: none;

  color: ;
}

.toggle_list {
  margin: 0;
  padding: 10px 0 15px 0;
}

.toggle_list a {
  display: inline-block;
  position: relative;
  margin-left: 0;
  max-width: 80%;
  border-left: solid 2px transparent;
  transition: border 200ms ease-out;
}

.toggle_list a.active,
.toggle_list a.active--default {
  padding-left: 8px;

  border-left: solid 2px ;
}

ul.toggle_list li ul {
  display: none;
}

ul.toggle_list li ul.active {
  display: block;
}

.sidebar .toggle_list a.active {
  border-left: solid 9px ;
}

.toggle_list li {
  list-style: none;
  line-height: 1.4em;
  padding: 8px 0 8px 0;
}

.toggle_list .meta span {
  line-height: 2.5;
}

.sidebar_text {
  margin-bottom: 12px;
  padding-top: 10px;
}

.sidebar__content {
  border-left: solid 1px ;
  padding-left: 20px;
}

.sidebar__content .toggle_list li {
  line-height: 1.2;
}

.sidebar .newsletter {
  margin-bottom: 20px;
}

.sidebar .newsletter form {
  width: 100%;
}

.sidebar li ul {
  margin: 8px 0 0 15px;
}

.sidebar .toggle_list li ul {
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 0;
}

.sidebar input.newsletter-form__sign-up[type=submit],
.sidebar input.contact_email[type=email] {
  width: 100% !important;
  margin-left: 0;
}

.blog_search {
  position: relative;
}

.sidebar-block {
  position: relative;
  height: var(--closed-height, auto);
  overflow: hidden;
  padding-left: var(--sidebar-left-safe-area);
}

.sidebar-block::after {
  content: "";
  position: absolute;
  height: 1px;
  right: 0;
  bottom: 0;
  left: var(--sidebar-left-safe-area);

  background: ;
}

.sidebar-block[open] {
  height: var(--open-height, auto);
}

.sidebar-block[data-sidebar-block-state=closed] {
  height: var(--closed-height, auto);
}

.sidebar-block[data-sidebar-block-animation="closed=>open"] {
  transition: height 250ms ease-in-out;
}

.sidebar-block[data-sidebar-block-animation="open=>closed"] {
  transition: height 200ms ease-in-out;
}

.sidebar-block[data-sidebar-block-state=open] {
  height: var(--open-height, auto);
}

.sidebar>.sidebar-block:last-child {
  border-bottom: none;
}

.sidebar-block:empty {
  border-bottom: none;
  display: none;
}

.sidebar-block:blank {
  border-bottom: none;
}

.sidebar .filter-active-tag {
  position: relative;
}

.color-filter--true label {
  display: flex;
  align-items: center;
}

.sidebar__collection-filter a,
.sidebar__collection-filter label {
  cursor: pointer;
}

.sidebar__collection-filter label {
  text-transform: none;
  font-weight: normal;
  font-size: inherit;
}

.sidebar__collection-filter label:hover {
  color: ;
}

.sidebar__collection-filter input[type=checkbox] {
  display: none;
}

.sidebar__collection-filter input.styled-checkbox[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  vertical-align: top;
  background-size: cover;
  margin-right: 15px;
}.sidebar__collection-filter input.styled-checkbox[type=checkbox] {
  border-radius: 50%;
}.sidebar__collection-filter button.clear-active-filter,
.sidebar__collection-filter button.clear-active-filter:active {
  color: ;
  background-color: transparent;
  border: none;
  outline: 0;
  box-shadow: 0;
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  right: 0;
  left: auto;
  padding: 2px 4px;
  line-height: 1.2;
  display: block;
  height: auto;
  min-height: auto;
}

.sidebar__collection-filter button.clear-active-filter:hover {
  color: ;
}

.sidebar__collection-filter .x-icon,
.faceted-filter-form .x-icon {
  position: relative;
  display: inline-block;
  overflow: visible;
  width: 15px;
  height: 15px;
  margin: 0 2px 0 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  font-style: normal;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
  vertical-align: middle;
  top: -1px;
}

.sidebar__collection-filter .x-icon:before,
.faceted-filter-form .x-icon:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 15px;
  content: "×";
  text-align: center;
}

::-webkit-input-placeholder {
  color: #3F409A;
}

:-moz-placeholder {
  color: #3F409A;
}

::-moz-placeholder {
  color: #3F409A;
}

:-ms-input-placeholder {
  color: #3F409A;
}

.featured_collections.sub-collection {
  margin-bottom: 10px;
}

.featured_collections.sub-collection .thumbnail {
  margin-bottom: 10px;
}

@media only screen and (max-width: 798px) {
  .featured_collections.sub-collection .thumbnail {
    width: 100%;
  }
}

.sub-collection--2 .thumbnail {
  width: calc(50% - 20px);
}

.sub-collection--2 .thumbnail:nth-child(2n+1) {
  clear: both;
}

.sub-collection--3 .thumbnail {
  width: calc(33.33333% - 20px);
}

.sub-collection--3 .thumbnail:nth-child(3n+1) {
  clear: both;
}

.sub-collection--4 .thumbnail {
  width: calc(25% - 20px);
}

.sub-collection--4 .thumbnail:nth-child(4n+1) {
  clear: both;
}

.list-collections-wrapper img[src*="/no-image"]~.thumbnail-overlay {
  opacity: 1 !important;
}

.list-collections-wrapper img[src*="/no-image"]~.thumbnail-overlay .collection-details {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 798px) {
  .list-collections-wrapper img[src*="/no-image"]~.collection-info__caption {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
}

.list-collections-wrapper .img {
  width: 100%;
}

.list-collections-wrapper .collection-info__caption {
  margin-top: 20px;
}@media only screen and (max-width: 798px) {
  .list-collections-wrapper .collection-info__caption {
    display: block;
    position: static;
  }
}.blog-header {
  margin-bottom: 5px;
}

@media only screen and (max-width: 798px) {
  .blog-header .blog-title {
    width: 100%;
    margin-bottom: 0;
  }
}

.article .icon-slash {}

.section_select {
  padding: 0;
  text-align: right;
}

.section_select .blog_filter,
.section_select .tag_filter,
.section_select .sort_by {
  color: ;
  display: inline-block;
  border: none;
  padding-right: 30px;
  background-position: 100% 50%;

  background-color: ;

font-weight: ;

font-style: ;

font-size: px;

text-transform: ;
width: auto;
margin-bottom: 0;
max-width: 80%;
}

@media only screen and (max-width: 798px) {

  .section_select .blog_filter,
  .section_select .tag_filter,
  .section_select .sort_by {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding-left: 0;
  }
}

div.breadcrumb-collection {
  margin: 20px 0;
}

div.breadcrumb-collection.breadcrumb-collection--product {
  margin: 0;
}

@media only screen and (max-width: 798px) {
  div.breadcrumb-collection {
    text-align: center;
  }
}

.breadcrumb_text,
.article-pagination {
  margin-top: 0px;
  text-transform: uppercase;

  font-size: -4px;
  margin-bottom: 0;
}

@media only screen and (max-width: 798px) {

  .breadcrumb_text,
  .article-pagination {
    margin-top: 0;
  }
}

.breadcrumb_text .breadcrumb-divider,
.article-pagination .breadcrumb-divider {
  color: ;
  margin: 0 5px;
}

.breadcrumb_link:hover span {
  color: ;
}

.breadcrumb {
  font-size: -1px;
}

@media only screen and (max-width: 798px) {
  .breadcrumb {
    margin-bottom: 20px;
  }
}

.breadcrumb__wrapper {
  padding-bottom: 20px;
}

.product_row img,
.product_image_col img,
.article img,
.section img,
.thumbnail img,
.page img,
.sidebar img,
.logo img,
.cart_image img,
.footer img,
#target img,
.column img,
.columns img {
  max-width: 100%;
  height: auto;
}

.image-crop--left img,
.image-crop--left .image-element__wrap {
  object-fit: cover;
  object-position: left;
  height: 100% !important;
}

.image-crop--right img,
.image-crop--right .image-element__wrap {
  object-fit: cover;
  object-position: right;
  height: 100% !important;
}

.image-crop--center img,
.image-crop--center .image-element__wrap {
  object-fit: cover;
  height: 100% !important;
}

.zoom-container {
  display: block;
}

.placeholder-svg {
  fill: ;

  background-color: ;
  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 {
  height: 500px;
}

@media only screen and (max-width: 798px) {

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

@media only screen and (max-width: 480px) {

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

.shopify-section--featured-promotions .feature-section:nth-child(even) .placeholder-svg--promotions {
  background-color: ;
}

.image-with-text-section .featured-link--image:nth-child(odd) .placeholder-svg--promotions {
  background-color: ;

  fill: ;
}

.homepage-slideshow .flickity-slider .gallery-cell:nth-child(2n+1) .placeholder-svg--slideshow {
  background-color: ;
}

.homepage-slideshow .flickity-slider .gallery-cell:nth-child(2n) .placeholder-svg--slideshow {
  background-color: ;
}

.video-wrapper {
  position: relative;

  background-color: ;
}

.video-wrapper .video__overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  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 {
  display: block;
  width: 100%;
  height: auto;
}

.video-wrapper .video__text-container {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  margin: auto;
  z-index: 2;
  pointer-events: none;
}

.video-wrapper .video__text-wrapper {
  margin: 0;
  padding: 30px;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 798px) {
  .video-wrapper {
    display: flex;
    flex-direction: column;
  }
}

.global-button,
product-cta,
.custom-html-container button,
.shopify-payment-button__button.shopify-payment-button__button--unbranded,
.sidebar .faceted-active-filters__clear,
.sidebar .faceted-active-filters__remove-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  padding: 13px 20px;
  text-align: center;
  line-height: 1.2;

font-weight: ;

font-style: ;

font-size: px;

text-transform: ;

letter-spacing: px;
word-break: break-word;
cursor: pointer;
transition: all 0.2s linear;

border-color: var(--button-color-border, );

background: var(--button-color-background, );

color: var(--button-color-text, );
}.global-button,
product-cta,
.custom-html-container button,
.shopify-payment-button__button.shopify-payment-button__button--unbranded,
.sidebar .faceted-active-filters__clear,
.sidebar .faceted-active-filters__remove-filter {
  border-radius: 0;
}.global-button:visited,
product-cta:visited,
.custom-html-container button:visited,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:visited,
.sidebar .faceted-active-filters__clear:visited,
.sidebar .faceted-active-filters__remove-filter:visited {
  color: var(--button-color-text, );
}

.global-button:hover:not([disabled]),
.global-button:active,
product-cta:hover:not([disabled]),
product-cta:active,
.custom-html-container button:hover:not([disabled]),
.custom-html-container button:active,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:hover:not([disabled]),
.shopify-payment-button__button.shopify-payment-button__button--unbranded:active,
.sidebar .faceted-active-filters__clear:hover:not([disabled]),
.sidebar .faceted-active-filters__clear:active,
.sidebar .faceted-active-filters__remove-filter:hover:not([disabled]),
.sidebar .faceted-active-filters__remove-filter:active {
  background: var(--button-color-background-hover, var(--button-color-background, ));

border-color: var(--button-color-border-hover, var(--button-color-border, ));

color: var(--button-color-text-hover, var(--button-color-text, ));
}

.global-button:active,
product-cta:active,
.custom-html-container button:active,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:active,
.sidebar .faceted-active-filters__clear:active,
.sidebar .faceted-active-filters__remove-filter:active {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  outline: 0;
}

.global-button[disabled],
product-cta[disabled],
.custom-html-container button[disabled],
.shopify-payment-button__button.shopify-payment-button__button--unbranded[disabled],
.sidebar .faceted-active-filters__clear[disabled],
.sidebar .faceted-active-filters__remove-filter[disabled] {
  cursor: not-allowed;
}

.global-button--product-grid-text-hover {
  --button-color-border: ;
  --button-color-background: transparent;

  --button-color-text: ;

  --button-color-border-hover: ;

  --button-color-background-hover: ;

  --button-color-text-hover: 

  
#ffffff

  

  ;
}

@media only screen and (min-width: 481px) {
  .global-button--primary-desktop {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: ;
  }

  .global-button--secondary-desktop {
    --button-color-border: ;
    --button-color-background: transparent;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: ;
  }

  .global-button--text-desktop {
    --button-color-border: ;
    --button-color-background: transparent;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--text-highlighted-desktop {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: 

  
#ffffff

  

  ;

    --button-color-border-hover: 

  


  

  ;

    --button-color-background-hover: 

  


  

  ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--banner-text-desktop {
    --button-color-border: ;
    --button-color-background: transparent;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--banner-text-highlighted-desktop {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: 

  
#ffffff

  

  ;

    --button-color-border-hover: 

  


  

  ;

    --button-color-background-hover: 

  


  

  ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--banner-desktop {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: ;
  }

  .global-button--banner-highlighted-desktop {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: 

  
#ffffff

  

  ;

    --button-color-border-hover: 

  


  

  ;

    --button-color-background-hover: 

  


  

  ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }
}

@media only screen and (max-width: 480px) {
  .global-button--primary-mobile {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: ;
  }

  .global-button--secondary-mobile {
    --button-color-border: ;
    --button-color-background: transparent;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: ;
  }

  .global-button--text-mobile {
    --button-color-border: ;
    --button-color-background: transparent;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--text-highlighted-mobile {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: 

  
#ffffff

  

  ;

    --button-color-border-hover: 

  


  

  ;

    --button-color-background-hover: 

  


  

  ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--banner-text-mobile {
    --button-color-border: ;
    --button-color-background: transparent;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--banner-text-highlighted-mobile {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: 

  
#ffffff

  

  ;

    --button-color-border-hover: 

  


  

  ;

    --button-color-background-hover: 

  


  

  ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--banner-mobile {
    --button-color-border: ;
    --button-color-background: transparent;

    --button-color-text: ;

    --button-color-border-hover: ;

    --button-color-background-hover: ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }

  .global-button--banner-highlighted-mobile {
    --button-color-border: ;

    --button-color-background: ;

    --button-color-text: 

  
#ffffff

  

  ;

    --button-color-border-hover: 

  


  

  ;

    --button-color-background-hover: 

  


  

  ;

    --button-color-text-hover: 

  
#ffffff

  

  ;
  }
}

.global-button--primary {
  --button-color-border: ;

  --button-color-background: ;

  --button-color-text: ;

  --button-color-border-hover: ;

  --button-color-background-hover: ;

  --button-color-text-hover: ;
}

.global-button--secondary {
  --button-color-border: ;
  --button-color-background: transparent;

  --button-color-text: ;

  --button-color-border-hover: ;

  --button-color-background-hover: ;

  --button-color-text-hover: ;
}

.global-button--text {
  --button-color-border: ;

  --button-color-background: ;

  --button-color-text: ;

  --button-color-border-hover: ;

  --button-color-background-hover: ;

  --button-color-text-hover: ;
}

.global-button--text-highlighted {
  --button-color-border: ;

  --button-color-background: ;

  --button-color-text: 

  
#ffffff

  

  ;

  --button-color-border-hover: 

  


  

  ;

  --button-color-background-hover: 

  


  

  ;

  --button-color-text-hover: 

  
#ffffff

  

  ;
}

.global-button--banner-text {
  --button-color-border: ;
  --button-color-background: transparent;

  --button-color-text: ;

  --button-color-border-hover: ;

  --button-color-background-hover: ;

  --button-color-text-hover: 

  
#ffffff

  

  ;
}

.global-button--banner-text-highlighted {
  --button-color-border: ;

  --button-color-background: ;

  --button-color-text: 

  
#ffffff

  

  ;

  --button-color-border-hover: 

  


  

  ;

  --button-color-background-hover: 

  


  

  ;

  --button-color-text-hover: 

  
#ffffff

  

  ;
}

.global-button--banner {
  --button-color-border: ;

  --button-color-background: ;

  --button-color-text: ;

  --button-color-border-hover: ;

  --button-color-background-hover: ;

  --button-color-text-hover: ;
}

.global-button--banner-highlighted {
  --button-color-border: ;

  --button-color-background: ;

  --button-color-text: 

  
#ffffff

  

  ;

  --button-color-border-hover: 

  


  

  ;

  --button-color-background-hover: 

  


  

  ;

  --button-color-text-hover: 

  
#ffffff

  

  ;
}

product-cta[hidden] {
  display: none;
}

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

button.add_to_cart {
  position: relative;
  min-width: 250px;
  padding-top: 14px;
  padding-bottom: 12px;
}

button.add_to_cart .text {
  width: 100%;
  animation-duration: 0.5s;
  display: inline;
  width: fit-content;
  position: relative;
  margin-left: -30px;
}

.product_form button.add_to_cart .text::after {
  content: ' 👉 ';
  font-size: 28px;
  position: absolute;
  top: -60%;
  left: 106%;
}

button.add_to_cart .fadeInDown.text {
  animation-duration: 0.8s;
}

button .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

button .checkmark path {
  stroke-dasharray: 19.79 19.79;
  stroke-dashoffset: 19.79;

  stroke: ;
  opacity: 0;
}

button .checkmark.checkmark-active path {
  animation: drawCheckmark 0.5s linear alternate forwards;
}

@keyframes drawCheckmark {
  from {
    stroke-dashoffset: 19.79;
    opacity: 1;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.ie button .checkmark path {
  stroke-dashoffset: 0;
  opacity: 0;
}

.ie button .checkmark.checkmark-active path {
  animation: fadeCheckmark 0.5s linear alternate forwards;
}

@keyframes fadeCheckmark {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  button .checkmark path {
    stroke-dashoffset: 0;
    opacity: 0;
  }

  button .checkmark.checkmark-active path {
    animation: fadeCheckmark 0.5s linear alternate forwards;
  }

  @keyframes fadeCheckmark {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
  }
}
}

label.tos_label {
  display: inline;
  font-weight: normal;
  text-transform: none;
  cursor: pointer;
  padding-left: 5px;
}

.tos {
  text-align: center;
  margin: 15px 20px 15px 0;
}

.cart_text {
  text-align: center;
}

.disabled {
  pointer-events: none;
}

.add_to_cart span.icon-lock {
  margin-right: 10px;
  font-size: larger;
}

.add_to_cart span.icon-lock:before {
  margin: 0;
}

.shopify-product-form {
  margin-bottom: 0;
}

.shopify-payment-button {
  position: relative;
  height: 44px;
}

.shopify-payment-button div {
  height: 100%;
}

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

button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
  height: 100%;
}div.shopify-payment-button__button {
  border-radius: 0;
}.shopify-payment-button__button--branded,
.shopify-payment-button__button--unbranded {
  overflow: hidden;
  min-height: 44px;
}

button.shopify-payment-button__more-options {
  color: ;
  box-shadow: none;
  text-transform: none;
  font-size: 0.8rem;
  letter-spacing: 0;
  padding: 16px 0 28px;
  max-width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 50%;
  font-weight: normal;

  font-family: 'GT Eesti Display',
  ,
;

font-style: ;
transform: translateX(-50%);
}

button.shopify-payment-button__more-options:hover {
  background-color: transparent;
  border: none;
}

.purchase-details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.purchase-details>.flex {
  gap: 6px;
  width: 100%;
}

.purchase-details .action-container {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.shopify-payment-button__button--unbranded .purchase-details {
  padding: 0 !important;
}

.product_section .smart-payment-button--true.product_form {
  max-width: 100%;
}

.smart-payment-button--true .purchase-details {
  padding-bottom: 40px;
}

.smart-payment-button--true .purchase-details .shopify-payment-button__button--branded {
  padding-bottom: 30px;
}

.smart-payment-button--true .purchase-details .shopify-payment-button__more-options {
  top: 70%;
}

.smart-payment-button--true button .checkmark path {
  stroke: ;
}

.smart-payment-button--false .purchase-details {
  max-width: 500px;
  width: fit-content;
  margin-top: 5px;
}

@media only screen and (max-width: 798px) {
  .smart-payment-button--false {
    margin-bottom: 20px;
  }
}

.product-quantity-box.purchase-details__quantity {
  margin-right: 5px;
}

@media only screen and (min-width: 799px) {
  .purchase-details {
    row-gap: 20px;
    padding-top: 15px;
  }
}

.product-quantity-box.purchase-details__quantity input.quantity {
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 1.4;
  min-height: 44px;
  margin-bottom: 0;
  width: 60px;
  color: #3F409A;
  font-size: 16px;
  font-weight: 700;
  border-color: #2e2f7d !important;
  border-right: none;
  border-left: none;
}

.smart-payment-button--true .product-quantity-box.purchase-details__quantity {
  width: calc(50% - 6px);
}

@media only screen and (max-width: 798px) {
  .smart-payment-button--true .product-quantity-box.purchase-details__quantity {
    width: 100%;
    margin-right: 0;
  }

  .smart-payment-button--true .product-quantity-box.purchase-details__quantity .input.quantity {
    width: calc(100% - 88px);
  }
}

p.checkout_button {
  margin-bottom: 0;
}

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

.purchase-details__buttons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.quantity-box-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

@media only screen and (max-width: 1024px) {
  .quantity-box-container { }}

@media only screen and (max-width: 798px) {
  .purchase-details__buttons {}

  .quantity-box-container { }}

@media only screen and (max-width: 480px) {
  .purchase-details__buttons {}

  .quantity-box-container { }}

.purchase-details__buttons .shopify-payment-button {
  flex: 1 0 100%;
  margin-bottom: 0;
  max-width: 100%;
}

@media only screen and (min-width: 1401px) {
  .purchase-details__buttons .shopify-payment-button {
    flex: 1 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }
}

.purchase-details__buttons product-cta {
  flex: 1 0 50%;
  max-width: calc(50% - 6px);
  margin-left: 6px;
}

@media only screen and (max-width: 798px) {
  .purchase-details__buttons product-cta {
    flex: 1 0 100%;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }
}

.purchase-details__buttons.purchase-details__spb--true {
  flex: 1 0 100%;
  margin-top: 10px;
  margin-left: 0;
}

@media only screen and (max-width: 798px) {
  .purchase-details__buttons.purchase-details__spb--true {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.purchase-details__buttons.purchase-details__spb--true .add_to_cart {
  flex: 1 0 50%;
  max-width: calc(50% - 6px);
}

@media only screen and (max-width: 798px) {
  .purchase-details__buttons.purchase-details__spb--true .add_to_cart {
    flex: 1 0 100%;
    margin-right: 0px;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }
}

.purchase-details__buttons.purchase-details__spb--true .shopify-payment-button {
  margin-left: 6px;
  max-width: calc(50% - 6px);
}

@media only screen and (max-width: 798px) {
  .purchase-details__buttons.purchase-details__spb--true .shopify-payment-button {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }
}

.purchase-details__buttons.product-is-unavailable .add_to_cart,
.purchase-details__buttons.product-is-unavailable .shopify-payment-button {
  opacity: 0.5;
  pointer-events: none;
}

.purchase-details__buttons.product-is-unavailable .add_to_cart {
  padding: 10px 5px;
}

@media only screen and (max-width: 1024px) {
  .sidebar--true .purchase-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .sidebar--true .purchase-details .purchase-details__quantity,
  .sidebar--true .purchase-details .purchase-details__buttons {
    margin: 0 0 10px;
    width: 100%;
  }

  .sidebar--true .purchase-details .add_to_cart,
  .sidebar--true .purchase-details .shopify-payment-button {
    flex: 1 0 100%;
    margin: 0 0 10px;
    max-width: 100%;
  }
}

#checkout {
  min-height: 54px;
}

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

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

ul.tabs {
  display: block;
  margin: 25px 0;

  border-bottom: solid 1px ;
  border-top: 0;
  list-style: none outside;
  margin-left: 0;
  text-transform: uppercase;
  padding-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;
  cursor: pointer;
}

ul.tabs li a {
  display: block;
  text-decoration: none;
  width: auto;
  height: 29px;
  line-height: 30px;
  margin-right: 60px;
  font-size: 13px;
  outline: none;
}

@media (max-width: 960px) {
  ul.tabs li a {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 798px) {
  ul.tabs li a {
    font-size: 12px;
  }
}

@media only screen and (max-width: 480px) {
  ul.tabs li a {
    margin-right: 20px;
  }
}

ul.tabs li a.active {
  border-bottom: solid 3px ;

  background-color: ;

  border-bottom: solid 3px ;
  height: 31px;
  position: relative;
  border-right-width: 1px;

  color: ;
}

ul.tabs li:last-child a {
  margin: 0;
}

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

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

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

ul.tabs-content ul {
  padding-left: 0;
}

button {
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

.shopify-section--faq .faqAccordion>dt {}

.accordion>dt>a,
.accordion>dt>button,
.faqAccordion>dt>a,
.faqAccordion>dt>button {
  background: transparent;
  position: relative;
  padding: 24px 20px 24px 40px;

  color: ;

  border-bottom: 1px solid ;
  text-align: left;
  display: block;
  cursor: pointer;
  width: 100%;
  outline: none;
  text-transform: initial;
  min-height: auto;
  height: auto;
  line-height: inherit;
  font-weight: bold;

  font-family: 'GT Eesti Display',
  ,
;

font-style: ;
box-shadow: none;
border-radius: 0px;
font-size: 18px;
}

.accordion>dt>a:hover,
.accordion>dt>a:focus,
.accordion>dt>button:hover,
.accordion>dt>button:focus,
.faqAccordion>dt>a:hover,
.faqAccordion>dt>a:focus,
.faqAccordion>dt>button:hover,
.faqAccordion>dt>button:focus {
  background: ;
  border: none;

  border-bottom: 1px solid ;
}

.accordion>dt>a::after,
.accordion>dt>button::after,
.faqAccordion>dt>a::after,
.faqAccordion>dt>button::after {
  transform: translateY(-50.1%);
  position: absolute;
  top: 50%;
  left: 15px;
  font-size: 25px;
  content: "+";

  color: ;
}

.accordion>dt>a[aria-expanded=true]::after,
.accordion>dt>button[aria-expanded=true]::after,
.faqAccordion>dt>a[aria-expanded=true]::after,
.faqAccordion>dt>button[aria-expanded=true]::after {
  content: "-";
  font-size: 30px;
}

.accordion>dt:first-child>button,
.faqAccordion>dt:first-child>button {
  border-top: none;
}

.accordion>dd,
.faqAccordion>dd {
  color: ;
  padding: 20px 0px 20px 0px;
  display: none;
}

.accordion>dd[aria-hidden=true],
.faqAccordion>dd[aria-hidden=true] {
  display: none;
}

@media only screen and (max-width: 798px) {

  .accordion>dd,
  .faqAccordion>dd {
    margin-left: 15px;
  }
}

.accordion dt small {
  display: none;
}

.accordion-tabs>a {
  display: block;
  background-color: #D1D3D4;
  margin: 10px 0;
  padding: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
}

.accordion-tabs>a :hover {
  cursor: pointer;
}

.accordion-tabs>li[id*=tab] {
  display: none;
  list-style: none;
}

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

form {
  margin-bottom: 20px;
}

fieldset {
  margin-bottom: 20px;
}

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],
select,
textarea {
  display: block;
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 0 10px;
  margin: 0;
  line-height: 22px;

  border: 1px solid ;
  outline: none;
  background: #fff;
  color: #5f6a7d;
  font: 13px "HelveticaNeue-Light",
  "Helvetica Neue Light",
  "Helvetica Neue",
  Helvetica,
  Arial,
  sans-serif;
  margin-bottom: 15px;
  -webkit-appearance: none;
  appearance: none;
  text-rendering: optimizeLegibility;
}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],
select,
textarea {
  border-radius: 22px;
}@media only screen and (max-width: 480px) {

  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],
  select,
  textarea {
    font-size: 16px;
  }
}

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,
select:active,
select:focus,
textarea:active,
textarea:focus {
  color: #444;
  border: 1px solid #aaa;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

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

input[type=number] {
  -moz-appearance: textfield !important;
}

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

select {
  background: #fff url(//www.beginhealth.com/cdn/shop/t/66/assets/select.png?v=51992501115514909491703708156) no-repeat 96% 50%;
  background-size: 18px 12px;
  border: 1px solid #d9dbdc;
  -webkit-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}select {
  padding: 8px 14px 8px;
  border-radius: 3px;
}label,
legend,
.option_title {
  display: block;
  font-weight: bold;
  font-size: 13px;
  text-align: left;
  margin-bottom: 5px;

  text-transform: ;
}

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

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

textarea {
  min-height: 120px;
  padding: 15px 9px;
}

.acceptsMarketing {
  margin-bottom: 20px;
}

.acceptsMarketing label {
  display: inline;
  margin-left: 5px;
}

input.newsletter-form__sign-up[type=submit] {
  margin-left: 5px;
  display: inline-block;
}

input.contact_email[type=email] {
  width: 320px;
  display: inline-block;
  float: left;
}

div.container.contact-form-container {
  padding-top: 0;
}

.contact-form .contact-form__content {
  margin-bottom: 20px;
}

.contact-form label,
.custom-contact-form label,
#create-customer label,
#login_form label {
  margin-top: 8px;
  font-size: 16px;
}

.contact-form ul li label,
.custom-contact-form ul li label {

  font-family: 'GT Eesti Display',
  ,
;

text-transform: ;

font-weight: ;
}

.contact-form__heading {
  margin-left: 10px;
  margin-right: 10px;
}

.contact__form-errors,
.contact__form-success {
  width: 100%;
}

.contact__form-name {
  margin-right: 20px;
}

@media only screen and (max-width: 798px) {
  .contact__form-name {
    margin-right: 0;
  }
}

.contact__form-name,
.contact__form-email {
  flex: 1 1 auto;
}

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

.contact-form__position--right,
.custom-contact-form__position--right {
  flex-direction: row-reverse;
}

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

.custom-contact-form .contact-block {
  margin-bottom: 20px;
}

.custom-contact-form .custom-contact-form__image {
  margin-bottom: 20px;
}

.custom-contact-form .custom-contact-form__social .social_icons {
  padding: 0;
  margin-bottom: 40px;
}

.custom-contact-form .custom-contact-form__logo {
  max-width: 150px;
  margin: 0 auto 20px auto;
}

.custom-contact-form .contact-block.contact-block--richtext label p {
  display: inline;
}

.custom-contact-form .contact-block--custom ul {
  padding: 0;
  margin: 0;
}

.custom-contact-form .contact-block--custom ul li {
  margin-bottom: 8px;
  list-style: none;
  display: flex;
  align-items: baseline;
}

.custom-contact-form .contact-block--custom ul li input {
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.custom-contact-form .contact-block--custom ul li label {
  margin-bottom: 0;
}

.custom-contact-form .contact-block--custom ul li:last-child label {
  margin-bottom: 0;
}

.page-contact .footer {
  margin-top: 0;
}

.page-contact .custom-contact-form {
  margin-top: 25px;
}

#target {
  padding: 20px;
  text-align: center;
}

.items_left {
  color: ;
}

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

.remove_item a {
  font-size: smaller;

  color: ;
}

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

ul.cart_items {
  padding-top: 0;
  padding-bottom: 0;
}

.cart_content li.mini-cart__item {
  padding: 0 0 15px 0;
  margin-bottom: 15px;

  border-bottom: 1px solid ;
}

.cart_content .notification-discount {
  color: ;
  margin: 0;
  line-height: 1;
}

li.mini-cart__item a,
li.mini-cart__item a:active,
#header li.mini-cart__item a,
#header li.mini-cart__item a:active {
  position: relative;
  font-size: inherit;
  text-align: left;
}

li.mini-cart__item a {
  align-items: flex-start;
}

.cart_image {
  float: left;
  width: 100%;
  max-width: 100px;
  min-width: 100px;
  text-align: center;
  padding-right: 20px;
}

.cart_image img {
  display: block;
}

@media only screen and (max-width: 480px) {
  .cart_image {
    padding-right: 10px;
  }
}

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

a.continue:hover {
  opacity: 1;
}

.empty_cart {
  text-align: center;
  font-size: 18px;
  padding: 40px 0 10px 0;
  color: inherit;
}

.cart__blocks {
  margin-top: 30px;
}

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

#customer_login {
  margin-bottom: 2px;
}

.multi_select,
.default_select {
  display: none;
}

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

@media only screen and (max-width: 798px) {

  .product_section.media-position--left,
  .product_section.media-position--right {
    flex-direction: column;
  }
}

.vendor {
  margin-bottom: 6px;
}

.section.product_section {
  margin-top: 0;
}

.product-main {
  width: 100%;
}

.product_section .description {
  margin: 20px 0 15px;
}

.modal_price {
  padding-bottom: 8px;
  display: block;
}

.product_section .description.bottom {
  margin-top: 15px;
  border-bottom: none;
}

.product-links {
  margin-bottom: 8px;
  font-size: 0.9em;

  border-top: 1px solid ;
  padding: 10px 0 5px 0;
}

.product-links p {
  margin: 2px 0;
}

.social_buttons {
  border-top: 1px solid ;
  padding-top: 20px;
  font-size: 1em;
  margin-bottom: 25px;
}

@media only screen and (max-width: 798px) {
  .social_buttons {
    text-align: center;
  }
}

.share_article .social_buttons {
  border-top: none;
  padding-top: 0;
}

@media only screen and (max-width: 798px) {
  .share_article .social_buttons {
    padding-top: 15px;
  }
}

.share-btn {
  display: inline-block;
  text-align: center;
  font-size: 1.2em;
  margin-right: 6px;
  margin-bottom: 10px;
}

.share-btn a {
  color: #fff;
  padding: 10px 10px 8px 10px;
  border: solid 1px #e2e2e2;
  display: inline-block;
  transition: all 500ms ease 0s;
}.share-btn a {
  border-radius: 100px;
  width: 44px;
  height: 44px;
}.icon-twitter-share:before {
  color: #09AEEC;
}

.icon-twitter-share:hover {
  background-color: #09AEEC;
  border-color: #09AEEC;
  color: #fff;
}

.icon-twitter-share:hover:before {
  color: #fff;
}

.icon-facebook-share:before {
  color: #49659D;
}

.icon-facebook-share:hover {
  background-color: #49659D;
  border-color: #49659D;
  color: #fff;
}

.icon-facebook-share:hover:before {
  color: #fff;
}

.icon-pinterest-share:before {
  color: #CB1F2A;
}

.icon-pinterest-share:hover {
  background-color: #CB1F2A;
  border-color: #CB1F2A;
  color: #fff;
}

.icon-pinterest-share:hover:before {
  color: #fff;
}

.icon-mail-share:before {
  color: #888;
}

.icon-mail-share:hover {
  background-color: #888;
  border-color: #888;
  color: #fff;
}

.icon-mail-share:hover:before {
  color: #fff;
}

.product-quantity-box .quantity,
.product-quantity-box .quantity:focus,
.product-quantity-box .product-plus,
.product-quantity-box .product-minus {
  border: #e2e2e2 1px solid;
  color: #000;
}

.product-quantity-box label {
  margin-bottom: 0.5em;
}

.product-quantity-box {
  margin-right: 0;
  -webkit-user-select: none;
  user-select: none;
}

.product-quantity-box label {
  text-align: left;
}

.product-quantity-box .quantity {
  text-align: center;
  padding: 6px 15px;
  width: 38%;
  height: 44px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  float: left;
}

@media only screen and (max-width: 798px) {
  .product-quantity-box .quantity {
    width: calc(100% - 88px);
  }
}

.product-quantity-box .product-plus,
.product-quantity-box .product-minus {
  background: white;
  font-weight: 300;
  position: relative;
  cursor: pointer;
  height: 44px;
  display: block;
  width: 44px;
  text-align: center;
  float: left;
  color: #3F409A;
  display: flex;
  justify-content: center;
  align-items: center;
  stroke: #3F409A;
  fill: #3F409A;
  border-color: #3F409A;
}

.product-quantity-box .product-plus {
  border-left: none;
}

.product-quantity-box .product-minus {
  border-right: none;
}

.product-quantity-box+.inline_purchase {
  margin-top: 31.5px;
  width: 55%;
  float: left;
}

.product_section .product_form,
.product_section .contact-form {}

@media only screen and (max-width: 798px) {

  .product_section .product_form,
  .product_section .contact-form {
    max-width: 100%;
  }
}

.article,
.article_image {
  margin-bottom: 30px;
}

.sidebar .sidebar__content .input-row {
  flex-direction: column;
  margin-left: 0px;
  margin-right: 0px;
}

.sidebar .sidebar__content .input-row input {
  margin: 5px 0;
}

.blog-template-wrapper {
  width: 100%;
}

.blog-article__main.sidebar-enabled--false {
  width: 75%;
}

@media only screen and (max-width: 798px) {
  .blog-article__main.sidebar-enabled--false {
    width: 100%;
  }
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
}

.comment-form__name {
  margin-right: 20px;
}

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

.comment-form__name,
.comment-form__email {
  flex: 1 1 auto;
}

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

.comment-form__submit-button {
  width: 100%;
}

.blog__read-more-button {
  margin: 25px 0;
}

.blog__author,
.blog__comment-author {
  margin-bottom: 20px;
  flex: 1 1 auto;
}

.blog__author-name,
.blog__comment-author-name {
  padding: 0;
}

.blog__author-image,
.blog__comment-author-image {
  min-width: 80px;
  height: 80px;
}

.blog__author-image img,
.blog__comment-author-image img {
  border-radius: 50px;
}

.blog__comment-author-bio {
  flex: 1 1 auto;
}

.blog__author-bio,
.blog__comment-author-bio {
  margin-left: 20px;
}

.blog-post-image-wrapper {
  display: block;
}

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

.sidebar__content {
  margin-left: 10px;
  margin-right: 10px;
}

@media only screen and (max-width: 798px) {
  .sidebar {
    width: 100% !important;
  }

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

.newsletter {
  margin: 0px auto;
  max-width: 640px;
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  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;
  max-height: 40px;
}

@media only screen and (max-width: 1024px) {
  .input-row input {
    margin: 5px 0;
  }
}

.input-row input.newsletter-form__sign-up {
  display: inline-block;
  flex: none;
  max-height: 44px;
}

@media only screen and (max-width: 798px) {
  .input-row input.newsletter-form__sign-up {
    width: 100%;
  }
}

.newsletter-both-names--true input.firstName {
  margin-right: 5px;
}

.js-newsletter-popup {
  display: none;
  border-radius: 25px;
}

.newsletter__lightbox .fancybox-content {
  width: 100%;
  max-width: 740px;
  padding: 0;
}@media only screen and (max-width: 480px) {
  .newsletter__lightbox .fancybox-close-small {
    display: block;
  }
}

@media only screen and (max-width: 798px) {
  .newsletter__lightbox .fancybox-close-small svg path {
    fill: white;
  }
}.newsletter__lightbox .fancybox-toolbar {
  display: none;
}

.newsletter-popup {
  display: flex;

  background-color: ;
  padding: 0;
  width: 100%;
}@media only screen and (max-width: 798px) {
  .newsletter-popup {
    line-height: 0;
    flex-direction: column;
  }
}

@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .popup-signup-show--true input.newsletter-form__sign-up {
    margin-left: 0px;
  }
}

.popup-signup-show--false {
  display: none;
}

.newsletter-both-names--false .newsletter input[type=text] {
  width: 100%;
}

.newsletter-img {
  width: 40%;
}

@media only screen and (max-width: 798px) {
  .newsletter-img {
    width: 100%;
  }
}

.newsletter-img img {
  width: 100%;
  display: block;
}

.newsletter-info {
  text-align: ;
  color: #3F409A;

  background-color: ;
  height: auto;
  float: left;
}

@media only screen and (max-width: 798px) {
  .newsletter-info {
    padding: 20px;
    width: 100% !important;
    position: relative;
  }
}

.newsletter-info input.contact_email[type=email] {
  width: 65%;
  float: left;
}

@media only screen and (max-width: 1024px) {
  .newsletter-info input.contact_email[type=email] {
    width: 100%;
  }
}

.newsletter-info #contact_form input.newsletter-form__sign-up[type=submit] {
  width: calc(35% - 10px);
}

@media only screen and (max-width: 1024px) {
  .newsletter-info #contact_form input.newsletter-form__sign-up[type=submit] {
    width: 100%;
  }
}

.newsletter-info .input-row {
  margin-right: 0;
  margin-left: 0;
}

.newsletter-info .popup-signup-show--true {
  margin-top: 20px;
}

.newsletter-image--true .newsletter-popup__content {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 798px) {
  .newsletter-image--true .newsletter-popup__content {
    width: 100%;
    display: block;
  }
}

@media only screen and (min-width: 1025px) {
  .newsletter-image--true {
    max-height: 875px;
  }
}

@media only screen and (min-width: 1025px) {
  .newsletter-image--true.object-fit--none {
    height: auto;
  }
}

.newsletter-image--false {
  justify-content: center;
}

.newsletter-image--false .newsletter-info {
  width: 100%;
  position: relative;
  height: auto;
  float: none;
}

.align-left .newsletter-info {
  right: 0;
}

.newsletter-description h2 {
  color: #3F409A;
  margin-top: 0;
}

.newsletter-description {
  padding: 40px;
  margin: 0 auto;
}

@media only screen and (max-width: 798px) {
  .newsletter-description {
    font-size: inherit;
    width: auto;
  }
}

@media only screen and (max-width: 480px) {
  .newsletter-description {
    padding: 20px;
  }
}

@media only screen and (min-width: 1025px) {
  .newsletter-description {
    min-width: 350px;
  }
}

@media only screen and (min-width: 1401px) {
  .newsletter-description {
    font-size: inherit;
  }
}

.newsletter-popup__button {
  margin-top: 10px;
  margin-bottom: 0;
}.newsletter-popup__button {
  margin-left: 8px;
  margin-right: 8px;
}@media only screen and (max-width: 480px) {
  .newsletter-popup__button {
    margin-top: 5px;
  }
}

.newsletter-popup__button--text {
  --button-color-border: ;
  --button-color-background: transparent;
  --button-color-text: ;
  --button-color-border-hover: ;
  --button-color-background-hover: ;
  --button-color-text-hover: ;
}

  

  

.newsletter-popup__button--highlighted {
  --button-color-border: ;

  --button-color-background: ;

  --button-color-text: ;

  --button-color-border-hover: 

  


  

  ;

  --button-color-background-hover: 

  


  

  ;

  --button-color-text-hover: ;
}

.newsletter_section {
  transform: translate3d(0, 0, 0);

  background-color: ;

  color: ;
}

.newsletter_section h2 {
  margin-top: 0;

  color: ;
}

.newsletter_section.newsletter-bgr-true {
  background-color: ;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsletter_section.newsletter-bgr-true input.contact_email[type=email] {
  border: 0;
}

@media only screen and (max-width: 480px) {
  .newsletter_section.newsletter-bgr-true {
    text-align: center !important;
  }
}

.section_form {
  padding: 10px 20px;
}

.section_form input[type=email],
.section_form input[type=text] {
  border: 0;
}

.section_form .newsletter-text+.newsletter,
.section_form h5+.newsletter {
  margin-top: 15px;
}

.newsletter_section h5 {
  color: 

  !important;
  padding-top: 0px;
  margin: 0;
}

.newsletter_section .newsletter-text p {
  margin-bottom: 0;
}

.newsletter_section .newsletter,
.password-page-row form {
  display: inline-block;
  padding-top: 0 !important;
  width: 450px;
}

@media only screen and (max-width: 480px) {

  .newsletter_section .newsletter,
  .password-page-row form {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 480px) {

  .newsletter_section .newsletter,
  .password-page-row form {
    width: 100%;
  }
}

.shopify-challenge__container {
  padding: 150px 0;
}

.shopify-challenge__container .shopify-challenge__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  padding: 13px 20px;
  text-align: center;
  line-height: 1.2;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

font-size: px;

text-transform: ;

letter-spacing: px;
word-break: break-word;
cursor: pointer;
transition: all 0.2s linear;

border-color: var(--button-color-border, );

background: var(--button-color-background, );

color: var(--button-color-text, );
}.shopify-challenge__container .shopify-challenge__button {
  border-radius: 0;
}.shopify-challenge__container .shopify-challenge__button:visited {
  color: var(--button-color-text, );
}

.shopify-challenge__container .shopify-challenge__button:hover:not([disabled]),
.shopify-challenge__container .shopify-challenge__button:active {
  background: var(--button-color-background-hover, var(--button-color-background, ));

border-color: var(--button-color-border-hover, var(--button-color-border, ));

color: var(--button-color-text-hover, var(--button-color-text, ));
}

.shopify-challenge__container .shopify-challenge__button:active {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  outline: 0;
}

.shopify-challenge__container .shopify-challenge__button[disabled] {
  cursor: not-allowed;
}

.shopify-section--footer {
  padding: 0 20px;
}

.shopify-section--footer .newsletter_section {
  padding: 0;
  background-color: transparent;

  color: ;
}

.shopify-section--footer .newsletter_section .newsletter {
  width: 100%;
}

.shopify-section--footer .newsletter_section .newsletter input {
  width: 70%;
  color: #2e2f7d !important;
  border-radius: 0;
  border-color: #2e2f7d !important;
}

.shopify-section--footer .newsletter_section .newsletter input::placeholder {
  color: #2e2f7d !important;
}

.shopify-section--footer .newsletter_section .newsletter .newsletter-form__sign-up {
  margin-left: 0;
}

.shopify-section--footer .newsletter_section h6 {
  color: ;

  font-size: px;
}

.shopify-section--footer .newsletter_section p {}.collapsible-table {
  width: 100%;
  margin-bottom: 20px;
}

.collapsible-table th {
  font-weight: 700;
  text-align: left;
}

.collapsible-table th,
.collapsible-table td {
  padding: 10px;
}

@media only screen and (max-width: 798px) {

  .collapsible-table th,
  .collapsible-table td {
    border-left: none;
  }
}

.collapsible-table tr .order_summary td.label {
  text-align: right;
}

.collapsible-table .order-details__discount-block {
  display: block;
}

@media only screen and (max-width: 798px) {
  .collapsible-table thead {
    display: none;
  }

  .collapsible-table tr {
    display: block;
    margin-bottom: 20px;
  }

  .collapsible-table tr:last-child {
    margin-bottom: 0;
  }

  .collapsible-table tr td {
    position: relative;
  }

  .collapsible-table td {
    display: block;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 0;
  }

  .collapsible-table td:before {
    content: attr(data-label);
    z-index: 1;
    padding: 6px;
    font-weight: bold;
    width: calc(50% - 6px);
    word-break: break-word;
  }

  .collapsible-table td:after {
    content: "";
    z-index: 0;
    width: 50%;
    min-height: 100%;
    position: absolute;
  }

  .collapsible-table td:last-child {
    border-bottom: none;
  }

  .collapsible-table tfoot {
    display: block;
    margin-top: 20px;
  }

  .collapsible-table tfoot tr {
    margin-bottom: 0;
    border-bottom: none;
  }

  .collapsible-table tfoot tr:last-child {
    border-bottom: 1px solid #dcdcdc;
  }

  .collapsible-table .order-details__total,
  .collapsible-table .order-details__product,
  .collapsible-table .order-details__discount {
    text-align: right;
    padding-left: 10px;
    width: calc(50% - 10px);
    word-break: break-word;
  }
}

#customer-orders th,
#order-details th {
  background-color: #f9f9f9;
}

#customer-orders th,
#customer-orders td,
#order-details th,
#order-details td {
  border-right: 1px solid #dcdcdc;
}

#customer-orders th:first-child,
#customer-orders td:first-child,
#order-details th:first-child,
#order-details td:first-child {
  border-left: 1px solid #dcdcdc;
}

@media only screen and (max-width: 798px) {

  #customer-orders th:first-child,
  #customer-orders td:first-child,
  #order-details th:first-child,
  #order-details td:first-child {
    border-left: none;
  }
}

#customer-orders tr,
#order-details tr {
  border-bottom: 1px solid #dcdcdc;
}

#customer-orders tr:first-child,
#order-details tr:first-child {
  border-top: 1px solid #dcdcdc;
}

@media only screen and (max-width: 798px) {

  #customer-orders tr,
  #order-details tr {
    border: 1px solid #dcdcdc;
    border-bottom: none;
  }

  #customer-orders td,
  #order-details td {
    border-right: none;
    border-bottom: 1px solid #dcdcdc;
  }

  #customer-orders td:after,
  #order-details td:after {
    border-right: 1px solid #dcdcdc;
    background-color: #f9f9f9;
  }

  #customer-orders tfoot td,
  #order-details tfoot td {
    border-bottom: none;
  }

  #customer-orders tfoot:last-child,
  #order-details tfoot:last-child {
    border-bottom: 1px solid #dcdcdc;
  }
}

.allow-clickthrough {
  pointer-events: none !important;
}

.hidden {
  display: none;
}

@media only screen and (max-width: 480px) {
  .hidden--mobile {
    display: none !important;
  }
}

.remove {
  color: ;
}

.relative {
  position: relative;
}

.half-bottom {
  margin-bottom: 10px !important;
}

.add-bottom {
  margin-bottom: 20px !important;
}

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

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

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

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

p.warning {
  text-align: center;
  font-weight: bold;
}

.warning--quantity {
  clear: both;
  display: inline-block;
  margin-top: 15px;
  width: auto;
  text-align: left;
}

@media only screen and (min-width: 799px) {
  .large--right {
    float: right;
    position: relative;
  }
}

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

.mini-cart__item p.warning {
  margin-top: 5px;
  text-align: left;
}

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

.no_border {
  border: none !important;
}

.extra_padding {
  padding-top: 4px;
}

div.hidden {
  display: none;
}

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

.full-width-image {
  width: 100%;
}

#instantclick-bar {
  background: ;
  z-index: 100000;
  height: 4px;
}

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

.items_left {
  margin: 0 0 15px;
  line-height: 1.6em;
  font-size: normal;
  font-style: italic;

  color: ;
}

.cart .paypal-button+.paypal-button {
  display: none;
}

.darken-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.6);
}

@media only screen and (max-width: 480px) {
  .caption-background-darken_bg.caption--below-true .darken-bg {
    display: none;
  }
}

.shopify-section--testimonials {
  position: relative;
}

.shopify-section--testimonials .set-static {
  display: flex;
}

.shopify-section--testimonials .set-static .caption {
  position: static;
  transform: translateY(0);
  padding: 40px;
  margin: auto;
}

.shopify-section--testimonials .set-testimonial-height {
  height: 95%;
}

.shopify-section--testimonials .feature_divider {
  margin: 25px auto;
  width: 10%;
  display: inline-block;
}

@media only screen and (max-width: 480px) {
  .shopify-section--testimonials .feature_divider {
    margin: 5px auto;
  }
}

.shopify-section--testimonials .testimonial-block--no-image .animated {
  animation-delay: 0.25s;
}

.testimonial-block.gallery-cell.testimonial-block--no-image {
  background-color: ;
}

@media only screen and (max-width: 480px) {
  .mobile-banner--crop-left {
    object-fit: cover;
    object-position: left;
    min-height: 60vh;
  }
}

@media only screen and (max-width: 480px) {
  .mobile-banner--crop-right {
    object-fit: cover;
    object-position: right;
    min-height: 60vh;
  }
}

@media only screen and (max-width: 1024px) {
  .mobile-banner--crop-center {
    object-fit: cover;
    object-position: center;
    min-height: 60vh;
  }
}

.caption-content.testimonial-text {
  max-width: 80%;
}

.caption-content.testimonial-text .subtitle {
  text-transform: none;

  color: ;
}

@media only screen and (max-width: 480px) {
  .caption-content.testimonial-text .subtitle {
    font-weight: normal;
    font-size: 14px;
  }
}

.caption-content.testimonial-text h2,
.caption-content.testimonial-text .headline {
  color: ;
}

@media only screen and (max-width: 480px) {

  .caption-content.testimonial-text h2,
  .caption-content.testimonial-text .headline {
    text-shadow: none;
  }
}

@media only screen and (max-width: 480px) {

  .testimonial-block.caption--below-true:not(.testimonial-block--no-image) .pretext,
  .testimonial-block.caption--below-true:not(.testimonial-block--no-image) .headline,
  .testimonial-block.caption--below-true:not(.testimonial-block--no-image) .subtitle {
    color: ;
  }

  .testimonial-block.caption--below-true:not(.testimonial-block--no-image) .feature_divider {
    border-color: ;
  }
}

@media only screen and (max-width: 480px) {
  .testimonial-block .caption {
    margin: auto;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}

.testimonial-slideshow,
.testimonial-block.gallery-cell {
  background-color: transparent;
}

.page-faq .faq--heading {
  padding-top: 30px;
}

.faq-section h2.title {
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 54px;
  letter-spacing: 0;
  margin-bottom: 0;
}

.faq-section h2.faq--heading {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.125;
  letter-spacing: 0;
  margin-bottom: 10px;
  margin-top: 40px;
}

.faq-section .has-gutter-enabled {
  margin-bottom: 20px;
}

@media only screen and (max-width: 480px) {
  .faq-section .faq--image {
    margin-top: 40px;
  }
}

.team-page__content--left {
  display: flex;
}

@media only screen and (max-width: 798px) {
  .team-page__content--left {
    flex-direction: column;
  }
}

.team-page__content--right {
  display: flex;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 798px) {
  .team-page__content--right {
    flex-direction: column;
  }
}

.team-page__text,
.team-page__image,
.team-page__image img {
  width: 100%;
}

.team-page__content--multiple .team-page__text,
.team-page__content--multiple .team-page__image {
  max-width: 50%;
  width: 100%;
}

@media only screen and (max-width: 798px) {

  .team-page__content--multiple .team-page__text,
  .team-page__content--multiple .team-page__image {
    max-width: 100%;
  }
}

.team-page__content--multiple .team-page__text:first-child,
.team-page__content--multiple .team-page__image:first-child {
  margin-right: 20px;
}

.team-page__text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-page__container {
  max-width: 70%;
}

@media only screen and (max-width: 480px) {
  .team-page__container {
    max-width: 90%;
  }
}

.team-member__profile.columns,
.team-member__profile.column {
  margin-bottom: 30px;
}

.team-member__name {
  padding-top: 10px;
}

.team-member__wrap {
  position: relative;
}

.team-member__wrap:hover .team-member__overlay {
  opacity: 1;
}

.team-member__overlay {
  opacity: 0;
  transition: opacity 0.3s linear;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.team-member__details {
  transform: translateY(-50.1%);
  top: 50%;
  padding: 10px 0;
  position: absolute;
  width: 100%;
  padding: 20px;
}

.team-member__details img {
  display: block;
}

.team-member__details p {
  margin-top: 10px;
  line-height: 1.3;
}

.team-member__details .icon-twitter {
  display: inline-block;
  vertical-align: middle;
}

.team-member__title {
  padding-bottom: 0;
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
}

.team-member__title:after {
  width: 30%;
  display: block;
  margin: 0 auto;
  content: "";
  height: 3px;
  margin-top: 20px;
}

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

.logo-bar a {
  transition: ease all 0.6s;
}

.logo-bar a:hover {
  opacity: 0.6;
}

.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  width: 160px;
  margin-top: 20px;
}

@media only screen and (min-width: 799px) {
  .logo-bar__item {
    margin-left: 25px;
    margin-right: 25px;
  }
}

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

.gallery-section .display-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}

.gallery-section .display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none;
}

.gallery-section .gallery-image-wrapper,
.gallery-section .gallery-empty-wrapper {
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
}

.gallery-section .gallery-empty-wrapper {
  min-height: 150px;
}

.gallery-section .gallery-empty-wrapper:nth-child(even) .placeholder-svg {
  background-color: ;
}

.gallery-section a {
  display: block;
}

.gallery-image-wrapper .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.gallery-image-wrapper .overlay .icon-zoom {
  color: white;
  font-size: 1.5em;
  top: 50%;
}

.gallery-image-wrapper:hover .overlay {
  opacity: 1;
}

.two-per-row .overlay .icon-zoom {
  font-size: 2.5em;
}

.three-per-row .overlay .icon-zoom {
  font-size: 2em;
}

.gallery-section.gallery-horizontal i {
  display: block;
}

.gallery-section.gallery-horizontal img {
  position: absolute;
  top: 0;
  width: 100%;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  display: block;
}

.gallery-section.gallery-horizontal .gallery-image-wrapper,
.gallery-section.gallery-horizontal .gallery-empty-wrapper {
  margin: 10px;
}

.gallery-section.gallery-horizontal.adjust-columns .gallery-image-wrapper,
.gallery-section.gallery-horizontal.adjust-columns .gallery-empty-wrapper {
  margin: 0px;
}

@media only screen and (min-width: 2000px) {
  .gallery-section.gallery-horizontal .gallery-image-wrapper:last-child {
    width: 15%;
    flex-basis: initial !important;
    flex-grow: initial !important;
  }
}

.gallery-section.gallery-horizontal .gallery-empty-wrapper {
  width: 190px;
}

.gallery-section.gallery-classic .gallery-image-wrapper,
.gallery-section.gallery-classic .gallery-empty-wrapper {
  display: block;
}

.gallery-section.gallery-classic .gallery-image-wrapper img,
.gallery-section.gallery-classic .gallery-image-wrapper svg,
.gallery-section.gallery-classic .gallery-empty-wrapper img,
.gallery-section.gallery-classic .gallery-empty-wrapper svg {
  width: 100%;
  display: block;
}

.gallery-section.gallery-classic .add-padding {
  padding-top: 5px;
  padding-bottom: 5px;
}

.adjust-columns {
  column-gap: 0px !important;
  -moz-column-gap: 0px !important;
  -webkit-column-gap: 0px !important;
  overflow: hidden;
}

.adjust-columns .gallery-image-wrapper,
.adjust-columns .gallery-empty-wrapper {
  margin: 0;
  margin-bottom: 0 !important;
}

.gallery-section.gallery-masonry {
  display: block;
}

.gallery-section.gallery-masonry .masonry {
  font-size: 0.85em;
  line-height: 0px;
  margin: 10px 0;
  column-gap: 10px;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
}

.gallery-section.gallery-masonry .gallery-empty-wrapper {
  min-height: 100px;
  overflow: hidden;
}

.gallery-section.gallery-masonry .gallery-empty-wrapper svg {
  min-width: 800px;
}

.gallery-section.gallery-masonry .gallery-empty-wrapper svg path {
  display: none;
}

.gallery-section.gallery-masonry .gallery-image-wrapper,
.gallery-section.gallery-masonry .gallery-empty-wrapper {
  display: block;
  box-sizing: border-box;
  margin-bottom: 5px;
  -webkit-column-break-inside: avoid;
  -webkit-backface-visibility: hidden;
}

.gallery-section.gallery-masonry .gallery-image-wrapper img,
.gallery-section.gallery-masonry .gallery-image-wrapper svg,
.gallery-section.gallery-masonry .gallery-empty-wrapper img,
.gallery-section.gallery-masonry .gallery-empty-wrapper svg {
  width: 100%;
  display: block;
}

.gallery-section.gallery-masonry .two-per-row {
  column-count: 2;
  transform: translateX(0);
}

@media only screen and (max-width: 798px) {
  .gallery-section.gallery-masonry .two-per-row {
    column-count: 3;
  }
}

@media only screen and (max-width: 480px) {
  .gallery-section.gallery-masonry .two-per-row {
    column-count: 1;
  }
}

.gallery-section.gallery-masonry .three-per-row {
  column-count: 3;
  transform: translateX(0);
}

@media only screen and (max-width: 798px) {
  .gallery-section.gallery-masonry .three-per-row {
    column-count: 3;
  }
}

@media only screen and (max-width: 480px) {
  .gallery-section.gallery-masonry .three-per-row {
    column-count: 1;
  }
}

.gallery-section.gallery-masonry .four-per-row {
  column-count: 4;
  transform: translateX(0);
}

@media only screen and (max-width: 798px) {
  .gallery-section.gallery-masonry .four-per-row {
    column-count: 3;
  }
}

@media only screen and (max-width: 480px) {
  .gallery-section.gallery-masonry .four-per-row {
    column-count: 1;
  }
}

.gallery-section.gallery-masonry .five-per-row {
  column-count: 5;
  transform: translateX(0);
}

@media only screen and (max-width: 798px) {
  .gallery-section.gallery-masonry .five-per-row {
    column-count: 3;
  }
}

@media only screen and (max-width: 480px) {
  .gallery-section.gallery-masonry .five-per-row {
    column-count: 1;
  }
}

.rv-container {
  display: block;
}

.rv-container .thumbnail:empty {
  margin-bottom: 0;
}

.rv-main .flickity-page-dots {
  bottom: 25px;
}

@media only screen and (max-width: 798px) {
  .rv-main .flickity-page-dots {
    display: none;
  }
}

.sidebar .collection_swatches .swatch {
  float: left;
}

.sidebar .toggle_list .rv-container a:hover {
  border-color: transparent;
}

.sidebar .toggle_list .rv-container a.product-info__caption.hidden {
  display: none;
}

@media only screen and (max-width: 798px) {
  .sidebar .toggle_list .rv-container a.product-info__caption.hidden {
    display: block;
  }
}

.sidebar .recently-viewed__title {
  display: none;
}

.sidebar .rv-sidebar-element {
  max-width: 75%;
}

.sidebar .rv-sidebar-element .product_image a {
  display: block;
  min-width: 100%;
  margin-bottom: 10px;
}

.sidebar .rv-sidebar-element .product_image img {
  height: auto;
}

.sidebar .rv-sidebar-element .thumbnail-overlay .sold_out {
  color: ;
}

@media only screen and (max-width: 798px) {

  .sidebar .product-list .thumbnail .title,
  .sidebar .product-list .thumbnail .price,
  .sidebar .product-list .thumbnail .brand {
    text-align: left;
    display: block;
  }
}

.sidebar .product-list .thumbnail .thumbnail-overlay {
  position: relative;
  opacity: 1;
  background: transparent;
}

.sidebar .product-list .thumbnail .thumbnail-overlay .product-details {
  position: relative;
  transform: none;
  transition: none;
  opacity: 1;
  text-align: left;
}

.sidebar .product-list .thumbnail .thumbnail-overlay .product-details .title {
  color: ;
  padding: 0;
}

.sidebar .product-list .thumbnail .thumbnail-overlay .product-details .title,
.sidebar .product-list .thumbnail .thumbnail-overlay .product-details .price {
  font-size: 16px;
}

.sidebar .product-list .thumbnail .thumbnail-overlay .info {
  padding: 0;
  position: relative;
  font-size: 12px;
  opacity: 1;
  top: 0;
  transform: translateY(0);
}

.sidebar .product-list .thumbnail .thumbnail-overlay .info .quick_shop {
  display: none;
}

.product-description-bottom .js-recently-viewed.rv-main {
  clear: both;
}

.rv-box-element .js-recently-viewed-product:nth-child(2),
.rv-sidebar-element .js-recently-viewed-product:nth-child(2) {
  display: none;
}

.recently-viewed__section {
  width: 100%;
}

.search__results-wrapper {
  display: none;
  position: relative;
}

.search__results {
  width: 100%;
  right: 0;
  left: auto;
  z-index: 30;
  list-style-type: none;
  margin: 0;
  padding: 0 20px;

  background: ;
  overflow: hidden;
  position: absolute;
}

@media only screen and (max-width: 798px) {
  .search__results {
    position: relative;
    padding: 0 10px;
    width: 100%;
  }
}

@media only screen and (min-width: 799px) {
  .search__results {
    max-height: 500px;
    overflow-y: scroll;
  }
}

.search__results li {
  display: block;
  width: 100%;
  margin: 0;

  border-top: 1px 

    ;
  overflow: hidden;
}

.search__results li:nth-child(-n+2) {
  border-top: none;
}

.search__results li a,
.search__results li .no-results {
  display: flex;
  align-items: center;
  padding: 10px 0;

  color: 

  !important;

font-weight: ;

font-style: ;

font-size: px;

text-transform: ;
}

.search__results li a:hover,
.search__results li a:focus,
.search__results li .no-results:hover,
.search__results li .no-results:focus {
  color: ;
}

.search__results .search-title {
  text-transform: none;
  text-align: left;

  font-size: px;
}

.search__results .search-title span {
  color: ;
}

.search__results .thumbnail {
  padding: 0;
  max-width: 62px;
  margin-right: 20px;
}

@media only screen and (max-width: 798px) {
  .search__results .thumbnail {
    max-width: 20%;
  }
}

.search__results .thumbnail img {
  display: block;
}

.header .search__results {
  background: ;
  width: 350px;
  padding-top: 15px;
}

.error-404 .search_box {
  margin-bottom: 0;
}

.blog_search {
  margin-bottom: 15px;
}

.blog_search input {
  margin-bottom: 0;
}

.mobile-search {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999999;
  width: 100vw;
  background: rgba(0, 0, 0, 0.8);
}

@media only screen and (min-width: 799px) {
  .mobile-search {
    display: none !important;
  }
}

.mobile-search form {
  background-color: white;
  margin: 0;
  padding: 10px 20px 0;
  position: relative;
  min-height: 70vh;
  width: 100%;
}

.mobile-search input#q {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;
font-size: 16px;

text-transform: ;
padding-left: 40px;
padding-right: 35px;
border: 0;

border-bottom: 1px solid ;
}

.mobile-search input#q:focus,
.mobile-search input#q:active {
  border-bottom: 1px solid ;
}

.mobile-search .icon-search {
  left: 25px;
  top: 22px;
  transform: none;
  width: 30px;
  position: absolute;
  z-index: 1000;

  color: ;
  font-size: 20px;
  cursor: pointer;
}

.mobile-search .icon-cross {
  position: absolute;
  right: 32px;
  top: 22px;
  cursor: pointer;
}

.mobile-search .search__results-wrapper {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.mobile-search .search__results {
  background-color: white;
  margin-top: 0;
  padding: 0;
}

.mobile-search .item-result:last-child {
  padding-bottom: 10px;
}

.shopify-section--search-template form {
  position: relative;
}

.shopify-section--search-template .search_container {
  position: relative;
}

.shopify-section--search-template .search_container .search-submit {
  z-index: 900;
}.search-matrix .product_row {
  padding: 20px 0;

  border-bottom: 1px solid ;
}

.search-matrix .product_row:last-child {
  border-bottom: none;
}

div.content {
  padding: 40px 0px 15px 0;
}

.featured_text {
  font-size: 18px;
  line-height: 36px;
}

.large_text {
  font-size: 28px;
  line-height: 50px;
}

@media only screen and (max-width: 798px) {
  .dropdown .header_search_form .search__results {
    margin-top: 30px;
  }
}

.dropdown .header_search_form .search-terms {
  height: 50px;
  min-height: 50px;
}

.main-nav div.logo a {
  color: 

  !important;
  outline: 0;
}

.menu-position--inline.logo-position--left div.logo {
  text-align: left;
}

.menu-position--inline.logo-position--center .logo {
  text-align: center;
}

.menu-position--inline.logo-position--center .logo img {
  margin: 0 auto;
}

.primary_logo {
  display: block;
}

.secondary_logo {
  display: none;
}

header.feature_image.secondary_logo--true img.primary_logo,
header.feature_image.secondary_logo--true img.secondary_logo {
  display: none;
}

header.secondary_logo--true:not(.feature_image) img.secondary_logo {
  display: none !important;
}

header.secondary_logo--true:not(.feature_image) img.primary_logo {
  display: inline !important;
}

.featured_content,
.featured_content h1,
.featured_content h2,
.featured_content h3,
.featured_content h4,
.featured_content h5,
.featured_content h6 {
  color: ;
}

.featured_content {
  background-color: ;
}

.nav_arrows {
  float: right;
}

.sku {
  margin: 0;
}

#category {
  width: 100%;
}

#header__selector-form .icon-arrow-down {
  font-size: 9px;
}

#header__selector-form .disclosure__toggle {
  background-color: transparent;
  height: 40px;
  border: none;
  position: relative;
  padding: 0 0 0 16px;

  letter-spacing: px;
}

#header__selector-form .disclosure__toggle:hover,
#header__selector-form .disclosure__toggle:focus {
  color: ;
}

#header__selector-form .disclosure__list-wrap {
  border: none;
  bottom: initial;
  position: absolute;
  top: 100%;
}

#header__selector-form .disclosure__list-wrap .disclosure-list {
  list-style: none;
}

#header__selector-form .disclosure-list__item {
  display: block;
}

#header__selector-form .disclosure__button {
  letter-spacing: px;
}

#header__selector-form .currency-preview {
  position: relative;
}

#header__selector-form .currency-preview select.currencies {
  background-image: none;
  z-index: 1000;
}

#header__selector-form .currency-preview .icon-down-arrow {
  position: absolute;
  top: 50%;
  right: 10px;

  color: ;
  transform: translateY(-50%);
  z-index: 999;
}

#header__selector-form .currency-preview .icon-down-arrow:hover {
  color: inherit;
}

#header__selector-form .currency-preview:hover .icon-down-arrow,
#header__selector-form .currency-preview:hover select.currencies {
  color: ;
}

.selectors-form__wrap,
.selectors-form,
.selectors-form__item {
  margin: 0;
}

.selectors-form__wrap {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 798px) {
  .selectors-form__wrap {
    justify-content: center;
  }
}

.disclosure {
  position: relative;
}

.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 {
  color: ;

  font-size: px;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;

border: 1px solid ;
background-color: transparent;
margin-right: 20px;
min-height: 0;
transition: color 0.1s linear;
}

.disclosure__toggle:hover,
.disclosure__toggle:focus {
  opacity: 1;
}

.disclosure__toggle.is-clicked {
  color: ;
}

.disclosure__toggle.is-clicked:focus {
  color: ;
}

.disclosure__toggle.is-clicked+.disclosure__list-wrap {
  visibility: visible;
  opacity: 1;
}

.disclosure__toggle.is-clicked+.disclosure__list-wrap .disclosure-list {
  display: block;
}

.disclosure__toggle .icon-down-arrow {
  margin-left: 8px;
}

.disclosure__list-wrap {
  background-color: ;

  border: 1px solid ;
  bottom: 100%;
  visibility: hidden;
  position: absolute;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.disclosure__list-wrap.disclosure--left {
  left: auto;
  right: 0;
}

.disclosure__list-wrap .disclosure-list {
  list-style: none;
  white-space: nowrap;
  margin-left: 0;
  margin-bottom: 0;
  padding: 0;
  margin-top: 0;
  display: none;
}

.disclosure-list__item {
  background-color: inherit;
  color: inherit;
  line-height: 1;
}

button.disclosure__button {
  background-color: inherit;
  padding: 13px 20px;

  color: ;

  font-size: px;

  letter-spacing: px;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

text-transform: ;

letter-spacing: px;
text-align: left;
transition: color 0.1s linear;
opacity: 1;
}

button.disclosure__button:hover,
button.disclosure__button[aria-current=true] {
  color: ;
}

button.disclosure__button:focus {
  color: ;
}

.paginate,
.load-more {
  text-align: center;
}

a.tag,
.paginate .page a,
.paginate .current {
  border: solid 1px #3F409A;
  margin: 10px 5px;
  padding: 0.56rem 1rem;
  display: inline-block;
  text-decoration: none;
}

.paginate .page a,
.paginate .current {
  font-weight: bold;
  min-width: 45px;
  height: 45px;
}a.tag:hover,
.paginate .page a:hover,
.paginate .current:hover {
  color: #ffffff;

  background-color: ;

  border: solid 1px ;
}

.paginate .current {
  color: #ffffff;
  font-weight: bold;

  background-color: ;

  border: solid 1px ;
}

.paginate .next,
.paginate .prev {
  display: inline-block;
  margin: 10px 0;
  padding: 0.5rem 1rem;
}

.paginate .next,
.paginate .prev a {
  font-weight: bold;
  color: #29247d !important;
}

.load-more {
  display: none;
  width: 100%;
}

.shopify-section--collection-template .load-more,
.shopify-section--search-template .load-more {
  display: block;
  clear: both;
  margin: 25px 0;
}

.load-more__icon {
  opacity: 0;
  height: 0;
  width: 0;
  transition: all 0.3s linear;
  background: url(//www.beginhealth.com/cdn/shop/t/66/assets/loader.gif) center center no-repeat;
  background-size: 32px 32px;
  margin: 0 auto;
}

.collection-matrix.loading-in-progress.filter-loading,
.search-matrix.loading-in-progress.filter-loading {
  height: 0;
}

.collection-matrix.loading-in-progress+.load-more__icon,
.search-matrix.loading-in-progress+.load-more__icon {
  width: 44px;
  height: 44px;
  opacity: 1;
}

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

.paginate .deco {
  border: none;
}

.product-list .thumbnail,
.slider-gallery .thumbnail,
.list-collections .thumbnail {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  display: block;

    }

.product-list .thumbnail .thumbnail-overlay,
.slider-gallery .thumbnail .thumbnail-overlay,
.list-collections .thumbnail .thumbnail-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in;
}

.product-list .thumbnail .thumbnail-overlay>a,
.slider-gallery .thumbnail .thumbnail-overlay>a,
.list-collections .thumbnail .thumbnail-overlay>a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media only screen and (max-width: 798px) {

  .product-list .thumbnail .thumbnail-overlay,
  .slider-gallery .thumbnail .thumbnail-overlay,
  .list-collections .thumbnail .thumbnail-overlay {
    display: none;
  }
}

@media only screen and (min-width: 1401px) {

  .product-list .thumbnail .thumbnail-overlay,
  .slider-gallery .thumbnail .thumbnail-overlay,
  .list-collections .thumbnail .thumbnail-overlay {
    line-height: 1.5;
  }
}.product-list .thumbnail .thumbnail-overlay,
.slider-gallery .thumbnail .thumbnail-overlay,
.list-collections .thumbnail .thumbnail-overlay {
  background-color: ;
}.product-list .thumbnail img,
.slider-gallery .thumbnail img,
.list-collections .thumbnail img {
  vertical-align: bottom;
  transition: opacity 0.3s ease-in;
  width: 100%;
  object-fit: contain;
  object-position: top center;
}

.product-list .thumbnail .product-info__caption,
.slider-gallery .thumbnail .product-info__caption,
.list-collections .thumbnail .product-info__caption {
  margin-top: 20px;
}@media only screen and (max-width: 798px) {

  .product-list .thumbnail .product-info__caption,
  .slider-gallery .thumbnail .product-info__caption,
  .list-collections .thumbnail .product-info__caption {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .touchevents .product-info__caption {
    display: block;
  }

  .touchevents .thumbnail-overlay {
    display: none;
  }
}

.hidden-product-link {
  line-height: 0;
  font-size: 0;
  color: transparent;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.quick_shop {
  opacity: 0;
  pointer-events: all;
  transform: translate3d(0, 100%, 0);
}a .price-ui span {
  color: ;
}

.price:not(.price--sale):not(.sale) .from {
  color: ;
}

.thumbnail-hover-enabled--true .price:not(.price--sale):not(.sale) .from {
  color: ;
}

.thumbnail .price--sale span.money,
.thumbnail .sale span.money {
  color: ;
}

.thumbnail .was_price span.money,
.thumbnail .compare-at-price span.money {
  color: ;
}

.thumbnail .compare-at-price {
  -webkit-text-decoration-color: ;

  text-decoration-color: ;
}

.thumbnail .free-price-text .money,
.thumbnail .free-price-text {
  color: ;
}

.thumbnail .sold-out-price.has-margin-right {
  margin-right: 5px;
}

.thumbnail .brand {
  display: block;
}.thumbnail.quick-shop-style--popup .current_price span.money {
  color: ;
}.thumbnail.quick-shop-style--popup .sale .current_price span.money {
  color: ;
}

.thumbnail.thumbnail-hover-enabled--true .price--sale>span.money {
  color: ;
}

.thumbnail.thumbnail-hover-enabled--true .compare-at-price span.money {
  color: ;
}

.thumbnail.thumbnail-hover-enabled--true .free-price-text {
  color: ;
}.new {
  position: relative;
  display: inline;
  padding: 5px;
  border-radius: 2px;
  font-size: 12px;
}.thumbnail .sold_out,
.thumbnail .coming-soon {
  color: ;
}

.thumbnail-overlay .sold_out,
.thumbnail-overlay .coming-soon {
  color: ;
}

.sale,
.sale span,
.free,
.thumbnail .sale {
  color: ;
}

a.secondary_button,
input.secondary_button {
  display: block;
  padding: 15px 0;
  text-align: center;

  border-top: solid 1px ;

  border-bottom: solid 1px ;
  margin: 10px 0;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

font-size: px;

text-transform: ;

letter-spacing: px;

color: ;
-webkit-appearance: none;
appearance: none;
}

a.secondary_button:hover,
a.secondary_button:active,
a.secondary_button:visited,
input.secondary_button:hover,
input.secondary_button:active,
input.secondary_button:visited {
  color: ;
}

.thumbnail .price,
.thumbnail .title {
  margin-bottom: 5px;
  font-size: inherit;
  line-height: 1.2;
}

.thumbnail .title {
  display: block;
}

.thumbnail .price.has-unit-price {
  margin-bottom: 0;
}

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

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

.cart_page_image {
  text-align: center;
  margin: 10px 0 20px;
  display: block;
}

.cart_page_image img {
  width: 100%;
  display: block;
}

.cart_content_info {
  padding: 0;
}

.cart_content_info h5 {
  padding: 0;
  margin-bottom: 10px;
  margin-top: 0;
}

.cart_content_info .price_total {
  clear: both;
  padding: 0;
  margin-bottom: 20px;
  font-size: 20px;
}

.subtotal {
  padding-top: 20px;
  padding-left: 40px;
}

@media only screen and (max-width: 798px) {
  .subtotal {
    padding-left: 0;
  }
}

.continue-shopping {
  display: block;

  color: ;
  text-align: center;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

font-size: px;

text-transform: ;

letter-spacing: px;
margin-top: 20px;
}

.continue-shopping:hover,
.continue-shopping:active,
.continue-shopping:focus {
  color: ;
}

.subtotal_amount {
  font-size: 1.4em;
  font-weight: bold;
}

button.update {
  width: 30%;
  float: right;
}

#size-chart {
  display: none;
}

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

.js-sizechart-lightbox {
  cursor: default !important;
}

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

.was_price,
.was_price span {
  text-decoration: line-through;

  color: ;
  text-shadow: none;
  font-weight: normal;
}

.cart_savings {
  text-align: left;
}

.savings {
  font-size: px;
  display: block;
}

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

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

.modal {
  margin: 10px 0;
  display: none;

  background-color: ;
}

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

.modal .modal_price,
.modal_price {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: gt_eesti_display;
}

.payment-terms-container {
  margin: 0;
}

:root {
  --color-body-text: ;

  --color-body: ;

  --color-bg: ;
}

shopify-payment-terms {
  display: block;
  margin-top: 8px;

  font-size: px;
}

.product--description-top shopify-payment-terms {
  margin-bottom: 4px;
}

.product_section .modal_price {
  display: flex;
  flex-wrap: wrap;
}

.product_section .modal_price .price__container,
.product_section .modal_price .sold-out__container {
  display: inline-block;
}

.product_section .modal_price .price__container--display-price-true.has-margin-right {
  margin-right: 10px;
}

.product_section .modal_price .sold_out__container {
  min-width: 150px;
}

.product_section .modal_price .sold-out-price.has-margin-right {
  margin-right: 5px;
}

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

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

.sidebar_title {
  padding-bottom: 0px;
}

.shopify-section--blog-template h2 {
  margin-bottom: 0;
  line-height: 1.2;
}

.shopify-section--blog-template h2 a {
  color: ;
}

.blog_meta {
  margin-bottom: 0;
}

.blog_meta span {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  font-size: smaller;

  color: ;
}

.blog_meta span:after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  margin: -1px 5px 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;

  background-color: ;
}

.blog_meta span:last-child:after {
  background-color: transparent;
}

.tags span a {
  color: ;
}

.article-wrap {
  padding-bottom: 25px;
}

@media only screen and (min-width: 799px) {
  .article-wrap .article__title {
    margin-top: 0;
  }
}

.read-more-link {
  margin-top: 10px;
  margin-bottom: 25px;
  display: inline-block;
}

.article h3.sub_title {
  letter-spacing: 0;
  margin: 10px auto 0;
}

.article_content {}

.excerpt {
  line-height: 1.5;
  margin: 1em 0;
}

#contact_form .newsletter-form__sign-up {
  display: inline-block;
  width: fit-content;
  padding-left: 0;
  padding-right: 0;
  float: none;
}

.footer #contact_form .newsletter-form__sign-up {
  background-color: transparent;
  color: #e8442d;
  border: none;
  font-size: 30px;
  margin-left: 10px;
  position: relative;
  padding: 0;
}

body.article {
  padding-bottom: 0;
}

.toggle span {
  color: ;
  font-weight: bold;
  font-family: "Helvetica Neue",
  Helvetica,
  Arial,
  sans-serif;
  font-size: smaller;
  float: right;
  display: none;
}

.sidebar .blog_search {
  margin: 15px 0;
}

.sidebar .blog_search input {
  width: 100%;
}.label,
.meta .label {
  color: ;
}

.blog_meta,
.blog_meta a {
  color: ;
}

.blog_meta a:hover {
  color: ;
}

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

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

.additional-checkout-buttons {
  text-align: center;
  margin-top: 0;
}

.additional-checkout-buttons>*:not(script) {
  padding: 10px 0 0 10px;
  vertical-align: top;
  line-height: 1;
}

@media only screen and (max-width: 480px) {
  .additional-checkout-buttons>*:not(script) {
    padding: 10px 0 0 5px;
  }
}

.additional-checkout-buttons>*:not(script):first-child,
.additional-checkout-buttons>*:not(script):empty {
  padding-left: 0px;
}

.or {
  line-height: 40px;
  font-style: normal;
  font-size: 14px;
  padding: 0 10px;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  .or {
    line-height: initial;
    text-align: left;
  }
}

.comment {
  margin-bottom: 20px;
}

.author_share_wrap {
  width: 100%;

  border-top: 1px solid ;
  min-height: 40px;
  padding: 15px 0;
  margin-top: 15px;
  overflow: auto;
}

.blog_author {
  width: 60%;
  float: left;
}

@media only screen and (max-width: 798px) {
  .blog_author {
    width: 100%;

    border-bottom: 1px solid ;
    padding-bottom: 15px;
  }
}

.blog_author img {
  width: 80px;
  height: 80px;

  border: 1px solid ;
  float: left;
  margin-right: 15px;
}

.author_bio {
  text-align: left;
}

.author_bio h6 {
  padding-top: 0;
}

.author_bio p {
  font-size: 0.9em;
}

.blog_share {
  width: 38%;
  float: right;
  text-align: right;
}

@media only screen and (max-width: 798px) {
  .blog_share {
    width: 100%;
    float: left;
  }
}

.red {
  color: #C33;
}

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

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

.search_page {
  padding: 100px 0;
}

@media only screen and (max-width: 798px) {
  .search_page {
    padding: 50px 0;
  }
}

.swatch-element.swatch--active {
  border-color: black;
  box-shadow: 0px 0px 0px 2px white;
}

.selector-wrapper label {
  margin-bottom: 0.5em;
}.faceted-filter-group-summary__active-count {
  margin: 0 auto 0 0.5rem;
}

.faceted-filter-form {
  margin: 0;
}

.faceted-filter-group-display {
  margin: 0 0 20px;
}

.sidebar-block__heading {
  margin: 0;
  padding: var(--sidebar-block-padding) 0;
}

.sidebar-block--first .sidebar-block__heading {
  padding-top: 0;
}

.faceted-filter-group-display__header,
.sidebar-block__heading {
  display: flex;
  justify-content: space-between;
}

.faceted-filter-group-display__header {
  margin-bottom: 10px;
}

.sidebar-block__heading {
  display: flex;
  align-items: center;
}

.sidebar-block .sidebar-block-toggle-icon {
  margin-left: auto;
  transition: transform 200ms linear;
}

@media only screen and (min-width: 799px) {
  .toggle-all--false .sidebar-block .sidebar-block-toggle-icon {
    display: none;
  }
}

.sidebar-block[open] .sidebar-block-toggle-icon {
  transform: rotateX(180deg);
}

.toggle-all--false .sidebar-block summary {
  pointer-events: none;
}

@media only screen and (max-width: 798px) {
  .toggle-all--false .sidebar-block summary {
    pointer-events: all;
  }
}

.sidebar-block summary {
  cursor: pointer;
}

.sidebar {
  --sidebar-block-padding: 15px;
  --sidebar-left-safe-area: 10px;
}

.sidebar .faceted-active-filters__clear,
.sidebar .faceted-active-filters__remove-filter {
  padding: 8px 15px;
}

.sidebar .faceted-active-filters__clear .x-icon,
.sidebar .faceted-active-filters__remove-filter .x-icon {
  color: inherit;
  margin-right: 5px;
  top: 0;
}

.sidebar .faceted-filter-group-display__header-clear {
  color: ;
}

.sidebar .faceted-filter-group-display__header-clear:visited {
  color: ;
}

.sidebar .faceted-filter-group-display__header-clear:hover,
.sidebar .faceted-filter-group-display__header-clear:active {
  color: ;
}

.faceted-filter-group-display__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.faceted-filter-group-display__list-item {
  margin: 0;
}

.faceted-filter-group-display__list-item-input {
  position: absolute;
  opacity: 0;
}

.faceted-filter-group-display__list-item-label {
  margin: 0;
  padding: 4px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.faceted-filter-group-display__list-item-label-text {
  padding-left: 12px;
  font-weight: initial;
  font-size: 15px;
}

.faceted-filter-group-display__list-item-input:checked~.faceted-filter-group-display__list-item-label-text {
  font-weight: bold;
}

.faceted-filter-group-display__list-item-input:disabled~* {
  opacity: 0.5;
}

.faceted-filter-group-display__checkmark {
  stroke-width: 2;

  border: 1px solid ;
  cursor: pointer;
  transition: border-color 100ms,
  background 100ms;
}

.faceted-filter-group-display__list-item-input:focus~.faceted-filter-group-display__checkmark {
  box-shadow: 0 0 0 2px 

  ,
  0 0 0 4px ;
}

.faceted-filter-group-display__list-item-input:checked~.faceted-filter-group-display__checkmark {
  stroke: ;

  background: ;

  border-color: ;
}

.faceted-filter-group-display__list-item-input:disabled~.faceted-filter-group-display__checkmark {
  cursor: not-allowed;
}

.faceted-filter-group-display__price-range {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.faceted-filter-group-display__price-range-from,
.faceted-filter-group-display__price-range-to {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-column-gap: 5px;
}

.faceted-filter-group-display__price-range-from .faceted-filter-group-display__price-range-input,
.faceted-filter-group-display__price-range-to .faceted-filter-group-display__price-range-input {
  margin: 0;
}

.faceted-filter-group-display__price-range-label {
  grid-column: span 2;
  margin: 0;
}

.faceted-filter-group-display__submit {
  margin-top: 20px;
}

.js .faceted-filter-group-display__list-submit {
  display: none;
}

.faceted-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 15px 0;

  border-bottom: 1px solid ;
}

.sidebar-block--first .faceted-active-filters {
  padding-top: 0;
}

.content-wrapper {
  width: 100%;
}

@media only screen and (max-width: 798px) {
  .sidebar {
    width: 100% !important;
    margin-bottom: 30px;
  }

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

.fancybox-bg {
  opacity: 1;
  background-color: rgba(43, 46, 56, 0.9);
}

@media only screen and (max-width: 480px) {
  .fancybox-bg {
    background-color: rgba(255, 255, 255, 0.99);
  }
}

@media only screen and (min-width: 481px) {
  .fancybox-toolbar {
    display: none;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .fancybox-slide {
    padding: 44px 0;
  }
}

@media only screen and (min-width: 481px) {
  .fancybox-slide--image {
    padding: 44px;
  }
}

.fancybox-slide--image .fancybox-image {
  object-fit: contain;
  height: 100%;
}

.fancybox-slide--image .fancybox-image-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fancybox-slide--image .fancybox-content {
  padding: 0;
  background-color: white;
}

@media only screen and (min-width: 481px) {
  .fancybox-slide--image .fancybox-content {
    box-shadow: 0px 0px 0px 30px white;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .fancybox-slide--image .fancybox-content {
    position: relative !important;
    width: 100%;
    height: 100%;
  }
}

.fancybox-slide--image .fancybox-close-small {
  top: -30px;
  right: -30px;
}

.fancybox-is-scaling .fancybox-image-wrap,
.fancybox-can-pan .fancybox-image-wrap {
  width: 100%;
  height: 100%;
  margin: 0;
}

.fancybox-is-scaling .fancybox-item,
.fancybox-can-pan .fancybox-item {
  display: none !important;
}

.fancybox-close,
.fancybox-close-small {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 36px;
  height: 36px;
  z-index: 2;
  color: #95979c;
  background-color: transparent;
}

.fancybox-close svg,
.fancybox-close-small svg {
  display: none;
}

.fancybox-close:hover,
.fancybox-close-small:hover {
  color: black;
}

@media only screen and (max-width: 480px) {

  .fancybox-close,
  .fancybox-close-small {
    display: none;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {

  .fancybox-close,
  .fancybox-close-small {
    display: block !important;
  }
}

.fancybox-close:before,
.fancybox-close-small:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

.fancybox-button {
  min-height: auto;
}

@media only screen and (max-width: 480px) {
  .fancybox-button {
    background-color: white;
  }

  .fancybox-button svg path {
    fill: #95979c;
  }
}

.fancybox-content:hover .fancybox-nav {
  opacity: 1;
}

.fancybox-nav {
  transition: opacity 0.2s linear;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}.fancybox-nav span {
  pointer-events: none;
}

.fancybox-nav svg path {
  fill: ;
}

.fancybox-next {
  right: 0;
}

.fancybox-prev {
  left: 0;
}.fancybox-nav span {
  position: absolute;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .touchevents .fancybox-nav {
    display: none;
  }
}

.size-chart-wrap img {
  height: auto;
  max-width: 100%;
}

.footer {
  padding: 20px 0;
  pointer-events: all;

  font-size: px;
  background-color: #ecf7f6;
  background-position: center center;

  color: ;
  border-radius: 24px 24px 24px 24px;
  margin-top: 20px;
}

.index .footer {
  border-radius: 0 0 24px 24px;
  margin-top: -5px;
}Liquid error: Unknown operator !=blank.footer .input-row {
  flex-direction: column;
  margin-left: 0px;
  margin-right: 0px;
}

.footer .input-row input {
  margin: 5px 0;
}

.footer-text .toggle_content {
  padding-top: 15px;
}

.no-footer-title.footer-text .toggle_content {
  padding-top: 0;
}

@media only screen and (max-width: 798px) {
  .no-footer-title.footer-text .toggle_content {
    display: block;
    padding-top: 20px;
  }
}

.footer .logo {
  color: 

  !important;

  font-size: px;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1;
  width: 100%;
  word-wrap: break-word;
  float: none;
}

@media only screen and (max-width: 798px) {
  .footer .logo {
    text-align: center;
  }
}

img.footer-logo {
  width: 75%;
  max-width: 250px;
  margin-bottom: 10px;
  display: inline-block;
}

@media only screen and (max-width: 798px) {
  img.footer-logo {
    max-width: 50% !important;
    margin: 0 25% 25px;
  }
}

.footer .empty-column {
  width: 100%;
  height: 1px;
}

.footer .footer-menu-wrap h6 {
  margin: 0;
  padding: 0 0 5px 0;

  color: ;

  font-size: px;
}

@media only screen and (max-width: 798px) {
  .footer .footer-menu-wrap h6 {
    border-top: 1px solid ;
    margin-bottom: 5px;
    padding: 10px 0 5px;
  }
}

.footer .footer-menu-wrap h6>span {
  display: none;
}

@media only screen and (max-width: 798px) {
  .footer .footer-menu-wrap h6>span {
    display: inline-block;
    transition: transform 0.3s linear;
    perspective: 1000;
  }
}

@media only screen and (min-width: 799px) {
  .footer .toggle_content {
    display: block !important;
  }
}

.footer a,
.footer a:visited {
  color: ;

  font-size: px;
}

.footer a:hover,
.footer a:active {
  color: ;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 15px 0 0 0;
}

.footer ul li {
  line-height: 1.1;
}

.footer form {
  margin-bottom: 0;
}

@media only screen and (min-width: 799px) {
  .footer-menu-wrap {
    display: grid;
    grid-template-columns: 45% 10% 10% 10%;
    column-gap: 8%;
  }
}

.page-landing .maps {
  position: relative;
  bottom: -7px;
}

.maps iframe {
  pointer-events: none;
  display: block;
}

.map__placeholder img {
  object-fit: cover;
}

.newsletter form {
  margin-bottom: 0;
}

.footer_credits {
  width: 100%;
  max-width: 100% !important;
  margin-top: 15px;
  padding-top: 30px;
}

@media only screen and (min-width: 799px) {
  .footer_credits {
    display: flex;
    justify-content: space-between;
  }
}

.footer_credits.page-width::after {
  display: none;
}

.payment_methods {
  margin: 10px 0 6px 0;
  padding-top: 10px;
}

@media only screen and (min-width: 799px) {
  .payment_methods {
    float: right;
    text-align: right;
  }
}

.payment_methods svg {
  padding-right: 4px;
  height: 30px;
  width: 48px;
}

.payment_methods svg:last-of-type {
  padding-right: 0px;
}

.credits {
  text-align: left;
  font-weight: 400;
}

.credits strong {
  font-weight: 700;
}

@media only screen and (min-width: 799px) {
  .credits {
    float: left;
  }
}

@media only screen and (max-width: 798px) {
  .footer-menu__disclosure {
    justify-content: flex-start;
  }
}

.footer-menu__disclosure .selectors-form__item:last-of-type .disclosure__toggle {
  margin-right: 0;
}

.footer-menu__disclosure .disclosure {
  padding-top: 16px;
  margin-top: -8px;
  min-height: 44px;
}

.footer-menu__disclosure .disclosure__toggle {
  color: #333333;
  padding: 0 10px;
  background-color: white;

  color: ;

  font-size: px;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;
text-transform: uppercase;
padding: 10px;
}

.footer-menu__disclosure .disclosure__toggle.is-clicked {
  color: ;
}

.footer-menu__disclosure .disclosure__toggle.is-clicked:focus {
  color: ;
}

.footer-menu__disclosure .disclosure-list {
  background-color: white;
  padding-top: 0;
}

.footer-menu__disclosure .disclosure-list__item {
  margin-bottom: 0;
}

.footer-menu__disclosure button.disclosure__button {
  color: ;

  font-size: px;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;
text-transform: uppercase;
}

.footer-menu__disclosure button.disclosure__button:hover,
.footer-menu__disclosure button.disclosure__button[aria-current=true] {
  opacity: 0.5;
}

h6 span,
h4 span,
.sublink span {
  transition: transform 0.3s linear;
  perspective: 1000;
}

.footer-menu-wrap,
#mobile_menu,
.sidebar {
  transform: translate3d(0, 0, 0);
}

.footer-menu-wrap span.active,
#mobile_menu span.active,
.sidebar span.active {
  transform: rotateX(180deg);
}

.sidebar span.menu-toggle {
  float: right;
  display: inline-block;
  cursor: pointer;
  padding: 0 6px 0 6px;
  margin-right: 0;
  transition: transform 0.3s linear;
  perspective: 1000;
  transform: none;
}

.sidebar span.menu-toggle.active {
  transform: rotateX(180deg);
}

@media only screen and (max-width: 798px) {

  .footer-menu-wrap h6,
  .sidebar h6,
  #mobile_menu h6 {
    padding-top: 8px;
    cursor: pointer;

    border-top: 1px solid ;
    margin-top: 0;
  }

  .footer-menu-wrap h6 span,
  .footer-menu-wrap h4 span,
  .footer-menu-wrap .sublink span,
  .sidebar h6 span,
  .sidebar h4 span,
  .sidebar .sublink span,
  #mobile_menu h6 span,
  #mobile_menu h4 span,
  #mobile_menu .sublink span {
    display: inline-block;
    transition: transform 0.3s linear;
    perspective: 1000;
  }

  .footer-menu-wrap .columns>ul,
  .sidebar .columns>ul,
  #mobile_menu .columns>ul {
    display: none;
    padding-left: 20px;
  }

  .footer-menu-wrap .columns>ul li,
  .sidebar .columns>ul li,
  #mobile_menu .columns>ul li {
    line-height: 1.7;
  }

  .toggle_content {
    display: none;
    padding: 0 20px;
  }
}

@media only screen and (min-width: 799px) {
  h4.toggle {
    pointer-events: none;
  }

  .footer-menu-wrap h6 {
    pointer-events: none;
  }

  .footer-menu-wrap .columns>ul {
    display: block !important;
  }
}

.header .promo-banner a,
.header .promo-banner a:visited a:hover,
#header .promo-banner a,
#header .promo-banner a:visited a:hover {
  color: ;
}

.promo-banner {
  align-items: center;
  background-color: ;
  color: ;
  display: flex;
  font-size: 12px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  top: 0;
  transition: all 0.1s linear;
  width: 100%;
  z-index: 5000;
}

.promo-banner .promo-banner__content {
  margin: 0px auto;
  padding: 0 1.5rem;
}

@media only screen and (max-width: 798px) {
  .promo-banner .promo-banner__content {
    font-size: 10px;
    max-height: 50px;
  }
}

.promo-banner p {
  margin-bottom: 0;
  display: inline;
  line-height: 1;
}

.promo-banner .promo-banner__close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;

  color: ;
  border: 0;
  outline: 0;
  background: transparent;
  z-index: 1000;
}

.promo-banner .promo-banner__close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 20px;
  line-height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

.promo-banner--show .promo-banner {
  height: auto;
  opacity: 1;
}

.top-bar {
  padding-top: 0;
  position: relative;
  transition: padding-top 0.3s linear;
}

@media only screen and (max-width: 480px) {
  .top-bar {
    padding-top: 0;
  }
}@media only screen and (max-width: 798px) {
  .mobile_nav-fixed--true #pagecontent {
    display: block;
    margin-top: 40px;
  }

  .mobile_nav-fixed--true.promo-banner--show #pagecontent {
    display: block;
    margin-top: 70px;
  }

  .index-sections .under-menu:nth-child(1) {
    margin-top: 0;
  }

  .shopify-section--page-details-template .under-menu:nth-child(1) {
    margin-top: 0;
  }

  .page-banner .under-menu:nth-child(1) {
    margin-top: 0;
  }
}

@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: 50px;
  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: 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;
}

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

.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;
  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-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: #fff;
}

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

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

.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:disabled {
  opacity: 0.3;
  cursor: auto;
}

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

.flickity-prev-next-button .arrow {
  fill: #333;
}

.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-enabled {
  position: relative;
  overflow: hidden;
}

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

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

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

.flickity-button.flickity-prev-next-button.next:focus,
.flickity-button.flickity-prev-next-button.previous:focus {
  opacity: 1;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  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-prev-next-button {
  filter: alpha(opacity=50);
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  border: none;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  border-radius: 0;
  height: auto;
  max-width: 11%;
  transform: none;
}

.flickity-prev-next-button:hover {
  background: white;
  border: none;
}

.flickity-prev-next-button:focus {
  outline: none;
}

.flickity-prev-next-button:hover,
.flickity-prev-next-button:active {
  filter: alpha(opacity=80);
  opacity: 0.8;
}

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

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

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

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

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=10);
  opacity: 0.1;
  cursor: auto;
}

.flickity-prev-next-button svg {
  top: 50%;
  transform: translateY(-50.1%);
  padding: 10px 0;
  position: absolute;
  left: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: ;
}

.flickity-prev-next-button.no-svg {
  color: ;
  font-size: 26px;
}

.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%;
  filter: alpha(opacity=25);
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  opacity: 1;
}

.flickity-slider>li {
  list-style-type: none;
  width: 100%;
  text-align: center;
}

img[data-flickity-lazyload] {
  width: auto;
}

.slideshow-transition--fade .flickity-slider {
  transform: none !important;
}

.slideshow-transition--fade .gallery-cell {
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}

.slideshow-transition--fade .gallery-cell.is-selected {
  opacity: 1;
  z-index: 0;
}

.lightbox-gallery .gallery-cell {
  width: 100%;
}

.lightbox-gallery .gallery-cell img {
  width: auto;
  max-height: 90vh;
  max-width: 100%;
  display: inline-block;
}

.gallery-arrows--true .product_gallery .flickity-prev-next-button {
  display: block;
}

.gallery-arrows--true .product_gallery .flickity-prev-next-button:hover {
  opacity: 0.5;
}

.image__container .product_gallery .flickity-prev-next-button {
  display: none;
}

.product_gallery {
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  transition: opacity 0.2s;
}

@media only screen and (max-width: 798px) {
  .product_gallery {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .product_gallery .flickity-page-dots {
    bottom: 15px;
  }
}

.product_gallery .gallery-cell {
  width: 100%;
  display: block;
  margin-right: 10px;
  position: relative;
}

.product_gallery.flickity-enabled {
  opacity: 1;
}

.product_gallery img {
  background-color: ;
}

.product_gallery.show-gallery-arrows--false .flickity-prev-next-button {
  display: none;
}

@media only screen and (max-width: 798px) {
  .product_gallery.show-gallery-arrows--false .flickity-prev-next-button {
    display: block;
  }
}

@media only screen and (max-width: 798px) {
  .thumbnail .product_gallery {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.product_gallery_nav {
  text-align: center;
}

.product_gallery_nav.product_gallery_nav--bottom-thumbnails .gallery-cell {
  width: auto;
}

.product_gallery_nav.product_gallery_nav--bottom-thumbnails img {
  height: 80px;
  width: auto;
}

@media only screen and (max-width: 480px) {
  .product_gallery_nav.product_gallery_nav--bottom-slider {
    margin-bottom: 30px;
  }
}

.product_gallery_nav.product_gallery_nav--bottom-slider .flickity-prev-next-button {
  opacity: 1;

  background: ;
}

.product_gallery_nav.product_gallery_nav--bottom-slider .gallery-cell {
  display: flex;
  width: auto;
  opacity: 0.5;
  margin-bottom: 0;
}

.product_gallery_nav.product_gallery_nav--bottom-slider .gallery-cell.is-nav-selected {
  opacity: 1;
}

.product_gallery_nav.product_gallery_nav--bottom-slider .gallery-cell img {
  width: auto;
  height: 80px;
  max-width: none;
  min-width: 50px;
}

.product_gallery_nav .gallery-cell {
  width: 20%;
  margin: 0 10px 10px 0;
  opacity: 0.7;
  display: inline-block;
  position: relative;
}

.product_gallery_nav .gallery-cell.is-nav-selected {
  opacity: 1;
}

.product_gallery_nav .gallery-cell img {
  cursor: pointer;
}

.product_gallery_nav--slider-enabled .gallery-cell {
  opacity: 1;
}

.product_gallery .gallery-cell a {
  cursor: zoom-in;
}

@media only screen and (min-width: 799px) {
  .gallery-thumbnails--right .multi-image {
    width: 83%;
    float: left;
  }

  .gallery-thumbnails--right .product_gallery_nav {
    width: 12%;
    float: left;
    margin-left: 2%;
  }

  .gallery-thumbnails--right .product_gallery_nav .gallery-cell {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

@media only screen and (min-width: 799px) {
  .gallery-thumbnails--left .multi-image {
    width: 83%;
    float: right;
  }

  .gallery-thumbnails--left .product_gallery_nav {
    width: 12%;
    float: right;
    margin-right: 2%;
  }

  .gallery-thumbnails--left .product_gallery_nav .gallery-cell {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

.gallery-wrap .flickity-viewport {
  margin-top: 0;
}

.product-section__lightbox .zoom-wrap {
  width: 100%;
  height: 100%;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .product-section__lightbox .fancybox-content {
    top: 50%;
    transform: translateY(-50%) !important;
  }
}

.product-quickshop {
  background-color: rgba(43, 46, 56, 0.9);
}

@media only screen and (max-width: 798px) {
  .product-quickshop {
    margin: 2rem;
  }
}

.product-quickshop .shopify-section--quick-shop {
  margin: 4rem auto;
  max-width: 900px;
  padding: 44px !important;

  background-color: ;
}.product-quickshop .shopify-section:not(.shopify-section--quick-shop) {
  display: none;
}

.js-quick-shop {
  display: none;
  width: 90%;
  max-width: 900px;
  cursor: pointer !important;

  background-color: ;
}.js-quick-shop .container,
.js-quick-shop .product_name {
  color: ;
}

.js-quick-shop .fancybox-close-small svg path {
  fill: ;
}

.js-quick-shop .fancybox-close-small svg path:hover {
  fill: ;
}

.quick-shop-style--inline .collection_swatches {
  display: none;
}

.quick-shop-style--inline .inline-quickshop {
  margin-top: 10px;
}

.quick-shop-style--inline .product-quantity-box,
.quick-shop-style--inline .items_left {
  display: none;
}

.quick-shop-style--inline .purchase-details__spb--false {
  margin-left: 0;
}

.quick-shop-style--popup .quick_shop {
  margin: 5px 0;
}

.quick-shop-style--inline.one-fourth .shopify-payment-button,
.quick-shop-style--inline.one-fifth .shopify-payment-button,
.quick-shop-style--inline.one-sixth .shopify-payment-button,
.quick-shop-style--inline.one-seventh .shopify-payment-button,
.quick-shop-style--inline.visible-5 .shopify-payment-button,
.quick-shop-style--inline.visible-6 .shopify-payment-button,
.quick-shop-style--inline.visible-7 .shopify-payment-button {
  min-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 10px;
}

.quick-shop-style--inline.one-fourth .add_to_cart,
.quick-shop-style--inline.one-fifth .add_to_cart,
.quick-shop-style--inline.one-sixth .add_to_cart,
.quick-shop-style--inline.one-seventh .add_to_cart,
.quick-shop-style--inline.visible-5 .add_to_cart,
.quick-shop-style--inline.visible-6 .add_to_cart,
.quick-shop-style--inline.visible-7 .add_to_cart {
  max-width: 100%;
}

.related-products--grid {
  font-size: 0;
  text-align: center;
}

.related-products--grid.container {
  padding-top: 0;
}

.related-products--grid .product-list .thumbnail.column,
.related-products--grid .product-list .thumbnail.columns {
  font-size: initial;
  display: inline-block;
  float: none;
  vertical-align: top;
}

.related-products__title {
  clear: both;
}

.title.slider-gallery {
  padding-top: 40px;
}

@media only screen and (max-width: 480px) {
  .title.slider-gallery {
    padding-top: 0;
    font-size: 1.5em;
  }
}

.slider-gallery {
  margin: 0 auto 40px;
}

.slider-gallery .gallery-cell {
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  padding: 0;
  margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
  .slider-gallery .gallery-cell {
    padding: 0;
    margin-right: 5px;
  }
}

.slider-gallery .gallery-cell .product-details {
  line-height: 1.2;
  letter-spacing: 0;
}

@media only screen and (max-width: 798px) {
  .slider-gallery .gallery-cell .product-details {
    font-size: 3vw;
  }
}

.slider-gallery .gallery-cell img {
  display: block;
  max-width: 100%;
}

.slider-gallery .gallery-cell-heading {
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: none;
  margin-top: 10px;
}

.slider-gallery .flickity-prev-next-button {
  border-radius: 0;
  opacity: 0;
  width: 5%;
}

.slider-gallery:hover .flickity-prev-next-button {
  opacity: 0.5;
}

.transparentBackground--false .dot {
  background: ;
}

.transparentBackground--false .flickity-prev-next-button {
  background: transparent;
}

.transparentBackground--false .flickity-prev-next-button .arrow {
  opacity: 1;

  fill: ;
}

.homepage-slideshow.transparentBackground--false:hover .flickity-prev-next-button,
.testimonial-slideshow.transparentBackground--false:hover .flickity-prev-next-button,
.product-slider.transparentBackground--false:hover .flickity-prev-next-button,
.slider-gallery.transparentBackground--false:hover .flickity-prev-next-button {
  opacity: 1;
}

.homepage-slideshow.transparentBackground--false .flickity-page-dots .dot,
.testimonial-slideshow.transparentBackground--false .flickity-page-dots .dot,
.product-slider.transparentBackground--false .flickity-page-dots .dot,
.slider-gallery.transparentBackground--false .flickity-page-dots .dot {
  opacity: 0.4;
}

.homepage-slideshow.transparentBackground--false .flickity-page-dots .dot.is-selected,
.testimonial-slideshow.transparentBackground--false .flickity-page-dots .dot.is-selected,
.product-slider.transparentBackground--false .flickity-page-dots .dot.is-selected,
.slider-gallery.transparentBackground--false .flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.lazyframe {
  position: relative;

  background-color: ;
  background-repeat: no-repeat;
  background-size: cover;
}

.lazyframe__title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 17px;
  z-index: 3;
}

.lazyframe__title:after {
  z-index: -1;
}

.lazyframe:hover {
  cursor: pointer;
}

.lazyframe:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}

.lazyframe[data-ratio="16:9"]:before {
  padding-top: 56.25%;
}

.lazyframe[data-ratio="4:3"]:before {
  padding-top: 75%;
}

.lazyframe[data-ratio="1:1"]:before {
  padding-top: 100%;
}

.lazyframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.helvetica-font {
  font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}

.lazyframe[data-vendor=youtube],
.lazyframe[data-vendor=youtube_nocookie] {
  background-color: #e52d27;
  font-family: 'GT Eesti Display', Roboto, Arial, Helvetica, sans-serif;
}

.lazyframe[data-vendor=youtube] .lazyframe__title,
.lazyframe[data-vendor=youtube_nocookie] .lazyframe__title {
  color: #eee;
  font-family: 'GT Eesti Display', Roboto, Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 2px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.lazyframe[data-vendor=youtube] .lazyframe__title:hover,
.lazyframe[data-vendor=youtube_nocookie] .lazyframe__title:hover {
  color: #fff;
}

.lazyframe[data-vendor=youtube] .lazyframe__title:before,
.lazyframe[data-vendor=youtube_nocookie] .lazyframe__title:before {
  content: "";
  display: block;
  background: linear-gradient(rgba(0, 0, 0, 0.2), transparent);
  height: 98px;
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-tap-highlight-color: transparent;
}

.lazyframe[data-vendor=youtube]:before,
.lazyframe[data-vendor=youtube_nocookie]:before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=youtube][data-ratio="16:9"]:before,
.lazyframe[data-vendor=youtube_nocookie][data-ratio="16:9"]:before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=youtube][data-ratio="4:3"]:before,
.lazyframe[data-vendor=youtube_nocookie][data-ratio="4:3"]:before {
  padding-top: 75%;
}

.lazyframe[data-vendor=youtube][data-ratio="1:1"]:before,
.lazyframe[data-vendor=youtube_nocookie][data-ratio="1:1"]:before {
  padding-top: 100%;
}

.lazyframe[data-vendor=youtube]:after,
.lazyframe[data-vendor=youtube_nocookie]:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  margin-left: -34px;
  margin-top: -24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjU1LjcgNDQ2LjNjLTUzLjMuMy0xMDYuNi0uNC0xNTkuOC0zLjMtMTcuNC0xLTM0LjctMi41LTUwLjQtMTFDMzUgNDI2LjMgMjcgNDE4LjQgMjIgNDA3LjIgMTMuMiAzODguNiAxMC41IDM2OSA5IDM0OWMtMy40LTQxLjMtMy42LTgyLjYtMS44LTEyMy44IDEtMjIgMS42LTQ0IDYuOC02NS41IDItOC40IDUtMTYuNiA4LjgtMjQuNEMzMiAxMTcgNDggMTA4IDY3LjMgMTA0YzE2LjItMyAzMi44LTMgNDkuMy0zLjcgNTYtMi4zIDExMi0zLjUgMTY4LTMgNDMgLjYgODYuMiAxLjcgMTI5LjMgNCAxMy4yLjYgMjYuNi44IDM5LjMgNS41IDE3LjIgNi40IDMwIDE3LjIgMzcgMzQuNyA2LjYgMTYuOCA5LjIgMzQuMiAxMC42IDUyIDMuOCA0OC43IDQgOTcuMy43IDE0Ni0xIDE2LjMtMi4yIDMyLjctNi41IDQ4LjgtOS43IDM3LTMyLjggNTEuNS02Ni43IDUzLjgtMzYuMiAyLjUtNzIuNSAzLjgtMTA4LjggNC4zLTIxLjMuMi00Mi43IDAtNjQgMHpNMjAzLjIgMzQ0TDM0OCAyNjQuN2wtMTQ0LjgtNzkuM1YzNDR6IiBmaWxsPSIjIzFmMWYxZiIvPjxwYXRoIGQ9Ik0yMDMuMiAzNDRWMTg1LjVMMzQ4IDI2NC44IDIwMy4yIDM0NHoiIGZpbGw9IiNGRUZERkQiLz48L3N2Zz4=");
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.81;
  border: none;
  z-index: 4;
}

.lazyframe[data-vendor=youtube]:hover:after,
.lazyframe[data-vendor=youtube_nocookie]:hover:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjU1LjcgNDQ2LjNjLTUzLjMuMy0xMDYuNi0uNC0xNTkuOC0zLjMtMTcuNC0xLTM0LjctMi41LTUwLjQtMTFDMzUgNDI2LjMgMjcgNDE4LjQgMjIgNDA3LjIgMTMuMiAzODguNiAxMC41IDM2OSA5IDM0OWMtMy40LTQxLjMtMy42LTgyLjYtMS44LTEyMy44IDEtMjIgMS42LTQ0IDYuOC02NS41IDItOC40IDUtMTYuNiA4LjgtMjQuNEMzMiAxMTcgNDggMTA4IDY3LjMgMTA0YzE2LjItMyAzMi44LTMgNDkuMy0zLjcgNTYtMi4zIDExMi0zLjUgMTY4LTMgNDMgLjYgODYuMiAxLjcgMTI5LjMgNCAxMy4yLjYgMjYuNi44IDM5LjMgNS41IDE3LjIgNi40IDMwIDE3LjIgMzcgMzQuNyA2LjYgMTYuOCA5LjIgMzQuMiAxMC42IDUyIDMuOCA0OC43IDQgOTcuMy43IDE0Ni0xIDE2LjMtMi4yIDMyLjctNi41IDQ4LjgtOS43IDM3LTMyLjggNTEuNS02Ni43IDUzLjgtMzYuMiAyLjUtNzIuNSAzLjgtMTA4LjggNC4zLTIxLjMuMi00Mi43IDAtNjQgMHpNMjAzLjIgMzQ0TDM0OCAyNjQuN2wtMTQ0LjgtNzkuM1YzNDR6IiBmaWxsPSIjREQyQzI4Ii8+PHBhdGggZD0iTTIwMy4yIDM0NFYxODUuNUwzNDggMjY0LjggMjAzLjIgMzQ0eiIgZmlsbD0iI0ZFRkRGRCIvPjwvc3ZnPg==");
  opacity: 1;
}

.lazyframe[data-vendor=vimeo] {
  background-color: #00adef;
}

.lazyframe[data-vendor=vimeo] .lazyframe__title {
  font-family: 'GT Eesti Display', "Helvetica Neue", Helvetica, Arial;
  color: #00adef;
  font-size: 20px;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  -webkit-user-select: none;
  user-select: none;
  -webkit-font-smoothing: auto;
  -webkit-tap-highlight-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
}

.lazyframe[data-vendor=vimeo]:before {
  padding-top: 48.25%;
}

.lazyframe[data-vendor=vimeo][data-ratio="16:9"]:before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=vimeo][data-ratio="4:3"]:before {
  padding-top: 75%;
}

.lazyframe[data-vendor=vimeo][data-ratio="1:1"]:before {
  padding-top: 100%;
}

.lazyframe[data-vendor=vimeo]:after {
  content: "";
  height: 40px;
  width: 65px;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgYmFzZVByb2ZpbGU9InRpbnkiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTcuNzY1IDE2Ljg5bDguNDctNC44OS04LjQ3LTQuODkiLz48L3N2Zz4=");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 5px;
  position: relative;
}

.lazyframe[data-vendor=vimeo]:hover:after {
  background-color: #00adef;
}

.lazyframe[data-vendor=vine] {
  background-color: #00bf8f;
}

.lazyframe[data-vendor=vine] .lazyframe__title {
  color: #fff;
  font-family: 'GT Eesti Display', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  z-index: 3;
  positon: relative;
}

.lazyframe[data-vendor=vine] .lazyframe__title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 115px;
  padding: 24px 70px 24px 24px;
  background: linear-gradient(to top, rgba(23, 23, 23, 0) 0, rgba(23, 23, 23, 0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b3171717", endColorstr="#00171717", GradientType=0);
}

.lazyframe[data-vendor=vine]:before {
  padding-top: 100%;
}

.lazyframe[data-vendor=vine][data-ratio="16:9"]:before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=vine][data-ratio="4:3"]:before {
  padding-top: 75%;
}

.lazyframe[data-vendor=vine][data-ratio="1:1"]:before {
  padding-top: 100%;
}

.lazyframe[data-vendor=vine]:after {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMzYiIGhlaWdodD0iMTM2IiB2aWV3Qm94PSIwIDAgMTM2IDEzNiI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTU2IDQ0Yy0uNyAwLTEuNC4yLTIgLjUtMS4yLjgtMiAyLTIgMy41djQwYzAgMS40LjggMi44IDIgMy41LjYuMyAxLjMuNSAyIC41czEuNC0uMiAyLS41bDM0LjYtMjBjMS4zLS43IDItMiAyLTMuNSAwLTEuNC0uNy0yLjgtMi0zLjVMNTggNDQuNWMtLjYtLjMtMS4zLS41LTItLjV6Ii8+PC9zdmc+");
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
}

.lazyframe[data-vendor=vine]:hover:after {
  background-color: rgba(0, 0, 0, 0.75);
}

html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

.remodal,
[data-remodal-id] {
  display: none;
}

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.size-chart-remodal {
  max-height: calc(100vh - 20px);
}

.size-chart-remodal .size-chart-wrap {
  max-height: calc(100vh - 70px);
  overflow-y: scroll;
}

.remodal img {
  max-width: 100%;
}

.remodal-is-initialized {
  display: inline-block;
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal-wrapper {
  padding: 10px 10px 0;
}

.remodal {
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  transform: translate3d(0, 0, 0);

  color: ;
  background: #fff;
}

@media only screen and (max-width: 480px) {
  .remodal {
    overflow-x: scroll;
  }
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
  z-index: 1000;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@media only screen and (max-width: 959px) {
  #contact_form input.newsletter-form__sign-up[type=submit] {
    margin-left: 0;
    margin-bottom: 1.5em;
    width: fit-content;
  }

  input.contact_email[type=email] {
    width: 100%;
  }

  .collection_menu {
    display: none;
  }

  h1.collection_title_tags,
  div.collection_title_tags {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .newsletter .input-row input {
    margin: 5px 0px;
  }

  input.newsletter-form__sign-up {
    margin: 0px;
  }

  .newsletter-both-names--true input.firstName {
    margin-right: 5px;
  }
}

@media only screen and (min-width: 799px) and (max-width: 959px) {

  .nav a,
  .nav a:visited,
  .menu a:hover,
  .nav a:active,
  .nav a:focus {
    font-size: -2px;
  }

  .menu a,
  .menu a:visited,
  .menu a:hover,
  .menu a:active,
  .menu a:focus {
    font-size: -2px;
  }

  .menu li,
  #header span.menu_title,
  .menu a span {
    padding-left: 2px;
    padding-right: 2px;
  }

  .menu li.search-container {
    display: none;
  }

  .top-bar .menu li {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (max-width: 798px) {
  .article_image {
    padding-bottom: 0;
  }

  .sidebar__content {
    border: 0;
    padding: 0;
  }

  .nav_arrows {
    float: none;
    text-align: center;
  }

  .nav_arrows .prev {
    float: left;
  }

  .nav_arrows .next {
    float: right;
  }

  #header .top-bar a.mobile_logo {
    margin: auto;
    position: absolute;
    top: 3px;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 18px;
    line-height: 34px;
    z-index: 5;
    width: 50%;
    height: auto;

    color: ;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #header a.mobile_logo img {
    width: auto;
    max-width: 150px;
    max-height: 40px;
  }

  .payment_methods {
    text-align: center;
    float: none;
    display: block;
  }

  .credits {
    float: none;
    display: block;
    text-align: center;
  }.is-absolute {}

  .blog_filter {
    margin-top: 1em;
    width: 100% !important;
  }

  .section_select {
    text-align: center;
  }

  .flex-control-nav {
    bottom: 10px;
  }

  .featured_links a span {
    font-size: -2px;
  }

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

  .featured_text {
    font-size: px;
    line-height: 1.7em;
  }

  #header {
    display: block;
  }

  .header {
    display: none;
  }

  h4.toggle {
    cursor: pointer;
  }

  .toggle span {
    display: block;
  }

  select {
    width: 100%;
    margin-left: 0;
  }

  .newsletter-form__sign-up,
  input[type=submit],
  input[type=reset],
  input[type=button] {
    margin-left: 0;
    width: 100%;
    outline: 0;
  }

  .credits_right {
    text-align: left;
  }

  .title_column {
    float: left;
  }

  .mobile_only,
  .container div.mobile_only {
    display: block;
  }

  span.mobile_only {
    display: inline;
  }

  .price_total {
    text-align: right;
  }

  .price_total_text {
    display: block;
  }

  .update_subtotal,
  .price_total,
  .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.2;
    position: relative;
  }

  p.subtitle {
    font-size: 1.1em;
    line-height: 1.2;
    position: relative;
  }
}

@media only screen and (max-width: 798px) {
  .mobile_hidden {
    display: none !important;
  }
}

@media only screen and (max-width: 480px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .collection_title,
  .empty_cart {
    font-size: 110%;
    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%;
    text-size-adjust: 100%;
  }
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: 'GT Eesti Display';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.15em;
}

.icon-bag:before {
  content: "";
}

.icon-cart:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-cross:before {
  content: "";
}

.icon-up-arrow:before {
  content: "";
}

.icon-down-arrow:before {
  content: "";
}

.icon-left-arrow:before {
  content: "←";
}

.icon-right-arrow:before {
  content: "→";
  margin-right: 0;
}

.icon-plus:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-menu:before {
  content: "";
}

.icon-email:before {
  content: "";
}

.icon-pinterest:before {
  content: "";
}

.icon-rss:before {
  content: "";
}

.icon-houzz:before {
  content: "";
}

.icon-snapchat:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-vimeo:before {
  content: "";
}

.icon-searchs:before {
  content: "";
}

.icon-zoom:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-lock:before {
  content: "";

  color: ;
}

.icon-user:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-tumblr:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-twitter-share:before {
  content: "";
}

.icon-facebook-share:before {
  content: "";
}

.icon-pinterest-share:before {
  content: "";
}

.icon-mail-share:before {
  content: "";
}

span.icon-down-arrow {
  padding: 0 !important;
  font-size: 12px !important;
}

form.search__form,
.search__form input {
  padding-top: 0;
  margin-bottom: 0;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.search__form input,
.search__form input:active,
.search__form input:focus {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;
font-size: 19px;

letter-spacing: px;

color: ;
background-color: transparent;
padding-right: 35px;

border-color: 

!important;
}.feature_image .search__form input,
.feature_image .search__form input:active,
.feature_image .search__form input:focus {
  color: #3F409A;
  border-color: #3F409A;
}

.feature_image .search__form input::-webkit-input-placeholder,
.feature_image .search__form input:active::-webkit-input-placeholder,
.feature_image .search__form input:focus::-webkit-input-placeholder {
  color: #3F409A;
}

.feature_image .search__form input::-moz-placeholder,
.feature_image .search__form input:active::-moz-placeholder,
.feature_image .search__form input:focus::-moz-placeholder {
  color: #3F409A;
}

.feature_image .search__form input:-ms-input-placeholder,
.feature_image .search__form input:active:-ms-input-placeholder,
.feature_image .search__form input:focus:-ms-input-placeholder {
  color: #3F409A;
}

.header_search_form {
  width: 60%;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0;
  position: relative;

  border-bottom: solid 1px ;
}

@media only screen and (max-width: 480px) {
  .header_search_form {
    width: 90%;
    margin: 30px auto;
    padding: 0;
  }
}

.header_search_form input,
.header_search_form input:focus,
.header_search_form input:active {
  background-color: transparent;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

color: ;

letter-spacing: px;
border: none;
font-size: 36px;
line-height: 36px;
}

@media only screen and (max-width: 480px) {

  .header_search_form input,
  .header_search_form input:focus,
  .header_search_form input:active {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 0px;
  }
}

.header_search_form .search-submit {
  top: 38px;
  font-size: 30px;
}

@media only screen and (max-width: 480px) {
  .header_search_form .search-submit {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    font-size: 20px;
  }
}

.feature_image .search__form input,
.feature_image .search__form input:active,
.feature_image .search__form input:focus {
  color: ;

  border: 2px solid ;
}

.feature_image .search__form input::-webkit-input-placeholder {
  color: #3F409A;
}

.feature_image .search__form input:-moz-placeholder {
  color: #3F409A;
}

.feature_image .search__form input::-moz-placeholder {
  color: #3F409A;
}

.feature_image .search__form input:-ms-input-placeholder {
  color: #3F409A;
}

.search__form input::-webkit-input-placeholder {
  color: #3F409A;
}

.search__form input:-moz-placeholder {
  color: #3F409A;
}

.search__form input::-moz-placeholder {
  color: #3F409A;
}

.search__form input:-ms-input-placeholder {
  color: #3F409A;
}

.search__form input:focus::-webkit-input-placeholder {
  color: ;
}

.search__form input:focus:-moz-placeholder {
  color: ;
}

.search__form input:focus::-moz-placeholder {
  color: ;
}

.search__form input:focus:-ms-input-placeholder {
  color: ;
}

.feature_image .search__form input,
.feature_image .search__form input:active,
.feature_image .search__form input:focus {
  color: #3F409A;
  border: 2px solid #3F409A;
}

.feature_image .search__form input::-webkit-input-placeholder {
  color: #3F409A;
}

.feature_image .search__form input:-moz-placeholder {
  color: #3F409A;
}

.feature_image .search__form input::-moz-placeholder {
  color: #3F409A;
}

.feature_image .search__form input:-ms-input-placeholder {
  color: #3F409A;
}

.search-submit {
  position: absolute;
  z-index: 1000;

  color: ;
  font-size: 20px;
  top: 9px;
  right: 7px;
  cursor: pointer;
  height: 27px;
  width: 27px;
  margin-top: -2px;
  fill: #3F409A;
}

.search-results li.item-result:hover {
  background: ;
}

.blog_search .search-submit {
  color: #333333;
  top: 10px;
  right: 8px;
  z-index: 1;
}

.social_icons {
  margin-left: 0;
  margin-top: 0;
}

.social_icons li {
  display: inline;
  padding-right: 2px;
}

@media only screen and (max-width: 798px) {
  footer .footer-social-icons {
    display: none;
  }
}

footer .footer-social-icons--mobile.columns {
  display: none;
  padding-left: 0;
}

@media only screen and (max-width: 798px) {
  footer .footer-social-icons--mobile.columns {
    display: block;
  }

  footer .footer-social-icons--mobile.columns>ul {
    display: block;
    padding-left: 0;
  }
}

footer .social_icons {
  display: block;
  margin-top: 15px;
}

@media only screen and (max-width: 798px) {
  footer .social_icons {
    padding-left: 0;
    text-align: center;
  }
}

footer .social_icons a,
footer .social_icons a:visited {
  color: ;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 1em;
}

@media only screen and (max-width: 480px) {

  footer .social_icons a,
  footer .social_icons a:visited {
    margin-bottom: 0;
  }
}

footer .social_icons a:active,
footer .social_icons a:hover {
  color: ;
  font-size: 22px;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  animation-duration: 0.75s;
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

.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 #slide-1 .animated {
  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;
}

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

#password-container {
  margin: 75px auto 0;
  max-width: 100%;
  display: table;
  text-align: center;
  display: table;
}

@media only screen and (max-width: 798px) {
  #password-container {
    margin-top: 10px;
  }
}

#password-container #contact_form input.newsletter-form__sign-up[type=submit] {
  width: calc(35% - 10px);
}

@media only screen and (max-width: 1024px) {
  #password-container #contact_form input.newsletter-form__sign-up[type=submit] {
    width: 100%;
  }
}

#password-container #contact_form input.contact_email[type=email] {
  max-width: 100%;
}

.password-page-message {
  font-size: 3em;
  line-height: 1.2;
  margin: 10px auto;
  padding: 12px 0;
}

.password-page-follow {
  margin: 5px 0;
}

.password-social .social_icons a,
.password-social .social_icons a:visited,
.password-social .social_icons a:active {
  font-size: 25px;
}

.password-page-row {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.password-page-col {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 30px;
  width: 100%;
}

.password-logo {
  max-width: 200px;
  margin: 0px auto;
}

.password-message {
  max-width: 600px;
  font-size: 1.2em;

  color: ;
}

.hr-small {
  margin: 20px auto;
  width: 50px;
}

.password-social {
  margin-top: 10px;
  padding-top: 20px;
}

.password-social ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
}

.password-social .social_icons li {
  display: inline;
  margin-left: 0;
}

.password-social .social_icons a:hover {
  color: ;
}

.password-footer {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 13px;

  color: ;
  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: ;
  text-decoration: none;
}

.password-footer a {
  color: ;
  text-decoration: none;
}

.controls {
  display: block;
  margin: 1em;
  text-align: right;
  text-transform: uppercase;
  position: relative;
}

#open-me {
  text-align: center;
  margin-bottom: 35px;
}

#open-me a:hover {
  color: ;
}

.close-me {
  z-index: 8000;
}

.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: 80%;
  display: table;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  color: #000;
}

@media only screen and (max-width: 798px) {
  #password-page-bg .modalbox .inputbox {
    top: 50%;
  }
}

.storefront-password-form label {
  font-size: 0.9em;
  margin: 0 0 1em 0;
  text-align: center;
}

.storefront-password-form .actions {
  display: inline-block;
}

.storefront-password-form #password {
  width: 50%;
  display: inline-block;
}

@media only screen and (max-width: 480px) {
  .storefront-password-form #password {
    width: 100%;
  }
}

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

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

.shopify-section--page-details-template .article {
  padding-bottom: 0;
}

.shopify-section--page-details-template div.container .featured_products {
  padding-top: 0;
}

.shopify-section--page-details-template .block__image_with_text_overlay .full-width--false,
.shopify-section--page-details-template .block__image_with_text .is-width-standard {
  padding-top: 20px;
}

@media only screen and (max-width: 480px) {

  .shopify-section--page-details-template .caption.position-center,
  .shopify-section--page-details-template .caption.position-left,
  .shopify-section--page-details-template .caption.position-right {
    margin: 5% 0 0 0;
  }
}

.product-block.product-block--first {
  margin-top: 0;
}

.product-block.product-block--size-chart {
  display: flex;
  justify-content: flex-end;
}

.size_chart {
  display: inline-block;
}

  

  

.product-gallery__model model-viewer,
.product-gallery__video iframe {
  width: 100%;
  min-height: 450px;
}

.product-gallery__model {
  position: relative;
}

.product-gallery__model model-viewer {
  width: 100%;
  min-height: 500px;
}

.view-in-your-space {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;

  background: ;

  color: ;
  font: inherit;
  text-transform: none;
  border-radius: 0px;
  border: 0;
}

.view-in-your-space svg path:first-child {
  stroke: ;
}

.view-in-your-space svg path:last-child {
  fill: ;
}

.plyr--video .plyr__controls {
  background: ;
  padding: 10px;
}

.plyr--video .plyr__control {
  background: transparent;

  color: ;
}

.plyr--video .plyr__control:hover {
  background: ;

  color: ;
}

.plyr--video .plyr__controls__item.plyr__time,
.plyr--video input[type=range],
.plyr--video .plyr__controls__item {
  color: ;
}

.plyr--video .plyr__progress input[type=range]+.thumb {
  background-color: ;

  color: ;
}

.plyr--video input[type=range]::-webkit-slider-thumb {
  background-color: ;
}

.plyr--video input[type=range]::-moz-range-thumb {
  background-color: ;
}

.plyr--video input[type=range]::-ms-thumb {
  background-color: ;
}

.plyr--video .plyr__progress__buffer,
.plyr--video .plyr__control[aria-expanded=true] {
  background-color: ;
}

.plyr--video .plyr__control.plyr__tab-focus {
  background-color: ;
}

.plyr--video .plyr__control--overlaid {
  background: ;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 50px;
  width: 50px;
}

.plyr--video .plyr__control--overlaid svg {
  left: auto;
}

.plyr--video .plyr__control--overlaid:hover {
  background: ;
}

.plyr--video .plyr__control--overlaid:hover .play-icon-button-control rect {
  opacity: 0.75;
}

.plyr--video .plyr__control .play-icon-button-control {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
}

.plyr--video .plyr__control .play-icon-button-control rect {
  fill: ;
}

.plyr--video .plyr__control .play-icon-button-control path {
  fill: ;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-right: 10px;
  padding-left: 10px;
}

.plyr--full-ui .plyr__volume {
  background-color: ;
  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 ;
  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: ;
  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;
  }
}

.show-gallery-arrows--true .shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  right: 50px;
  bottom: 10px;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: ;

  background: ;
}

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

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: ;

  border: 1px solid ;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-bottom: 1px solid ;
}

@media only screen and (min-width: 799px) {

  .video-on-hover .plyr__controls,
  .video-on-hover .plyr__control--overlaid,
  .swap-true .plyr--youtube .plyr__controls,
  .swap-true .plyr--youtube .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>*,
  .swap-true .plyr--youtube .plyr__controls>*,
  .swap-true .plyr--youtube .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_gallery_nav .media-badge {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 33%;
  max-height: 33%;
  min-width: 20px;
  width: 25px;
  height: 25px;
}

.product_gallery_nav .media-badge svg {
  width: 100%;
  height: 100%;
}

.product_gallery_nav .media-badge path:first-child {
  fill: ;
}

.product_gallery_nav .media-badge path:last-child {
  fill: ;
}

.product_gallery_nav .media-badge g path:first-child {
  stroke: ;
}

.product_gallery_nav .media-badge .media-badge__outline {
  stroke: ;
}

.gallery-wrap.product-height-set model-viewer {
  margin: 0 auto;
}

.gallery-wrap.product-height-set .product_gallery img,
.gallery-wrap.product-height-set .product_gallery .plyr--html5 video {
  width: 100%;
}

.gallery-wrap.product-height-set .product_gallery img {
  object-fit: contain;
}

.gallery-wrap.product-height-set .product_gallery .plyr--youtube .plyr__video-embed {
  height: 100%;
}

.homepage-product-slider {
  margin: 0 10px;
}

@media only screen and (max-width: 798px) {
  .homepage-product-slider {
    margin: 0;
  }
}

.homepage-product-slider object.placeholder-image {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  padding-top: 100%;
}

.homepage-product-slider .placeholder-svg--product {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.homepage-product-slider.even-num-slides {
  padding-left: 10px;
  width: calc(100% - 20px);
}

@media only screen and (max-width: 798px) {
  .homepage-product-slider.even-num-slides {
    padding-left: 0;
    width: 100%;
  }
}

.products-slider.slider-gallery.products-length-6 .gallery-cell {
  width: calc(16.6% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery.products-length-6 .gallery-cell {
    width: calc(40% - 10px);
  }
}

.products-slider.slider-gallery.products-length-5 .gallery-cell {
  width: calc(20% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery.products-length-5 .gallery-cell {
    width: calc(40% - 10px);
  }
}

.products-slider.slider-gallery.products-length-4 .gallery-cell {
  width: calc(25% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery.products-length-4 .gallery-cell {
    width: calc(40% - 10px);
  }
}

.products-slider.slider-gallery.products-length-3 .gallery-cell,
.products-slider.slider-gallery.products-length-2 .gallery-cell,
.products-slider.slider-gallery.products-length-1 .gallery-cell {
  width: calc(33.33% - 10px);
}

.products-slider.slider-gallery .gallery-cell.visible-2 {
  width: calc(50% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery .gallery-cell.visible-2 {
    width: calc(50% - 10px);
  }
}

.products-slider.slider-gallery .gallery-cell.visible-3 {
  width: calc(33.33% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery .gallery-cell.visible-3 {
    width: calc(40% - 10px);
  }
}

.products-slider.slider-gallery .gallery-cell.visible-4 {
  width: calc(25% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery .gallery-cell.visible-4 {
    width: calc(40% - 10px);
  }
}

.products-slider.slider-gallery .gallery-cell.visible-5 {
  width: calc(20% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery .gallery-cell.visible-5 {
    width: calc(40% - 10px);
  }
}

.products-slider.slider-gallery .gallery-cell.visible-6 {
  width: calc(16.666% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery .gallery-cell.visible-6 {
    width: calc(40% - 10px);
  }
}

.products-slider.slider-gallery .gallery-cell.visible-7 {
  width: calc(14.2% - 10px);
}

@media only screen and (max-width: 798px) {
  .products-slider.slider-gallery .gallery-cell.visible-7 {
    width: calc(40% - 10px);
  }
}

.products-slider.slider-gallery .gallery-cell.visible-7 .product-details {
  font-size: 0.7rem;
}

@media only screen and (max-width: 1024px) {
  .products-length-7 .product-info__caption {
    display: block;
  }

  .products-length-7 .thumbnail-overlay {
    display: none;
  }

  .products-length-8 .product-info__caption {
    display: block;
  }

  .products-length-8 .thumbnail-overlay {
    display: none;
  }

  .products-length-9 .product-info__caption {
    display: block;
  }

  .products-length-9 .thumbnail-overlay {
    display: none;
  }

  .products-length-10 .product-info__caption {
    display: block;
  }

  .products-length-10 .thumbnail-overlay {
    display: none;
  }

  .products-length-11 .product-info__caption {
    display: block;
  }

  .products-length-11 .thumbnail-overlay {
    display: none;
  }

  .products-length-12 .product-info__caption {
    display: block;
  }

  .products-length-12 .thumbnail-overlay {
    display: none;
  }

  .products-length-13 .product-info__caption {
    display: block;
  }

  .products-length-13 .thumbnail-overlay {
    display: none;
  }

  .products-length-14 .product-info__caption {
    display: block;
  }

  .products-length-14 .thumbnail-overlay {
    display: none;
  }

  .products-length-15 .product-info__caption {
    display: block;
  }

  .products-length-15 .thumbnail-overlay {
    display: none;
  }

  .products-length-16 .product-info__caption {
    display: block;
  }

  .products-length-16 .thumbnail-overlay {
    display: none;
  }
}

.featured_products.product-slider {
  padding-bottom: 0;
}

.featured_products.product-slider .columns {
  padding-bottom: 0;
}

.banner-full-link {
  line-height: 0;
  font-size: 0;
  color: transparent;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.banner-full-link+.caption {
  pointer-events: none;
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  .full-width--true .caption {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1025px) {
  .full-width--true .caption {
    max-width: 960px;
    padding: 0;
  }
}

@media only screen and (min-width: 1401px) {
  .full-width--true .caption {
    max-width: 1200px;
    padding: 0;
  }
}

.caption {
  width: 100%;
  position: absolute;
  top: 50%;
  padding: 0 5%;
  z-index: 3;
  transform: translate(0, -50%);
}

@media only screen and (min-width: 799px) {
  .caption {
    max-width: 960px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1025px) {
  .caption {
    padding: 0 30px;
  }
}

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

.caption a {
  pointer-events: all;
}

.caption.position-center {
  left: 0;
  right: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 798px) {
  .caption.position-center {
    width: 85%;
  }
}

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

.caption.position-left {
  left: 0;
  right: 0;
  text-align: left;
}

.caption.position-right {
  left: 0;
  right: 0;
  text-align: right;
}

.caption .pretext {
  color: ;

font-weight: ;

text-transform: ;

font-size: px;

letter-spacing: px;
margin-bottom: 10px;
}Liquid error: Unknown operator !=blank@media only screen and (max-width: 480px) {
  .caption .pretext {
    font-size: 1.4em;
  }
}

@media only screen and (max-width: 798px) {
  .caption .pretext {
    font-size: 0.0px;
  }
}

@media only screen and (min-width: 799px) {
  .caption .pretext {
    font-size: 0.0px;
  }
}

@media only screen and (min-width: 799px) {
  .caption .pretext {
    font-size: px;
  }
}

.caption .headline {
  color: ;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;

font-size: px;

letter-spacing: px;
line-height: 0.9em;
margin-bottom: 15px;
}Liquid error: Unknown operator !=blank.caption .subtitle {
  color: ;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

text-transform: ;

font-style: ;

font-size: px;

letter-spacing: px;
position: relative;
}Liquid error: Unknown operator !=blank@media only screen and (max-width: 480px) {
  .caption .subtitle {
    font-size: 1.4em;
  }
}

@media only screen and (max-width: 798px) {
  .caption .subtitle {
    font-size: 0.0px;
  }
}

@media only screen and (min-width: 799px) {
  .caption .subtitle {
    font-size: 0.0px;
  }
}

@media only screen and (min-width: 1025px) {
  .caption .subtitle {
    font-size: px;
  }
}

.caption .pretext:empty,
.caption .headline:empty,
.caption .subtitle:empty {
  display: none;
}

.caption .pretext:empty:before,
.caption .headline:empty:before,
.caption .subtitle:empty:before {
  height: 0;
}

.caption-background-text_box .caption-content {
  background-color: ;
}

@media only screen and (max-width: 480px) {
  .caption--below-true .caption {
    margin: 20px auto !important;
    font-size: 3vw;
    position: static;
    transform: none;
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .caption--below-true .pretext {
    color: ;
    text-shadow: none;
  }
}

@media only screen and (max-width: 480px) {
  .caption--below-true .headline {
    color: ;
    text-shadow: none;
  }
}

@media only screen and (max-width: 480px) {
  .caption--below-true .subtitle {
    color: ;
    text-shadow: none;
  }
}

.caption--below-true.caption-background-text_box .caption-content {
  background-color: ;
}

@media only screen and (max-width: 480px) {
  .caption--below-true.caption-background-text_box .caption-content {
    background-color: transparent;
  }
}

@media only screen and (max-width: 480px) {
  .caption--below-true.caption-background-translucent_text_box .caption-content {
    background-color: transparent;
  }
}

.subtitle p a {
  pointer-events: all;
}

.caption-content {
  display: inline-block;
  float: none;
  max-width: 60%;
  font-size: 0;
}

.page-faq .caption-content {
  max-width: 70%;
}

@media only screen and (max-width: 798px) {
  .caption-content {
    max-width: 80%;
  }
}

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

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

@media only screen and (max-width: 798px) {
  .caption-content.align-center {
    max-width: 80%;
  }
}

@media only screen and (max-width: 480px) {
  .caption-content.align-center {
    width: 100%;
    max-width: 100%;
  }
}

.caption-content.align-left {
  text-align: left;
}

.caption-content.align-left .subtitle:before {
  margin-left: 0;
}

.caption-content.align-right {
  text-align: right;
}

.caption-content.align-right .subtitle:before {
  margin-right: 0;
}

.caption-content {
  padding: 30px;
}

.caption-content h1 {
  padding-top: 0;
}

.caption-content>*:only-child {
  margin-bottom: 0px;
}

@media only screen and (max-width: 480px) {
  .caption-content {
    padding: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .caption--below-true .caption-content {
    padding: 0px;
  }
}.homepage-video .caption-background-text_box {
  background-color: ;
}@media only screen and (max-width: 480px) {
  .homepage-video .caption-background-text_box {
    background-color: transparent;
  }
}

.caption-background-translucent_text_box .caption-content {
  background-color: ;
}

.homepage-slideshow .gallery-cell:not(:first-child) {
  height: 0;
}

.homepage-slideshow.flickity-enabled .gallery-cell:not(:first-child) {
  height: auto;
}

.account-header-logout {
  text-align: right;
  text-transform: uppercase;
}

.account-sidebar {
  border-right: 1px solid ;
  box-sizing: border-box;
  padding-right: 10px;
  overflow-wrap: anywhere;
}

@media only screen and (max-width: 798px) {
  .account-sidebar {
    border: 0;
    padding-right: 0;
  }
}

.customers-addresses .account-sidebar {
  border-right: 0;
  padding-right: 0;
}

.customers-addresses .account-main {
  box-sizing: border-box;

  border-left: 1px solid ;
  padding-left: 20px;
}

@media only screen and (max-width: 798px) {
  .customers-addresses .account-main {
    border: 0;
    padding-left: 0;
  }
}

.action_bottom .note {
  vertical-align: middle;
  line-height: 40px;
}

.address_title {
  margin-bottom: 0;
  padding-bottom: 0;
}

.address__action a,
.address__action a:hover,
.address__action a:active,
.address__action a:focus {
  color: inherit;
}

@media only screen and (max-width: 798px) {
  .shopify-policy-template .container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.container .shopify-policy__container {
  margin: 0;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.shopify-policy__container .shopify-policy__title {
  text-align: left;
}

.shopify-policy__container .shopify-policy__body .rte p {
  font-size: 17px;
}

.shopify-section--featured-product .section.is-width-wide {
  margin: 0 auto;
}

.shopify-section--featured-product .product__details {
  padding: 10px 2rem;
}

.shopify-section--text-columns-with-images .border-style--box {
  padding: 10%;

  border: 1px solid ;
}

.shopify-section--text-columns-with-images .border-style--quote {
  padding-left: 20px;

  border-left: 1px solid ;
  margin-bottom: 10%;
}

.shopify-section--text-columns-with-images .large_text {

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.5;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0.0px;
}

.shopify-section--text-columns-with-images .text-column {
  margin-bottom: 25px;
}

.shopify-section--text-columns-with-images .text-columns-with-images__button {
  margin: 10px 0 25px;
}

.shopify-section--text-columns-with-images h2.title+.feature_divider {
  margin-bottom: 40px;
}

.shopify-section--text-columns-with-images img {
  margin: 0 0 15px;
}

.flexslider img {
  display: block;
  margin: 0 auto;
}

.homepage-slideshow:hover .flickity-prev-next-button,
.shopify-section--testimonials:hover .flickity-prev-next-button {
  opacity: 0.5;
}

.homepage-slideshow.text-animation--false .caption {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.homepage-slideshow.text-animation--false.flickity-enabled .caption {
  opacity: 1;
}

.text-animation--true .caption-content {
  opacity: 0;
}

@media only screen and (max-width: 480px) {
  .text-animation--true .caption-content {
    opacity: 1;
    animation-duration: 0s;
  }
}

.homepage-slideshow.single-image .flickity-prev-next-button,
.shopify-section--testimonials.single-image .flickity-prev-next-button {
  display: none;
}

.homepage-slideshow.single-image .flickity-page-dots,
.shopify-section--testimonials.single-image .flickity-page-dots {
  display: none;
}

.homepage-slideshow .gallery-cell,
.shopify-section--testimonials .gallery-cell {
  width: 100%;
}.homepage-slideshow .gallery-cell,
.shopify-section--testimonials .gallery-cell {
  background-color: ;
}@media only screen and (max-width: 480px) {

  .homepage-slideshow .gallery-cell,
  .shopify-section--testimonials .gallery-cell {
    background-color: transparent;
  }
}

.homepage-slideshow .gallery-cell img,
.shopify-section--testimonials .gallery-cell img {
  width: 100%;
  display: block;
}

.homepage-slideshow .flickity-prev-next-button,
.shopify-section--testimonials .flickity-prev-next-button {
  opacity: 0;
  width: 5%;
  height: 100%;
  border-radius: 0;
}

@media only screen and (min-width: 799px) {

  .homepage-slideshow .flickity-prev-next-button,
  .shopify-section--testimonials .flickity-prev-next-button {
    opacity: 0;
  }
}

.homepage-slideshow .flickity-page-dots,
.shopify-section--testimonials .flickity-page-dots {
  bottom: 2em;
  display: none;
}

@media only screen and (min-width: 799px) {

  .homepage-slideshow .flickity-page-dots,
  .shopify-section--testimonials .flickity-page-dots {
    display: block;
  }
}

.homepage-slideshow .flickity-page-dots .dot,
.shopify-section--testimonials .flickity-page-dots .dot {
  height: 4px;
  width: 40px;
  margin: 0;
  border-radius: 0;

  background: ;
}

@media only screen and (max-width: 480px) {

  .homepage-slideshow .flickity-page-dots,
  .shopify-section--testimonials .flickity-page-dots {
    display: block;
    bottom: 5px;
  }
}

.js-product-slider .product_clear {
  display: none;
}

.js-product-slider .flickity-prev-next-button {
  border-radius: 0;
}

.search-bgr-true {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shopify-section--search {
  width: 100%;
  display: inline-block;

  background-color: ;
}

.shopify-section--search h2 {
  margin-top: 0;
  margin-bottom: 0.25em;
}

.shopify-section--search p,
.shopify-section--search h2 {
  color: ;
}

.shopify-section--search .section_form {
  padding: 60px 20px;
  max-width: 1200px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.text-align--center .search__container {
  justify-content: center;
}

.text-align--left .search__container {
  justify-content: flex-start;
}

.text-align--right .search__container {
  justify-content: flex-end;
}

.search__container {
  position: relative;
  width: 100%;
  display: flex;
}

.search__container .search__wrapper {
  display: inline-block;
  position: relative;
  max-width: 650px;
  width: 100%;
}

.search__container input[type=text] {
  color: ;

  font-size: px;
  display: inline-block;
  border: 1px solid #000;
  min-height: 50px;
  height: 50px;
  margin-bottom: 0;
  background-color: #ffffff;
}

.search__container input[type=text]::-webkit-input-placeholder {
  color: ;
}

.search__container input[type=text]:-moz-placeholder {
  color: ;
}

.search__container input[type=text]::-moz-placeholder {
  color: ;
}

.search__container input[type=text]:-ms-input-placeholder {
  color: ;
}

.search__container input[type=text]:focus,
.search__container input[type=text]:active {
  border: 1px solid #000;
}

.search__form {
  width: 100%;
  max-width: 650px;
  position: relative;
  flex: 0 0 auto;
  margin-bottom: 0;
}

.search__button {
  position: absolute;
  margin-top: 0;
  top: 0;
  height: 50px;
  width: 50px;
  right: 0px;
  padding: 0;
  background-color: transparent;
  border-color: transparent;
  color: #3F409A;
  font-size: 24px;
}.search__button {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}.search__button:hover {
  color: #3F409A;
  background-color: transparent;
  border: none;
  border-left: 0px;
}

.button-grid-container {
  margin-top: 10px;
  display: inline-grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-auto-flow: column;
  grid-gap: 1rem;
}

@media only screen and (max-width: 798px) {
  .button-grid-container--column-mobile {
    grid-auto-flow: row;
  }
}

@media only screen and (max-width: 1024px) {
  .button-grid-container--column-tablet {
    grid-auto-flow: row;
  }
}

.button-grid-container--column {
  grid-auto-flow: row;
}

.block__image_with_text+div:not(.block__image_with_text) {
  padding-top: 20px;
}

.block__image_with_text+section {
  padding-top: 20px;
}

.block__image_with_text+.block__image_with_text {
  margin-bottom: 20px;
}

.image-with-text-container .featured-link--half a[href] img {
  box-shadow: #000 0em 0em 0em;
  transition: opacity 0.2s linear;
}

.image-with-text-container .featured-link--half:hover a[href] img.lazyloaded {
  opacity: 0.8;
}

.standard--width .image-with-text .featured-link--image,
.full-width--false.image-with-text .featured-link--image {
  background-color: transparent;
}

.featured-link--half {
  box-sizing: border-box;
  text-align: center;
  background-color: ;
  
}

.featured-link--half img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

@media only screen and (max-width: 480px) {
  .featured-link--half img {
    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);
    padding: 2em 0;
  }
}

.featured-link--half .collection_title {
  margin-bottom: 15px;
  display: block;
}.featured-link--half .collection_title {
  color: ;
}.featured-link--half .description {
  position: relative;

  font-size: ;
  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: 1401px) {
  .featured-link--half .description {
    font-size: inherit;
  }
}.shopify-section--divider .container {
  padding: 0;
}

.divider {
  opacity: 0;
  border-top: 0px;
}

.divider.divider--true {
  opacity: 1;
}

.quote__text {
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 0;

  border-top-style: ;

  border-top-width: px;

  border-bottom-width: px;

  border-bottom-style: ;

  border-color: ;
}

.quote__text p {
  margin: 0;
}

.quote {
  padding: 10px 0px;
  text-align: center;

  border-top-style: ;

  border-top-width: px;

  border-bottom-width: px;

  border-bottom-style: ;

  border-color: ;
}

.shopify-section--rich-text-and-image {
  padding: 20px 0;
}

.rich-text__content .regular_text,
.rich-text__content .featured_text {
  margin-top: 15px;
}

.promo-animation--true {
  opacity: 0;
}

.featured-promotions.full-width--false {
  padding: 20px 0;
}

.featured-promotions.full-width--false .feature-section {
  margin-bottom: 20px;
}

.featured-promotions .feature-section {
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 798px) {
  .featured-promotions .feature-section {
    opacity: 1;
  }
}

.featured-promotions .feature-section .link-promo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.featured-promotions .feature-section .feature-inner {
  display: block;
  position: relative;
  overflow: hidden;
}

.featured-promotions .feature-section .feature-style--circle {
  border-radius: 50%;
}

.featured-promotions .feature-section .feature-style--circle img {
  border-radius: 50%;
}

.featured-promotions .feature-section .feature-style--rounded {
  border-radius: 10px;
}

.featured-promotions .feature-section .feature-style--rounded img {
  border-radius: 10px;
}

.featured-promotions .feature-section .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background-color 0.25s linear;
}.featured-promotions .feature-section .feature-wrap {
  top: 50%;
  transform: translateY(-50.1%);
  padding: 10px 0;
  position: absolute;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  pointer-events: none;
}

.featured-promotions .feature-section .feature-details {
  display: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}

@media only screen and (max-width: 798px) {
  .featured-promotions .feature-section .feature-details {
    opacity: 1;
    display: block;
  }
}

.featured-promotions .feature-section .feature-details.reveal-details {
  opacity: 1;
}

.featured-promotions .feature-section .feature-details .feature-details__button {
  margin-top: 15px;
}

.featured-promotions .feature-section .description {
  color: ;
  transition: all 0.3s linear;
  margin-bottom: 0;
}

.featured-promotions .feature-section .description a {
  pointer-events: auto;
}

.featured-promotions .feature-section.title-overlay-true .title {
  transition: all 0.3s linear;

  color: ;
}

@media only screen and (max-width: 798px) {
  .featured-promotions .feature-section.title-overlay-true .title {
    margin-bottom: 10px;
  }
}

.featured-promotions .feature-section.title-overlay-true .title:after {
  content: "";
  display: block;
  height: 1px;
  width: 0;

  background: ;
  transition: width 0.5s ease,
  background-color 0.5s ease;
  margin: 10px auto auto auto;
}

@media only screen and (max-width: 798px) {
  .featured-promotions .feature-section.title-overlay-true .title:after {
    display: none;
  }
}

.featured-promotions .feature-section.title-overlay-false .feature-wrap .title {
  display: none;
}

.featured-promotions .feature-section:hover .feature-overlay {
  background: ;
}.featured-promotions .feature-section.title-overlay-true:hover .title:after {
  width: 50%;

  background: ;
}

.featured-promotions .feature-section.title-overlay-true:hover .title {
  color: ;
}

.featured-promotions .feature-section.title-overlay-true:hover .description {
  color: ;
}

.featured-promotions .feature-section.title-overlay-false:hover .description {
  color: ;
}

.featured-promotions .feature-section img {
  width: 100%;
  display: block;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

.promo-1 {
  animation-delay: 0s;
}

.promo-2 {
  animation-delay: 0.3s;
}

.promo-3 {
  animation-delay: 0.6s;
}

.promo-4 {
  animation-delay: 0.9s;
}

.promo-5 {
  animation-delay: 1.2s;
}

.promo-6 {
  animation-delay: 1.5s;
}

.promo-7 {
  animation-delay: 1.8s;
}

.promo-8 {
  animation-delay: 2.1s;
}

.promo-9 {
  animation-delay: 2.4s;
}

.promo-10 {
  animation-delay: 2.7s;
}

.promo-11 {
  animation-delay: 3s;
}

.promo-12 {
  animation-delay: 3.3s;
}

.featured-promotions.full-width--true {
  padding-top: 0;
}

.featured-collection__description {
  padding: 0 20px;
  margin: 20px 0;
}

.banner {
  position: relative;
  overflow: hidden;
}.banner {
  background-color: ;
}@media only screen and (max-width: 480px) {
  .banner {
    max-height: inherit;
    background-color: transparent;
  }
}

.banner img {
  width: 100%;
  display: block;
}

.block__featured_video .caption,
.shopify-section--video .caption {
  z-index: 30;
  pointer-events: none;
}

@media only screen and (max-width: 480px) {

  .block__featured_video .caption,
  .shopify-section--video .caption {
    margin: 0;
    height: auto;
  }
}

.block__featured_video .video-text--outside-video,
.shopify-section--video .video-text--outside-video {
  height: auto;
}

.showPosterImage--true[data-ratio="16:9"] {
  padding-top: 56.25%;
}

.showPosterImage--true[data-ratio="4:3"] {
  padding-top: 75%;
}

.homepage-video {
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}.homepage-video {
  background-color: ;
}@media only screen and (max-width: 480px) {
  .homepage-video {
    background-color: transparent;
  }
}

.homepage-video img {
  width: 100%;
  display: block;
}

.homepage-video iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.homepage-video video {
  background-color: ;
}

.homepage-video video[poster] {
  object-fit: cover;
}

.homepage-video video.video-autoplay--true.html-video {
  display: none;
}

.homepage-video .homepage-video--media {
  width: 100%;
  height: auto;
  padding-top: 0;
}

.homepage-video .placeholder-image--true a.video__play-button {
  pointer-events: none;
}

.homepage-video .caption.text-on-video {
  pointer-events: none;
}

@media only screen and (max-width: 480px) {
  .homepage-video .caption.text-on-video {
    position: absolute;
    height: auto;
    transform: translateY(-50%);
    margin: 0;
  }
}

.homepage-video .mobile-video__buttons {
  display: block;
  text-align: center;
  top: 55%;
  transform: translateY(-50%);
  width: 100%;
  position: absolute;
}

.homepage-video .mobile-video__buttons.text-on-video {
  z-index: 20;
}

@media only screen and (min-width: 481px) {
  .homepage-video .mobile-video__buttons {
    display: none;
  }
}

.darken-video {
  display: block;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  pointer-events: none;
  z-index: 20;
}

.newsletter_section {
  padding: 20px 0;
}

.banner.page-banner {
  width: 100%;
  overflow: hidden;
  max-height: 100vh;
}

.price--sale {
  margin-right: 5px;

  color: ;
}

.compare-at-price {
  text-decoration: line-through;
}

.unit-pricing {
  display: block;
  font-size: 0.75em;
  margin-top: 2px;
}

.price-ui {
  display: inline-block;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}

.product__details--product-page .price-ui {
  display: flex;
  flex-wrap: wrap;
}

.product__details--product-page .price-ui .savings {
  order: 5;
  margin-right: 5px;
  width: 100%;
}

.product__details--product-page .price-ui .sold_out {
  order: 3;
}

.product__details--product-page .price-ui .unit-pricing {
  order: 4;
  width: 100%;
}

.product__details--product-page .price-ui .compare-at-price {
  order: 2;
  margin-right: 5px;
}

.price-ui--loading {
  opacity: 0;
}

.price-ui-badges {
  display: flex;
  margin-bottom: 15px;
}

.thumbnail .price-ui-badges {
  position: absolute;
  top: 0;
  right: 0;
  margin-bottom: 0;
  flex-direction: column;
}

.price-ui-badge {
  margin-right: 5px;
}

.price-ui-badge:last-child {
  margin-right: 0;
}

.thumbnail .price-ui-badge {
  margin-right: 0;
}

.price-ui-badge__sticker {

font-weight: ;

font-size: px;

font-style: ;

text-transform: ;

letter-spacing: px;
padding: 8px 12px;
text-align: center;
color: #fff;
font-size: 15px;
white-space: nowrap;
}

@media only screen and (max-width: 480px) {
  .price-ui-badge__sticker {
    font-size: smaller;
    padding: 4px 10px;
  }
}

.price-ui-badge__sticker {
  background-color: ;
}

.price-ui-badges--round .price-ui-badge__sticker {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  padding: 0;
}

@media only screen and (max-width: 798px) {
  .price-ui-badges--round .price-ui-badge__sticker {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

.thumbnail .price-ui-badges--round .price-ui-badge__sticker {
  position: relative;
  top: 10px;
  right: 10px;
}

@media only screen and (max-width: 798px) {
  .thumbnail .price-ui-badges--round .price-ui-badge__sticker {
    top: 5px;
    right: 5px;
  }
}

.price-ui-badge__sticker--new,
.price-ui-badge__sticker--pre-order {
  background-color: ;
}

.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: px;
  --surface-pick-up-embed-theme-paragraph-smaller-font-size: 0.85em;
  --surface-pick-up-embed-theme-body-font-weight-bold: 600;

  --surface-pick-up-embed-theme-body-text-color: ;
  --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: 40px;
}

.js-quick-shop .surface-pick-up-embed {
  --surface-pick-up-embed-theme-body-text-color: ;
}

.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: px;
  --surface-pick-up-item-theme-paragraph-smaller-font-size: 0.85em;
  --surface-pick-up-item-theme-body-font-weight-bold: 600;

  --surface-pick-up-item-theme-body-text-color: ;

  --surface-pick-up-item-theme-border-color: ;
  --surface-pick-up-item-theme-link-text-decoration: underline;
  --surface-pick-up-item-row-gap: 0.8em;
  --surface-pick-up-item-column-gap: 5px;
  --surface-pick-up-item-gap: 22px;
}

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

.surface-pick-up__modal-title {
  margin: 0;

  font-family: 'GT Eesti Display',
  ,
;

font-weight: ;

font-style: ;

text-transform: ;
line-height: 1.5;

color: ;
display: block;

letter-spacing: px;
text-rendering: optimizeLegibility;

font-size: 0px;
font-weight: 600;
text-transform: none;
letter-spacing: normal;
}

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

.surface-pick-up-embed__in-stock-icon,
.surface-pick-up-embed__out-of-stock-icon {
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.3em;
}

.surface-pick-up-item__pick-up-location {
  font-size: px;
  font-weight: bold;
  letter-spacing: normal;
  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 {
  margin-top: 0.3em;
  width: 0.8em;
  height: 0.8em;
}

.surface-pick-up-item__pick-up-distance {
  padding-left: 5em;
}

.surface-pick-up-item:last-child {
  padding-bottom: calc(var(--surface-pick-up-item-gap) / 2);
}

.surface-pick-up-embed__location-availability {
  text-transform: none;
  letter-spacing: normal;
}

h1,
h2 {
  font-family: gt_eesti_display;
  font-weight: 700 !important
}

:focus {
  outline: 0 !important
}

.mobile-nav-wrapper.js-menu--is-open {
  display: block !important;
  z-index: 9
}

.hero__btn {
  margin-top: 45px;
  background: tomato;
  border-radius: 25px
}

.hero__btn:hover {
  background-color: #2e2f7d !important
}

.tab {
  overflow: hidden
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: 0;
  cursor: pointer;
  padding: 14px 16px;
  transition: .3s;
  font-size: 17px;
  border-radius: 23px;
  color: #3F409A;
  transition: all .7s ease
}

.tab button:hover {
  background-color: #inherit
}

.tab button.active {
  background-color: #f0f8ff
}

.tabcontent {
  display: none;
  padding: 0 0;
  background: #f3f3f3;
  border-radius: 0;
  width: 100%;
  margin-bottom: 25px
}


.btn,
.bridge-main3 a.button,
.column-gut a.button,
.product_details_page .product_faq .page-faq .product_faq_btn a.button {
  border-radius: 50px;
  background: #e8442e;
  border-radius: 50px;
  color: #fff;
  font-family: 'GT Eesti Display';
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  padding: 14px 37px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .7s ease;
}
.btn:hover {
  background: #2e2f7d !important;
  text-decoration: none;
}
.btn.finger {
  padding-right: 57px;
}
.btn.finger span {
  position: relative;
}
.btn.finger span::after {
  content: '👉';
  font-size: 28px;
  position: absolute;
  top: -5px;
  right: -35px;
}
.btn.full {
  width: 100%;
}
.btn.flare {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}
.btn.flare .icon-right {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.featured-row__subtext p {
  color: #2e2f7d
}

.feature-row__text {
  padding-top: 0;
  padding-bottom: 0
}

.feature-row__text .h3 {
  font-size: 32px;
  color: #2e2f7d
}

h2.h1.mega-title.mega-title--large,
.page-faq .headline {
  color: #3F409A;
  text-shadow: none;
  font-family: gt_eesti_display;
  font-weight: 700
}

.hero .mega-subtitle {
  text-shadow: none;
  max-width: 100%;
  font-size: 18px
}

.testimonials--star-wrapper {
  display: flex;
  justify-content: center;
  background: #f0f8fd;
  border-radius: 0 0 24px 24px;
  padding: 14px 0
}

.mega-subtitle p {
  color: #2e2f7d
}

.hero--large {
  background-position: bottom !important
}

.page-width.text-center {
  padding-bottom: 230px
}

.cstm-featured-row {
  padding-bottom: 25px;
  padding-top: 30px
}

.badges-features1 {
  padding-top: 26px;
  color: #2e2f7d
}

.badges-features1 p {
  color: #2e2f7d
}

.badges-features1 a {
  color: #2e2f7d
}

.badges-features2 {
  padding-top: 26px
}

.badges-sectn::after {
  content: "";
  clear: both;
  display: table
}

.col-sm-12 p {
  color: #2e2f7d
}

.col-sm-6 p {
  color: #2e2f7d
}

.col-sm-6 a {
  font-weight: 700;
  color: #2e2f7d
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px
}

.row::after {
  content: "";
  clear: both;
  display: table
}

.row1 .columns {
  float: left;
  width: 33.33%;
  padding: 5px
}

.skip-link,
svg.icon.icon-search {
  display: none
}

.rows::after {
  content: "";
  clear: both;
  display: table
}

.row-category::after {
  content: "";
  clear: both;
  display: table
}

.site-header {
  border-bottom: 0;
  padding: 0 35px;
  position: fixed;
  background-color: #fff;
  z-index: 999;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
}

.site-header.true-annoucement {
  top: 50px;
}

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.site-header__menu {
  display: block
}

.badges-sectn::after,
nav#AccessibleNav {
  display: none
}

body.template-index {
  position: relative
}

.grid.site-header__mobile-nav {
  background: 0 0;
  padding-top: 10px;
  background-color: transparent
}

.grid.site-header__mobile-nav::after {
  display: none
}

.grid__item.medium-up--one-quarter.logo-align--left {
  display: flex;
  align-items: center
}

h1.h2.site-header__logo {
  margin: 0;
  padding-left: 13px;
  display: inline-block
}

button.btn--link.site-header__icon.site-header__menu {
  color: #e8442e;
  position: relative;
  top: 0;
  transition: all .7s ease;
  display: inline-block;
  max-width: inherit
}

button.btn--link.site-header__icon.site-header__menu .menu_bar .menu-icon-bar {
  display: none
}

a.site-header__logo-image svg {
  max-width: inherit !important;
  width: 139px !important;
  background: #fff
}

.index .headline span {
  background: #fcd366;
  position: relative;
  margin-left: 20px;
  margin-right: 20px
}

.mega-title {
  margin-bottom: 10px;
}

.hero__inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 70px 0;
  z-index: 2
}

.hero__btn {
  margin-top: 27.5px
}

h2.h1.mega-title.mega-title--large span {
  background: #fcd366;
  position: relative;
  margin-left: 20px;
  margin-right: 20px
}

h2.h1.mega-title.mega-title--large span:after {
  content: "";
  background: #fcd366;
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  width: 100%;
  height: calc(100% - 34px);
  z-index: -1
}

h2.h1.mega-title.mega-title--large img {
  max-width: 80px;
  margin-left: 10px;
  margin-top: 2px
}

.hero__inner .page-width.text-center {
  padding-top: 20px
}

.hero .mega-subtitle p {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 26px
}

.hero .mega-subtitle p:nth-child(2) {
  font-size: 17px !important
}


.hero__inner a.btn {
  z-index: 2;
  display: inline-block;
  text-transform: uppercase;
}

.badges-cln-brd .col-sm-12 {
  box-shadow: none;
  background: #fff;
  border-radius: 23px;
  padding: 25px 55px;
  width: 58%;
  color: #3F409A;
  border: 3px solid #f2d0c7
}

section.badges-features {
  background: #fbf2ee;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 20px 0 0
}

section.badges-features h1 {
  font-family: gt_eesti_display;
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 5px
}

.badges-sectn .col-sm-6 {
  background: #fff;
  border-radius: 37px;
  padding: 50px 45px;
  width: 47.44%;
  border: 3px solid #f2d0c7
}

.badges-sectn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.badges-cln-brd {
  padding: 45px 0
}

section.badges-features1 {
  background: #f0f8fd;
  padding: 38px 0;
  border-radius: 24px;
  margin: 20px 0 0;
}

.badges-features1 h1 {
  font-family: gt_eesti_display;
  font-weight: 700;
  font-size: 48px
}

section.badges-features2 {
  background: #3F409A;
  border-radius: 24px;
  color: #fff;
  padding: 34px 0 44px
}

.column-category {
  width: 33.33%;
  padding: 0 15px;
  overflow: hidden;
  outline: 0
}

.column-category .card {
  background-color: #fff;
  border-radius: 30px
}

.column-category img {
  border-radius: 24px 24px 0 0;
  width: 100%
}

.card {
  width: 100% !important
}

.row-category {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap
}

section.badges-features2 h1 {
  font-family: gt_eesti_display;
  font-weight: 700;
  text-align: center;
  font-size: 48px;
  margin-bottom: 5px
}

section.badges-features svg {
  max-width: 100%
}

section.badges-features::after,
section.bridge-main1::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 24px
}

section.badges-features::after {
  background-image: url(/cdn/shop/files/pink_stars_8b53608d-0447-4bff-8888-2a18ba71ceea.svg);
  background-position: center top 12px;
  background-repeat: no-repeat;
  max-width: 1440px;
  right: 0;
  margin: 0 auto
}

section.badges-features .page-width,
section.bridge-main1 .page-width {
  position: relative;
  z-index: 1
}

.cstm-featured-row h2.h3 {
  font-size: 50px
}

.rte.rte-setting.featured-row__subtext p {
  font-size: 18px;
  font-family: gt_eesti_display;
  line-height: 30px;
  max-width: 100%;
  letter-spacing: .02em
}

.rte.rte-setting.featured-row__subtext p svg {
  position: relative;
  left: 0;
  top: -2px
}

.rte.rte-setting.featured-row__subtext p em,
.rte.rte-setting.featured-row__subtext p strong {
  font-family: Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 6px;
  position: relative;
  top: -7px;
  left: 2px
}

.rte.rte-setting.featured-row__subtext p em {
  top: -2px;
  left: 0;
  font-style: normal;
  font-size: 13px
}

button.tablinks {
  font-size: 15px;
  font-family: gt_eesti_display;
  padding: 3px 13px
}

button.tablinks.active {
  font-weight: 900;
  font-family: gt_eesti_textbold
}

.tabcontent p {
  text-align: center;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: gt_eesti_textbold;
  font-size: 13px;
  line-height: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.badges-cln-brd .col-sm-12 p {
  font-size: 20px;
  line-height: 23px;
  letter-spacing: .02em;
  font-family: gt_eesti_display;
  margin-bottom: 12px
}

.badges-sectn p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .02em;
  font-family: gt_eesti_display
}

.badges-sectn a.anchor,
.column-gut a.anchor {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -.04em;
  font-family: gt_eesti_display;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #2e2f7d
}

.badges-sectn a.anchor i.fa.fa-long-arrow-right,
.column-gut a.anchor i.fa.fa-long-arrow-right {
  background: #3F409A;
  color: #fff;
  border-radius: 50%;
  padding: 9px 10px;
  margin-left: 15px
}

.badges-sectn strong {
  font-family: gt_eesti_display;
  font-weight: 700;
}

p.para34 {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  font-family: gt_eesti_display
}

a.btn2 {
  letter-spacing: .12em;
  text-align: center;
  color: #fff;
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 12px 10px;
  width: 333px;
  margin: 0 auto;
  font-family: gt_eesti_textbold
}

.column-category .card-body {
  padding: 10px 0 0
}

.card-body p {
  font-family: gt_eesti_display;
  color: #3F409A;
  font-size: 16px;
  line-height: 24px
}

.card-body h3 {
  font-size: 16px;
  line-height: 24px;
  font-family: gt_eesti_textbold;
  color: #343789;
  margin-bottom: 0
}

.card-body p.author-place {
  font-size: 14px;
  line-height: 18px
}

.testimonials--star-wrapper>div {
  display: flex;
  align-items: center
}

.heart-star {
  text-align: center;
  color: #e8442e;
  font-size: 32px
}

.heart-star .heart-img {
  height: 40px;
  width: 40px;
}

.card-space {
  padding: 0 20px 25px
}

p.para2 {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: .04em;
  font-family: gt_eesti_textbold
}

section.bridge-main {
  background: #fff;
  border-radius: 24px;
  padding: 70px 0 100px;
  margin-top: 20px
}

section.bridge-main h1 {
  font-size: 72px;
  line-height: 84px;
  color: #3F409A;
  letter-spacing: -.01em;
  margin-bottom: 5px
}

.column-foundation p {
  font-size: 20px;
  line-height: initial;
  color: #3F409A;
  font-family: gt_eesti_display
}

.imagepara {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 30px
}

.imagepara .column {
  width: 50%;
  float: inherit
}

.imagepara::after {
  display: none
}

.col-sm-6.para3 {
  position: relative;
  padding: 50px 25px
}

.imagepara p.para {
  line-height: 23px
}

.mainrow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 2px solid #8f93bd
}

.mainrow .columns:nth-child(2) {
  width: 50%;
  text-align: right
}

.mainrow .columns:first-child {
  width: 50%
}

.cstm-fiber .mainrow .columns:first-child {
  padding-right: 0;
  margin-right: 0;
  margin-bottom: 50px
}

.cstm-fiber .mainrow .columns:nth-child(2) {
  width: 50%;
  display: flex;
  align-items: flex-end
}

.mainrow .columns svg {
  position: relative;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: auto
}

.mainrow::after {
  display: none
}

.mainrow p {
  font-size: 20px;
  line-height: 30px;
}

.mainrow p span {
  color: #e8442e;
  display: inline-block;
  width: 100%;
  margin-top: 45px;
}

.mainrow2 .columns {
  display: flex;
  align-items: center
}

.mainrow2 .columns p {
  padding-left: 15px;
  font-size: 20px;
  line-height: 32px;
  font-family: gt_eesti_textbold
}

section.badges-features1 .fiber_text_header {
  margin-top: 20px;
  margin-bottom: 25px
}

section.badges-features1 h3 {
  font-size: 24px;
  font-family: gt_eesti_textbold;
  margin-bottom: 0;
  margin-top: 0
}

p.mainpara3 {
  font-size: 16px;
  line-height: 25px;
  font-family: gt_eesti_textbold;
  margin-bottom: 0
}

.badges-features1 a.anchor {
  font-family: gt_eesti_textbold;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-top: 0;
  color: #3F409A;
}

.fa.fa-long-arrow-right {
  color: #fff;
  padding-left: 2px;
  background: #e8442e;
  border-radius: 50%;
  padding: 9px 9px;
  font-size: 20px;
}

img.teamphoto,
img.teamphoto2 {
  visibility: hidden
}

section.bridge-main1 {
  position: relative
}

section.bridge-main1::after {
  background: url(/cdn/shop/files/green_back.gif)
}

section.bridge-main1 {
  position: relative;
  margin-top: 15px;
  padding: 80px 0 120px
}

section.bridge-main1 h1 {
  font-size: 72px;
  line-height: 84px;
  letter-spacing: -.04em;
  color: #3F409A;
  margin-bottom: 5px
}

section.bridge-main1 p {
  font-size: 20px;
  line-height: 23px;
  letter-spacing: .02em;
  font-family: gt_eesti_display;
  color: #2e2f7d
}

.gut-page1 {
  background: #fff;
  border-radius: 24px;
  height: 634px;
  text-align: center;
  padding: 34px 20px;
  border: 4px solid #9cd5d5
}

section.bridge-main1 p.gut-para2 {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: .04em;
  margin-top: 32px;
  margin-bottom: 50px;
  font-family: gt_eesti_textbold;
  background-color: #fff;
  border-radius: 24px;
  padding: 22px;
  max-width: 1020px
}

section.bridge-main1 p.gut-para3 {
  font-size: 20px;
  line-height: 30px;
  font-family: gt_eesti_textbold;
  margin-bottom: 15px
}

section.bridge-main1 .column-gut p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .04em
}

.column-gut {
  width: 45%
}

.row-gut {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px
}

.row-gut::after {
  display: none
}

.column-gut a.button {
  margin-top: 25px;
  display: inline-block
}

section.bridge-main2 {
  margin-top: 20px;
  background: rgba(255, 246, 222, .6);
  border-radius: 24px;
  padding-top: 68px;
  padding-bottom: 40px
}

.bridge-main2 .card img {
  border-radius: 50%;
  border: 8px solid #fff6de
}

.column-biome h5 {
  font-size: 24px;
  line-height: 24px;
  font-family: gt_eesti_textbold;
  color: #e8442e;
  margin-top: 15px;
  margin-bottom: 10px
}

.column-biome p {
  font-size: 14px;
  line-height: 22px;
  color: #e8442e
}

.row-biome,
.row-biome1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.row-biome .column-biome {
  width: 19%
}

.row-biome1 .column,
.row-biome1 .column-biome1 {
  width: 100% !important;
  text-align: center;
  padding: 0
}

.row-biome {
  padding: 36px 0 0
}

.row-biome1 .biome-box h4 {
  font-size: 48px;
  margin-bottom: 0;
  color: #dd5634;
  font-family: gt_eesti_textbold;
  line-height: 1;
}

.row-biome1 .biome-box p {
  font-family: gt_eesti_textbold;
  max-width: 200px
}

h1.heading-bio {
  letter-spacing: -.01em;
  color: #e8442e;
  text-align: center;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 0
}

p.para-bio {
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  font-family: gt_eesti_display;
  color: #e8442e
}

.row-biome1 h3 {
  font-size: 48px;
  line-height: 28px;
  color: #e8442e;
  font-family: gt_eesti_display;
  font-weight: 700;
}

.row-biome1 p {
  color: #e8442e;
  font-size: 14px;
  font-family: gt_eesti_display;
  line-height: 22px;
  max-width: 235px;
  margin: 0 auto
}

.column-biome .card {
  position: relative;
  padding-bottom: 0;
  text-align: center;
}

.column-biome .card::after {
  position: absolute;
  content: '';
  background: url(/cdn/shop/files/pengiun_legs.svg?v=1606113250);
  width: 140px;
  height: 35px;
  right: -118px;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 45px
}

.column-biome:last-child .card::after {
  display: none
}

section.bridge-main3 .row-smart:first-child {
  margin-top: -7px
}

section.bridge-main3 h1 {
  letter-spacing: -.01em;
  color: #3F409A;
  font-size: 72px;
  line-height: 84px;
  margin-bottom: 0
}

.badges-features1 .mainrow h1 {
  font-size: 47px;
  line-height: normal;
}

section.bridge-main3 p {
  font-size: 20px;
  line-height: 28px;
  color: #3F409A;
}

section.bridge-main3 {
  padding: 40px 0;
}

.row-smart {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px
}

.column-smart {
  width: 40%
}

.bridge-main3 .column-smart p {
  font-size: 18px;
  line-height: 22px
}

.bridge-main3 .column-smart p b {
  opacity: 0
}

section.bridge-main4 {
  background: #f0f8fd;
  padding: 40px 0 50px
}

section.bridge-main4 .row-smart {
  margin-top: -5px;
  align-items: center
}

section.bridge-main4 img {
  border-radius: 24px
}

section.bridge-main4 h1 {
  font-size: 48px;
  line-height: 56px;
  color: #2e2f7d
}

.bridge-main4 p,
.bridge-main4 p strong {
  color: #343789;
  font-size: 16px;
  line-height: 24px;
  color: #343789;
  margin-bottom: 0;
}

.bridge-main4 .row-smart .column-smart:nth-child(1) {
  width: 40%;
  padding-right: 120px
}

.bridge-main4 .column-smart p.text2 {
  font-family: gt_eesti_textbold;
  margin-bottom: 0
}

.bridge-main4 .bridge_main_4_text_with_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between
}

.bridge-main4 .bridge_main_4_text_with_btn a {
  font-size: 13px;
  max-width: 185px;
  width: 100%;
  text-align: center;
  padding: 15px 15px;
  border-radius: 100px
}

section.bridge-main5 {
  background: #ecf7f6;
  padding: 32px 0 10px;
  margin-top: 20px;
  border-radius: 24px 24px 0 0;
}

.bridge-main5 h1.text {
  text-align: center;
  color: #3F409A;
  font-size: 64px;
  font-family: gt_eesti_display !important;
  margin-bottom: 50px;
  font-weight: normal !important;
}

.bridge-main5 img {
  border-radius: 24px !important
}

.bridge-main3 .column-smart p.smart-para,
.bridge-main3 .column-smart p.smart-para2 {
  font-size: 24px;
  line-height: 28px;
  margin-top: 42px;
  font-family: gt_eesti_display;
  font-weight: 700;
  margin-bottom: 8px
}

.bridge-main3 a.button,
.product_details_page .product_faq .page-faq .product_faq_btn a.button {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #3F409A;
  background-color: transparent;
  border: 1px solid #3F409A;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  padding: 24px 45px;
}

.bridge-main3 a.button span,
.product_details_page .product_faq .page-faq .product_faq_btn a.button span {
  color: #e8442e;
  font-family: gt_eesti_textbold;
  margin-left: 6px;
  position: relative;
  top: 1px;
}

.bridge-main3 a.button .btn_star.star_left,
.product_details_page .product_faq .page-faq .product_faq_btn a.button .btn_star.star_left {
  margin-right: 30px
}

.bridge-main3 a.button .btn_star.star_right,
.product_details_page .product_faq .page-faq .product_faq_btn a.button .btn_star.star_right {
  margin-left: 30px
}

.bridge-main3 a.button .btn_star svg,
.product_details_page .product_faq .page-faq .product_faq_btn a.button .btn_star svg {
  position: relative;
  top: 4px
}

div#shopify-section-1602230245235 {
  background: #ecf7f6;
  padding-top: 0
}

.newsletter-section {
  padding-top: 0
}

.cstm-newsletter h2 {
  letter-spacing: -.01em;
  font-size: 24px;
  line-height: initial;
  color: #3F409A;
  text-transform: inherit;
  display: flex;
  justify-content: left;
  margin-bottom: 5px;
}

.cstm-newsletter p {
  margin-bottom: 20px;
  max-width: 460px;
  color: #2e2f7d !important;
  font-family: gt_eesti_display;
}

.cstm-newsletter {
  background: #ecf7f6;
  margin: 0 20px
}

.cstm-newsletter form.needsclick h2 {
  display: none !important;
}

footer.site-footer.critical-hidden {
  margin-top: 0
}

.cstm-newsletter input[type=email],
.klaviyo-form.kl-private-reset-css-Xuajs1 form input[type=email] {
  background: 0 0 !important;
  border: 0 !important;
  border-bottom: 2px solid #2e2f7d !important;
  color: #2e2f7d !important;
  font-size: 18px !important;
  line-height: 21px;
  font-family: gt_eesti_display !important;
  padding-left: 0 !important;
  margin-bottom: 0;
  margin-top: 50px !important
}

.cstm-newsletter input[type=email]::placeholder,
.klaviyo-form.kl-private-reset-css-Xuajs1 form input[type=email]::placeholder {
  color: #2e2f7d !important;
  opacity: 1
}

.cstm-newsletter button,
.klaviyo-form.kl-private-reset-css-Xuajs1 form button {
  background: #e8432e !important;
  border-radius: 50% !important;
  padding: 0 !important;
  height: 45px;
  width: 45px;
  font-size: 0 !important;
  position: relative;
  left: -40px;
  top: -5px
}

.cstm-newsletter button.needsclick,
.klaviyo-form.kl-private-reset-css-Xuajs1 form button.needsclick {
  position: relative
}

.cstm-newsletter button.needsclick::after,
.klaviyo-form.kl-private-reset-css-Xuajs1 form button.needsclick::after {
  position: absolute;
  content: "\f178";
  font-family: FontAwesome;
  font-size: 23px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff
}

.newsletter-section button.btn span i {
  font-size: 20px;
  position: relative;
  left: -3px;
  top: 1px
}

.site-header__cart,
button.btn--link.site-header__icon {
  color: #29247d
}

.bridge-main3 a.button:hover,
.bridge-main4 .bridge_main_4_text_with_btn a:hover,
.column-gut a.button:hover,
.feature-row .btn:hover,
.hero__inner a.btn:hover {
  background: #2e2f7d !important;
  transition: all .7s ease
}

.badges-features2 .badges-features2_btns {
  text-align: center
}

.badges-features2 a.btn2 {
  border-color: #e8442e;
  display: inline-block;
  margin: 0 20px;
  padding: 15px 10px;
  max-width: 333px;
  color: #fff;
  background-color: #e8442e;
}

.badges-features2 a.btn2.btn_second {
  width: 100%
}

div#shopify-section-hero-1 {
  padding-bottom: 0
}

.feature-row__image-wrapper>div {
  padding-top: 0 !important
}

.feature-row__image-wrapper .feature-row__image {
  position: inherit
}

.cstm-featured-row h2.h3 span {
  font-family: gt_eesti_display
}

.cstm-featured-row .feature-row {
  align-items: flex-start;
  margin-top: 10px;
}

li.site-footer__linklist-item {
  display: block;
  text-align: left;
  font-size: 18px;
  font-family: gt_eesti_display
}

a,
a:not(.btn),
body li.site-footer__linklist-item a {
  color: #e8442e
}

li.site-footer__linklist-item a {
  color: #c4c4c4;
  font-weight: 600
}

.site-footer__item-inner p.h4 {
  text-align: left
}

.site-footer__item-inner.site-footer__item-inner--link_list {
  display: flex;
  justify-content: space-between;
  width: 100%
}

footer p.full-para {
  text-align: right;
  color: #2a247f;
  font-size: 18px;
  line-height: 28px;
  font-family: gt_eesti_display;
  margin-bottom: 0;
  position: relative;
  top: -15px;
  font-weight: 400
}

li.social-icons__item {
  padding-right: 0
}

footer a.social-icons__link {
  color: #fff !important;
  background: #e8432e !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  justify-content: center;
  display: flex;
  align-items: center
}

footer.site-footer {
  background: #ecf7f6;
  padding-top: 0;
  border-radius: 0 0 24px 24px;
  padding-bottom: 15px
}

.grid__item.small--one-whole.site-footer-item-tall {
  display: flex;
  align-items: flex-end;
  height: 100%;
  justify-content: flex-end
}

.site-footer__item.site-footer__item--center.site-footer__item--full-width {
  margin-bottom: 0
}

.cstm-featured-row .row-feature {
  display: flex;
  justify-content: center;
  padding-top: 25px !important
}

.cstm-featured-row .row-feature .column-feature {
  padding: 0 15px
}

.imp-links li a,
p.para-imp1,
small.site-footer__copyright-content,
small.site-footer__copyright-content a {
  color: #2e2f7d !important;
  font-size: 14px;
  font-family: gt_eesti_display
}

.grid__item.small--one-whole.site-footer-item-align-right {
  text-align: left;
  padding-left: 0;
  width: 70%
}

.imp-links {
  text-align: right;
}

p.para-imp1 {
  margin-top: 50px;
  font-size: 14px;
  font-family: gt_eesti_display
}

footer .para-imp1-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  padding-left: 0;
  padding-right: 0;
  align-items: center;
}

footer .para-img1-logo {
  justify-self: flex-start;
  height: 70%;
  width: fit-content;
  object-fit: contain;
  max-width: 280px;
  top: -10px;
  position: relative;
}

@media only screen and (max-width: 798px) {
  footer .para-imp1-container {
    padding-left: 0;
  }
}

@media only screen and (min-width: 799px) {
  footer .para-imp1-container {
    grid-template-columns: 0.5fr 2fr;
  }

  footer .para-img1-logo { }}

footer p.para-imp1 {
  margin-bottom: 0;
  border: 1px solid #3F409A;
  padding: 10px 15px;
  font-size: 12px;
  margin-top: 0;
}

p.para-imp1 strong {
  font-family: Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 6px;
  position: relative;
  top: -5px;
  left: 2px
}

small.site-footer__copyright-content {
  font-weight: 700
}

small.site-footer__copyright-content span {
  font-weight: 400
}

.imp-links ul {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}

.imp-links ul li {
  padding-left: 20px
}

.main-class {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end
}

.imp-links ul li {
  position: relative
}

.imp-links ul li:not(:last-child)::after {
  position: absolute;
  content: '';
  background: #3F409A;
  width: 1px;
  height: 13px;
  right: -11px;
  top: 8px
}

@media only screen and (max-width:450px) {
  .imp-links ul {
    flex-direction: column;
    text-align: center;
  }

  .imp-links ul li,
  .credits {
    margin-bottom: 0;
  }

  .imp-links ul li::after {
    display: none;
  }
}

.cstm-featured-row a.btn:hover,
.newsletter-section button.btn:hover {
  background: #e8432e
}

.bottom-footer {
  padding: 30px 0 40px
}

hr.site-footer__hr {
  display: none
}

.badges-sectn a.anchor:hover,
.column-gut a.anchor:hover {
  color: #e8442e;
  transition: all .7s ease
}

.badges-sectn a.anchor:hover i.fa.fa-long-arrow-right,
.column-gut a.anchor:hover i.fa.fa-long-arrow-right {
  background: #e8442e;
  transition: all .7s ease
}

.shopify-section.home_banner_sec .page-width.text-center {
  padding-left: 0;
  padding-right: 0
}

.hero__overlay:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.shopify-section.home_banner_sec .hero::before {
  background-repeat: no-repeat;
  background-position: top 8px center;
  position: absolute;
  background-size: auto 895px;
  background-image: url(/cdn/shop/files/star_bg.png?v=1605786107);
  opacity: 1;
  z-index: 0
}

.shopify-section.home_banner_sec h2 span {
  position: relative;
}

.feature_row_data {
  position: relative;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center
}

.cstm-featured-row .feature_row_data::before {
  content: "";
  background: url(/cdn/shop/files/PRODUCT_CIRCLE_BACKDROP_new.gif?v=1603781844);
  width: 360px;
  max-width: 95vw;
  height: 125%;
  position: absolute;
  top: -42px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  background-position: center;
}

@media only screen and (min-width: 992px) {
  .cstm-featured-row .feature_row_data::before {
    width: 127%;
    height: 121%;
  }
}

.cstm-featured-row .feature-row .feature-row__item.feature-row__text {
  flex: 0 1 42%;
  padding-right: 0;
  padding-top: 0;
}

.cstm-featured-row #FeatureRowImageWrapper-feature-row {
  margin-bottom: 0
}

.cstm-featured-row .feature-row .feature-row__item {
  flex: 0 1 60%;
  padding-top: 25px;
}

.cstm-featured-row .feature_row_data img {
  max-width: 427px;
  max-height: 429px;
  top: 0;
  width: 280px;
}

@media only screen and (min-width: 992px) {
  .cstm-featured-row .feature_row_data img {
    width: 427px;
  }
}

img.gut-gif {
  max-width: 460px;
  width: 100%
}

.bnr-imgg {
  margin-bottom: 72px;
  margin-top: 8px
}

.bnr-imgg img {
  width: auto;
}

div#shopify-section-1602135423234 {
  padding-bottom: 0
}

.five_custom_row {
  padding: 0 20px 0 20px
}

.index .cstm-fiber {
  padding: 0 20px 0 20px
}

.cstm-fiber .page-width .mainrow .columns .mainrow p {
  max-width: 420px
}

.caring_custom {
  padding: 0 20px 0 20px
}

.foun_custm {
  padding: 0 20px 0 20px
}

.gut_custm {
  padding: 0 20px 0 20px
}

.biome_custm {
  padding: 0 20px 0 20px
}

.our_custm {
  padding: 0 20px 0 20px
}

section.bridge-main4 {
  border-radius: 25px
}

.news_custm {
  margin-left: 20px;
  margin-right: 20px
}

.footer_custm {
  padding: 0 20px 0 20px
}

.footer_full {
  padding: 0 20px 0 20px
}

.cstm-featured-row .feature-row__item h2.h3 {
  line-height: 52px;
  font-size: 66px;
  margin-bottom: 25px;
  left: -42px;
  position: relative
}

.cstm-featured-row .feature-row__item h2.h3 span {
  font-weight: 300
}

.shopify-section.home_banner_sec {
  padding: 2px 20px 20px 20px !important;
}

.newsletter-section h2.h2 {
  margin: 0 auto
}

a.site-header__icon.site-header__cart svg {
  height: 37px;
  width: 31px
}

a.site-header__icon.site-header__cart {
  padding-right: 0;
  top: -1px
}

a.header_account {
  font-size: 19px;
  margin-right: 18px;
  color: #2e2f7d !important;
  font-family: gt_eesti_textbold;
}

a.header_account:hover {
  color: #e8442e !important;
}

a.site-header_try_free {
  font-size: inherit;
}

.badges-sectn {
  padding-top: 30px
}

div#Hero-hero-1 {
  border-radius: 24px;
  background-repeat: no-repeat;
  text-align: center;
}

section.bridge-main3 img.new-img2 {
  width: 118px
}

.row-smart:first-child .column-smart:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 60%;
  padding-top: 0
}

.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
  margin-left: -13px
}

.newsletter-section h2.h2 {
  position: relative;
  left: -10px
}

.newsletter-section .section-header.text-center {
  text-align: left !important;
  display: flex
}

.newsletter-section .form-single-field {
  max-width: 395px
}

.bridge-main3 .column-smart img {
  width: 163px
}

.column-gut a.button:hover {
  background: #2e2f7d !important
}

.feature-row .btn:hover {
  background: #2e2f7d !important
}

.hero__inner a.btn:hover {
  background: #2e2f7d !important
}

.bridge-main3 a.button:hover {
  background: #fff !important
}

.tabcontent {
  background: #fff
}

.tabcontent img {
  box-shadow: none
}

.tabcontent .tabcontent_main_box {
  display: flex;
  flex-wrap: wrap
}

.tabcontent .tabcontent_main_box .tabcontent_box {
  border-left: 2px solid #b2dbf4;
  padding-left: 20px;
  width: 50%;
  padding-right: 20px;
  padding-bottom: 0
}

.tabcontent .tabcontent_main_box .tabcontent_box h2 {
  background-color: #b2dbf4;
  display: inline-block;
  border-radius: 100px;
  padding: 12px 25px;
  color: #3F409A;
  font-size: 20px;
  text-transform: initial;
  letter-spacing: 0;
  margin-bottom: 10px
}

.tabcontent .tabcontent_main_box .tabcontent_box h3,
.tabcontent .tabcontent_main_box .tabcontent_box p {
  font-weight: 300;
  font-family: gt_eesti_textbold;
  color: #3F409A;
  font-size: 20px;
  margin-bottom: 5px;
  height: auto;
  letter-spacing: 0;
  justify-content: flex-start
}

.tabcontent .tabcontent_main_box .tabcontent_box p {
  text-align: left;
  text-transform: initial;
  margin-bottom: 0;
  font-family: gt_eesti_display;
  font-size: 14px;
  line-height: inherit
}

.tabcontent .tabcontent_main_box_2 .tabcontent_box p {
  display: inline-block;
  text-align: left;
  text-transform: initial;
  margin-bottom: 0;
  font-family: gt_eesti_display;
  font-size: 16px;
  line-height: 23px;
  color: #3F409A;
  margin-bottom: 10px;
  letter-spacing: .2px
}

.tabcontent .tabcontent_main_box_2 .tabcontent_box p:last-child {
  margin-bottom: 0
}

.tabcontent .tabcontent_main_box_2 .tabcontent_box p span {
  font-weight: 700;
  margin-right: 5px;
  font-family: gt_eesti_textbold
}

body .xzoom-preview {
  background-color: #fff
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: .5s;
  text-align: center
}

.sidenav .mySidenav_height {
  min-height: 550px;
  padding-top: 155px;
  padding-bottom: 0
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #c4c4c4;
  display: block;
  transition: .3s;
  text-transform: capitalize
}

.sidenav a.active {
  color: #fff
}

.sidenav .nav_bar_menus {
  width: 190px;
  display: inline-block;
  margin: 0 auto;
  text-align: left
}

.sidenav .nav_bar_menus a {
  padding: 8px;
  font-size: 32px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: gt_eesti_display;
  font-weight: 700 !important;
}

.sidenav .nav_bar_menus a.active:hover {
  color: #e8442e
}

a.site-header__icon.site-header__cart:hover svg,
a.site-header__icon.site-header__cart:hover svg path {
  fill: #e8442e
}

.icon-main {
  margin-top: 12px
}

.icon-main {
  max-width: 100%
}

.icon-main {
  max-width: 82px
}

.sidenav a:hover {
  color: #c4c4c4
}

.sidenav .closebtn {
  position: absolute;
  top: 35px;
  left: 30px;
  width: 75px;
  margin-left: 0;
  padding-left: 0
}

.sidenav .closebtn svg {
  max-width: 100%
}

div#mySidenav {
  background-color: #2e2f7d
}

#Hero-hero-1 {
  background-position: bottom 0 center !important;
  background-size: 100% 849px;
  background-color: #eff7fe
}

div#Hero-hero-1::after {
  position: absolute;
  content: '';
  background: url(/cdn/shop/files/header-500-02_2.svg?v=1603364375);
  width: 90%;
  left: 50%;
  bottom: 7px;
  background-repeat: no-repeat;
  height: 282px;
  padding-bottom: 0;
  background-size: 100%;
  transform: translateX(-50%);
  max-width: 1550px;
  background-position: center bottom
}

.cstm-newsletter form.needsclick {
  max-width: 450px;
  left: -5px;
  position: relative;
  margin-left: 0;
  top: -45px;
  margin-left: 0 !important;
}

.cstm-newsletter form.needsclick .TextInput__FormStyledTextInput-sc-1ydur12-0 {
  border: 2px solid #2e2f7d !important;
  border-radius: 100px !important;
  padding: 10px 15px !important;
  height: auto !important;
  padding-right: 90px !important;
}

.cstm-newsletter form.needsclick .iftaFG.iftaFG {
  position: absolute;
  bottom: 0;
  right: 0;
}

.cstm-newsletter form.needsclick button {
  top: 0;
  left: 0px;
  width: 75px;
  border-radius: 100px !important;
}

.main-class.page-width {
  max-width: 100%
}

.cstm-newsletter input[type=email]:focus {
  outline: 0 !important;
  box-shadow: none !important
}

h2.h1.mega-title.mega-title--large,
.page-faq .headline,
.page-contact .headline {
  font-size: 95px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap
}

.column-smart1 {
  width: 100%
}

.bridge-main3 .column-smart {
  width: 45%
}

.bridge-main3 .column-smart p {
  font-size: 14px;
  line-height: 22px
}

.bridge-main3 .column-smart p span {
  background-image: url(/cdn/shop/files/location_icon.svg?v=1603816595);
  background-position: left top;
  background-repeat: no-repeat;
  line-height: 32px;
  display: inline-block;
  padding-left: 20px
}

.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc .ql-container p {
  letter-spacing: -.01em;
  font-size: 36px !important;
  line-height: 40px;
  color: #3F409A;
  font-family: gt_eesti_display;
  font-weight: 700 !important;
  overflow: hidden
}

.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc .ql-container p br {
  display: none
}

.dFAxdI.dFAxdI.dFAxdI.dFAxdI.dFAxdI.dFAxdI {
  margin-top: 50px
}

.section-wrapper #shopify-section-cart-template {
  margin-top: -55px
}

#trueModal {
  padding: 30px 20px;
  background-color: transparent;
  overflow: hidden
}

.fancy_box_closed {
  background-color: transparent !important;
  padding: 0;
  width: 30px;
  position: absolute;
  top: 0;
  border-radius: 0;
  display: flex;
  right: 0
}

.fancy_box_closed svg {
  width: 100%
}

#ajaxifyCart {
  padding: 30px 0 0
}

.drawer_crt {
  max-width: 560px;
  border: none;
  padding: 0 38px 15px;
  right: -560px;
  left: initial;
  transform: translateX(560px);
  transition: all 1s
}

.cart_emty_note {
  text-align: center;
  color: #fff;
  padding-top: 123px
}

.cart_emty_note h2 {
  font-size: 34px;
  line-height: 50px
}

.cart-form .cart_tiltle_header {
  margin-bottom: 80px
}

.cart-form .cart_tiltle_header h1 {
  color: #fff;
  font-size: 48px
}

.is-visible .ajaxifyCart--close {
  opacity: 1;
  text-indent: 0;
  top: 33px;
  width: auto;
  left: 40px;
  height: auto;
  padding: 0;
  right: initial
}

.grid__item.two-thirds.pro_info {
  padding-left: 25px
}

.cart-form .ajaxifyCart--products {
  margin-bottom: 60px
}

.cart-form .ajaxifyCart--products .grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center
}

.cart-form .ajaxifyCart--products .ajaxCart--product-image img {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.cart-form .ajaxifyCart--products .pro_info a {
  color: #fff;
  font-size: 20px;
  font-family: gt_eesti_display;
  font-weight: 700;
  line-height: 18px
}

.cart-form .ajaxifyCart--products .pro_info a span,
.cart-form .ajaxifyCart--products .pro_info a span p {
  font-family: gt_eesti_display;
  margin-top: 0;
  display: inline-block;
  line-height: 30px;
  width: 100%;
  margin-bottom: 0;
  font-size: 20px
}

.cart-form .ajaxifyCart--products .prod-price {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-family: gt_eesti_display;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0
}

.cart-form .ajaxifyCart--products .pro_remove {
  position: absolute;
  bottom: 0;
  top: initial;
  right: 0;
  margin-bottom: 0;
  background-color: red;
  width: 18px;
  height: 18px;
  display: flex;
  line-height: initial;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 20px
}

.cart-form .cart__footer_ajax .cart__total {
  color: #fff;
  font-family: gt_eesti_display;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: .02em;
  margin-bottom: 15px
}

.cart-form .cart__footer_ajax .ajaxifycart_shipping_total p {
  color: #fff;
  font-family: gt_eesti_textbold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .02em;
  text-decoration: underline
}

.cart-form .cart__footer_ajax .ajaxify_cart_btn {
  margin-top: 15px
}

.cart-form .cart__footer_ajax .ajaxify_cart_btn input {
  max-width: 185px;
  width: 100%;
  text-align: center;
  padding: 18px 15px;
  font-size: 15px;
  font-family: gt_eesti_display
}

footer.site-footer.critical-hidden.footer_extra_padding {
  margin-top: 30px
}

footer.site-footer.footer_extra_padding {
  padding-top: 40px;
  border-radius: 24px
}

.template-product #MainContent {
  padding-top: 0
}

.product_details_page {
  padding: 0 20px
}

.product_details_page .shopify-section#shopify-section-product-template,
.product_details_page .shopify-section#shopify-section-product-template-two {
  background-color: rgba(179, 221, 246, .2);
  border-radius: 24px;
  padding: 65px 0 30px
}

.product_details_page .product_faq .page-width,
.product_details_page .shopify-section .page-width {
  max-width: 1440px
}

.product_details_page .shopify-section .product-single__meta .product_single_tag span {
  background: #b2dcf5;
  border-radius: 8px;
  font-family: gt_eesti_display;
  font-weight: 700;
  letter-spacing: .12em;
  color: #343789;
  font-size: 15px;
  padding: 7px 18px;
  display: inline-block;
  margin-bottom: 10px
}

.product_details_page .shopify-section .product-single__meta .product-single__title {
  letter-spacing: -.01em;
  font-size: 62px;
  line-height: 80px;
  margin-bottom: -15px;
  color: #343789;
  position: relative;
  left: -4px
}

.product_details_page .shopify-section .product-single__meta .product-single__title.product_free_title,
.product_details_page .shopify-section .product-single__meta .product-single__title.product_two_title {
  margin-bottom: 20px
}

.product_details_page .shopify-section .product-single__meta .product-single__description {
  margin-top: 15px;
  margin-bottom: 10px
}

.product_details_page .shopify-section .product-single__meta .product-single__description.product_free_description {
  margin-bottom: 30px
}

.product_details_page .shopify-section .product-single__meta .product-block--description p {
  color: #3F409A;
  font-size: 18px;
  font-weight: 300;
  max-width: 530px;
  letter-spacing: .02em;
  line-height: 30px;
  margin-bottom: 6px;
}

.product_details_page .shopify-section .product-single__meta .product-block--description p svg {
  width: 7px;
  height: 12px;
  position: relative;
  top: -4px;
  left: -5px
}

.badges-features1 .mainrow p strong,
.mainrow p span strong,
.product_details_page .shopify-section .product-single__meta .product-single__description p strong,
.rte.rte-setting.featured-row__subtext p span {
  font-family: gt_eesti_textbold
}

.product_details_page .shopify-section .product-single__meta .product_tabs {
  max-width: 500px
}

.product_details_page .shopify-section .product-single__meta .product_tabs .tab {
  justify-content: flex-start
}

.product_details_page .shopify-section .product-single__meta .product_tabs .tab button {
  margin-right: 50px
}

.product_details_page .shopify-section .product-single__meta .product_tabs .tab button.active {
  background-color: #b3ddf5
}

.product_details_page .shopify-section .product-single__meta .tabcontent {
  background-color: transparent
}

.product_details_page .shopify-section .product-single__meta .product-form__controls-group {
  display: none;
  align-items: center
}

.product_details_page .shopify-section .product-single__meta .product-form__controls-group.free_trial_btn {
  display: flex;
}

.product_details_page .shopify-section .product-single__meta .product-form__controls-group .product-form__item--submit,
.product_details_page .shopify-section .product-single__meta .product-form__controls-group .product-form__item--submit button {
  margin-bottom: 0
}

.product_details_page .shopify-section .product-single__meta .product-form__controls-group .product__price {
  font-size: 2.1em;
  margin-left: 20px
}

.product_details_page .shopify-section .product-single__meta .product-form__controls-group .product-form__item--submit button {
  max-width: 200px;
  padding: 17px 10px;
  border: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  width: 100%
}

.product_details_page .product-single__meta .product_payment_option .payment_btn .payment_btn_box button:hover,
.product_details_page .product_page_video_text .payment_btn .payment_btn_box button:hover,
.product_details_page .shopify-section .product-single__meta .product-form__controls-group .product-form__item--submit button:hover {
  background: #2e2f7d !important;
  color: #fff
}

.product_details_page .yotpo.yotpo-main-widget {
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px
}

.product_details_page .yotpo .yotpo-nav,
.product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes {
  border: none
}

.product_details_page .yotpo .write-review .connect-wrapper {
  padding-left: 0
}

.product_details_page .yotpo .yotpo-nav {
  margin-bottom: -5px
}

.product_details_page .yotpo .yotpo-nav ul .yotpo-nav-tab.yotpo-active .yotpo-nav-wrapper {
  padding-left: 10px;
  padding-right: 10px
}

.product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button {
  padding: 15px 20px;
  border-radius: 100px;
  background: #e7442e;
  max-width: 190px;
  width: 100%
}

.product_details_page .yotpo input[type=button].primary-color-btn:hover,
.product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-default-button:hover {
  background-color: #2d2f7d !important
}

.product_details_page .yotpo .yotpo-mandatory-explain,
.product_details_page .yotpo .yotpo-pager .yotpo-page-element.yotpo-icon-left-arrow,
.product_details_page .yotpo .yotpo-pager .yotpo-page-element.yotpo-icon-right-arrow,
.product_details_page .yotpo .yotpo-review .yotpo-footer .footer-actions,
.product_details_page .yotpo .yotpo-small-box,
.product_details_page .yotpo span.yotpo-mandatory-mark,
.product_details_page .yotpo.yotpo-main-widget .yotpo-icon-btn .yotpo-icon,
.product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-review .footer-additional-actions {
  display: none !important
}

.product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline .yotpo-icon-star {
  font-size: 24px;
  color: #2b247e
}

.product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-1 {
  max-width: 130px;
  min-width: initial;
  width: initial;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center
}

.product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline .yotpo-stars {
  padding: 0
}

.product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline .yotpo-sum-reviews {
  width: 100%;
  text-align: center;
  padding-bottom: 0
}

.product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline .based-on {
  padding: 0;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  font-family: gt_eesti_display;
  padding-top: 6px
}

.product_details_page .yotpo .write-review .yotpo-header .yotpo-icon,
.product_details_page .yotpo .yotpo-review .yotpo-header .yotpo-review-stars .yotpo-icon,
.product_details_page div.yotpo-preloader-wrapper .yotpo-pre-loader .yotpo-icon {
  color: #2b247e
}

.product_details_page div.yotpo-preloader-wrapper .yotpo-pre-loader {
  top: 23px
}

.product_details_page .yotpo .write-review .submit-button .form-input-error {
  margin: 42px 20px 0 0
}

.product_details_page .yotpo .yotpo-review .yotpo-header .yotpo-icon-profile {
  background: 0 0;
  border: 3px solid #2b247e;
  width: 70px;
  height: 70px;
  margin-right: 30px
}

.product_details_page .yotpo .yotpo-review .yotpo-header .yotpo-icon-profile .yotpo-user-letter {
  color: #2b247e;
  font-size: 20px;
  font-family: Euclid, sans-serif;
  font-weight: 700;
  line-height: 2
}

.product_details_page .yotpo .yotpo-review .yotpo-header.yotpo-verified-buyer .yotpo-icon-circle-checkmark,
.product_details_page .yotpo .yotpo-review .yotpo-header.yotpo-verified-user .yotpo-icon-circle-checkmark {
  color: #019dff;
  background: #fff;
  top: auto;
  right: -10px;
  bottom: 0;
  left: auto;
  border: none
}

.product_details_page .yotpo .yotpo-icon-circle-checkmark:before {
  background: #fff;
  width: 24px;
  height: 24px;
  font-size: 24px;
  display: block;
  border-radius: 100%
}

.product_details_page .yotpo .yotpo-review .yotpo-main {
  margin-left: 100px
}

.product_details_page .yotpo .yotpo-review .yotpo-main .content-review {
  margin-left: 0;
  display: inline;
  line-height: 23px
}

.product_details_page .yotpo .yotpo-pager .yotpo-page-element {
  font-family: Apercu, sans-serif !important;
  border: 1px solid #000;
  border-radius: .5rem;
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  color: #000 !important
}

.product_details_page .yotpo .yotpo-pager .yotpo-page-element.yotpo-active {
  border: 1px solid #2b247e;
  color: #2b247e !important
}

.product_details_page .yotpo .write-review .yotpo-header .yotpo-header-title {
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-family: gt_eesti_display !important;
  color: #2b247e
}

.product_details_page .yotpo .y-label {
  padding-top: 0
}

.product_details_page .yotpo .yotpo-icon-write:before {
  content: "\e912"
}

.product_details_page .yotpo input[type=button].primary-color-btn,
.product_details_page .yotpo.yotpo-main-widget .yotpo-icon-btn .yotpo-icon-button-text {
  font-size: 13px;
  font-family: gt_eesti_textbold;
  letter-spacing: .12em
}

.product_details_page .yotpo input[type=button].primary-color-btn {
  background-color: #e7442e;
  padding: 15px 35px;
  width: auto;
  min-width: initial;
  margin-top: 30px !important
}

.product_details_page .yotpo.yotpo-main-widget.yotpo-medium .yotpo-main,
.product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-main {
  margin-left: 100px
}

.product_details_page .product-single__meta .product-form__controls-group {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  z-index: 999;
  background-color: #fff;
  justify-content: center;
  padding: 10px 20px;
  box-shadow: 0 -8px 7px -1px rgba(0, 0, 0, .1)
}

.product_details_page .product-single__meta .product-form__controls-group .product-form__item--submit {
  max-width: 210px
}

.template-product #PageContainer {
  -ms-transform: initial;
  -webkit-transform: initial;
  transform: initial;
}

#PageContainer {
  margin-top: 80px;
}

.cart-header__title {
  line-height: 50px;
  height: auto;
  margin-bottom: 5px;
  color: #2A247F;
}

.cart-header a {
  text-transform: capitalize
}

.cart__submit-controls input:hover {
  background-color: #29247e !important
}

.badges-features1 .main_points {
  margin: 0 0 10px;
  display: inline-block;
  width: 100%
}

.badges-features1 .main_points ul li {
  font-size: 20px;
  line-height: 27px;
  font-family: gt_eesti_display;
  margin-bottom: 20px;
  background-image: url(/cdn/shop/files/close.svg?v=1605696293);
  background-repeat: no-repeat;
  background-position: left bottom 7px;
  padding-left: 30px
}

.badges-features1 .main_points ul li:last-child {
  margin-bottom: 0
}

.thumbnail-slider {
  padding: 10px 20px 0 60px
}

.thumbnail-slider .product-single__thumbnails-item {
  padding-left: 15px;
  padding-right: 15px
}

.thumbnail-slider .product-single__thumbnails-item .product-single__thumbnail {
  margin: 0 0 0;
  border: none;
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent
}

.thumbnail-slider .product-single__thumbnails-item .product-single__thumbnail.active-thumb {
  border-color: #c3dcec
}

.product-single__media-group {
  padding-left: 5px
}

.product-single__media-group .product-single__media-wrapper {
  max-width: 580px !important
}

.product-single__media-group .product-single__media-wrapper img {
  max-height: initial !important;
  max-width: initial !important
}

.product_recharge_app {
  background: #3F409A;
  border-radius: 8px;
  padding: 15px 30px 23px;
  margin-bottom: 40px;
  max-width: 580px;
}

.old_page .product_recharge_app {
  padding: 15px 0px 5px;
}

.product_recharge_app .available {
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  padding: 0 30px 10px;
}

.product_recharge_app .available:last-child {
  padding: 0 30px;
  margin-bottom: 0;
  border-bottom: 0;
}

s.product_recharge_app.product_recharge_app_three {
  padding: 15px 30px
}

.product_recharge_app #rc_container {
  margin-bottom: 0;
  width: 100%;
}

.product_recharge_app .rc_block__type {
  padding: 0 0 0 40px;
  position: relative;
  margin-bottom: 10px
}

.product_recharge_app.product_recharge_app_three .rc_block__type {
  padding-left: 0
}

.product_recharge_app .rc_block__type:last-child,
.product_recharge_app.product_recharge_app_three .rc_block__type:last-child label {
  margin-bottom: 0
}

.product_recharge_app.product_recharge_app_three .rc_block__type.rc_block__type_border {
  border-top: 1px solid #fff;
  padding-top: 8px
}

.product_recharge_app .rc_block__type:before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 4px solid #e8442e;
  border-radius: 100px;
  position: absolute;
  top: 4px;
  left: 0
}

.product_recharge_app .rc_block__type:after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #e8442e;
  position: absolute;
  border-radius: 100px;
  left: 7px;
  top: 11px;
  display: none
}

.product_recharge_app.product_recharge_app_three .rc_block__type.rc_block__type--active:after,
.product_recharge_app.product_recharge_app_three .rc_block__type:after,
.product_recharge_app.product_recharge_app_three .rc_block__type:before {
  display: none
}

.product_recharge_app .rc_block__type.rc_block__type--active:after {
  display: block
}

.product_recharge_app .rc_block__type.rc_block__type--active {
  background-color: transparent
}

.product_recharge_app .rc_block__type input {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  top: 4px;
  opacity: 0
}

.product_recharge_app .rc_block__type label {
  color: #fff !important;
  font-family: gt_eesti_display;
  font-weight: 700 !important;
  font-size: 20px
}

.product_recharge_app .rc_block__type label.rc_label__autodeliver {
  font-family: gt_eesti_textbold;
}

.product_recharge_app .rc_block__type .rc_block__type__options {
  display: block;
  white-space: initial
}

.product_recharge_app .rc_block__type .rc_block__type__options .rc_label__deliver_every {
  padding-top: 0;
  margin-top: -20px;
  padding-left: 0
}

.product_recharge_app .rc_block__type .rc_block__type__options .rc_label__delivery {
  font-family: gt_eesti_display;
  font-size: 14px;
  letter-spacing: .02em
}

.old_page .product_recharge_app .rc_block__type .rc_block__type__options .rc_label__delivery {
  max-width: 330px;
  display: inline-block;
  line-height: initial;
  margin-top: 18px;
}

.product_recharge_app .rc_block__type .rc_block__type__options .rc_label__frequency {
  display: none
}

.product_recharge_app .rc_popup {
  padding: 0 0 0 40px;
  margin-top: -8px
}

.product_recharge_app .rc_popup .rc_popup__hover {
  height: auto;
  color: #fff;
  text-decoration: underline;
  font-family: gt_eesti_textbold;
  letter-spacing: .02em;
  font-size: 14px
}

.product_recharge_app .rc_popup .rc_popup__hover .rc_popup__icon {
  display: none
}

.product_recharge_app .rc_popup .rc_popup__hover .rc_popup__block {
  background-color: #e8442e !important
}

.product_recharge_app .rc_popup .rc_popup__hover .rc_popup__block:before {
  border-bottom-color: #e8442e
}

.product_recharge_app .rc_popup .rc_popup__hover .rc_popup__block .rc_popup__block__content a,
.product_recharge_app .rc_popup .rc_popup__hover .rc_popup__block .rc_popup__block__footer {
  display: none
}

.product_recharge_app .rc_block__type label .rc_text {
  max-width: calc(100% - 65px);
  width: 100%;
  display: inline-block
}

.product_recharge_app .rc_block__type label .rc_price {
  float: right
}

.product_recharge_app .rc_block__type label .rc_label__discount {
  display: none
}

.row1.mainrow2 {
  display: flex;
  width: 100%;
  flex-wrap: wrap
}

.fiber_product {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px
}

.fiber_product .fiber_product_add {
  width: 20%
}

.fiber_product .fiber_product_note {
  width: 80%
}

.fiber_product .fiber_product_note .product_note_box,
.product .product_details_page_box_2 .fiber_product_note .product_note_box {
  background: #fff;
  border-radius: 24px;
  padding: 18px 0 12px;
  display: flex
}

.fiber_product .fiber_product_note .product_note_box {
  padding: 18px 15px 12px;
}

.fiber_product .fiber_product_note .product_note_box .note_box_image,
.product_details_page_box_2 .fiber_product_note .product_note_box .note_box_image {
  width: 95px
}

.fiber_product .fiber_product_note .product_note_box .note_box_content,
.product_details_page_box_2 .fiber_product_note .product_note_box .note_box_content {
  width: calc(100% - 100px);
  margin-left: 25px
}

.fiber_product .fiber_product_note .product_note_box h4,
.product_details_page_box_2 .fiber_product_note .product_note_box h4 {
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fiber_product .fiber_product_note .product_note_box h5,
.product_details_page_box_2 .fiber_product_note .product_note_box h5 {
  font-family: gt_eesti_display;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 0
}

.fiber_product .fiber_product_note .product_note_box h5 strong,
.product_details_page_box_2 .fiber_product_note .product_note_box h5 strong {
  font-family: gt_eesti_display;
  font-weight: 700;
  margin-right: 5px
}

.fiber_product .fiber_product_note .product_note_box p,
.product_details_page_box_2 .fiber_product_note .product_note_box p {
  margin-bottom: 0;
  display: flex
}

.features_btn_link {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-top: 40px
}

.features_btn_link a {
  color: #fff !important;
  font-family: gt_eesti_textbold;
  font-size: 16px
}

.features_btn_link a span {
  position: relative;
  top: -15px
}

.features_btn_link a svg {
  margin-left: 5px
}

.column-foundation,
.found_row_coloum .found_row_coloum_box {
  position: relative;
  z-index: 2
}

.found_row_coloum {
  position: relative;
  padding-top: 65px;
  max-width: 1440px;
  margin: 0 auto
}

.found_row_coloum:after {
  position: absolute;
  top: -45px;
  bottom: 0;
  width: 84%;
  background-repeat: no-repeat;
  background-size: contain
}

.found_row_coloum.coloum_1:after {
  top: -110px
}

.found_row_coloum.coloum_2 {
  padding-bottom: 90px;
  padding-top: 87px
}

.found_row_coloum.coloum_2:after {
  top: -62px;
  left: 30px
}

.found_row_coloum.coloum_3 {
  padding-top: 0;
  margin-top: -20px
}

.found_row_coloum.coloum_3:after {
  top: -23px;
  right: 50px
}

.found_row_coloum.coloum_4 {
  padding-top: 90px;
  padding-bottom: 115px
}

.found_row_coloum.coloum_4:after {
  top: 35px
}

.found_row_coloum .found_row_coloum_box {
  width: 44%;
  display: inline-block
}

.found_row_coloum .found_row_coloum_box .colum_image {
  max-width: 262px
}

.found_row_coloum .found_row_coloum_box .colum_content {
  font-family: gt_eesti_display;
  font-weight: 700;
  margin-top: 28px
}

.found_row_coloum .found_row_coloum_box .colum_content h4 {
  color: #3F409A;
  font-size: 32px;
  line-height: 28px;
  font-family: gt_eesti_display;
  font-weight: 700;
}

.found_row_coloum .found_row_coloum_box .colum_content p {
  color: #343789;
  opacity: .85;
  font-size: 20px;
  line-height: 32px
}

.template-faq .page-faq {
  padding: 0 20px;
  margin-top: -50px
}

.template-faq .page-faq .page-faq-bg {
  background: rgb(246 188 169 / .2);
  border-radius: 24px;
  padding: 90px 15px
}

.template-faq .page-faq .page-faq-bg .section-header {
  margin-bottom: 40px
}

.template-faq .page-faq .page-faq-bg .section-header h1 {
  margin-bottom: 0;
  font-weight: 900;
  font-size: 72px;
  line-height: 84px;
  color: #3F409A;
  letter-spacing: -.01em
}

.template-faq .page-faq .page-faq-bg .rte,
.template-faq .page-faq .page-faq-bg a {
  color: #3F409A;
  line-height: 25px;
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  font-family: gt_eesti_display;
  line-height: 30px;
  letter-spacing: .02em
}

.template-faq .page-faq .page-faq-bg a,
.template-faq .page-faq .page-faq-bg strong {
  font-family: gt_eesti_textbold
}

.template-faq .page-faq .page-faq-content {
  padding-bottom: 55px
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content h3 {
  font-weight: 900;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -.01em;
  color: #3F409A;
  font-family: gt_eesti_display;
  font-weight: 700 !important;
  margin-bottom: 40px
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box {
  border: 1px solid #ddd;
  overflow: hidden;
  border-bottom: none
}

.template-faq .page-faq .page-faq-content .faq-content-box .content-box:nth-child(2) {
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.template-faq .page-faq .page-faq-content .faq-content-box .content-box:last-child {
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom: 1px solid #ddd
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content {
  padding: 55px 0 0
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box h4 {
  font-size: 22px;
  line-height: 28px;
  color: #3F409A;
  font-family: gt_eesti_display;
  font-weight: 400;
  margin-bottom: 0
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box h4 a {
  color: #3F409A;
  padding: 20px 80px 20px 40px;
  display: inline-block;
  width: 100%;
  background-image: url(/cdn/shop/files/faq_down.svg?v=1609157020);
  background-repeat: no-repeat;
  background-position: center right 30px
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box h4 a:hover {
  color: #2e2f7d
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box h4 a.active {
  font-weight: 900;
  font-family: gt_eesti_textbold;
  background-color: rgba(221, 221, 221, .2);
  background-image: url(/cdn/shop/files/faq_up.svg?v=1609157020)
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box .box_content {
  padding: 0 40px 20px;
  margin-bottom: 0;
  background-color: rgba(221, 221, 221, .2)
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box .box_content p {
  font-size: 20px;
  line-height: 28px;
  color: #3F409A;
  font-family: gt_eesti_display;
  text-transform: initial;
  letter-spacing: 0;
  text-align: left;
  max-width: 100%;
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 30px;
  display: inline-block
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box .box_content p a {
  color: #e7442e
}

.template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box .box_content p:last-child {
  margin-bottom: 0
}

@media screen and (max-width:1850px) {
  div#Hero-hero-1::after {
    height: 100%
  }
}

@media screen and (max-width:1670px) {
  div#Hero-hero-1::after {
    height: 100%;
    max-width: 1400px
  }
}

@media screen and (max-width:1850px) {
  div#Hero-hero-1::after {
    height: 100%
  }
}

@media screen and (max-width:1366px) {
  div#Hero-hero-1::after {
    height: 100%
  }
}

@media screen and (max-width:1280px) {
  div#Hero-hero-1::after {
    height: 217px
  }

  .cstm-featured-row .feature-row__item h2.h3 {
    line-height: 42px;
    font-size: 56px
  }

  .cstm-featured-row h2.h3 {
    font-size: 40px
  }

  .badges-features1 h1,
  h1.heading-bio,
  section.badges-features h1,
  section.badges-features2 h1,
  section.bridge-main4 h1 {
    font-size: 45px
  }

  section.bridge-main h1,
  section.bridge-main1 h1,
  section.bridge-main3 h1 {
    font-size: 60px;
    line-height: 60px
  }

  section.bridge-main1 p.gut-para2 {
    font-size: 26px;
    line-height: 30px
  }

  .bridge-main5 h1.text {
    font-size: 50px;
    margin-bottom: 45px
  }

  .row-biome1 h3 {
    font-size: 40px;
    line-height: 20px
  }

  .product-single__media-group {
    padding-left: 30px
  }

  .thumbnail-slider {
    padding: 10px 20px 0 30px }}

@media screen and (max-width:1140px) {
  .column-biome .card::after {
    width: 100px;
    right: -80px;
    top: 60px
  }

  section.bridge-main3 {
    padding: 40px 0;
  }

  .gut-page1 {
    height: auto
  }

  .grid__item.small--one-whole.site-footer-item-align-right {
    width: 60%
  }

  div#Hero-hero-1::after {
    height: 180px;
    background-position: center bottom
  }

  .found_row_coloum.coloum_1:after {
    top: -70px;
    right: -110px
  }

  .found_row_coloum.coloum_2:after {
    top: -122px;
    left: -140px
  }

  .found_row_coloum.coloum_3:after {
    top: -35px;
    right: -10px
  }

  .found_row_coloum.coloum_4 {
    padding-bottom: 25px
  }

  .found_row_coloum.coloum_4:after {
    top: -15px;
    left: -200px }}

@media screen and (max-width:1024px) {
  .column-biome .card::after {
    width: 80px;
    right: -72px
  }

  .bridge-main4 .row-smart .column-smart:nth-child(1) {
    width: 40%;
    padding-right: 40px
  }

  div#Hero-hero-1::after {
    height: 162px
  }

  h2.h1.mega-title.mega-title--large,
  .page-faq .headline,
  .page-contact .headline {
    font-size: 70px
  }

  .thumbnail-slider .product-single__thumbnails-item {
    padding-left: 10px;
    padding-right: 10px
  }

  .thumbnail-slider .product-single__thumbnails-item .product-single__thumbnail {
    padding: 15px 10px
  }

  .product_recharge_app .rc_block__type .rc_block__type__options .rc_label__deliver_every {
    margin-top: -10px;
    line-height: initial !important
  }

  .product_recharge_app .rc_popup {
    margin-top: 0
  }

  .fiber_product .fiber_product_note {
    padding-left: 20px
  }

  section.badges-features::after {
    background-size: contain }}

@media (min-width:768px) and (max-width:1199px) {
  img.gut-gif {
    width: 40%
  }

  .gut-page1 {
    height: auto }}

@media only screen and (max-width:1199px) {
  .cstm-featured-row .feature-row {
    padding-left: 20px;
    padding-right: 20px }}

@media only screen and (max-width:991px) {
  .hero__inner .page-width.text-center {
    padding-bottom: 140px
  }

  #Hero-hero-1 {
    background-size: 100% 580px
  }

  .shopify-section.home_banner_sec .hero::before {
    background-position: center;
    background-size: auto 560px
  }

  .hero__inner {
    padding: 0 0 60px
  }

  .cstm-featured-row .feature-row {
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px
  }

  .cstm-featured-row .feature-row .feature-row__item.feature-row__text {
    flex: 0 1 100%;
    order: 2;
    padding-top: 30px;
    padding-right: 0
  }

  .cstm-featured-row .feature-row .feature-row__item {
    flex: 0 1 100%;
    order: 1
  }

  .cstm-featured-row #FeatureRowImageWrapper-feature-row {
    margin-right: auto
  }

  .hero .mega-subtitle p {
    font-size: 18px
  }

  .bnr-imgg {
    margin-bottom: 0
  }

  .cstm-featured-row {
    padding-bottom: 40px
  }

  section.bridge-main4 {
    padding: 25px 0 0
  }

  .bridge-main4 .column-smart,
  .bridge-main4 .row-smart .column-smart:nth-child(1) {
    width: 100%;
    order: 2;
    padding-right: 0
  }

  .bridge-main4 .row-smart:first-child .column-smart:nth-child(2) {
    justify-content: center;
    order: 1;
    margin-bottom: 20px
  }

  .bridge-main4 .row-smart:first-child .column-smart:nth-child(2) img {
    width: 100%
  }

  section.bridge-main2 .row-biome,
  section.bridge-main2 .row-biome1 {
    margin: 0 -15px;
    padding: 6px 0 36px;
    display: none
  }

  section.bridge-main2 .row-biome .column-biome {
    width: 50%;
    padding: 0 15px;
    margin-top: 90px
  }

  .column-biome .card,
  section.bridge-main2 .row-biome .column,
  section.bridge-main2 .row-biome .column-biome1 {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
    float: none
  }

  .column-biome .card::after {
    width: 150px;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: -35px;
    display: block !important
  }

  section.bridge-main2 .row-biome1 {
    padding: 0;
    text-align: center
  }

  section.bridge-main2 .row-biome1 p br {
    display: none
  }

  section.bridge-main2 .row-biome {
    display: flex
  }

  .caring_custom .badges-features2-btn {
    margin-top: 30px
  }

  .found_row_coloum.coloum_2:after {
    top: -70px;
    left: -110px
  }

  .found_row_coloum.coloum_4 {
    padding-bottom: 0
  }

  .product_details_page .shopify-section .product-single__meta .product-single__description ul {
    display: none }}

@media screen and (max-width:850px) {
  .cstm-featured-row .feature-row__item h2.h3 {
    line-height: 36px;
    font-size: 46px
  }

  div#Hero-hero-1::after {
    height: 132px
  }

  .badges-features2 a.btn2 {
    display: block;
    margin: 0 auto 20px;
    width: 100%
  }
}

@media only screen and (max-width:767px) {
  img.gut-gif {
    width: 80%
  }

  div#Hero-hero-1::after {
    height: 118px
  }

  .cstm-featured-row .feature_row_data {
    height: auto;
    min-height: initial
  }

  .cstm-featured-row #FeatureRowImageWrapper-feature-row,
  .cstm-featured-row .row-feature {
    padding-top: 100px !important
  }

  .cstm-featured-row .feature-row .feature-row__item.feature-row__text {
    padding-top: 45px
  }

  #Hero-hero-1 {
    height: auto
  }

  .hero__inner {
    padding: 30px 0 0
  }

  #Hero-hero-1 {
    background-size: cover
  }

  .shopify-section.home_banner_sec .hero::before {
    background-size: 590px;
    top: -110px;
    left: 0;
    background-position: center left -39px
  }

  .bridge-main3 a.button {
    font-size: 18px;
    line-height: 26px;
    padding: 10px 15px
  }

  .bridge-main3 a.button .btn_star.star_left {
    margin-right: 10px
  }

  .bridge-main3 a.button .btn_star.star_right {
    margin-left: 10px
  }

  .bridge-main4 .bridge_main_4_text_with_btn a {
    margin-top: 20px
  }

  .row-biome1 p {
    margin-top: 0
  }

  .row-biome .column-biome .card-body p {
    margin-top: 0
  }

  .cstm-featured-row .feature-row__item h2.h3 {
    left: -27px
  }

  .bnr-imgg img {
    max-width: 300px
  }

  .badges-sectn {
    padding-top: 0
  }

  .found_row_coloum:after {
    display: none
  }

  .found_row_coloum .found_row_coloum_box {
    width: 100%
  }

  .found_row_coloum.coloum_2,
  .found_row_coloum.coloum_3,
  .found_row_coloum.coloum_4 {
    padding-bottom: 0;
    padding-top: 30px
  }

  .found_row_coloum.coloum_3 {
    margin-top: 0
  }

  #insta-feed .instafeed-container {
    width: 50% !important;
    padding: 15px 0 0 0 !important
  }

  #insta-feed img {
    position: relative !important
  }

  .cart-form .cart_tiltle_header h1 {
    font-size: 40px }}

@media screen and (max-width:749px) {
  .fancy_box_closed {
    display: block
  }

  button.btn--link.site-header__icon.site-header__menu .menu-icon {
    display: none
  }

  button.btn--link.site-header__icon.site-header__menu .menu-icon-bar {
    display: block !important
  }

  .biome_custm,
  .caring_custom,
  .cstm-fiber,
  .foun_custm,
  .gut_custm,
  .our_custm {
    padding-left: 15px;
    padding-right: 15px
  }

  .site-header {
    padding: 0 0
  }

  .hero__inner .page-width.text-center {
    padding-top: 0
  }

  .hero .mega-subtitle p {
    font-size: 20px;
    padding: 0 18px;
    text-align: center
  }

  .hero__inner {
    padding: 50px 0 110px
  }

  .shopify-section.home_banner_sec .page-width.text-center {
    padding-bottom: 20px;
    padding-top: 0
  }

  .hero__inner a.btn {
    margin-top: 20px
  }

  h2.h1.mega-title.mega-title--large,
  .page-faq .headline,
  .page-contact .headline {
    font-size: 76px;
    text-align: center;
    padding: 0 18px;
    margin-bottom: 10px;
    line-height: 75px;
    margin-top: 0;
  }

  h2.h1.mega-title.mega-title--large span {
    display: inline-block;
    width: auto;
    padding-left: 5px;
    margin: 0 7%
  }

  h2.h1.mega-title.mega-title--large span:after {
    top: 8px !important;
    height: calc(100% - 15px)
  }

  .shopify-section.home_banner_sec .page-width.text-center {
    text-align: center
  }

  .hero .mega-subtitle {
    margin-bottom: 0
  }

  .site-header__icons {
    top: -10px;
    padding-right: 0;
    width: 90px
  }

  .column-foundation {
    width: 100% !important
  }

  .column-smart img {
    width: 100%
  }

  button.btn--link.site-header__icon.site-header__menu img.menu-icon {
    width: 40px
  }

  button.btn--link.site-header__icon.site-header__menu {
    top: -21px;
    padding: 0 11px
  }

  a.site-header__logo-image svg {
    width: 110px !important
  }

  h1.h2.site-header__logo {
    padding-left: 8px
  }

  a.site-header__icon.site-header__cart svg {
    height: 34px;
    width: 34px
  }

  .grid.site-header__mobile-nav {
    padding-left: 5px;
    padding-right: 20px;
    padding-top: 20px
  }

  .row-smart:first-child .column-smart {
    width: 100% !important
  }

  section.bridge-main3 img.new-img2 {
    width: 100px
  }

  .grid__item.small--one-whole.site-footer-item-align-right,
  .imp-links {
    width: 100%
  }

  .imp-links ul li:first-child {
    padding-left: 0
  }

  footer.site-footer {
    margin-top: 0;
    padding-top: 30px
  }

  li.site-footer__linklist-item {
    padding: 0
  }

  .para-combine {
    width: 30%
  }

  .site-footer__icon-list {
    padding-bottom: 0
  }

  .row-smart {
    margin-top: 0
  }

  .bridge-main3 .row-smart {
    margin-top: 40px
  }

  .col-sm-6,
  .column,
  .columns {
    width: 100%
  }

  section.bridge-main h1,
  section.bridge-main1 h1,
  section.bridge-main3 h1 {
    font-size: 45px;
    line-height: 45px
  }

  .badges-cln-brd .col-sm-12,
  .badges-sectn .col-sm-6,
  .bridge-main4 .row-smart .column-smart,
  .column-gut,
  .column-smart,
  .mainrow .columns,
  .row1 .columns {
    width: 100% !important
  }

  .col-sm-6.para3 {
    margin-top: 20px
  }

  .imagepara {
    position: inherit;
    margin-top: 45px;
    bottom: inherit
  }

  .row1 .columns:nth-child(2) {
    margin: 15px 0
  }

  section.badges-features2 {
    padding: 50px 0 70px
  }

  .column-gut:first-child,
  .column-smart:first-child {
    margin-bottom: 30px
  }

  .row-biome .column-biome,
  .row-biome1 .column,
  .row-biome1 .column-biome1 {
    width: 100% !important;
    margin-bottom: 0;
    text-align: center
  }

  .column-smart {
    width: 100%
  }

  .bridge-main3 a.button {
    margin-top: 40px
  }

  img.teamphoto,
  img.teamphoto2 {
    display: none
  }

  .badges-sectn a.anchor,
  .column-gut a.anchor {
    justify-content: inherit
  }

  .bottom-footer {
    padding: 30px 0
  }

  .column-biome .card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0;
    margin-bottom: 0
  }

  .column-biome .card-body {
    order: 2;
    margin-bottom: 10px
  }

  .column-biome .card img {
    order: 1;
    border: none;
    margin: 10px 0 15px
  }

  section.bridge-main1 h1,
  section.bridge-main3 h1 {
    margin-bottom: 15px
  }

  section.bridge-main3 {
    padding: 30px 0
  }

  .bridge-main3 .column-smart p.smart-para,
  .bridge-main3 .column-smart p.smart-para2 {
    margin-top: 13px
  }

  .cstm-newsletter form.needsclick .dMHKxR {
    left: -22px;
    padding-left: 0;
    padding-right: 0
  }

  .site-footer__item-inner.site-footer__item-inner--link_list {
    justify-content: flex-start;
    padding-left: 20px
  }

  .grid__item.small--one-whole.site-footer-item-tall {
    justify-content: center;
    padding: 10px 0 0 0
  }

  .section-wrapper #shopify-section-cart-template {
    margin-top: -25px
  }

  section.bridge-main2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sidenav .closebtn {
    top: 10px;
    left: 15px;
    width: 50px;
  }

  .sidenav .mySidenav_height {
    padding-top: 100px
  }

  .cstm-fiber .mainrow .columns:first-child {
    margin-bottom: 30px;
    position: relative;
    z-index: 99
  }

  .is-visible .ajaxifyCart--close {
    top: 42px;
    width: 29px
  }

  .cart-form .ajaxifyCart--products .ajaxCart--product-image img {
    padding: 15px;
    border-radius: 35px
  }

  .grid__item.two-thirds.pro_info {
    padding-left: 10px
  }

  .product_details_page .shopify-section#shopify-section-product-template,
  .product_details_page .shopify-section#shopify-section-product-template-two {
    padding: 40px 0
  }

  .product_details_page .shopify-section#shopify-section-product-template-two {
    padding: 20px 0 70px;
  }

  .product_details_page .shopify-section .product-single__meta {
    padding: 0 9px
  }

  .product_details_page .shopify-section .product-single__meta .product-single__title {
    font-size: 26px;
    line-height: 60px
  }

  .product_details_page .shopify-section .product-single__meta .product_tabs .tab button {
    margin-right: 5px
  }

  p.para-bio {
    line-height: 22px;
    margin-top: 10px
  }

  section.bridge-main1 {
    padding: 40px 0
  }

  .product-single__media-group {
    padding-left: 22px
  }

  .thumbnail-slider .product-single__thumbnails-item {
    flex: 0 0 33.33%
  }

  .badges-features1 a.anchor {
    font-size: 19px
  }

  .fiber_product .fiber_product_add {
    width: 100%;
    order: 2
  }

  .fiber_product .fiber_product_note {
    width: 100%;
    padding-left: 0;
    order: 1;
    margin-bottom: 30px
  }

  .fiber_product .fiber_product_note .product_note_box {
    flex-wrap: wrap
  }

  .fiber_product .fiber_product_note .product_note_box .note_box_content {
    width: 100%;
    margin-left: 0;
    margin-top: 10px
  }

  .product-single {
    display: flex;
    flex-wrap: wrap
  }

  .product_images {
    order: 1
  }

  .product_description_main_div {
    order: 2
  }

  .product_description {
    order: 1;
    margin-bottom: 20px;
    padding: 0
  }

  .product_rechare_app {
    order: 3;
    padding: 0
  }

  .product_details_page .yotpo.yotpo-main-widget {
    padding-left: 0;
    padding-right: 0
  }

  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-bottomline.yotpo-bottomline-2-boxes {
    padding-bottom: 0;
    height: auto;
    padding-top: 10px
  }

  .product_details_page .yotpo .yotpo-nav {
    padding-top: 5px
  }

  .product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline .yotpo-sum-reviews {
    padding: 5px 0 0
  }

  .template-faq .page-faq {
    margin-top: -30px }}

@media screen and (max-width:640px) {
  div#Hero-hero-1::after {
    height: 100%;
    background-image: url(/cdn/shop/files/header_2A.svg?v=1605850034)
  }

  .newsletter-section h2 {
    font-size: 30px;
    line-height: 37px;
    left: 0;
    margin: 0
  }

  .newsletter-section .form-single-field {
    max-width: 100%
  }

  .site-footer__item-inner.site-footer__item-inner--link_list {
    flex-wrap: wrap
  }

  .grid__item.small--one-whole.site-footer-item-tall {
    height: auto;
    margin-top: 5px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center
  }

  .site-footer__social-icons li {
    padding-left: 15px
  }

  .site-footer__social-icons li:first-child {
    padding-left: 0
  }

  footer.site-footer {
    padding-bottom: 20px
  }

  .site-footer__content {
    padding: 0
  }

  footer a.social-icons__link {
    width: 35px;
    height: 35px
  }

  footer .social-icons .icon {
    width: 15px;
    height: 15px
  }

  footer p.full-para {
    top: -5px;
    width: 100%;
    text-align: center
  }

  section.bridge-main h1,
  section.bridge-main1 h1,
  section.bridge-main3 h1 {
    font-size: 40px;
    line-height: 40px
  }

  .badges-cln-brd .col-sm-12,
  .badges-sectn .col-sm-6 {
    padding: 25px 20px
  }

  .bridge-main5 h1.text {
    font-size: 38px;
    margin-bottom: 30px
  }

  section.bridge-main5 {
    padding: 30px 0 45px
  }

  .badges-features1 h1,
  h1.heading-bio,
  section.badges-features h1,
  section.badges-features2 h1,
  section.bridge-main4 h1 {
    font-size: 48px;
    line-height: normal
  }

  .column-foundation p {
    font-size: 20px;
    line-height: 24px;
    margin-top: 12px
  }

  p.para2 {
    font-size: 22px;
    line-height: 25px
  }

  .imagepara p.para {
    line-height: 25px;
    font-size: 16px
  }

  section.bridge-main h1 {
    font-size: 38px;
    line-height: 40px
  }

  section.bridge-main {
    padding: 45px 0 30px
  }

  section.bridge-main1 p.gut-para2 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 40px
  }

  section.bridge-main1 p {
    font-size: 18px;
    line-height: 22px
  }

  .badges-sectn a.anchor i.fa.fa-long-arrow-right,
  .column-gut a.anchor i.fa.fa-long-arrow-right {
    padding: 7px 8px
  }

  .mainrow p {
    font-size: 18px;
    line-height: 30px
  }

  .mainrow2 .columns svg {
    max-width: 70px;
    height: auto
  }

  .index section.badges-features1,
  section.badges-features,
  section.bridge-main2,
  section.bridge-main4,
  section.bridge-main5,
  footer.footer {
    margin-left: 20px;
    margin-right: 20px;
  }

  .badges-features1 .mainrow2 .columns p {
    padding-left: 20px;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
  }

  section.badges-features2 {
    padding: 30px 0 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .drawer_crt {
    padding: 0 20px 15px
  }

  .cart-form .cart_tiltle_header {
    margin-bottom: 50px
  }

  .cart-form .ajaxifyCart--products .ajaxCart--product-image img {
    border-radius: 20px
  }

  .grid__item.two-thirds.pro_info {
    padding-left: 20px
  }

  .cart-form .ajaxifyCart--products .prod-price {
    position: relative;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 0
  }

  .cart-form .ajaxifyCart--products {
    margin-bottom: 40px
  }

  .cart-form .ajaxifyCart--products .ajax_product_image {
    width: 100%;
    margin-bottom: 20px
  }

  .grid__item.two-thirds.pro_info {
    width: 100%
  }
}

@media only screen and (max-width:575px) {
  .section-wrapper {
    padding-top: 25px
  }

  .site-header_try_free {
    display: none
  }

  .hero__btn {
    margin-top: 90px
  }

  .page-contact .hero__btn {
    margin-top: 20px;
  }

  .sidenav {
    max-width: 100%
  }

  .cstm-featured-row {
    padding-bottom: 50px;
    padding-top: 25px;
  }

  .cstm-featured-row a.btn {
    margin-bottom: 12px
  }

  .caring_custom .badges-features2-btn {
    margin-top: 20px
  }

  .tabcontent .tabcontent_main_box .tabcontent_box {
    width: 100%;
    padding-right: 0;
    padding-bottom: 20px
  }

  .tabcontent .tabcontent_main_box .tabcontent_box:last-child {
    padding-bottom: 0
  }

  .product_recharge_app {
    padding: 15px 20px 23px
  }

  .product_recharge_app .rc_block__type {
    white-space: initial;
    margin-bottom: 0
  }

  .product_recharge_app .rc_block__type label .rc_price {
    display: inline-block;
    width: 100%;
    position: relative;
    top: -10px;
    float: initial
  }

  .product_recharge_app .rc_block__type .rc_block__type__options .rc_label__deliver_every {
    margin-top: -20px
  }

  .badges-features1 .main_points ul li {
    line-height: 30px;
    background-position: left top 7px
  }

  .is-visible .ajaxifyCart--close {
    top: 32px;
    left: 20px
  }

  .template-faq .page-faq .page-faq-bg {
    padding: 40px 15px
  }

  .template-faq .page-faq .page-faq-bg .section-header h1 {
    font-size: 42px;
    line-height: 54px
  }

  .template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box h4 {
    font-size: 18px;
    line-height: 24px
  }

  .template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box h4 a {
    padding: 20px 80px 20px 20px
  }

  .template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box .box_content {
    padding: 0 20px 20px
  }

  .template-faq .page-faq .page-faq-content .faq-content-box .box-content .content-box .box_content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px
  }

  .template-faq .page-faq .page-faq-content .faq-content-box .box-content h3 {
    font-size: 43px;
    line-height: 52px;
    letter-spacing: 0;
    margin-bottom: 20px
  }

  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-1 .write-review-button,
  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-icon-btn .yotpo-icon-button-text,
  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-review .yotpo-header .yotpo-header-actions {
    display: block !important
  }

  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-1 {
    justify-content: flex-start;
    margin-top: 15px
  }

  .product_details_page .yotpo.yotpo-main-widget .yotpo-bottomline .yotpo-sum-reviews {
    text-align: left
  }

  .product_details_page .yotpo.yotpo-main-widget.yotpo-medium .yotpo-main,
  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-main {
    margin-left: 70px
  }

  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-1 .write-review-button {
    top: initial;
    right: initial;
    position: initial;
    margin-top: 18px
  }

  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .write-review .connect-wrapper .form-element:first-child {
    margin-bottom: 20px
  }

  .product_details_page .yotpo .yotpo-review .yotpo-header .yotpo-icon-profile {
    width: 50px;
    height: 50px;
    margin-right: 20px
  }

  .product_details_page .yotpo .yotpo-review .yotpo-header .yotpo-icon-profile .yotpo-user-letter {
    line-height: 1
  }

  .product_details_page .yotpo.yotpo-main-widget.yotpo-small .yotpo-main {
    margin-left: 70px
  }

  .product_details_page .yotpo .yotpo-review .yotpo-main .content-review {
    margin-left: 0
  }

  .product_details_page .yotpo .yotpo-review .yotpo-header.yotpo-verified-buyer .yotpo-icon-circle-checkmark,
  .product_details_page .yotpo .yotpo-review .yotpo-header.yotpo-verified-user .yotpo-icon-circle-checkmark {
    right: -8px
  }

  .product_details_page .yotpo .yotpo-icon-circle-checkmark:before {
    width: 20px;
    height: 20px;
    font-size: 20px
  }

  .product_details_page .yotpo .form-group span {
    float: none
  }

  .product_details_page .yotpo .write-review .submit-button .form-input-error {
    margin: 20px 0 0 0 }}

@media screen and (max-height:450px) {
  .sidenav {
    padding-top: 15px
  }

  .sidenav a {
    font-size: 18px
  }

  .hero__btn {
    margin-top: 20px
  }

  .badges-features2 a.btn2,
  .badges-features2 a.btn2.btn_second,
  a.btn2 {
    width: 100%
  }

  div#Hero-hero-1::after {
    height: 100%
  }

  .cstm-newsletter h2 {
    font-size: 29px;
    line-height: 37px
  }

  .cart-form .cart_tiltle_header h1 {
    font-size: 40px }}

@media screen and (max-width:450px) {
  .is-visible .ajaxifyCart--close {
    top: 36px;
    width: 35px;
    left: 20px }}

.kl-private-quill-wrapper-Lkqws1.kl-private-quill-wrapper-Lkqws1.kl-private-quill-wrapper-Lkqws1 .ql-editor span {
  font-family: gt_eesti_display;
  font-weight: 700 !important;
  color: #3F409A;
  margin-top: 10px;
  display: inline-block !important;
  width: 100%
}

.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc .ql-container p:last-child span {
  font-family: gt_eesti_display !important
}

.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc .ql-container p strong {
  font-weight: 400 !important;
  font-family: gt_eesti_display !important
}

.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc.bwIBYc .ql-container p strong em {
  font-size: 16px;
  font-style: normal;
  margin-left: 5px
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form {
  padding: 30px 20px !important;
  border: 3px solid #e8432e !important;
  border-radius: 10px !important;
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .RichText__StyledQuillContainer-sc-11o3xhj-0 p {
  margin-bottom: 30px !important
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form input[type=email] {
  height: 38px !important;
  margin-top: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .Row__FormRow-sc-17nghml-0 kgtZbf {
  position: relative
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .hZrcDZ {
  width: 100%;
  flex: 0 0 100%
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form button {
  left: 0;
  top: 0
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .byxcWS {
  position: absolute;
  right: 0;
  flex: 0 0 auto;
  top: -2px
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .ql-editor {
  margin-bottom: 00px;
  margin-top: -10px
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .ql-editor h2 {
  color: #2e2f7d !important;
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .kl-private-reset-css-Xuajs1 .ql-editor P,
.klaviyo-form.klaviyo-form-XSKzmr form .kl-private-reset-css-Xuajs1 .ql-editor P {
  font-size: 25px !important;
  font-family: gt_eesti_textbold;
  margin-bottom: 15px !important;
  line-height: initial;
  color: #2e2f7d
}

.klaviyo-form.klaviyo-form-XSKzmr form .kl-private-reset-css-Xuajs1 .ql-editor P:first-child {
  margin-top: 30px;
}

.klaviyo-form.klaviyo-form-XSKzmr form .kl-private-reset-css-Xuajs1 .kvTDNe input {
  margin-top: 0 !important
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .ql-editor p {
  margin-bottom: 0 !important
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .ql-editor p:first-child {
  margin-bottom: 10px !important
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .ql-editor p span {
  margin-top: 0
}

.klaviyo-form.klaviyo-form-XSKzmr form .kl-private-reset-css-Xuajs1 .ql-editor {
  margin-bottom: -50px !important
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .needsclick .ValidationMessage__Container-sc-ja3t6w-0 .ValidationMessage__ValidationContainerOuter-sc-ja3t6w-2,
.cstm-newsletter form.needsclick .needsclick .ValidationMessage__ValidationContainerOuter-sc-ja3t6w-2 {
  top: -68px;
  right: initial;
}

.klaviyo-form.kl-private-reset-css-Xuajs1 form .needsclick .ValidationMessage__ValidationContainer-sc-ja3t6w-1:before,
.klaviyo-form.kl-private-reset-css-Xuajs1 form .needsclick .ValidationMessage__ValidationContainer-sc-ja3t6w-1:after,
.cstm-newsletter form.needsclick .needsclick .ValidationMessage__ValidationContainerOuter-sc-ja3t6w-2 .ValidationMessage__ValidationContainer-sc-ja3t6w-1:before,
.cstm-newsletter form.needsclick .needsclick .ValidationMessage__ValidationContainerOuter-sc-ja3t6w-2 .ValidationMessage__ValidationContainer-sc-ja3t6w-1:after {
  transform: rotate(180deg);
  top: 34px;
}

@media only screen and (max-width:600px) {
  .klaviyo-form.kl-private-reset-css-Xuajs1 form {
    width: 100% !important }}

.template-blog .section-wrapper .section-header h1,
.begin-contact .section-header h1 {
  font-size: 120px;
  color: #2a247f
}

.template-blog .blog_bg {
  max-width: calc(100% - 40px);
  margin: 0 20px;
  background-color: rgba(179, 221, 245, .2);
  padding: 30px 20px;
  border-radius: 24px
}

.article .section-wrapper {
  background: #eff8fc;
  border-radius: 24px;
  max-width: calc(100% - 40px);
  margin: 15px auto 0
}

.template-blog .blog_bg {
  padding: 80px 20px 30px
}

.article .section-wrapper .related_artical ul,
.template-blog .blog_bg .blog_container ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0
}

.template-blog .blog_bg .blog_container li.order_1 {
  order: 1
}

.template-blog .blog_bg .blog_container li.order_2 {
  order: 2
}

.template-blog .blog_bg .blog_container li:first-child {
  margin-bottom: 0
}

.article .section-wrapper .related_artical li,
.template-blog .blog_bg .blog_container li {
  margin-bottom: 35px
}

.template-blog .blog_bg .blog_container {
  max-width: 1075px;
  margin: 0 auto
}

.template-blog .blog_bg .blog_container .blog-filter {
  margin-bottom: 40px;
  display: none
}

.template-blog .blog_bg .blog_container .blog-filter .select-group a {
  font-size: 36px;
  letter-spacing: -.01em;
  color: #3F409A;
  margin: 0 15px;
  font-family: gt_eesti_display;
  font-weight: 700;
  position: relative;
}

.template-blog .blog_bg .blog_container .blog-filter .select-group a.active,
.template-blog .blog_bg .blog_container .forloop_not .authir_content .article__grid-meta {
  font-weight: 300
}

.template-blog .blog_bg .blog_container .blog-filter .select-group a.active:after {
  content: "";
  border-bottom: 6px solid #e8442e;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 5px;
  z-index: -1
}

.template-blog .blog_bg .blog_container a.forloop_1 {
  position: relative;
  margin-bottom: 0;
  display: inline-block;
  width: 100%
}

.article .section-wrapper .related_artical .article__grid-image-wrapper,
.article .section-wrapper .related_artical .article__grid-image-wrapper img,
.template-blog .blog_bg .blog_container .article__grid-image-wrapper,
.template-blog .blog_bg .blog_container .article__grid-image-wrapper img {
  max-width: 100% !important;
  max-height: initial !important;
  border-radius: 12px
}

.article .section-wrapper .related_artical .article__grid-image-wrapper:before,
.template-blog .blog_bg .blog_container .article__grid-image-wrapper:before {
  border-radius: 12px;
  display: none
}

.template-blog .blog_bg .blog_container .forloop_1 .featured_tag {
  position: absolute;
  z-index: 99;
  left: 30px;
  top: 30px;
  color: #fff;
  font-family: gt_eesti_textbold;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 18px
}

.template-blog .blog_bg .blog_container .forloop_1 .article__title {
  color: #fff;
  font-size: 72px;
  position: absolute;
  bottom: 40px;
  left: 30px;
  margin-bottom: 0;
  max-width: calc(100% - 190px)
}

.template-blog .blog_bg .blog_container .forloop_1 .blog_btn {
  position: absolute;
  right: 30px;
  z-index: 99;
  bottom: 50px;
  background: #fdd550;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2a247f;
  font-size: 16px;
  font-family: gt_eesti_display;
  font-weight: 700;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 100%
}

.article .section-wrapper .related_artical .authir_content .article__grid-meta,
.article .section-wrapper .related_artical forloop_not .article__grid-image-container,
.template-blog .blog_bg .blog_container .authir_content .article__grid-meta,
.template-blog .blog_bg .blog_container .forloop_not .article__grid-image-container {
  margin-bottom: 0
}

.article .section-wrapper .related_artical .forloop_not .article__grid-image-container img,
.template-blog .blog_bg .blog_container .forloop_not .article__grid-image-container img {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0
}

.article .section-wrapper .related_artical .authir_content,
.template-blog .blog_bg .blog_container .authir_content {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border-top-right-radius: 0;
  border-top-left-radius: 0
}

.article .section-wrapper .related_artical .authir_content .article__title,
.template-blog .blog_bg .blog_container .authir_content .article__title {
  color: #343789;
  font-size: 24px
}

.article .section-wrapper .related_artical .authir_content .article__grid-meta,
.article .section-wrapper .related_artical .authir_content .article__grid-meta .rte,
.article .section-wrapper .related_artical .authir_content .article__title,
.template-blog .blog_bg .blog_container .authir_content .article__grid-meta,
.template-blog .blog_bg .blog_container .authir_content .article__grid-meta .rte,
.template-blog .blog_bg .blog_container .authir_content .article__title {
  padding: 0;
  float: none
}

.article .section-wrapper .related_artical .authir_content .article__grid-meta .rte,
.template-blog .blog_bg .blog_container .authir_content .article__grid-meta {
  font-size: 16px;
  color: #343789
}

.article .section-wrapper .artical-bread .breadcrumb a,
.article .section-wrapper .artical-bread .breadcrumb span {
  font-family: gt_eesti_display;
  font-weight: 700;
  color: #f6bca9;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 16px
}

.article .section-wrapper .section-header h1 {
  letter-spacing: -.01em;
  color: #3F409A;
  font-size: 48px;
  margin-bottom: 0
}

.article .section-wrapper .section-header .article__author {
  text-transform: capitalize;
  font-weight: 700;
  color: #3F409A;
  font-size: 16px
}

.article .section-wrapper .artical-bread,
.article .section-wrapper .blog_content,
.article .section-wrapper .section-header {
  max-width: 100%;
  margin: 0 auto
}

.article .section-wrapper .artical-bread {
  margin-bottom: 20px
}

.article .section-wrapper .blog_content {
  margin: 35px auto
}

.article .section-wrapper .blog_content p {
  font-weight: 300;
  color: #3F409A;
  font-size: 22px;
  margin-bottom: 25px
}

.article .section-wrapper .blog_content li {
  font-size: 18px;
}

.article .section-wrapper .blog_content_summary {
  background-color: #fff;
  padding: 15px;
  border-left: 10px solid #ffd650;
}

.article .section-wrapper .blog_content_summary .summary_content h6 {
  margin-bottom: 0;
  padding: 0;
  font-size: 21px;
  font-weight: 600;
  width: 100%;
  display: block;
  line-height: 1.5;
}

.article .section-wrapper .blog_content_summary .summary_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.article .section-wrapper .blog_content_summary .summary_content p:last-child {
  margin-bottom: 0
}

.article .section-wrapper .related_artical {
  margin-top: 80px
}

.article .section-wrapper .related_artical h2 {
  text-transform: initial;
  letter-spacing: -.01em;
  color: #3F409A;
  font-size: 36px;
  margin-bottom: 25px
}

.article .section-wrapper .related_artical .forloop_not .article__grid-image-container {
  margin-bottom: 0
}

.article .section-wrapper .related_artical li:hover {
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, .08))
}

.product_details_page .cstm-fiber {
  padding: 0
}

.product_details_page .product_description_main_div.main_div_2 .product-single__description {
  display: none
}

.product_details_page .product_star {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: center
}

.product_details_page .product_star .yotpo-review-stars {
  display: inline-block;
  width: auto
}

.product_details_page .product_star .yotpo-review-stars .yotpo-icon {
  font-size: 25px;
  color: #343789
}

.product_details_page .product_star.desktop_view .star_text {
  max-width: calc(100% - 140px)
}

.product_details_page .product_star .star_text span {
  display: inline-block;
  color: #3F409A;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 24px;
  margin-left: 11px;
  width: auto
}

.product_details_page .product-single__meta .product_payment_option,
.product_details_page .product_page_video_text .product_payment_option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: -15px
}

.product_details_page .product-single__meta .product_payment_option .payment_btn,
.product_details_page .product_page_video_text .payment_btn {
  max-width: 253px;
  width: 100%
}

.product_details_page .product-single__meta .product_payment_option .payment_btn .payment_btn_box,
.product_details_page .product_page_video_text .payment_btn .payment_btn_box {
  margin-top: 29px
}

.product_details_page .product-single__meta .product_payment_option .payment_acceptable,
.product_details_page .product_page_video_text .product_payment_option .payment_acceptable {
  max-width: calc(100% - 276px)
}

.product .product_details_page_box_2,
.product_page_video_text .row {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0 0px;
  margin-left: -15px;
  margin-right: -15px
}

.product .product_details_page_box_2 .fiber_product_note,
.product .product_details_page_box_2 .product_details_incredians,
.product_details_page .product_page_video_text .video_boxs,
.product_details_page .product_page_video_text .video_text {
  max-width: 50%;
  padding: 0 15px;
  width: 100%
}

.product .product_details_page_box_2 .product_details_incredians .product-single__meta .product_tabs .tab {
  justify-content: flex-start
}

.product .product_details_page_box_2 .fiber_product_note .product_note_box h4 p {
  color: #3F409A;
  font-style: italic;
}

.product_details_page .badges-features1 .fiber_product,
.product_details_page .product_star.mobile_view {
  display: none
}

.product_details_page .product_page_video_text {
  padding-bottom: 50px
}

.product_details_page .product_page_video_text .video_boxs .video_box {
  height: 100%
}

.product_details_page .product_page_video_text .video_boxs .video_box iframe {
  height: calc(100% - 113px)
}

.product_details_page .product_page_video_text .video_boxs .video_box .payment_btn {
  margin: 0 auto
}

.product_details_page .product_page_video_text .video_text .text_box p {
  max-width: 530px;
  letter-spacing: .02em;
  font-size: 16px;
  line-height: 24px;
  font-family: gt_eesti_display;
  color: #343789;
  margin-bottom: 10px
}

.product_details_page .product_page_video_text .video_text .text_box p span {
  font-weight: 900
}

.product_details_page .product_page_video_text .video_text .text_box .text_author p {
  margin-bottom: 5px;
  line-height: initial
}

.product_details_page .product_page_video_text .video_text .text_box .text_author p:last-child,
.product_details_page .product_page_video_text .video_text .text_box .text_author p:nth-last-child(2) {
  font-family: gt_eesti_textbold
}

.product_details_page .product_page_video_text .video_text .text_box .text_author p:last-child {
  margin-bottom: 0
}

.product_details_page .product_page_video_text .mobile_view {
  display: none
}

.product_details_page .product_faq .page-faq {
  padding: 0
}

.product_details_page .product_faq .page-faq .product_faq_btn a.button {
  margin-top: 0
}

.product_details_page .yotpo .promoted-products-box {
  display: none !important
}

.product_details_page .get_yours_now {
  font-size: 16px;
  padding: 15px 20px;
  border: none
}

.product_details_page .price-item {
  color: #3F409A;
  font-family: gt_eesti_display;
  font-weight: 700 !important;
  font-size: 30px
}

.footer_block .content_box {
  width: 100%;
}

.footer_custom .site-footer__item {
  margin-bottom: 0;
}

.footer_custom .site-footer__item ul li {
  margin-bottom: 2px;
}

.footer_custom .site-footer__item ul li a {
  font-size: 16px;
  color: #3F409A;
  font-weight: normal;
}

.footer_custom .site-footer__item p.h4 {
  font-family: gt_eesti_display;
  font-weight: 700 !important;
  letter-spacing: -.01em;
  font-size: 24px;
  line-height: initial;
  color: #3F409A;
  text-transform: inherit;
  display: flex;
  justify-content: left;
}

.begin-contact .contact-form form input,
.begin-contact .contact-form form textarea,
.register-form form input:not("[type=checkbox]") {
  border: 2px solid #3F409A;
  border-radius: 100px;
  padding: 15px 15px;
  height: auto;
  max-width: 320px;
  width: 100%;
}

.begin-contact .contact-form form textarea {
  border-radius: 20px;
  min-width: 100%;
  min-height: 150px;
  max-height: 250px;
}

.begin-contact .contact-form form input::placeholder,
.begin-contact .contact-form form textarea::placeholder,
.begin-contact .contact-form form input,
.begin-contact .contact-form form textarea {
  font-weight: 300;
  opacity: 1;
  color: #3F409A;
}

.cart .product-details {
  margin-top: 0;
}

.cart .product-details .product-details__item {
  margin-top: -2px;
  font-size: 15px;
}

#__next {
  min-height: auto !important;
}

.mobile_view {
  display: none;
}

.product-single {
  margin-top: 30px;
}

@media only screen and (max-width:1199px) {
  .product_details_page .shopify-section .product-single__meta .product_tabs .tab button {
    margin-right: 5px }}

@media only screen and (max-width:1037px) {
  .product_rechare_app {
    float: right;
    margin-left: auto;
    margin-right: auto;
    clear: both;
  }
}

@media only screen and (max-width:1098px) {
  .product_rechare_app_tub {
    float: right;
    margin-left: auto;
    margin-right: auto;
    clear: both;
  }
}

@media only screen and (max-width:991px) {
  .template-blog .section-wrapper .section-header h1 {
    font-size: 50px
  }

  .template-blog .blog_bg .blog_container .blog-filter {
    margin-bottom: 20px
  }

  .template-blog .blog_bg .blog_container .blog-filter .select-group {
    text-align: center
  }

  .template-blog .blog_bg .blog_container .blog-filter .select-group a {
    display: inline-block;
    font-size: 20px;
    margin: 0 15px 15px
  }

  .template-blog .blog_bg .blog_container .forloop_1 .article__title {
    font-size: 30px;
    bottom: 50px;
    padding: 0
  }

  .template-blog .blog_bg .blog_container .forloop_1 .blog_btn {
    right: 15px;
    bottom: 40px
  }

  .article .section-wrapper .section-header h1 {
    margin-bottom: 15px
  }

  .article .section-wrapper .related_artical li:hover {
    filter: none
  }

  .product_details_page .product_description_main_div,
  .product_details_page .product_images {
    width: 100%
  }

  .product_details_page .product_description_main_div {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
  }

  .product_details_page .product_star.mobile_view {
    display: flex
  }

  .product_details_page .product-single {
    display: flex;
    flex-wrap: wrap;
  }

  .product_details_page .product-single.family_tub {
    margin-left: 0;
  }

  .product_details_page .product_description_main_div.main_div_1 {
    order: 1;
    margin-top: -20px
  }

  .product_details_page .product_images {
    order: 2;
    margin-bottom: -30px
  }

  .product-single__media-group .product-single__media-wrapper {
    max-width: 100% !important;
  }

  .product_details_page .product_description {
    order: 1;
    width: 100%;
  }

  .product_details_page .product_rechare_app {
    order: 3;
    width: 100%;
    margin-top: 60px;
  }

  .product_details_page .product_rechare_app.product_rechare_app_tub {}

  .product_details_page .product_description_main_div.main_div_2 {
    order: 3
  }

  .product_details_page .product_description_main_div.main_div_3 {
    order: 2;
    margin-bottom: -80px
  }

  .product_details_page .product_description_main_div .product_description_1 {
    order: 1
  }

  .product_details_page .product_description_main_div .product_description_2 {
    order: 3;
    margin-bottom: -40px
  }

  .product_details_page .product_description_main_div .product_rechare_app {
    order: 2;
    margin: 10px 0 10px
  }

  .product_details_page .shopify-section .product-single__meta .product-single__title {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 10px
  }

  .product_details_page .product_description_main_div.main_div_2 .product-single__description {
    display: block
  }

  .product_details_page .product_description_main_div.main_div_2 .product-single__description p {
    color: #3F409A;
    font-size: 18px;
    font-weight: 300;
    max-width: 530px;
    letter-spacing: .02em;
    line-height: 30px
  }

  .product_details_page .shopify-section#shopify-section-product-template,
  .product_details_page .shopify-section#shopify-section-product-template-two {
    padding: 50px 0 70px
  }

  .product_details_page .shopify-section#shopify-section-product-template-two {
    padding: 20px 0 70px;
  }

  .product_details_page .product_description_1 .product_star,
  .product_details_page .shopify-section .product-single__meta .product_tabs.desktop_view {
    display: none
  }

  .product_details_page .product_star {
    display: flex
  }

  .product_details_page .product_star {
    margin: 20px 0 30px
  }

  .product_details_page .product_page_video_text .video_boxs,
  .product_details_page .product_page_video_text .video_text,
  .product_details_page .product_page_video_text .video_text .text_box p {
    max-width: 100%
  }

  .product_details_page .product_page_video_text .video_boxs {
    margin-bottom: 20px
  }

  .product_details_page .product_page_video_text .video_boxs .video_box iframe {
    height: 500px
  }

  .product_details_page .product_page_video_text .mobile_view {
    display: flex
  }

  .product_details_page .product_page_video_text .desktop_view {
    display: none
  }

  .footer_custom .site-footer__item.site-footer__item-inner--newsletter {
    margin-bottom: 0;
  }

  .footer_custom .site-footer__item {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .footer_custom .site-footer__item.linklist {
    width: 50%;
    flex: 1 1 50%;
  }

  .footer_custom .site-footer__item.linklist .para-combine {
    width: 100%;
  }

  .product_details_page .shopify-section .product-single__meta .product_tabs.mobile_view,
  .mobile_view {
    display: block;
  }

  .product_details_page .product_rechare_app_tub .product_recharge_box {
    margin-bottom: 20px;
  }

  .product_details_page .product_rechare_app_tub .product_tabs {
    padding: 0 15px;
  }

  .product_details_page .family_tub .product_images {
    padding-left: 0;
  }

  .product_details_page .family_tub .product_description {
    margin-bottom: -30px;
  }
}

@media only screen and (max-width:768px) {
  .product_details_page .product_star .yotpo-review-stars {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 14px
  }

  .product_details_page .product_star .star_text span {
    margin-left: 0;
    font-size: 16px;
    margin-bottom: 20px
  }

  .product_details_page .product-single__meta .product_payment_option .payment_btn,
  .product_details_page .product_page_video_text .payment_btn {
    max-width: 270px
  }

  .product_details_page .product-single__meta .product_payment_option .payment_btn .payment_btn_box,
  .product_details_page .product_page_video_text .payment_btn .payment_btn_box {
    padding: 13px 10px
  }

  .product_details_page .product-single__meta .product_payment_option .payment_acceptable,
  .product_details_page .product_page_video_text .product_payment_option .payment_acceptable {
    max-width: calc(100% - 280px)
  }

  .product .product_details_page_box_2 {
    margin-left: 0;
    margin-right: 0
  }

  .product .product_details_page_box_2 .fiber_product_note,
  .product .product_details_page_box_2 .product_details_incredians {
    max-width: 100%;
    padding: 0
  }

  .product .product_details_page_box_2 .fiber_product_note {
    order: 2
  }

  .product .product_details_page_box_2 .fiber_product_note .product_note_box {
    flex-wrap: wrap;
    justify-content: center
  }

  .product .product_details_page_box_2 .fiber_product_note .product_note_box .note_box_image {
    width: 50%;
    text-align: center
  }

  .product .product_details_page_box_2 .fiber_product_note .product_note_box .note_box_content {
    width: 100%;
    margin-left: 0;
    text-align: left;
    margin-top: 10px }}

@media only screen and (max-width:749px) {
  .template-blog .blog_bg .blog_container .forloop_1 .article__title {
    bottom: 70px
  }

  .template-blog .blog_bg .blog_container .forloop_1 .blog_btn {
    bottom: 70px
  }

  .article .section-wrapper .section-header h1 {
    font-size: 40px
  }

  .footer_block .content_box {
    margin: 0;
    margin-bottom: -30px;
  }

  .footer_custom .site-footer__item.site-footer__item-inner--newsletter .para-combine {
    width: 100%;
  }

  a.header_account,
  a.site-header_try_free {
    display: none;
  }

  .product_recharge_app .available {
    padding: 0 15px 10px;
  }

  .product_recharge_app .available:last-child {
    padding: 0 15px;
  }

  .product_details_page .product_description,
  .product_details_page .product_rechare_app {
    padding-left: 0px;
  }

  .product_recharge_app .rc_block__type label {
    font-size: 16px;
  }

  .old_page .product_recharge_app .rc_block__type .rc_block__type__options .rc_label__delivery {
    margin-top: 13px;
  }
}

@media only screen and (max-width:575px) {
  .shopify-section.home_banner_sec .hero::before {
    background-size: 340px;
    top: -178px;
    left: 0;
    background-position: center left 1px
  }

  .template-blog .blog_bg .blog_container .forloop_1 .featured_tag {
    left: 15px;
    top: 10px;
    font-size: 16px
  }

  .template-blog .blog_bg .blog_container .forloop_1 .article__title {
    font-size: 20px;
    left: 15px;
    left: 15px;
    width: 100%;
    max-width: calc(100% - 30px)
  }

  .template-blog .blog_bg .blog_container li:first-child {
    margin-bottom: -30px
  }

  .template-blog .blog_bg .blog_container .blog-filter .select-group a {
    margin: 0 10px 15px
  }

  .template-blog .blog_bg .blog_container .forloop_1 .blog_btn {
    right: 15px;
    bottom: initial;
    z-index: 99;
    top: 15px;
    width: 60px;
    height: 60px;
    line-height: 13px;
    font-size: 12px;
    letter-spacing: 0
  }

  .product_details_page .shopify-section .product-single__meta {
    padding: 0 0
  }

  .product_details_page .product-single__meta .product_payment_option .payment_btn,
  .product_details_page .product_page_video_text .payment_btn {
    margin: 0 auto
  }

  .product_details_page .product-single__meta .product_payment_option .payment_acceptable,
  .product_details_page .product_page_video_text .product_payment_option .payment_acceptable {
    max-width: 100%;
    margin: 30px 0 0;
    width: 100%;
    text-align: center
  }

  .product_details_page .product-single__meta .product_payment_option .payment_acceptable .payment_box,
  .product_details_page .product_page_video_text .product_payment_option .payment_acceptable .payment_box {
    max-width: 300px;
    margin: 0 auto
  }

  .product_details_page .product_page_video_text .mobile_view {
    margin-top: 0
  }

  .product_recharge_app .rc_block__type label {
    max-width: calc(100% - 120px);
    display: inline-block !important;
    width: 100%;
    line-height: 25px !important;
  }

  .product_recharge_app .rc_block__type label.rc_label__autodeliver {
    margin-bottom: 13px;
  }

  .product_recharge_app .rc_block__type label .rc_price {
    position: absolute;
    right: 0;
    left: initial;
    text-align: right;
    top: 1px;
  }

  .old_page .product_recharge_app .rc_block__type .rc_block__type__options .rc_label__delivery {
    max-width: calc(100% + 60px);
    width: calc(100% + 60px);
  }
}

@media only screen and (max-width:418px) {
  .product_recharge_app .rc_block__type label {
    max-width: calc(100% - 100px);
  }
}

.article .section-wrapper .blog_content ul li span {
  font-weight: 300;
  color: #3F409A;
  font-size: 18px;
}

.white-text {
  color: #ffffff;
}

.custom_nav span {
  color: #fff;
}

.page-width,
.product .only-product-page-width,
.product .more-faq .container {
  max-width: 1230px;
  margin: 0 auto
}

.page-width::after {
  content: '';
  display: table;
  clear: both
}

.page-width,
.product .only-product-page-width,
.product .more-faq .container {
  padding-left: 40px;
  padding-right: 40px
}

@media only screen and (max-width:749px) {

  .page-width,
  .product .only-product-page-width,
  .product .more-faq .container {
    padding-left: 15px;
    padding-right: 15px }}

@media only screen and (min-width: 799px) and (max-width: 1024px) {
  .page-width {
    padding-left: 0px;
  }
}

.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center
}

@media only screen and (max-width:749px) {
  .feature-row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column }}

.feature-row__item {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%
}

@media only screen and (max-width:749px) {
  .feature-row__item {
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%
  }
}

.feature-row__image-wrapper {
  margin: 0 auto 19.44444px;
  position: relative;
  width: 100%
}

.feature-row__image {
  display: block;
  margin: 0 auto
}

.feature-row__image-wrapper .feature-row__image {
  width: 100%;
  position: absolute;
  top: 0
}

@media only screen and (max-width:749px) {
  .feature-row__image {
    order: 1 }}

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px
}

@media only screen and (max-width:749px) {
  .feature-row__text {
    order: 2;
    padding-bottom: 0 }}

@media only screen and (min-width:750px) {
  .feature-row__text--left {
    padding-left: 35px
  }

  .feature-row__text--right {
    padding-right: 35px }}

@media only screen and (min-width:750px) {
  .featured-row__subtext {
    font-size: calc(((var(--font-size-base) + 2)/ (var(--font-size-base))) * 1em) }}

.feature-row .image-element__wrap {
  position: relative;
  width: 100%;
}

.header__logo.logo--image {}

.main-nav .nav.nav--combined {}

.main-nav .search-container {
  text-align: right;
}

.mega-section {
  padding-left: 15px;
  padding-right: 15px;
}

.mega-section .banner {
  background: transparent;
}

.mega-section .banner .image-element__wrap {
  border-radius: 24px;
}

.mega-section .caption-content {
  width: 100%;
  max-width: 100%;
}

.mega-section h1.headline {
  justify-content: center;
  align-content: center;
  margin-bottom: 0;
  position: relative;
  width: fit-content;
}

.mega-section .caption .subtitle {
  margin-top: 10px;
}

.mega-section h1.headline span {
  background-color: #fcd366;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.mega-section h1.headline img {
  display: inline-block;
  object-fit: scale-down;
  width: 80px;
  margin-left: 10px;
}

.mega-section .global-button--banner {
  font-size: 13px;
  font-family: gt_eesti_textbold;
  padding: 15px 45px;
  border-radius: 50px;
  letter-spacing: .12em;
  transition: all .7s ease;
  border: none;
  background: #e8442e;
  color: #fff !important;
}

.mega-section .button-grid-container {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: fit-content;
}

.mega-section .subtitle p {
}

@media only screen and (min-width: 1025px) {
  .mega-section h1.headline {
    font-size: 95px;
  }
}

.index .main-nav__wrapper {
  position: relative;
}

.product_name {
  font-size: 24px;
}

@media only screen and (min-width: 390px) {
  .product_name {
    font-size: 26px;
  }
}

@media only screen and (min-width: 450px) {
  .product_name {
    font-size: 32px;
  }
}

@media only screen and (min-width: 600px) {
  .product_name {
    font-size: 48px;
  }
}

@media only screen and (min-width: 980px) {
  .product_name {
    font-size: 62px;
  }
}

.cart-container .cart_count,
.cart-container svg {
  stroke: #3F409A;
  color: #2e2f7d !important;
  transition: all 0.2s ease-in-out;
}

.cart-container .cart_content {
  color: #fff !important;
}

.cart-container.active_link svg {}

.cart-container.active_link .mini_cart span {}

.main_points ul {
  list-style: none;
  padding-left: 0;
}

img.self-align-left {
  margin-left: 0;
}

.footer-menu-wrap .one-fourth {
  width: 100%;
}

.imp-links ul {
  list-style-type: none;
}

.contact_email {
  box-sizing: border-box;
  border-radius: 2px;
  padding: 0px 0px 0px 16px;
  height: 38px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0px;
  background: 0 0 !important;
  border: 0 !important;
  border-bottom: 2px solid #2e2f7d !important;
  color: #2e2f7d !important;
  font-size: 18px !important;
  line-height: 21px;
  font-family: gt_eesti_display !important;
  margin-bottom: 30px;
}

.shopify-section.shopify-section--product-template.is-product-main {
  background-color: #b3ddf633;
  border-radius: 24px;
  padding: 30px 0 30px;
}

@media only screen and (max-width: 799px) {
  .shopify-section.shopify-section--product-template.is-product-main {
    padding-bottom: 0px;
    padding-top: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .shopify-section.shopify-section--product-template.is-product-main {
    background-color: #b3ddf633;
    border-radius: 24px;
    padding: 65px 0 30px;
  }
}

.product .product_gallery img {
  background-color: transparent;
}

.note_box_content h4 {
  font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}

.note_box_content p {
  line-height: inherit;
}

.header.header-fixed--false {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.main-nav__wrapper {
  flex-grow: 1;
}

.main-nav__wrapper,
.top-bar {
  width: fit-content;
  display: inline-block;
}

#shopify-section-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  padding-bottom: 5px;
}

@media only screen and (min-width: 799px) {
  #shopify-section-header {
    padding-bottom: 0;
  }
}

header.feature_image .search__form input,
header.feature_image .header .top-bar .menu a span.account {
  font-size: 19px;
  text-transform: capitalize;
}

header.feature_image .search__form input {
  margin-bottom: 0;
}

.cart-container .mini_cart {
  padding-right: 0;
  padding-left: 0;
}

.footer_menu .toggle_content a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  color: #3F409A;
}

.footer_menu a:hover {
  border-bottom-color: #3F409A;
}

.footer_menu p {
  white-space: nowrap;
  margin-bottom: 10px;
}

.chevron-drawer {
  transform: rotate(-90deg);
}

.top_link.active .chevron-drawer {
  transform: rotate(0);
}

a.site-header_try_free {
  color: white;
}

.footer-menu-wrap .one-fourth.column.medium-down--one-whole:last-of-type {
  position: relative;
  padding-bottom: 40px;
  padding-bottom: 0px;
}

.footer-menu-wrap .one-fourth.column.medium-down--one-whole:last-of-type::after {
  display: none !important;
  content: ' ';
  background-image: url('/cdn/shop/files/beginhealthpenguintransparent_1400x.png?v=1645338647');
  background-repeat: no-repeat;
  height: 66px;
  width: 140px;
  background-size: contain;
  position: absolute;
  bottom: -40px;
  left: 0;
}

@media only screen and (max-width: 798px) {
  .footer-menu-wrap .one-fourth.column.medium-down--one-whole:last-of-type {
    padding-bottom: 70px;
    padding-bottom: 20px;
  }

  .footer-menu-wrap .one-fourth.column.medium-down--one-whole:last-of-type::after {
    bottom: 0;
  }
}

.flex {
  display: flex;
}

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

.site-header-cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -3px;
  top: -3px;
  font-weight: 700;
  background: #e8442e;
  border: 2px solid #f0f8fd;
  color: #fff;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
}

.site-header-cart-count span {
  font-family: 'GT Eesti Display';
  font-weight: 900;
  font-size: 10px !important;
  line-height: 1;
  color: #fff !important;
  padding-left: 0;
  padding-right: 0;
}

.account-icon a {
  line-height: 0;
}

.account-icon svg {
  height: 36px;
  transition: fill 0.2s ease-in-out;
}

.account-icon:hover svg,
search-submit:hover svg {
  stroke: #e8442d !important;
}

.cstm-featured-row .feature-row__image-wrapper {
  margin-bottom: 0;
}

.page-faq .faq--heading.title {
  font-size: 48px;
  font-family: gt_eesti_display;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.page-faq .page-link p {
  font-size: 22px;
  font-weight: 300;
}

.product .page-faq .faq--heading.title {
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-faq .container.main.content {
  padding: 0;
}

.one-whole.column.faq.faq__column-1 .faqAccordion {
  margin-top: 0;
  margin-bottom: 0;
}

.faqAccordion .faq-question {
  font-size: 22px;
  font-weight: 300;
}

.faqAccordion .faq-question[aria-expanded=true] {
  font-weight: 700;
}

.faqAccordion .faq-answer {
  font-size: 20px;
}

.faq.faq__column-1 {
  width: 100%;
}

.shopify-section.shopify-section--faq.FAQ {
  margin-bottom: 20px;
}

.article .one-whole.column {
  width: 100%;
}

.more-faq .one-whole.column {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

[data-smartrr-form-id] .smartrr-purchase-options {
  max-width: 500px;
}

.blog-template-wrapper .column {
  width: 30%;
}

.article .blog_content p {
  font-weight: 300;
  color: #3F409A;
  font-size: 22px;
  margin-bottom: 25px;
}

.article .blog_content a,
.article .summary_content a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.article .blog_content a span,
.article .summary_content a span {
  color: #e8442e;
  font-weight: 400;
}

.section.learn-page {
  border-radius: 24px 24px 24px 24px;
  background-color: #eff8fc;
  padding: 0 3%;
  width: 98%;
  margin-top: 5px;
}

.blog-title {
  font-size: 120px;
}

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

#shopify-section-template--15232398524614__main .section-wrapper {
  background-color: #fbefeb;
}

.cart_content .js-empty-cart__message a.continue-shopping {
  width: 80%;
  margin: 0 auto 20px;
}

.cart_content .js-empty-cart__message a.continue-shopping .cart--continue-message {
  color: #fff !important;
}

.product .only-product-page-width .one-whole.column {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (max-width: 798px) {
  .imp-links ul {
    justify-content: center;
    padding: 0;
  }

  header.search-enabled--true {
    display: none !important;
  }

  #header .top-bar {
    width: 100%;
    padding-left: 5px;
    padding-right: 10px;
    padding-top: 8px;
  }

  #mobile_menu li a {
    font-size: 18px;
    color: #3F409A;
  }

  #mobile_menu li a .right.icon-down-arrow {
    display: none;
  }

  .mega-section h1.headline img {
    width: 40px;
    margin-left: 0px;
    top: 4px;
    position: relative;
  }

  .mega-section h1.headline span {
    display: inline-block;
  }

  .blog-title {
    font-size: 72px;
  }

  .section.learn-page .container {
    flex-direction: column;
  }

  .section.learn-page .container .article {
    width: 95%;
  }
}

@media only screen and (max-width: 450px) {
  .blog-title {
    font-size: 48px;
  }
}

@media only screen and (min-width: 799px) {
  .mega-section h1.headline {
    display: flex;
  }
}

@media only screen and (max-width: 1023px) {
  .search-container {
    display: none !important;
  }
}

@media only screen and (min-width: 799px) and (max-width: 1199px) {
  footer p.para-imp1 {
    width: 80%;
  }
}

@media only screen and (max-width: 1024px) {
  .mega-section .position-center.caption.js-caption {
    top: 18%;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.title-container {
  width: fit-content;
}

.title-container .one-half.column {
  width: fit-content;
}

.product-block--description p {
  color: #3F409A;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 30px;
  margin-bottom: 0;
}

.product-single__description li p {
  line-height: 28px;
}

.search-submit-mobile {
  height: 27px;
  margin-right: 8px;
}

.inline-block {
  display: inline-block;
}

.uppercase {
  text-transform: uppercase;
}

.register-form form {
  max-width: 800px;
}

.register-form .input-field {
  border-radius: 30px;
  padding-left: 15px;
  font-family: 'GT Eesti Display', Asap, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0px;
  color: #3F409A;
  background-color: transparent;
  padding-right: 35px;
  border: 2px solid #2E2F7D !important;
  margin-bottom: 20px;
  transition: all 200ms ease-in-out;
  max-width: 800px;
}

.register-form .action_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
}

.register-form::focus ::placeholder,
.register-form::focus ::placeholder {
  color: #e8442d;
}

#customer_login .login-button {
  margin-bottom: 5px !important;
  padding: 13px 40px;
  margin-top: 5px;
}

.register-form input::placeholder {
  color: #3F409A;
}

.register-form input::-webkit-input-placeholder {
  color: #3F409A;
}

.register-form input:-moz-placeholder {
  color: #3F409A;
}

.register-form input::-moz-placeholder {
  color: #3F409A;
}

p.or {
  float: left;
  margin-bottom: 25px;
  margin-top: 50px;
  width: 100%;
}

p.or,
p.or span {
  position: relative;
}

p.or span {
  background: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto;
  padding: 0 10px;
}

.or:before {
  border: 1px solid #3F409A;
  content: "";
  left: 0;
  position: absolute;
  top: 19px;
  width: 100%;
  z-index: 0;
}

.cre-account-button {
  color: #fff !important;
  padding: 13px 40px;
  margin-top: 1.5rem;
  min-width: 200px;
  font-size: 16px;
}

.cancel-button {
  color: #fff !important;
  padding: 13px 40px;
  min-width: 200px;
}

.register-form form .global-button {
  font-size: 16px !important;
  padding: 13px 40px !important;
}

@media only screen and (min-width: 799px) {
  .is-mobile {
    display: none !important;
  }
}

@media only screen and (max-width: 798px) {
  .product_name.is-mobile {
    text-align: left;
    margin-bottom: 0;
    padding-left: 18px;
    padding-top: 20px;
  }

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

  .product-block--description.is-mobile {
    padding-left: 18px;
    padding-right: 20px;
    margin-bottom: 40px;
    display: none;
  }

  .register-form .feature_divider {
    display: none;
  }

  .register-form .font-28 {
    margin-bottom: 0;
  }

  .register-form.container h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .register-form .action_button {
    display: block;
  }

  #customer_login .login-button,
  .register-form .action_button {
    margin-bottom: 15px !important;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .register-form .action_button {
    display: block;
    text-align: center;
  }

  .register-form .action_button
}

.text-hand {
  color: yellow;
}

.purchase-details .action-container {
  justify-items: center;
  width: 100%;
  flex-direction: column;
}

.payment_acceptable {
  max-width: 100%;
  margin-top: 15px;
  text-align: center;
}

.payment_box {
  width: 80%;
  display: inline-block;
}

@media only screen and (max-width: 481px) {
  .purchase-details>.flex {
    gap: 2px;
  }

  .product-quantity-box.purchase-details__quantity input.quantity {
    min-height: 38px;
    padding-left: 0;
    padding-right: 0;
    width: 20px;
  }

  .product-quantity-box .product-minus>svg,
  .product-quantity-box .product-plus>svg {
    width: 12px;
    height: 12px;
  }

  button.add_to_cart {
    min-width: 180px;
    padding-top: 14px;
    padding-bottom: 11px;
  }

  .product-quantity-box .product-minus,
  .product-quantity-box .product-plus {
    height: 44px;
  }
}

@media only screen and (min-width: 799px) {}

@media only screen and (min-width: 1024px) {}

.product-block--price,
.rows.fiber_product {
  display: none;
}

.product-block--price.product-price-show {
  display: flex;
}

.product-block--price.product-price-show .price-ui {
  display: flex !important;
}

.product-block--price .payment-terms-container {
  display: none;
}

@media only screen and (min-width: 750px) and (max-width: 800px) {
  .badges-features1 a.anchor.ctsm-fiber-anchor {
    font-size: 18px;
  }

  .badges-features1 a.anchor.ctsm-fiber-anchor i.fa {
    padding: 6px 6px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 425px) {
  .badges-features1 a.anchor.ctsm-fiber-anchor {
    font-size: 16px;
  }

  .badges-features1 a.anchor.ctsm-fiber-anchor i.fa {
    padding: 6px 6px;
    font-size: 16px;
  }

  .bridge-main3 a.button {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 15px;
  }

  .bridge-main3 a.button .btn_star.star_left,
  .bridge-main3 a.button .btn_star.star_right {
    margin-right: 3px;
    margin-left: 3px;
  }

  .bridge-main3 a.button .btn_star.star_left svg,
  .bridge-main3 a.button .btn_star.star_right svg {
    width: 16px;
  }

  .page-faq .faq--heading.title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 344px) {
  .badges-features1 a.anchor.ctsm-fiber-anchor {
    font-size: 16px;
  }

  .badges-features1 a.anchor.ctsm-fiber-anchor i.fa {
    padding: 5px 5px;
    font-size: 14px;
  }

  .bridge-main3 a.button {
    font-size: 15px;
  }

  .bridge-main3 a.button .btn_star.star_left,
  .bridge-main3 a.button .btn_star.star_right {
    margin-right: 0;
    margin-left: 0;
  }
}

.product .page-faq .title {
  margin-bottom: 0;
}

.faqAccordion .faq-question {
  padding-right: 0;
}

.inline {
  display: inline !important;
}

@media only screen and (max-width: 991px) {
  section.bridge-main2 .row-biome .column-biome {
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .column-biome .card-body {
    margin-bottom: 0;
  }
}

.mega-section .position-center.caption.js-caption {
  top: 29%;
}

.caption .headline {
  font-size: 72px;
}

.mega-section .button-grid-container {
  bottom: -46%;
}

@media only screen and (min-width: 375px) {
  .mega-section .position-center.caption.js-caption {
    top: 29%;
  }

  .caption .headline {
    font-size: 76px;
    padding: 0 10%;
  }

  .mega-section .button-grid-container {
    bottom: -46%;
  }
}

@media only screen and (min-width: 600px) {
  .mega-section .position-center.caption.js-caption {
    top: 29%;
  }

  .caption .headline {
    font-size: 76px;
    padding: 0;
  }

  .mega-section .button-grid-container {
    bottom: -66%;
  }
}

@media only screen and (min-width: 650px) {
  .mega-section .button-grid-container {
    bottom: -93%;
  }
}

@media only screen and (min-width: 700px) {
  .mega-section .button-grid-container {
    bottom: -115%;
  }
}

@media only screen and (min-width: 799px) {
  .mega-section .position-center.caption.js-caption {
    top: 18%;
  }
}

.padding-left-18 {
  padding-left: 18px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.orange {
  color: #e8442e;
}

.product .shopify-section-wrapper.section {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

div[data-oke-reviews-widget-holder] {
  padding-top: 20px;
}

a.cart__continue-shopping.global-button.global-button--text {
  color: white;
  max-width: 240px;
}

#create-customer form input[type=submit],
.begin-contact .contact-form form input[type=submit],
.register-form form input[type=submit] {
  min-width: 200px;
  border-color: #e8442d;
  color: #fff !important;
  font-size: 13px;
  height: fit-content;
  font-size: 13px;
  font-family: gt_eesti_textbold;
  padding: 10px 45px;
  border-radius: 50px;
  letter-spacing: .12em;
}

.begin-contact .contact-form form input[type=submit]:hover {
  border-color: #3F409A;
}

.shopify-section--contact-section {
  padding-right: 20px !important;
}

.product-text {
  font-size: 16px;
}

@media only screen and (min-width: 799px) {
  .product-text {
    font-size: 18px;
  }
}

.register-form {
  flex-direction: row;
  justify-content: center;
  row-gap: 50px;
}

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

.round-img img {
  border-radius: 24px;
}

.search .payment_acceptable,
.search .price-ui.price-ui--loading,
.collection .payment_acceptable,
.collection .price-ui.price-ui--loading {
  display: none;
}

.search .purchase-details .action-container,
.collection .purchase-details .action-container {
  justify-content: center;
}

.search .smart-payment-button--false .purchase-details,
.collection .smart-payment-button--false .purchase-details {
  max-width: 100%;
}

@media only screen and (max-width: 798px) {

  .search .mobile-column,
  .collection .mobile-column {
    flex-direction: column;
  }

  .search .mobile-column .product__details,
  .collection .mobile-column .product__details {
    width: 100%;
  }

  .search .product_image img,
  .collection .product_image img {
    height: auto;
  }
}

@media only screen and (min-width: 799px) {

  .search .product_image img,
  .collection .product_image img {
    height: 28vw;
    max-height: 400px;
  }
}

.template-banner-img img[data-sizes=auto].lazyloaded,
.page-contact img[data-sizes=auto].lazyloaded {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: contain;
  height: 100%;
  object-fit: fill;
}

.page-faq .caption.position-center,
.page-contact .caption.position-center {
  position: relative;
  top: 0;
  transform: none;
}

@media only screen and (max-width: 798px) {

  .page-faq .headline,
  .page-contact .headline {
    font-size: 10vw !important;
    line-height: 10vw !important;
  }
}

.page-faq .caption .subtitle p:first-child {
  line-height: 1.4em;
}

.page-faq .caption-content .subtitle p:nth-child(2) {
  line-height: normal;
  margin-bottom: 0;
}

.page-faq .caption-content {
  margin: 12px 0;
}

.product-text {
  display: none !important;
}

.cart_content {
  display: none !important;
  pointer-events: none;
}

.collection .purchase-details {
  display: inline;
}

.gg-button.normal.primary {
  background-color: #D54D4D;
}

.description {
}

.shopify-policy__body p {
  margin-bottom: 12px;
  word-spacing: -3px;
}

.shopify-policy__body strong {
  word-spacing: 0;
}

.privacy-policy strong {
  word-spacing: 1px;
  margin-top: 10px;
}

.privacy-policy p>strong {
  font-size: 18px;
  letter-spacing: 0.3px;
}

.ds-auth-lightbox .ds-auth-dialog button:before {
  content: none;
  display: none;
}

.retextion-login-section .content-section h2 {
  font-size: 80px;
  text-align: center;
  color: #3F409A;
}

.rtx-login-email-input-form-item {
  display: block;
}

.rtx-login-email-input-form-item .form-input-container .input-label {
  color: #3F409A;
  font-size: 16px;
}

.rtx-login-email-input-form-input {
  border: none !important;
  border-bottom: 3px solid #2E2F7D !important;
  border-radius: unset;
  color: #3F409A;
}

.ant-btn.ant-btn-block.button-container.fill {
  font-size: 16px !important;
  padding: 13px 40px !important;
  height: auto !important;
  line-height: 19.2px;
  border-radius: 50px !important;
}

#basic_contact {
  border: 1px solid #2e2f7d !important;
  font-family: 'GT Eesti Display', Asap, sans-serif;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 19px;
  color: #3F409A;
  padding-left: 15px;
}

#basic_contact::placeholder {
  color: #3F409A;
  opacity: 1;
}

#basic_contact:-ms-input-placeholder {
  color: #3F409A;
}

#basic_contact::-ms-input-placeholder {
  color: #3F409A;
}

@media only screen and (max-width: 798px) {
  #root .main .non-header {
    padding-left: 0 !important;
  }

  #root .retextion-login-section .content-section {
    padding: 0 !important;
  }

  .retextion-login-section .content-section h2 {
    font-size: 50px !important;
  }
}

.rebuy-product-actions .rebuy-button {
  border-radius: 100px !important;
  font-size: 14px;
}

.rebuy-cart__checkout-button,
.rebuy-cart__continue-shopping-button,
.rebuy-cart__flyout-empty-cart p a,
.rebuy-cart__flyout-item-quantity-widget,
.rebuy-cart__flyout-item-quantity-widget-button {
  border-radius: 100px !important;
}

.rebuy-cart__flyout-item-quantity-widget,
.rebuy-cart__flyout-item-quantity-widget-label {
  border-color: #2e2f7d !important;
}

.dynamic-checkout__content ul li div,
.dynamic-checkout__content ul li iframe {
  border-radius: 100px !important;
}

.blog-desc .blog_content a,
.blog-desc .summary_content a {
  color: #3F409A;
  text-decoration: none;
  border: none;
}

.blog-desc .blog_content table {
  width: 100%;
}

.blog-desc .blog_content table tbody>tr:nth-child(odd)>td,
.blog-desc .blog_content table tbody>tr:nth-child(odd)>th {
  background-color: #fff;
}

.blog-desc .blog-widget-alert-container {
  background-color: #fff;
  padding: 15px;
  border-left: 10px solid #ffd650;
}

.blog-desc .blog-widget-alert-title {
  font-size: 21px;
  font-weight: 600;
  width: 100%;
  display: block;
  line-height: 1.5;
}

.blog-desc .blog-widget-alert-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.blog-desc .widget-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-desc .widget-wrapper .section-left {
  width: 50%;
  text-align: center;
}

.blog-desc .widget-wrapper .section-left img {
  border-radius: 80px;
  vertical-align: middle;
}

.blog-desc .widget-wrapper .section-right {
  width: 50%;
}

.blog-desc .widget-wrapper .section-large {
  width: 71%;
}

.blog-desc .widget-wrapper .section-small {
  width: 27%;
  margin-left: 30px;
}

.custom.article__title {
  font-size: 30px;
}

.article .container .column,
.container .columns {
  margin-left: 0;
  margin-right: 0;
}

@media only screen and (max-width: 798px) {
  .blog-desc .widget-wrapper {
    display: block;
  }

  .blog-desc .widget-wrapper .section-large,
  .blog-desc .widget-wrapper .section-small,
  .blog-desc .widget-wrapper .section-left,
  .blog-desc .widget-wrapper .section-right {
    width: 100%;
  }

  .blog-desc .widget-wrapper .section-small {
    margin-left: 0px;
  }
}

.rtx-login-container .login-form-footer:last-child p {
  text-align: center;
}

#root .retextion-login-section div.rtx-login-container {
  width: 320px;
}

input.ant-input.rtx-login-code-input-form-input.form-input {
  margin: 0;
}

div.ant-row.ant-form-item.rtx-login-code-input-form-item {
  align-items: center;
}

@media only screen and (min-width: 799px) {
  .rtx-login-container .login-form-footer:last-child p {
    white-space: nowrap;
  }
}

#shopify-section-template--15438814871750__aeb4f37f-a6b1-449f-a4dc-8dbfcfd8cca0 .subcription-section {
  margin-bottom: 20px;
}

.menu__cta {
  position: fixed;
  bottom: 0;
  background: transparent;
  display: block;
  width: 100%;
  padding: 24px;
  text-align: center;
}

.menu__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  padding: 13px 20px;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  font-style: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0px;
  word-break: break-word;
  cursor: pointer;
  transition: all 0.2s linear;
  border-color: var(--button-color-border, #e8442d);
  background: var(--button-color-background, #e8442d);
  color: var(--button-color-text, #ffffff);
  width: 100%;
  border-radius: 100px;
  margin-bottom: 12px;
}

.menu__cta .caption-1 {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
  color: #3F409A;
  margin: 0;
}

.product-holiday-gift-box .description {
  margin-top: 25px;
}

.product-holiday-gift-box .description .is-hidden-mobile-only {
  display: block !important;
}

.shopify-section--featured-product .section {
  padding: 0 20px;
}

.shopify-section--featured-product .product-main {
  background: #f0f8fd;
  border-radius: 25px;
}

.shopify-section--featured-product .product-text {
  display: block !important;
  max-width: 530px;
}

#retextion-root .retextion-login-section .secured-div {
  display: none !important;
}

.product_gallery .flickity-prev-next-button,
.product_gallery_nav .flickity-prev-next-button {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  opacity: unset;
}

.header__logo img {
  width: 105px;
  height: 59px;
}

.product_row img {
  width: 219px;
  height: 219px;
}


.product_gallery .flickity-prev-next-button svg,
.product_gallery_nav .flickity-prev-next-button svg {
  /*   top: unset; */
  /*   padding: 10px 0px; */
  /*   position: unset; */
  /*   width: 100%; */
  height: 100%;
  /*   transform: none; */
}

.product_gallery .flickity-prev-next-button .arrow,
.product_gallery_nav .flickity-prev-next-button .arrow {
  fill: #000;
}

.product_gallery .flickity-prev-next-button {
  display: none !important;
}

.product_gallery.transparentBackground--false .flickity-prev-next-button {
  background: #fff;
}

.product-launch-kit .product-block--description {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .product_gallery .flickity-prev-next-button {
    display: block !important;
  }

  .product_gallery .flickity-prev-next-button,
  .product_gallery_nav .flickity-prev-next-button {
    top: 40%;
    width: 50px;
    height: 50px;
    transform: translateY(-40%);
  }

  .product_gallery .flickity-prev-next-button svg,
  .product_gallery_nav .flickity-prev-next-button svg {
    padding: 5px;
    width: 25px;
    height: 25px;
  }

  .product_gallery_nav {
    display: none !important;
  }

  /*   .product_gallery_nav .flickity-button.previous svg{
    padding-right: 10px;
  }
  .product_gallery_nav .flickity-button.next svg{
    padding-left: 10px;
  } */
}

.page-orders-shipping .faqAccordion span {
  font-size: 22px;
  margin: 15px 0 0;
  display: inline-block;
}

.page-orders-shipping .faqAccordion span p {
  margin: 0;
}

.page-orders-shipping .faqAccordion p {
  margin-bottom: 5px;
}

.page-orders-shipping .page .column {
  width: 100%;
}

.page-orders-shipping .page h1 {
  font-size: 48px;
  line-height: 57.6px;
}

.page-orders-shipping .title.faq--heading {
  font-size: 30px;
  margin-top: 15px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1024px) {
  .page-orders-shipping .page .column {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .page-orders-shipping .page h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .page-orders-shipping div.content {
    padding-bottom: 0;
  }
}

.page-accessibility .container {
  max-width: calc(62.5% - 20px);
}

.page-accessibility .column {
  width: 100%;
}

/* Home page custom image with text */
.home-page--custom-image-with-text {
  padding: 2px 20px 20px 20px;

}

.home-page--custom-image-with-text .custom-image-with-text-media img {
  object-position: 0 -15px;
  width: 100%;
}

.home-page--custom-image-with-text .custom-image-with-text-media img,
.home-page--custom-image-with-text .custom-image-with-text-content .devider img {
  max-width: 100%;
  vertical-align: middle;
  border-radius: 24px;
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text .custom-image-with-text-media .desktop-img {
    display: none;
  }
}

@media (min-width: 750px) {
  .home-page--custom-image-with-text .custom-image-with-text-media .mobile-img {
    display: none;
  }

  .home-page--custom-image-with-text .custom-image-with-text-media img {
    object-position: 0 0;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-inner {
  position: relative;
}

@media (max-width: 575px) {
  .home-page--custom-image-with-text .custom-image-with-text-inner {
    padding-bottom: 100px;
    background-color: #F0F9FD;
    border-radius: 24px;
  }

  .home-page--custom-image-with-text.mobile-home-main-hero .custom-image-with-text-inner {
    padding-bottom: 0;;
  }

  .home-page--custom-image-with-text {
    padding: 2px 10px 20px 10px;
  }
}

@media (max-width: 450px) {
  .home-page--custom-image-with-text .custom-image-with-text-inner {
    padding-bottom: 0px;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content {
  position: absolute;
  width: 35%;
  top: 80px;
  right: 100px;
}

@media (max-width: 1899px) {
  .home-page--custom-image-with-text .custom-image-with-text-content {
    top: 50px;
    right: 80px;
  }
}

@media (max-width: 1699px) {
  .home-page--custom-image-with-text .custom-image-with-text-content {
    top: 80px;
    right: 80px;
  }
}

@media (max-width: 1499px) {
  .home-page--custom-image-with-text .custom-image-with-text-content {
    top: 50px;
    right: 70px;
  }
}

@media (max-width: 1399px) {
  .home-page--custom-image-with-text .custom-image-with-text-content {
    top: 50px;
    right: 50px;
  }
}

@media (max-width: 1299px) {
  .home-page--custom-image-with-text .custom-image-with-text-content {
    width: 35%;
    top: 50px;
    right: 50px;
  }
}

@media (max-width: 1199px) {
  .home-page--custom-image-with-text .custom-image-with-text-content {
    width: 35%;
    top: 40px;
    right: 40px;
  }
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content {
    width: 40%;
    top: 10px;
    right: 40px;
  }
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text .custom-image-with-text-content {
    top: auto;
    bottom: 35px;
    left: 0;
    right: 0;
    padding: 0px 40px;
    width: 100%;
  }

  .home-page--custom-image-with-text.mobile-home-main-hero .custom-image-with-text-content {
    bottom: 15px;
    padding: 0 5px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content .heading {
  font-size: 95px;
  line-height: 110px;
  color: #3F409A;
  margin: 0;
  position: relative;
}

/* @media (max-width: 1599px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading {
    font-size: 90px;
    line-height: 90px;
  }
}
@media (max-width: 1499px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading {
    font-size: 70px;
    line-height: 70px;
  }
} */
@media (max-width: 1399px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading {
    font-size: 80px;
    line-height: 90px;
  }
}

@media (max-width: 1299px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 1199px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading {
    font-size: 75px;
    line-height: 75px;
  }
}

@media (max-width: 480px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading {
    /* font-size: 65px;
      line-height: 55px;
      padding-bottom: 50px; */
    font-size: 65px;
    line-height: 72px;
    padding-bottom: 35px;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
  content: "";
  position: absolute;
  background-image: url(//www.beginhealth.com/cdn/shop/t/66/assets/poop.png?v=175525477132517205991703708150);
  width: 150px;
  height: 150px;
  bottom: 13px;
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: 5px 0;
}

@media (max-width: 1799px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    width: 120px;
    height: 120px;
    background-size: 120px;
  }
}

@media (max-width: 1699px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    width: 130px;
    height: 130px;
    background-size: 130px;
  }
}

@media (max-width: 1599px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    width: 110px;
    height: 110px;
    background-size: 110px;
  }
}

@media (max-width: 1499px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    width: 100px;
    height: 100px;
    background-size: 100px;
    bottom: 16px;
  }
}

@media (max-width: 1299px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    width: 80px;
    height: 80px;
    background-size: 80px;
    bottom: 8px;
  }
}

@media (max-width: 1199px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    width: 80px;
    height: 80px;
    background-size: 80px;
    bottom: 2px;
  }
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    background-size: 60px;
    width: 60px;
    height: 60px;
    bottom: 6px;
  }
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    background-size: 90px;
    width: 90px;
    height: 90px;
    bottom: 6px;
  }
}

@media (max-width: 480px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .heading:after {
    background-size: 85px;
    width: 85px;
    height: 80px;
    bottom: 47px;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content .devider {
  margin-top: -10px;
}

@media (max-width: 1199px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider {
    margin-top: 0px;
  }
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider {
    margin-top: -10px;
  }
}

@media (max-width: 480px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider {
    margin-top: 0;
    position: relative;
    margin-top: 0px;
    top: -40px;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content .devider img {
  width: 270px;
}

/* @media (max-width: 1499px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider img {
      width: 190px;
  }
} */
@media (max-width: 1399px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider img {
    width: 230px;
  }
}

@media (max-width: 1299px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider img {
    width: 145px;
  }
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider img {
    width: 110px;
  }
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider img {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .devider img {
    width: 145px;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 40px;
  color: #3F409A;
  margin-top: 10px;
}

@media (max-width: 1799px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 1699px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 30px;
    line-height: 35px;
  }
}

@media (max-width: 1599px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 29px;
    line-height: 35px;
  }
}

@media (max-width: 1499px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 27px;
    line-height: 30px;
  }
}

@media (max-width: 1399px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 25px;
    line-height: 30px;
  }
}

@media (max-width: 1299px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 23px;
    line-height: 24px;
  }
}

@media (max-width: 1199px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 19px;
    line-height: 24px;
  }
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .sub-heading {
    font-size: 20px;
    line-height: 24px;
    margin-top: 0;
  }

  .home-page--custom-image-with-text.mobile-home-main-hero .custom-image-with-text-content .sub-heading {
    display: none;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content .content {
  padding: 0;
  margin: 70px 0;
}

@media (max-width: 1699px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content {
    margin: 25px 0;
  }
}

/* @media (max-width: 1499px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content {
      margin: 50px 0;
  }
} */
/* @media (max-width: 1399px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content {
      margin: 35px 0;
  }
} */
@media (max-width: 1299px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content {
    margin: 40px 0;
  }
}

@media (max-width: 1199px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content {
    margin: 35px 0;
  }
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content {
    margin: 8px 0;
  }
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text.mobile-home-main-hero .custom-image-with-text-content .content {
    display: none;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content .content p {
  margin: 0;
  font-weight: 300;
  color: #3F409A;
  font-size: 34px;
  line-height: normal;
}

@media (max-width: 1799px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 32px;
  }
}

@media (max-width: 1699px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 30px;
  }
}

@media (max-width: 1599px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 29px;
  }
}

@media (max-width: 1499px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 27px;
  }
}

@media (max-width: 1399px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 25px;
  }
}

@media (max-width: 1299px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 23px;
  }
}

@media (max-width: 1199px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 19px;
  }
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 16px;
  }
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .content p {
    font-size: 19px;
  }
}

.home-page--custom-image-with-text .custom-image-with-text-content .bottom-content .star {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 36px;
  line-height: normal;
  letter-spacing: 10px;
}

@media (max-width: 989px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .bottom-content .star {
    font-size: 25px;
  }
}

@media (max-width: 749px) {
  .home-page--custom-image-with-text .custom-image-with-text-content .bottom-content .star {
    font-size: 35px;
  }
}

.product-container .product__details--product-page .rtx_buy_box {
  max-width: 725px;
  width: 100%;
}

@media (max-width: 1440px) {
  .product-container .product__details--product-page .rtx_buy_box {
    max-width: 540px;
  }
}

@media (max-width: 798px) {
  .product-container .two-fourths {
    width: calc(100% - 40px);
  }
}

.okeReviews-custom {
  display: none;
}

.growing-up-prebiotics .okeReviews-custom {
  display: inline-block;
}

.families-on-the-go #rtx_option_sub,
.double-subscription #rtx_option_sub {
  border-radius: 10px;
}

a.add_to_cart {
  position: relative;
  min-width: 250px;
  padding-top: 14px;
  padding-bottom: 12px;
}

a.add_to_cart {
  text-decoration: none;
  padding-top: 7px;
  padding-bottom: 6px;
}

a.add_to_cart .text {
  color: #fff !important;
}

a.add_to_cart .text::after {
  content: " 👉 ";
  font-size: 28px;
  position: absolute;
  top: -60%;
  left: 106%;
}

/* marqueeee */
.moving-marquee {
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  height: fit-content;
  position: relative;
  padding: 50px 0;
}

.mm-container {
  position: relative;
  display: block;
  width: 100%;
  white-space: nowrap;
  scroll-behavior: smooth;
  transition: left 3s linear;
  left: 0;
}

.mm-segment {
  display: inline-block;
}

.mm-item {
  display: inline-block;
  width: fit-content;
  padding-left: 30px;
  font-size: 18px;
}

.mm-item-content {
  padding: 7px 26px;
  font-weight: 600;
}

/* End marqueeee */

/* Product ingredient */

.product-ingredient-wrapper {
  /*   padding: 0 153px 0 167px; */
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .product-ingredient-wrapper {
    /*       padding: 0 60px; */ }}

.product-ingredient-wrapper .main-title {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 146.6%;
  color: #2D317D;
  margin: 0 0 66px 0;
  letter-spacing: 0;
}

.product-ingredient-wrapper .product-tabs {
  column-gap: 85px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .product-ingredient-wrapper .product-tabs {
    column-gap: 45px;
  }
}

.product-ingredient-wrapper .product-tabs .product-tabs__panel {
  width: 100%;
  display: none;
  word-break: break-word;
  padding: 0;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-top: none;
  text-align: left;
  white-space: normal;
  line-height: 1.5;
  margin-top: 9px;
  order: 1;
}

.product-ingredient-wrapper .product-tabs .product-tabs__radio:checked+.product-tabs__label+.product-tabs__panel {
  display: block;
}

.product-ingredient-wrapper .product-tabs .product-tabs__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-ingredient-wrapper .product-tabs .product-tabs__label {
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 146.6%;
  color: #2D317D;
  flex-grow: 0;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  display: flex;
  margin: 0;
  text-align: center;
  cursor: pointer;
}

.product-ingredient-wrapper .product-tabs .product-tabs__radio:checked+.product-tabs__label:after {
  width: 100%;
  bottom: -5px;
  background: #2D317D;
  height: 3px;
  content: "";
  position: absolute;
  z-index: 99999;
}

.product-ingredient-wrapper .product-tabs-panel-inner {
  display: flex;
  justify-content: space-between;
  column-gap: 165px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .template-product .product-ingredient-wrapper .product-tabs-panel-inner {
    column-gap: 70px;
  }
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left {
  flex: 48%;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left .ingredient-item.faqAccordion {
  padding: 28px 46px;
  border: 1px solid #C4C4C4;
  margin-bottom: 10px;
  max-width: 525px;
  width: 100%;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left dt button {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 146.6%;
  color: #000000;
  padding: 0;
  border-color: #fff;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left dt button:after {
  content: "+";
  transform: translateY(-50.1%);
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  font-size: 25px;
  color: #000;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left dt button[aria-expanded=true]:after {
  font-size: 30px;
  content: "-";
  font-weight: 400;
  top: 30%;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left dd {
  margin: 14px 0 0 0;
  padding: 0;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left dd .product-ingredient-desc {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 18px;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left dd .product-ingredient-desc img {
  max-width: 100%;
  width: 80px;
}

product-turmeric .product-ingredient-wrapper .product-tabs-panel-inner .section-left dd .product-ingredient-desc img {
  background-color: #F6F2EB;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left dd .product-ingredient-desc p {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 146.6%;
  color: #000000;
  max-width: 335px;
  width: 100%;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left .ingredient-description {
  margin-top: 32px;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-left .ingredient-description p {
  font-size: 13px;
  line-height: 146.6%;
  color: #000000;
  font-style: normal;
  margin: 0;
  max-width: 484px;
  width: 100%;
}

.product-ingredient-wrapper .product-tabs-panel-inner .section-right .ingredient-product-image img {
  max-width: 100%;
}

.product-ingredient-wrapper .ingredient-mobile {
  display: none;
}

@media (max-width: 798px) {
  .product-ingredient-wrapper .ingredient-mobile {
    display: block;
  }

  .product-ingredient-wrapper .ingredient-desktop {
    display: none;
  }

  .product-ingredient-wrapper .ingredient-mobile .ingredient-product-image img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
  }

  .product-accordion-wrap .accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto 30px;
    position: relative;
    padding: 33px 0;
    border-bottom: 3px solid #000;
    cursor: pointer;
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 146.6%;
    text-align: center;
    color: #000000;
    column-gap: 30px;
  }

  .product-accordion-wrap .accordion-trigger .icon-chevron-down {
    width: 15px;
    height: 15px;
  }

  .product-accordion-wrap .accordion-content {
    display: none;
    width: 100%;
    padding: 28px 0 40px;
  }

  .product-accordion-wrap .accordion-content .ingredient-item:first-child {
    border-top: 1px solid #C4C4C4;
  }

  .product-accordion-wrap .accordion-content .ingredient-item {
    border-bottom: 1px solid #C4C4C4;
  }

  .product-accordion-wrap .accordion-content dt button {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 146.6%;
    color: #000;
    padding: 33px 36px;
    border-color: #fff;
  }

  .product-accordion-wrap .accordion-content dt button:after {
    content: "+";
    transform: translateY(-50.1%);
    position: absolute;
    top: 50%;
    right: 40px;
    left: auto;
    font-size: 25px;
    color: #000;
  }

  .product-accordion-wrap .accordion-content dt button[aria-expanded=true]:after {
    font-size: 30px;
    content: "-";
  }

  .product-accordion-wrap .accordion-trigger.active .icon-chevron-down {
    transform: rotate(180deg);
  }

  .product-accordion-wrap .accordion-content .ingredient-item dd {
    margin: 0 0 33px;
    padding: 0;
  }

  .product-accordion-wrap .accordion-content .product-ingredient-desc {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 18px;
    padding-left: 38px;
  }

  .product-accordion-wrap .accordion-content .product-ingredient-desc img {
    max-width: 100%;
    width: 80px;
  }

  .product-accordion-wrap .accordion-content .product-ingredient-desc p {
    font-weight: 400;
    font-size: 11px;
    line-height: 146.6%;
    color: #000000;
    padding-right: 60px;
  }

  .product-ingredient-wrapper .main-title {
    font-size: 40px;
    margin: 0 0 36px;
    text-align: center;
  }

  .product-ingredient-wrapper {
    padding: 0;
    margin-bottom: 60px;
  }

  .product-ingredient-wrapper .product-tabs-panel-inner .section-left {
    flex: 100%;
    margin-bottom: 60px;
  }

  .product-ingredient-wrapper .product-tabs-panel-inner .section-right {
    display: none;
  }

  .product-ingredient-wrapper .product-tabs-panel-inner .section-left .ingredient-description {
    display: none;
  }
}

@media (max-width: 480px) {
  .product-ingredient-wrapper {
    padding: 0;
  }

  .product-ingredient-wrapper .main-title {
    font-size: 25px;
    line-height: 37px;
    margin: 0 0 46px;
    text-align: center;
  }

  .product-ingredient-wrapper .product-tabs .product-tabs__label {
    font-size: 25px;
    justify-content: center;
  }

  .product-ingredient-wrapper .product-tabs-panel-inner {
    column-gap: 0;
    row-gap: 30px;
    margin-top: 25px;
    flex-direction: column;
  }

  .product-ingredient-wrapper .product-tabs-panel-inner .section-left {
    border-top: 1px solid #C4C4C4;
  }

  .product-ingredient-wrapper .product-tabs-panel-inner .section-left .ingredient-item.faqAccordion {
    padding: 30px 38px;
    border: none;
    margin-bottom: 0;
    border-bottom: 1px solid #C4C4C4;
  }

  .product-ingredient-wrapper .product-tabs-panel-inner .section-left dd .product-ingredient-desc p {
    font-size: 11px;
  }
}

/* End Product ingredient */

.promo-banner .promo-banner__content {
  min-height: auto;
  padding: 15px 0;
  font-size: 16px;
  color: #fff;
}

.promo-banner a {
  color: #ffff;
  text-decoration: underline;
}

.promo-banner .promo-banner__close {
  height: 48px;
  color: #fff;
}

.promo-banner .promo-banner__close:before {
  line-height: 48px;
}

@media only screen and (max-width: 798px) {
  .promo-banner .promo-banner__content {
    font-size: 12px;
    padding: 10px 15px;
    max-height: none;
  }

  #header .promo-banner a {
    color: #fff;
    text-decoration: underline;
  }

  .promo-banner .promo-banner__close {
    right: -5px;
    height: 33px;
  }

  .promo-banner .promo-banner__close:before {
    line-height: 33px;
  }
}

#mobile_menu li a .right.icon-down-arrow {
  display: block;
}

.blog.learn .blog-title {
  font-size: 70px;
}

@media (max-width: 1350px) {
  .blog.learn .blog-title {
    font-size: 55px;
  }
}

@media (max-width: 1199px) {
  .blog.learn .blog-title {
    font-size: 50px;
  }
}

@media (max-width: 989px) {
  .blog.learn .blog-title {
    font-size: 35px;
  }
}

@media (max-width: 749px) {
  .blog.learn .blog-title {
    font-size: 28px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .blog.learn .blog-title {
    font-size: 25px;
  }
}

.rebuy-cart__flyout {
  width: 600px !important;
}

.rebuy-cart__flyout .rebuy-button.rebuy-cart__continue-shopping-button {
  color: #3F409A;
  background-color: #fff;
  border-color: #3F409A;
}

/* Page faq banner */
.page-faq .banner.page-banner .template-banner-img,
.page-faq .banner.page-banner .banner-full-link {
  display: none !important;
}

@media only screen and (min-width: 600px) {
  .page-faq .banner.page-banner .caption-content .headline {
    font-size: 70px;
    line-height: normal;
  }
}

@media only screen and (max-width: 798px) {
  .page-faq .banner.page-banner .caption-content .headline {
    font-size: 10vw !important;
    line-height: 10vw !important;
  }
}

.page-orders-shipping .page h1 {
  font-size: 70px;
  line-height: 80px;
  text-align: center;
}

@media(max-width: 798px) {
  .page-orders-shipping .page h1 {
    font-size: 55px;
    line-height: 65px;
  }
}

@media(max-width: 576px) {
  .page-orders-shipping .page h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

.mega-menu .dropdown.menu {
  border-radius: 24px;
}

[data-dropdown="mobile_menu"] .dropdown {
  border-radius: 24px;
}

/* Mobile mega menu */
@media (max-width: 798px) {
  #mobile_menu .mobile-mega-menu-parent .mobile-mega-menu-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }

  #mobile_menu .mobile-mega-menu-parent .mobile-mega-menu-inner .mobile-mega-menu-item {
    width: 33.33%;
    display: inline-block;
    padding: 0 10px;
    flex: 0 0 33.33%;
    vertical-align: top;
  }

  #mobile_menu .mobile-mega-menu-parent .mobile-mega-menu-inner .mobile-mega-menu-item .mobile-mega-menu_block .mobile-mega-menu__image-caption {
    font-size: 14px;
    line-height: normal;
    text-align: center;
  }
}

@media (max-width: 575px) {
  #mobile_menu .mobile-mega-menu-parent .mobile-mega-menu-inner {
    margin: 0 -10px;
  }

  #mobile_menu .mobile-mega-menu-parent .mobile-mega-menu-inner .mobile-mega-menu-item {
    padding: 0 5px;
  }

  #mobile_menu .mobile-mega-menu-parent .mobile-mega-menu-inner .mobile-mega-menu-item .mobile-mega-menu_block .mobile-mega-menu__image-caption {
    font-size: 12px;
  }
}

.main-nav .nav.nav--combined .vertical-menu li.sublink .icon-down-arrow {
  display: none;
}

#retextion-root .MuiBox-root .css-1ynhss4 {
}

#retextion-root .MuiBox-root .css-yrzrzq {
  font-size: 70px;
  line-height: normal;
  color: #2d317d;
}

@media (max-width: 749px) {
  #retextion-root .MuiBox-root .css-yrzrzq {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  #retextion-root .MuiBox-root .css-yrzrzq {
    font-size: 38px;
  }
}

@media (min-width: 900px) {
  #retextion-root .MuiBox-root .css-1sxi8dt {
    width: 800px;
    max-width: 1000px;
    height: 400px;
  }
}

#retextion-root .MuiBox-root .css-1krxkv1,
#retextion-root .MuiBox-root .css-10pc0k7,
#retextion-root .MuiBox-root .css-v7esy,
#retextion-root .MuiBox-root .css-1iuxtsy input {
}

#retextion-root .MuiBox-root .css-1c5e157 {
  border-radius: 30px;
}

#retextion-root .MuiBox-root .css-eth6z2 {
  word-spacing: -3px;
}

#retextion-root .MuiBox-root .css-1iuxtsy .MuiInputBase-root.Mui-focused fieldset,
#retextion-root .MuiBox-root .css-1iuxtsy label.Mui-focused {
  color: #2d317d;
  border-color: #2d317d;
}

#retextion-root .MuiBox-root .css-vd5w30.MuiSkeleton-rounded {
  background-color: #2d317d;
}

#retextion-root .MuiBox-root .css-nninam {
  color: #e64825;
}

#retextion-root input {
  margin: 0;
  border: none;
  background: none;
}

#retextion-root .css-1rkjspd {
  background-color: #e8442e;
  color: white;
  border-style: solid;
  border-width: 0px;
  border-color: #ee4438;
  border-radius: 20px;
  width: 136px;
}

#retextion-root .css-1rkjspd:hover {
  background-color: #3F409A;
  border-color: #3F409A;
  box-shadow: none;
}

.header {
  position: relative;
}

.index .main-nav__wrapper {
  position: unset;
}

.main-nav {
  position: unset;
}

.article .section-wrapper .blog_content ul li a span {
  color: #e8442e;
  font-weight: 400;
}

.article .section-wrapper .blog_content ul li p a span {
  color: #e8442e;
  font-weight: 400;
  font-size: 22px;
}

.main-nav .search-container .search__form {
  display: none;
}

.main-nav .search-container .search-link {
  display: block;
  text-align: right;
  margin-top: 5px;
}

.main-nav .search-container .search-link:hover svg {
  stroke: #e8442d;
}

.take-the-quiz .rich-text__content .featured_text .global-button {
  color: #fff;
}

.accounts-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .accounts-buttons {
    flex-direction: column;
  }
}

.accounts-buttons .login-button {
  width: 100%;
  flex: 1 1 0%;
  padding: 20px;
  text-align: center;
  border: 1px solid #3F409A;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.accounts-buttons .login-button .cre-account-button {
  margin: auto auto 0 auto;
  max-width: 200px;
  width: 100%;
  padding: 13px 10px;
}

.accounts-buttons .subscriptions-button {
  width: 100%;
  flex: 1 1 0%;
  padding: 20px;
  text-align: center;
  border: 1px solid #3F409A;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.accounts-buttons .subscriptions-button .rtxn_manage_subscriptions_passwordless_btn {
  color: #fff !important;
  padding: 13px 10px;
  max-width: 235px;
  width: 100%;
  font-size: 16px;
  display: inline-flex;
  margin: auto auto 0 auto;
}

.product__details--product-page .product-block--description p.content,
.product__details--product-page .product-block--description .source-content {
  display: none;
}

.product__details--product-page .product-block--description p .readmore_btn {
  margin-left: 8px;
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
}

#mobile_menu li.menu__cta {
  position: relative;
  bottom: 0;
  background: transparent;
  display: block;
  width: 100%;
  padding: 24px 0;
  text-align: center;
}

#mobile_menu li.menu__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  padding: 13px 20px;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  font-style: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0px;
  word-break: break-word;
  cursor: pointer;
  transition: all 0.2s linear;
  border-color: var(--button-color-border, #e8442d);
  background: var(--button-color-background, #e8442d);
  color: var(--button-color-text, #ffffff);
  width: 100%;
  border-radius: 100px;
  margin-bottom: 12px;
}

.product__details--product-page .product-block--form .purchase-details {
  max-width: 730px;
  width: 100%;
}

.product__details--product-page .product-block--form .textelement {
  margin-top: 15px;
  display: block;
}

.product__details--product-page .product-block--description p {
  display: flex;
  align-items: center;
  position: relative;
}

.product__details--product-page .product-block--description p .tooltip-icon {
  display: flex;
  align-items: center;
}

.product__details--product-page .product-block--description p svg {
  margin-left: 10px;
}

.product__details--product-page .product-block--description p .tooltip-icon .tooltip {
  visibility: hidden;
  width: 100%;
  background-color: black;
  color: #fff;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  font-size: 15px;
  line-height: 24px;
}

.product__details--product-page .product-block--description p .tooltip-icon:hover .tooltip {
  visibility: visible;
  left: 0;
  top: 100%;
}

.readmore_content p.content {
  display: none;
  text-align: left;
}

.readmore_content p {
  text-align: center;
}

/* .readmore_content p .readmore_btn {
    margin-left: 8px;
    text-decoration: underline;
    font-size: 13px;
    cursor: pointer;
} */
.product__details--product-page .product-block--form .textelement .readmore_btn {
  margin-left: 8px;
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
}

.register-form #login_form #customer_login label {
  display: none;
}

.register-form #login_form #customer_login .input-field {
  border: 2px solid #2E2F7D !important;
  border-radius: 30px;
}

.blog-article__main .container .article_content a {
  color: #e8442e;
  font-weight: 400;
}

.blog-article__main .container .article_content .sub_title a {
  padding: 5px 0;
  color: #3F409A;
  font-weight: bold;
}

.article_content .card-author {
  display: flex;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  gap: 30px;
  justify-content: center;
}

/* .article_content .card-author .section-left, .article_content .card-author .section-right{
  width: 50%;
} */

.article_content .card-author .section-left {
  max-width: 300px;
  width: 100%;
}

.article_content .card-author .section-right {
  max-width: 422px;
  width: 100%;
}

.article_content .card-author .section-left {
  display: flex;
  align-items: center;
}

.blog-desc .widget-wrapper {
  gap: 20px;
}

.article .container .card-author .section-left img {
  display: flex;
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0 auto;
}

.article_content .card-author p {
  font-weight: 300;
  color: #3F409A;
  font-size: 22px;
  margin-bottom: 25px;
}

.article_content .card-author img {
  object-fit: cover;
  /* height: 300px;
  max-width: 300px;
  width: 100%; */
  width: 300px;
  /* height: 300px; */
  border-radius: 80px;
}

.article .section-wrapper blockquote {
  background-color: #fff;
  padding: 15px;
  border-left: 10px solid #ffd650;
}

.article .section-wrapper blockquote h4 {
  margin-bottom: 0;
}

.article .section-wrapper blockquote p {
  font-size: 16px;
}

.article .container .article_content p img {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 300px;
  object-fit: cover;
  margin: 0 auto;
}

.blog-article__main .container .article_content p {
  font-weight: 300;
  color: #3F409A;
  font-size: 22px;
  margin-bottom: 25px;
}

.blog-article__main .container .article_content blockquote * {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: initial;
  padding: 0;
  margin: 0;
}

.blog-article__main .container .article_content blockquote h1 .blog-article__main .container .article_content blockquote h1 *,
.blog-article__main .container .article_content blockquote h2,
.blog-article__main .container .article_content blockquote h2 *,
.blog-article__main .container .article_content blockquote h3,
.blog-article__main .container .article_content blockquote h3 *,
.blog-article__main .container .article_content blockquote h4,
.blog-article__main .container .article_content blockquote h4 *,
.blog-article__main .container .article_content blockquote h5,
.blog-article__main .container .article_content blockquote h5 *,
.blog-article__main .container .article_content blockquote h6,
.blog-article__main .container .article_content blockquote h6 * {
  font-family: 'GT Eesti Display', Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
  font-size: 21px;
  font-weight: 600;
  width: 100%;
  display: block;
  line-height: 1.5;
  padding: 0;
}

.predictive-search-list-articles {
  font-family: 'GT Eesti Display';
  font-weight: bold;
}

.search-shopify-header .price {
  color: #e8442e;
}
.search-shopify-header .results .info a {
  gap: 0 !important;
}

.search-scoped {
  padding-top: 40px !important;
}
.search-shopify-header {
  top: 4px;
}
.search-shopify-header.active {
  top: -20px;
}
.search-shopify-header input {
  width: 300px;
}
.search-scopes a {
  border-radius: 100px !important;
  font-weight: bold;
}
.search-scopes a.active {
  background: #3f409a !important;
}
.search-results-grid .item-article .item-title {
  font-family: 'GT Eesti Display';
  font-weight: bold;
}
.search-results-grid .item-title a {
  color: #3f409a;
}
.search-results-grid .item-price {
  color: #e8442e;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  justify-content: center;
}
.search-results-grid .item-price s {
  color: #3f409a;
}


@media only screen and (max-width: 798px) {
  body.is-active .MuiFormLabel-root.MuiInputLabel-root {
    z-index: 0;
  }

  .article_content .card-author {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .article_content .card-author .section-right {
    width: 90%;
    max-width: 100%;
  }

  .blog-article__main .container .article_content h1,
  .blog-article__main .container .article_title {
    font-size: 24px;
  }
  .search-shopify-header {
    top: 0;
    left: 10px;
  }
}

.mobile-search input#q {
  color: #3F409A;
}


a.inherit-style {
  color: inherit;
}
a.inherit-style:hover {
  color: inherit !important;
  text-decoration: none;
}
