/** Shopify CDN: Minification failed

Line 468:2 Expected identifier but found "*"
Line 4281:115 Expected ")" to go with "("

**/
/*================ VARIABLES ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*================ size variables ================*/
/*================ typography ================*/
@font-face {
  font-family: 'Futura Book';
  src: url(futura-pt-book.otf); }

@font-face {
  font-family: 'Futura Cond';
  src: url(futura-pt-cond-bold.otf); }

@font-face {
  font-family: 'Futura Cond Oblique';
  src: url(futura-pt-cond-bold-oblique.otf); }

@font-face {
  font-family: 'Futura Cond Medium';
  src: url(futura-condensed-pt-medium.otf); }

@font-face {
  font-family: 'ThrowMyHands';
  src: url(ThrowMyHandsUpintheAirBold.ttf); }

/*================ helpers ================*/
/*================ z-indexing ================*/
/*================ appearance variables ================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ #Mixins ================*/
@-webkit-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-moz-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*================ GLOBAL ================*/
/*============================================================================
  Grid layout
==============================================================================*/
.page-width {
  width: 100%;
  max-width: 1400px;
  padding: 0px 20px;
  margin: 0 auto; }
  @media (min-width: 921px) {
    .page-width {
      padding: 0px 60px; } }

section {
  width: 100%;
  padding: 0px 20px;
  margin-bottom: 30px; }
  @media (min-width: 921px) {
    section {
      padding: 0px 60px;
      margin-bottom: 60px; } }
  section.top-spacing {
    margin-top: 30px; }
    @media (min-width: 921px) {
      section.top-spacing {
        margin-top: 60px; } }
  section.fullscreen {
    padding: 0;
    margin-bottom: 0; }
    section.fullscreen .grid {
      width: calc(100% + 2.17391%); }
      @media (min-width: 921px) {
        section.fullscreen .grid {
          width: calc(100% + 1.5625%); } }
  section.widescreen {
    padding: 0px 20px;
    max-width: 1400px;
    margin: 20px auto; }
    @media (min-width: 921px) {
      section.widescreen {
        padding: 0px 60px;
        margin: 60px auto; } }
  section.nospacing {
    margin-bottom: 0px;
    margin-top: 0px; }
  section.nopadding {
    padding-left: 0px;
    padding-right: 0px; }
  section .floating {
    float: left;
    width: 100%;
    clear: both;
    font-size: 0.92857em; }
    section .floating > div {
      float: left; }
    section .floating .mobile-full {
      width: 100%; }
    section .floating .mobile-half {
      width: 50%; }
    section .floating .mobile-third {
      width: calc(100% / 3); }
    @media (min-width: 921px) {
      section .floating .desktop-10 {
        width: 10%; }
      section .floating .desktop-20 {
        width: 20%; }
      section .floating .desktop-25, section .floating .desktop-quarter {
        width: 25%; }
      section .floating .desktop-30 {
        width: 30%; }
      section .floating .desktop-33, section .floating .desktop-third {
        width: calc(100% / 3); }
      section .floating .desktop-40 {
        width: 40%; }
      section .floating .desktop-50, section .floating .desktop-half {
        width: 50%; }
      section .floating .desktop-60 {
        width: 50%; }
      section .floating .desktop-70 {
        width: 70%; }
      section .floating .desktop-75, section .floating .desktop-threequarter {
        width: 75%; }
      section .floating .desktop-80 {
        width: 80%; }
      section .floating .desktop-90 {
        width: 90%; }
      section .floating .desktop-100, section .floating .desktop-full {
        width: 100%; } }
  section .grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    section .grid:before, section .grid:after {
      content: "\0020";
      display: block;
      height: 0;
      overflow: hidden; }
    section .grid.aligncenter {
      align-items: center; }
    section .grid .mobile1, section .grid .mobile2, section .grid .mobile3, section .grid .mobile4, section .grid .mobile5,
    section .grid .mobile6, section .grid .mobile7, section .grid .mobile8, section .grid .mobile9, section .grid .mobile10 {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      margin-left: 1.5625%; }
    section .grid .mobile1 {
      flex-basis: 6.52174%;
      max-width: 6.52174%; }
    section .grid .mobile2 {
      flex-basis: calc(6.52174% * 2 + (2.17391% * 1));
      max-width: calc(6.52174% * 2 + (2.17391% * 1)); }
    section .grid .mobile3 {
      flex-basis: calc(6.52174% * 3 + (2.17391% * 2));
      max-width: calc(6.52174% * 3 + (2.17391% * 2)); }
    section .grid .mobile4 {
      flex-basis: calc(6.52174% * 4 + (2.17391% * 3));
      max-width: calc(6.52174% * 4 + (2.17391% * 3)); }
    section .grid .mobile5, section .grid .mobilehalf {
      flex-basis: calc(6.52174% * 5 + (2.17391% * 4));
      max-width: calc(6.52174% * 5 + (2.17391% * 4)); }
    section .grid .mobile6 {
      flex-basis: calc(6.52174% * 6 + (2.17391% * 5));
      max-width: calc(6.52174% * 6 + (2.17391% * 5)); }
    section .grid .mobile7 {
      flex-basis: calc(6.52174% * 7 + (2.17391% * 6));
      max-width: calc(6.52174% * 7 + (2.17391% * 6)); }
    section .grid .mobile8 {
      flex-basis: calc(6.52174% * 8 + (2.17391% * 7));
      max-width: calc(6.52174% * 8 + (2.17391% * 7)); }
    section .grid .mobile9 {
      flex-basis: calc(6.52174% * 9 + (2.17391% * 8));
      max-width: calc(6.52174% * 9 + (2.17391% * 8)); }
    section .grid .mobile10, section .grid .mobilefull {
      flex-basis: calc(6.52174% * 10 + (2.17391% * 9));
      max-width: calc(6.52174% * 10 + (2.17391% * 9)); }
    @media (min-width: 921px) {
      section .grid {
        margin-left: -1.5625%; }
        section .grid .desktop1, section .grid .desktop2, section .grid .desktop3, section .grid .desktop4, section .grid .desktop5, section .grid .desktop6, section .grid .desktop7, section .grid .desktop8,
        section .grid .desktop9, section .grid .desktop10, section .grid .desktop11, section .grid .desktop12, section .grid .desktop13, section .grid .desktop14, section .grid .desktop15, section .grid .desktop16 {
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          margin-left: 1.5625%; }
        section .grid .desktop1 {
          flex-basis: 4.6875%;
          max-width: 4.6875%; }
        section .grid .desktop2 {
          flex-basis: calc(4.6875% * 2 + (1.5625% * 1));
          max-width: calc(4.6875% * 2 + (1.5625% * 1)); }
        section .grid .desktop3 {
          flex-basis: calc(4.6875% * 3 + (1.5625% * 2));
          max-width: calc(4.6875% * 3 + (1.5625% * 2)); }
        section .grid .desktop4, section .grid .desktopquarter {
          flex-basis: calc(4.6875% * 4 + (1.5625% * 3));
          max-width: calc(4.6875% * 4 + (1.5625% * 3)); }
        section .grid .desktop5 {
          flex-basis: calc(4.6875% * 5 + (1.5625% * 4));
          max-width: calc(4.6875% * 5 + (1.5625% * 4)); }
        section .grid .desktop6 {
          flex-basis: calc(4.6875% * 6 + (1.5625% * 5));
          max-width: calc(4.6875% * 6 + (1.5625% * 5)); }
        section .grid .desktop7 {
          flex-basis: calc(4.6875% * 7 + (1.5625% * 6));
          max-width: calc(4.6875% * 7 + (1.5625% * 6)); }
        section .grid .desktop8, section .grid .desktophalf {
          flex-basis: calc(4.6875% * 8 + (1.5625% * 7));
          max-width: calc(4.6875% * 8 + (1.5625% * 7)); }
        section .grid .desktop9 {
          flex-basis: calc(4.6875% * 9 + (1.5625% * 8));
          max-width: calc(4.6875% * 9 + (1.5625% * 8)); }
        section .grid .desktop10 {
          flex-basis: calc(4.6875% * 10 + (1.5625% * 9));
          max-width: calc(4.6875% * 10 + (1.5625% * 9)); }
        section .grid .desktop11 {
          flex-basis: calc(4.6875% * 11 + (1.5625% * 10));
          max-width: calc(4.6875% * 11 + (1.5625% * 10)); }
        section .grid .desktop12 {
          flex-basis: calc(4.6875% * 12 + (1.5625% * 11));
          max-width: calc(4.6875% * 12 + (1.5625% * 11)); }
        section .grid .desktop13 {
          flex-basis: calc(4.6875% * 13 + (1.5625% * 12));
          max-width: calc(4.6875% * 13 + (1.5625% * 12)); }
        section .grid .desktop14 {
          flex-basis: calc(4.6875% * 14 + (1.5625% * 13));
          max-width: calc(4.6875% * 14 + (1.5625% * 13)); }
        section .grid .desktop15 {
          flex-basis: calc(4.6875% * 15 + (1.5625% * 14));
          max-width: calc(4.6875% * 15 + (1.5625% * 14)); }
        section .grid .desktop16, section .grid .desktopfull {
          flex-basis: calc(4.6875% * 16 + (1.5625% * 15));
          max-width: calc(4.6875% * 16 + (1.5625% * 15)); } }

/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

body {
  margin: 0;
  overflow-x: hidden; }

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

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  outline: none; }

a {
  background-color: transparent; }

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

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 {
  width: 100%;
  max-width: 100%;
  border: 0;
  vertical-align: top; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox; }

input[type="radio"] {
  width: 20px;
  height: 20px;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio; }

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

input[type="text"], input[type="search"], input[type="number"], input[type="email"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none; }

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

td,
th {
  padding: 0; }

textarea {
  overflow: auto;
  -webkit-appearance: none;
  -moz-appearance: none; }

[tabindex='-1']:focus {
  outline: none; }

/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
a,
button,
[role="button"],
input,
label,
select,
textarea {
  touch-action: manipulation; }

/*================ #Helper Classes ================*/
.clearfix {
  *zoom: 1; }
  .clearfix::after {
    content: '';
    display: table;
    clear: both; }

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

.visibility-hidden {
  visibility: hidden; }

.js-focus-hidden:focus {
  outline: none; }

.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

.no-js .js {
  display: none; }

.hide {
  display: none !important; }

.screenreader {
  position: absolute;
  height: 1px;
  width: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  overflow: hidden !important; }

@media (max-width: 920px) {
  .hidemobile, .hideAt500 {
    display: none !important; } }

@media (min-width: 921px) {
  .showmobile, .showAt500 {
    display: none !important; } }

.fancybox__markup {
  display: none; }

.price--sale {
  text-decoration: line-through;
  color: #c1c1c1; }

.price--value {
  color: #999999;
  font-size: 14px; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: white;
  background-color: #f8c1b8;
  padding: 10px;
  opacity: 1;
  z-index: 10000;
  transition: none; }

/*================ #Basic Styles ================*/
.main-content {
  display: block;
  padding-top: 90px; }
  @media (min-width: 921px) {
    .main-content {
      padding-top: 102px; } }

.section-header {
  margin-bottom: 30px; }
  @media (min-width: 921px) {
    .section-header {
      margin-bottom: 60px; } }

/*================ Typography ================*/
blockquote {
  font-size: 1.28571em;
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0; }
  .rte blockquote {
    border-color: #c1c1c1;
    border-width: 1px 0;
    border-style: solid;
    padding: 30px 0;
    margin-bottom: 10px; }
  blockquote p + cite {
    margin-top: 10px; }
  blockquote cite {
    display: block;
    font-size: 0.85em;
    font-weight: 400; }
    blockquote cite::before {
      content: '\2014 \0020'; }

code,
pre {
  font-family: Consolas, monospace;
  font-size: 1em; }

pre {
  overflow: auto; }

body,
input,
textarea,
button,
select {
  font-size: 14px;
  font-family: "Futura-PT", sans-serif;
  color: #3c3935;
  letter-spacing: 0.1em;
  font-weight: 200; }

@media (max-width: 920px) {
  input,
  textarea,
  select,
  button {
    font-size: 14px; } }
/*================ Headings ================*/
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 15px;
  font-family: "Futura-PT", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word; }
  h1 a, .h1 a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }

h1, .h1 {
  font-size: 2.5em;
  text-transform: none;
  letter-spacing: 0; }
  @media (max-width: 920px) {
    h1, .h1 {
      font-size: 2.28571em; } }

h2, .h2 {
  font-size: 1.71429em;
  text-transform: uppercase; }
  @media (max-width: 920px) {
    h2, .h2 {
      font-size: 1.42857em; } }

h3, .h3 {
  font-size: 1.85714em;
  text-transform: none;
  letter-spacing: 0; }
  @media (max-width: 920px) {
    h3, .h3 {
      font-size: 1.42857em; } }

h4, .h4 {
  font-size: 1.21429em; }
  @media (max-width: 920px) {
    h4, .h4 {
      font-size: 1.07143em; } }

h5, .h5 {
  font-size: 1.07143em; }
  @media (max-width: 920px) {
    h5, .h5 {
      font-size: 0.92857em; } }

h6, .h6 {
  font-size: 1em; }
  @media (max-width: 920px) {
    h6, .h6 {
      font-size: 0.85714em; } }

/*================ Paragraph styles ================*/
p {
  color: #3c3935;
  margin: 0 0 30px;
  line-height: 1.5; }
  @media (max-width: 920px) {
    p {
      font-size: 0.92857em; } }
  p:last-child {
    margin-bottom: 0; }

/*================ Lists ================*/
li {
  list-style: none; }

/*================ Misc styles ================*/
.fine-print {
  font-size: 1em;
  font-style: italic; }

.txt--minor {
  font-size: 80%; }

.txt--emphasis {
  font-style: italic; }

.address {
  margin-bottom: 20px; }

/*================ #Icons ================*/
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentColor; }
  .no-svg .icon {
    display: none; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

/*================ #Lists ================*/
ul,
ol {
  margin: 0;
  padding: 0; }

ol {
  list-style: decimal; }

.list--inline {
  padding: 0;
  margin: 0; }
  .list--inline li {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }

/*================ #Rich Text Editor ================*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 15px 30px; }
  .rte ul.list--inline,
  .rte ol.list--inline {
    margin-left: 0; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }

.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol {
  margin-left: 0;
  list-style-position: inside; }

.scrollable-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*================ #Links and Buttons ================*/
a {
  color: #777777;
  text-decoration: none;
  outline: none;
  ie-dummy: expression(this.hideFocus=true); }
  a:hover, a:focus {
    opacity: 1;
    outline: none;
    ie-dummy: expression(this.hideFocus=true); }
  a.classic-link {
    text-decoration: underline; }

/*================ Buttons ================*/
.btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0px;
  padding: 15px;
  border-color: #3c3935;
  background-color: #3c3935;
  color: white;
  font-family: "Futura-PT", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.08em;
  white-space: normal;
  font-size: 13px;
  transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  @media (min-width: 921px) {
    .btn {
      padding: 15px;
      width: auto; } }
  .btn:hover, .btn:focus {
    border-color: #1e1e1e;
    background-color: #1e1e1e;
    color: white; }
  .btn .icon-arrow-right,
  .btn .icon-arrow-left {
    height: 9px; }
  .btn.btn--reversed {
    border-color: #1e1e1e;
    background-color: #1e1e1e;
    color: white; }
    .btn.btn--reversed:hover, .btn.btn--reversed:focus {
      border-color: #3c3935;
      background-color: #3c3935;
      color: white; }
  .btn.btn--secondary {
    border-color: #c1c1c1;
    background-color: white;
    color: #3c3935; }
    .btn.btn--secondary:hover, .btn.btn--secondary:focus {
      border-color: #3c3935; }
    .btn.btn--secondary.btn--reversed {
      border-color: #f8c1b8;
      background-color: #f8c1b8;
      color: white; }
      .btn.btn--secondary.btn--reversed:hover, .btn.btn--secondary.btn--reversed:focus {
        border-color: #f8c1b8;
        background-color: #f8c1b8;
        color: white; }
  .btn.btn--special {
    color: #3c3935;
    font-weight: 500;
    border-color: #c1c1c1;
    background: white;
    text-transform: capitalize;
    text-align: left;
    width: 100%;
    max-width: 220px;
    position: relative; }
    .btn.btn--special:hover, .btn.btn--special:focus {
      background: #3c3935;
      border-color: #3c3935;
      color: white; }
      .btn.btn--special:hover .link-arrow, .btn.btn--special:focus .link-arrow {
        fill: white; }
    .btn.btn--special svg.link-arrow {
      fill-rule: evenodd;
      clip-rule: evenodd;
      fill: #3c3935;
      width: 13px;
      vertical-align: middle;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: inline-block; }
  .btn[disabled] {
    cursor: default;
    background-color: #c1c1c1;
    border-color: #c1c1c1;
    color: white; }
  .btn.small {
    padding: 10px 10px;
    font-size: 0.85714em;
    line-height: 1; }
  .btn.iconbefore {
    margin-right: 10px; }
  .btn.iconafter {
    margin-left: 10px; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: underline;
  font-weight: 500;
  background: transparent;
  color: #3c3935; }
  .text-link[disabled] {
    background: transparent; }

/*================ #TABLES ================*/
table {
  margin-bottom: 10px; }

thead {
  border-bottom: 1px solid #e8e8e8; }

th {
  text-transform: uppercase;
  font-family: "Futura-PT", sans-serif;
  font-weight: 700;
  text-align: left;
  padding: 10px 5px; }
  @media (min-width: 921px) {
    th {
      padding: 10px 14px; } }

td {
  text-align: left;
  padding: 10px 5px; }
  @media (min-width: 921px) {
    td {
      padding: 10px 14px; } }

/*================ #Images and Iframes ================*/
svg:not(:root) {
  overflow: hidden; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.slideshow__image {
  overflow: hidden; }
  .slideshow__image:hover img {
    transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    transform: scale(1.02); }

/*================ #Forms ================*/
form {
  margin: 0; }

fieldset {
  border: 1px solid #c1c1c1;
  margin: 0 0 20px;
  padding: 10px; }

legend {
  border: 0;
  padding: 0; }

button {
  cursor: pointer;
  outline: none;
  ie-dummy: expression(this.hideFocus=true); }

input[type="submit"] {
  cursor: pointer; }

label {
  display: block;
  margin-bottom: 5px; }
  [type="radio"] + label, [type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0; }
  label[for] {
    cursor: pointer; }

input,
textarea,
select {
  border: 1px solid #c1c1c1;
  background-color: white;
  color: #3c3935;
  max-width: 100%;
  line-height: 1.2;
  border-radius: 0px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  input:hover, input :focus,
  textarea:hover,
  textarea :focus,
  select:hover,
  select :focus {
    outline: 0; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    color: #545454;
    background-color: #ebebe4; }
  input.hidden-placeholder::-webkit-input-placeholder,
  textarea.hidden-placeholder::-webkit-input-placeholder,
  select.hidden-placeholder::-webkit-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-moz-placeholder,
  textarea.hidden-placeholder::-moz-placeholder,
  select.hidden-placeholder::-moz-placeholder {
    color: transparent; }
  input.hidden-placeholder:-ms-input-placeholder,
  textarea.hidden-placeholder:-ms-input-placeholder,
  select.hidden-placeholder:-ms-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-ms-input-placeholder,
  textarea.hidden-placeholder::-ms-input-placeholder,
  select.hidden-placeholder::-ms-input-placeholder {
    opacity: 1; }

textarea {
  min-height: 100px; }

.form__row {
  width: 100%;
  text-align: left;
  margin-bottom: 20px; }
  .form__row.form__row--center {
    text-align: center; }
  .form__row.form__row--horizontal > .form__label {
    width: 180px;
    display: inline-block; }
  .form__row.form__row--horizontal > .form__input, .form__row.form__row--horizontal > .form__select {
    width: calc(100% - 185px);
    display: inline-block; }
  @media (min-width: 921px) {
    .form__row .form__row--half {
      width: 50%;
      display: inline-block;
      vertical-align: top; }
      .form__row .form__row--half:first-child {
        padding-right: 30px; }
      .form__row .form__row--half:last-child {
        padding-left: 30px; } }

.form__label {
  font-weight: 700; }
  .form__label.form__label--checkbox {
    width: 100% !important;
    vertical-align: middle;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .form__label.form__label--checkbox > [type='checkbox'] {
      vertical-align: middle;
      margin-right: 10px; }

.form__select {
  width: 100%; }

.form__input {
  width: 100%; }

.form__button {
  width: 100%;
  margin-bottom: 10px; }

/*================ #Error #Feedback ================*/
input.input--error, input .error,
select.input--error,
select .error,
textarea.input--error,
textarea .error {
  border-color: #f5c6cb;
  background-color: #f8d7da;
  color: #721c24; }
  input.input--error::-webkit-input-placeholder, input .error::-webkit-input-placeholder,
  select.input--error::-webkit-input-placeholder,
  select .error::-webkit-input-placeholder,
  textarea.input--error::-webkit-input-placeholder,
  textarea .error::-webkit-input-placeholder {
    color: #721c24;
    opacity: 0.7; }
  input.input--error::-moz-placeholder, input .error::-moz-placeholder,
  select.input--error::-moz-placeholder,
  select .error::-moz-placeholder,
  textarea.input--error::-moz-placeholder,
  textarea .error::-moz-placeholder {
    color: #721c24;
    opacity: 0.7; }
  input.input--error:-ms-input-placeholder, input .error:-ms-input-placeholder,
  select.input--error:-ms-input-placeholder,
  select .error:-ms-input-placeholder,
  textarea.input--error:-ms-input-placeholder,
  textarea .error:-ms-input-placeholder {
    color: #721c24;
    opacity: 0.7; }
  input.input--error::-ms-input-placeholder, input .error::-ms-input-placeholder,
  select.input--error::-ms-input-placeholder,
  select .error::-ms-input-placeholder,
  textarea.input--error::-ms-input-placeholder,
  textarea .error::-ms-input-placeholder {
    color: #721c24;
    opacity: 1; }
input.success,
select.success,
textarea.success {
  border-color: #c3e6cb;
  background-color: #d4edda;
  color: #155724; }
  input.success ::-webkit-input-placeholder,
  select.success ::-webkit-input-placeholder,
  textarea.success ::-webkit-input-placeholder {
    color: #155724;
    opacity: 0.7; }
  input.success ::-moz-placeholder,
  select.success ::-moz-placeholder,
  textarea.success ::-moz-placeholder {
    color: #155724;
    opacity: 0.7; }
  input.success :-ms-input-placeholder,
  select.success :-ms-input-placeholder,
  textarea.success :-ms-input-placeholder {
    color: #155724;
    opacity: 0.7; }
  input.success ::-ms-input-placeholder,
  select.success ::-ms-input-placeholder,
  textarea.success ::-ms-input-placeholder {
    color: #155724;
    opacity: 1; }
input.message,
select.message,
textarea.message {
  border-color: #b8daff;
  background-color: #cce5ff;
  color: #004085; }
  input.message ::-webkit-input-placeholder,
  select.message ::-webkit-input-placeholder,
  textarea.message ::-webkit-input-placeholder {
    color: #004085;
    opacity: 0.7; }
  input.message ::-moz-placeholder,
  select.message ::-moz-placeholder,
  textarea.message ::-moz-placeholder {
    color: #004085;
    opacity: 0.7; }
  input.message :-ms-input-placeholder,
  select.message :-ms-input-placeholder,
  textarea.message :-ms-input-placeholder {
    color: #004085;
    opacity: 0.7; }
  input.message ::-ms-input-placeholder,
  select.message ::-ms-input-placeholder,
  textarea.message ::-ms-input-placeholder {
    color: #004085;
    opacity: 1; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(/cdn/shop/t/7/assets/ico-select.svg?v=25294615802861450851621296516);
  background-repeat: no-repeat;
  background-position: right 10px center;
  line-height: 1.2;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  @media (min-width: 921px) {
    select {
      padding-top: 15px;
      padding-left: 10px;
      padding-bottom: 15px; } }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 700; }

option {
  color: #3c3935;
  background-color: white; }

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

/*================ #Form labels ================*/
.label--hidden {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .label--hidden {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

::-webkit-input-placeholder {
  color: #3c3935;
  opacity: 0.7; }

::-moz-placeholder {
  color: #3c3935;
  opacity: 0.7; }

:-ms-input-placeholder {
  color: #3c3935;
  opacity: 0.7; }

::-ms-input-placeholder {
  color: #3c3935;
  opacity: 1; }

/*================ #Labels ================*/
label.error, label.label--error {
  color: #721c24; }
label.success {
  color: #155724; }
label.message {
  color: #004085; }

input, textarea {
  padding: 15px; }
  @media (min-width: 921px) {
    input, textarea {
      padding: 15px; } }

/*================ #feedback #messages ================*/
div.note, div.success, div.form--success, div.error, div.errors {
  padding: 10px;
  margin: 0 0 10px; }
  @media (min-width: 921px) {
    div.note, div.success, div.form--success, div.error, div.errors {
      padding: 15px; } }

.message {
  border: 1px solid #b8daff;
  background-color: #cce5ff;
  color: #004085; }
  .message a {
    color: #002752;
    text-decoration: underline; }

.success, .form--success {
  border: 1px solid #c3e6cb;
  background-color: #d4edda;
  color: #155724; }
  .success a, .form--success a {
    color: #0b2e13;
    text-decoration: underline; }

.error, .errors {
  border: 1px solid #f5c6cb;
  background-color: #f8d7da;
  color: #721c24; }
  .error ul, .errors ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .error a, .errors a {
    color: #491217;
    text-decoration: underline; }

hr {
  margin-left: 0px;
  border: 0;
  border-bottom: 1px solid #c1c1c1; }
  hr.text {
    border-color: #3c3935; }
  hr.thick {
    border-bottom: 2px solid; }
  hr.xthick {
    border-bottom: 3px solid; }
  hr.seperator {
    margin-bottom: 60px;
    margin-top: 60px; }
  hr.xsmall {
    max-width: 60px;
    margin-top: 20px;
    margin-bottom: 20px; }
  hr.small {
    max-width: 200px; }
  hr.center {
    margin-left: auto;
    margin-right: auto; }

.border-bottom {
  border-bottom: 1px solid #c1c1c1; }

.border-top {
  border-top: 1px solid #c1c1c1; }

/*============================================================================
  General Code
==============================================================================*/
.textleft {
  text-align: left; }

.textcenter {
  text-align: center; }

.textright {
  text-align: right; }

.bold {
  font-weight: bold; }

.section__title {
  font-family: futura-pt-bold, sans-serif;
  font-weight: 400;
  font-size: 1.42857em;
  letter-spacing: 0.1em; }
  @media (min-width: 921px) {
    .section__title {
      font-size: 1.85714em; } }

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome and Opera */ }

.title--fancy {
  font: 400 italic 20px futura-pt-bold, sans-serif;
  text-transform: uppercase;
  background: #fff5f3;
  padding: 16px 40px;
  display: inline-block; }
  @media (min-width: 921px) {
    .title--fancy {
      font-size: 26px; } }

/*============================================================================
  Vendor Code
==============================================================================*/
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  background: white;
  color: #3c3935;
  border-radius: 100%;
  width: 40px;
  height: 40px; }
  .owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
    line-height: 0.4em;
    font-size: 2em; }
.owl-carousel .owl-nav button.owl-next {
  right: -20px; }
  @media (min-width: 921px) {
    .owl-carousel .owl-nav button.owl-next {
      right: 0; } }
.owl-carousel .owl-nav button.owl-prev {
  left: -20px; }
  @media (min-width: 921px) {
    .owl-carousel .owl-nav button.owl-prev {
      left: 0; } }

/*============================================================================
  #SECTIONS
==============================================================================*/
/*================ SECTIONS / #SEARCH ================*/
.search__header h1, .search__header .h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px; }
  @media (min-width: 921px) {
    .search__header h1, .search__header .h1 {
      font-size: 36px; } }

.search__products .search__products--empty {
  text-align: center;
  padding: 20px 20px;
  font-size: 2.28571em; }
  @media (min-width: 921px) {
    .search__products .search__products--empty {
      padding: 60px 20px;
      font-size: 2.5em; } }
.search__products .search__product {
  display: inline-block;
  vertical-align: top;
  width: calc(100% / 2); }
  @media (min-width: 921px) {
    .search__products .search__product {
      width: calc(100% / 4); } }
.search__products .product-card {
  padding: 0 10px; }
  @media (min-width: 921px) {
    .search__products .product-card {
      padding: 0 20px; } }

/*================ SECTIONS / #COLLECTION STANDARD ================*/
.collection__banner {
  text-align: center; }
  .collection__banner .collection__title {
    font: 400 32px futura-pt-bold, sans-serif;
    text-align: center;
    margin: 30px auto;
    color: #f8c1b8; }
    @media (min-width: 921px) {
      .collection__banner .collection__title {
        font-size: 36px; } }
  .collection__banner img {
    width: 100%; }

.collection__products {
  margin: 20px auto; }
  .collection__products .collection__product {
    display: block;
    vertical-align: top;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    width: 50%;
    display: inline-block;
    padding-right: 10px;
    padding-left: 0px; }
    .collection__products .collection__product:nth-child(2n) {
      padding-left: 10px;
      padding-right: 0px; }
      @media (min-width: 921px) {
        .collection__products .collection__product:nth-child(2n) {
          padding: 0; } }
    @media (min-width: 921px) {
      .collection__products .collection__product {
        display: inline-block;
        width: calc(100% / 4 - 40px);
        margin: 30px 20px;
        padding: 0; } }
    @media (max-width: 920px) {
      .collection__products .collection__product .product-card .product-card__add-container input[type="submit"] {
        border: 1px solid #c1c1c1;
        padding: 15px;
        width: 300px; } }

/*================ SECTIONS / #PASSWORD ================*/
.template-password {
  min-height: 100vh;
  height: 100%; }
  .template-password .main-content {
    padding: 0; }
  .template-password .password__header {
    background: #fff5f3;
    height: 80vh;
    padding: 40px 20px;
    text-align: center;
    position: relative; }
    .template-password .password__header .password__title {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%; }
      .template-password .password__header .password__title img {
        display: block;
        width: calc(100% - 40px);
        max-width: 420px;
        margin: 0 auto; }
        @media (min-width: 921px) {
          .template-password .password__header .password__title img {
            max-width: 600px; } }
      .template-password .password__header .password__title .btn {
        margin-top: 30px;
        width: 180px;
        text-transform: uppercase;
        background: transparent;
        color: #3c3935;
        font-weight: 600;
        font-size: 15px; }
  .template-password .password__body {
    width: 100%;
    background: #1f1f1f;
    text-align: center;
    margin: 0;
    color: white;
    height: 20vh;
    padding: 30px 20px;
    max-width: unset;
    position: relative; }
    .template-password .password__body form {
      position: absolute;
      width: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .template-password .password__body label {
      display: none; }
    .template-password .password__body input[type=password] {
      width: calc(100% - 120px);
      max-width: 360px;
      background: transparent;
      border: none;
      border-bottom: 1px solid white;
      color: white;
      text-align: center; }
      .template-password .password__body input[type=password]::placeholder {
        padding-left: 40px;
        color: white;
        background: url("/cdn/shop/files/icon-lock-white.png?v=1585170434") left center no-repeat;
        background-size: contain; }
        @media (min-width: 921px) {
          .template-password .password__body input[type=password]::placeholder {
            background: url("/cdn/shop/files/icon-lock-white.png?v=1585170434") 20% center no-repeat;
            background-size: contain; } }
    .template-password .password__body input[type=submit] {
      background: transparent;
      border: none;
      border-bottom: 1px solid white;
      color: white;
      text-align: center;
      margin-left: -5px;
      font-family: FontAwesome; }

/*================ SECTIONS / #HEADING ================*/
.section-heading {
  z-index: 12;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  max-height: 32px;
  color: #3c3935;
  transition: top 0.2s;
  -webkit-transition: top 0.2s;
  -moz-transition: top 0.2s;
  padding: 0 10px;
  background: white;
  border-bottom: 1px solid #f0f0f0; }
  .scrolled.template-index .section-heading {
    background: white;
    color: #3c3935; }
  .scroll-up .section-heading {
    top: 0;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none; }
  .scroll-down .section-heading {
    top: -32px; }
  .section-heading * {
    color: inherit; }
  @media (min-width: 921px) {
    .section-heading {
      display: block;
      padding: 0 60px;
      border-bottom: none; } }
  .section-heading .heading {
    padding: 9.5px 0px;
    float: none; }
    .section-heading .heading .heading__left {
      text-align: left; }
    .section-heading .heading .heading__center {
      text-align: center;
      margin: auto;
      float: none; }
    .section-heading .heading .heading__right {
      text-align: right; }
  .section-heading .announcement-bar__message {
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 1.2; }
    @media (min-width: 921px) {
      .section-heading .announcement-bar__message {
        font-size: 13px;
        letter-spacing: 0.1em; } }

/*================ SECTION / #HEADER ================*/
.header__floating-background {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  pointer-events: none;
  background: white;
  transition: all 0.3s;
  height: 60px; }
  @media (min-width: 921px) {
    .header__floating-background {
      height: 70px; } }
  .scrolled .header__floating-background {
    height: 60px; }
    @media (min-width: 921px) {
      .scrolled .header__floating-background {
        height: 70px; } }
  @media (min-width: 921px) {
    .header__floating-background {
      top: 32px; } }
  .template-index .header__floating-background {
    background: rgba(0, 0, 0, 0); }
  .scrolled.template-index .header__floating-background {
    background: white;
    top: 0; }
  .scrolled .header__floating-background {
    top: 0; }

[data-section-type="header-section"] {
  top: 30px;
  left: 0px;
  width: 100%;
  background: transparent;
  z-index: 12;
  position: fixed;
  pointer-events: none;
  transition: top 0.2s;
  -webkit-transition: top 0.2s;
  -moz-transition: top 0.2s; }
  @media (min-width: 921px) {
    [data-section-type="header-section"] {
      top: 32px; } }
  [data-section-type="header-section"] .white {
    display: none; }
  .scrolled [data-section-type="header-section"] {
    background: white; }
    .scrolled [data-section-type="header-section"] .white {
      display: none; }
    .scrolled [data-section-type="header-section"] .black {
      display: inline-block; }
  .scroll-down [data-section-type="header-section"] {
    top: -71px; }
  .scroll-up [data-section-type="header-section"] {
    top: 30px;
    transition: opacity 2s ease-in; }
    @media (min-width: 921px) {
      .scroll-up [data-section-type="header-section"] {
        top: 32px; } }
  [data-section-type="header-section"] header {
    color: #3c3935;
    margin: auto;
    transition: all 0.3s;
    height: 60px;
    /*
    .template-index & {
      .header__logo {
        img {
          position: absolute;
          top: 75%;
          left: 50%;
          transform: translateX(-50%);
        }
      }
    }
    */ }
    @media (min-width: 921px) {
      [data-section-type="header-section"] header {
        height: 70px; } }
    .scrolled [data-section-type="header-section"] header {
      height: 60px; }
      @media (min-width: 921px) {
        .scrolled [data-section-type="header-section"] header {
          height: 70px; } }
    [data-section-type="header-section"] header *:not(.btn) {
      color: inherit; }
    [data-section-type="header-section"] header .header__navigation {
      pointer-events: auto;
      width: calc(100%/4);
      flex-basis: unset;
      max-width: unset;
      margin: 0;
      text-align: left; }
      @media (min-width: 921px) {
        [data-section-type="header-section"] header .header__navigation {
          width: calc(100%/4); } }
    [data-section-type="header-section"] header .header__logo {
      pointer-events: auto;
      text-align: center;
      width: calc(100%/2);
      flex-basis: unset;
      webkit-flex-basis: unset;
      max-width: unset;
      margin: 0; }
      @media (min-width: 921px) {
        [data-section-type="header-section"] header .header__logo {
          width: calc(100%/2);
          margin: 0; } }
      [data-section-type="header-section"] header .header__logo img {
        vertical-align: top;
        max-width: 300px;
        width: 140px;
        transition: all 0.2s; }
        @media (min-width: 921px) {
          [data-section-type="header-section"] header .header__logo img {
            width: 100%; } }
        .scrolled [data-section-type="header-section"] header .header__logo img {
          width: 140px; }
          @media (min-width: 921px) {
            .scrolled [data-section-type="header-section"] header .header__logo img {
              width: 200px; } }
    [data-section-type="header-section"] header .header__actionmenu {
      position: relative;
      pointer-events: auto;
      width: calc(100%/4);
      flex-basis: unset;
      webkit-flex-basis: unset;
      max-width: unset;
      margin: 0; }
      @media (min-width: 921px) {
        [data-section-type="header-section"] header .header__actionmenu {
          width: calc(100%/4); } }
      [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action {
        display: inline-block;
        position: relative; }
        @media (min-width: 921px) {
          [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action + .header_actionmenu-action {
            margin-left: 20px; } }
        [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action .action-logo-white {
          display: none; }
        [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action .action-logo, [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action .action-logo-white {
          height: 22px;
          width: 22px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          vertical-align: middle; }
          @media (min-width: 921px) {
            [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action .action-logo, [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action .action-logo-white {
              height: 24px;
              width: 24px; } }
        [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__cart {
          margin: 0; }
          @media (min-width: 921px) {
            [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__cart {
              margin: 0 0 0 20px; } }
        [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account {
          display: none; }
          [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account #action__acount--menu {
            display: none;
            position: absolute;
            left: -25px;
            width: 135px;
            background-color: #fff;
            -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2); }
            [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account #action__acount--menu ul {
              list-style-type: none;
              padding: 20px;
              margin: 0; }
              [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account #action__acount--menu ul li {
                opacity: 0.7;
                padding: 8px 0;
                text-align: left; }
                [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account #action__acount--menu ul li img {
                  display: inline-block;
                  width: 21px;
                  padding: 2px 5px 0 0px; }
            @media (min-width: 921px) {
              [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account #action__acount--menu {
                left: -10px;
                width: 180px; } }
          [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account:hover #action__acount--menu {
            display: block; }
          @media (min-width: 921px) {
            [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account {
              display: inline-block; } }
          @media (min-width: 921px) {
            [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account .action-logo, [data-section-type="header-section"] header .header__actionmenu .header_actionmenu-action.action__account .action-logo-white {
              height: 28px; } }
      [data-section-type="header-section"] header .header__actionmenu .action__search {
        background: transparent;
        border: 0; }
      [data-section-type="header-section"] header .header__actionmenu .hover-cart-count {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: 500;
        font-size: 0.78571em; }
        .scrolled [data-section-type="header-section"] header .header__actionmenu .hover-cart-count {
          color: white; }
        @media (min-width: 921px) {
          [data-section-type="header-section"] header .header__actionmenu .hover-cart-count {
            font-size: 0.92857em; } }

.hamburger {
  width: 20px;
  height: 15px;
  position: relative;
  cursor: pointer;
  border: 0;
  background: transparent;
  margin: 0;
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out; }
  @media (min-width: 921px) {
    .hamburger {
      margin: 0;
      width: 24px;
      height: 18px; } }
  .hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 20px;
    background: i;
    opacity: 1;
    left: 0;
    background: #3c3935;
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out; }
    @media (min-width: 921px) {
      .hamburger span {
        width: 24px; } }
    .hamburger span:nth-child(1) {
      top: 0px; }
    .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
      top: 6px; }
      @media (min-width: 921px) {
        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
          top: 7px; } }
    .hamburger span:nth-child(4) {
      top: 13px; }
      @media (min-width: 921px) {
        .hamburger span:nth-child(4) {
          top: 15px; } }
  .hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%; }
  .hamburger.open span:nth-child(2) {
    width: 100%;
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .hamburger.open span:nth-child(3) {
    width: 100%;
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%; }

/*================ SECTIONS / #SEARCH BAR ================*/
.header__search-bar--container {
  position: absolute;
  left: 0;
  z-index: 13;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  text-align: right;
  background-color: white; }
  @media (min-width: 921px) {
    .header__search-bar--container {
      padding: 0 60px; } }
  .header__search-bar--container .header__search-bar--form {
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
  .header__search-bar--container .header__search-bar--left {
    vertical-align: middle;
    display: inline-block;
    width: calc(100% - 80px); }
    @media (min-width: 921px) {
      .header__search-bar--container .header__search-bar--left {
        width: 50%; } }
    .header__search-bar--container .header__search-bar--left #header__search-bar--input {
      width: 100%;
      border: none;
      font-weight: 400; }
      @media (min-width: 921px) {
        .header__search-bar--container .header__search-bar--left #header__search-bar--input {
          font-size: 18px; } }
  .header__search-bar--container .header__search-bar--right {
    vertical-align: middle;
    display: inline-block;
    margin-left: 30px; }
    .header__search-bar--container .header__search-bar--right .header__search-bar--submit {
      background-color: transparent;
      border: 0px;
      background: url("/cdn/shop/files/icon-search-fr.svg?8542") 50% no-repeat;
      background-size: 100%;
      display: inline-block;
      width: 25px;
      height: 25px; }
      @media (min-width: 921px) {
        .header__search-bar--container .header__search-bar--right .header__search-bar--submit {
          width: 30px;
          height: 30px; } }
  .header__search-bar--container .header__search-bar--close:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    color: white;
    background-color: #f8c1b8;
    padding: 10px;
    opacity: 1;
    z-index: 10000;
    transition: none;
    top: 0;
    right: 0; }

.header__search-results {
  width: 100%;
  text-align: center;
  pointer-events: auto;
  background-color: white;
  padding: 0 20px;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 13;
  max-height: calc(100vh - $header-height);
  overflow: auto;
  border-top: 2px solid #f0f0f0;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex; }
  @media (min-width: 921px) {
    .header__search-results {
      display: block;
      padding: 0 60px;
      max-height: initial; } }
  .header__search-results .header__search-result {
    display: inline-block;
    margin: 20px 5px;
    vertical-align: top;
    width: calc(50% - 10px);
    flex-shrink: 0; }
    @media (min-width: 921px) {
      .header__search-results .header__search-result {
        margin: 20px 40px;
        width: 150px; } }
  .header__search-results .header__search-result--image {
    width: 80px;
    display: inline-block;
    vertical-align: middle; }
    @media (min-width: 921px) {
      .header__search-results .header__search-result--image {
        width: 100%;
        vertical-align: top; } }
  .header__search-results .header__search-result--info {
    width: 100%;
    margin: 5px 0;
    text-align: center;
    display: block;
    vertical-align: middle; }
    @media (min-width: 921px) {
      .header__search-results .header__search-result--info {
        width: auto; } }
  .header__search-results .header__search-result--title {
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0; }
  .header__search-results .header__search-result--type {
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }

/*================ SECTIONS / #NAVIGATION ================*/
[data-section-type="navigation-section"] {
  display: none;
  position: fixed;
  left: -20%;
  top: 0;
  z-index: 11;
  color: #3c3935;
  background: white;
  width: 100%;
  min-width: 300px;
  height: 100%;
  overflow-y: auto; }
  @media (min-width: 921px) {
    [data-section-type="navigation-section"] {
      min-width: 320px;
      width: 20%;
      -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.05);
      box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.05); } }
  [data-section-type="navigation-section"] .navigation__container {
    padding: 0px 0px 0px 20px;
    margin-bottom: 30px; }
    @media (min-width: 921px) {
      [data-section-type="navigation-section"] .navigation__container {
        padding: 0;
        margin-bottom: 60px; } }
  [data-section-type="navigation-section"] .navigation__list {
    max-height: 32px;
    overflow-y: hidden;
    margin-top: 0.8em;
    transition: max-height 0.3s ease-out;
    margin-top: 0px; }
    [data-section-type="navigation-section"] .navigation__list.open {
      max-height: 600px; }
    [data-section-type="navigation-section"] .navigation__list.navigation__list--parent:first-child {
      margin-top: 120px; }
      @media (min-width: 921px) {
        [data-section-type="navigation-section"] .navigation__list.navigation__list--parent:first-child {
          margin-top: 180px; }
          .scrolled [data-section-type="navigation-section"] .navigation__list.navigation__list--parent:first-child {
            margin-top: 120px; } }
    [data-section-type="navigation-section"] .navigation__list .navigation__layer--0 {
      display: block;
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      margin: 0;
      padding: 0.7em 0;
      color: #3c3935; }
      [data-section-type="navigation-section"] .navigation__list .navigation__layer--0:hover {
        color: #3c3935;
        cursor: pointer; }
    [data-section-type="navigation-section"] .navigation__list .navigation__layer--1 {
      display: block;
      padding: 10px 0 10px 15px;
      font-size: 15px;
      -ms-transition: 0.25s ease all;
      -o-transition: 0.25s ease all;
      -webkit-transition: 0.25s ease all;
      transition: 0.25s ease all;
      font-size: 14px;
      font-weight: 400;
      text-transform: uppercase;
      color: #3c3935; }
      [data-section-type="navigation-section"] .navigation__list .navigation__layer--1:hover {
        text-decoration: underline;
        color: #3c3935; }
    [data-section-type="navigation-section"] .navigation__list .navigation__layer--2 {
      display: block;
      padding: 5px 0 5px 30px;
      -ms-transition: 0.25s ease all;
      -o-transition: 0.25s ease all;
      -webkit-transition: 0.25s ease all;
      transition: 0.25s ease all; }
      [data-section-type="navigation-section"] .navigation__list .navigation__layer--2:hover {
        text-decoration: underline;
        color: #3c3935; }
      [data-section-type="navigation-section"] .navigation__list .navigation__layer--2 + lh {
        margin-top: 20px; }
  [data-section-type="navigation-section"] hr {
    width: 20px;
    border-bottom: 2px solid #3c3935;
    margin: 20px 0; }
  [data-section-type="navigation-section"] .navigation__sublist {
    margin: 18px 0; }
    [data-section-type="navigation-section"] .navigation__sublist a {
      color: #3c3935; }
  [data-section-type="navigation-section"] .navigation--close:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    color: white;
    background-color: #f8c1b8;
    padding: 10px;
    opacity: 1;
    z-index: 10000;
    transition: none; }

/*================ INTERNATIONAL SHIPPING BANNER ================*/
.shippingbanner--intl {
  background: #f8c1b8;
  text-transform: uppercase;
  text-align: center;
  font-size: 11px;
  font-style: italic;
  padding: 14px 0; }
  @media (min-width: 921px) {
    .shippingbanner--intl {
      font-size: 15px; } }
  .shippingbanner--intl span {
    font-weight: 600;
    font-style: normal;
    position: relative;
    z-index: 1; }
    @media (min-width: 921px) {
      .shippingbanner--intl span:after {
        content: "";
        background: url("https://cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-21.png?3831218712931061053") center no-repeat;
        background-size: 100%;
        top: -19px;
        left: -40px;
        width: 310px;
        height: 60px;
        display: inline-block;
        position: absolute;
        z-index: -1; } }

/*================ SECTIONS / #CART POPDOWN / #ITEM ADDED ================*/
.item-added__container {
  background: white;
  text-align: left;
  border: 1px dotted #c1c1c1;
  border-top: 3px solid #f8c1b8;
  width: 100%;
  z-index: 13;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05); }
  @media (min-width: 921px) {
    .item-added__container {
      border-top: 1px dotted #c1c1c1;
      width: 400px;
      top: 0;
      right: 0; } }
  .item-added__container .item-added__container--padding {
    padding: 20px; }
  .item-added__container .item-added__header {
    position: relative;
    text-align: center;
    width: 35%;
    display: inline-block;
    padding: 10px 0;
    font-family: futura-pt-bold, sans-serif;
    font-weight: 400;
    font-size: 1.2em;
    background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-4.png?11662454088891728499) center center no-repeat;
    background-size: 100%;
    vertical-align: middle;
    text-transform: uppercase; }
    @media (min-width: 921px) {
      .item-added__container .item-added__header {
        padding: 10px;
        width: 100%;
        display: block;
        background-size: auto 100%; } }
    .item-added__container .item-added__header .item-added__close {
      float: right; }
  .item-added__container .item-added__product {
    width: 65%;
    display: inline-block;
    padding: 0 10px; }
    @media (min-width: 921px) {
      .item-added__container .item-added__product {
        padding: 0;
        width: 100%;
        display: block;
        margin: 20px auto 10px auto; } }
    .item-added__container .item-added__product .item-added__product-image {
      display: inline-block;
      width: calc(50% - 15px);
      margin-right: 15px;
      vertical-align: middle; }
      @media (min-width: 921px) {
        .item-added__container .item-added__product .item-added__product-image {
          width: calc(40% - 20px);
          margin-right: 20px; } }
    .item-added__container .item-added__product .item-added__product-info {
      width: 50%;
      display: inline-block;
      vertical-align: middle; }
      @media (min-width: 921px) {
        .item-added__container .item-added__product .item-added__product-info {
          width: 60%; } }
  .item-added__container .item-added__product-info--title {
    font-weight: 600;
    text-transform: uppercase; }
  .item-added__container .item-added__product-info--price-container {
    font-weight: bold; }
    .item-added__container .item-added__product-info--price-container .item-added__product-info--compare {
      display: inline-block;
      color: #c1c1c1;
      text-decoration: line-through;
      margin-right: 10px; }
    .item-added__container .item-added__product-info--price-container .item-added__product-info--price {
      display: inline-block; }
  .item-added__container .item-added__actions a {
    margin-top: 10px;
    width: 100%; }
  .item-added__container .item-added__actions .item-added__actions-shipping {
    display: none;
    text-align: center;
    margin-top: 20px;
    font-weight: 500; }
  .item-added__container .item-added__upsell {
    border-top: 1px dotted #c1c1c1; }
    .item-added__container .item-added__upsell .item-added__upsell-title {
      display: inline-block;
      vertical-align: middle;
      width: 30%;
      text-align: center;
      font: 400 italic 1.2em futura-pt-bold, sans-serif;
      background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-5.png?8990000729443739265) center center no-repeat;
      background-size: auto 100%;
      text-transform: uppercase; }
    .item-added__container .item-added__upsell .item-added__upsell-product {
      display: inline-block;
      vertical-align: middle;
      width: 70%; }
      .item-added__container .item-added__upsell .item-added__upsell-product .item-added__upsell-product-image {
        display: inline-block;
        vertical-align: middle;
        width: calc(40% - 20px);
        margin-right: 20px; }
      .item-added__container .item-added__upsell .item-added__upsell-product .item-added__upsell-product-info {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
        font-size: 13px; }
        .item-added__container .item-added__upsell .item-added__upsell-product .item-added__upsell-product-info .item-added__upsell-product-info--title {
          text-transform: uppercase;
          font-weight: 600; }

/*================ SECTIONS / #HOMEPAGE SIGNUP ================*/
[data-section-type="homepage-signup"] {
  max-width: 420px; }
  @media (min-width: 921px) {
    [data-section-type="homepage-signup"] {
      width: 800px;
      max-width: unset;
      min-height: 460px;
      border-bottom: 40px solid #f8c1b8;
      padding: 40px; } }
  [data-section-type="homepage-signup"] .popup-signup__left {
    display: none;
    width: 80%;
    margin: 20px auto; }
    @media (min-width: 921px) {
      [data-section-type="homepage-signup"] .popup-signup__left {
        width: 40%;
        float: left;
        margin: 40px auto; } }
  [data-section-type="homepage-signup"] .popup-signup__right {
    text-align: center;
    position: relative;
    padding: 30px 0 0 0; }
    @media (min-width: 921px) {
      [data-section-type="homepage-signup"] .popup-signup__right {
        width: 100%;
        display: inline-block; } }
    [data-section-type="homepage-signup"] .popup-signup__right .popup-signup__title {
      position: relative;
      display: inline-block;
      margin: 0 auto;
      font: 400 38px futura-pt-bold, sans-serif;
      color: #f8c1b8; }
      @media (min-width: 921px) {
        [data-section-type="homepage-signup"] .popup-signup__right .popup-signup__title {
          font-size: 50px; } }
      [data-section-type="homepage-signup"] .popup-signup__right .popup-signup__title:before {
        content: '';
        display: block;
        position: absolute;
        width: 35px;
        height: 35px;
        background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/icon-email_popup.png?17318190638261348176) center no-repeat;
        background-size: 100%;
        right: -30px;
        top: -30px; }
        @media (min-width: 921px) {
          [data-section-type="homepage-signup"] .popup-signup__right .popup-signup__title:before {
            width: 45px;
            height: 45px;
            right: -30px;
            top: -30px; } }
    [data-section-type="homepage-signup"] .popup-signup__right .popup-signup__caption {
      font-size: 16px;
      font-weight: 400;
      text-transform: uppercase; }
  [data-section-type="homepage-signup"] .popup-signup__content {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase; }
    [data-section-type="homepage-signup"] .popup-signup__content span {
      color: #f8c1b8; }
  [data-section-type="homepage-signup"] .popup-signup__form {
    position: relative; }
    [data-section-type="homepage-signup"] .popup-signup__form input[type=email] {
      width: 100%;
      max-width: 460px;
      border-color: #3c3935; }
    [data-section-type="homepage-signup"] .popup-signup__form input[type=submit] {
      width: 100%;
      margin: 10px auto;
      padding: 30px;
      background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-16.png?17318190638261348176) center 6px no-repeat;
      border: none;
      background-size: auto 100%;
      font-size: 16px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.13em; }

.signup__complete {
  font-size: 18px;
  font-weight: 400; }

/*================ PAGE / PRIVACY REQUEST ================*/
[template="privacy-request"] {
  text-align: center;
  padding: 20px 0 0 0;
  margin-bottom: 0; }
  @media (min-width: 921px) {
    [template="privacy-request"] {
      padding: 40px 0 0 0; } }
  [template="privacy-request"] .privacy__title {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    font: 400 26px futura-pt-bold, sans-serif; }
    @media (min-width: 921px) {
      [template="privacy-request"] .privacy__title {
        font-size: 50px; } }
  [template="privacy-request"] .privacy__caption {
    font-size: 14px;
    font-weight: 400;
    max-width: 800px;
    width: 100%;
    margin: 20px auto 0 auto;
    padding: 0 20px; }
    @media (min-width: 921px) {
      [template="privacy-request"] .privacy__caption {
        font-size: 16px; } }
  [template="privacy-request"] .form__container {
    background: #fff5f3;
    position: relative;
    padding: 20px;
    margin-top: 20px;
    z-index: 1; }
    [template="privacy-request"] .form__container form {
      display: block;
      margin: 20px auto 0 auto;
      max-width: 540px; }
      [template="privacy-request"] .form__container form .form__row {
        position: relative;
        margin-bottom: 25px; }
        [template="privacy-request"] .form__container form .form__row label {
          font-weight: 400;
          font-family: futura-pt-bold;
          text-transform: uppercase;
          margin-bottom: 10px; }
        [template="privacy-request"] .form__container form .form__row:after {
          content: '';
          display: block;
          width: 100%;
          height: 45px;
          background: #f8c1b8;
          position: absolute;
          top: 35px;
          right: -5px;
          z-index: -1;
          border: 1px solid #777777; }
        [template="privacy-request"] .form__container form .form__row.form--errors:after {
          display: none; }
        [template="privacy-request"] .form__container form .form__row.form--success:after {
          display: none; }
        [template="privacy-request"] .form__container form .form__row:last-child:after {
          display: none; }
        [template="privacy-request"] .form__container form .form__row .form__disclaimer {
          margin: 20px auto 10px auto;
          line-height: 1.3;
          font-size: 10px; }
          @media (min-width: 921px) {
            [template="privacy-request"] .form__container form .form__row .form__disclaimer {
              font-size: 11px; } }
      [template="privacy-request"] .form__container form input[type=email] {
        width: 100%;
        border-color: #3c3935;
        font-weight: 400; }
      [template="privacy-request"] .form__container form select {
        width: 100%;
        border-color: #3c3935;
        font-weight: 400; }
      [template="privacy-request"] .form__container form textarea {
        width: 100%;
        border-color: #3c3935;
        font-weight: 400; }
      [template="privacy-request"] .form__container form input[type=email], [template="privacy-request"] .form__container form select, [template="privacy-request"] .form__container form textarea {
        padding: 15px; }
        [template="privacy-request"] .form__container form input[type=email]::placeholder, [template="privacy-request"] .form__container form select::placeholder, [template="privacy-request"] .form__container form textarea::placeholder {
          color: #c1c1c1;
          font-style: italic; }
      [template="privacy-request"] .form__container form input[type=submit] {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 30px auto;
        padding: 16px;
        background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-16.png?17318190638261348176) center 6px no-repeat;
        background: #1f1f1f;
        border: none;
        background-size: auto 100%;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.13em;
        color: white; }
        [template="privacy-request"] .form__container form input[type=submit]:hover {
          background: #333; }

/*================ PAGE / EMAIL SIGNUP ================*/
[template="email-signup"] {
  text-align: center;
  padding: 60px 20px;
  border-top: 20px solid #f8c1b8;
  margin-bottom: 0; }
  @media (min-width: 921px) {
    [template="email-signup"] {
      border-top: 40px solid #f8c1b8;
      padding: 80px 20px; } }
  [template="email-signup"] .popup-signup__title {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    font: 400 38px futura-pt-bold, sans-serif;
    color: #f8c1b8; }
    @media (min-width: 921px) {
      [template="email-signup"] .popup-signup__title {
        font-size: 50px; } }
    [template="email-signup"] .popup-signup__title:before {
      content: '';
      display: block;
      position: absolute;
      width: 35px;
      height: 35px;
      background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/icon-email_popup.png?17318190638261348176) center no-repeat;
      background-size: 100%;
      right: -30px;
      top: -30px; }
      @media (min-width: 921px) {
        [template="email-signup"] .popup-signup__title:before {
          width: 45px;
          height: 45px;
          right: -30px;
          top: -30px; } }
  [template="email-signup"] .popup-signup__caption {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase; }
  [template="email-signup"] .popup-signup__content {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase; }
    [template="email-signup"] .popup-signup__content span {
      color: #f8c1b8; }
  [template="email-signup"] .signupform {
    position: relative;
    margin-top: 20px; }
    [template="email-signup"] .signupform input[type=email] {
      width: 100%;
      max-width: 460px;
      border-color: #3c3935;
      font-weight: 400; }
    [template="email-signup"] .signupform input[type=submit] {
      width: 100%;
      margin: 10px auto;
      padding: 30px;
      background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-16.png?17318190638261348176) center 6px no-repeat;
      border: none;
      background-size: auto 100%;
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      color: white; }
    [template="email-signup"] .signupform .complete {
      font-size: 28px;
      font-weight: 600;
      color: #f8c1b8;
      text-transform: uppercase; }
  [template="email-signup"] .signup--disclaimer {
    margin-top: 30px; }

/*================ SECTIONS / #GALLERY ================*/
[data-section-type="gallery"] .homepage-gallery__group {
  display: inline-block;
  width: 100%;
  vertical-align: top; }
  @media (min-width: 921px) {
    [data-section-type="gallery"] .homepage-gallery__group {
      width: 50%;
      padding: 0; }
      [data-section-type="gallery"] .homepage-gallery__group:nth-child(1) {
        padding: 0 1.5% 0 0; }
      [data-section-type="gallery"] .homepage-gallery__group:nth-child(2) {
        padding: 0 0 0 1.5%; } }
[data-section-type="gallery"] .homepage-gallery__box {
  position: relative;
  display: inline-block;
  width: calc(50% - 10px);
  vertical-align: top;
  margin: 0 0 20px 10px; }
  [data-section-type="gallery"] .homepage-gallery__box .homepage-gallery__shop--link {
    display: block;
    margin: 10px 0 0 0;
    z-index: 10; }
    @media (min-width: 921px) {
      [data-section-type="gallery"] .homepage-gallery__box .homepage-gallery__shop--link {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: none;
        margin: 0; } }
  @media (min-width: 921px) {
    [data-section-type="gallery"] .homepage-gallery__box {
      width: calc(50% - 3%);
      margin: 0 0 6% 0; } }
  [data-section-type="gallery"] .homepage-gallery__box:nth-child(2n-1) {
    margin: 0 10px 20px 0; }
    @media (min-width: 921px) {
      [data-section-type="gallery"] .homepage-gallery__box:nth-child(2n-1) {
        margin: 0 6% 6% 0; } }
  [data-section-type="gallery"] .homepage-gallery__box.homepage-gallery__box--big {
    width: 100%; }
    @media (min-width: 921px) {
      [data-section-type="gallery"] .homepage-gallery__box.homepage-gallery__box--big {
        margin: 0; } }
  [data-section-type="gallery"] .homepage-gallery__box:hover .homepage-gallery__content {
    opacity: 1; }
  [data-section-type="gallery"] .homepage-gallery__box:hover .homepage-gallery__shop--link {
    display: block; }
    [data-section-type="gallery"] .homepage-gallery__box:hover .homepage-gallery__shop--link:hover {
      cursor: pointer; }
  [data-section-type="gallery"] .homepage-gallery__box a * {
    cursor: pointer; }
  [data-section-type="gallery"] .homepage-gallery__box form {
    margin-top: 30px; }
    @media (min-width: 921px) {
      [data-section-type="gallery"] .homepage-gallery__box form {
        margin-top: 0; } }
[data-section-type="gallery"] .homepage-gallery__content {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.3s;
  padding-bottom: 10px;
  margin-top: 10px; }
  @media (min-width: 921px) {
    [data-section-type="gallery"] .homepage-gallery__content {
      opacity: 0;
      position: absolute;
      background: rgba(255, 255, 255, 0.8);
      top: 0;
      left: 0;
      text-align: center;
      padding-bottom: 0px;
      margin: 0; } }
  [data-section-type="gallery"] .homepage-gallery__content .homepage-gallery__content--text {
    font-size: 12px;
    color: #3c3935;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical; }
    @media (min-width: 921px) {
      [data-section-type="gallery"] .homepage-gallery__content .homepage-gallery__content--text {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 20px;
        font-size: 14px;
        font-weight: 400;
        overflow: unset;
        display: block; } }
    [data-section-type="gallery"] .homepage-gallery__content .homepage-gallery__content--text .homepage-gallery__content--title {
      font-weight: 700;
      text-transform: uppercase;
      width: calc(100%);
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      margin-bottom: 1.5em; }
      @media (min-width: 921px) {
        [data-section-type="gallery"] .homepage-gallery__content .homepage-gallery__content--text .homepage-gallery__content--title {
          font-size: 18px;
          margin-bottom: 10px;
          width: 100%;
          text-overflow: unset;
          white-space: unset;
          overflow: unset; } }
    [data-section-type="gallery"] .homepage-gallery__content .homepage-gallery__content--text .homepage-gallery__content--price {
      font-weight: 700;
      text-transform: uppercase;
      position: absolute;
      top: 1.5em;
      left: 0;
      width: 100%;
      text-align: left; }
      @media (min-width: 921px) {
        [data-section-type="gallery"] .homepage-gallery__content .homepage-gallery__content--text .homepage-gallery__content--price {
          width: 100%;
          top: 0px;
          text-align: center;
          position: relative;
          font-size: 18px;
          margin-top: 20px; } }
  @media (min-width: 921px) {
    [data-section-type="gallery"] .homepage-gallery__content {
      bottom: 20px;
      left: 50%;
      right: auto;
      transform: translateX(-50%); } }
[data-section-type="gallery"] .homepage-gallery__content--stars {
  position: absolute;
  left: 0;
  bottom: -20px; }
  @media (min-width: 921px) {
    [data-section-type="gallery"] .homepage-gallery__content--stars {
      display: block;
      position: relative;
      top: 25px; } }
  [data-section-type="gallery"] .homepage-gallery__content--stars .homepage-gallery__content--star {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_empty.png?12612440899655996006) center no-repeat;
    background-size: 100%;
    border: none; }
    @media (min-width: 921px) {
      [data-section-type="gallery"] .homepage-gallery__content--stars .homepage-gallery__content--star {
        width: 22px;
        height: 22px; } }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="0"] .homepage-gallery__content--star:nth-child(1) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_half.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="1"] .homepage-gallery__content--star:nth-child(1) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_full.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="2"] .homepage-gallery__content--star:nth-child(2) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_half.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="3"] .homepage-gallery__content--star:nth-child(2) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_full.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="4"] .homepage-gallery__content--star:nth-child(3) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_half.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="5"] .homepage-gallery__content--star:nth-child(3) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_full.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="6"] .homepage-gallery__content--star:nth-child(4) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_half.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="7"] .homepage-gallery__content--star:nth-child(4) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_full.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="8"] .homepage-gallery__content--star:nth-child(5) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_half.png?12612440899655996006); }
  [data-section-type="gallery"] .homepage-gallery__content--stars[star-count~="9"] .homepage-gallery__content--star:nth-child(5) {
    background-image: url(https://cdn.shopify.com/s/files/1/0017/9027/9798/files/FR_ReviewHeart_full.png?12612440899655996006); }

/*================ SECTIONS / #BLOGOSPHERE #HOMEBLOG ================*/
[data-section-type="homeblog"] {
  z-index: 1;
  line-height: 1.3;
  position: relative; }
  @media (min-width: 921px) {
    [data-section-type="homeblog"]:after {
      content: '';
      display: block;
      position: absolute;
      width: 50%;
      height: 100%;
      bottom: -260px;
      right: 0;
      z-index: -1;
      background: url(/cdn/shop/files/collage-8-blk.png?17708167858297063003) right bottom no-repeat;
      background-size: 100%; } }
  [data-section-type="homeblog"] .homeblog-a, [data-section-type="homeblog"] .homeblog-c {
    text-align: center; }
    @media (min-width: 921px) {
      [data-section-type="homeblog"] .homeblog-a, [data-section-type="homeblog"] .homeblog-c {
        float: right;
        width: 50%;
        padding-left: 60px; } }
    @media (min-width: 1281px) {
      [data-section-type="homeblog"] .homeblog-a, [data-section-type="homeblog"] .homeblog-c {
        width: 40%; } }
  @media (min-width: 921px) {
    [data-section-type="homeblog"] .homeblog-b {
      float: left;
      width: 50%;
      padding-right: 60px; } }
  @media (min-width: 1281px) {
    [data-section-type="homeblog"] .homeblog-b {
      width: 60%; } }
  [data-section-type="homeblog"] .homeblog-a__container {
    margin: 0 auto;
    padding: 30px;
    text-align: left;
    background: #f0f0f0;
    position: relative;
    top: -60px; }
    @media (min-width: 921px) {
      [data-section-type="homeblog"] .homeblog-a__container {
        max-width: 320px;
        margin-bottom: 60px;
        top: -200px;
        padding: 40px 30px;
        margin-bottom: 60px; } }
    [data-section-type="homeblog"] .homeblog-a__container .homeblog-a__eyecatch {
      font: 500 italic 15px "Futura-PT", sans-serif;
      text-transform: uppercase; }
      @media (min-width: 921px) {
        [data-section-type="homeblog"] .homeblog-a__container .homeblog-a__eyecatch {
          font-size: 18px; } }
    [data-section-type="homeblog"] .homeblog-a__container .homeblog-a__title {
      font: 400 italic 26px futura-pt-bold, sans-serif;
      margin: 0 0 5px 0; }
    [data-section-type="homeblog"] .homeblog-a__container .homeblog-a__words {
      font: 500 italic 14px "Futura-PT", sans-serif;
      text-transform: uppercase; }
      [data-section-type="homeblog"] .homeblog-a__container .homeblog-a__words .homeblog-a__word {
        display: inline-block; }
        [data-section-type="homeblog"] .homeblog-a__container .homeblog-a__words .homeblog-a__word:after {
          content: '\2022'; }
        [data-section-type="homeblog"] .homeblog-a__container .homeblog-a__words .homeblog-a__word:last-child:after {
          content: none; }
  [data-section-type="homeblog"] .homeblog-b__container {
    text-align: center; }
    [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__images {
      position: relative;
      width: 100%; }
      @media (min-width: 921px) {
        [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__images {
          margin-bottom: 120px; } }
    [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__image--background {
      position: relative;
      display: inline-block;
      width: 100%;
      left: -20px;
      top: -20px; }
      @media (min-width: 921px) {
        [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__image--background {
          max-width: 460px;
          top: 0;
          left: 0; } }
    [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__image--foreground {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 100%;
      display: inline-block;
      overflow: hidden; }
      @media (min-width: 921px) {
        [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__image--foreground {
          top: 0;
          max-width: 460px;
          left: 50%;
          transform: translate(-30%, 15%); } }
    [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box {
      width: 100%;
      position: relative;
      top: 10px;
      padding: 30px;
      background: rgba(248, 193, 184, 0.6);
      margin-bottom: 40px;
      font: 200 13px "Futura-PT", sans-serif; }
      @media (min-width: 921px) {
        [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box {
          width: 110%;
          top: -80px;
          margin-bottom: 0px;
          padding: 50px 30px; } }
      @media (min-width: 1281px) {
        [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box {
          width: 90%; } }
      [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box .homeblog-b__eyecatch {
        font: 700 18px "Futura-PT", sans-serif;
        text-transform: uppercase;
        margin: 0 auto 10px auto; }
        @media (min-width: 1281px) {
          [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box .homeblog-b__eyecatch {
            font-size: 20px; } }
      [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box .homeblog-b__subtitle {
        font-weight: 500; }
      [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box .homeblog-b__title {
        font: 500 italic 26px "Futura-PT", sans-serif;
        text-transform: uppercase; }
        @media (min-width: 1281px) {
          [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box .homeblog-b__title {
            font-size: 32px; } }
      [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box .homeblog-b__content {
        margin: 0; }
      [data-section-type="homeblog"] .homeblog-b__container .homeblog-b__content-box .btn--secondary {
        width: 180px;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%); }
  [data-section-type="homeblog"] .homeblog-c__container {
    position: relative;
    overflow: hidden; }
    @media (min-width: 921px) {
      [data-section-type="homeblog"] .homeblog-c__container {
        top: 180px; } }
  [data-section-type="homeblog"] .homeblog-d__container {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid #c1c1c1;
    transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    padding: 10px; }
    [data-section-type="homeblog"] .homeblog-d__container:hover {
      border-color: #777777; }
      [data-section-type="homeblog"] .homeblog-d__container:hover img {
        transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
        transform: scale(1.1); }
    @media (min-width: 921px) {
      [data-section-type="homeblog"] .homeblog-d__container {
        width: 80%;
        left: 50%;
        transform: translateX(-50%); } }
    @media (min-width: 1281px) {
      [data-section-type="homeblog"] .homeblog-d__container {
        width: 85%; } }
    [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__product {
      width: 100%;
      display: inline-block;
      vertical-align: middle;
      background: #fff5f3; }
      @media (min-width: 921px) {
        [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__product {
          width: 25%; } }
      [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__product img {
        width: 80%;
        margin: 10px auto 0 auto;
        display: block; }
    [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__p {
      width: 100%;
      display: inline-block;
      vertical-align: middle;
      background: #fff5f3; }
      @media (min-width: 921px) {
        [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__p {
          width: 26%;
          float: left;
          height: 260px; } }
      [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__p img {
        width: 80%;
        display: block;
        margin: 0 auto;
        position: relative;
        top: 10px; }
    [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container {
      width: 100%;
      display: inline-block;
      vertical-align: middle;
      padding: 30px 20px;
      color: #3c3935;
      text-align: center;
      background: #fff5f3; }
      @media (min-width: 921px) {
        [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container {
          padding: 40px; } }
      [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container .homeblog-d__title {
        font: 400 22px futura-pt-bold, sans-serif; }
        @media (min-width: 1281px) {
          [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container .homeblog-d__title {
            font-size: 26px; } }
      [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container .homeblog-d__content {
        font: 500 italic 14px "Futura-PT", sans-serif;
        text-transform: uppercase;
        text-decoration: underline; }
      [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container .homeblog-d__description {
        margin: 0 auto 20px auto;
        font: 200 13px "Futura-PT", sans-serif;
        width: 92%; }
        [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container .homeblog-d__description p {
          margin: 0 auto 20px auto; }
          [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container .homeblog-d__description p.homeblog-d__description--step {
            font-weight: 700;
            font-size: 14px;
            margin: 10px auto;
            text-transform: uppercase; }
            [data-section-type="homeblog"] .homeblog-d__container .homeblog-d__content-container .homeblog-d__description p.homeblog-d__description--step span {
              color: #f8c1b8; }

/*================ SECTIONS / #BOXES ================*/
[data-section-type="boxes"] {
  text-align: center; }
  [data-section-type="boxes"] .homepage-box__carousel .homepage-box {
    width: 80%; }
    @media (min-width: 921px) {
      [data-section-type="boxes"] .homepage-box__carousel .homepage-box {
        width: 100%; } }
  [data-section-type="boxes"] .homepage-box--wrap__title {
    font: 500 italic 26px "Futura-PT", sans-serif;
    color: #c1c1c1; }
    [data-section-type="boxes"] .homepage-box--wrap__title:before {
      content: '';
      display: inline-block;
      height: 2px;
      width: 30px;
      background: #c1c1c1;
      position: absolute;
      margin: 17px 0 0 -50px; }
      @media (min-width: 921px) {
        [data-section-type="boxes"] .homepage-box--wrap__title:before {
          width: 60px;
          margin: 17px 0 0 -80px; } }
    [data-section-type="boxes"] .homepage-box--wrap__title:after {
      content: '';
      display: inline-block;
      height: 2px;
      width: 30px;
      background: #c1c1c1;
      position: absolute;
      margin: 17px 0 0 20px; }
      @media (min-width: 921px) {
        [data-section-type="boxes"] .homepage-box--wrap__title:after {
          width: 60px; } }
  [data-section-type="boxes"] .homepage-box {
    width: 80%;
    margin: 0 auto; }
    @media (max-width: 920px) {
      [data-section-type="boxes"] .homepage-box.homepage-box--right .homepage-box__floating {
        transform: translateY(-50%); }
      [data-section-type="boxes"] .homepage-box.homepage-box--right .homepage-box__background {
        left: -10px; } }
    @media (min-width: 921px) {
      [data-section-type="boxes"] .homepage-box {
        width: calc(100% / 3 - 40px);
        width: 100%;
        display: inline-block;
        padding: 0;
        margin: 0 20px -60px 20px;
        max-width: 300px; } }
  [data-section-type="boxes"] .homepage-box__image {
    overflow: hidden; }
  [data-section-type="boxes"] .homepage-box__floating {
    position: relative;
    transform: translateY(-50%);
    padding: 0 0 20px 0;
    color: #3c3935; }
    [data-section-type="boxes"] .homepage-box__floating:after {
      content: "";
      position: absolute;
      top: -5px;
      left: 10px;
      width: 100%;
      height: 100%;
      border: 2px solid #fff5f3; }
    [data-section-type="boxes"] .homepage-box__floating .homepage-box__title {
      font-size: 16px;
      margin: 0 0 0 10px; }
    [data-section-type="boxes"] .homepage-box__floating .homepage-box__subtitle {
      font: 700 16px "Futura-PT", sans-serif;
      margin: 0 0 0 10px;
      text-transform: uppercase; }
  [data-section-type="boxes"] .homepage-box__background {
    position: absolute;
    z-index: -1;
    top: -10px;
    width: 100%;
    height: 100%;
    background: rgba(248, 193, 184, 0.6); }

/*================ SECTIONS / #COLLECTION LISTING #LISTING ================*/
[data-section-type="collection-listing-section"] {
  text-align: center;
  padding: 0 20px; }
  @media (min-width: 921px) {
    [data-section-type="collection-listing-section"] {
      padding: 0 30px; } }
  [data-section-type="collection-listing-section"] .collection-listing__collection {
    padding: 10px; }
    @media (min-width: 921px) {
      [data-section-type="collection-listing-section"] .collection-listing__collection {
        padding: 30px; } }
    [data-section-type="collection-listing-section"] .collection-listing__collection .collection-listing__content .collection-listing__content--title {
      font: 400 16px futura-pt-bold, sans-serif;
      text-transform: uppercase;
      padding: 20px 0;
      display: block;
      margin: 0 auto;
      cursor: pointer;
      color: #3c3935; }
      @media (min-width: 921px) {
        [data-section-type="collection-listing-section"] .collection-listing__collection .collection-listing__content .collection-listing__content--title {
          font-size: 20px; } }
  [data-section-type="collection-listing-section"] .collection-listing__container {
    position: relative; }
    [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy {
      padding: 16px 20px; }
      [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy:after, [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy:before {
        content: '';
        display: inline-block;
        width: calc(50% - 150px);
        height: 1px;
        background: #e8e8e8;
        position: absolute;
        top: 30px; }
      [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy:after {
        right: 0; }
      [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy:before {
        left: 0; }
      @media (min-width: 921px) {
        [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy {
          padding: 16px 30px; }
          [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy:after, [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy:before {
            width: calc(50% - 230px); }
          [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy:after {
            right: 30px; }
          [data-section-type="collection-listing-section"] .collection-listing__container .title--fancy:before {
            left: 30px; } }

/*================ SECTIONS / #INFORMATION CENTER ================*/
[data-section-type="information-center"] .information__container {
  position: relative;
  text-align: center; }
  [data-section-type="information-center"] .information__container + .information__container {
    margin-top: 30px; }
  @media (min-width: 921px) {
    [data-section-type="information-center"] .information__container {
      text-align: left;
      padding: 120px 0;
      margin-bottom: -60px; } }
  [data-section-type="information-center"] .information__container:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px; }
  [data-section-type="information-center"] .information__container.information__container--right .information-a__container {
    right: 0;
    left: auto; }
  [data-section-type="information-center"] .information__container.information__container--right .information-b__container {
    margin-left: 0;
    margin-right: auto; }
[data-section-type="information-center"] .information-a__container {
  width: 100%;
  background: rgba(248, 193, 184, 0.6);
  padding: 40px 30px;
  position: relative;
  z-index: 1; }
  @media (min-width: 921px) {
    [data-section-type="information-center"] .information-a__container {
      width: 300px;
      position: absolute;
      top: 0;
      left: 0; } }
  @media (min-width: 1281px) {
    [data-section-type="information-center"] .information-a__container {
      width: 460px; } }
  [data-section-type="information-center"] .information-a__container .information-a__title {
    font: 500 italic 20px "Futura-PT", sans-serif;
    text-transform: uppercase; }
    @media (min-width: 921px) {
      [data-section-type="information-center"] .information-a__container .information-a__title {
        font-size: 24px; } }
[data-section-type="information-center"] .information-b__container {
  width: 100%;
  padding: 20px 60px;
  margin-right: 0;
  margin-left: auto;
  background: #fff5f3; }
  @media (min-width: 921px) {
    [data-section-type="information-center"] .information-b__container {
      width: 70%; } }
  [data-section-type="information-center"] .information-b__container .information-b__image {
    display: inline-block;
    width: 100%;
    vertical-align: middle; }
    @media (min-width: 921px) {
      [data-section-type="information-center"] .information-b__container .information-b__image {
        width: 35%; } }
    @media (min-width: 921px) {
      [data-section-type="information-center"] .information-b__container .information-b__image + .information-b__content {
        width: 60%; } }
  [data-section-type="information-center"] .information-b__container .information-b__content {
    width: 100%;
    display: inline-block;
    vertical-align: middle; }
    [data-section-type="information-center"] .information-b__container .information-b__content .information-b__title {
      font: 400 22px futura-pt-bold, sans-serif;
      margin: 0 0 20px 0;
      text-transform: uppercase; }
      @media (min-width: 921px) {
        [data-section-type="information-center"] .information-b__container .information-b__content .information-b__title {
          font-size: 26px; } }
      @media (min-width: 1281px) {
        [data-section-type="information-center"] .information-b__container .information-b__content .information-b__title {
          font-size: 30px; } }
    [data-section-type="information-center"] .information-b__container .information-b__content .btn {
      border-color: #3c3935;
      width: 220px;
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%); }
      @media (min-width: 921px) {
        [data-section-type="information-center"] .information-b__container .information-b__content .btn {
          position: relative;
          bottom: unset;
          left: unset;
          transform: none; } }

/*================ SECTIONS / #QUOTES ================*/
[data-section-type="quotes"] .quote__container {
  text-align: center;
  margin: 60px auto 0 auto; }
  @media (min-width: 921px) {
    [data-section-type="quotes"] .quote__container {
      margin: 0 auto; } }
  @media (max-width: 920px) {
    [data-section-type="quotes"] .quote__container .owl-stage {
      display: box;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -moz-box;
      box-pack: center;
      box-align: center;
      -webkit-box-pack: center;
      -webkit-box-align: center;
      -ms-flex-pack: center;
      -ms-flex-align: center;
      -moz-box-pack: center;
      -moz-box-align: center; } }
[data-section-type="quotes"] .quote {
  display: inline-block;
  padding: 0px 20px;
  margin-bottom: 20px; }
  @media (min-width: 921px) {
    [data-section-type="quotes"] .quote {
      padding: 0px 60px;
      max-width: 540px; } }
  [data-section-type="quotes"] .quote .quote__content {
    font: italic 18px Bodoni MT, Didot, Times New Roman, serif;
    margin: 40px auto 60px auto; }
    @media (min-width: 921px) {
      [data-section-type="quotes"] .quote .quote__content {
        min-height: 120px;
        vertical-align: middle;
        display: -webkit-box;
        -webkit-box-align: center; } }
    [data-section-type="quotes"] .quote .quote__content svg {
      color: #999999;
      display: block;
      margin: 10px auto; }
    [data-section-type="quotes"] .quote .quote__content:before {
      content: '\201C';
      display: block;
      font-size: 60px;
      color: #e8e8e8;
      line-height: 53px;
      position: absolute;
      left: 50%;
      top: 0px;
      transform: translateX(-50%); }
      @media (min-width: 921px) {
        [data-section-type="quotes"] .quote .quote__content:before {
          top: 0px; } }
    [data-section-type="quotes"] .quote .quote__content:after {
      content: '\201D';
      display: block;
      font-size: 60px;
      color: #e8e8e8;
      line-height: 53px;
      margin: 20px auto;
      position: absolute;
      left: 50%;
      transform: translateX(-50%); }
      @media (min-width: 921px) {
        [data-section-type="quotes"] .quote .quote__content:after {
          line-height: unset; } }
  [data-section-type="quotes"] .quote .quote__signature {
    width: 100px;
    margin: 0 auto; }

/*================ SECTIONS / #HOMEPAGE ICONS ================*/
[data-section-type="homeicons"] .homeicons__content {
  text-align: center; }
  [data-section-type="homeicons"] .homeicons__content p {
    font: 500 16px "Futura-PT", sans-serif;
    text-transform: uppercase;
    margin: 60px auto 20px auto;
    max-width: 940px; }
    @media (min-width: 921px) {
      [data-section-type="homeicons"] .homeicons__content p {
        font-size: 26px; } }
[data-section-type="homeicons"] .homeicons__icons {
  max-width: 480px;
  margin: 0 auto; }
  @media (min-width: 921px) {
    [data-section-type="homeicons"] .homeicons__icons {
      max-width: 940px; } }
  [data-section-type="homeicons"] .homeicons__icons .homeicons__icon {
    width: calc(100% / 5);
    padding: 20px 10px;
    display: inline-block;
    vertical-align: top; }
    @media (min-width: 921px) {
      [data-section-type="homeicons"] .homeicons__icons .homeicons__icon {
        padding: 30px 40px; } }

/*================ SECTIONS / #HERO ================*/
[data-section-type="hero"] .hero__header {
  text-align: center;
  position: relative;
  z-index: 1; }
[data-section-type="hero"] .hero__container {
  position: relative;
  margin-right: 0px;
  padding-right: 0px;
  text-align: right; }
  [data-section-type="hero"] .hero__container .hero__image {
    display: inline-block;
    width: 100%; }
  [data-section-type="hero"] .hero__container .hero__content {
    text-align: left;
    width: 320px;
    padding: 20px;
    position: absolute;
    top: 50%; }
    [data-section-type="hero"] .hero__container .hero__content:after {
      content: "";
      width: 60px;
      height: 2px;
      background-color: #999999;
      display: inline-block;
      margin-top: 20px; }

/*================ SECTIONS / #VIDEO ================*/
[data-section-type="video"] .video__container {
  position: relative; }
[data-section-type="video"] .video__container--video video {
  width: 100%; }
[data-section-type="video"] .video__container--image {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%); }
[data-section-type="video"] .video__container--content {
  text-align: center;
  padding: 20px 0px; }
  @media (min-width: 921px) {
    [data-section-type="video"] .video__container--content {
      padding: 60px 0px; } }
@media (min-width: 921px) {
  [data-section-type="video"] .video__container--icons {
    margin: 0 120px; } }
[data-section-type="video"] .video__container--icons .video__container--icon {
  width: calc(100% / 5);
  padding: 20px 10px;
  display: inline-block;
  vertical-align: top; }
  @media (min-width: 921px) {
    [data-section-type="video"] .video__container--icons .video__container--icon {
      padding: 20px; } }
  @media (min-width: 1281px) {
    [data-section-type="video"] .video__container--icons .video__container--icon {
      padding: 20px 40px; } }

/*================ SECTIONS / #SLIDESHOW ================*/
.homepage-banner-aa {
  background: #3c3935;
  padding: 15px 20px; }
  .homepage-banner-aa p {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: white; }
    @media (min-width: 921px) {
      .homepage-banner-aa p {
        font-size: 13px; } }
    .homepage-banner-aa p a {
      color: white;
      font-weight: 700;
      text-decoration: underline; }

[data-section-type="slideshow"] #slideshow {
  width: 100%;
  max-height: 540px;
  height: auto;
  position: relative;
  overflow: hidden; }
  @media (min-width: 1281px) {
    [data-section-type="slideshow"] #slideshow {
      max-height: 700px;
      height: 70vh; } }
  [data-section-type="slideshow"] #slideshow.slideshow--image {
    height: 100%;
    max-height: initial; }
  [data-section-type="slideshow"] #slideshow a {
    opacity: 1; }
  [data-section-type="slideshow"] #slideshow .slideshow__item {
    position: relative;
    height: 100%; }
    [data-section-type="slideshow"] #slideshow .slideshow__item .slideshow__image img {
      vertical-align: top; }
    [data-section-type="slideshow"] #slideshow .slideshow__item .slideshow__image video {
      width: 100%; }

/*================ SECTIONS / #FEATURED COLLECTION ================*/
[data-section-type="featured-collection-section"] {
  text-align: center; }
  [data-section-type="featured-collection-section"].widescreen {
    margin: 40px auto; }
  [data-section-type="featured-collection-section"] .featured-collection__container {
    position: relative; }
    [data-section-type="featured-collection-section"] .featured-collection__container .featured-collection__title {
      font: 400 italic 20px futura-pt-bold, sans-serif;
      text-transform: uppercase;
      background: #fff5f3;
      padding: 16px 20px;
      display: inline-block; }
      @media (min-width: 921px) {
        [data-section-type="featured-collection-section"] .featured-collection__container .featured-collection__title {
          font-size: 26px;
          padding: 16px 30px; } }
      [data-section-type="featured-collection-section"] .featured-collection__container .featured-collection__title:after, [data-section-type="featured-collection-section"] .featured-collection__container .featured-collection__title:before {
        content: '';
        display: inline-block;
        width: calc(50% - 120px);
        height: 1px;
        background: #e8e8e8;
        position: absolute;
        top: 30px; }
        @media (min-width: 921px) {
          [data-section-type="featured-collection-section"] .featured-collection__container .featured-collection__title:after, [data-section-type="featured-collection-section"] .featured-collection__container .featured-collection__title:before {
            width: calc(50% - 160px); } }
      [data-section-type="featured-collection-section"] .featured-collection__container .featured-collection__title:after {
        right: 0; }
      [data-section-type="featured-collection-section"] .featured-collection__container .featured-collection__title:before {
        left: 0; }
  [data-section-type="featured-collection-section"] .featured-collection__left {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    vertical-align: middle; }
    @media (min-width: 921px) {
      [data-section-type="featured-collection-section"] .featured-collection__left {
        width: calc(100% / 3);
        text-align: left; } }
  [data-section-type="featured-collection-section"] .featured-collection__right {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    vertical-align: middle; }
    @media (min-width: 921px) {
      [data-section-type="featured-collection-section"] .featured-collection__right {
        width: calc(100% / 3 * 2); } }
    [data-section-type="featured-collection-section"] .featured-collection__right .featured-collection__product {
      display: inline-block;
      vertical-align: top;
      width: calc(100% / 2);
      margin: 0; }
      @media (min-width: 921px) {
        [data-section-type="featured-collection-section"] .featured-collection__right .featured-collection__product {
          width: calc(100% / 2 - 120px);
          margin: 0 60px; } }
  [data-section-type="featured-collection-section"] .featured-collection__floating-text {
    font-size: 1.5em;
    position: absolute;
    text-align: right;
    top: -20px;
    right: 0;
    font-family: futura-pt-bold, sans-serif;
    font-style: italic;
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: 0.2em; }
    @media (min-width: 921px) {
      [data-section-type="featured-collection-section"] .featured-collection__floating-text {
        font-size: 4em;
        bottom: -20px;
        top: auto; } }
    [data-section-type="featured-collection-section"] .featured-collection__floating-text:first-child {
      text-align: left;
      top: -60px;
      left: 0px;
      right: auto;
      bottom: auto; }
      @media (min-width: 921px) {
        [data-section-type="featured-collection-section"] .featured-collection__floating-text:first-child {
          top: -40px; } }

/*================ SECTIONS / #TEXT OVERLAY ================*/
[data-section-type="banner-with-text-overlay-section"] {
  position: relative; }
  [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__image {
    height: 100%;
    overflow: hidden; }
    [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__image img {
      vertical-align: top; }
  [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__content {
    z-index: 5;
    margin: 20px auto;
    text-align: center;
    max-width: 940px; }
    @media (min-width: 921px) {
      [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__content {
        position: absolute;
        transform: translate(-50%, -50%);
        left: 65%;
        top: 40%;
        margin: 0; } }
    [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__content article .banner-text-overlay__title {
      font-family: futura-pt-bold, sans-serif;
      font-size: 26px; }
      @media (min-width: 921px) {
        [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__content article .banner-text-overlay__title {
          max-width: 640px;
          margin: 0 auto;
          text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
          color: white;
          font-size: 42px; } }
      [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__content article .banner-text-overlay__title span {
        display: block;
        font-size: 0.65em;
        margin-bottom: 14px; }
  [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__floating-button {
    text-align: center; }
    @media (min-width: 921px) {
      [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__floating-button {
        left: 50%;
        transform: translateX(-50%);
        top: 68%;
        left: 65%;
        position: absolute;
        bottom: -20px; } }
    [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__floating-button .btn {
      width: 220px;
      display: inline-block;
      padding: 15px;
      text-decoration: none;
      border-color: #3c3935;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 14px; }
      [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__floating-button .btn:hover {
        color: white;
        border-color: #3c3935;
        background-color: #3c3935; }
      @media (min-width: 921px) {
        [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__floating-button .btn {
          font-size: 15px;
          border-color: white; }
          [data-section-type="banner-with-text-overlay-section"] .banner-text-overlay__floating-button .btn:hover {
            color: white;
            border-color: #3c3935;
            background-color: #3c3935; } }

[data-section-type="image-text"] {
  position: relative; }
  [data-section-type="image-text"].index__routine {
    max-width: 1060px; }
  @media (max-width: 920px) {
    [data-section-type="image-text"].index__routine {
      padding-bottom: 0; }
      [data-section-type="image-text"].index__routine .image-text__container {
        position: relative;
        top: -80px;
        left: 0px;
        width: 90%;
        padding: 30px 40px;
        background: rgba(255, 255, 255, 0.9); } }
  [data-section-type="image-text"] .image-text__image {
    display: inline-block;
    vertical-align: middle;
    width: 100%; }
    @media (min-width: 921px) {
      [data-section-type="image-text"] .image-text__image {
        width: 50%;
        padding-right: 15px; }
        [data-section-type="image-text"] .image-text__image + .image-text__container {
          padding-left: 15px;
          padding-right: 0px; } }
  [data-section-type="image-text"] .image-text__container {
    display: inline-block;
    width: 100%;
    vertical-align: middle; }
    @media (min-width: 921px) {
      [data-section-type="image-text"] .image-text__container {
        width: 50%;
        padding-right: 15px; }
        [data-section-type="image-text"] .image-text__container + .image-text__image {
          padding-left: 15px;
          padding-right: 0px; } }
    [data-section-type="image-text"] .image-text__container .image-text__title {
      font-family: futura-pt-bold, sans-serif;
      font-weight: 400;
      letter-spacing: 0.1em; }
    [data-section-type="image-text"] .image-text__container .image-text__link {
      display: inline-block;
      width: 225px;
      line-height: 100px;
      height: 100px;
      text-align: center;
      color: white;
      background-size: contain;
      background-position: 50%;
      background-repeat: no-repeat; }

/*================ SECTIONS / #ABOUT US ================*/
.index__about-us .banner-text-overlay__title {
  font-family: futura-pt-bold, sans-serif;
  font-size: 26px;
  letter-spacing: 0.1em; }
  @media (min-width: 921px) {
    .index__about-us .banner-text-overlay__title {
      font-size: 30px; } }

/*================ SECTIONS / #DASH HUDSON ================*/
[data-section-type="index-dash-hudson"] {
  position: relative;
  text-align: center; }
  [data-section-type="index-dash-hudson"] h2.dash-hudson__title, [data-section-type="index-dash-hudson"] .dash-hudson__title.h2 {
    font: 500 italic 26px "Futura-PT", sans-serif;
    text-transform: initial;
    margin: 0 0 5px 0;
    text-align: center; }
    @media (min-width: 1281px) {
      [data-section-type="index-dash-hudson"] h2.dash-hudson__title, [data-section-type="index-dash-hudson"] .dash-hudson__title.h2 {
        font-size: 30px;
        z-index: 1; } }
  [data-section-type="index-dash-hudson"] p.dash-hudson__title {
    text-align: center;
    margin: 0 0 10px 0; }
    @media (min-width: 1281px) {
      [data-section-type="index-dash-hudson"] p.dash-hudson__title {
        font-size: 15px; } }
  [data-section-type="index-dash-hudson"] .ls-carousel-photo {
    overflow: hidden; }
    [data-section-type="index-dash-hudson"] .ls-carousel-photo:hover img {
      transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
      transform: scale(1.1); }

/*================ SECTIONS / #FOOTER ================*/
#footer {
  color: white;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 234px;
  position: relative;
  z-index: 1;
  background: #1f1f1f; }
  @media (min-width: 921px) {
    #footer {
      padding-top: 60px;
      padding-bottom: 30px; } }
  @media (min-width: 921px) {
    #footer:before {
      content: "";
      width: 30%;
      max-width: 200px;
      display: block;
      margin: -60px 0 0 60px;
      height: 70%;
      position: absolute;
      background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/FourthRay-SecondaryLogo-white.png?8884175991266190357) center no-repeat;
      background-size: 100%; } }
  #footer:after {
    content: "";
    width: 30%;
    max-width: 130px;
    height: 30%;
    display: block;
    position: absolute;
    background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/FourthRay-SecondaryLogo-white.png?8884175991266190357) center no-repeat;
    background-size: 100%;
    left: 50%;
    transform: translateX(-50%); }
    @media (min-width: 921px) {
      #footer:after {
        display: none; } }
  #footer .newsletter__title {
    font-weight: 700;
    margin: 0 0 20px 0; }
  #footer .newsletter__form {
    width: calc(100% - 80px);
    max-width: 460px;
    margin: 0 auto;
    position: relative; }
    @media (min-width: 921px) {
      #footer .newsletter__form {
        width: calc(100% / 2); } }
    #footer .newsletter__form .signup__complete {
      color: white; }
    #footer .newsletter__form .newsletter_email {
      width: 100%;
      border: 0px;
      padding: 15px 0;
      text-align: left;
      border-bottom: 1px solid white;
      background: none;
      color: white;
      caret-color: white; }
      #footer .newsletter__form .newsletter_email::placeholder {
        color: white; }
    #footer .newsletter__form .newsletter_button {
      width: 10%;
      color: white;
      font-size: 1.3em;
      font-family: FontAwesome;
      text-align: right;
      padding: 15px 0;
      background: none;
      border: none;
      position: absolute;
      right: 0;
      top: 0; }
      @media (min-width: 921px) {
        #footer .newsletter__form .newsletter_button {
          width: 160px;
          height: 65px;
          top: unset;
          top: 50%;
          transform: translateY(-50%); } }
  #footer .footer__links {
    padding-top: 40px; }
    @media (min-width: 921px) {
      #footer .footer__links {
        padding-top: 70px; } }
    #footer .footer__links .footer-link {
      vertical-align: top;
      text-transform: uppercase;
      font-weight: 500; }
      @media (min-width: 921px) {
        #footer .footer__links .footer-link {
          display: inline-block;
          margin: 0 12px; } }
      #footer .footer__links .footer-link:first-child {
        margin-left: 0px; }
      #footer .footer__links .footer-link:last-child {
        margin-right: 0px; }
      #footer .footer__links .footer-link a {
        color: white;
        padding: 10px 0;
        width: 100%;
        display: block;
        transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
        #footer .footer__links .footer-link a:hover {
          color: #777777; }
  #footer .footer__social {
    padding-top: 20px; }
    @media (min-width: 921px) {
      #footer .footer__social {
        padding-top: 40px; } }
    #footer .footer__social .footer__social-icon {
      display: inline-block;
      vertical-align: top;
      width: 24px;
      margin: 0 20px; }
      @media (min-width: 921px) {
        #footer .footer__social .footer__social-icon {
          width: 30px; } }
      #footer .footer__social .footer__social-icon .footer__social-link {
        color: white; }
        #footer .footer__social .footer__social-icon .footer__social-link svg {
          transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
          #footer .footer__social .footer__social-icon .footer__social-link svg.fa-facebook:hover {
            color: #3b5998; }
          #footer .footer__social .footer__social-icon .footer__social-link svg.fa-instagram:hover {
            color: #fffb00; }
          #footer .footer__social .footer__social-icon .footer__social-link svg.fa-twitter:hover {
            color: #00aced; }
          #footer .footer__social .footer__social-icon .footer__social-link svg.fa-snapchat-ghost:hover {
            color: #fffb00; }
          #footer .footer__social .footer__social-icon .footer__social-link svg.fa-youtube:hover {
            color: red; }
          #footer .footer__social .footer__social-icon .footer__social-link svg.fa-2x {
            font-size: 1.57143em; }
  #footer .footer__copyright {
    padding-top: 30px;
    font-size: 12px; }
    @media (min-width: 921px) {
      #footer .footer__copyright {
        padding-top: 20px; } }

/*================ SECTIONS / #PRODUCT PAGE ================*/
.product-info__price--value {
  color: #999999;
  font-size: 0.7em; }

.product-info__price--compare {
  color: #c1c1c1;
  text-decoration: line-through;
  margin-right: 10px; }

[data-section-type="product-page-section"].widescreen {
  margin: 20px auto; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"].widescreen {
      margin: 30px auto; } }
[data-section-type="product-page-section"] .product__display {
  position: relative;
  margin: 0 0 80px 0; }
  [data-section-type="product-page-section"] .product__display .product__deconstruction {
    position: absolute;
    top: 0px;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    max-width: 380px; }
  [data-section-type="product-page-section"] .product__display .product__display--top {
    margin: 0 auto 20px auto; }
    @media (min-width: 921px) {
      [data-section-type="product-page-section"] .product__display .product__display--top {
        margin: 0 auto;
        clear: both;
        float: none;
        display: table;
        width: 100%; } }
  [data-section-type="product-page-section"] .product__display .product__floating-container .product__display--top:before {
    margin: 0 auto;
    background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-1.png?16212857540216237118) center 40% no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5; }
    @media (min-width: 921px) {
      [data-section-type="product-page-section"] .product__display .product__floating-container .product__display--top:before {
        background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-1-2.png?2514697147714756528) 90% top no-repeat;
        background-size: 50%;
        left: 0; } }
  [data-section-type="product-page-section"] .product__display .product__display--middle {
    padding-top: 0;
    padding-bottom: 30px;
    background-repeat: no-repeat;
    background-position: 50%;
    position: relative;
    z-index: 2;
    text-align: center; }
    @media (min-width: 921px) {
      [data-section-type="product-page-section"] .product__display .product__display--middle {
        padding-bottom: 0;
        margin-bottom: 0;
        margin-top: -120px;
        text-align: left; } }
    @media (min-width: 1281px) {
      [data-section-type="product-page-section"] .product__display .product__display--middle {
        margin-top: 0; } }
  [data-section-type="product-page-section"] .product__display .product__display--bottom {
    padding-top: 60px; }
  [data-section-type="product-page-section"] .product__display .product__floating-container {
    position: relative; }
  [data-section-type="product-page-section"] .product__display .product__display--reviews {
    padding-top: 60px;
    text-align: center;
    font-size: 2em; }
[data-section-type="product-page-section"] .product__display--steps {
  padding: 20px 0; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__display--steps {
      padding: 20px 0 60px 0; } }
  [data-section-type="product-page-section"] .product__display--steps h2, [data-section-type="product-page-section"] .product__display--steps .h2 {
    text-align: center;
    font-family: "Futura-PT", sans-serif; }
    @media (min-width: 921px) {
      [data-section-type="product-page-section"] .product__display--steps h2, [data-section-type="product-page-section"] .product__display--steps .h2 {
        text-align: left;
        font-size: 15px; } }
@media (min-width: 921px) {
  [data-section-type="product-page-section"] .product__floating-image {
    background: none;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    padding: 10px 0 0 0; }
    [data-section-type="product-page-section"] .product__floating-image .owl-nav button.owl-prev {
      left: -25px; }
    [data-section-type="product-page-section"] .product__floating-image .owl-nav button.owl-next {
      right: -25px; } }
[data-section-type="product-page-section"] .product-page__image {
  width: 180px;
  margin: 0 auto; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product-page__image {
      width: 380px; } }
[data-section-type="product-page-section"] .product__left {
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 0; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__left {
      width: 50%;
      margin: 0; }
      [data-section-type="product-page-section"] .product__left.product__left--fixed-height {
        min-height: 480px; } }
  [data-section-type="product-page-section"] .product__left h2, [data-section-type="product-page-section"] .product__left .h2 {
    text-align: center; }
    @media (min-width: 921px) {
      [data-section-type="product-page-section"] .product__left h2, [data-section-type="product-page-section"] .product__left .h2 {
        text-align: left; } }
[data-section-type="product-page-section"] .product__right {
  width: 100%;
  position: relative;
  margin: 20px 0 0 0; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__right {
      max-width: 360px;
      width: calc(100%/3 - 20px);
      float: right; }
      [data-section-type="product-page-section"] .product__right.product__right--fixed-height {
        min-height: 480px; } }
[data-section-type="product-page-section"] .product__name {
  text-align: center;
  font: 400 italic 21px futura-pt-bold, sans-serif;
  letter-spacing: 0.1em;
  margin: 0 0 0.3em 0;
  text-transform: uppercase; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__name {
      font-size: 26px;
      text-align: left; } }
[data-section-type="product-page-section"] .product__type {
  text-align: center;
  font-style: italic;
  font-weight: 600;
  color: #c1c1c1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.2em 0; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__type {
      text-align: left; } }
[data-section-type="product-page-section"] .product__reviews--rating {
  margin: 0 0 1.2em 0;
  text-align: center; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__reviews--rating {
      text-align: left; } }
  [data-section-type="product-page-section"] .product__reviews--rating .text-m {
    color: #3c3935 !important;
    border-bottom: 1px solid #999999;
    display: inline-block;
    margin: 5px 0 0 5px;
    line-height: 1.2; }
  [data-section-type="product-page-section"] .product__reviews--rating .standalone-bottomline {
    display: inline-block; }
[data-section-type="product-page-section"] .product__star-rating {
  text-align: center;
  margin-top: 20px; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__star-rating {
      text-align: left; } }
[data-section-type="product-page-section"] .product__promo-text {
  text-align: center;
  margin: 10px auto 20px auto;
  color: #f8c1b8;
  font-weight: 600; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__promo-text {
      text-align: left;
      margin: 30px 0 0 0; } }
[data-section-type="product-page-section"] .product__description {
  margin-top: 30px; }
[data-section-type="product-page-section"] .product__icons {
  margin: 20px auto 0 auto;
  text-align: center; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__icons {
      margin: 30px 0 0 0;
      text-align: left; } }
  [data-section-type="product-page-section"] .product__icons .product__icons-carousel:not(.owl-carousel) .product__icons-carousel--item {
    width: calc(100% / 3 - 5px);
    display: inline-block;
    vertical-align: top; }
  [data-section-type="product-page-section"] .product__icons .product__icons-carousel--item {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600; }
    [data-section-type="product-page-section"] .product__icons .product__icons-carousel--item label {
      display: block;
      margin-bottom: 10px;
      font-size: 11px; }
    [data-section-type="product-page-section"] .product__icons .product__icons-carousel--item img {
      vertical-align: top;
      max-width: 60%;
      margin: 0 auto; }
      @media (min-width: 921px) {
        [data-section-type="product-page-section"] .product__icons .product__icons-carousel--item img {
          max-width: 70%; } }
[data-section-type="product-page-section"] .product-info__container .product-info__step {
  font-weight: 600;
  color: #c1c1c1;
  text-transform: uppercase;
  margin-bottom: 10px; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product-info__container .product-info__step {
      margin-bottom: 20px; } }
[data-section-type="product-page-section"] .product-info__container .product-info {
  text-align: center; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product-info__container .product-info {
      text-align: left; } }
  [data-section-type="product-page-section"] .product-info__container .product-info .product-info__type {
    float: right;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #f8c1b8; }
  [data-section-type="product-page-section"] .product-info__container .product-info .product-info__price {
    display: inline-block;
    font-weight: 500;
    font-size: 18px; }
    @media (min-width: 921px) {
      [data-section-type="product-page-section"] .product-info__container .product-info .product-info__price {
        font-size: 20px; } }
    [data-section-type="product-page-section"] .product-info__container .product-info .product-info__price .product-info__price--compare {
      color: #c1c1c1;
      text-decoration: line-through;
      margin-right: 10px; }
[data-section-type="product-page-section"] .product-social__container {
  bottom: 60px;
  width: 100%;
  margin: 20px 0;
  text-align: center; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product-social__container {
      position: absolute;
      margin: 0; } }
  [data-section-type="product-page-section"] .product-social__container .product-social__icon {
    display: inline-block;
    width: 60px;
    vertical-align: top;
    font-size: 1.5em; }
    [data-section-type="product-page-section"] .product-social__container .product-social__icon .product-social__link {
      color: #777777;
      transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
      [data-section-type="product-page-section"] .product-social__container .product-social__icon .product-social__link:hover {
        color: #3c3935; }
[data-section-type="product-page-section"] .product__navigation {
  cursor: pointer;
  background: #fff5f3;
  border: 1px solid #999999;
  padding: 10px 20px; }
  [data-section-type="product-page-section"] .product__navigation.product__navigation--prev {
    text-align: center;
    display: inline-block;
    width: 100%;
    max-width: 380px; }
    @media (min-width: 921px) {
      [data-section-type="product-page-section"] .product__navigation.product__navigation--prev {
        text-align: left;
        width: auto;
        width: 50%; } }
  [data-section-type="product-page-section"] .product__navigation.product__navigation--next {
    text-align: center;
    display: inline-block;
    width: 50%;
    max-width: 360px; }
    @media (min-width: 921px) {
      [data-section-type="product-page-section"] .product__navigation.product__navigation--next {
        text-align: right;
        float: right;
        width: auto; } }
  [data-section-type="product-page-section"] .product__navigation .product__navigation-label--mobile {
    margin: 0;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #3c3935;
    display: inline-block; }
  [data-section-type="product-page-section"] .product__navigation .product__navigation--content {
    width: calc(70% - 5px);
    vertical-align: middle;
    display: inline-block;
    color: #3c3935;
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 0.92857em; }
    [data-section-type="product-page-section"] .product__navigation .product__navigation--content .product-info__price--compare {
      text-decoration: line-through; }
  [data-section-type="product-page-section"] .product__navigation .product__navigation--form {
    margin-top: 15px; }
    [data-section-type="product-page-section"] .product__navigation .product__navigation--form label {
      margin-bottom: 0px; }
  [data-section-type="product-page-section"] .product__navigation .product__navigation--title {
    font-weight: 600;
    text-transform: uppercase;
    display: inline; }
  [data-section-type="product-page-section"] .product__navigation .product__navigation--type {
    display: inline; }
  [data-section-type="product-page-section"] .product__navigation .product__navigation--label {
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline; }
  [data-section-type="product-page-section"] .product__navigation img {
    width: 30%;
    vertical-align: middle;
    display: inline-block; }
[data-section-type="product-page-section"] .product__skintypes {
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  position: absolute;
  width: 42%;
  display: inline-block;
  right: 0; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__skintypes {
      position: relative;
      width: auto;
      display: block;
      right: unset; } }
  [data-section-type="product-page-section"] .product__skintypes:before {
    content: " ";
    float: left;
    height: 100px; }
  [data-section-type="product-page-section"] .product__skintypes li {
    margin: 7px 0; }
    [data-section-type="product-page-section"] .product__skintypes li img {
      display: inline-block;
      width: 17px;
      margin: 0 5px 0 0; }
[data-section-type="product-page-section"] .product__editorial-image {
  position: relative;
  top: 10%;
  right: 0;
  z-index: 0;
  margin: 20px 0 0 0;
  width: 100%; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__editorial-image {
      position: absolute;
      margin: 0;
      bottom: auto;
      height: 160%;
      right: 0;
      overflow: hidden;
      left: auto;
      top: 0;
      width: 50vw;
      z-index: -1; } }
  @media (min-width: 1281px) {
    [data-section-type="product-page-section"] .product__editorial-image {
      top: -10%; } }
[data-section-type="product-page-section"] .product__children-carousel .product__child {
  width: 100% !important; }
[data-section-type="product-page-section"] .product__children-swatches {
  margin: 20px 0 0 0; }
  [data-section-type="product-page-section"] .product__children-swatches .product__children-title {
    text-transform: uppercase;
    font-size: 0.85714em;
    font-weight: 600; }
  [data-section-type="product-page-section"] .product__children-swatches .product__child {
    cursor: pointer;
    width: calc(100% / 3);
    display: inline-block;
    text-align: center;
    vertical-align: top; }
    [data-section-type="product-page-section"] .product__children-swatches .product__child .product__child--title {
      text-transform: uppercase;
      font-size: 0.85714em;
      font-weight: 600; }
    [data-section-type="product-page-section"] .product__children-swatches .product__child .product__child--type {
      font-size: 0.78571em; }
[data-section-type="product-page-section"] .product__video-container {
  position: relative;
  margin-top: 60px; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__video-container {
      margin-top: 0; }
      [data-section-type="product-page-section"] .product__video-container.up {
        margin-top: 180px; } }
[data-section-type="product-page-section"] .product__video {
  width: 100%;
  position: relative; }
  @media (min-width: 921px) {
    [data-section-type="product-page-section"] .product__video {
      width: 50%;
      position: absolute;
      top: 120px;
      left: 0; } }
  [data-section-type="product-page-section"] .product__video .video {
    padding-bottom: 56.25%;
    height: 0;
    float: none;
    clear: both; }
    [data-section-type="product-page-section"] .product__video .video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 0; }
[data-section-type="product-page-section"] .product__video-text--desktop {
  position: relative;
  float: right;
  width: 55%;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 80px 60px 0 10%;
  background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-2.png?16212857540216237118) left top no-repeat;
  height: 100%;
  background-size: 75%;
  min-height: 375px; }
  [data-section-type="product-page-section"] .product__video-text--desktop h2, [data-section-type="product-page-section"] .product__video-text--desktop .h2 {
    font-family: futura-pt-bold, sans-serif;
    letter-spacing: 0.1em; }
  [data-section-type="product-page-section"] .product__video-text--desktop label {
    font-weight: 600;
    text-transform: uppercase; }
[data-section-type="product-page-section"] .product__video-text--empty {
  padding-top: 0px;
  position: relative;
  margin-right: 0;
  margin-left: auto;
  background: initial;
  max-width: 420px;
  padding: 0px;
  padding-right: 60px;
  margin-top: 0; }
[data-section-type="product-page-section"] .product__video-text--mobile .product__video-text--button {
  width: 100%;
  background: transparent;
  position: relative;
  border: 0;
  color: #3c3935;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 20px;
  text-align: left;
  font-size: 0.92857em;
  font-weight: 600;
  text-transform: uppercase; }
  [data-section-type="product-page-section"] .product__video-text--mobile .product__video-text--button:after {
    font-family: FontAwesome;
    content: "\f067";
    position: absolute;
    right: 20px; }
  [data-section-type="product-page-section"] .product__video-text--mobile .product__video-text--button.open:after {
    content: "\f068"; }
[data-section-type="product-page-section"] .product__video-text--mobile .product__video-text--text {
  display: none;
  margin-top: 10px;
  padding: 0px 20px; }
[data-section-type="product-page-section"] .product__steps .product__step {
  width: 190px;
  text-align: center;
  text-transform: uppercase; }
  [data-section-type="product-page-section"] .product__steps .product__step label {
    font-weight: 600;
    cursor: pointer;
    color: #c1c1c1; }
  [data-section-type="product-page-section"] .product__steps .product__step.product__step--current {
    background-size: 90%; }
    [data-section-type="product-page-section"] .product__steps .product__step.product__step--current label {
      color: #3c3935; }
  [data-section-type="product-page-section"] .product__steps .product__step .product__step--info .product__step--info-title {
    font-size: 0.85714em;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  [data-section-type="product-page-section"] .product__steps .product__step .product__step--info .product__step--info-type {
    font-size: 0.78571em;
    font-weight: 400; }
  [data-section-type="product-page-section"] .product__steps .product__step .product__step--info .product__step--info-form {
    margin-top: 5px; }
    [data-section-type="product-page-section"] .product__steps .product__step .product__step--info .product__step--info-form label {
      font-size: 0.78571em;
      font-weight: 400; }
    [data-section-type="product-page-section"] .product__steps .product__step .product__step--info .product__step--info-form .product-info__price--compare {
      text-decoration: line-through;
      color: #999999; }

.product__display--banner {
  margin: 20px auto; }
  @media (min-width: 921px) {
    .product__display--banner {
      margin: 60px auto;
      margin-top: 120px; }
      .product__display--banner.product__display--banner-after-video {
        margin-top: 240px; } }

.product__display--ingredients {
  margin: 20px auto; }
  @media (min-width: 921px) {
    .product__display--ingredients {
      margin: 60px auto;
      margin-top: 120px; } }
  .product__display--ingredients .product__ingredients--wrap {
    max-width: 100%;
    margin: 20px auto; }
    @media (min-width: 921px) {
      .product__display--ingredients .product__ingredients--wrap {
        margin: 20px 0 0 0;
        max-width: 360px;
        width: calc(100%/3 - 20px);
        float: left; } }
    .product__display--ingredients .product__ingredients--wrap h2, .product__display--ingredients .product__ingredients--wrap .h2 {
      text-align: center; }
      @media (min-width: 921px) {
        .product__display--ingredients .product__ingredients--wrap h2, .product__display--ingredients .product__ingredients--wrap .h2 {
          text-align: left; } }
  .product__display--ingredients .product__beforeafter--wrap {
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative; }
    @media (min-width: 921px) {
      .product__display--ingredients .product__beforeafter--wrap {
        width: calc(2/3 * 100% - 80px);
        display: inline-block;
        margin: 0 0 0 100px; } }
    .product__display--ingredients .product__beforeafter--wrap .product__image--before {
      display: inline-block;
      width: calc(50% - 10px);
      margin: 0 20px 0 0; }
    .product__display--ingredients .product__beforeafter--wrap .product__image--after {
      display: inline-block;
      width: calc(50% - 10px); }

.product__ingredients {
  margin: 20px 0 0 0; }
  .product__ingredients .product__ingredient {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 3 - 7px);
    margin-bottom: 10px; }
    .product__ingredients .product__ingredient:before {
      content: '\f055';
      font-family: FontAwesome;
      display: block;
      position: absolute;
      top: 0;
      right: 0; }
      @media (min-width: 921px) {
        .product__ingredients .product__ingredient:before {
          opacity: 0;
          transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); } }
    .product__ingredients .product__ingredient:hover:before {
      opacity: 1; }
    .product__ingredients .product__ingredient:first-child, .product__ingredients .product__ingredient:nth-child(3n+1) {
      margin-right: 5px; }
    .product__ingredients .product__ingredient:nth-child(2), .product__ingredients .product__ingredient:nth-child(3n+2) {
      margin: 0 5px; }
    .product__ingredients .product__ingredient:nth-child(3), .product__ingredients .product__ingredient:nth-child(3+3) {
      margin-left: 5px; }
    .product__ingredients .product__ingredient .product__ingredient--image {
      position: relative;
      width: 55%;
      margin: 10px auto; }
    .product__ingredients .product__ingredient .product__ingredient--hover {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(248, 193, 184, 0.9);
      transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
      opacity: 0; }
      .product__ingredients .product__ingredient .product__ingredient--hover p {
        position: absolute;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        font-weight: 200;
        font-size: 15px;
        width: calc(100% - 60px); }
    .product__ingredients .product__ingredient .product__ingredient--name {
      display: table;
      width: 100%; }
      .product__ingredients .product__ingredient .product__ingredient--name label {
        font-size: 0.71429em;
        font-weight: 600;
        text-transform: uppercase;
        margin: 10px 0 0 0;
        background: #fff5f3;
        height: 40px;
        vertical-align: middle;
        text-align: center;
        display: table-cell;
        line-height: 1.2; }
        @media (min-width: 921px) {
          .product__ingredients .product__ingredient .product__ingredient--name label {
            font-size: 0.78571em; } }
  .product__ingredients .product__ingredient-list {
    max-width: 800px;
    margin: 10px auto; }
    @media (min-width: 921px) {
      .product__ingredients .product__ingredient-list {
        text-align: left;
        margin: 30px auto; } }
    .product__ingredients .product__ingredient-list .product__ingred.expanded {
      display: none; }
    .product__ingredients .product__ingredient-list .readmore {
      margin-top: 15px; }
      .product__ingredients .product__ingredient-list .readmore:hover {
        cursor: pointer;
        text-decoration: underline; }
    .product__ingredients .product__ingredient-list .product__ingredient-list--see-all {
      display: block;
      margin: 20px auto;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 500;
      transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
      .product__ingredients .product__ingredient-list .product__ingredient-list--see-all:hover {
        color: #999999; }

.product__ingred.expanded {
  display: none; }

.product-quantity__container {
  display: block;
  border-bottom: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
  margin: 20px 0;
  text-align: center; }
  .product-quantity__container .product-quantity {
    vertical-align: middle;
    display: inline-block;
    width: 70%;
    background: none;
    border: none;
    text-align: center;
    line-height: 45px;
    padding: 0px; }
  .product-quantity__container .product-quantity__button {
    vertical-align: middle;
    display: inline-block;
    width: 15%;
    background: none;
    border: none;
    line-height: 45px;
    transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
    .product-quantity__container .product-quantity__button:hover {
      color: #999999; }

.product-action__container .btn {
  width: 100%; }
.product-action__container .product-action__oos {
  width: 49%;
  display: inline-block;
  margin-right: 2%;
  position: relative; }
  .product-action__container .product-action__oos:before {
    content: "";
    background: url(//cdn.shopify.com/s/files/1/1338/0835/files/icon-mail.svg?2937085816990154433);
    height: 11px;
    width: 20px;
    display: inline-block;
    background-size: auto;
    background-color: white;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 8px;
    top: -2px;
    position: relative; }
  .product-action__container .product-action__oos + .btn {
    width: 49%;
    display: inline-block; }

.oos-popup {
  width: 100%;
  max-width: 620px;
  padding: 50px 40px;
  text-align: center;
  position: relative; }
  .oos-popup:after {
    content: "";
    display: block;
    border: 3px solid #f8c1b8;
    width: calc(100%);
    height: calc(100%);
    position: absolute;
    background: none;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none; }
    @media (min-width: 921px) {
      .oos-popup:after {
        border: 5px solid #f8c1b8; } }
  .oos-popup .fancybox-close-small {
    top: 6px;
    right: 6px; }
  .oos-popup .oos-popup__title {
    font: 400 21px futura-pt-bold, sans-serif;
    letter-spacing: 0.1em;
    margin: 0 0 0.3em 0;
    text-transform: uppercase; }
    @media (min-width: 921px) {
      .oos-popup .oos-popup__title {
        font-size: 26px; } }
  .oos-popup .oos-popup__text {
    color: #c1c1c1;
    font-size: 1em;
    font-style: italic;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em; }
  .oos-popup .oos-popup__email {
    width: 100%;
    max-width: 460px;
    margin: 0 0 15px; }
  .oos-popup .oos-popup__checkbox--label {
    display: block;
    margin: 0 auto 40px auto;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .oos-popup .oos-popup__checkbox--label .oos-popup__checkbox {
      vertical-align: middle;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .oos-popup .oos-popup__checkbox--label .oos-popup__checkmark {
      height: 25px;
      width: 25px;
      background-color: white;
      border: 1px solid #c1c1c1;
      display: inline-block;
      position: relative;
      top: 7px;
      margin: 0 5px 0 0; }
      .oos-popup .oos-popup__checkbox--label .oos-popup__checkmark:after {
        content: "";
        position: absolute;
        display: none; }
    .oos-popup .oos-popup__checkbox--label .oos-popup__checkbox:checked ~ .oos-popup__checkmark {
      background-color: #f8c1b8;
      border-color: #f8c1b8; }
    .oos-popup .oos-popup__checkbox--label .oos-popup__checkbox:checked ~ .oos-popup__checkmark:after {
      display: block; }
    .oos-popup .oos-popup__checkbox--label .oos-popup__checkmark:after {
      position: relative;
      top: 5px;
      left: 8px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 2px 2px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
  .oos-popup .oos-popup__button {
    cursor: pointer; }
  .oos-popup .oos-popup__success {
    display: none;
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    z-index: 2; }
    .oos-popup .oos-popup__success .oos-popup__success--message {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%; }
      .oos-popup .oos-popup__success .oos-popup__success--message label {
        position: relative;
        display: inline-block;
        margin: 0 auto;
        font: 400 38px futura-pt-bold, sans-serif;
        color: #f8c1b8; }
        @media (min-width: 921px) {
          .oos-popup .oos-popup__success .oos-popup__success--message label {
            font-size: 50px; } }
      .oos-popup .oos-popup__success .oos-popup__success--message p {
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase; }

/*================ SECTIONS / #PRODUCT CHILD ================*/
.children__container {
  position: relative;
  margin-top: 30px;
  background: #fff5f3; }
  @media (min-width: 921px) {
    .children__container {
      margin-top: 60px;
      background: none; }
      .children__container:after, .children__container:before {
        content: "";
        top: 0;
        position: absolute;
        height: 100%;
        width: 100%;
        background: #fff5f3;
        z-index: -1; }
      .children__container:after {
        left: -100%; }
      .children__container:before {
        right: -100%; } }
  .children__container .children-select {
    width: 100%;
    text-align-last: center;
    font-size: 16px;
    padding: 15px;
    background-color: #fff5f3; }
  .children__container .children__tabs {
    text-align: center;
    position: relative;
    background: #fff5f3; }
    .children__container .children__tabs:after, .children__container .children__tabs:before {
      content: "";
      position: absolute;
      bottom: 0px;
      height: 100%;
      width: 100%;
      border-bottom: 1px solid #999999; }
    .children__container .children__tabs:after {
      right: -100%; }
    .children__container .children__tabs:before {
      left: -100%; }
    .children__container .children__tabs .children__tab {
      display: inline-block;
      background: none;
      border: 0;
      padding: 10px 0px;
      border-bottom: 1px solid #999999;
      font-weight: 400;
      font-size: 1.14286em; }
      .children__container .children__tabs .children__tab.active {
        font-weight: 600;
        border-right: 1px solid #999999;
        border-left: 1px solid #999999;
        border-bottom: 0px; }

.child {
  display: none;
  position: relative;
  padding: 30px 0; }
  @media (min-width: 921px) {
    .child {
      padding: 60px;
      background: #fff5f3; }
      .child.child--has-padding {
        padding-bottom: 460px;
        margin-bottom: 320px; } }
  .child .child__floating-image-carousel .owl-next {
    right: 0px !important; }
  .child .child__floating-image-carousel .owl-prev {
    left: 0px !important; }
  @media (min-width: 921px) {
    .child .child__floating-image {
      background: none;
      z-index: 1;
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      width: 360px;
      padding: 40px 0 0 0; }
      .child .child__floating-image .owl-nav button.owl-prev {
        left: -25px; }
      .child .child__floating-image .owl-nav button.owl-next {
        right: -25px; } }
  .child .child-info__left {
    width: 100%;
    position: relative;
    padding: 20px; }
    @media (min-width: 921px) {
      .child .child-info__left {
        min-height: 480px;
        max-width: 360px;
        width: calc(100%/3 - 20px);
        display: inline-block;
        padding: 0; } }
  .child .child-info__right {
    width: 100%;
    position: relative;
    padding: 20px; }
    @media (min-width: 921px) {
      .child .child-info__right {
        min-height: 480px;
        max-width: 360px;
        width: calc(100%/3 - 20px);
        float: right;
        padding: 0px; } }
  .child .product__ingredients .product__ingredient .product__ingredient--name label {
    background: white; }

.child__beforeafter--wrap {
  width: 100%;
  display: block;
  text-align: center; }
  @media (min-width: 921px) {
    .child__beforeafter--wrap {
      position: absolute;
      bottom: 0;
      left: 0;
      transform: translateY(50%);
      z-index: 1; } }
  .child__beforeafter--wrap .product__image--before {
    display: inline-block;
    width: calc(100% / 2 - 10px);
    margin: 0 10px 0 0; }
    @media (min-width: 921px) {
      .child__beforeafter--wrap .product__image--before {
        width: 380px; } }
  .child__beforeafter--wrap .product__image--after {
    display: inline-block;
    width: calc(100% / 2 - 10px);
    margin: 0 0 0 10px; }
    @media (min-width: 921px) {
      .child__beforeafter--wrap .product__image--after {
        width: 380px; } }

.child__instructions {
  display: none;
  background: white;
  position: relative; }
  @media (min-width: 921px) {
    .child__instructions:after, .child__instructions:before {
      content: "";
      top: 0;
      position: absolute;
      height: 100%;
      width: 100%;
      background: white; }
    .child__instructions:after {
      left: -100%; }
    .child__instructions:before {
      right: -100%; } }

/*================ SECTIONS / #ABOUT US ================*/
.about-us {
  padding: 0;
  margin: 0 auto; }
  @media (min-width: 921px) {
    .about-us {
      padding: 20px 0 60px 0; } }
  .about-us article {
    float: none;
    clear: both;
    display: table;
    width: 100%; }
    .about-us article p {
      padding: 0 20px;
      margin: 0 auto 40px auto;
      font-size: 15px;
      max-width: 920px;
      text-align: center; }
      @media (min-width: 921px) {
        .about-us article p {
          padding: 0 10px;
          font-size: 18px; } }
    .about-us article h2, .about-us article .h2 {
      padding: 0 20px;
      text-align: center;
      max-width: 920px;
      margin: 40px auto 20px auto;
      color: #f8c1b8;
      font-size: 24px; }
      @media (min-width: 921px) {
        .about-us article h2, .about-us article .h2 {
          padding: 0 10px;
          font-size: 37px;
          margin: 60px auto 30px auto; } }
    .about-us article .about__swatch {
      position: relative; }
      .about-us article .about__swatch.swatch--1 {
        z-index: 2;
        top: -80px;
        left: -60px; }
    .about-us article .text--center {
      text-align: center;
      padding: 60px 20px;
      max-width: 940px;
      margin: 0 auto; }
      @media (min-width: 921px) {
        .about-us article .text--center {
          padding: 60px; } }
      .about-us article .text--center h2, .about-us article .text--center .h2 {
        font: 400 italic 24px futura-pt-bold, sans-serif;
        border: none;
        padding: 0;
        letter-spacing: 0.1em; }
        @media (min-width: 921px) {
          .about-us article .text--center h2, .about-us article .text--center .h2 {
            font-size: 32px; } }

/*================ SECTIONS / #COLLECTION PAGE ================*/
.collection__blocks .collection__block {
  margin-bottom: 20px; }
  .collection__blocks .collection__block .collection__product {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0 0 20px 0; }
    @media (min-width: 921px) {
      .collection__blocks .collection__block .collection__product {
        width: calc(100% / 3 - 80px);
        margin: 0; }
        .collection__blocks .collection__block .collection__product.collection__product--left {
          margin-right: 60px; }
        .collection__blocks .collection__block .collection__product.collection__product--center {
          margin: 0 60px; }
        .collection__blocks .collection__block .collection__product.collection__product--right {
          margin-left: 60px; } }
  .collection__blocks .collection__block .collection__product--info {
    vertical-align: middle;
    margin-top: 20px; }
    @media (min-width: 921px) {
      .collection__blocks .collection__block .collection__product--info {
        margin-top: 60px; } }
    .collection__blocks .collection__block .collection__product--info .collection__product--number {
      font-family: futura-pt-bold, sans-serif;
      font-weight: 400;
      color: #e8e8e8;
      font-size: 3em;
      position: absolute;
      z-index: -1;
      top: 2px;
      left: 20px;
      transform: translate(-50%, -50%); }
      @media (min-width: 921px) {
        .collection__blocks .collection__block .collection__product--info .collection__product--number {
          font-size: 4em; } }
    .collection__blocks .collection__block .collection__product--info .collection__product--floating-swatch {
      display: none; }
    .collection__blocks .collection__block .collection__product--info p {
      font-size: 14px; }
      @media (min-width: 921px) {
        .collection__blocks .collection__block .collection__product--info p {
          font-size: 1.21429em; } }
  .collection__blocks .collection__block .collection__product--floating-swatch {
    position: absolute;
    z-index: -2;
    top: 0;
    width: 70%;
    left: 50%;
    transform: translateX(-50%); }
    @media (min-width: 921px) {
      .collection__blocks .collection__block .collection__product--floating-swatch {
        width: 100%; } }

/*================ SECTIONS / GLOSSARY PAGE ================*/
[data-section-type="ingredients-glossary-section"] {
  position: relative; }
  [data-section-type="ingredients-glossary-section"].widescreen {
    margin: 0 auto;
    padding: 0; }
    @media (min-width: 921px) {
      [data-section-type="ingredients-glossary-section"].widescreen {
        max-width: unset; } }
  [data-section-type="ingredients-glossary-section"] .glossary__letters {
    left: 0; }
    [data-section-type="ingredients-glossary-section"] .glossary__letters.glossary__letters--desktop {
      position: absolute;
      width: 20px;
      top: 0;
      text-align: center; }
    [data-section-type="ingredients-glossary-section"] .glossary__letters.glossary__letters--mobile {
      z-index: 1;
      position: fixed;
      top: 90px;
      width: 100%;
      background: white;
      border-bottom: 1px solid #e8e8e8; }
      [data-section-type="ingredients-glossary-section"] .glossary__letters.glossary__letters--mobile .glossary__letter {
        width: 40px;
        font-size: 1.42857em;
        line-height: 55px;
        text-align: center; }
      .scroll-down [data-section-type="ingredients-glossary-section"] .glossary__letters.glossary__letters--mobile {
        top: 0; }
    [data-section-type="ingredients-glossary-section"] .glossary__letters .glossary__letter {
      display: block;
      margin: 0 auto;
      font-weight: 500;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 1.14286em;
      padding: 2px 5px; }
      [data-section-type="ingredients-glossary-section"] .glossary__letters .glossary__letter.active {
        color: #3c3935;
        border-bottom: 1px solid #3c3935;
        padding: 5px;
        background: url(//cdn.shopify.com/s/files/1/0017/9027/9798/files/collage-1.png?10279602093600976412) center no-repeat;
        background-size: 100%; }
        @media (min-width: 921px) {
          [data-section-type="ingredients-glossary-section"] .glossary__letters .glossary__letter.active {
            text-decoration: underline;
            border: none;
            font-size: 1.71429em; } }
      [data-section-type="ingredients-glossary-section"] .glossary__letters .glossary__letter[disabled="disabled"] {
        color: #e8e8e8;
        background: none;
        text-decoration: none;
        font-size: 1.14286em; }
  [data-section-type="ingredients-glossary-section"] .glossary__container {
    margin: 60px 0 0 0;
    padding: 20px 20px 0 20px; }
    @media (min-width: 921px) {
      [data-section-type="ingredients-glossary-section"] .glossary__container {
        margin: 0;
        padding: 60px 60px 0 60px; } }
    [data-section-type="ingredients-glossary-section"] .glossary__container .glossary__content {
      position: relative; }
  [data-section-type="ingredients-glossary-section"] .glossary__header {
    text-align: center;
    margin: 60px auto 20px auto;
    max-width: 100%;
    padding: 0;
    background: url("/cdn/shop/files/Glossary-Banner-Mobile.jpg?v=1581827914") center no-repeat;
    background-size: cover; }
    @media (min-width: 921px) {
      [data-section-type="ingredients-glossary-section"] .glossary__header {
        margin: 0 auto 60px auto;
        background: url("/cdn/shop/files/Glossary-Banner-Desktop.jpg?v=1581827631") center no-repeat;
        background-size: cover; } }
    [data-section-type="ingredients-glossary-section"] .glossary__header .glossary__read-more:after {
      content: "Read More"; }
    [data-section-type="ingredients-glossary-section"] .glossary__header .overlay {
      width: 100%;
      height: 100%;
      display: block;
      padding: 40px 20px 30px 20px; }
      @media (min-width: 921px) {
        [data-section-type="ingredients-glossary-section"] .glossary__header .overlay {
          padding: 50px; } }
    [data-section-type="ingredients-glossary-section"] .glossary__header .section__title {
      font-size: 26px;
      margin-top: 10px; }
      @media (min-width: 921px) {
        [data-section-type="ingredients-glossary-section"] .glossary__header .section__title {
          font-size: 30px; } }
    [data-section-type="ingredients-glossary-section"] .glossary__header p {
      height: 93px;
      overflow: hidden;
      max-width: 820px;
      margin: 0 auto;
      color: #3c3935;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.3; }
      @media (min-width: 921px) {
        [data-section-type="ingredients-glossary-section"] .glossary__header p {
          font-size: 16px;
          height: 100% !important; }
          [data-section-type="ingredients-glossary-section"] .glossary__header p + .glossary__read-more:after {
            display: none !important; } }
      [data-section-type="ingredients-glossary-section"] .glossary__header p.open + .glossary__read-more {
        margin-top: 10px; }
        [data-section-type="ingredients-glossary-section"] .glossary__header p.open + .glossary__read-more:after {
          content: "Read Less"; }
  [data-section-type="ingredients-glossary-section"] .glossary__list .glossary__ingredient--empty {
    display: none; }
  [data-section-type="ingredients-glossary-section"] .glossary__list.glossary__list--empty {
    display: none; }
    [data-section-type="ingredients-glossary-section"] .glossary__list.glossary__list--empty .glossary__ingredient--empty {
      display: block; }
  [data-section-type="ingredients-glossary-section"] .glossary__ingredients {
    width: 100%;
    margin: 0 auto;
    text-align: center; }
    @media (min-width: 921px) {
      [data-section-type="ingredients-glossary-section"] .glossary__ingredients {
        width: calc(100% / 1.5);
        max-width: 780px; } }
    [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__title {
      position: relative;
      display: block;
      text-transform: uppercase;
      font-weight: 500;
      font-size: 26px; }
      [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__title:after, [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background: #3c3935;
        height: 1px;
        width: 40%; }
      [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__title:before {
        left: auto;
        right: 0px; }
    [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient {
      text-align: left;
      border-top: 1px dotted #c1c1c1;
      padding: 30px 0; }
      [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient:nth-child(3) {
        border-top: none; }
      [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient.glossary__ingredient--empty {
        text-align: center;
        border: none;
        padding: 0;
        margin-bottom: 20px; }
        [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient.glossary__ingredient--empty p {
          color: #999999; }
      [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient .glossary__ingredient--image {
        width: 80px;
        display: block;
        margin: 0 auto 20px auto;
        vertical-align: middle; }
        @media (min-width: 921px) {
          [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient .glossary__ingredient--image {
            width: 120px;
            display: inline-block;
            margin: 0;
            padding: 10px; } }
      [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient .glossary__ingredient--info {
        width: 100%;
        display: block;
        vertical-align: middle;
        padding: 0;
        text-align: center; }
        @media (min-width: 921px) {
          [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient .glossary__ingredient--info {
            width: calc(100% - 120px);
            display: inline-block;
            padding-left: 60px;
            text-align: left; } }
        [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient .glossary__ingredient--info label {
          font-size: 1.21429em;
          font-weight: 700;
          text-transform: uppercase; }
        [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient .glossary__ingredient--info a {
          font-weight: 600; }
        [data-section-type="ingredients-glossary-section"] .glossary__ingredients .glossary__list .glossary__ingredient .glossary__ingredient--info p {
          margin: 0 0 20px 0; }
  [data-section-type="ingredients-glossary-section"] .glossary__content-container {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-left: 0; }
    @media (min-width: 921px) {
      [data-section-type="ingredients-glossary-section"] .glossary__content-container {
        width: 78%;
        text-align: center;
        margin-left: 10%; } }
    [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content img {
      display: block;
      vertical-align: middle;
      width: 80%;
      margin: auto; }
      @media (min-width: 921px) {
        [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content img {
          display: inline-block;
          vertical-align: middle;
          width: 30%; } }
    [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content .glossary__content-info {
      display: block;
      width: 100%;
      text-align: center;
      margin-bottom: 20px; }
      @media (min-width: 921px) {
        [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content .glossary__content-info {
          display: inline-block;
          vertical-align: middle;
          width: 60%;
          text-align: left; } }
      [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content .glossary__content-info h4, [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content .glossary__content-info .h4 {
        text-transform: uppercase;
        letter-spacing: 6px; }
      [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content .glossary__content-info p {
        margin-bottom: 10px; }
      [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content .glossary__content-info a {
        color: black; }
        [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content .glossary__content-info a:hover {
          text-decoration: underline; }
    [data-section-type="ingredients-glossary-section"] .glossary__content-container .glossary__content .glossary__content-empty {
      margin: 30px 0; }

.popup__ingredient {
  max-width: 540px;
  width: 100%;
  padding: 40px 30px; }
  @media (min-width: 921px) {
    .popup__ingredient {
      padding: 40px; } }
  .popup__ingredient .popup__ingredient--image {
    width: 40%;
    display: block;
    margin: 0 auto 20px auto;
    vertical-align: middle; }
    @media (min-width: 921px) {
      .popup__ingredient .popup__ingredient--image {
        width: 20%;
        display: inline-block;
        margin: 0 auto; } }
    .popup__ingredient .popup__ingredient--image img {
      display: block;
      width: 80%;
      margin: 0 auto; }
  .popup__ingredient .popup__ingredient--content {
    width: 100%;
    display: block;
    vertical-align: middle; }
    @media (min-width: 921px) {
      .popup__ingredient .popup__ingredient--content {
        width: calc(80% - 20px);
        display: inline-block;
        margin: 0 0 0 20px; } }
    .popup__ingredient .popup__ingredient--content .product__ingredient--name {
      padding: 0 5px;
      font-size: 0.85714em;
      font-weight: 600;
      text-transform: uppercase;
      background: #fff5f3;
      height: 40px;
      vertical-align: middle;
      text-align: center;
      display: block;
      line-height: 40px;
      padding: 0 20px; }
      @media (min-width: 921px) {
        .popup__ingredient .popup__ingredient--content .product__ingredient--name {
          display: table-cell;
          line-height: 1.2; } }
    .popup__ingredient .popup__ingredient--content p {
      font-size: 15px;
      margin-top: 10px;
      text-align: center; }
      @media (min-width: 921px) {
        .popup__ingredient .popup__ingredient--content p {
          font-size: 14px;
          margin-top: 20px;
          text-align: left; } }

/*================ SECTIONS / POLICY PAGES ================*/
[data-section-type="Policy"] {
  width: 100%;
  max-width: 860px;
  margin: 20px auto; }
  [data-section-type="Policy"] .giveaway__table h2, [data-section-type="Policy"] .giveaway__table .h2 {
    text-align: center;
    margin: 30px auto 10px auto; }
    @media (min-width: 921px) {
      [data-section-type="Policy"] .giveaway__table h2, [data-section-type="Policy"] .giveaway__table .h2 {
        margin: 50px auto 20px auto; } }
  [data-section-type="Policy"] .giveaway__table table {
    font-size: 11px;
    border: 1px solid #e8e8e8;
    background: white; }
    @media (min-width: 921px) {
      [data-section-type="Policy"] .giveaway__table table {
        font-size: 13px; } }
    [data-section-type="Policy"] .giveaway__table table td {
      border: 1px solid #3c3935;
      padding: 20px 10px; }
      @media (min-width: 921px) {
        [data-section-type="Policy"] .giveaway__table table td {
          padding: 20px; } }
      [data-section-type="Policy"] .giveaway__table table td:first-child {
        background: #fff5f3;
        font-weight: 700;
        text-transform: uppercase;
        width: 105px; }
        @media (min-width: 921px) {
          [data-section-type="Policy"] .giveaway__table table td:first-child {
            width: 160px; } }
        @media (min-width: 921px) {
          [data-section-type="Policy"] .giveaway__table table td:first-child {
            width: 200px; } }
      [data-section-type="Policy"] .giveaway__table table td ul {
        padding: 0;
        margin: 0 0 15px 15px; }
        @media (min-width: 921px) {
          [data-section-type="Policy"] .giveaway__table table td ul {
            margin: 0 0 15px 30px; } }
        [data-section-type="Policy"] .giveaway__table table td ul li {
          list-style: disc;
          font-size: 11px; }
          @media (min-width: 921px) {
            [data-section-type="Policy"] .giveaway__table table td ul li {
              font-size: 13px; } }
  [data-section-type="Policy"] .policy__header h1, [data-section-type="Policy"] .policy__header .h1, [data-section-type="Policy"] .policy__header h2, [data-section-type="Policy"] .policy__header .h2 {
    text-align: center;
    margin: 30px auto 10px auto; }
    @media (min-width: 921px) {
      [data-section-type="Policy"] .policy__header h1, [data-section-type="Policy"] .policy__header .h1, [data-section-type="Policy"] .policy__header h2, [data-section-type="Policy"] .policy__header .h2 {
        margin: 50px auto 20px auto; } }
  [data-section-type="Policy"] .policy__header ul {
    list-style: inside;
    padding: 0 0 0 20px; }
    [data-section-type="Policy"] .policy__header ul li {
      list-style: url(https://cdn.shopify.com/s/files/1/1338/0845/files/icon-star.svg?83906);
      font-size: 13px;
      padding: 5px 0; }
      @media (min-width: 921px) {
        [data-section-type="Policy"] .policy__header ul li {
          font-size: 14px; } }
      [data-section-type="Policy"] .policy__header ul li a {
        font-size: 13px; }
        @media (min-width: 921px) {
          [data-section-type="Policy"] .policy__header ul li a {
            font-size: 14px; } }
        [data-section-type="Policy"] .policy__header ul li a:hover {
          text-decoration: underline; }
  [data-section-type="Policy"] .policy__header a {
    font-weight: bold; }
  [data-section-type="Policy"] .policy__header .sweepstakes--contents {
    background: #f8f8f8;
    padding: 20px;
    text-align: center; }
    @media (min-width: 921px) {
      [data-section-type="Policy"] .policy__header .sweepstakes--contents {
        padding: 30px 40px; } }
    [data-section-type="Policy"] .policy__header .sweepstakes--contents a {
      color: #3c3935;
      display: block; }
  [data-section-type="Policy"] .policy__block {
    margin-top: 60px; }
    [data-section-type="Policy"] .policy__block h2, [data-section-type="Policy"] .policy__block .h2 {
      border-top: 1px dotted #f8c1b8;
      padding: 40px 0 5px 0;
      text-align: center; }
      @media (min-width: 921px) {
        [data-section-type="Policy"] .policy__block h2, [data-section-type="Policy"] .policy__block .h2 {
          padding: 60px 0 5px 0; } }
    [data-section-type="Policy"] .policy__block h3, [data-section-type="Policy"] .policy__block .h3 {
      font-size: 1.33714em; }
      @media (max-width: 920px) {
        [data-section-type="Policy"] .policy__block h3, [data-section-type="Policy"] .policy__block .h3 {
          font-size: 1.14286em; } }
    [data-section-type="Policy"] .policy__block h4, [data-section-type="Policy"] .policy__block .h4 {
      font-size: 14px;
      text-decoration: underline; }
    [data-section-type="Policy"] .policy__block dl {
      margin: 0 0 20px; }
      [data-section-type="Policy"] .policy__block dl dt {
        display: block;
        font-weight: bold; }
      [data-section-type="Policy"] .policy__block dl dd {
        display: block;
        margin-left: 10px; }
        [data-section-type="Policy"] .policy__block dl dd + dt {
          margin-top: 10px; }
    [data-section-type="Policy"] .policy__block ul {
      list-style: inside;
      margin: 0 0 20px; }
      [data-section-type="Policy"] .policy__block ul lh {
        font-weight: bold;
        margin-top: 15px;
        display: block; }
      [data-section-type="Policy"] .policy__block ul li {
        list-style: inherit; }
    [data-section-type="Policy"] .policy__block a:not(.btn) {
      text-decoration: underline; }
    [data-section-type="Policy"] .policy__block a.btn {
      margin: 0 0 20px; }
    [data-section-type="Policy"] .policy__block .CookieDeclaration #CookieDeclarationChangeConsent a {
      padding: 13px 10px;
      display: inline-block;
      background: #3c3935;
      color: white;
      text-decoration: none;
      margin: 10px 0;
      text-transform: uppercase; }
    [data-section-type="Policy"] .policy__block .CookieDeclaration .CookieDeclarationType {
      border: none;
      background: #f0f0f0;
      padding: 20px; }
      @media (min-width: 921px) {
        [data-section-type="Policy"] .policy__block .CookieDeclaration .CookieDeclarationType {
          padding: 30px 40px; } }
      [data-section-type="Policy"] .policy__block .CookieDeclaration .CookieDeclarationType .CookieDeclarationTable {
        font-size: 10px;
        border: 1px solid #e8e8e8;
        background: white; }
        @media (min-width: 921px) {
          [data-section-type="Policy"] .policy__block .CookieDeclaration .CookieDeclarationType .CookieDeclarationTable {
            font-size: 11px; } }
        [data-section-type="Policy"] .policy__block .CookieDeclaration .CookieDeclarationType .CookieDeclarationTable .CookieDeclarationTableHeader {
          padding: 10px 4px;
          background: #fff5f3; }
        [data-section-type="Policy"] .policy__block .CookieDeclaration .CookieDeclarationType .CookieDeclarationTable .CookieDeclarationTableCell {
          vertical-align: middle;
          padding: 10px 4px; }

/*================ SECTIONS / #LOGIN #REGISTER #FORGOT PASSWORD ================*/
.login__container, .reset-password__container, .register__container {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  padding: 0; }
  @media (min-width: 921px) {
    .login__container, .reset-password__container, .register__container {
      width: 50%;
      padding: 0 60px; } }
  .login__container .form__label, .reset-password__container .form__label, .register__container .form__label {
    font-family: "Futura-PT", sans-serif; }

.login__container {
  margin: 0 0 20px 0; }
  .login__container .form__row .form__button {
    margin: 0 0 30px 0; }

.reset-password__container {
  display: none; }

/*================ SECTIONS / #BLOG ================*/
.blog .blog__header {
  text-align: center; }
  .blog .blog__header .breadcrumbs {
    margin: 20px auto 0 auto;
    color: #c1c1c1;
    font-weight: 500;
    font-size: 11px; }
    @media (min-width: 921px) {
      .blog .blog__header .breadcrumbs {
        font-size: 14px; } }
    .blog .blog__header .breadcrumbs a {
      text-transform: uppercase;
      color: #c1c1c1;
      transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
      .blog .blog__header .breadcrumbs a.active {
        color: #3c3935; }
        .blog .blog__header .breadcrumbs a.active:hover {
          text-decoration: none; }
      .blog .blog__header .breadcrumbs a:hover {
        text-decoration: underline; }
  .blog .blog__header .blog__title {
    display: none; }
  .blog .blog__header .blog__date {
    margin: 20px auto; }
    @media (min-width: 921px) {
      .blog .blog__header .blog__date {
        margin: 40px auto 0 auto; } }
.blog .blog__share {
  text-align: center;
  padding: 60px 0;
  border-top: 2px solid #e8e8e8;
  border-bottom: 2px solid #e8e8e8; }
  .blog .blog__share h2, .blog .blog__share .h2 {
    margin: 0 0 35px 0;
    font-size: 18px; }
    @media (min-width: 921px) {
      .blog .blog__share h2, .blog .blog__share .h2 {
        font-size: 26px; } }
  .blog .blog__share .blog__share--wrap .blog__share--icon {
    display: inline-block;
    width: 40px;
    margin: 0 0 0 50px;
    transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
    @media (min-width: 921px) {
      .blog .blog__share .blog__share--wrap .blog__share--icon {
        margin: 0 0 0 60px; } }
    .blog .blog__share .blog__share--wrap .blog__share--icon:first-child {
      margin: 0; }
    .blog .blog__share .blog__share--wrap .blog__share--icon:hover {
      opacity: 0.7; }
.blog .blog__pagination--wrap {
  margin: 20px auto;
  display: table;
  width: 100%; }
  .blog .blog__pagination--wrap .blog__pagination {
    display: inline-block;
    position: relative;
    font-weight: 500; }
    .blog .blog__pagination--wrap .blog__pagination span {
      vertical-align: middle; }
    .blog .blog__pagination--wrap .blog__pagination.pagination--left {
      float: left; }
      .blog .blog__pagination--wrap .blog__pagination.pagination--left .pagination--arrow {
        margin: 0 20px 0 0; }
    .blog .blog__pagination--wrap .blog__pagination.pagination--right {
      float: right; }
      .blog .blog__pagination--wrap .blog__pagination.pagination--right .pagination--arrow {
        margin: 0 0 0 20px; }
    .blog .blog__pagination--wrap .blog__pagination .pagination--arrow {
      display: inline-block;
      width: 40px;
      height: 40px;
      border: 2px solid #e8e8e8;
      text-align: center;
      transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
      vertical-align: middle;
      color: #3c3935; }
      @media (min-width: 921px) {
        .blog .blog__pagination--wrap .blog__pagination .pagination--arrow {
          width: 60px;
          height: 60px; } }
      .blog .blog__pagination--wrap .blog__pagination .pagination--arrow svg {
        vertical-align: middle;
        height: 100%;
        width: 16px;
        font-size: 12px; }
        @media (min-width: 921px) {
          .blog .blog__pagination--wrap .blog__pagination .pagination--arrow svg {
            font-size: 14px; } }
      .blog .blog__pagination--wrap .blog__pagination .pagination--arrow:hover {
        border: 2px solid #f8c1b8;
        background: #f8c1b8; }

/*================ MODULES / #CART ================*/
.cart__container {
  padding-top: 30px; }
  @media (min-width: 921px) {
    .cart__container {
      padding-top: 60px; } }
  .cart__container .cart__products {
    display: inline-block;
    width: 100%; }
    @media (min-width: 921px) {
      .cart__container .cart__products {
        width: 70%;
        padding-right: 60px; } }
    .cart__container .cart__products .cart__product {
      position: relative;
      padding: 1em 0;
      border-bottom: 1px dotted #e8e8e8; }
      @media (min-width: 921px) {
        .cart__container .cart__products .cart__product {
          padding: 0.9em 1em; } }
      .cart__container .cart__products .cart__product:last-child {
        border-bottom: 0px; }
      .cart__container .cart__products .cart__product.cart__product--header {
        font-size: 1.28571em;
        font-weight: bold;
        border-bottom: 1px solid #c1c1c1;
        padding-left: 0;
        padding-right: 0;
        text-transform: uppercase;
        letter-spacing: 0.1em; }
      .cart__container .cart__products .cart__product[data-handle='oil-trio-unit-carton'] {
        display: none; }
      .cart__container .cart__products .cart__product > div {
        width: 20%;
        display: inline-block;
        vertical-align: middle; }
        @media (min-width: 921px) {
          .cart__container .cart__products .cart__product > div {
            width: calc(100% / 5 - 30px); } }
      .cart__container .cart__products .cart__product .cart__product-info {
        width: 80%; }
        @media (min-width: 921px) {
          .cart__container .cart__products .cart__product .cart__product-info {
            width: calc(100% / 5 * 2 + 30px); } }
        .cart__container .cart__products .cart__product .cart__product-info .cart__product-info--image {
          width: calc(40% - 10px);
          margin-right: 10px;
          display: inline-block;
          vertical-align: middle; }
          @media (min-width: 921px) {
            .cart__container .cart__products .cart__product .cart__product-info .cart__product-info--image {
              width: calc(40% - 20px);
              margin-right: 20px; } }
        .cart__container .cart__products .cart__product .cart__product-info .cart__product-info--text {
          display: inline-block;
          vertical-align: middle;
          font-size: 12px;
          max-width: 55%; }
          @media (min-width: 921px) {
            .cart__container .cart__products .cart__product .cart__product-info .cart__product-info--text {
              font-size: 1em; } }
      .cart__container .cart__products .cart__product .cart__product-info--title {
        text-transform: uppercase;
        font-weight: 600; }
      .cart__container .cart__products .cart__product .cart__product-price .cart__product-price--compare {
        color: #c1c1c1;
        text-decoration: line-through;
        margin-right: 10px; }
      .cart__container .cart__products .cart__product .cart__product-quantity .cart__product-quantity--input {
        width: 45px;
        text-align: center;
        padding: 15px 5px; }
      .cart__container .cart__products .cart__product .cart__product--remove {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          .cart__container .cart__products .cart__product .cart__product--remove {
            right: 1em; } }
  .cart__container .cart__summary-container {
    margin-top: 20px;
    display: inline-block;
    vertical-align: top;
    width: 100%; }
    @media (min-width: 921px) {
      .cart__container .cart__summary-container {
        margin-top: 0px;
        width: 30%; } }
    .cart__container .cart__summary-container .cart__summary--row {
      padding: 0 20px; }
    .cart__container .cart__summary-container .cart__summary {
      background-color: #f1f1f1;
      padding: 20px 0px;
      color: #3c3935; }
    .cart__container .cart__summary-container .cart__summary-title {
      font-size: 1.14286em; }
      @media (min-width: 921px) {
        .cart__container .cart__summary-container .cart__summary-title {
          font-size: 1.28571em; } }
    .cart__container .cart__summary-container .cart__summary-discounts {
      border-top: 1px solid white;
      border-bottom: 1px solid white;
      text-transform: uppercase;
      font-weight: bold;
      cursor: pointer; }
      .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--text {
        padding: 20px 0px;
        position: relative;
        letter-spacing: 0.1em;
        font-size: 0.92857em; }
        @media (min-width: 921px) {
          .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--text {
            font-size: 14px; } }
        .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--text.open:after {
          content: "\f068"; }
        .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--text.open + .cart__summary-discount--field {
          display: block; }
        .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--text:after {
          position: absolute;
          right: 0px;
          top: 50%;
          transform: translateY(-50%);
          font-family: FontAwesome;
          font-weight: 200;
          content: "\f067"; }
        .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--text i, .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--text svg {
          margin-top: 2px;
          float: right; }
      .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--field {
        padding-bottom: 20px;
        display: none;
        overflow: hidden; }
        .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--field .cart__summary-discount--input {
          width: 100%; }
          .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--field .cart__summary-discount--input::placeholder {
            color: #999999; }
        .cart__container .cart__summary-container .cart__summary-discounts .cart__summary-discount--field .cart__summary-discount--warning {
          margin-top: 15px;
          font-size: 0.9em;
          font-weight: 500;
          text-transform: initial; }
    .cart__container .cart__summary-container .cart__summary-fields {
      padding: 20px 0px;
      border-bottom: 1px solid white; }
    .cart__container .cart__summary-container .cart__summary-field + .cart__summary-field {
      margin: 20px 0px; }
    .cart__container .cart__summary-container .cart__summary-field:last-child {
      margin-bottom: 0px; }
    .cart__container .cart__summary-container .cart__summary-field.cart__summary-field--total {
      font-weight: 600;
      margin: 20px 0px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 1.14286em; }
      @media (min-width: 921px) {
        .cart__container .cart__summary-container .cart__summary-field.cart__summary-field--total {
          font-size: 1.28571em; } }
    .cart__container .cart__summary-container .cart__summary-field label {
      display: inline-block; }
    .cart__container .cart__summary-container .cart__summary-field span {
      float: right; }
    .cart__container .cart__summary-container .cart__summary-actions--checkout {
      width: 100%; }
  .cart__container .cart__additional-checkout-buttons {
    border: 1px dotted #999999;
    padding: 20px;
    margin-top: 30px;
    position: relative;
    display: none; }
    @media (min-width: 921px) {
      .cart__container .cart__additional-checkout-buttons {
        display: block; } }
    .cart__container .cart__additional-checkout-buttons iframe {
      z-index: 1; }
    .cart__container .cart__additional-checkout-buttons .additional-checkout-button {
      width: 100% !important;
      margin: 0px !important; }
      .cart__container .cart__additional-checkout-buttons .additional-checkout-button + .additional-checkout-button {
        margin-top: 10px !important; }
    .cart__container .cart__additional-checkout-buttons .cart__additional-checkout-buttons--floating-text {
      position: absolute;
      top: -10px;
      padding: 0 10px;
      left: 50%;
      transform: translateX(-50%);
      background: white; }
  .cart__container .cart__note {
    margin: 20px auto; }
    @media (min-width: 921px) {
      .cart__container .cart__note {
        margin-bottom: none; } }
    .cart__container .cart__note label {
      font-size: 1.1em;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 10px; }
    .cart__container .cart__note .cart__note--link {
      color: #3c3935;
      text-decoration: underline; }
      .cart__container .cart__note .cart__note--link:hover {
        color: #999999; }

/*================ MODULES / #ACCOUNT #ORDER HISTORY ================*/
.account__welcome {
  padding: 20px 0px;
  text-align: center; }
  @media (min-width: 921px) {
    .account__welcome {
      padding: 40px 0px; } }
  .account__welcome.order--title {
    padding: 0; }
    .account__welcome.order--title .account__welcome--hi {
      font-family: "Futura-PT", sans-serif;
      letter-spacing: 0.1em; }
  .account__welcome .account__welcome--hi {
    font-family: futura-pt-bold, sans-serif;
    letter-spacing: 0.1em; }
  .account__welcome .account__welcome--logout {
    display: block; }
    .account__welcome .account__welcome--logout a {
      text-decoration: underline;
      text-transform: capitalize;
      transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
      .account__welcome .account__welcome--logout a:hover {
        color: #3c3935; }

.account__navigation {
  text-align: center; }
  @media (min-width: 921px) {
    .account__navigation {
      border-top: 1px solid #e8e8e8;
      border-bottom: 1px solid #e8e8e8; } }
  .account__navigation .account__navigation--dropdown {
    width: 100%; }
  .account__navigation .account__navigation--link {
    position: relative;
    color: #999999;
    padding: 20px 0px;
    display: inline-block;
    width: calc(100% / 4 - 5px);
    text-transform: uppercase;
    font: 600 1em/1 "Futura-PT", sans-serif;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
    .account__navigation .account__navigation--link:hover {
      color: #3c3935; }
    .account__navigation .account__navigation--link.active {
      color: #3c3935; }
      .account__navigation .account__navigation--link.active span {
        position: relative; }
        .account__navigation .account__navigation--link.active span:after {
          content: " ";
          position: absolute;
          left: 0;
          width: 100%;
          height: 3px;
          bottom: -20px;
          background: #f8c1b8; }

.account__content, .act-content {
  display: block;
  position: relative; }
  .account__content + .act-content, .act-content + .act-content {
    margin-top: 20px; }
    @media (min-width: 921px) {
      .account__content + .act-content, .act-content + .act-content {
        margin-top: 60px; } }
  .account__content .account__content--left, .account__content .account__content--right, .act-content .account__content--left, .act-content .account__content--right {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-bottom: 20px; }
  @media (min-width: 921px) {
    .account__content .account__content--left, .act-content .account__content--left {
      width: 50%;
      padding-right: 30px;
      margin-bottom: 0px; } }
  @media (min-width: 921px) {
    .account__content .account__content--right, .act-content .account__content--right {
      width: 50%;
      padding-left: 30px; } }
  .account__content .account__content--title, .act-content .account__content--title {
    position: relative;
    border-bottom: 1px solid #e8e8e8; }
    .account__content .account__content--title h2, .account__content .account__content--title .h2, .act-content .account__content--title h2, .act-content .account__content--title .h2 {
      font-size: 16px; }
      @media (min-width: 921px) {
        .account__content .account__content--title h2, .account__content .account__content--title .h2, .act-content .account__content--title h2, .act-content .account__content--title .h2 {
          font-size: 20px; } }
    .account__content .account__content--title h3, .account__content .account__content--title .h3, .act-content .account__content--title h3, .act-content .account__content--title .h3 {
      font-size: 16px; }
      @media (min-width: 921px) {
        .account__content .account__content--title h3, .account__content .account__content--title .h3, .act-content .account__content--title h3, .act-content .account__content--title .h3 {
          font-size: 20px; } }
  .account__content .account__row, .act-content .account__row {
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #e8e8e8; }
    .account__content .account__row:last-child, .act-content .account__row:last-child {
      border-bottom: 0px; }
    .account__content .account__row .account__row--half, .act-content .account__row .account__row--half {
      display: inline-block;
      vertical-align: top; }
      @media (max-width: 920px) {
        .account__content .account__row .account__row--half, .act-content .account__row .account__row--half {
          width: 100%;
          margin-top: 15px;
          padding-bottom: 15px;
          border-bottom: 1px dotted #e8e8e8; }
          .account__content .account__row .account__row--half:last-child, .act-content .account__row .account__row--half:last-child {
            border-bottom: 0px; } }
      @media (min-width: 921px) {
        .account__content .account__row .account__row--half, .act-content .account__row .account__row--half {
          width: 50%; } }
    .account__content .account__row .account__row--third, .act-content .account__row .account__row--third {
      vertical-align: top;
      display: inline-block; }
      @media (max-width: 920px) {
        .account__content .account__row .account__row--third, .act-content .account__row .account__row--third {
          width: 100%;
          margin-top: 15px;
          padding-bottom: 15px;
          border-bottom: 1px dotted #e8e8e8; }
          .account__content .account__row .account__row--third:last-child, .act-content .account__row .account__row--third:last-child {
            padding-bottom: 0px;
            border-bottom: 0px;
            margin-bottom: 0px; } }
      @media (min-width: 921px) {
        .account__content .account__row .account__row--third, .act-content .account__row .account__row--third {
          width: calc(100% / 3); } }
  .account__content .account__row--edit, .act-content .account__row--edit {
    text-decoration: underline;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); }
    .account__content .account__row--edit a, .act-content .account__row--edit a {
      transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
      .account__content .account__row--edit a:hover, .act-content .account__row--edit a:hover {
        color: #3c3935; }

.account__box {
  position: relative;
  display: block;
  margin: 0 auto 10px auto;
  width: 98%; }

.account__row--icon {
  width: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0; }
  .account__row--icon ~ .account__row--name {
    padding-left: 60px; }
  .account__row--icon ~ .account__row--value {
    padding-left: 60px; }

.account__box--display {
  padding: 10px; }
  .account__box--active .account__box--display {
    display: none; }

.account__box--edit {
  display: none;
  text-align: center;
  background: rgba(248, 193, 184, 0.6);
  padding: 10px; }
  .account__box--edit .account__box--title {
    position: relative;
    text-align: center;
    display: block;
    margin-bottom: 10px; }
    .account__box--edit .account__box--title .account__row--icon {
      position: relative;
      transform: initial;
      display: inline-block;
      vertical-align: middle; }
    .account__box--edit .account__box--title .account__row--name {
      padding-left: 10px;
      display: inline-block;
      vertical-align: middle; }
  .account__box--active .account__box--edit {
    display: block; }

.account__input {
  display: inline-block;
  width: calc(100% / 3 - 10px); }
  .account__input:nth-child(3n+2) {
    margin-right: 5px; }
  .account__input:nth-child(3n+3) {
    margin-right: 5px;
    margin-left: 5px; }
  .account__input:nth-child(3n+4) {
    margin-left: 5px; }
  .account__input .account__input--dropdown {
    width: 100%;
    display: block; }
  .account__input .account__input--label {
    border: 1px solid #c1c1c1;
    background-color: white;
    padding: 15px 10px;
    width: 100%;
    margin-bottom: 10px; }
  .account__input .account__input--checkbox {
    display: none; }
    .account__input .account__input--checkbox:checked + label {
      border-color: #3c3935;
      background-color: #3c3935;
      color: white;
      outline: 0; }

.account__row--actions {
  display: none;
  text-align: center; }
  .account__box--active .account__row--actions {
    display: block; }

.account__row--name {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  position: relative; }
  .account__row--name .bigger {
    font-size: 1.28571em; }

.account__row--value {
  display: block;
  text-transform: lowercase;
  margin: 0.3em 0 0 0; }

.order-history__logo img {
  max-width: 20px;
  vertical-align: top; }

.order-history__empty {
  padding: 20px 0px;
  text-align: center; }
  @media (min-width: 921px) {
    .order-history__empty {
      padding: 60px 0px; } }

.order-history__total {
  text-align: right; }

.order-history__view {
  text-align: right; }
  .order-history__view a {
    text-decoration: underline;
    text-transform: capitalize;
    transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
    .order-history__view a:hover {
      color: #3c3935; }

.reorder-actions {
  text-align: center;
  margin-top: 20px; }
  @media (min-width: 921px) {
    .reorder-actions {
      margin-top: 60px; } }

.reorder-table .reorder__row:nth-child(1n + 2) {
  display: none; }
.reorder-table .reorder__date {
  display: block;
  text-transform: uppercase;
  position: relative;
  text-align: left;
  border-bottom: 1px solid #ddd;
  margin: 0 0 20px 0;
  padding-bottom: 10px; }
.reorder-table .reorder__product * {
  display: inline-block;
  vertical-align: middle; }
.reorder-table .reorder__product .reorder__product-image {
  width: 140px; }
  @media (min-width: 921px) {
    .reorder-table .reorder__product .reorder__product-image {
      width: 100px; } }
.reorder-table .reorder__product .reorder__product-info {
  width: calc(100% - 140px - 20px);
  margin-left: 20px;
  padding: 10px; }
  .reorder-table .reorder__product .reorder__product-info > div {
    margin-bottom: 5px; }
    @media (min-width: 921px) {
      .reorder-table .reorder__product .reorder__product-info > div {
        margin-bottom: 0px; } }
  @media (min-width: 921px) {
    .reorder-table .reorder__product .reorder__product-info {
      width: calc(100% - 100px - 20px); } }
.reorder-table .reorder__product .reorder__product-info--title {
  width: 100%; }
  @media (min-width: 921px) {
    .reorder-table .reorder__product .reorder__product-info--title {
      width: calc(100% / 3); } }
  .reorder-table .reorder__product .reorder__product-info--title > * {
    display: block; }
.reorder-table .reorder__product .reorder__product-info--price {
  width: 100%; }
  @media (min-width: 921px) {
    .reorder-table .reorder__product .reorder__product-info--price {
      width: calc(100% / 3); } }
.reorder-table .reorder__product .reorder__product-actions {
  width: 100%; }
  @media (min-width: 921px) {
    .reorder-table .reorder__product .reorder__product-actions {
      width: calc(100% / 3); } }
  .reorder-table .reorder__product .reorder__product-actions .reorder__product-actions--review {
    width: 100%;
    margin-bottom: 5px; }
    @media (min-width: 921px) {
      .reorder-table .reorder__product .reorder__product-actions .reorder__product-actions--review {
        width: 50%;
        margin-bottom: 0px; } }
  .reorder-table .reorder__product .reorder__product-actions .reorder__product-actions--form {
    width: 100%;
    margin-bottom: 5px; }
    @media (min-width: 921px) {
      .reorder-table .reorder__product .reorder__product-actions .reorder__product-actions--form {
        width: 50%;
        text-align: right;
        margin-bottom: 0px; } }

.address__add {
  display: none;
  max-width: 920px;
  margin: 20px auto; }
  @media (min-width: 921px) {
    .address__add {
      margin: 60px auto; } }

.address__header .address__header--return a {
  text-transform: capitalize;
  transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  .address__header .address__header--return a:hover {
    color: #3c3935; }
.address__header h1, .address__header .h1 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase; }
  @media (min-width: 921px) {
    .address__header h1, .address__header .h1 {
      font-size: 26px; } }
.address__header button {
  margin: 0 auto;
  display: block; }

.addresses {
  margin-top: 30px; }
  @media (min-width: 921px) {
    .addresses {
      margin-top: 60px; } }
  .addresses .address {
    width: 100%;
    vertical-align: top;
    display: inline-block;
    padding: 30px;
    margin-bottom: 20px;
    border: 2px solid #c1c1c1; }
    @media (min-width: 921px) {
      .addresses .address {
        width: calc(50% - 30px);
        margin-right: 30px;
        padding: 40px; }
        .addresses .address:nth-child(2n) {
          margin-right: 0px;
          margin-left: 30px; } }
  .addresses .address__actions {
    margin-top: 15px;
    margin-bottom: 0px; }
    .addresses .address__actions .address_actions--link:first-child {
      padding-right: 14px;
      border-right: 1px solid #e8e8e8; }
    .addresses .address__actions .address_actions--link:last-child {
      padding-left: 10px; }

.order__status {
  margin-top: 30px; }
  @media (min-width: 921px) {
    .order__status {
      margin-top: 60px; } }
  .order__status .order__title {
    display: block;
    font: 600 1.2em/1 "Futura-PT", sans-serif; }
    .order__status .order__title img {
      vertical-align: middle;
      max-width: 20px; }

.account__order {
  margin-top: 30px; }
  @media (min-width: 921px) {
    .account__order {
      margin-top: 60px; } }
  .account__order .account__order--title {
    display: block;
    font: 600 1.2em/1 "Futura-PT", sans-serif;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px; }
  .account__order .order-table tr {
    border-bottom: 1px dotted #e8e8e8; }
  .account__order .order-table .order-table__summary:first-child {
    text-align: left; }
  .account__order .order-table .order-table__summary:last-child {
    text-align: right; }
  .account__order .order-table .order-table__number {
    color: #999999;
    font-size: 1.6em; }
  .account__order .order-table .order-table__product-image {
    width: 40px;
    display: inline-block;
    vertical-align: middle; }
    @media (min-width: 921px) {
      .account__order .order-table .order-table__product-image {
        width: 60px; } }
  .account__order .order-table .order-table__product-info {
    margin-left: 20px;
    display: inline-block;
    vertical-align: middle; }
  .account__order .order-table .order-table__quantity {
    text-align: center; }
  .account__order .order-table .order-table__total {
    text-align: right; }

.order-total {
  margin-bottom: 30px; }
  @media (min-width: 921px) {
    .order-total {
      width: 35%;
      margin: 0 0 60px 65%; } }
  .order-total tr {
    border-bottom: 1px solid #e8e8e8; }

/*============================================================================
  #MODULES
==============================================================================*/
/*================ MODULES / #CARD / #PRODUCT CARD ================*/
.featured-collection__item {
  padding: 10px; }
  @media (min-width: 921px) {
    .featured-collection__item {
      padding: 30px; } }

.product-card {
  text-align: center;
  position: relative;
  margin-bottom: 40px; }
  .product-card .product-card__img {
    width: 100%;
    margin: 0 auto; }
    @media (min-width: 921px) {
      .product-card .product-card__img {
        width: 100%;
        transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87); } }
    .product-card .product-card__img img {
      vertical-align: top; }
  .product-card .product-card__info {
    font-size: 0.92857em;
    margin: 10px auto 0 auto; }
    .product-card .product-card__info .product-card__title {
      font-weight: 700;
      text-transform: uppercase;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
    .product-card .product-card__info .product-card__type {
      margin-bottom: 5px; }
    @media (min-width: 921px) {
      .product-card .product-card__info .product-card__price {
        height: auto; } }
    .product-card .product-card__info .product-card__price .product-info__price--compare {
      color: #c1c1c1;
      text-decoration: line-through;
      margin-right: 10px; }
    .product-card .product-card__info .product-card__price .product-card__price--sale {
      display: inline-block;
      color: #999999; }
    .product-card .product-card__info .product-card__price .product-card__price--value {
      font-size: 0.85714em;
      color: #999999; }
  .product-card .product-card__add-container {
    transition: 0.3s all;
    margin-top: 10px; }
    @media (min-width: 921px) {
      .product-card .product-card__add-container {
        margin: 0px;
        display: block;
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 220px;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.2s ease; } }
    .product-card .product-card__add-container input[type="submit"] {
      border: none;
      border-bottom: 1px solid #3c3935;
      padding: 0;
      background-color: transparent;
      text-decoration: none; }
      .product-card .product-card__add-container input[type="submit"]:hover, .product-card .product-card__add-container input[type="submit"] :focus {
        background: none;
        color: #3c3935; }
      @media (min-width: 921px) {
        .product-card .product-card__add-container input[type="submit"] {
          border: 1px solid #c1c1c1;
          background-color: white;
          padding: 15px 10px;
          width: 100%; }
          .product-card .product-card__add-container input[type="submit"]:hover, .product-card .product-card__add-container input[type="submit"]:focus {
            border-color: #3c3935;
            background-color: #3c3935;
            color: white;
            outline: 0; }
          .product-card .product-card__add-container input[type="submit"]:disabled {
            background-color: #c1c1c1;
            border-color: #c1c1c1;
            color: white; } }
  .product-card .product-card__hover .product-card__hover-info {
    display: none; }
  @media (min-width: 921px) {
    .product-card .product-card__hover {
      pointer-events: none;
      display: block;
      height: 110%;
      width: 580px;
      border: 1px dotted #c1c1c1;
      position: absolute;
      z-index: 1;
      top: 50%;
      transform: translateY(-50%);
      visibility: hidden;
      opacity: 0;
      transition: visibility 0s, opacity 0.2s ease; }
      .collection__product--right .product-card .product-card__hover {
        right: 0; }
        .collection__product--right .product-card .product-card__hover .product-card__hover-container {
          float: left; }
      .product-card .product-card__hover .product-card__hover-container {
        pointer-events: all;
        text-align: left;
        float: right;
        width: 50%;
        height: 100%;
        padding: 0 40px;
        background: white; }
        .product-card .product-card__hover .product-card__hover-container .product-card__hover-container--center {
          position: relative;
          top: 50%;
          transform: translateY(-50%); }
      .product-card .product-card__hover .product-card__hover-info {
        display: block; }
        .product-card .product-card__hover .product-card__hover-info .product-card__hover-info--type {
          font-weight: 600;
          font-size: 15px;
          text-transform: uppercase;
          margin: 0 0 10px 0; }
        .product-card .product-card__hover .product-card__hover-info .product-card__hover-info--description {
          font-size: 13px; } }
  @media (min-width: 1281px) {
    .product-card .product-card__hover {
      height: 90%;
      width: 660px;
      top: 45%; } }
  .product-card:hover .product-card__add-container, .product-card:focus .product-card__add-container {
    display: block;
    visibility: visible;
    opacity: 1; }
  @media (min-width: 921px) {
    .product-card:hover .product-card__hover, .product-card:focus .product-card__hover {
      display: block;
      visibility: visible;
      opacity: 1; }
    .product-card:hover .product-card__img, .product-card:focus .product-card__img {
      transform: scale(1.02); } }
  .product-card .product-card__reviews {
    display: block;
    text-align: center;
    margin: 10px 0 0 0;
    height: 18px; }
    .product-card .product-card__reviews .yotpo-display-wrapper {
      display: inline-block; }
      .product-card .product-card__reviews .yotpo-display-wrapper .text-m {
        display: none; }
    .product-card .product-card__reviews.yotpo .yotpo-icon-default-star:before, .product-card .product-card__reviews.yotpo .yotpo-icon-star:before, .product-card .product-card__reviews.yotpo .yotpo-icon-default-empty-star:before, .product-card .product-card__reviews.yotpo .yotpo-icon-empty-star:before, .product-card .product-card__reviews.yotpo .yotpo-icon-default-half-star:before, .product-card .product-card__reviews.yotpo .yotpo-icon-half-star:before {
      width: 18px;
      height: 18px; }

/*================ SIGNUP PAGE ================*/
[template="signup"] {
  background: url("/cdn/shop/files/FR_HPGIVEAWAYSKINGLOVE_BG-mobile.jpg?413964790101502717") center no-repeat;
  background-size: cover;
  min-height: calc(100vh - 70px);
  margin-bottom: 0;
  position: relative; }
  @media (min-width: 921px) {
    [template="signup"] {
      background: url("/cdn/shop/files/FR_HPGIVEAWAYSKINGLOVE_BG-desktop.jpg?413964790101502717") center no-repeat;
      background-size: cover;
      min-height: calc(100vh - 120px); } }
  [template="signup"] article {
    padding: 10% 0;
    text-align: center;
    text-transform: uppercase; }
    @media (min-width: 921px) {
      [template="signup"] article {
        padding: 4% 0; } }
    [template="signup"] article .signup--intro {
      color: white;
      font-size: 22px;
      font-style: italic;
      font-weight: 500;
      max-width: 300px;
      margin: 0 auto; }
      @media (min-width: 921px) {
        [template="signup"] article .signup--intro {
          font-size: 30px;
          max-width: 100%;
          letter-spacing: 0.15em; } }
    [template="signup"] article .signupform--wrap {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: calc(100% - 20px); }
      @media (min-width: 921px) {
        [template="signup"] article .signupform--wrap {
          position: relative;
          top: unset;
          left: unset;
          transform: none;
          margin: 40px auto; } }
      [template="signup"] article .signupform--wrap .signup--subtitle {
        color: #3c3935;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 0.15em; }
        @media (min-width: 921px) {
          [template="signup"] article .signupform--wrap .signup--subtitle {
            font-size: 30px; } }
      [template="signup"] article .signupform--wrap .signup--title {
        color: #ff6161;
        font-size: 44px;
        letter-spacing: 0.15em; }
        @media (min-width: 921px) {
          [template="signup"] article .signupform--wrap .signup--title {
            font-size: 124px;
            letter-spacing: 0.2em; } }
        [template="signup"] article .signupform--wrap .signup--title span {
          color: #3c3935;
          font-size: 22px;
          display: block; }
          @media (min-width: 921px) {
            [template="signup"] article .signupform--wrap .signup--title span {
              font-size: 50px;
              letter-spacing: 0.15em; } }
      @media (min-width: 921px) {
        [template="signup"] article .signupform--wrap .signupform {
          max-width: 860px;
          margin: 0 auto; } }
      [template="signup"] article .signupform--wrap .signupform input[type="email"] {
        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 0.7em;
        text-transform: uppercase;
        text-align: center;
        border: none; }
        @media (min-width: 921px) {
          [template="signup"] article .signupform--wrap .signupform input[type="email"] {
            font-size: 17px;
            width: calc(100% - 170px); } }
      [template="signup"] article .signupform--wrap .signupform input[type="submit"] {
        background: #3c3935;
        border: none;
        color: #f7c9c9;
        padding: 0.5em 0.7em;
        width: 120px;
        margin: 10px auto;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-size: 16px; }
        @media (min-width: 921px) {
          [template="signup"] article .signupform--wrap .signupform input[type="submit"] {
            font-size: 20px;
            width: 160px; } }
      [template="signup"] article .signupform--wrap .signupform .complete {
        font-size: 28px;
        font-weight: 500;
        color: white; }
    [template="signup"] article .signup--disclaimer {
      position: absolute;
      bottom: 10%;
      width: calc(100% - 20px);
      left: 50%;
      transform: translateX(-50%);
      max-width: 260px;
      font-weight: 500;
      font-size: 12px; }
      @media (min-width: 921px) {
        [template="signup"] article .signup--disclaimer {
          position: relative;
          bottom: unset;
          left: unset;
          transform: none;
          max-width: 100%;
          font-size: 16px; } }

/*================ SECTIONS / #PRODUCT PAGE NEW ================*/
[data-section-type="Product"] {
  padding-top: 0; }
  @media (min-width: 921px) {
    [data-section-type="Product"] {
      padding-top: 20px; } }
  [data-section-type="Product"] .product-title {
    position: relative;
    font: 22px futura-pt-bold, sans-serif;
    text-align: center;
    margin: 40px 0 20px 0; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-title {
        font-size: 28px;
        margin: 60px 0 30px 0; } }
    [data-section-type="Product"] .product-title span {
      background: #fff5f3;
      display: inline-block;
      padding: 16px 20px;
      font-style: italic; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-title span {
          padding: 16px 30px; } }
      [data-section-type="Product"] .product-title span:before, [data-section-type="Product"] .product-title span:after {
        content: '';
        display: inline-block;
        width: calc(50% - 200px);
        height: 1px;
        background: #e8e8e8;
        position: absolute;
        top: 30px; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-title span:before, [data-section-type="Product"] .product-title span:after {
            width: calc(50% - 290px); } }
      [data-section-type="Product"] .product-title span:before {
        left: 20px; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-title span:before {
            left: 60px; } }
      [data-section-type="Product"] .product-title span:after {
        right: 20px; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-title span:after {
            right: 60px; } }
  [data-section-type="Product"] .product-actions__quantity {
    margin-top: 20px; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-actions__quantity {
        margin-top: 40px; } }
    [data-section-type="Product"] .product-actions__quantity .action-qty {
      display: block;
      width: 100%;
      border-top: 1px solid #c1c1c1;
      border-bottom: 1px solid #c1c1c1;
      padding: 13px;
      margin-bottom: 1em; }
    [data-section-type="Product"] .product-actions__quantity .down, [data-section-type="Product"] .product-actions__quantity .up {
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease; }
      [data-section-type="Product"] .product-actions__quantity .down img, [data-section-type="Product"] .product-actions__quantity .up img {
        width: 10px;
        vertical-align: middle; }
      [data-section-type="Product"] .product-actions__quantity .down:hover, [data-section-type="Product"] .product-actions__quantity .up:hover {
        opacity: 0.5; }
    [data-section-type="Product"] .product-actions__quantity input {
      border: none;
      text-align: center;
      padding: 0;
      width: calc(100% - 3em);
      font: 0.875em "Futura-PT", sans-serif; }
  [data-section-type="Product"] .product-images .product-images__dots {
    display: none; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-images .product-images__dots {
        display: block; } }
    [data-section-type="Product"] .product-images .product-images__dots .product-images__dot {
      display: block;
      width: 7px;
      height: 7px;
      background: #e8e8e8;
      margin-top: 10px;
      border-radius: 100%; }
      [data-section-type="Product"] .product-images .product-images__dots .product-images__dot.product-images__dot--active {
        background: #c1c1c1; }
  [data-section-type="Product"] .product-images .product-images__carousel {
    display: block;
    padding: 0px; }
    [data-section-type="Product"] .product-images .product-images__carousel .product-image {
      width: 260px; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-images .product-images__carousel .product-image {
          width: 100%; }
          [data-section-type="Product"] .product-images .product-images__carousel .product-image + .product-image {
            margin-top: 30px; } }
  [data-section-type="Product"] .product-images .owl-next {
    right: 0; }
  [data-section-type="Product"] .product-images .owl-prev {
    left: 0; }
  [data-section-type="Product"] .product-images .owl-next, [data-section-type="Product"] .product-images .owl-prev {
    display: none; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-images .owl-next, [data-section-type="Product"] .product-images .owl-prev {
        display: block; } }
    [data-section-type="Product"] .product-images .owl-next:after, [data-section-type="Product"] .product-images .owl-prev:after {
      background: rgba(255, 255, 255, 0.5);
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0; }
  [data-section-type="Product"] .product-details__info .product-details__type {
    display: block;
    text-transform: lowercase;
    font: 600 italic 13px "Futura-PT", sans-serif;
    margin: 8px auto;
    text-align: center;
    color: #c1c1c1;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__info .product-details__type {
        font-size: 15px;
        margin: 10px auto 20px auto; } }
  [data-section-type="Product"] .product-details__info .product-details__title {
    text-transform: lowercase;
    font: 400 20px futura-pt-bold, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 8px auto;
    text-align: center; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__info .product-details__title {
        font-size: 26px;
        margin: 10px auto; } }
  [data-section-type="Product"] .product-details__price {
    text-align: center;
    font: 800 18px "Futura-PT", sans-serif;
    margin-bottom: 0;
    color: #3c3935; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__price {
        font-size: 23px;
        margin: 20px auto 10px auto; } }
    [data-section-type="Product"] .product-details__price .afterpay-paragraph {
      font: 200 13px "Futura-PT", sans-serif;
      letter-spacing: 0.07em !important;
      margin-top: 10px !important; }
  [data-section-type="Product"] .product-details__afterpay {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 0;
    display: block !important; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__afterpay {
        font-size: 16px; } }
    [data-section-type="Product"] .product-details__afterpay .afterpay-paragraph {
      font: 13px/1 "Futura-PT", sans-serif;
      text-align: center;
      font-weight: 200;
      letter-spacing: 0.06em !important;
      display: block !important; }
      [data-section-type="Product"] .product-details__afterpay .afterpay-paragraph img {
        max-width: 70px !important; }
  [data-section-type="Product"] .product-details__description {
    font: 200 12px/1.5 "Futura-PT", sans-serif; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__description {
        font-size: 13px; } }
    [data-section-type="Product"] .product-details__description .product-details__description--header {
      text-align: center; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__description .product-details__description--header {
          font-size: 22px; } }
    [data-section-type="Product"] .product-details__description .product-details__description--text {
      margin: 20px auto; }
      [data-section-type="Product"] .product-details__description .product-details__description--text .product-details__description--shade {
        font-family: "Futura-PT", sans-serif;
        margin-top: 10px;
        display: block; }
      [data-section-type="Product"] .product-details__description .product-details__description--text h4, [data-section-type="Product"] .product-details__description .product-details__description--text .h4 {
        font: 12px "Futura-PT", sans-serif; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-details__description .product-details__description--text h4, [data-section-type="Product"] .product-details__description .product-details__description--text .h4 {
            font-size: 13px; } }
    [data-section-type="Product"] .product-details__description .product-details__description--exempt {
      color: #721c24;
      font-family: "Futura-PT", sans-serif; }
    [data-section-type="Product"] .product-details__description .product-details__description--shop {
      display: block;
      margin: 30px auto;
      font: 12px "Futura-PT", sans-serif;
      text-transform: uppercase; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__description .product-details__description--shop {
          font-size: 13px; } }
    [data-section-type="Product"] .product-details__description .product-details__description--button {
      margin: 0 auto 10px auto;
      padding: 10px 20px; }
  [data-section-type="Product"] .product-details__reviews {
    margin: 20px auto; }
    [data-section-type="Product"] .product-details__reviews .yotpo .pull-left {
      float: none;
      text-align: center; }
    [data-section-type="Product"] .product-details__reviews .yotpo .text-m {
      font: 12px "Futura-PT", sans-serif;
      text-transform: lowercase;
      color: #3c3935 !important; }
      [data-section-type="Product"] .product-details__reviews .yotpo .text-m:hover {
        text-decoration: underline !important; }
  [data-section-type="Product"] .product-details__actions .product-actions__buttons .btn {
    width: 100%;
    font-size: 13px;
    padding: 15px 5px; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__actions .product-actions__buttons .btn {
        font-size: 14px;
        padding: 13px 5px; } }
  [data-section-type="Product"] .product-details__actions .product-actions__buttons.product-actions__buttons--out-of-stock a {
    width: calc(50% - 5px);
    display: inline-block;
    margin: 0 10px 0 0; }
  [data-section-type="Product"] .product-details__actions .product-actions__buttons.product-actions__buttons--out-of-stock input {
    width: calc(50% - 5px);
    display: inline-block; }
  [data-section-type="Product"] .product-details__actions .product-actions__buttons:not(.product-actions__buttons--out-of-stock) .btn {
    background: #3c3935;
    color: white; }
  [data-section-type="Product"] .product-details__wishlist {
    margin: 20px auto; }
    [data-section-type="Product"] .product-details__wishlist .wishlist__container .wishlist__image {
      text-align: center;
      width: 100%; }
      [data-section-type="Product"] .product-details__wishlist .wishlist__container .wishlist__image svg {
        width: 20px;
        height: 20px; }
      [data-section-type="Product"] .product-details__wishlist .wishlist__container .wishlist__image:after {
        content: "add to wishlist";
        display: inline-block;
        margin-left: 10px;
        font: 12px "Futura-PT", sans-serif; }
  [data-section-type="Product"] .product-details__social {
    margin-top: 20px; }
    [data-section-type="Product"] .product-details__social ul {
      text-align: center;
      margin: 20px 0; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__social ul {
          margin: 20px 0; } }
      [data-section-type="Product"] .product-details__social ul li {
        display: inline-block;
        margin: 0 0.5em;
        font-size: 1.5em;
        width: 28px; }
        [data-section-type="Product"] .product-details__social ul li a {
          text-decoration: none;
          color: #3c3935;
          -ms-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          -webkit-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          [data-section-type="Product"] .product-details__social ul li a.facebook:hover {
            color: #3b5998; }
          [data-section-type="Product"] .product-details__social ul li a.pinterest:hover {
            color: #c92228; }
          [data-section-type="Product"] .product-details__social ul li a.twitter:hover {
            color: #4099ff; }
  [data-section-type="Product"] .product-details__children {
    text-align: center;
    margin: 40px auto 20px auto;
    width: 100%; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__children {
        margin: 50px auto 20px auto; } }
    [data-section-type="Product"] .product-details__children .product-details__children-title {
      font: 400 16px futura-pt-bold, sans-serif;
      display: block;
      margin: 0 0 10px 0;
      text-align: center;
      text-transform: uppercase; }
      [data-section-type="Product"] .product-details__children .product-details__children-title span {
        font: 200 13px "Futura-PT", sans-serif;
        text-transform: lowercase; }
    [data-section-type="Product"] .product-details__children .product-details__children-carousel {
      padding: 0px; }
      [data-section-type="Product"] .product-details__children .product-details__children-carousel .owl-stage {
        margin: 0 auto; }
      [data-section-type="Product"] .product-details__children .product-details__children-carousel .owl-next {
        right: -20px; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-details__children .product-details__children-carousel .owl-next {
            right: -30px; } }
      [data-section-type="Product"] .product-details__children .product-details__children-carousel .owl-prev {
        left: -19px; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-details__children .product-details__children-carousel .owl-prev {
            left: -39px; } }
      [data-section-type="Product"] .product-details__children .product-details__children-carousel .product-details__children-carousel-item {
        padding: 0 6px; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-details__children .product-details__children-carousel .product-details__children-carousel-item {
            padding: 0 12px 0 0; } }
        [data-section-type="Product"] .product-details__children .product-details__children-carousel .product-details__children-carousel-item .product-details__children-carousel-item--info {
          padding: 0;
          white-space: normal; }
        [data-section-type="Product"] .product-details__children .product-details__children-carousel .product-details__children-carousel-item .product-details__children-carousel-item--title {
          font: 600 13px "Futura-PT", sans-serif;
          text-transform: uppercase;
          margin: 8px 0 0 0; }
        [data-section-type="Product"] .product-details__children .product-details__children-carousel .product-details__children-carousel-item .product-details__children-carousel-item--type {
          font: 11px "Futura-PT", sans-serif;
          display: block;
          margin: 4px 0 8px 0;
          text-transform: uppercase; }
        [data-section-type="Product"] .product-details__children .product-details__children-carousel .product-details__children-carousel-item .product-details__children-carousel-item--description {
          font: 11px "Futura-PT", sans-serif;
          margin: 0; }
  [data-section-type="Product"] .product-details__icons .product-details__icons-container {
    text-align: center;
    margin: 30px auto 0 auto; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__icons .product-details__icons-container {
        margin: 50px auto 30px auto; } }
    [data-section-type="Product"] .product-details__icons .product-details__icons-container .product-details__icon {
      display: inline-block;
      vertical-align: top;
      width: calc(100% * 1/3);
      max-width: 120px;
      padding: 5px; }
      [data-section-type="Product"] .product-details__icons .product-details__icons-container .product-details__icon .product-details__icon--image {
        width: 45%;
        display: inline-block;
        margin-bottom: 12px; }
      [data-section-type="Product"] .product-details__icons .product-details__icons-container .product-details__icon .product-details__icon--label {
        text-transform: uppercase;
        font: 10px/1 "Futura-PT", sans-serif;
        padding: 12px 5px;
        text-transform: uppercase;
        background: #c1c1c1; }
  [data-section-type="Product"] .product-actions__packaging {
    text-align: center;
    margin: 20px 0px; }
    [data-section-type="Product"] .product-actions__packaging .product-actions__packaging--title {
      font: 0.8em "Futura-PT", sans-serif;
      margin: 0em 0 1em 0;
      text-transform: uppercase; }
    [data-section-type="Product"] .product-actions__packaging .product-actions__packaging--container .product-actions__packaging--block {
      display: inline-block;
      width: calc(100% * 1/2 - 5px); }
      [data-section-type="Product"] .product-actions__packaging .product-actions__packaging--container .product-actions__packaging--block:first-child {
        margin-right: 10px; }
    [data-section-type="Product"] .product-actions__packaging .product-actions__packaging--container .product-actions__packaging--input {
      display: none; }
      [data-section-type="Product"] .product-actions__packaging .product-actions__packaging--container .product-actions__packaging--input:checked + label {
        color: #3c3935;
        background: #f8c1b8; }
    [data-section-type="Product"] .product-actions__packaging .product-actions__packaging--container .product-actions__packaging--label {
      width: 100%;
      display: block;
      color: #3c3935;
      background: white;
      border: 1px solid #3c3935;
      font: 0.8em "Futura-PT", sans-serif;
      text-transform: uppercase;
      padding: 0.8em;
      text-align: center;
      cursor: pointer;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease; }
  [data-section-type="Product"] .product-details__mvp {
    margin-top: 20px; }
    [data-section-type="Product"] .product-details__mvp.product-details__mvp--sol-gradual-sunless-tanning-lotion .product-details__mvp-selected--swatch {
      display: none !important; }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-selected {
      margin: 14px auto 7px auto;
      font: 12px/1 "Futura-PT", sans-serif;
      text-transform: uppercase; }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-selected .product-details__mvp-selected--swatch {
        border-radius: 100%;
        display: inline-block;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        margin-left: 8px; }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-selected .product-details__mvp-selected--label {
        display: inline-block;
        vertical-align: middle;
        font: 15px "Futura-PT", sans-serif;
        text-transform: lowercase;
        margin: -4px 0 0 0; }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-description {
      margin: 10px auto;
      font: 12px/1.5 "Futura-PT", sans-serif;
      display: block; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__mvp .product-details__mvp-description {
          font-size: 13px; } }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-group {
      width: auto;
      margin: 0 auto;
      display: inline-block;
      vertical-align: top; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__mvp .product-details__mvp-group {
          width: calc(100%/2); } }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-group .product-details__mvp-group--title {
        text-transform: capitalize;
        font: 10px/1 "Futura-PT", sans-serif;
        color: #c1c1c1;
        display: none;
        margin: 5px 0; }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatches.product-details__mvp-swatches--show-less {
      display: none; }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatches.owl-carousel + .product-details__mvp-toggle:before {
      content: "Show more Colours"; }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatches.owl-carousel .owl-nav {
      margin-top: 0; }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatches.owl-carousel .owl-nav button.owl-next, [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatches.owl-carousel .owl-nav button.owl-prev {
        top: 40%; }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatches.owl-carousel .owl-nav button.owl-next {
        right: 0; }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatches.owl-carousel .owl-nav button.owl-prev {
        left: 0; }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatches .owl-stage {
      margin: 0 auto; }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-toggle {
      margin: 15px auto;
      font-size: 12px;
      text-transform: capitalize; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__mvp .product-details__mvp-toggle {
          display: none !important; } }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-toggle:before {
        content: "Show less Colours"; }
    [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatch {
      display: inline-block;
      padding: 0;
      width: 100%;
      max-width: 50px; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatch {
          width: calc(100% / 5); } }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatch .product-details__mvp-swatch--input {
        display: none; }
        [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatch .product-details__mvp-swatch--input:checked + label img {
          border-color: #3c3935; }
      [data-section-type="Product"] .product-details__mvp .product-details__mvp-swatch .product-details__mvp-swatch--label img {
        border: 2px solid white;
        border-radius: 100%;
        vertical-align: top;
        padding: 3px; }
    [data-section-type="Product"] .product-details__mvp.product-details__mvp--no-filter-matte-foundation .product-details__mvp-group {
      width: 100%; }
    [data-section-type="Product"] .product-details__mvp.product-details__mvp--no-filter-matte-foundation .product-details__mvp-swatch {
      max-width: 47px; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__mvp.product-details__mvp--no-filter-matte-foundation .product-details__mvp-swatch {
          width: calc(100% / 4);
          max-width: 50px; } }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__mvp.product-details__mvp--pretty-fresh-tinted-moisturizer .product-details__mvp-swatch {
        width: calc(100% / 4);
        max-width: none; } }
  [data-section-type="Product"] .product-details__mvp-filters {
    position: relative;
    line-height: 1;
    margin-top: 10px; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__mvp-filters {
        text-align: left;
        border-top: 1px solid #c1c1c1;
        border-bottom: 1px solid #c1c1c1; } }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__mvp-filters + .product-details__mvp-filters {
        margin-top: 0px;
        border-top: 0px; } }
    [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filters--title {
      display: inline-block;
      font: 12px/1 "Futura-PT", sans-serif;
      vertical-align: middle;
      margin: 0;
      padding-right: 10px;
      width: 90px;
      text-align: left;
      text-transform: uppercase; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filters--title {
          width: auto; } }
    [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--dropdown {
      display: inline-block;
      width: calc(100% - 90px);
      border-color: #c1c1c1; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--dropdown {
          display: none; } }
    [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--inputs {
      display: none; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--inputs {
          text-align: left;
          position: relative;
          display: inline-block;
          vertical-align: middle;
          font: 0.75em/1 "Futura-PT", sans-serif;
          text-transform: uppercase;
          padding: 14px 0; } }
      [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--inputs .product-details__mvp-filter--input {
        display: inline-block; }
        [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--inputs .product-details__mvp-filter--input:last-child {
          padding-right: 0px; }
        [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--inputs .product-details__mvp-filter--input input {
          display: none; }
          [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--inputs .product-details__mvp-filter--input input:checked + label {
            color: #3c3935;
            font-family: "Futura-PT", sans-serif;
            text-decoration: underline; }
        [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--inputs .product-details__mvp-filter--input label {
          cursor: pointer;
          font: 11px "Futura-PT", sans-serif;
          color: #999999;
          text-transform: lowercase;
          padding: 0 5px; }
          [data-section-type="Product"] .product-details__mvp-filters .product-details__mvp-filter--inputs .product-details__mvp-filter--input label:hover {
            color: #3c3935; }
  [data-section-type="Product"] .product-details__brand .product-details__brand--label {
    padding: 8px 0;
    font: 1em/1.4 futura-pt-bold, sans-serif;
    font-style: italic;
    position: relative;
    text-transform: uppercase;
    margin: 0; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-details__brand .product-details__brand--label {
        padding: 10px 0;
        font-size: 1.6em;
        margin: 20px auto 30px auto; } }
    [data-section-type="Product"] .product-details__brand .product-details__brand--label.product-details__brand--fourth-ray:after {
      content: "";
      position: absolute;
      height: 100%;
      width: 100%;
      max-width: 220px;
      left: 50%;
      transform: translateX(-50%);
      top: 0;
      z-index: -1;
      background: #fff5f3; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-details__brand .product-details__brand--label.product-details__brand--fourth-ray:after {
          max-width: 300px; } }
  [data-section-type="Product"] .product-story {
    background-color: #fff5f3;
    border-bottom: 1px solid #c1c1c1; }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-story {
        border-bottom: none;
        margin-top: 40px; } }
    @media (min-width: 921px) {
      [data-section-type="Product"] .product-story .product-story__container {
        padding: 40px 60px; } }
    [data-section-type="Product"] .product-story .product-story__mobile-tabs {
      position: relative;
      border-bottom: 1px solid #fff5f3; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-story .product-story__mobile-tabs {
          display: none; } }
      [data-section-type="Product"] .product-story .product-story__mobile-tabs .product-story__mobile-tab {
        background-color: #fff5f3;
        width: 100%;
        text-align: center;
        text-align-last: center;
        font: 16px futura-pt-bold, sans-serif;
        border-color: #222;
        border-bottom: none;
        border-right: none;
        border-left: none;
        padding: 20px 10px; }
    [data-section-type="Product"] .product-story .product-story__desktop-tabs {
      display: none; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-story .product-story__desktop-tabs {
          display: table;
          width: 100%;
          text-align: center;
          background: #f0f0f0; } }
      [data-section-type="Product"] .product-story .product-story__desktop-tabs .product-story__desktop-tab {
        width: 25%;
        display: table-cell;
        border-left: 1px solid #1f1f1f;
        border-bottom: 1px solid #1f1f1f;
        -ms-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease; }
        [data-section-type="Product"] .product-story .product-story__desktop-tabs .product-story__desktop-tab:first-child {
          border-left: none; }
        [data-section-type="Product"] .product-story .product-story__desktop-tabs .product-story__desktop-tab.active, [data-section-type="Product"] .product-story .product-story__desktop-tabs .product-story__desktop-tab:hover {
          background: #fff5f3; }
        [data-section-type="Product"] .product-story .product-story__desktop-tabs .product-story__desktop-tab.active {
          border-bottom: none; }
        [data-section-type="Product"] .product-story .product-story__desktop-tabs .product-story__desktop-tab button {
          font: 500 14px "Futura-PT", sans-serif;
          text-decoration: none;
          padding: 0.8em 0;
          width: 100%;
          display: block;
          text-transform: uppercase; }
    [data-section-type="Product"] .product-story .product-story__block {
      width: 100%;
      display: inline-block;
      vertical-align: middle;
      text-align: center; }
      @media (min-width: 921px) {
        [data-section-type="Product"] .product-story .product-story__block {
          width: 50%; } }
      [data-section-type="Product"] .product-story .product-story__block.product-story__block--video {
        display: block; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-story .product-story__block.product-story__block--video {
            display: none; } }
        [data-section-type="Product"] .product-story .product-story__block.product-story__block--video .product-story__block-row {
          padding: 0; }
          @media (min-width: 921px) {
            [data-section-type="Product"] .product-story .product-story__block.product-story__block--video .product-story__block-row {
              padding: 0 60px; } }
      [data-section-type="Product"] .product-story .product-story__block .product-story__block-image {
        display: none; }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-image {
            display: block; } }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-image img {
          width: 100px;
          vertical-align: top;
          margin: 20px auto; }
          @media (min-width: 921px) {
            [data-section-type="Product"] .product-story .product-story__block .product-story__block-image img {
              width: 120px;
              margin: 0 auto 20px auto; } }
      [data-section-type="Product"] .product-story .product-story__block .product-story__block-row {
        overflow: hidden;
        max-height: 65px;
        padding: 21px 20px;
        transition: all 0.3s;
        border-top: 1px solid #1f1f1f; }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row.product-story__block-row--badges {
          display: none; }
          @media (min-width: 921px) {
            [data-section-type="Product"] .product-story .product-story__block .product-story__block-row.product-story__block-row--badges {
              display: block; } }
        @media (max-width: 920px) {
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row.product-story__block-row--ingredients {
            max-height: initial; } }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row.product-story__block-row--video {
          display: none; }
          @media (min-width: 921px) {
            [data-section-type="Product"] .product-story .product-story__block .product-story__block-row.product-story__block-row--video {
              display: block; } }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row.open {
          max-height: none; }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row.open .product-story__block-title:after {
            background-image: url(https://cdn2.shopify.com/s/files/1/1338/0835/t/42/assets/icon-minus.svg?391061); }
        @media (min-width: 921px) {
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row {
            margin: 20px auto;
            padding: 0px 60px;
            max-height: 1400px;
            border: 0; }
            [data-section-type="Product"] .product-story .product-story__block .product-story__block-row:last-child {
              margin-bottom: 0px; } }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-ingredient {
          display: block;
          text-transform: uppercase;
          font: 15px "Futura-PT", sans-serif;
          margin: 0 auto;
          position: relative; }
          @media (min-width: 921px) {
            [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-ingredient {
              font-size: 17px;
              margin: 10px auto;
              position: relative; } }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-ingredient:before {
            content: '\f055';
            font-family: FontAwesome;
            font-size: 12px;
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            transition: 0.2s cubic-bezier(0.44, 0.13, 0.48, 0.87);
            opacity: 1; }
            @media (min-width: 921px) {
              [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-ingredient:before {
                opacity: 0; } }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-ingredient:hover:before {
            opacity: 1; }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-badge {
          display: inline-block;
          width: calc(100% * 1/3 - 7px);
          max-width: 110px;
          vertical-align: top;
          text-align: center;
          padding: 5px; }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-badge .product-story__block-badge--image {
            width: 55px;
            height: 55px;
            display: inline-block;
            margin-bottom: 10px; }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-badge .product-story__block-badge--label {
            background: white;
            font: 600 10px/1 "Futura-PT", sans-serif;
            padding: 12px 5px;
            text-transform: uppercase;
            color: #1f1f1f; }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-ingredient {
          display: inline-block;
          width: calc(100% * 1/3 - 7px);
          max-width: 110px;
          vertical-align: top;
          text-align: center;
          padding: 5px; }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-ingredient .product-story__block-ingredient--image {
            width: 55%;
            display: inline-block;
            margin-bottom: 10px; }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-ingredient .product-story__block-ingredient--label {
            background: white;
            font: 600 10px/1 "Futura-PT", sans-serif;
            padding: 12px 5px;
            text-transform: uppercase;
            color: #1f1f1f; }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-title {
          display: block;
          text-transform: uppercase;
          font: italic 16px futura-pt-bold, sans-serif;
          margin: 0 auto 30px auto;
          position: relative;
          text-align: center; }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-title:after {
            content: "";
            background-image: url(https://cdn2.shopify.com/s/files/1/1338/0835/t/42/assets/icon-plus.svg?391061);
            display: inline-block;
            vertical-align: middle;
            margin-left: 10px;
            height: 13px;
            width: 13px;
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-35%); }
          @media (min-width: 921px) {
            [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-title {
              font-size: 22px;
              margin: 20px auto;
              text-align: center; }
              [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-title:after {
                display: none; } }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-description, [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-description p {
          display: block;
          text-transform: lowercase;
          font: 200 12px/1.5 "Futura-PT", sans-serif;
          margin: 20px auto;
          text-align: center; }
          @media (min-width: 921px) {
            [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-description, [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-description p {
              font-size: 13px;
              margin: 10px auto; } }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-description b {
            font-family: "Futura-PT", sans-serif;
            text-transform: uppercase; }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-description .product-story__block--text-badge {
            display: block;
            text-transform: uppercase;
            font: 15px "Futura-PT", sans-serif;
            margin: 20px auto; }
            @media (min-width: 921px) {
              [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-description .product-story__block--text-badge {
                font-size: 17px; } }
        [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-video {
          position: relative;
          padding-bottom: 56.25%;
          height: 0;
          clear: both; }
          [data-section-type="Product"] .product-story .product-story__block .product-story__block-row .product-story__block-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 0; }
  [data-section-type="Product"] .product-complete {
    display: none; }
    [data-section-type="Product"] .product-complete .product-complete__container .owl-carousel .owl-carousel__item--product .carousel-product__info {
      min-height: unset; }

.product-details__upsell-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border: 5px solid #e8e8e8;
  padding: 20px; }
  @media (min-width: 921px) {
    .product-details__upsell-container {
      margin: 40px auto 0 auto;
      padding: 30px 20px; } }
  .product-details__upsell-container .product-details__upsell-image {
    display: inline-block;
    width: 40%;
    vertical-align: middle; }
  .product-details__upsell-container .product-details__upsell-info {
    display: inline-block;
    width: calc(60% - 20px);
    vertical-align: middle;
    margin-left: 20px;
    text-align: left; }
    .product-details__upsell-container .product-details__upsell-info .product-details__upsell-info--title {
      font: 600 12px/1 "Futura-PT", sans-serif;
      font-style: italic;
      margin-bottom: 10px;
      text-transform: uppercase;
      color: #c1c1c1; }
    .product-details__upsell-container .product-details__upsell-info .product-details__upsell-info--product {
      font: 600 13px "Futura-PT", sans-serif;
      margin-bottom: 10px;
      text-transform: uppercase; }
      @media (min-width: 921px) {
        .product-details__upsell-container .product-details__upsell-info .product-details__upsell-info--product {
          font-size: 15px; } }
    .product-details__upsell-container .product-details__upsell-info .product-details__upsell-info--description {
      font: 200 11px/1.3 "Futura-PT", sans-serif;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden; }
      @media (min-width: 921px) {
        .product-details__upsell-container .product-details__upsell-info .product-details__upsell-info--description {
          font-size: 12px;
          display: -webkit-box;
          -webkit-line-clamp: 4;
          -webkit-box-orient: vertical;
          overflow: hidden; } }
      .product-details__upsell-container .product-details__upsell-info .product-details__upsell-info--description p {
        margin: 0 0 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; }
    .product-details__upsell-container .product-details__upsell-info .product-details__upsell-info--price {
      font: 13px "Futura-PT", sans-serif;
      margin-bottom: 20px; }
      @media (min-width: 921px) {
        .product-details__upsell-container .product-details__upsell-info .product-details__upsell-info--price {
          font-size: 15px; } }
    .product-details__upsell-container .product-details__upsell-info .btn {
      width: 100%; }
  .product-details__upsell-container.fancybox-content {
    max-width: 600px; }
    @media (max-width: 920px) {
      .product-details__upsell-container.fancybox-content .product-details__upsell-image {
        width: 100%;
        max-width: 220px; }
      .product-details__upsell-container.fancybox-content .product-details__upsell-info {
        display: block;
        width: 100%;
        vertical-align: middle;
        margin-left: 0;
        margin: 20px auto;
        text-align: center; } }

[data-section-subtype='fourthray'] {
  text-align: center; }
  [data-section-subtype='fourthray'] .product-details {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0; }
    @media (min-width: 921px) {
      [data-section-subtype='fourthray'] .product-details {
        padding: 0 60px; } }
    @media (min-width: 921px) {
      [data-section-subtype='fourthray'] .product-details {
        padding: 0 120px;
        display: block;
        position: relative;
        margin-bottom: 60px; } }
  [data-section-subtype='fourthray'] .product-images__dots {
    left: calc(100% / 3 - 20px);
    top: 200px;
    position: absolute; }
    .scrolled [data-section-subtype='fourthray'] .product-images__dots {
      position: fixed;
      top: 200px;
      left: calc(100% / 3 - 20px); }
    [data-section-subtype='fourthray'] .product-images__dots.bottom-reached {
      position: absolute;
      bottom: 0px;
      top: auto; }
  [data-section-subtype='fourthray'] .product-details__left {
    width: 100%;
    margin-bottom: 10px; }
    @media (min-width: 921px) {
      [data-section-subtype='fourthray'] .product-details__left {
        width: calc(100% / 3 + 15px);
        margin: 0px;
        top: 0px;
        left: 60px;
        display: inline-block;
        vertical-align: top;
        padding-right: 120px; }
        [data-section-subtype='fourthray'] .product-details__left.product-details__floating {
          width: calc(100% / 3 - 120px);
          position: absolute;
          padding: 0px; }
          .scrolled [data-section-subtype='fourthray'] .product-details__left.product-details__floating {
            position: fixed;
            top: 150px; }
          [data-section-subtype='fourthray'] .product-details__left.product-details__floating.bottom-reached {
            position: absolute;
            bottom: 0px;
            top: auto; } }
  [data-section-subtype='fourthray'] .product-details__middle {
    width: 100%;
    margin-bottom: 0; }
    @media (min-width: 921px) {
      [data-section-subtype='fourthray'] .product-details__middle {
        width: calc(100% / 3 - 40px);
        margin: 0px auto;
        display: inline-block;
        vertical-align: top; } }
  [data-section-subtype='fourthray'] .product-details__right {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 20px; }
    @media (min-width: 921px) {
      [data-section-subtype='fourthray'] .product-details__right {
        width: calc(100% / 3 + 15px);
        margin: 0px;
        top: 20px;
        right: 60px;
        padding-left: 120px;
        display: inline-block;
        vertical-align: top; }
        [data-section-subtype='fourthray'] .product-details__right.product-details__floating {
          width: calc(100% / 3 - 120px);
          position: absolute;
          padding: 0; }
          .scrolled [data-section-subtype='fourthray'] .product-details__right.product-details__floating {
            position: fixed;
            top: 150px; }
          [data-section-subtype='fourthray'] .product-details__right.product-details__floating.bottom-reached {
            position: absolute;
            bottom: 0px;
            top: auto; } }
  @media (min-width: 921px) {
    [data-section-subtype='fourthray'] .product-details__icons .product-details__icons-container {
      max-width: 460px; } }
  [data-section-subtype='fourthray'] .product-details__icons .product-details__icons-container .product-details__icon {
    width: calc(100% * 1/5 - 7px);
    max-width: 80px;
    padding: 5px; }
    @media (min-width: 921px) {
      [data-section-subtype='fourthray'] .product-details__icons .product-details__icons-container .product-details__icon {
        width: calc(100% * 1/5 - 7px); } }
    [data-section-subtype='fourthray'] .product-details__icons .product-details__icons-container .product-details__icon .product-details__icon--label {
      background: #f8c1b8;
      display: none; }
    [data-section-subtype='fourthray'] .product-details__icons .product-details__icons-container .product-details__icon .product-details__icon--image {
      width: 80%; }
  [data-section-subtype='fourthray'] .product-story .product-story__container {
    background: #fff5f3; }
  [data-section-subtype='fourthray'] .product-story .product-story__desktop-tabs .product-story__desktop-tab.active, [data-section-subtype='fourthray'] .product-story .product-story__desktop-tabs .product-story__desktop-tab:hover {
    background: #fff5f3; }
  [data-section-subtype='fourthray'] .product-story .product-story__mobile-tabs .product-story__mobile-tab {
    background-color: #f8c1b8; }
  [data-section-subtype='fourthray'].product--colourpop .product-details__brand .product-details__brand--label {
    display: none; }
  [data-section-subtype='fourthray'].product--colourpop .product-details__icons .product-details__icons-container .product-details__icon .product-details__icon--label {
    background: #f8c1b8; }
  [data-section-subtype='fourthray'].product--colourpop .product-story .product-story__container {
    background: #f8c1b8; }
  [data-section-subtype='fourthray'].product--colourpop .product-story .product-story__desktop-tabs .product-story__desktop-tab.active, [data-section-subtype='fourthray'].product--colourpop .product-story .product-story__desktop-tabs .product-story__desktop-tab:hover {
    background: #f8c1b8; }
  [data-section-subtype='fourthray'].product--colourpop .product-story .product-story__mobile-tabs .product-story__mobile-tab {
    background-color: #f8c1b8; }

.ingredients-popup {
  padding: 30px 15px;
  text-align: center;
  letter-spacing: 0.08em;
  max-width: 600px;
  font-size: 12px; }
  @media (min-width: 921px) {
    .ingredients-popup {
      padding: 60px 50px; } }
  .ingredients-popup .undertone-popup__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2em;
    font-family: "Futura-PT", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word; }
    @media (min-width: 921px) {
      .ingredients-popup .undertone-popup__title {
        font-size: 1.5em; } }
  .ingredients-popup .ingredients-popup__title {
    font: 12px "Futura-PT", sans-serif;
    margin: 5px 0;
    text-transform: uppercase; }
    @media (min-width: 921px) {
      .ingredients-popup .ingredients-popup__title {
        font-size: 13px;
        margin: 8px 0; } }
  .ingredients-popup .ingredients-popup__product {
    font: 20px/1.4 "Futura-PT", sans-serif;
    text-transform: lowercase;
    margin-bottom: 20px; }
    @media (min-width: 921px) {
      .ingredients-popup .ingredients-popup__product {
        font-size: 24px; } }

/*================ #PAGES / #ROUTINE ================*/
[data-section-type="TheRoutine"] {
  padding: 10px 0;
  background: #f3bdad;
  background: linear-gradient(90deg, #f3bdad 0%, #f1b0b7 50%, #e3bcc5 100%);
  text-align: center;
  color: white;
  letter-spacing: 0.02em;
  font-family: "Futura Book";
  margin-bottom: 0;
  position: relative; }
  @media (min-width: 921px) {
    [data-section-type="TheRoutine"] {
      padding: 30px 0; } }
  [data-section-type="TheRoutine"] p, [data-section-type="TheRoutine"] label {
    color: white; }
  [data-section-type="TheRoutine"] .showcontrast {
    display: none; }
  [data-section-type="TheRoutine"] .hidecontrast {
    display: block; }
  [data-section-type="TheRoutine"] .page-width {
    position: relative;
    z-index: 2; }
    @media (min-width: 921px) {
      [data-section-type="TheRoutine"] .page-width {
        max-width: 90%; } }
  [data-section-type="TheRoutine"] .routine__header {
    margin: 40px auto; }
    @media (min-width: 921px) {
      [data-section-type="TheRoutine"] .routine__header {
        margin: 40px auto 70px auto; } }
    [data-section-type="TheRoutine"] .routine__header .routine__header--title {
      font: 60px "Futura Cond";
      text-transform: uppercase;
      line-height: 1;
      margin: 0 auto; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__header .routine__header--title {
          font-size: 130px; } }
    [data-section-type="TheRoutine"] .routine__header .routine__header--content {
      font: 17px "Futura Book";
      text-transform: uppercase; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__header .routine__header--content {
          font-size: 36px; } }
  [data-section-type="TheRoutine"] .routine__navigation .routine__navigation--title {
    font: 26px "Futura Cond Oblique";
    text-transform: uppercase;
    position: relative; }
    @media (min-width: 921px) {
      [data-section-type="TheRoutine"] .routine__navigation .routine__navigation--title {
        font-size: 48px; } }
    [data-section-type="TheRoutine"] .routine__navigation .routine__navigation--title:before {
      content: '';
      display: block;
      height: 1px;
      width: calc(50% - 100px);
      background: white;
      position: absolute;
      top: 40%;
      left: 0;
      transform: translateY(-50%); }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__navigation .routine__navigation--title:before {
          height: 2px;
          width: calc(50% - 220px);
          top: 50%; } }
    [data-section-type="TheRoutine"] .routine__navigation .routine__navigation--title:after {
      content: '';
      display: block;
      height: 1px;
      width: calc(50% - 100px);
      background: white;
      position: absolute;
      top: 40%;
      right: 0;
      transform: translateY(-50%); }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__navigation .routine__navigation--title:after {
          height: 2px;
          width: calc(50% - 220px);
          top: 50%; } }
  [data-section-type="TheRoutine"] .routine__navigation .routine__navigation--content {
    font: 16px "Futura Book"; }
    @media (min-width: 921px) {
      [data-section-type="TheRoutine"] .routine__navigation .routine__navigation--content {
        font-size: 22px;
        margin: 0 auto 40px auto;
        max-width: 500px; } }
  [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    max-width: calc(100% - 30px);
    margin: 0 auto; }
    @media (min-width: 921px) {
      [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        max-width: 500px; } }
    @media (min-width: 921px) {
      [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        max-width: 680px; } }
    [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links .routine__navigation-link {
      display: block;
      padding: 0 0 13px 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links .routine__navigation-link {
          padding: 0 0 20px 0; } }
      [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links .routine__navigation-link .routine__navigation-link--image {
        padding: 15px;
        background: #ffcccb;
        border-radius: 50%;
        max-width: 65px; }
        @media (min-width: 921px) {
          [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links .routine__navigation-link .routine__navigation-link--image {
            max-width: 90px; } }
      [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links .routine__navigation-link .routine__navigation-link--step {
        font: 18px/1 "Futura Cond";
        text-transform: uppercase;
        margin: 12px auto 0 auto; }
        @media (min-width: 921px) {
          [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links .routine__navigation-link .routine__navigation-link--step {
            font-size: 20px; } }
      [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links .routine__navigation-link .routine__navigation-link--type {
        font-size: 13px; }
        @media (min-width: 921px) {
          [data-section-type="TheRoutine"] .routine__navigation .routine__navigation-links .routine__navigation-link .routine__navigation-link--type {
            font-size: 14px; } }
  [data-section-type="TheRoutine"] .routine__blocks {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    margin-top: 40px; }
    @media (min-width: 921px) {
      [data-section-type="TheRoutine"] .routine__blocks {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 60px;
        grid-row-gap: 60px;
        margin-top: 80px; } }
    [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--step {
      position: relative; }
      [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--step span {
        background: white;
        color: #feacae;
        padding: 8px 12px 3px 12px;
        display: inline-block;
        text-transform: uppercase;
        font: 20px/1 "Futura Cond"; }
        @media (min-width: 921px) {
          [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--step span {
            padding: 10px 15px 5px 15px;
            font-size: 25px; } }
      [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--step:before {
        content: '';
        display: block;
        height: 1px;
        width: calc(50% - 60px);
        background: white;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--step:before {
            height: 2px;
            width: calc(50% - 80px); } }
      [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--step:after {
        content: '';
        display: block;
        height: 1px;
        width: calc(50% - 60px);
        background: white;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--step:after {
            height: 2px;
            width: calc(50% - 80px); } }
    [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--type {
      text-transform: uppercase;
      font: 40px/1 "Futura Cond";
      margin: 25px auto 5px auto; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--type {
          font-size: 56px;
          margin: 40px auto 10px auto; } }
      [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--type span {
        font: 13px/1 "Futura Book";
        text-transform: uppercase;
        display: block; }
    [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--description {
      font: 14px/1.4 "Futura Book";
      width: 100%;
      margin: 0 auto 20px auto;
      display: block; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--description {
          width: calc(100% - 40px);
          font-size: 18px;
          min-height: 120px; } }
    [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--read-more {
      text-transform: uppercase;
      font: 14px/1 "Futura Cond";
      text-decoration: underline;
      color: white;
      display: block;
      margin: 20px auto;
      width: auto; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--read-more {
          font-size: 20px; }
          [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--read-more:hover, [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-content .routine__block-content--read-more:focus {
            cursor: pointer;
            opacity: 0.8;
            transition: all 0.2s ease; } }
    [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image a {
      position: relative;
      display: block; }
      [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image a:before {
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/icon-play.svg?v=1586799591") center no-repeat;
        background-size: contain;
        transition: all 0.2s ease;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image a:hover, [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image a:focus {
        opacity: 1; }
        [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image a:hover:before, [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image a:focus:before {
          background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/icon-play-fill.svg?v=1586800218") center no-repeat;
          background-size: contain; }
    [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image .routine__block-image--tips {
      background: #ffcccb;
      width: calc(100% - 40px);
      margin: 0 auto;
      position: relative;
      top: -10px;
      padding: 15px 20px; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image .routine__block-image--tips {
          width: calc(100% - 60px);
          max-width: 420px;
          top: -30px;
          padding: 20px 40px; } }
      [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image .routine__block-image--tips .routine__block-times--title {
        text-transform: uppercase;
        font: 20px/1 "Futura Cond Oblique";
        margin-bottom: 0; }
        @media (min-width: 921px) {
          [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image .routine__block-image--tips .routine__block-times--title {
            font-size: 32px; } }
      [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image .routine__block-image--tips label img {
        margin: 0 auto;
        max-width: 180px; }
        @media (min-width: 921px) {
          [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image .routine__block-image--tips label img {
            max-width: 220px; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-image .routine__block-image--tips p {
          font-size: 15px;
          width: 90%;
          margin: 0 auto; } }
    [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-times .routine__block-times--title {
      text-transform: uppercase;
      font: 20px/1 "Futura Cond Oblique"; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-times .routine__block-times--title {
          font-size: 32px; } }
    [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-times .routine__block-times--content {
      font: 13px "Futura Book"; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__blocks .routine__block .routine__block-times .routine__block-times--content {
          font-size: 18px; } }
  [data-section-type="TheRoutine"] .routine__contrast .routing__countast--button {
    padding: 15px 20px 12px 20px;
    font: 14px "Futura Cond";
    text-transform: uppercase;
    border: none;
    position: relative;
    margin: 40px auto 10px auto;
    background: white;
    color: #3c3935;
    transition: all 0.2s ease; }
    @media (min-width: 921px) {
      [data-section-type="TheRoutine"] .routine__contrast .routing__countast--button {
        font-size: 18px;
        margin: 60px auto 20px auto; } }
    [data-section-type="TheRoutine"] .routine__contrast .routing__countast--button:after {
      content: '';
      display: block;
      width: calc(100% + 10px);
      height: calc(100% + 10px);
      border: 1px solid white;
      background: transparent;
      position: absolute;
      top: -5px;
      left: -5px; }
    [data-section-type="TheRoutine"] .routine__contrast .routing__countast--button:hover {
      cursor: pointer;
      background: #3c3935;
      color: white; }
      [data-section-type="TheRoutine"] .routine__contrast .routing__countast--button:hover:after {
        border: 1px solid #3c3935; }
  [data-section-type="TheRoutine"] .routine__bg div {
    position: absolute;
    z-index: 1; }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-1 {
      width: 50%;
      top: 0;
      left: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-1 {
          width: 40%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-1 {
          width: 32%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-2 {
      width: 50%;
      top: 0;
      right: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-2 {
          width: 40%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-2 {
          width: 28%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-3 {
      width: 30%;
      top: 10%;
      left: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-3 {
          width: 25%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-3 {
          width: 22%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-4 {
      width: 36%;
      top: 15%;
      right: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-4 {
          width: 27%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-4 {
          width: 22%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-5 {
      width: 24%;
      top: 30%;
      left: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-5 {
          width: 16%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-5 {
          width: 12%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-6 {
      width: 22%;
      top: 40%;
      right: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-6 {
          width: 15%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-6 {
          width: 8%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-7 {
      width: 24%;
      top: 50%;
      left: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-7 {
          width: 20%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-7 {
          width: 12%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-8 {
      width: 10%;
      top: 60%;
      right: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-8 {
          width: 10%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-8 {
          width: 6%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-9 {
      width: 24%;
      top: 70%;
      left: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-9 {
          width: 17%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-9 {
          width: 10%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-10 {
      width: 40%;
      bottom: 0;
      right: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-10 {
          width: 25%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-10 {
          width: 18%; } }
    [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-11 {
      width: 27%;
      bottom: 12%;
      left: 0; }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-11 {
          width: 17%; } }
      @media (min-width: 921px) {
        [data-section-type="TheRoutine"] .routine__bg div.routine__bg--asset-11 {
          width: 12%; } }
  [data-section-type="TheRoutine"].contrast {
    color: #3c3935; }
    [data-section-type="TheRoutine"].contrast p, [data-section-type="TheRoutine"].contrast label {
      color: #3c3935; }
    [data-section-type="TheRoutine"].contrast .showcontrast {
      display: block; }
    [data-section-type="TheRoutine"].contrast .hidecontrast {
      display: none; }
    [data-section-type="TheRoutine"].contrast .routine__navigation .routine__navigation-links .routine__navigation-link .routine__navigation-link--image {
      background: #444444; }
    [data-section-type="TheRoutine"].contrast .routine__blocks .routine__block .routine__block-content .routine__block-content--step span {
      color: #3c3935; }
    [data-section-type="TheRoutine"].contrast .routine__blocks .routine__block .routine__block-content .routine__block-content--read-more {
      color: #3c3935; }

/*================ The Routine / Toners ================*/
#routine-toners {
  background: #d1e0ee;
  background: linear-gradient(90deg, #c7d2e9 0%, #d8c6de 100%); }
  @media (min-width: 921px) {
    #routine-toners {
      background: linear-gradient(135deg, #c7d2e9 0%, #d8c6de 100%); } }
  @media (min-width: 921px) {
    #routine-toners.routine-content .routine__content--header {
      margin: 0 auto 20px auto; } }
  #routine-toners.routine-content .routine__content--about {
    width: 100%; }
    @media (min-width: 921px) {
      #routine-toners.routine-content .routine__content--about {
        margin: 20px auto 40px auto; } }
    #routine-toners.routine-content .routine__content--about ul {
      background: url(https://cdn.shopify.com/s/files/1/1338/0835/files/toner-postit-bg-m.png?v=1593224494) center no-repeat;
      background-size: contain;
      padding: 40px 10px; }
      @media screen and (max-width: 320px) {
        #routine-toners.routine-content .routine__content--about ul {
          background: url(https://cdn.shopify.com/s/files/1/1338/0835/files/toner-postit-bg-m.png?v=1593224494) center no-repeat;
          background-size: cover;
          padding: 20px 10px; } }
      @media (min-width: 921px) {
        #routine-toners.routine-content .routine__content--about ul {
          background: url(https://cdn.shopify.com/s/files/1/1338/0835/files/toner-postit-bg.png?v=1593224494) center no-repeat;
          background-size: contain;
          max-width: 980px;
          margin: 0 auto;
          padding: 40px; } }
      #routine-toners.routine-content .routine__content--about ul li {
        width: 85%;
        max-width: 300px;
        margin: 30px auto;
        font: 13px "Futura Book";
        position: relative; }
        @media (min-width: 921px) {
          #routine-toners.routine-content .routine__content--about ul li {
            max-width: unset; } }
        @media (min-width: 921px) {
          #routine-toners.routine-content .routine__content--about ul li {
            width: 60%;
            max-width: unset;
            font-size: 18px;
            margin: 40px auto; } }
        #routine-toners.routine-content .routine__content--about ul li:before {
          content: '';
          display: inline-block;
          border: 1px solid white;
          width: 8px;
          height: 8px;
          border-radius: 4px;
          position: absolute;
          top: 5px;
          left: -10px; }
        #routine-toners.routine-content .routine__content--about ul li:last-child:before {
          display: none; }
    #routine-toners.routine-content .routine__content--about .routine__content--about--check {
      max-width: unset;
      margin: 10px auto;
      text-align: center;
      width: auto;
      display: inline-block; }
  #routine-toners.routine-content .routine__content--type .routine__content--type-split-wrap .routine__content--type-split h4, #routine-toners.routine-content .routine__content--type .routine__content--type-split-wrap .routine__content--type-split .h4 {
    color: #b8bce0; }
  #routine-toners.routine-content .routine__content--type .routine__content--type-split-wrap .routine__content--type-split p {
    background: #bbc3e5; }
  #routine-toners.routine-content .routine__content--type .routine__content--type-split-wrap .routine__content--type-split:last-child p {
    background: #b7b7e1; }
  #routine-toners.routine-content .routine__content--step .routine__content--step-split {
    background: #c4c1e0; }
    #routine-toners.routine-content .routine__content--step .routine__content--step-split h4, #routine-toners.routine-content .routine__content--step .routine__content--step-split .h4 {
      color: #b8bce0; }
  #routine-toners.routine-content .routine__content--tips h3, #routine-toners.routine-content .routine__content--tips .h3 {
    color: #b8bce0; }
  #routine-toners.routine-content .routine__content--tips .routine__content--tips-split-wrap {
    background: #c4c1e0;
    grid-row-gap: 20px; }
    @media (min-width: 921px) {
      #routine-toners.routine-content .routine__content--tips .routine__content--tips-split-wrap {
        max-width: 520px; } }
    @media (min-width: 921px) {
      #routine-toners.routine-content .routine__content--tips .routine__content--tips-split-wrap {
        padding: 50px 30px 40px 30px;
        grid-row-gap: 30px;
        max-width: 1100px; } }
    #routine-toners.routine-content .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p {
      text-transform: uppercase;
      font-size: 14px;
      padding: 0 0 0 25px;
      position: relative;
      text-align: left; }
      @media (min-width: 921px) {
        #routine-toners.routine-content .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p {
          font-size: 16px; } }
      #routine-toners.routine-content .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/routine-bullet-heart.png?v=1593221803") center no-repeat;
        background-size: contain; }
  #routine-toners.routine-content .toners__content--blocks .toners__content--block {
    border-bottom: none; }
    #routine-toners.routine-content .toners__content--blocks .toners__content--block:after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: white;
      margin: 30px auto 10px auto; }
    #routine-toners.routine-content .toners__content--blocks .toners__content--block:last-child:after {
      display: none; }
    @media (min-width: 921px) {
      #routine-toners.routine-content .toners__content--blocks .toners__content--block:after {
        display: none; } }
  #routine-toners.routine-content .toners__content--blocks .toners__content--block--image h4, #routine-toners.routine-content .toners__content--blocks .toners__content--block--image .h4 {
    color: #b8bce0; }
  #routine-toners.routine-content .toners__content--blocks .toners__content--block--image p {
    color: #b8bce0;
    font-size: 14px;
    margin: 5px auto 15px auto; }
    @media (min-width: 921px) {
      #routine-toners.routine-content .toners__content--blocks .toners__content--block--image p {
        font-size: 16px; } }
  #routine-toners.routine-content .toners__bg .toners__bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%; }
    @media (min-width: 921px) {
      #routine-toners.routine-content .toners__bg .toners__bg-1 {
        top: 0;
        left: 0;
        width: 30%; } }
  #routine-toners.routine-content .toners__bg .toners__bg-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%; }
    @media (min-width: 921px) {
      #routine-toners.routine-content .toners__bg .toners__bg-2 {
        top: 0;
        right: 0;
        width: 30%; } }

#routine-cleansers {
  background: #fd97a4;
  background: linear-gradient(135deg, #f2b6b1 0%, #f1b0b8 50%, #f3bdaa 100%);
  overflow-x: hidden; }
  #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks {
    max-width: 70%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 20px; }
    @media (min-width: 921px) {
      #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks {
        max-width: unset;
        grid-column-gap: 20px;
        grid-row-gap: 0;
        grid-template-columns: 1fr 1fr 1fr; } }
    @media (min-width: 921px) {
      #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks {
        max-width: unset;
        grid-column-gap: 40px;
        grid-row-gap: 0;
        grid-template-columns: 1fr 1fr 1fr; } }
    #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
      border-bottom: none; }
      #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:after {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: white;
        margin: 30px auto 10px auto; }
      #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:last-child:after {
        display: none; }
      @media (min-width: 921px) {
        #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:after {
          display: none; } }
      #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block-prodtype {
        font-size: 15px; }
        @media (min-width: 921px) {
          #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block-prodtype {
            font-size: 13px; } }
        @media (min-width: 921px) {
          #routine-cleansers.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block-prodtype {
            font-size: 18px; } }
  #routine-cleansers.routine-content .toners__bg .toners__bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%; }
    @media (min-width: 921px) {
      #routine-cleansers.routine-content .toners__bg .toners__bg-1 {
        top: 0;
        left: 0;
        width: 30%; } }
  #routine-cleansers.routine-content .toners__bg .toners__bg-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%; }
    @media (min-width: 921px) {
      #routine-cleansers.routine-content .toners__bg .toners__bg-2 {
        top: 0;
        right: 0;
        width: 30%; } }
  #routine-cleansers.routine-content .toners__actions .toners__actions-btn {
    color: #fd98a4; }
    #routine-cleansers.routine-content .toners__actions .toners__actions-btn:hover {
      color: #fabbb9; }

#routine-masks {
  background: #fbb6b2;
  background: linear-gradient(135deg, #fbb6b2 0%, #f6c7ac 100%); }
  #routine-masks:before, #routine-masks:after {
    content: '';
    display: block;
    position: absolute;
    width: 25%;
    height: 40%; }
    @media (min-width: 921px) {
      #routine-masks:before, #routine-masks:after {
        width: 10%; } }
    @media (min-width: 921px) {
      #routine-masks:before, #routine-masks:after {
        width: 18%; } }
  #routine-masks:before {
    background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/Masks_bg-01-m.png?v=1593471215") top center no-repeat;
    background-size: contain;
    top: 0;
    left: 0; }
    @media (min-width: 921px) {
      #routine-masks:before {
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/Masks_bg-01.png?v=1593470994") top center no-repeat;
        background-size: contain;
        top: 0;
        left: 0; } }
  #routine-masks:after {
    background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/Masks_bg-02-m.png?v=1593471215") top center no-repeat;
    background-size: contain;
    top: 0;
    right: 0; }
    @media (min-width: 921px) {
      #routine-masks:after {
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/Masks_bg-02.png?v=1593470691") top center no-repeat;
        background-size: contain;
        top: 0;
        right: 0; } }
  @media (min-width: 921px) {
    #routine-masks.routine-content .routine__content--header {
      margin: 0 auto 20px auto; } }
  #routine-masks.routine-content .routine__content--header h4, #routine-masks.routine-content .routine__content--header .h4 {
    max-width: 800px; }
  @media (min-width: 921px) {
    #routine-masks.routine-content .routine__content--about {
      max-width: 800px;
      margin: 20px auto; } }
  #routine-masks.routine-content .routine__content--about .routine__content--about--check {
    max-width: unset;
    margin: 10px auto;
    text-align: center;
    width: auto;
    display: inline-block; }
  @media (min-width: 921px) {
    #routine-masks.routine-content .routine__content--type .routine__content--type-split-wrap {
      grid-column-gap: 20px; } }
  #routine-masks.routine-content .routine__content--type .routine__content--type-split-wrap .routine__content--type-split h4, #routine-masks.routine-content .routine__content--type .routine__content--type-split-wrap .routine__content--type-split .h4 {
    color: #e79e80; }
  #routine-masks.routine-content .routine__content--type .routine__content--type-split-wrap .routine__content--type-split p {
    background: #ffcbb9; }
  #routine-masks.routine-content .toners__content--rec {
    margin: 20px auto 40px auto; }
    @media (min-width: 921px) {
      #routine-masks.routine-content .toners__content--rec {
        margin: 40px auto 60px auto; } }
    #routine-masks.routine-content .toners__content--rec .toners__content--blocks {
      position: relative;
      z-index: 2; }
      @media (min-width: 921px) {
        #routine-masks.routine-content .toners__content--rec .toners__content--blocks {
          grid-column-gap: 80px;
          grid-row-gap: 40px;
          max-width: 800px; } }
      #routine-masks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
        border-bottom: 1px solid white;
        padding: 0 0 20px 0; }
        #routine-masks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:last-child {
          border-bottom: none; }
        @media (min-width: 921px) {
          #routine-masks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
            border-bottom: none;
            padding: 0; } }
        #routine-masks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block h4, #routine-masks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
          font-family: "Futura Cond Oblique";
          margin: 20px auto 10px auto;
          color: white; }
          @media (min-width: 921px) {
            #routine-masks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block h4, #routine-masks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
              margin: 40px auto 20px auto; } }
        #routine-masks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image {
          border: none;
          overflow: unset;
          background: none;
          border: none; }
  #routine-masks.routine-content .toners__actions .toners__actions-btn {
    color: #e79e80; }
    #routine-masks.routine-content .toners__actions .toners__actions-btn:hover {
      color: #ccb4cf; }
  #routine-masks.routine-content .routine__content--step .routine__content--step-split {
    background: #f9baa4; }
    @media (min-width: 921px) {
      #routine-masks.routine-content .routine__content--step .routine__content--step-split {
        width: 100%; } }
    @media (min-width: 921px) {
      #routine-masks.routine-content .routine__content--step .routine__content--step-split {
        width: calc(100% * 1/2 - 20px); } }
    #routine-masks.routine-content .routine__content--step .routine__content--step-split h4, #routine-masks.routine-content .routine__content--step .routine__content--step-split .h4 {
      color: #e79e80;
      font-size: 20px; }
      @media (min-width: 921px) {
        #routine-masks.routine-content .routine__content--step .routine__content--step-split h4, #routine-masks.routine-content .routine__content--step .routine__content--step-split .h4 {
          font-size: 22px; } }
      @media (min-width: 921px) {
        #routine-masks.routine-content .routine__content--step .routine__content--step-split h4, #routine-masks.routine-content .routine__content--step .routine__content--step-split .h4 {
          font-size: 26px; } }
    #routine-masks.routine-content .routine__content--step .routine__content--step-split p {
      padding: 10px 20px 20px; }
      @media (min-width: 921px) {
        #routine-masks.routine-content .routine__content--step .routine__content--step-split p {
          padding: 10px 20px 30px; } }
  #routine-masks .toners__content--multi p {
    font: 14px/1.6 "Futura Book"; }
    @media (min-width: 921px) {
      #routine-masks .toners__content--multi p {
        font-size: 18px;
        max-width: 680px;
        margin: 0 auto; } }
  #routine-masks .toners__content--multi--blocks {
    width: calc(100% - 40px);
    max-width: 800px;
    margin: 20px auto 0 auto;
    display: grid;
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    grid-template-columns: 1fr; }
    @media (min-width: 921px) {
      #routine-masks .toners__content--multi--blocks {
        grid-column-gap: 2px;
        grid-row-gap: 2px;
        grid-template-columns: 1fr 1fr;
        margin: 40px auto 0 auto; } }
    #routine-masks .toners__content--multi--blocks .toners__content--multi--block {
      background: #ffebea;
      padding: 30px 40px; }
      #routine-masks .toners__content--multi--blocks .toners__content--multi--block h4, #routine-masks .toners__content--multi--blocks .toners__content--multi--block .h4 {
        color: #FFAB94;
        font: 26px "Futura Cond";
        text-transform: uppercase; }
        @media (min-width: 921px) {
          #routine-masks .toners__content--multi--blocks .toners__content--multi--block h4, #routine-masks .toners__content--multi--blocks .toners__content--multi--block .h4 {
            font-size: 36px; } }
      #routine-masks .toners__content--multi--blocks .toners__content--multi--block p {
        color: #FFAB94;
        margin-top: 20px; }
        @media (min-width: 921px) {
          #routine-masks .toners__content--multi--blocks .toners__content--multi--block p {
            font-size: 22px; } }
  #routine-masks .toners__content--multi--swatches {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin: 40px auto;
    width: calc(100% - 40px);
    max-width: 760px; }
    @media (min-width: 921px) {
      #routine-masks .toners__content--multi--swatches {
        grid-column-gap: 40px;
        grid-row-gap: 0;
        grid-template-columns: 1fr 1fr 1fr 1fr; } }
    #routine-masks .toners__content--multi--swatches .toners__content--multi--swatch img {
      border: 2px solid white;
      border-radius: 50%;
      transition: all 0.2s ease; }
    #routine-masks .toners__content--multi--swatches .toners__content--multi--swatch a:hover {
      opacity: 1; }
      #routine-masks .toners__content--multi--swatches .toners__content--multi--swatch a:hover img {
        transform: scale(1.02); }
    #routine-masks .toners__content--multi--swatches .toners__content--multi--swatch .toners__content--multi--swatch-title {
      color: white;
      font: 18px "Futura Cond";
      text-transform: uppercase;
      margin-top: 10px; }
      @media (min-width: 921px) {
        #routine-masks .toners__content--multi--swatches .toners__content--multi--swatch .toners__content--multi--swatch-title {
          font-size: 26px; } }
  @media (min-width: 921px) {
    #routine-masks .toners__content--use h3:before, #routine-masks .toners__content--use .h3:before, #routine-masks .toners__content--use h3:after, #routine-masks .toners__content--use .h3:after {
      width: calc(50% - 220px); } }
  @media (min-width: 921px) {
    #routine-masks .toners__content--use h3:before, #routine-masks .toners__content--use .h3:before, #routine-masks .toners__content--use h3:after, #routine-masks .toners__content--use .h3:after {
      width: calc(50% - 400px); } }
  #routine-masks .routine__content--tips {
    background: url(https://cdn.shopify.com/s/files/1/1338/0835/files/Masks_notebook-bg.png?v=1593469226) top center no-repeat;
    background-size: cover;
    max-width: 990px;
    margin: 0 auto;
    padding: 40px 0; }
    #routine-masks .routine__content--tips h3, #routine-masks .routine__content--tips .h3 {
      color: white;
      background: none;
      display: block;
      margin: 20px auto; }
      #routine-masks .routine__content--tips h3:before, #routine-masks .routine__content--tips .h3:before {
        content: '';
        display: block;
        height: 1px;
        width: calc(40% - 90px);
        background: white;
        position: absolute;
        top: 50%;
        left: 7%;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          #routine-masks .routine__content--tips h3:before, #routine-masks .routine__content--tips .h3:before {
            height: 2px;
            width: calc(40% - 130px); } }
      #routine-masks .routine__content--tips h3:after, #routine-masks .routine__content--tips .h3:after {
        content: '';
        display: block;
        height: 1px;
        width: calc(40% - 90px);
        background: white;
        position: absolute;
        top: 50%;
        right: 7%;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          #routine-masks .routine__content--tips h3:after, #routine-masks .routine__content--tips .h3:after {
            height: 2px;
            width: calc(40% - 130px); } }
    #routine-masks .routine__content--tips .routine__content--tips-split-wrap {
      border: none;
      background: none; }
      @media (min-width: 921px) {
        #routine-masks .routine__content--tips .routine__content--tips-split-wrap {
          grid-template-columns: 1fr 1fr;
          margin-top: -40px;
          grid-column-gap: 60px;
          padding: 60px; } }
      #routine-masks .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split h4, #routine-masks .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split .h4 {
        font-family: "ThrowMyHands"; }

#routine-serums {
  background: #fb963c;
  background: linear-gradient(-45deg, #fb963c 0%, #fbac67 100%); }
  #routine-serums .routine__content--header {
    margin: 0 auto 20px auto; }
  @media (min-width: 921px) {
    #routine-serums .routine__content--about {
      max-width: 880px;
      margin: 20px auto 40px auto;
      font-size: 18px; } }
  #routine-serums .routine__content--about .routine__content--about--check {
    display: inline-block; }
    @media (min-width: 921px) {
      #routine-serums .routine__content--about .routine__content--about--check {
        max-width: unset;
        margin: 10px auto 0 auto;
        display: inline-block; } }
  #routine-serums .routine__content--type .routine__content--type-split-wrap {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap; }
    #routine-serums .routine__content--type .routine__content--type-split-wrap .routine__content--type-split {
      width: 100%; }
      @media (min-width: 921px) {
        #routine-serums .routine__content--type .routine__content--type-split-wrap .routine__content--type-split {
          width: calc(50% - 40px);
          margin: 0 20px 30px 20px;
          vertical-align: middle; } }
      #routine-serums .routine__content--type .routine__content--type-split-wrap .routine__content--type-split h4, #routine-serums .routine__content--type .routine__content--type-split-wrap .routine__content--type-split .h4 {
        color: #fa773e; }
      #routine-serums .routine__content--type .routine__content--type-split-wrap .routine__content--type-split p {
        background: #fa773e; }
        @media (min-width: 921px) {
          #routine-serums .routine__content--type .routine__content--type-split-wrap .routine__content--type-split p {
            min-height: 180px; } }
  #routine-serums.routine-content .toners__content--rec .toners__content--blocks {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr; }
    @media (min-width: 921px) {
      #routine-serums.routine-content .toners__content--rec .toners__content--blocks {
        grid-column-gap: 80px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        width: 100%; } }
    #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
      width: 100%;
      margin: 0 auto;
      padding-bottom: 20px; }
      @media (min-width: 921px) {
        #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
          width: 100%; }
          #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:nth-child(even) {
            margin-top: 40px; } }
      #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block h4, #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
        color: white;
        font-size: 28px; }
        @media (min-width: 921px) {
          #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block h4, #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
            font-size: 40px; } }
      @media (min-width: 921px) {
        #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
          padding-bottom: 0; } }
      #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image {
        border: none;
        background: none; }
        @media (min-width: 921px) {
          #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image h4, #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image .h4 {
            font-size: 30px; } }
        #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image img {
          margin: 0 auto;
          max-width: 140px; }
      #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--title {
        font-size: 14px; }
        @media (min-width: 921px) {
          #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--title {
            font-size: 16px; } }
        @media (min-width: 921px) {
          #routine-serums.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--title {
            font-size: 18px; } }
  #routine-serums.routine-content .toners__content--use .toners__content--use--image {
    margin-top: 20px; }
    #routine-serums.routine-content .toners__content--use .toners__content--use--image img {
      width: 80%; }
      @media (min-width: 921px) {
        #routine-serums.routine-content .toners__content--use .toners__content--use--image img {
          max-width: 400px; } }
  #routine-serums.routine-content .toners__actions .toners__actions-btn {
    color: #F7931E; }
    #routine-serums.routine-content .toners__actions .toners__actions-btn:hover {
      color: #f0b94c; }
  #routine-serums.routine-content .routine__content--step .routine__content--step-split-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    margin-top: 40px; }
    @media (min-width: 921px) {
      #routine-serums.routine-content .routine__content--step .routine__content--step-split-wrap {
        grid-template-columns: 1fr 1fr 1fr; } }
    #routine-serums.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split {
      background: #fa8642;
      display: block;
      width: 100%;
      margin: 0; }
      #routine-serums.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split h4, #routine-serums.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split .h4 {
        color: #fa773e;
        font-size: 22px; }
        @media (min-width: 921px) {
          #routine-serums.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split h4, #routine-serums.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split .h4 {
            font-size: 26px; } }
      @media (min-width: 921px) {
        #routine-serums.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split p {
          font-size: 15px;
          padding: 10px 20px 30px; } }
  #routine-serums.routine-content .routine__content--postit {
    background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/serums-postit-bg.png?v=1597087187") top center no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 10px; }
    #routine-serums.routine-content .routine__content--postit h3, #routine-serums.routine-content .routine__content--postit .h3 {
      font-size: 28px;
      color: white;
      background: none;
      display: block;
      margin: 20px auto; }
      @media (min-width: 921px) {
        #routine-serums.routine-content .routine__content--postit h3, #routine-serums.routine-content .routine__content--postit .h3 {
          font-size: 36px; } }
      #routine-serums.routine-content .routine__content--postit h3:before, #routine-serums.routine-content .routine__content--postit .h3:before {
        content: '';
        display: none;
        height: 1px;
        width: calc(40% - 90px);
        background: white;
        position: absolute;
        top: 50%;
        left: 7%;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          #routine-serums.routine-content .routine__content--postit h3:before, #routine-serums.routine-content .routine__content--postit .h3:before {
            display: block;
            height: 2px;
            width: calc(40% - 240px); } }
      #routine-serums.routine-content .routine__content--postit h3:after, #routine-serums.routine-content .routine__content--postit .h3:after {
        content: '';
        display: none;
        height: 1px;
        width: calc(40% - 90px);
        background: white;
        position: absolute;
        top: 50%;
        right: 7%;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          #routine-serums.routine-content .routine__content--postit h3:after, #routine-serums.routine-content .routine__content--postit .h3:after {
            display: block;
            height: 2px;
            width: calc(40% - 240px); } }
    #routine-serums.routine-content .routine__content--postit p {
      font: 15px "Futura Cond Oblique";
      text-transform: uppercase;
      max-width: 90%;
      margin: 0 auto; }
      @media (min-width: 921px) {
        #routine-serums.routine-content .routine__content--postit p {
          max-width: 80%;
          font-size: 19px; } }
    #routine-serums.routine-content .routine__content--postit .routine__content--postit-split-wrap {
      border: none;
      background: none; }
      @media (min-width: 921px) {
        #routine-serums.routine-content .routine__content--postit .routine__content--postit-split-wrap {
          grid-template-columns: 1fr;
          padding: 20px 40px; } }
      #routine-serums.routine-content .routine__content--postit .routine__content--postit-split-wrap .routine__content--postit-split h4, #routine-serums.routine-content .routine__content--postit .routine__content--postit-split-wrap .routine__content--postit-split .h4 {
        font-family: "ThrowMyHands"; }
      #routine-serums.routine-content .routine__content--postit .routine__content--postit-split-wrap .routine__content--postit-split p {
        font: 13px "Futura Book";
        text-transform: none;
        margin: 20px auto; }
        @media (min-width: 921px) {
          #routine-serums.routine-content .routine__content--postit .routine__content--postit-split-wrap .routine__content--postit-split p {
            font-size: 16px; } }
  #routine-serums.routine-content .routine__content--tips h3, #routine-serums.routine-content .routine__content--tips .h3 {
    color: #fa773e; }
  #routine-serums.routine-content .routine__content--tips .routine__content--tips-split-wrap {
    background: #fa8b48; }
    @media (min-width: 921px) {
      #routine-serums.routine-content .routine__content--tips .routine__content--tips-split-wrap {
        padding: 40px 30px 50px 30px; } }

#routine-milks {
  background: #bfa9e2;
  background: linear-gradient(45deg, #bfa9e2 0%, #cbb5e6 100%); }
  #routine-milks .routine__content--header {
    margin: 0 auto 20px auto; }
  @media (min-width: 921px) {
    #routine-milks .routine__content--about {
      max-width: 880px;
      margin: 20px auto 40px auto;
      font-size: 18px; } }
  #routine-milks .routine__content--about .routine__content--about--check {
    display: inline-block; }
    @media (min-width: 921px) {
      #routine-milks .routine__content--about .routine__content--about--check {
        max-width: unset;
        margin: 10px auto 0 auto;
        display: inline-block; } }
  #routine-milks p {
    font-size: 14px; }
    @media (min-width: 921px) {
      #routine-milks p {
        font-size: 18px; } }
  #routine-milks.routine-content .toners__content--rec p {
    max-width: 880px;
    margin: 0 auto 40px auto; }
  #routine-milks.routine-content .toners__content--rec .toners__content--blocks {
    grid-template-columns: 1fr;
    padding: 20px 0 0 0; }
    @media (min-width: 921px) {
      #routine-milks.routine-content .toners__content--rec .toners__content--blocks {
        grid-template-columns: 1fr 1fr 1fr; } }
    #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
      border: 1px solid white;
      background: #b0a0e9;
      padding: 10px;
      margin-top: 20px; }
      #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block h4, #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
        font-size: 20px;
        line-height: 1;
        margin: 0 auto;
        background: white;
        padding: 10px 20px;
        display: inline-block;
        color: #b2a2ea;
        position: relative;
        top: -30px; }
        @media (min-width: 921px) {
          #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block h4, #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
            font-size: 27px; } }
      #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image {
        border: none;
        background: none; }
      #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block hr {
        border-color: white;
        max-width: 60%;
        margin: 0 auto; }
      #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:nth-child(2) {
        background: #be9eea; }
        #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:nth-child(2) h4, #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:nth-child(2) .h4 {
          color: #be9eea; }
      #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:nth-child(3) {
        background: #d79fea; }
        #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:nth-child(3) h4, #routine-milks.routine-content .toners__content--rec .toners__content--blocks .toners__content--block:nth-child(3) .h4 {
          color: #d79fea; }
  @media (min-width: 921px) {
    #routine-milks.routine-content .routine__content--step .routine__content--step-split-wrap {
      display: grid;
      flex-wrap: unset;
      justify-content: unset;
      grid-template-columns: 1fr 1fr 1fr; } }
  #routine-milks.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split {
    width: 100%;
    display: block;
    background: #bfa2e4; }
    #routine-milks.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split h4, #routine-milks.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split .h4 {
      color: #8171bd; }
    #routine-milks.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split p {
      padding: 0 20px 20px 20px;
      font-size: 12px; }
      @media (min-width: 921px) {
        #routine-milks.routine-content .routine__content--step .routine__content--step-split-wrap .routine__content--step-split p {
          font-size: 15px;
          padding: 0 25px 20px 25px; } }
  @media (min-width: 921px) {
    #routine-milks.routine-content .toners__content--use {
      margin: 60px auto 30px auto; } }
  #routine-milks.routine-content .routine__content--tips h3, #routine-milks.routine-content .routine__content--tips .h3 {
    color: #8171bd;
    font-size: 28px; }
    @media (min-width: 921px) {
      #routine-milks.routine-content .routine__content--tips h3, #routine-milks.routine-content .routine__content--tips .h3 {
        margin-top: 30px;
        font-size: 34px; } }
  #routine-milks.routine-content .routine__content--tips .routine__content--tips-split-wrap {
    background: #b1a8e7;
    padding: 50px 30px 40px 30px; }
    @media (min-width: 921px) {
      #routine-milks.routine-content .routine__content--tips .routine__content--tips-split-wrap {
        grid-template-columns: 1fr 1fr;
        padding: 70px 30px 50px 30px; } }
    #routine-milks.routine-content .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p {
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 0.04em;
      padding: 0 0 0 25px;
      position: relative;
      text-align: left; }
      @media (min-width: 921px) {
        #routine-milks.routine-content .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p {
          font-size: 15px; } }
      #routine-milks.routine-content .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/routine-bullet-heart.png?v=1593221803") center no-repeat;
        background-size: contain; }

#routine-moisturizer {
  background: #f1b0b8;
  background: linear-gradient(-45deg, #f1b0b8 0%, #f2b6b1 100%); }
  #routine-moisturizer .routine__content--about--check {
    font: 14px/1.6 "ThrowMyHands"; }
    @media (min-width: 921px) {
      #routine-moisturizer .routine__content--about--check {
        font-size: 16px;
        max-width: unset;
        margin: 20px auto 0 auto; } }
    @media (min-width: 921px) {
      #routine-moisturizer .routine__content--about--check {
        font-size: 20px;
        margin: 10px auto 0 auto; } }
    #routine-moisturizer .routine__content--about--check:before {
      content: '';
      width: 30px;
      height: 30px;
      display: inline-block;
      background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/Cleanser_checkbox.png?v=1591403852") center no-repeat;
      background-size: contain;
      margin-right: 6px; }
  @media (min-width: 921px) {
    #routine-moisturizer .toners__content--rec .toners__content--blocks {
      max-width: 80%; } }
  #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--descrip-1 {
    font: 16px "Futura Book";
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px; }
    @media (min-width: 921px) {
      #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--descrip-1 {
        font-size: 22px; } }
  #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--descrip {
    text-transform: capitalize; }
  #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image {
    border: 1px solid white; }
  #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block h4, #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
    font-size: 20px;
    color: white;
    margin: 30px auto 7px auto; }
    @media (min-width: 921px) {
      #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block h4, #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
        font-size: 36px; } }
  #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--title {
    font-size: 14px; }
    @media (min-width: 921px) {
      #routine-moisturizer .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--title {
        font-size: 17px; } }
  @media (min-width: 921px) {
    #routine-moisturizer .routine__content--type-split-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; } }
  @media (min-width: 921px) {
    #routine-moisturizer .routine__content--type-split-wrap .routine__content--type-split {
      width: calc(100% * 1/2 - 20px);
      display: inline-block;
      margin: 20px 10px 10px 10px; } }
  #routine-moisturizer .routine__content--type-split-wrap p {
    background: #ffb6b8; }
  @media (min-width: 921px) {
    #routine-moisturizer .routine__content--step-split-wrap {
      display: grid;
      flex-wrap: unset;
      justify-content: unset;
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (min-width: 921px) {
    #routine-moisturizer .routine__content--step-split-wrap .routine__content--step-split {
      width: 100%;
      display: block;
      margin: 0; } }
  #routine-moisturizer .toners__actions .toners__actions-btn {
    color: #feacae; }
  #routine-moisturizer .toners__bg .toners__bg-1 {
    top: 0;
    left: 0;
    width: 14%; }
  #routine-moisturizer .toners__bg .toners__bg-2 {
    top: 2%;
    right: 0;
    width: 20%; }

#routine-eyecream {
  background: #e8a29a;
  background: linear-gradient(-45deg, #e8a29a 0%, #e7a798 50%, #ebac97 100%); }
  #routine-eyecream .routine__content--header h4, #routine-eyecream .routine__content--header .h4 {
    font: 2rem/1 "Futura Cond";
    text-transform: uppercase;
    margin: 20px auto 10px auto; }
  #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks {
    max-width: 90%;
    grid-row-gap: 10px; }
    @media (min-width: 921px) {
      #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks {
        max-width: 980px;
        grid-column-gap: 0; } }
    #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
      border: none; }
      #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image {
        border: none;
        background: none; }
    @media (min-width: 921px) {
      #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks .toners__content--block--descrip {
        margin: 20% auto 30px auto; } }
    #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks h4, #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks .h4 {
      color: white;
      font-size: 2rem; }
      @media (min-width: 921px) {
        #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks h4, #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks .h4 {
          font-size: 3.5rem; } }
    @media (min-width: 921px) {
      #routine-eyecream.routine-content .toners__content--rec .toners__content--blocks p {
        font-size: 1.3rem; } }
  #routine-eyecream .routine__content--about--check {
    font: 14px/1.6 "ThrowMyHands"; }
    @media (min-width: 921px) {
      #routine-eyecream .routine__content--about--check {
        font-size: 16px;
        max-width: unset;
        margin: 20px auto 0 auto; } }
    @media (min-width: 921px) {
      #routine-eyecream .routine__content--about--check {
        font-size: 20px;
        margin: 30px auto 0 auto; } }
    #routine-eyecream .routine__content--about--check:before {
      content: '';
      width: 30px;
      height: 30px;
      display: inline-block;
      background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/Cleanser_checkbox.png?v=1591403852") center no-repeat;
      background-size: contain;
      margin-right: 6px; }
  @media (min-width: 921px) {
    #routine-eyecream .routine__content--type-split-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; } }
  @media (min-width: 921px) {
    #routine-eyecream .routine__content--type-split-wrap .routine__content--type-split {
      width: calc(60%);
      display: inline-block;
      margin: 20px 10px 10px 10px; } }
  #routine-eyecream .routine__content--type-split-wrap h4, #routine-eyecream .routine__content--type-split-wrap .h4 {
    color: #db9687;
    font-size: 22px; }
    @media (min-width: 921px) {
      #routine-eyecream .routine__content--type-split-wrap h4, #routine-eyecream .routine__content--type-split-wrap .h4 {
        font-size: 26px; } }
  #routine-eyecream .routine__content--type-split-wrap p {
    background: #db9687;
    font-size: 14px; }
    @media (min-width: 921px) {
      #routine-eyecream .routine__content--type-split-wrap p {
        font-size: 16px; } }
  @media (min-width: 921px) {
    #routine-eyecream .routine__content--step-split-wrap {
      display: grid;
      flex-wrap: unset;
      justify-content: unset;
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (min-width: 921px) {
    #routine-eyecream .routine__content--step-split-wrap .routine__content--step-split {
      width: 100%;
      display: block;
      margin: 0; } }
  #routine-eyecream .routine__content--step-split-wrap .routine__content--step-split h4, #routine-eyecream .routine__content--step-split-wrap .routine__content--step-split .h4 {
    font-size: 22px; }
    @media (min-width: 921px) {
      #routine-eyecream .routine__content--step-split-wrap .routine__content--step-split h4, #routine-eyecream .routine__content--step-split-wrap .routine__content--step-split .h4 {
        font-size: 26px; } }
  #routine-eyecream .routine__content--step-split-wrap .routine__content--step-split p {
    font-size: 13px;
    line-height: 1.6; }
    @media (min-width: 921px) {
      #routine-eyecream .routine__content--step-split-wrap .routine__content--step-split p {
        font-size: 14px;
        padding: 5px 30px 30px; } }
  #routine-eyecream .routine__content--tips h3, #routine-eyecream .routine__content--tips .h3 {
    font-size: 28px; }
    @media (min-width: 921px) {
      #routine-eyecream .routine__content--tips h3, #routine-eyecream .routine__content--tips .h3 {
        margin-top: 30px;
        font-size: 34px; } }
  #routine-eyecream .routine__content--tips .routine__content--tips-split-wrap {
    padding: 50px 30px 40px 30px;
    grid-row-gap: 30px; }
    @media (min-width: 921px) {
      #routine-eyecream .routine__content--tips .routine__content--tips-split-wrap {
        grid-template-columns: 1fr;
        padding: 70px 10% 50px 10%;
        max-width: 720px;
        grid-row-gap: 30px; } }
    #routine-eyecream .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p {
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 0.06em;
      padding: 0 0 0 25px;
      position: relative;
      text-align: left; }
      @media (min-width: 921px) {
        #routine-eyecream .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p {
          font-size: 16px; } }
      #routine-eyecream .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split p:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/routine-bullet-heart.png?v=1593221803") center no-repeat;
        background-size: contain; }
  #routine-eyecream .toners__actions .toners__actions-btn {
    color: #feacae; }
  #routine-eyecream .toners__bg .toners__bg-1 {
    top: 14%;
    left: 0;
    width: 30%; }
    @media (min-width: 921px) {
      #routine-eyecream .toners__bg .toners__bg-1 {
        top: 7%;
        left: 0;
        width: 22%; } }
  #routine-eyecream .toners__bg .toners__bg-2 {
    top: 0;
    right: 0;
    width: 40%; }
    @media (min-width: 921px) {
      #routine-eyecream .toners__bg .toners__bg-2 {
        top: 0;
        right: 0;
        width: 25%; } }

.routine-content {
  text-align: center;
  padding: 20px 0;
  font-family: "Futura Book";
  color: white;
  position: relative;
  margin: 0 auto; }
  @media (min-width: 921px) {
    .routine-content {
      padding: 60px 0; } }
  .routine-content p {
    color: white;
    text-decoration: none; }
    .routine-content p a {
      font-weight: 600;
      text-decoration: underline;
      color: white; }
  .routine-content h2, .routine-content .h2 {
    font: 50px/1 "Futura Cond";
    text-transform: uppercase;
    position: relative;
    margin: 20px auto 0 auto; }
    @media (min-width: 921px) {
      .routine-content h2, .routine-content .h2 {
        font-size: 100px;
        margin: 0 auto; } }
  .routine-content h3, .routine-content .h3 {
    font: 30px "Futura Cond Oblique";
    text-transform: uppercase;
    position: relative;
    margin: 40px auto 20px auto; }
    @media (min-width: 921px) {
      .routine-content h3, .routine-content .h3 {
        font-size: 60px;
        margin-top: 60px; } }
    .routine-content h3:before, .routine-content .h3:before {
      content: '';
      display: block;
      height: 1px;
      width: calc(50% - 60px);
      background: white;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%); }
      @media (min-width: 921px) {
        .routine-content h3:before, .routine-content .h3:before {
          height: 2px;
          width: calc(50% - 130px); } }
    .routine-content h3:after, .routine-content .h3:after {
      content: '';
      display: block;
      height: 1px;
      width: calc(50% - 60px);
      background: white;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%); }
      @media (min-width: 921px) {
        .routine-content h3:after, .routine-content .h3:after {
          height: 2px;
          width: calc(50% - 130px); } }
  .routine-content h4, .routine-content .h4 {
    font: 15px "Futura Book";
    text-transform: uppercase;
    margin: 0 auto 10px auto; }
    @media (min-width: 921px) {
      .routine-content h4, .routine-content .h4 {
        font-size: 24px;
        margin: 0 auto 20px auto; } }
  .routine-content .routine__breadcrumbs {
    position: relative;
    z-index: 2; }
    .routine-content .routine__breadcrumbs ul {
      margin: 10px auto 30px auto; }
      @media (min-width: 921px) {
        .routine-content .routine__breadcrumbs ul {
          margin: 0 auto 40px auto; } }
      .routine-content .routine__breadcrumbs ul li {
        display: inline-block;
        margin: 0 10px 0 0;
        font-size: 13px; }
        @media (min-width: 921px) {
          .routine-content .routine__breadcrumbs ul li {
            font-size: 16px; } }
        .routine-content .routine__breadcrumbs ul li a {
          display: inline-block;
          padding: 10px 5px;
          color: white; }
          @media (min-width: 921px) {
            .routine-content .routine__breadcrumbs ul li a {
              padding: 10px; } }
          .routine-content .routine__breadcrumbs ul li a:hover {
            text-decoration: underline; }
        .routine-content .routine__breadcrumbs ul li:after {
          content: "/";
          margin: 0 0 0 10px; }
        .routine-content .routine__breadcrumbs ul li:last-child:after {
          display: none; }
  .routine-content .toners__header--image {
    width: 100%;
    max-width: calc(100% - 60px);
    margin: 0 auto; }
    @media (min-width: 921px) {
      .routine-content .toners__header--image {
        max-width: 420px; } }
    @media (min-width: 921px) {
      .routine-content .toners__header--image {
        max-width: 600px; } }
  .routine-content .routine__content--header {
    width: calc(100% - 40px);
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 1; }
    @media (min-width: 921px) {
      .routine-content .routine__content--header {
        max-width: 600px; } }
    @media (min-width: 921px) {
      .routine-content .routine__content--header {
        max-width: 1100px;
        margin: 0 auto 60px auto; } }
    .routine-content .routine__content--header h4, .routine-content .routine__content--header .h4 {
      font-size: 18px; }
      @media (min-width: 921px) {
        .routine-content .routine__content--header h4, .routine-content .routine__content--header .h4 {
          font-size: 27px; } }
    .routine-content .routine__content--header p {
      font: 14px/1.6 "Futura Book"; }
      @media (min-width: 921px) {
        .routine-content .routine__content--header p {
          font-size: 18px;
          max-width: 680px;
          margin: 0 auto; } }
  .routine-content .routine__content--about {
    width: calc(100% - 40px);
    margin: 20px auto;
    position: relative;
    z-index: 1; }
    @media (min-width: 921px) {
      .routine-content .routine__content--about {
        max-width: 600px; } }
    @media (min-width: 921px) {
      .routine-content .routine__content--about {
        max-width: 1100px;
        margin: 40px auto; } }
    .routine-content .routine__content--about h3:before, .routine-content .routine__content--about .h3:before, .routine-content .routine__content--about h3:after, .routine-content .routine__content--about .h3:after {
      width: calc(50% - 150px); }
      @media (min-width: 921px) {
        .routine-content .routine__content--about h3:before, .routine-content .routine__content--about .h3:before, .routine-content .routine__content--about h3:after, .routine-content .routine__content--about .h3:after {
          width: calc(50% - 450px); } }
    .routine-content .routine__content--about .routine__content--about--prod {
      max-width: 150px;
      position: absolute;
      z-index: 2;
      left: -10px;
      margin-top: 290px; }
      @media (min-width: 921px) {
        .routine-content .routine__content--about .routine__content--about--prod {
          max-width: 130px;
          position: absolute;
          z-index: 1;
          left: 0px;
          margin-top: 240px; } }
      @media (min-width: 921px) {
        .routine-content .routine__content--about .routine__content--about--prod {
          max-width: 280px;
          position: absolute;
          z-index: 1;
          left: unset;
          margin-top: 0; } }
    .routine-content .routine__content--about .routine__content--postit {
      margin: 0 auto;
      text-align: center; }
      @media (min-width: 921px) {
        .routine-content .routine__content--about .routine__content--postit {
          text-align: right; } }
      .routine-content .routine__content--about .routine__content--postit li {
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/postit-bg.png?v=1591316653") center no-repeat;
        background-size: contain;
        width: 300px;
        height: 300px;
        position: relative;
        display: inline-block; }
        @media (min-width: 921px) {
          .routine-content .routine__content--about .routine__content--postit li {
            width: 290px;
            height: 270px; } }
        @media (min-width: 921px) {
          .routine-content .routine__content--about .routine__content--postit li {
            width: 390px;
            height: 360px; } }
        .routine-content .routine__content--about .routine__content--postit li p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font: 18px "ThrowMyHands";
          text-align: left; }
          @media (min-width: 921px) {
            .routine-content .routine__content--about .routine__content--postit li p {
              font-size: 22px; } }
          .routine-content .routine__content--about .routine__content--postit li p:before {
            content: '';
            width: 10px;
            height: 10px;
            border: 2px solid #fff;
            border-radius: 5px;
            position: absolute;
            top: 10px;
            left: -20px; }
        .routine-content .routine__content--about .routine__content--postit li:nth-child(1) {
          z-index: 1; }
        .routine-content .routine__content--about .routine__content--postit li:nth-child(2) {
          right: -50px;
          top: -50px; }
          @media (min-width: 921px) {
            .routine-content .routine__content--about .routine__content--postit li:nth-child(2) {
              right: unset;
              left: -40px;
              top: 20px; } }
          @media (min-width: 921px) {
            .routine-content .routine__content--about .routine__content--postit li:nth-child(2) {
              right: unset;
              left: -70px;
              top: 20px; } }
    .routine-content .routine__content--about .routine__content--about--descrip {
      font: 14px/1.6 "Futura Book"; }
      @media (min-width: 921px) {
        .routine-content .routine__content--about .routine__content--about--descrip {
          font-size: 16px;
          max-width: 410px;
          margin: 20px 20px 0 auto;
          text-align: left; } }
      @media (min-width: 921px) {
        .routine-content .routine__content--about .routine__content--about--descrip {
          font-size: 18px;
          max-width: 680px;
          margin: 20px 120px 0 auto;
          text-align: left; } }
    .routine-content .routine__content--about .routine__content--about--check {
      font: 14px/1.6 "ThrowMyHands";
      position: relative;
      padding: 0 0 0 40px; }
      @media (min-width: 921px) {
        .routine-content .routine__content--about .routine__content--about--check {
          font-size: 16px;
          max-width: 410px;
          margin: 20px 20px 0 auto;
          text-align: left; } }
      @media (min-width: 921px) {
        .routine-content .routine__content--about .routine__content--about--check {
          font-size: 18px;
          max-width: 680px;
          margin: 10px 120px 0 auto;
          text-align: left; } }
      .routine-content .routine__content--about .routine__content--about--check:before {
        content: '';
        width: 30px;
        height: 30px;
        display: inline-block;
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/Cleanser_checkbox.png?v=1591403852") center no-repeat;
        background-size: contain;
        margin-right: 6px;
        position: absolute;
        left: 0;
        top: -7px; }
  .routine-content .toners__content--time {
    width: calc(100% - 40px);
    margin: 20px auto; }
    @media (min-width: 921px) {
      .routine-content .toners__content--time {
        max-width: 600px; } }
    @media (min-width: 921px) {
      .routine-content .toners__content--time {
        max-width: 1100px;
        margin: 60px auto; } }
    .routine-content .toners__content--time p {
      font: 15px "Futura Book"; }
      @media (min-width: 921px) {
        .routine-content .toners__content--time p {
          font-size: 26px;
          max-width: 680px;
          margin: 0 auto; } }
  .routine-content .routine__content--type .routine__content--type-split-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px; }
    @media (min-width: 921px) {
      .routine-content .routine__content--type .routine__content--type-split-wrap {
        grid-template-columns: 1fr 1fr; } }
  .routine-content .routine__content--type .routine__content--type-split h4, .routine-content .routine__content--type .routine__content--type-split .h4 {
    margin: 0 auto;
    padding: 10px 10px 7px 10px;
    display: inline-block;
    background: white;
    color: #feacae;
    font: 22px/1 "Futura Cond"; }
    @media (min-width: 921px) {
      .routine-content .routine__content--type .routine__content--type-split h4, .routine-content .routine__content--type .routine__content--type-split .h4 {
        font-size: 26px; } }
  .routine-content .routine__content--type .routine__content--type-split p {
    font-size: 14px;
    padding: 50px 50px 30px 50px;
    background: #ffb6b8;
    margin-top: -15px; }
    @media (min-width: 921px) {
      .routine-content .routine__content--type .routine__content--type-split p {
        padding: 50px 40px;
        font-size: 15px; } }
  .routine-content .routine__content--type .routine__content--type-split:last-child p {
    background: #f8a5a9; }
  .routine-content .routine__content--step p {
    font: 15px "Futura Book"; }
    @media (min-width: 921px) {
      .routine-content .routine__content--step p {
        font-size: 26px;
        max-width: 680px;
        margin: 0 auto; } }
  .routine-content .routine__content--step .routine__content--step-split-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    margin-top: 40px; }
    @media (min-width: 921px) {
      .routine-content .routine__content--step .routine__content--step-split-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; } }
  .routine-content .routine__content--step .routine__content--step-split {
    background: #fac2c2;
    border: 1px solid white;
    position: relative; }
    @media (min-width: 921px) {
      .routine-content .routine__content--step .routine__content--step-split {
        width: calc(100% * 1/2 - 20px);
        display: inline-block;
        margin: 20px 10px 30px 10px; } }
    @media (min-width: 921px) {
      .routine-content .routine__content--step .routine__content--step-split {
        width: calc(100% * 1/3 - 20px);
        display: inline-block;
        margin: 20px 10px 30px 10px; } }
    .routine-content .routine__content--step .routine__content--step-split h4, .routine-content .routine__content--step .routine__content--step-split .h4 {
      background: white;
      color: #feacae;
      font: 26px/1 "Futura Cond";
      display: inline-block;
      padding: 8px 10px 3px 10px;
      margin-top: -20px; }
    .routine-content .routine__content--step .routine__content--step-split p {
      font: 14px/1.4 "Futura Book";
      padding: 0 10px 20px; }
      @media (min-width: 921px) {
        .routine-content .routine__content--step .routine__content--step-split p {
          font-size: 15px; } }
  .routine-content .routine__content--type, .routine-content .routine__content--step {
    width: calc(100% - 40px);
    margin: 20px auto; }
    @media (min-width: 921px) {
      .routine-content .routine__content--type, .routine-content .routine__content--step {
        max-width: 600px; } }
    @media (min-width: 921px) {
      .routine-content .routine__content--type, .routine-content .routine__content--step {
        max-width: 1100px;
        margin: 40px auto; } }
    .routine-content .routine__content--type h3:before, .routine-content .routine__content--type .h3:before, .routine-content .routine__content--type h3:after, .routine-content .routine__content--type .h3:after, .routine-content .routine__content--step h3:before, .routine-content .routine__content--step .h3:before, .routine-content .routine__content--step h3:after, .routine-content .routine__content--step .h3:after {
      width: calc(50% - 110px); }
      @media (min-width: 921px) {
        .routine-content .routine__content--type h3:before, .routine-content .routine__content--type .h3:before, .routine-content .routine__content--type h3:after, .routine-content .routine__content--type .h3:after, .routine-content .routine__content--step h3:before, .routine-content .routine__content--step .h3:before, .routine-content .routine__content--step h3:after, .routine-content .routine__content--step .h3:after {
          width: calc(50% - 240px); } }
    .routine-content .routine__content--type p, .routine-content .routine__content--step p {
      font: 14px/1.6 "Futura Book"; }
      @media (min-width: 921px) {
        .routine-content .routine__content--type p, .routine-content .routine__content--step p {
          font-size: 18px; } }
  .routine-content .routine__content--tips h3, .routine-content .routine__content--tips .h3 {
    background: white;
    color: #feacae;
    font: 32px/1 "Futura Cond";
    display: inline-block;
    padding: 8px 10px 3px 10px; }
    .routine-content .routine__content--tips h3:before, .routine-content .routine__content--tips .h3:before, .routine-content .routine__content--tips h3:after, .routine-content .routine__content--tips .h3:after {
      display: none; }
    @media (min-width: 921px) {
      .routine-content .routine__content--tips h3, .routine-content .routine__content--tips .h3 {
        font-size: 36px; } }
  .routine-content .routine__content--tips .routine__content--tips-split-wrap {
    background: #f9b0af;
    border: 1px solid white;
    width: calc(100% - 20px);
    max-width: 980px;
    margin: 0 auto;
    padding: 50px 30px 30px 30px;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    margin-top: -40px; }
    @media (min-width: 921px) {
      .routine-content .routine__content--tips .routine__content--tips-split-wrap {
        max-width: 520px; } }
    @media (min-width: 921px) {
      .routine-content .routine__content--tips .routine__content--tips-split-wrap {
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: -30px;
        max-width: 1100px; } }
    .routine-content .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split h4, .routine-content .routine__content--tips .routine__content--tips-split-wrap .routine__content--tips-split .h4 {
      font: 24px "Futura Cond Oblique";
      margin: 0 auto 10px auto; }
  .routine-content .toners__content--rec {
    width: calc(100% - 40px);
    margin: 20px auto; }
    @media (min-width: 921px) {
      .routine-content .toners__content--rec {
        max-width: 600px; } }
    @media (min-width: 921px) {
      .routine-content .toners__content--rec {
        max-width: 1100px;
        margin: 40px auto; } }
    .routine-content .toners__content--rec h3:before, .routine-content .toners__content--rec .h3:before, .routine-content .toners__content--rec h3:after, .routine-content .toners__content--rec .h3:after {
      width: calc(50% - 110px); }
      @media (min-width: 921px) {
        .routine-content .toners__content--rec h3:before, .routine-content .toners__content--rec .h3:before, .routine-content .toners__content--rec h3:after, .routine-content .toners__content--rec .h3:after {
          width: calc(50% - 190px); } }
    .routine-content .toners__content--rec p {
      font: 15px "Futura Book"; }
      @media (min-width: 921px) {
        .routine-content .toners__content--rec p {
          font-size: 26px; } }
    .routine-content .toners__content--rec .toners__content--blocks {
      display: grid;
      max-width: 70%;
      margin: 0 auto;
      grid-template-columns: 1fr;
      grid-column-gap: 10px;
      grid-row-gap: 20px; }
      @media (min-width: 921px) {
        .routine-content .toners__content--rec .toners__content--blocks {
          max-width: unset;
          grid-column-gap: 60px;
          grid-row-gap: 0;
          grid-template-columns: 1fr 1fr; } }
      @media (min-width: 921px) {
        .routine-content .toners__content--rec .toners__content--blocks {
          max-width: 80%; } }
      .routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
        border-bottom: 1px solid white; }
        .routine-content .toners__content--rec .toners__content--blocks .toners__content--block:last-child {
          border-bottom: none; }
        @media (min-width: 921px) {
          .routine-content .toners__content--rec .toners__content--blocks .toners__content--block {
            border-bottom: none; } }
        .routine-content .toners__content--rec .toners__content--blocks .toners__content--block h4, .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
          font: 18px/1 "Futura Cond";
          text-transform: uppercase;
          margin: 10px auto 0 auto;
          color: #feacae; }
          @media (min-width: 921px) {
            .routine-content .toners__content--rec .toners__content--blocks .toners__content--block h4, .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .h4 {
              font-size: 30px;
              margin: 20px auto 0 auto; } }
        .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block-prodtype {
          font-size: 15px;
          text-transform: uppercase;
          font-weight: 600;
          margin-bottom: 0; }
          @media (min-width: 921px) {
            .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block-prodtype {
              font-size: 18px; } }
        .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--title {
          margin: 0 auto 10px auto; }
          @media (min-width: 921px) {
            .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--title {
              max-width: 280px;
              margin: 0 auto 20px auto; } }
        .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image {
          border: 5px solid white;
          display: block;
          overflow: hidden;
          background: white; }
          @media (min-width: 921px) {
            .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image {
              border: 12px solid white; } }
          .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image img {
            transition: all 0.2s ease; }
          .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image:hover {
            opacity: 1;
            cursor: pointer; }
            .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--image:hover img {
              transform: scale(1.02); }
        .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--descrip {
          margin: 5px auto 10px auto;
          font: 14px "ThrowMyHands"; }
          @media (min-width: 921px) {
            .routine-content .toners__content--rec .toners__content--blocks .toners__content--block .toners__content--block--descrip {
              font-size: 18px;
              margin: 5px auto 20px auto;
              max-width: 95%; } }
  .routine-content .toners__content--use, .routine-content .toners__content--tips, .routine-content .toners__content--multi {
    width: calc(100% - 40px);
    margin: 20px auto; }
    @media (min-width: 921px) {
      .routine-content .toners__content--use, .routine-content .toners__content--tips, .routine-content .toners__content--multi {
        max-width: 600px; } }
    @media (min-width: 921px) {
      .routine-content .toners__content--use, .routine-content .toners__content--tips, .routine-content .toners__content--multi {
        max-width: 1100px;
        margin: 60px auto; } }
    .routine-content .toners__content--use h3:before, .routine-content .toners__content--use .h3:before, .routine-content .toners__content--use h3:after, .routine-content .toners__content--use .h3:after, .routine-content .toners__content--tips h3:before, .routine-content .toners__content--tips .h3:before, .routine-content .toners__content--tips h3:after, .routine-content .toners__content--tips .h3:after, .routine-content .toners__content--multi h3:before, .routine-content .toners__content--multi .h3:before, .routine-content .toners__content--multi h3:after, .routine-content .toners__content--multi .h3:after {
      width: calc(50% - 130px); }
      @media (min-width: 921px) {
        .routine-content .toners__content--use h3:before, .routine-content .toners__content--use .h3:before, .routine-content .toners__content--use h3:after, .routine-content .toners__content--use .h3:after, .routine-content .toners__content--tips h3:before, .routine-content .toners__content--tips .h3:before, .routine-content .toners__content--tips h3:after, .routine-content .toners__content--tips .h3:after, .routine-content .toners__content--multi h3:before, .routine-content .toners__content--multi .h3:before, .routine-content .toners__content--multi h3:after, .routine-content .toners__content--multi .h3:after {
          width: calc(50% - 230px); } }
    .routine-content .toners__content--use p, .routine-content .toners__content--tips p, .routine-content .toners__content--multi p {
      font: 15px "Futura Book"; }
      @media (min-width: 921px) {
        .routine-content .toners__content--use p, .routine-content .toners__content--tips p, .routine-content .toners__content--multi p {
          font-size: 26px; } }
  .routine-content .toners__content--use .toners__content--use--image img {
    max-width: 640px;
    margin: 0 auto; }
  .routine-content .toners__content--tips .toners__content--tips--descrip {
    font: 15px "Futura Book"; }
    @media (min-width: 921px) {
      .routine-content .toners__content--tips .toners__content--tips--descrip {
        font-size: 26px;
        max-width: 680px;
        margin: 10px auto 20px auto; } }
    .routine-content .toners__content--tips .toners__content--tips--descrip span {
      font-family: "Futura Cond";
      display: block;
      text-transform: uppercase; }
  .routine-content .toners__bg .toners__bg-1 {
    position: absolute;
    top: 5%;
    left: 0;
    width: 15%; }
    @media (min-width: 921px) {
      .routine-content .toners__bg .toners__bg-1 {
        top: 5%;
        left: 5%;
        width: 10%; } }
  .routine-content .toners__bg .toners__bg-2 {
    position: absolute;
    top: 3%;
    right: 0;
    width: 18%; }
    @media (min-width: 921px) {
      .routine-content .toners__bg .toners__bg-2 {
        top: 3%;
        right: 9%;
        width: 10%; } }
  .routine-content .toners__actions {
    margin-top: 40px; }
    @media (min-width: 921px) {
      .routine-content .toners__actions {
        margin-top: 60px; } }
    .routine-content .toners__actions .toners__actions-btn {
      color: #b8bce0;
      background: white;
      padding: 15px 25px 12px 25px;
      font: 18px "Futura Cond";
      text-transform: uppercase;
      position: relative;
      display: block;
      margin: 20px auto;
      width: calc(100% - 30px);
      max-width: 420px; }
      @media (min-width: 921px) {
        .routine-content .toners__actions .toners__actions-btn {
          font-size: 26px;
          width: auto;
          max-width: 600px; } }
      .routine-content .toners__actions .toners__actions-btn:after {
        content: '';
        display: block;
        width: calc(100% + 10px);
        height: calc(100% + 10px);
        border: 1px solid white;
        background: transparent;
        position: absolute;
        top: -5px;
        left: -5px; }
      .routine-content .toners__actions .toners__actions-btn:hover {
        opacity: 1;
        color: #f0c0db; }

/*================ #PAGES / #SHELFIE ================*/
[data-section-type="Shelfie"] {
  padding: 10px 0 20px 0;
  background: #ffcccb;
  background: linear-gradient(90deg, #ffcccb 0%, #fb9d9f 100%);
  text-align: center;
  color: white;
  letter-spacing: 0.02em;
  font-family: "Futura Book";
  position: relative;
  overflow-x: hidden; }
  @media (min-width: 921px) {
    [data-section-type="Shelfie"] {
      padding: 30px 0 50px 0; } }
  [data-section-type="Shelfie"] p, [data-section-type="Shelfie"] label {
    color: white; }
  [data-section-type="Shelfie"] .page-width {
    position: relative;
    z-index: 2; }
    @media (min-width: 921px) {
      [data-section-type="Shelfie"] .page-width {
        max-width: 90%; } }
  [data-section-type="Shelfie"] .shelfie__banner {
    margin: 30px auto; }
    @media (min-width: 921px) {
      [data-section-type="Shelfie"] .shelfie__banner {
        margin: 40px auto 70px auto;
        max-width: 1200px; } }
    [data-section-type="Shelfie"] .shelfie__banner .shelfie__banner--subtitle {
      text-transform: uppercase;
      font: 21px/1 "Futura Cond Medium";
      margin-bottom: 10px; }
      @media (min-width: 921px) {
        [data-section-type="Shelfie"] .shelfie__banner .shelfie__banner--subtitle {
          font-size: 60px;
          margin-bottom: 20px; } }
    [data-section-type="Shelfie"] .shelfie__banner .shelfie__banner--title {
      text-transform: uppercase;
      font: 36px/1 "Futura Cond"; }
      @media (min-width: 921px) {
        [data-section-type="Shelfie"] .shelfie__banner .shelfie__banner--title {
          font-size: 90px;
          max-width: 900px;
          margin: 0 auto; } }
    [data-section-type="Shelfie"] .shelfie__banner img {
      width: 95%; }
      @media (min-width: 921px) {
        [data-section-type="Shelfie"] .shelfie__banner img {
          width: 82%; } }
  [data-section-type="Shelfie"] .shelfie__parent {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    margin-top: 40px; }
    @media (min-width: 921px) {
      [data-section-type="Shelfie"] .shelfie__parent {
        grid-row-gap: 60px;
        margin-top: 80px; } }
    [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__number {
      position: relative; }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__number span {
        background: #ffcccb;
        color: white;
        padding: 8px 12px 3px 12px;
        display: inline-block;
        text-transform: uppercase;
        font: 20px/1 "Futura Cond"; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__number span {
            padding: 14px 20px 10px 20px;
            font-size: 25px; } }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__number:before {
        content: '';
        display: block;
        height: 1px;
        width: calc(50% - 80px);
        background: white;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__number:before {
            height: 2px;
            width: calc(50% - 100px); } }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__number:after {
        content: '';
        display: block;
        height: 1px;
        width: calc(50% - 80px);
        background: white;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%); }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__number:after {
            height: 2px;
            width: calc(50% - 100px); } }
    [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__question {
      text-transform: uppercase;
      font: 33px/1 "Futura Cond";
      margin: 25px auto 20px auto; }
      @media (min-width: 921px) {
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__question {
          font-size: 56px;
          margin: 40px auto 30px auto; } }
    [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers {
      font: 14px/1.4 "Futura Book";
      width: 100%;
      margin: 0 auto 20px auto;
      display: block;
      text-align: center; }
      @media (min-width: 921px) {
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers {
          width: calc(100% - 40px);
          font-size: 18px;
          min-height: 120px; } }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers[data-answered='true'] .shelfie__answer .shelfie__answer--spacer:after {
        position: absolute;
        left: calc(100% + 5px);
        padding: 26px 13px 23px 19px;
        top: 50%;
        transform: translateY(-50%);
        font: 14px/1 "Futura Cond Oblique";
        text-transform: uppercase; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers[data-answered='true'] .shelfie__answer .shelfie__answer--spacer:after {
            padding: 26px 19px 22px 26px;
            font-size: 17px;
            left: calc(100% + 20px); } }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers[data-answered='true'] .shelfie__answer[data-correct='true'] .shelfie__answer--spacer:after {
        content: "CORRECT";
        background: #f1fde1;
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/shelfie-bg-correct.png?v=1587514239") center no-repeat;
        background-size: contain;
        color: #03d393; }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers[data-answered='true'] .shelfie__answer[data-selected='true'][data-correct='false'] .shelfie__answer--spacer:after {
        content: "INCORRECT";
        background: #ffd4d4;
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/shelfie-bg-incorrect.png?v=1587514239") center no-repeat;
        background-size: contain;
        color: #f4504b; }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer {
        display: block;
        position: relative; }
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer + .shelfie__answer {
          margin-top: 10px; }
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer .shelfie__answer--radio {
          vertical-align: middle; }
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer .shelfie__answer--radio[disabled] + .shelfie__answer--spacer label {
            cursor: default;
            background: transparent; }
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer .shelfie__answer--spacer {
          width: 180px;
          position: relative;
          margin: 0 auto; }
          @media (min-width: 921px) {
            [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer .shelfie__answer--spacer {
              width: 300px; } }
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer .shelfie__answer--label {
          vertical-align: middle;
          padding: 10px;
          font-size: 16px;
          margin-bottom: 0;
          display: inline-block; }
          @media (min-width: 921px) {
            [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer .shelfie__answer--label {
              font-size: 22px;
              padding: 12px 10px; } }
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer .shelfie__answer--label:hover {
            background: #ffcccb; }
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__container .shelfie__answers .shelfie__answer .shelfie__answer--radio:checked + .shelfie__answer--spacer .shelfie__answer--label {
          background: white;
          color: #ffcccb; }
    [data-section-type="Shelfie"] .shelfie__parent .shelfie__results-wrapper {
      display: none; }
    [data-section-type="Shelfie"] .shelfie__parent .shelfie__results {
      background: white;
      display: inline-block;
      position: relative;
      padding: 30px;
      width: 100%; }
      @media (min-width: 921px) {
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__results {
          padding: 50px 30px; } }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__results:before {
        content: '';
        background: url("https://cdn.shopify.com/s/files/1/1338/0835/files/shelfie-score-bg-3.png?v=1587511065") center no-repeat;
        background-size: contain;
        width: 95%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__results:before {
            width: 84%; } }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__results:after {
        content: '';
        display: block;
        width: calc(100% + 10px);
        height: calc(100% + 10px);
        border: 2px solid white;
        background: transparent;
        position: absolute;
        top: -5px;
        left: -5px;
        pointer-events: none; }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--title {
        color: #feacae;
        font: 33px "Futura Cond Oblique";
        text-transform: uppercase; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--title {
            font-size: 56px; } }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--score {
        background: url(https://cdn.shopify.com/s/files/1/1338/0835/files/shelfie-score-bg.png?v=1587509392) center no-repeat;
        background-size: contain;
        width: calc(100% - 40px);
        max-width: 460px;
        height: 100%;
        min-height: 230px;
        margin: 0 auto;
        position: relative; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--score {
            min-height: 460px; } }
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--score span {
          position: absolute;
          color: white;
          top: 54%;
          left: 50%;
          transform: translate(-50%, -50%);
          font: 50px "ThrowMyHands"; }
          @media (min-width: 921px) {
            [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--score span {
              font-size: 110px; } }
      [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--button {
        color: white;
        background: #feacae;
        padding: 15px 25px 12px 25px;
        font: 18px "Futura Cond";
        text-transform: uppercase;
        position: relative;
        display: inline-block;
        margin-top: 20px;
        width: calc(100% - 30px);
        max-width: 420px;
        transition: all 0.2s ease; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--button {
            font-size: 26px;
            width: auto;
            max-width: unset; } }
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--button:after {
          content: '';
          display: block;
          width: calc(100% + 10px);
          height: calc(100% + 10px);
          border: 2px solid #feacae;
          background: transparent;
          position: absolute;
          top: -5px;
          left: -5px;
          pointer-events: none; }
        [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--button:hover {
          opacity: 1;
          background: #fd9090; }
          [data-section-type="Shelfie"] .shelfie__parent .shelfie__results .shelfie__results--button:hover:after {
            border: 2px solid #fd9090; }
  [data-section-type="Shelfie"] .routine__bg {
    overflow-x: hidden; }
    [data-section-type="Shelfie"] .routine__bg div {
      position: absolute;
      width: 18%; }
      @media (min-width: 921px) {
        [data-section-type="Shelfie"] .routine__bg div {
          width: 12%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-1 {
        top: 1%;
        left: -20px; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-1 {
            left: 1%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-2 {
        top: 1%;
        right: -10px; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-2 {
            right: 1%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-3 {
        width: 16%;
        top: 11%; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-3 {
            width: 8%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-4 {
        width: 12%;
        top: 21%; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-4 {
            width: 6%;
            right: 2%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-5 {
        width: 13%;
        top: 44%; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-5 {
            width: 7%;
            top: 48%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-6 {
        width: 22%;
        top: 34%;
        right: 0; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-6 {
            width: 12%;
            top: 35%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-7 {
        width: 28%;
        top: 73%; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-7 {
            width: 16%;
            top: 68%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-8 {
        width: 21%;
        top: 58%;
        right: 0; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-8 {
            width: 12%; } }
      [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-9 {
        width: 18%;
        top: unset;
        bottom: 15%;
        right: 0;
        left: unset; }
        @media (min-width: 921px) {
          [data-section-type="Shelfie"] .routine__bg div.routine__bg--asset-9 {
            width: 10%; } }
