@charset "UTF-8";
/*============================================================================
  [replace with theme name] | Built with Slate
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ UTILS ================*/
/*================ Utilities & Helpers ================*/
/*================ Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/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);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
@-webkit-keyframes bounce {
  from {
    transform: translateY(0);
    animation-timing-function: linear; }

  25% {
    transform: translateY(0.75rem);
    animation-timing-function: linear; }

  50% {
    transform: translateY(1.5rem);
    animation-timing-function: linear; }

  75% {
    transform: translateY(0.75rem);
    animation-timing-function: linear; }

  to {
    transform: translateY(0); } }

@-moz-keyframes bounce {
  from {
    transform: translateY(0);
    animation-timing-function: linear; }

  25% {
    transform: translateY(0.75rem);
    animation-timing-function: linear; }

  50% {
    transform: translateY(1.5rem);
    animation-timing-function: linear; }

  75% {
    transform: translateY(0.75rem);
    animation-timing-function: linear; }

  to {
    transform: translateY(0); } }

@-ms-keyframes bounce {
  from {
    transform: translateY(0);
    animation-timing-function: linear; }

  25% {
    transform: translateY(0.75rem);
    animation-timing-function: linear; }

  50% {
    transform: translateY(1.5rem);
    animation-timing-function: linear; }

  75% {
    transform: translateY(0.75rem);
    animation-timing-function: linear; }

  to {
    transform: translateY(0); } }

@keyframes bounce {
  from {
    transform: translateY(0);
    animation-timing-function: linear; }

  25% {
    transform: translateY(0.75rem);
    animation-timing-function: linear; }

  50% {
    transform: translateY(1.5rem);
    animation-timing-function: linear; }

  75% {
    transform: translateY(0.75rem);
    animation-timing-function: linear; }

  to {
    transform: translateY(0); } }

/*================ Flexbox ================*/
@font-face {
  font-family: 'Montserrat';
  src: url("Montserrat-ExtraLight.woff2") format("woff2"), url("Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("Montserrat-Light.woff2") format("woff2"), url("Montserrat-Light.woff") format("woff"), url("Montserrat-Light.svg#Montserrat-Light") format("svg");
  font-weight: 300; }

@font-face {
  font-family: 'Montserrat';
  src: url("Montserrat-Light.woff2") format("woff2"), url("Montserrat-Light.woff") format("woff"), url("Montserrat-Light.svg#Montserrat-Light") format("svg"); }

@font-face {
  font-family: 'Montserrat';
  src: url("Montserrat-Medium.woff2") format("woff2"), url("Montserrat-Medium.woff") format("woff"), url("Montserrat-Medium.svg#Montserrat-Medium") format("svg");
  font-weight: 500; }

@font-face {
  font-family: 'Montserrat';
  src: url("Montserrat-SemiBold.woff2") format("woff2"), url("Montserrat-SemiBold.woff") format("woff"), url("Montserrat-SemiBold.svg#Montserrat-SemiBold") format("svg");
  font-weight: bold; }

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

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

@font-face {
  font-family: 'Cormorant';
  src: url("CormorantGaramond-SemiBold.woff2") format("woff2"), url("CormorantGaramond-SemiBold.woff") format("woff"), url("CormorantGaramond-SemiBold.svg#CormorantGaramond-SemiBold") format("svg");
  font-weight: bold; }

/*================ Typography Tools ================*/
/*================ Spacing ================*/
/*================ VENDOR ================*/
/*================ Images ================*/
/*** Responsive lazyloaded images ***/
.ratio-box {
  position: relative;
  height: 0;
  display: block;
  width: 100%;
  /* padding-top is calculated and rendered directly from HTML */ }

.ratio-box--video {
  padding-top: 56.25%; }

.ratio-box img,
.ratio-box iframe,
.ratio-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block; }

.background-box {
  background-repeat: no-repeat;
  background-color: #f7f7f7;
  background-size: cover;
  background-position: center;
  min-height: 18.75rem; }

.lazyload,
.lazyloading {
  opacity: 0.25; }

.lazyloaded {
  opacity: 1;
  transition: opacity 0.15s ease-in-out;
  backface-visibility: hidden; }

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent; }

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent; }

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1; }

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25; }

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 0.75rem;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto; }

.slick-prev:before {
  content: '←'; }

[dir='rtl'] .slick-prev:before {
  content: '→'; }

.slick-next {
  right: -25px; }

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px; }

.slick-next:before {
  content: '→'; }

[dir='rtl'] .slick-next:before {
  content: '←'; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

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

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent; }

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none; }

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1; }

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 0.75rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  content: '';
  text-align: center;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: .3;
  border-radius: 50%; }

.slick-dots li.slick-active button:before {
  opacity: 1; }

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*================ SETTINGS ================*/
/*================ Color Variables ================*/
/*================ Typography Variables ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Spacing Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ COMMON ================*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

.section-container__large, #testimonials__section {
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto; }

.section-container__medium {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/*================ Slate specific reset ================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

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

a:focus {
  color: inherit; }

img {
  max-width: 100%; }

/*================ Form element helpers ================*/
form {
  margin: 0; }

@media only screen and (max-width: 63.99em) {
  input,
  textarea,
  select {
    font-size: 16px; } }
button,
input[type="submit"],
label[for] {
  cursor: pointer; }

optgroup {
  font-weight: bold; }

option {
  color: black;
  background-color: #fbfbfb; }

[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 {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

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

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

.visually-shown {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0; }

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

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

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

html.supports-no-cookies .supports-cookies {
  display: none; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  position: absolute !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: black;
  background-color: #fbfbfb;
  padding: 1.25rem;
  z-index: 10000;
  transition: none; }

/*================ General layout styles ================*/
body {
  font-family: Montserrat, Arial, sans-serif; }

h1 {
  font-family: Cormorant, Arial, sans-serif;
  font-weight: bold;
  font-size: 2.0625rem;
  line-height: 1.18; }

h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5; }

h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.1; }

h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.19; }

a {
  color: #f285ae; }
  a:focus {
    text-decoration: none; }
  @media only screen and (min-width: 64em) {
    a:hover {
      text-decoration: none; } }

div {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

#MainContent {
  padding-top: 4.25rem; }
  @media only screen and (min-width: 64em) {
    #MainContent {
      padding-top: 8.8125rem; } }

#meet-patrick-ta .h1 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: Montserrat,Arial,sans-serif; }

.bold-links a.about-three-image-section__link {
  color: #000;
  font-weight: bold; }

.quote {
  font-size: 2rem;
  font-weight: 700;
  text-align: center !important;
  max-width: 700px; }

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

.icon--wide {
  width: 40px; }

svg.icon:not(.icon--full-color) circle,
svg.icon:not(.icon--full-color) ellipse,
svg.icon:not(.icon--full-color) g,
svg.icon:not(.icon--full-color) line,
svg.icon:not(.icon--full-color) path,
svg.icon:not(.icon--full-color) polygon,
svg.icon:not(.icon--full-color) polyline,
svg.icon:not(.icon--full-color) rect,
symbol.icon:not(.icon--full-color) circle,
symbol.icon:not(.icon--full-color) ellipse,
symbol.icon:not(.icon--full-color) g,
symbol.icon:not(.icon--full-color) line,
symbol.icon:not(.icon--full-color) path,
symbol.icon:not(.icon--full-color) polygon,
symbol.icon:not(.icon--full-color) polyline,
symbol.icon:not(.icon--full-color) rect {
  fill: inherit;
  stroke: inherit; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon-fallback-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .no-svg .icon-fallback-text {
    position: static !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0; }

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  cursor: default; }

/*================ Rich Text Editor ================*/
.rte img {
  height: auto;
  display: block;
  margin: 0 auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 1.25rem 2.5rem; }
.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; }

.rte-table {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

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

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

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (min-width: 30em) and (max-width: 47.99em) {
  .responsive-table {
    width: 100%; }
    .responsive-table thead {
      display: none; }
    .responsive-table tr {
      display: block; }
    .responsive-table tr,
    .responsive-table td {
      float: left;
      clear: both;
      width: 100%; }
    .responsive-table th,
    .responsive-table td {
      display: block;
      text-align: right;
      padding: 1.25rem;
      margin: 0; }
    .responsive-table td::before {
      content: attr(data-label);
      float: left;
      text-align: center;
      padding-right: 10px; }

  .responsive-table-row + .responsive-table-row,
  tfoot > .responsive-table-row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 1.25rem; }
    .responsive-table-row + .responsive-table-row::after,
    tfoot > .responsive-table-row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 1.25rem;
      right: 1.25rem;
      border-bottom: 1px solid #f6f6f6; } }
/*================ Links & 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;
  white-space: nowrap;
  border: 0.125rem solid black;
  font-weight: bold;
  background: black;
  color: #fbfbfb;
  text-transform: uppercase;
  font-family: Montserrat, Arial, sans-serif; }
  .btn:focus {
    background: #fbfbfb;
    border: 0.125rem solid black;
    color: black; }
  @media only screen and (min-width: 64em) {
    .btn:hover {
      background: #fbfbfb;
      border: 0.125rem solid black;
      color: black; } }

.btn--secondary {
  font-weight: bold;
  background: #fbfbfb;
  color: black;
  text-transform: uppercase;
  border: 0.0625rem solid #fbfbfb; }
  .btn--secondary:focus {
    background: black;
    color: #fbfbfb; }
  @media only screen and (min-width: 64em) {
    .btn--secondary:hover {
      border: 0.0625rem solid black;
      background: black;
      color: #fbfbfb; } }

/*============================================================================
  Form scaffolding
    - Selectors setup for you to style form elements how you want
    - Focus, error, and disabled states are set to be extended
==============================================================================*/
input,
textarea,
select {
  border: 1px solid #f6f6f6;
  border-radius: 0;
  max-width: 100%;
  padding: 0.625rem 1.25rem;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.875rem; }
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: #ddc3be; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #eeeeee;
    border-color: #cccccc; }

textarea {
  min-height: 100px;
  resize: none; }

/*================ Custom select style ================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px !important;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 ================*/ }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

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

/*================ Error styles ================*/
input.input-error,
select.input-error,
textarea.input-error {
  border-color: #e74c3c;
  background-color: #c0392b;
  color: #e74c3c; }

.placeholder-svg {
  display: block;
  fill: rgba(0, 0, 0, 0.35);
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2); }

.placeholder-svg--small {
  width: 480px; }

.placeholder-noblocks {
  padding: 40px;
  text-align: center; }

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .placeholder-background .icon {
    border: 0; }

/*================ Drawers ================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.drawer {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 4;
  background-color: #fff;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  width: 100%; }

html.js-drawer-open {
  overflow: hidden; }

.drawer--top {
  width: 100%;
  transform: translateY(0); }
  .js-drawer-open-top .drawer--top {
    transform: translateY(100%);
    display: block; }

.drawer--left {
  left: 0;
  transform: translateX(-100%); }
  .js-drawer-open-left .drawer--left {
    display: block;
    transform: translateX(0); }
    .lt-ie9 .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  right: 0;
  transform: translateX(100%); }
  .js-drawer-open-right .drawer--right {
    display: block;
    transform: translateX(0); }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

.drawer-page-content::after {
  visibility: hidden;
  opacity: 0;
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .js-drawer-open .drawer-page-content::after {
    visibility: visible;
    opacity: 1; }

/*================ MODULES ================*/
/*================ Site Header ================*/
.site-header__promo-bar {
  text-align: center;
  width: 100%;
  font-size: 0.875rem;
  padding: 0.625rem 0;
  font-weight: 500;
  white-space: nowrap; }

.site-header__currency-selector {
  border: none; }

.site-logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 15rem; }
  .site-logo svg {
    width: 15rem; }

.site-header__logo-image {
  max-width: 15rem; }

#shopify-section-header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 9999; }

.site-header {
  background-color: white;
  z-index: 3; }
  .site-header header {
    margin: 0 1.25rem; }
    @media only screen and (min-width: 64em) {
      .site-header header {
        margin: 0 2.5rem; } }

/* ===== Mobile ===== */
.site-header-mobile__menu {
  width: 25%; }
  @media only screen and (min-width: 64em) {
    .site-header-mobile__menu {
      display: none; } }

.site-header-mobile__menu-icon {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  touch-action: none; }

.site-header-mobile__menu-icon:focus {
  color: #ddc3be;
  outline: none; }

.icon-hamburger {
  width: 1.25rem; }

.site-header-mobile__button__container {
  display: block;
  width: 25%; }
  @media only screen and (min-width: 64em) {
    .site-header-mobile__button__container {
      display: none; } }

.site-header-mobile__buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end; }

.site-header-mobile__button {
  margin: 0 0; }
  .site-header-mobile__button a {
    color: black; }
  .site-header-mobile__button a:focus {
    color: #ddc3be;
    outline: none; }

.site-header-mobile__button:first-child {
  margin-right: 0.625rem; }

.icon-search {
  width: 1.25rem; }

.icon-cart {
  width: 1.25rem;
  height: 1.25rem; }

.icon-heart {
  width: 1.25rem; }

/* ===== Desktop ===== */
.site-header-desktop {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding: 1.25rem 0; }
  @media only screen and (min-width: 64em) {
    .site-header-desktop {
      padding: 2.5rem 0 1.25rem; } }

.site-header-desktop__search {
  display: none; }
  @media only screen and (min-width: 64em) {
    .site-header-desktop__search {
      display: block;
      width: 25%;
      margin: 0; }
      .dektop-menu__small .site-header-desktop__search {
        width: 40%; } }

.site-header-desktop__search-bar {
  position: relative;
  max-width: 13.75rem; }
  .site-header-desktop__search-bar input {
    border: 0.0625rem solid #eeeeee;
    padding: 0.3125rem 1.25rem;
    border-radius: 1.5625rem;
    width: 13.75rem;
    font-size: 0.875rem; }
    .site-header-desktop__search-bar input:focus {
      outline: none;
      border-color: #ddc3be; }
    .site-header-desktop__search-bar input::-webkit-input-placeholder {
      color: #eeeeee; }
    .site-header-desktop__search-bar input::-moz-placeholder {
      color: #eeeeee; }
    .site-header-desktop__search-bar input:-ms-input-placeholder {
      color: #eeeeee; }
    .site-header-desktop__search-bar input::-ms-input-placeholder {
      color: #eeeeee; }

.site-header__logo {
  width: auto; }
  .site-header__logo h1 {
    margin: 0; }
    @media only screen and (min-width: 64em) {
      .site-header__logo h1 {
        margin: 0; } }
  .dektop-menu__small .site-header__logo {
    width: 20%;
    margin: 0 15px; }
    @media only screen and (min-width: 1280px) {
      .dektop-menu__small .site-header__logo {
        width: 25%; } }

.site-header-desktop__buttons {
  display: none; }
  @media only screen and (min-width: 64em) {
    .site-header-desktop__buttons {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: flex-end;
      -ms-justify-content: flex-end;
      justify-content: flex-end;
      width: 25%; }
      .dektop-menu__small .site-header-desktop__buttons {
        width: 40%; } }

.site-header-desktop__button {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  .site-header-desktop__button select {
    border: none;
    font-size: 0.75rem;
    font-weight: normal;
    font-family: Montserrat, Arial, sans-serif;
    color: black; }
  .site-header-desktop__button a {
    color: black; }
  .site-header-desktop__button a:focus {
    color: #ddc3be;
    outline: none; }

.search-btn {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 0.3125rem;
  right: 1.25rem;
  color: black;
  padding: 0; }
  .search-btn svg {
    height: 1.25rem;
    width: 1.25rem; }

.search-btn:focus {
  outline: none; }
  .search-btn:focus svg {
    fill: #ddc3be; }

.site-header-desktop__bag-counter {
  font-size: 0.875rem;
  background-color: #c4cfda;
  color: black;
  width: 1.25rem;
  height: 1.25rem;
  text-align: center;
  border-radius: 50%;
  margin-left: 0.625rem;
  padding-top: 0.125rem;
  cursor: pointer; }

.icon-account {
  width: 1.25rem; }

/* ===== Mega Menu ===== */
.site-header .desktop-nav__alter-left .site-header-desktop__search .site-nav .parent-nav .parent-link:nth-of-type(3) .title {
  color: #ddc3be; }
  .site-header .desktop-nav__alter-left .site-header-desktop__search .site-nav .parent-nav .parent-link:nth-of-type(3) .title:hover {
    color: #a7b2b8;
    font-weight: bold; }
.site-header .desktop-nav__alter-right .site-header-desktop__buttons .site-nav .parent-nav.right .parent-link:nth-of-type(1) .title {
  color: #ddc3be; }
  .site-header .desktop-nav__alter-right .site-header-desktop__buttons .site-nav .parent-nav.right .parent-link:nth-of-type(1) .title:hover {
    color: #a7b2b8;
    font-weight: bold; }
.site-header .site-nav {
  display: none; }
  @media only screen and (min-width: 64em) {
    .site-header .site-nav {
      display: block; } }
  .site-header .site-nav .parent-nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    border-top: 0.0625rem solid #eeeeee;
    margin: 0;
    padding: 0;
    position: relative; }
  .site-header .site-nav .parent-link {
    padding: 0.625rem 0.375rem;
    margin: 0 0.625rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    font-weight: 500;
    border-bottom: 0.0625rem solid transparent; }
    .site-header .site-nav .parent-link a {
      color: black;
      text-decoration: none;
      font-size: 0.75rem; }
    .site-header .site-nav .parent-link a:focus {
      outline: none; }
  .site-header .site-nav .not-mega {
    position: relative;
    z-index: 0; }
  .site-header .site-nav .child-dropdown {
    position: absolute;
    bottom: 1.875rem;
    transform: translateY(100%);
    background-color: #fbfbfb;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    z-index: 1; }
    .site-header .site-nav .child-dropdown ul {
      padding: 1.25rem 0.625rem;
      min-width: 9.375rem;
      border-bottom: black 0.0625rem solid;
      border-left: black 0.0625rem solid;
      border-right: black 0.0625rem solid; }
    .site-header .site-nav .child-dropdown li {
      white-space: nowrap; }
    .site-header .site-nav .child-dropdown li:not(:last-child) {
      margin-bottom: 0.9375rem; }
  .site-header .site-nav .parent-link:hover,
  .site-header .site-nav .parent-link:focus-within {
    font-weight: bold;
    border-bottom: 0.0625rem solid black;
    outline-color: transparent; }
    .site-header .site-nav .parent-link:hover .child-mega,
    .site-header .site-nav .parent-link:focus-within .child-mega {
      height: auto;
      z-index: 11;
      max-height: 100vh;
      transition-property: all;
      transition-duration: 1s; }
    .site-header .site-nav .parent-link:hover .child-mega__child-list,
    .site-header .site-nav .parent-link:focus-within .child-mega__child-list {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start;
      -webkit-justify-content: center;
      -ms-justify-content: center;
      justify-content: center; }
  .site-header .site-nav .child-mega {
    position: absolute;
    width: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    top: 2.125rem !important;
    margin: 0 auto;
    height: 0;
    /* Hides the drop down */
    overflow: hidden;
    max-height: 0rem; }
.site-header .child-mega__child-list {
  text-decoration: none;
  list-style: none;
  font-size: 0.75rem;
  padding: 2.5rem 0;
  max-width: 80rem;
  margin: 0 auto;
  display: none; }
.site-header .child-mega-link {
  margin-right: 2.5rem; }
  .site-header .child-mega-link a {
    text-decoration: none;
    margin-bottom: 1.25rem; }
  .site-header .child-mega-link .child-mega-inner:hover,
  .site-header .child-mega-link .child-mega-inner:focus {
    text-decoration: underline; }
.site-header .child-mega__grandchild-list {
  display: block;
  list-style: none;
  padding: 0;
  margin-top: 0.625rem; }
.site-header .child-mega__grandchild-list--no-margin {
  display: block;
  list-style: none;
  padding: 0; }
.site-header .child-mega-grand-link {
  text-decoration: none;
  font-weight: 400;
  margin-bottom: 0.625rem; }
  .site-header .child-mega-grand-link a::after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden; }
.site-header .child-mega-grand-link:hover,
.site-header .child-mega-grand-link:focus-within {
  font-weight: bold;
  text-decoration: none; }
.site-header .child-mega__divider {
  width: 0.0625rem;
  background-color: #eeeeee;
  min-height: 12.5rem;
  height: 100%;
  margin-right: 2.5rem;
  opacity: 0.5; }
.site-header .child-mega__nav-picture__container {
  display: none; }
  @media only screen and (min-width: 80em) {
    .site-header .child-mega__nav-picture__container {
      display: block; } }
  .site-header .child-mega__nav-picture__container .child-mega__nav-picture-link:focus .child-mega__nav-picture,
  .site-header .child-mega__nav-picture__container .child-mega__nav-picture-link:hover .child-mega__nav-picture {
    opacity: 0.6; }
  .site-header .child-mega__nav-picture__container .child-mega__nav-picture-link:focus + a,
  .site-header .child-mega__nav-picture__container .child-mega__nav-picture-link:hover + a {
    text-decoration: underline; }
  .site-header .child-mega__nav-picture__container a:focus,
  .site-header .child-mega__nav-picture__container a:hover {
    text-decoration: underline; }
.site-header .child-mega__nav-picture {
  width: 12.5rem; }
.site-header .child-mega__nav-picture-title {
  text-align: center;
  font-size: 0.875rem;
  font-family: Cormorant, Arial, sans-serif; }
.site-header .site-header__logo-image {
  margin: 0 auto; }

.site-header__button-divider {
  border-left: 0.0625rem solid #eeeeee;
  margin: 0 0.625rem; }

.site-nav__shop {
  background: transparent;
  border: none;
  font-size: 0.75rem;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 500;
  padding: 0; }

.site-nav__shop:focus {
  outline: none;
  font-weight: bold; }

.site-nav__shop:hover {
  font-weight: bold; }

/*============= BEST CURRENCY SELECTOR ===============*/
.doubly-wrapper {
  position: initial !important;
  margin-top: 0 !important; }

/*================ Mobile Nav ================*/
#mobile-nav-drawer {
  background: rgba(255, 255, 255, 0.9); }

.mobile-nav__container {
  padding: 1.25rem;
  height: 100%;
  overflow: scroll; }

.mobile-nav__close {
  height: 1.25rem;
  width: 1.25rem;
  touch-action: none;
  border: none;
  background-color: transparent;
  padding: 0; }

.mobile-nav__close:focus {
  outline: none;
  color: #ddc3be; }

.mobile-nav__plus-icon {
  width: 0.75rem; }

.mobile-nav__minus-icon {
  display: none;
  width: 0.75rem; }

.mobile-nav {
  text-decoration: none;
  list-style: none;
  padding: 0; }
  .mobile-nav.mobile-nav__alter .mobile-nav--has-submenu--title:nth-of-type(3) .mobile-nav__link {
    color: #956D69; }
  .mobile-nav.mobile-nav__alter .mobile-nav--has-submenu--title:nth-of-type(3) .mobile-nav__link svg {
    fill: #956D69 !important; }
  .mobile-nav.mobile-nav__alter-fourth li:nth-of-type(4) .mobile-nav__link {
    color: #956D69; }
  .mobile-nav.mobile-nav__alter-fourth li:nth-of-type(4) .mobile-nav__link svg {
    fill: #956D69 !important; }

.mobile-nav__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  text-decoration: none;
  list-style: none;
  color: black;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: none;
  touch-action: none;
  font-family: Montserrat, Arial, sans-serif; }

.mobile-nav__link:focus {
  outline: none;
  color: #ddc3be; }
  .mobile-nav__link:focus svg {
    fill: currentColor; }

.mobile-nav__link[aria-expanded="true"] .mobile-nav__plus-icon {
  display: none; }
.mobile-nav__link[aria-expanded="true"] .mobile-nav__minus-icon {
  display: block; }

.mobile-nav__link[aria-expanded="false"] .mobile-nav__plus-icon {
  display: block; }
.mobile-nav__link[aria-expanded="false"] .mobile-nav__minus-icon {
  display: none; }

.mobile-nav--has-submenu {
  padding: 0 0 1.25rem;
  font-size: 0.875rem; }

.mobile-nav--has-submenu:last-child {
  padding: 0;
  font-size: 0.875rem; }

.mobile-nav__sublink {
  text-decoration: none;
  list-style: none;
  font-weight: 500;
  color: black;
  font-size: 0.75rem; }

.mobile-nav__sublink:focus {
  outline: none;
  color: #ddc3be; }

.mobile-nav__sublink-container {
  padding-bottom: 1.25rem; }

.mobile-nav--has-submenu--title {
  cursor: pointer;
  border-top: solid 0.0625rem black; }
  .mobile-nav--has-submenu--title li {
    list-style: none; }

.mobile-nav__submenu {
  display: none;
  cursor: pointer;
  padding: 1.25rem 0 0 1.25rem; }
  .mobile-nav__submenu li {
    list-style: none; }

.mobile-nav--no-submenu {
  border-top: solid 0.0625rem black; }

.mobile-nav--no-submenu--last-border {
  border-top: solid 0.0625rem black;
  padding: 0.625rem 0; }

.mobile-nav--no-submenu--no-border .doubly-wrapper .list {
  left: 0 !important;
  right: auto !important; }

.mobile__nav--last-chance:last-child {
  padding: 0; }

/*================ Giftcard Template ================*/
.giftcard-qr img {
  display: block;
  margin: 0 auto; }

.apple-wallet-image {
  display: block;
  margin: 0 auto; }

/*================ Print Giftcard Styles ================*/
@media print {
  @page {
    margin: 0.5cm; }

  p {
    orphans: 3;
    widows: 3; }

  html,
  body {
    background-color: #fff;
    color: #000; }

  .print-giftcard,
  .apple-wallet {
    display: none; } }
.product-card {
  position: relative; }
  @media only screen and (min-width: 48em) {
    .product-card:hover .product-card__image-two,
    .product-card:hover .product-card__image-sold-out {
      opacity: 1; }
    .product-card:hover .product-card__quick-shop {
      opacity: 0.8; } }
  .product-card:focus .product-card__image-two,
  .product-card:focus .product-card__image-sold-out {
    opacity: 1; }
  .product-card:focus .product-card__quick-shop {
    opacity: 0.8; }

.product-card__side-badge {
  background: #c4cfda;
  color: #fbfbfb;
  padding: 0.3125rem;
  font-weight: 600;
  font-size: 0.875rem;
  transform-origin: 0 0;
  transform: rotate(270deg);
  position: absolute;
  top: 6.25rem;
  left: 0;
  z-index: 2;
  text-align: center;
  width: 4.375rem;
  letter-spacing: 0.05188em;
  margin: 0;
  pointer-events: none; }

.product-card__image-container {
  position: relative; }

.product-card__quick-shop {
  display: none !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ddc3be;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  height: 2.5rem;
  line-height: 2.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  letter-spacing: 0.07em;
  opacity: 0;
  min-width: 8.75rem;
  transition-duration: 0.3s; }
  .product-card__quick-shop:focus {
    outline: 0;
    opacity: 0.8; }

.product-card__image-sold-out {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.25rem;
  background: #eeeeee;
  color: black;
  height: 3.125rem;
  line-height: 3.125rem;
  padding: 0 1.25rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  box-shadow: -0.125rem 0.125rem 0.3125rem 0 #999999;
  font-weight: bold;
  letter-spacing: 0.07em;
  border-radius: 0.3125rem;
  opacity: 0;
  min-width: 8.75rem;
  transition-duration: 0.3s; }
  .product-card__image-sold-out p {
    margin: 0;
    text-align: center;
    width: 100%; }

.product-card__image-icon-add {
  border-left: 0.0625rem solid #fbfbfb; }
  .product-card__image-icon-add svg {
    padding-right: 0.625rem; }

.product-card__image-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: #fbfbfb;
  transition-duration: 0.3s;
  width: 100%;
  height: 100%; }

.product-card__title-and-review {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  margin: 1.25rem 0 0.625rem;
  text-decoration: none; }
  .product-card__title-and-review:focus {
    outline: 0; }
    .product-card__title-and-review:focus > p {
      color: #ddc3be;
      font-weight: bold; }

.product-card__title {
  color: black;
  font-size: 1rem;
  font-weight: 500;
  margin: 0; }

.product-card__rating {
  margin: 0;
  text-align: right;
  min-width: 6.5625rem; }
  .product-card__rating .spr-badge-caption {
    display: none; }
  .product-card__rating .spr-icon-star:before,
  .product-card__rating .spr-icon:before {
    color: #ddc3be;
    font-size: 0.875rem;
    margin: 0 0.125rem; }

.product-card__price {
  color: black;
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: none;
  margin: 0; }
  .product-card__price:focus {
    outline: 0;
    color: #ddc3be;
    font-weight: bold; }

.product-price__percentage {
  color: #ddc3be;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  padding-left: 0.3125rem; }

.pagination {
  display: flex;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 3.75rem 0 0 0; }
  .pagination a,
  .pagination span {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: black;
    text-decoration: none;
    font-weight: bold;
    margin: 0 0.625rem; }
    .pagination a.disabled,
    .pagination span.disabled {
      color: #c4cfda;
      pointer-events: none; }

.collection-content .pagination {
  gap: 5px; }
.collection-content .pagination__current-page,
.collection-content .page-link {
  color: black !important;
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center; }
.collection-content .pagination__current-page {
  background: #F7E8E6;
  text-decoration: none; }
.collection-content .page-link:hover {
  border: 2px solid #F7E8E6 !important; }
.collection-content .pagination-arrow {
  margin: 0 15px !important; }
.collection-content .pagination-arrow.disabled {
  opacity: 30%; }
.collection-content .pagination-arrow svg {
  fill: black !important;
  width: 15px !important; }
.collection-content .pagination-arrow.previous-arrow {
  transform: rotate(180deg) !important; }
.collection-content .pagination a {
  margin: 0 5px; }

.page--cart {
  max-width: 768px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem; }
  .page--cart .ajaxcart__product-information {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    line-height: 1.7; }
    @media only screen and (min-width: 48em) {
      .page--cart .ajaxcart__product-information {
        margin-left: 5rem; } }
  @media only screen and (min-width: 48em) {
    .page--cart .ajaxcart__product-title {
      margin-bottom: 0.625rem; }
      .page--cart .ajaxcart__product-title a {
        font-size: 1rem; } }
  .page--cart .ajaxcart-item__price-strikethrough {
    text-decoration: line-through; }
  .page--cart .ajaxcart__subtotal {
    margin-top: 1.25rem; }
  @media only screen and (min-width: 48em) {
    .page--cart .ajaxcart__update-checkout-grouped {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  .page--cart .ajaxcart__update {
    font-family: Montserrat, Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 0.073em;
    height: 2.5rem;
    width: 100%;
    font-size: 0.875rem;
    margin-right: 0;
    margin-bottom: 0.625rem; }
    @media only screen and (min-width: 48em) {
      .page--cart .ajaxcart__update {
        margin-bottom: 0;
        margin-right: 0.3125rem; } }
  .page--cart .ajaxcart__checkout {
    margin-left: 0.3125rem; }
  .page--cart .ajaxcart__notes {
    display: none; }
  .page--cart .ajaxcart__continue-shopping {
    padding: 0.625rem; }

.cart-header {
  padding-bottom: 1.25rem; }

.cart-header__close {
  background: none;
  border: none;
  padding: 0; }
  .cart-header__close:focus {
    outline: 0; }
    .cart-header__close:focus > svg {
      color: #ddc3be; }
  @media only screen and (min-width: 48em) {
    .cart-header__close:hover > svg {
      color: #ddc3be; } }
  .cart-header__close svg {
    color: black;
    width: 1.25rem; }

.cart-header__title {
  margin: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  font-family: Montserrat, Arial, sans-serif; }

.ajaxcart-countdown {
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #eeeeee;
  line-height: 1.125rem; }

.ajaxcart-countdown__success,
.ajaxcart-countdown__no-success {
  display: none;
  width: 100%;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 0.875rem; }
  .ajaxcart-countdown__success.active,
  .ajaxcart-countdown__no-success.active {
    display: block; }

.ajaxcart__progress-bar {
  margin-top: 1.25rem;
  position: relative;
  width: 100%;
  height: 1.25rem;
  background: #eeeeee; }

.ajaxcart__inner-progress-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #c4cfda;
  width: 50%; }

.ajaxcart-drawer {
  overflow-y: scroll;
  padding: 1.25rem;
  max-width: 90%; }
  @media only screen and (min-width: 30em) {
    .ajaxcart-drawer {
      max-width: 26.875rem; } }

.ajaxcart-drawer__inner {
  position: relative; }

.ajaxcart__inner {
  border-bottom: 0.0625rem solid #eeeeee; }

.ajaxcart__product {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.0625rem solid #eeeeee;
  padding: 1.25rem 0;
  position: relative; }
  .ajaxcart__product.is-loading {
    background: #eeeeee; }
  .ajaxcart__product[js-ajaxcart-upsell-product].active {
    display: none; }

.ajaxcart__cart-hide {
  display: none; }

.ajaxcart__product-image {
  width: 33.33%;
  font-size: 0; }
  .ajaxcart__product-image:focus {
    outline: 0;
    opacity: 0.7; }
  @media only screen and (min-width: 48em) {
    .ajaxcart__product-image:hover {
      opacity: 0.7; } }
  .ajaxcart__product-image img {
    width: 100%; }

.ajaxcart__product-information {
  width: 66.66%;
  margin-left: 0.625rem; }

.ajaxcart__product-title {
  margin: 0;
  line-height: 0.875rem;
  padding-right: 1.875rem; }
  .ajaxcart__product-title > a:focus {
    outline: 0;
    color: #ddc3be; }
  @media only screen and (min-width: 48em) {
    .ajaxcart__product-title > a:hover {
      color: #ddc3be; } }
  .ajaxcart__product-title a {
    color: black;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.073em;
    font-weight: 500;
    font-family: Montserrat, Arial, sans-serif;
    text-transform: uppercase; }

.ajaxcart__product-variant {
  display: none; }

.ajaxcart__product-property {
  color: black;
  font-size: 0.875rem;
  letter-spacing: 0.073em;
  font-weight: 500;
  font-family: Montserrat, Arial, sans-serif;
  display: block;
  padding-top: 0.625rem; }

.ajaxcart__individual-product-price {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.083em;
  padding: 0.625rem 0;
  color: #999999; }

.ajaxcart__individual-product-price-discount {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.083em;
  padding: 0.625rem 0;
  color: #999999;
  padding: 0.625rem 0; }
  .ajaxcart__individual-product-price-discount.ajaxcart__individual-product-price-discount--strikethrough {
    text-decoration: line-through;
    padding-bottom: 0; }

.ajaxcart-item__price-strikethrough {
  color: #999999;
  display: block;
  text-decoration: line-through;
  margin-bottom: 0.3125rem; }

.ajaxcart__product-qty {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.ajaxcart__qty-adjust,
.js-qty__adjust {
  border: none;
  background: none;
  font-weight: bold;
  font-size: 0.875rem; }
  @media only screen and (min-width: 48em) {
    .ajaxcart__qty-adjust:hover,
    .js-qty__adjust:hover {
      outline: 0;
      color: #DDC3BE; } }
  .ajaxcart__qty-adjust:focus-within,
  .js-qty__adjust:focus-within {
    outline: 0;
    color: #DDC3BE; }

.ajaxcart__qty-remove {
  position: absolute;
  top: 1.25rem;
  right: 0;
  padding: 0;
  color: black; }
  .ajaxcart__qty-remove:focus {
    outline: 0; }
    .ajaxcart__qty-remove:focus > svg {
      color: #ddc3be; }
  @media only screen and (min-width: 48em) {
    .ajaxcart__qty-remove:hover > svg {
      color: #ddc3be; } }
  .ajaxcart__qty-remove svg {
    width: 0.8125rem; }

.ajaxcart__qty-num,
.js-qty__num {
  text-align: center;
  padding: 0;
  width: 1.25rem;
  border: none;
  padding: 0.0625rem;
  font-weight: bold;
  font-size: 0.875rem;
  background: transparent; }
  @media only screen and (min-width: 48em) {
    .ajaxcart__qty-num:hover,
    .js-qty__num:hover {
      outline: 0;
      color: pink; } }
  .ajaxcart__qty-num:focus,
  .js-qty__num:focus {
    outline: 0;
    color: pink; }

.ajaxcart__product-price {
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 0.083em;
  padding: 0.3125rem 0;
  text-align: right;
  margin-top: 0.3125rem; }

.ajaxcart__upsell-header {
  font-size: 0.875rem;
  letter-spacing: 0.073em;
  font-weight: 500; }

.ajaxcart__upsell-product-price {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.083em;
  padding: 0.625rem 0;
  color: black; }
  .ajaxcart__upsell-product-price s {
    color: #999999; }

.ajaxcart__upsell-btn.btn, .free-gift-button.btn {
  margin-top: 0.625rem;
  font-weight: bold;
  font-family: Montserrat, Arial, sans-serif;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  font-size: 0.75rem;
  height: 2.5rem; }

.free-gift {
  padding: 15px;
  background: #eee; }

.free-gift .ajaxcart__upsell-header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem; }

.ajaxcart__promo-code {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.5rem; }

.ajaxcart__promo-input {
  border: none;
  border-bottom: 0.125rem solid black;
  height: 2.5rem;
  margin-right: 0.625rem;
  width: 100%;
  padding-left: 0.625rem;
  color: #999999;
  letter-spacing: 0.07em;
  font-size: 0.875rem; }
  .ajaxcart__promo-input::-webkit-input-placeholder {
    color: #999999;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    font-weight: 500; }
  .ajaxcart__promo-input::-moz-placeholder {
    color: #999999;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    font-weight: 500; }
  .ajaxcart__promo-input:-ms-input-placeholder {
    color: #999999;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    font-weight: 500; }
  .ajaxcart__promo-input::-ms-input-placeholder {
    color: #999999;
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    font-weight: 500; }

.ajaxcart__promo-btn.btn {
  font-weight: bold;
  font-family: Montserrat, Arial, sans-serif;
  letter-spacing: 0.083em;
  text-transform: uppercase;
  font-size: 0.75rem;
  height: 2.5rem;
  width: 7.5rem; }

.ajaxcart__footer-container {
  margin-top: 2.5rem; }

.ajaxcart__footer {
  margin-top: 1.875rem; }

.ajaxcart__subtotal-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; }
  .ajaxcart__subtotal-row p {
    margin: 0;
    font-weight: bold;
    font-size: 0.875rem;
    letter-spacing: 0.073em;
    text-transform: uppercase; }

.ajaxcart__disclaimer {
  color: #999999;
  font-size: 0.625rem;
  letter-spacing: 0.117em;
  font-weight: 500; }

.ajaxcart__checkout {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.073em;
  height: 2.5rem;
  width: 100%;
  font-size: 0.875rem; }

.ajaxcart__additional-checkout,
#AjaxifyCart .additional-checkout-buttons {
  display: none; }

.ajaxcart__shipping-link {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #999999;
  text-align: center;
  margin-top: 1.25rem;
  display: block; }
  .ajaxcart__shipping-link:focus {
    outline: 0;
    text-decoration: none;
    color: black; }

div[class*="promo"] .ajaxcart__product-qty {
  display: none; }

/*================ Site Footer ================*/
.site-footer {
  background: #f2eae6; }

.footer__container {
  max-width: 80rem;
  margin: 0 auto;
  background: #f2eae6;
  padding: 2.5rem 1.25rem 0.625rem; }
  .footer__container ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .footer__container a {
    text-decoration: none;
    color: black;
    font-family: Montserrat, Arial, sans-serif;
    letter-spacing: 0.083em;
    white-space: nowrap; }
  @media only screen and (min-width: 64em) {
    .footer__container {
      padding: 2.5rem 2.5rem 0.625rem; } }

@media only screen and (min-width: 64em) {
  .footer__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between; } }

.footer__subscribe-title {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.25rem;
  color: black;
  letter-spacing: 0.075em;
  padding: 0 1.25rem;
  text-align: center; }
  @media only screen and (min-width: 64em) {
    .footer__subscribe-title {
      line-height: 1.875rem;
      padding: 0;
      text-align: left; } }

.footer__subscribe-input {
  margin: 2.5rem 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .footer__subscribe-input input {
    width: 100%;
    padding: 0.3125rem 1.25rem;
    font-size: 0.75rem;
    border-radius: 0.3125rem 0 0 0.3125rem; }
  @media only screen and (min-width: 64em) {
    .footer__subscribe-input {
      width: 80%;
      margin: 1.25rem 0; } }

.footer__subscribe-btn {
  border-radius: 0 0.3125rem 0.3125rem 0;
  font-size: 0.625rem;
  padding: 0.625rem; }

.footer__subscribe-btn:hover,
.footer__subscribe-btn:focus {
  outline: none; }

.footer__nav-links-1 {
  margin-top: 2.5rem; }
  @media only screen and (min-width: 64em) {
    .footer__nav-links-1 {
      margin-top: 0; } }

.footer__nav-links-1,
.footer__nav-links-2,
.footer__social-links {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.875rem;
  font-weight: 500; }
  @media only screen and (min-width: 64em) {
    .footer__nav-links-1,
    .footer__nav-links-2,
    .footer__social-links {
      text-align: left; } }

.footer__nav-links-1 a:focus,
.footer__nav-links-1 a:hover,
.footer__nav-links-2 a:focus,
.footer__nav-links-2 a:hover {
  color: #ddc3be;
  font-weight: bold;
  outline: none; }
  .footer__nav-links-1 a:focus svg,
  .footer__nav-links-1 a:hover svg,
  .footer__nav-links-2 a:focus svg,
  .footer__nav-links-2 a:hover svg {
    fill: #ddc3be; }
.footer__nav-links-1 a::after,
.footer__nav-links-2 a::after {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  letter-spacing: 0.083em; }

.footer__social-links {
  margin-right: 0;
  margin-top: 20px; }
  .footer__social-links a:focus,
  .footer__social-links a:hover {
    color: #ddc3be;
    outline: none; }
    .footer__social-links a:focus svg,
    .footer__social-links a:hover svg {
      fill: #ddc3be; }
    .footer__social-links a:focus .footer__social-label,
    .footer__social-links a:hover .footer__social-label {
      font-weight: bold; }
  .footer__social-links .footer__social-label::after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    letter-spacing: 0.083em; }

.footer__social-links ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }
.footer__social-links li {
  width: 1.25rem;
  margin-right: 1.25rem; }
@media only screen and (min-width: 64em) {
  .footer__social-links {
    margin-top: 0; }
    .footer__social-links ul {
      display: block; }
    .footer__social-links li {
      width: initial;
      margin-right: 0; } }

.footer__social-icons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  .footer__social-icons svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: black; }

.footer__social-label {
  display: none; }
  @media only screen and (min-width: 64em) {
    .footer__social-label {
      display: inline-block;
      margin-left: 0.625rem; } }

.footer__copyright {
  font-size: 0.5rem;
  margin-top: 2.5rem;
  text-align: center; }
  @media only screen and (min-width: 64em) {
    .footer__copyright {
      font-size: 0.625rem;
      text-align: left; } }

.breadcrumb {
  padding-top: 0.625rem; }
  .breadcrumb span {
    padding: 0 0.625rem; }
    .breadcrumb span:last-child {
      padding: 0;
      font-weight: 500; }
  .breadcrumb a {
    text-decoration: none;
    color: #999999; }
    .breadcrumb a:hover {
      color: black; }

/* 
   Swatches Styles
*/
.swatch {
  margin: 1em 0; }

/* Label */
.swatch .header {
  margin: 0.5em 0; }

/* Hide radio buttons.*/
.swatch input {
  display: none; }

.swatch label {
  background: #f8f8f8;
  border: 1px solid black;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  float: left;
  width: 125px !important;
  height: 55px !important;
  margin: 0;
  font-size: 13px;
  text-align: center;
  line-height: 55px;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 0.625rem; }

.swatch-element label {
  padding: 0 10px; }

.color.swatch-element label {
  padding: 0; }

/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  color: #cd7766; }

.swatch .swatch-element {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  float: left;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  /* Spacing between buttons */
  margin: 0px 10px 10px 0;
  /* To position the sold out graphic and tooltip */
  position: relative; }

/* Image with the cross in it */
.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

.swatch .swatch-element .crossed-out {
  display: none; }

.swatch .swatch-element.soldout .crossed-out {
  display: block; }

.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60);
  /* internet explorer */
  -khtml-opacity: 0.6;
  /* khtml, old safari */
  -moz-opacity: 0.6;
  /* mozilla, netscape */
  opacity: 0.6;
  /* fx, safari, opera */ }

.swatch__variant-price {
  font-weight: 500;
  text-align: center; }

.swatch__variant-price-compare {
  position: relative;
  color: #ddc3be; }

.swatch__variant-price-compare:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.125rem;
  background: #ddc3be;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%) rotate(10deg);
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg); }

.swatch__variant-normal-price {
  color: black;
  padding-left: 0.625rem; }

/* Tooltips */
.swatch .tooltip {
  text-align: center;
  background: gray;
  color: #fff;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  left: 14px;
  margin-bottom: 15px;
  /* Make it invisible by default */
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.swatch .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%; }

/* CSS triangle */
.swatch .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid gray 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0; }

.swatch .swatch-element:hover .tooltip {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); }

.swatch.error {
  background-color: #e8d2d2 !important;
  color: #333333 !important;
  padding: 1em;
  border-radius: 5px; }

.swatch.error p {
  margin: 0.7em 0; }

.swatch.error p:first-child {
  margin-top: 0; }

.swatch.error p:last-child {
  margin-bottom: 0; }

.swatch.error code {
  font-family: monospace; }

.wishlist-button {
  background-color: transparent;
  border: none;
  margin-top: 20px; }
  .wishlist-button svg {
    max-width: 24px;
    width: 100%; }
  .wishlist-button svg.icon:hover {
    stroke: red; }

a.view-wishlist {
  color: #000; }

#tis-the-season div {
  cursor: url("https://cdn.shopify.com/s/files/1/0173/4842/files/cursor-xmas.png?v=1604383268"), auto; }

/*================ SECTION ================*/
.container {
  max-width: 80rem;
  margin: 0 auto; }

.flush .page-about-section--no-padding {
  margin-bottom: 0; }

.product-reviews__container {
  background: rgba(230, 230, 230, 0.19);
  padding: 2.5rem 1.25rem; }

.product-reviews {
  max-width: 53.33333rem;
  padding: 0 spcaing();
  margin: 0 auto; }
  .product-reviews .spr-starratings i,
  .product-reviews .spr-starrating .spr-icon {
    color: #ddc3be;
    padding: 0 0.125rem;
    font-size: 1rem; }

div#shopify-product-reviews {
  margin: 0; }

.spr-header-title {
  display: none; }

.spr-summary {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }
  @media only screen and (min-width: 48em) {
    .spr-summary {
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-justify-content: initial;
      -ms-justify-content: initial;
      justify-content: initial; } }

.spr-summary-caption {
  font-size: 0.875rem; }

.product-reviews__title {
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 2.5;
  font-weight: 500;
  text-transform: uppercase; }

.spr-summary-actions {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .spr-summary-actions {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      margin-left: auto;
      width: auto; } }

.product-reviews__share-text {
  font-size: 0.75rem;
  margin: 1.25rem 0;
  text-align: center;
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .product-reviews__share-text {
      margin: 0 0.625rem 0 0;
      text-align: initial;
      width: auto; } }

.spr-summary-actions-newreview {
  margin-bottom: 2.5rem; }
  @media only screen and (min-width: 48em) {
    .spr-summary-actions-newreview {
      margin-bottom: 0; } }

.spr-summary-actions-newreview,
div.spr-form input.spr-button {
  -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;
  white-space: nowrap;
  border: 0.125rem solid #ddc3be;
  font-weight: bold;
  background: #ddc3be;
  color: black !important;
  text-transform: uppercase;
  border-radius: 0.3125rem;
  padding: 0.625rem;
  font-size: 0.75rem;
  letter-spacing: .17em; }
  .spr-summary-actions-newreview:focus,
  div.spr-form input.spr-button:focus {
    background: #d2b1aa;
    border: 0.125rem solid #d2b1aa;
    color: black; }
  @media only screen and (min-width: 48em) {
    .spr-summary-actions-newreview:hover,
    div.spr-form input.spr-button:hover {
      background: #d2b1aa;
      border: 0.125rem solid #d2b1aa;
      color: black; } }

div.spr-container,
div.spr-review {
  border: none;
  padding: 0; }
  div.spr-container:first-child .spr-review-content.no-margin,
  div.spr-review:first-child .spr-review-content.no-margin {
    margin-bottom: 0; }

div.spr-form .spr-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3125rem; }
div.spr-form input,
div.spr-form textarea {
  border: 1px solid #ddc3be;
  padding: 0.3125rem;
  font-size: 0.875rem; }

.spr-review-header-title {
  display: none; }

span.spr-review-header-byline {
  font-style: normal;
  opacity: 1;
  font-weight: bold;
  margin: 0.625rem 0;
  width: 100%; }

.spr-review-content-body {
  line-height: 2; }

.product-reviews__show-more {
  border: none;
  background: none;
  text-decoration: underline;
  font-size: 0.75rem;
  line-height: 3.33;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 0; }
  @media only screen and (min-width: 64em) {
    .product-reviews__show-more:hover {
      color: #ddc3be;
      font-weight: bold; } }
  .product-reviews__show-more:focus {
    color: #ddc3be;
    outline: 0;
    font-weight: bold; }

.spr-review-footer {
  display: none; }

.spr-pagination a,
.spr-pagination span.spr-pagination-page.is-active {
  text-decoration: none;
  color: #999999;
  font-weight: 500;
  margin: 0 0.625rem;
  font-size: 0.875rem; }
  @media only screen and (min-width: 48em) {
    .spr-pagination a:hover,
    .spr-pagination span.spr-pagination-page.is-active:hover {
      color: #ddc3be; } }
  .spr-pagination a:focus,
  .spr-pagination span.spr-pagination-page.is-active:focus {
    outline: 0;
    color: #ddc3be; }

.section--related-products {
  padding-bottom: 5rem;
  padding-top: 5rem; }
  .section--related-products.hide {
    display: none; }

.related-products__title {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  padding-left: 0.625rem; }
  @media only screen and (min-width: 48em) {
    .related-products__title {
      font-size: 2.0625rem;
      text-align: center;
      padding-left: 0;
      margin: 0 0 2.5rem; } }

.related-products__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 0 0 0.625rem; }
  @media only screen and (min-width: 48em) {
    .related-products__container {
      padding: 0 2.5rem; } }

.related-products {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .related-products .slick-list {
    padding-right: 20%; }
    @media only screen and (min-width: 48em) {
      .related-products .slick-list {
        padding-right: 10%; } }
    @media only screen and (min-width: 64em) {
      .related-products .slick-list {
        padding-right: 0; } }

.related-products__each {
  padding: 0 0.625rem; }
  @media only screen and (min-width: 48em) {
    .related-products__each {
      -ms-flex-preferred-size: 25%;
      -webkit-flex-basis: 25%;
      -moz-flex-basis: 25%;
      flex-basis: 25%; } }

.homepage-hero__container {
  padding-bottom: 10px; }
  .homepage-hero__container.slick-dotted.slick-slider {
    margin-bottom: 3.75rem; }
    @media only screen and (min-width: 48em) {
      .homepage-hero__container.slick-dotted.slick-slider {
        margin-bottom: 0; } }
  .homepage-hero__container .slick-dots {
    bottom: -1.25rem; }
    @media only screen and (min-width: 48em) {
      .homepage-hero__container .slick-dots {
        bottom: 1.66667rem; } }
    .homepage-hero__container .slick-dots li button:before {
      background: #fbfbfb;
      border: 0.0625rem solid #ddc3be;
      opacity: 1; }
    .homepage-hero__container .slick-dots li.slick-active button:before {
      background: #ddc3be; }

.homepage-hero {
  position: relative; }
  .homepage-hero:focus {
    outline: 0; }

.homepage-hero__home-hero-text {
  position: relative;
  text-align: center;
  padding: 1.875rem 1.25rem; }
  @media only screen and (min-width: 48em) {
    .homepage-hero__home-hero-text {
      text-align: left;
      position: absolute;
      padding: 2.5rem; }
      .homepage-hero__home-hero-text.top-left {
        top: 5%;
        left: 5%; }
      .homepage-hero__home-hero-text.top-center {
        top: 5%;
        transform: translateX(-50%);
        left: 50%; }
      .homepage-hero__home-hero-text.top-right {
        top: 5%;
        right: 5%; }
      .homepage-hero__home-hero-text.middle-left {
        top: 50%;
        left: 5%;
        transform: translateY(-50%); }
      .homepage-hero__home-hero-text.middle-center {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      .homepage-hero__home-hero-text.middle-right {
        top: 50%;
        transform: translateY(-50%);
        right: 5%; }
      .homepage-hero__home-hero-text.bottom-left {
        bottom: 5%;
        left: 5%; }
      .homepage-hero__home-hero-text.bottom-center {
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%); }
      .homepage-hero__home-hero-text.bottom-right {
        bottom: 5%;
        right: 5%; }
      .homepage-hero__home-hero-text.right {
        text-align: right; }
      .homepage-hero__home-hero-text.center {
        text-align: center; } }

.home-hero-text__title {
  margin: 0 0 1.25rem 0;
  width: 100%; }
  .home-hero-text__title.white {
    color: black; }
    @media only screen and (min-width: 48em) {
      .home-hero-text__title.white {
        color: #fbfbfb; } }

.home-hero-text__btn {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  padding: 0.625rem 1.875rem;
  border-radius: 0.3125rem;
  text-decoration: none; }
  .home-hero-text__btn.btn--secondary {
    background: black;
    color: #fbfbfb; }
    @media only screen and (min-width: 48em) {
      .home-hero-text__btn.btn--secondary {
        background: #fbfbfb;
        color: black; } }
  .home-hero-text__btn:focus {
    outline: none; }

.homepage-hero__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0; }

.homepage-hero__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.homepage-hero__image {
  width: 100%;
  height: 100%; }

.homepage-hero__image-desktop {
  display: none; }
  @media only screen and (min-width: 48em) {
    .homepage-hero__image-desktop {
      display: block; } }

.homepage-hero__image-mobile {
  display: block; }
  @media only screen and (min-width: 48em) {
    .homepage-hero__image-mobile {
      display: none; } }

.home-icons {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.75rem; }
  @media only screen and (min-width: 48em) {
    .home-icons {
      padding: 3.75rem 2.5rem; } }

.home-icons__title {
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 1.25rem; }
  @media only screen and (min-width: 48em) {
    .home-icons__title {
      margin-bottom: 2.5rem; } }

.home-icons__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }

.home-icons__content-each {
  width: 100%;
  text-align: center;
  padding: 1.66667rem 0; }
  @media only screen and (min-width: 48em) {
    .home-icons__content-each {
      padding: 1.25rem 0.625rem;
      width: 33.33%; } }
  @media only screen and (min-width: 64em) {
    .home-icons__content-each {
      width: 20%; } }

.home-icons__content-each-icon {
  width: 5rem;
  margin: 0 auto; }

.home-icons__content-each-title {
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 1.25rem 0; }

.home-icons__content-each-subtitle {
  letter-spacing: 0.07em;
  font-size: 0.875rem;
  width: 80%;
  margin: 0 auto; }
  @media only screen and (min-width: 48em) {
    .home-icons__content-each-subtitle {
      width: 100%; } }

.home-icons__btn-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-top: 1.25rem; }
  @media only screen and (min-width: 48em) {
    .home-icons__btn-container {
      margin-top: 1.875rem; } }
  .home-icons__btn-container .btn {
    border-radius: 0.3125rem;
    padding: 0.625rem 1.875rem;
    letter-spacing: 0.07em;
    font-size: 0.875rem; }
    @media only screen and (min-width: 48em) {
      .home-icons__btn-container .btn:hover {
        color: black;
        background: #fbfbfb; } }

.collection-links__container {
  position: relative; }

.collection-links {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 1; }

.collection-links__title {
  letter-spacing: 0.03em;
  text-align: center;
  padding: 3.75rem 1.25rem;
  margin: 0;
  background: #ddc3be; }
  @media only screen and (min-width: 48em) {
    .collection-links__title {
      background: transparent; } }

.collection-links__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0; }
  @media only screen and (min-width: 30em) {
    .collection-links__content {
      padding: 0.3125rem 0.3125rem 0 0.3125rem; } }
  @media only screen and (min-width: 48em) {
    .collection-links__content {
      padding: 0 1.66667rem; } }

.collection-links__content-each {
  width: 100%;
  padding: 0;
  color: black;
  text-decoration: none; }
  @media only screen and (min-width: 30em) {
    .collection-links__content-each {
      padding: 0.625rem;
      width: 50%; } }
  @media only screen and (min-width: 48em) {
    .collection-links__content-each {
      width: 25%;
      padding: 0 0.625rem; } }
  .collection-links__content-each:focus .collection-links__content-each-title {
    color: #ddc3be;
    font-weight: bold; }
  .collection-links__content-each:focus .collection-links__content-each-image {
    opacity: 0.8; }
  @media only screen and (min-width: 48em) {
    .collection-links__content-each:hover .collection-links__content-each-title {
      color: #ddc3be;
      font-weight: bold; }
    .collection-links__content-each:hover .collection-links__content-each-image {
      opacity: 0.8; } }

.collection-links__content-each-title {
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  text-align: center;
  margin: 1.25rem 0 1.875rem 0; }
  @media only screen and (min-width: 30em) {
    .collection-links__content-each-title {
      margin: 1.25rem 0; } }
  @media only screen and (min-width: 48em) {
    .collection-links__content-each-title {
      margin: 1.25rem 0; } }

.collection-links__content-each-image {
  width: 100%;
  height: auto; }

.featured-blog__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.875rem 0; }
  @media only screen and (min-width: 48em) {
    .featured-blog__container {
      padding: 3.75rem 1.25rem; } }

.featured-blog__title {
  text-align: center;
  margin: 0.625rem 0; }

.featured-blog__subtitle {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  max-width: 36.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  padding: 0 1.25rem; }

.featured-blog {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .featured-blog.reverse {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }

.featured-blog__left {
  margin: 0;
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .featured-blog__left {
      margin: 0 0.625rem 0 1.25rem; } }
  @media only screen and (min-width: 64em) {
    .featured-blog__left {
      width: 50%; } }
  .featured-blog__left .background-box {
    min-height: 0;
    background-size: 0; }
    @media only screen and (min-width: 48em) {
      .featured-blog__left .background-box {
        min-height: 18.75rem;
        background-size: cover; } }

.featured-blog__left-each {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 48em) {
    .featured-blog__left-each {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .featured-blog__left-each.reverse {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media only screen and (min-width: 48em) {
      .featured-blog__left-each.reverse {
        -webkit-flex-direction: row-reverse;
        -moz-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse; } }

.featured-blog__left-image {
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .featured-blog__left-image {
      width: 50%; } }
  .featured-blog__left-image .featured-blog__left-image-mobile {
    display: block; }
    @media only screen and (min-width: 48em) {
      .featured-blog__left-image .featured-blog__left-image-mobile {
        display: none; } }

.featured-blog__left-text {
  width: 100%;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 1.875rem 2.5rem; }
  @media only screen and (min-width: 48em) {
    .featured-blog__left-text {
      width: 50%;
      margin: 0.0625rem;
      box-shadow: 0 0 0.0625rem 0.0625rem #eeeeee;
      padding: 1.25rem 1.875rem; } }
  @media only screen and (min-width: 64em) {
    .featured-blog__left-text {
      padding: 1.25rem 2.5rem; } }

.featured-blog__left-title,
.featured-blog__right-title {
  font-weight: bold;
  letter-spacing: 0.055em;
  margin: 0; }

.featured-blog__left-subtitle,
.featured-blog__right-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.07em; }

.featured-blog__left-link,
.featured-blog__right-link {
  color: black;
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  font-weight: 500; }
  @media only screen and (min-width: 48em) {
    .featured-blog__left-link:hover,
    .featured-blog__right-link:hover {
      color: #ddc3be; } }
  .featured-blog__left-link:focus,
  .featured-blog__right-link:focus {
    outline: 0;
    color: #ddc3be; }

.featured-blog__right {
  display: none;
  width: 50%;
  position: relative;
  margin: 0; }
  @media only screen and (min-width: 64em) {
    .featured-blog__right {
      display: block;
      margin: 0 1.25rem 0 0.625rem; } }

.featured-blog__right-text {
  width: 60%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 0 0.0625rem 0.0625rem #eeeeee;
  padding: 1.875rem; }
  @media only screen and (min-width: 48em) {
    .featured-blog__right-text {
      min-width: 17.1875rem; } }

.featured-collection__container {
  max-width: 80rem;
  margin: 3.75rem auto 2.5rem auto;
  padding: 0; }
  @media only screen and (min-width: 48em) {
    .featured-collection__container {
      padding: 0 2.5rem; } }

.featured-collection__title {
  text-align: center;
  letter-spacing: 0.03em;
  margin-top: 0; }

.featured-collection {
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.25rem; }
  @media only screen and (min-width: 48em) {
    .featured-collection {
      padding: 0; } }
  .featured-collection .product-card {
    width: 25%;
    margin: 0.625rem; }
  .featured-collection .slick-list {
    padding-right: 20%; }
    @media only screen and (min-width: 48em) {
      .featured-collection .slick-list {
        padding-right: 10%; } }
    @media only screen and (min-width: 64em) {
      .featured-collection .slick-list {
        padding-right: 0; } }

.instagram {
  padding: 2.5rem 0; }

.instagram__title {
  text-align: center;
  margin: 1.875rem 0 2.5rem;
  text-transform: uppercase; }

.instagram__subtitle {
  text-align: center;
  margin: 1.875rem 0 2.5rem; }

.instagram-content__container {
  overflow: hidden; }

.instagram-content {
  margin: 0 -60%; }
  @media only screen and (min-width: 48em) {
    .instagram-content {
      margin: 0; } }

.home-seen-on__container {
  background: #fff;
  padding: 2.5rem 1.25rem; }
  @media only screen and (min-width: 48em) {
    .home-seen-on__container {
      padding: 3.75rem 2.5rem; } }

.home-seen-on {
  max-width: 80rem;
  margin: 0 auto; }

.home-seen-on__title {
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #ddc3be;
  margin: 0 0 1.25rem 0; }

.home-seen-on__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }

.home-seen-on__image-container {
  width: 9.375rem;
  margin: 1.25rem 1.875rem; }

/*================ SNIPPETS ================*/
/*================ Page Hero ================*/
.hero {
  width: 100%;
  font-size: 0; }

.hero__block-container {
  width: 100%;
  position: relative; }

.hero__image-container {
  display: none;
  width: 100%;
  height: 100vh;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  @media only screen and (min-width: 30em) {
    .hero__image-container {
      display: block; } }

.hero__mobile-container {
  display: block;
  width: 100%;
  height: 100vh;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  @media only screen and (min-width: 30em) {
    .hero__mobile-container {
      display: none; } }

.hero__mobile-container--no-mobile {
  display: block;
  width: 100%;
  height: 100vh;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.hero__content-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.25rem;
  pointer-events: none; }
  @media only screen and (min-width: 48em) {
    .hero__content-container {
      padding: 2.5rem; } }

@media only screen and (min-width: 48em) {
  .hero__top-left {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start; } }

@media only screen and (min-width: 48em) {
  .hero__top-center {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center; } }

@media only screen and (min-width: 48em) {
  .hero__top-right {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end; } }

@media only screen and (min-width: 48em) {
  .hero__middle-left {
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start; } }

@media only screen and (min-width: 48em) {
  .hero__center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center; } }

@media only screen and (min-width: 48em) {
  .hero__middle-right {
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end; } }

@media only screen and (min-width: 48em) {
  .hero__bottom-left {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start; } }

@media only screen and (min-width: 48em) {
  .hero__bottom-center {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center; }
    .hero__bottom-center .hero__content {
      padding-bottom: 2.5rem; } }

@media only screen and (min-width: 48em) {
  .hero__bottom-right {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end; } }

.hero__title {
  font-size: 2.1875rem;
  font-weight: 800;
  font-family: Cormorant, Arial, sans-serif;
  color: black;
  margin: 0 0 0.625rem; }
  @media only screen and (min-width: 48em) {
    .hero__title {
      font-size: 4.0625rem; } }

.hero__message {
  display: none;
  font-size: 0.875rem;
  line-height: 1.9;
  margin: 0 0 0.625rem; }
  @media only screen and (min-width: 48em) {
    .hero__message {
      display: block; } }

.hero__message--mobile {
  font-size: 0.875rem;
  line-height: 1.9;
  margin: 0 0 0.625rem; }
  @media only screen and (min-width: 48em) {
    .hero__message--mobile {
      display: none; } }

.hero__message--no-mobile {
  font-size: 0.875rem;
  line-height: 1.9;
  margin: 0 0 0.625rem; }

.hero__content {
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .hero__content {
      width: 50%; } }

.hero__content--left {
  text-align: left; }

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

.hero__content--right {
  text-align: right; }

.hero__btn {
  pointer-events: auto;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  padding: 0.625rem 2.5rem; }

.page-text-with-slider {
  width: 100%;
  height: auto;
  min-height: 100vh; }
  @media only screen and (min-width: 48em) {
    .page-text-with-slider {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      padding: 1.25rem;
      padding-right: 0; } }

.page-text-with-slider__content {
  width: 100%;
  padding: 1.25rem;
  text-align: center; }
  @media only screen and (min-width: 48em) {
    .page-text-with-slider__content {
      width: 30%;
      text-align: left; } }

.page-text-with-slider__title {
  font-size: 1.5625rem; }
  @media only screen and (min-width: 48em) {
    .page-text-with-slider__title {
      font-size: 2.1875rem; } }

.page-text-with-slider__text {
  font-size: 0.875rem;
  line-height: 1.9; }

.page-text-with-slider__slides {
  width: 100%; }
  .page-text-with-slider__slides .slick-track {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .page-text-with-slider__slides .slick-slide {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.5;
    margin: 0 1.25rem;
    height: inherit; }
  .page-text-with-slider__slides .slick-slide.slick-current {
    opacity: 1; }
  @media only screen and (min-width: 48em) {
    .page-text-with-slider__slides {
      width: 70%; } }

.page-text-with-slider__slide-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  border-radius: 0.3125rem; }
  @media only screen and (min-width: 48em) {
    .page-text-with-slider__slide-container {
      max-width: 31.25rem;
      min-width: 18.125rem; } }

.page-text-with-slider__slide-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  line-height: 1.9;
  padding: 1.25rem;
  background-color: #ddc3be; }

.page-text-with-slider__slide-title-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  height: 0px; }

.page-text-with-slider__slide-title {
  color: #fbfbfb;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: left;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .page-text-with-slider__slide-title {
      font-size: 3.75rem; } }

.page-text-with-slider__slide-text {
  text-align: left;
  margin-top: 0; }

.page-eye-shape-slider__buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  padding: 1.25rem;
  width: 100%; }
  .page-eye-shape-slider__buttons .slick-prev {
    margin-right: 0.625rem; }
  .page-eye-shape-slider__buttons .slick-next {
    margin-left: 0.625rem; }
  .page-eye-shape-slider__buttons .slick-prev, .page-eye-shape-slider__buttons .slick-next {
    font-size: 0;
    line-height: 0;
    position: unset;
    display: block;
    width: 2.8125rem;
    height: 2.8125rem;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent; }
  @media only screen and (min-width: 48em) {
    .page-eye-shape-slider__buttons {
      margin-top: 3.75rem; } }

.page-text-with-images {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 0;
  overflow: auto; }
  @media only screen and (min-width: 48em) {
    .page-text-with-images {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      padding: 1.25rem; } }

.page-text-with-images__column-2 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  order: 1;
  width: 100%;
  overflow: hidden;
  padding: 0.625rem; }
  @media only screen and (min-width: 48em) {
    .page-text-with-images__column-2 {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      order: 3;
      width: 25%;
      padding-left: 0; } }

.page-text-with-images__content {
  order: 2;
  width: 100%;
  padding: 1.25rem; }
  @media only screen and (min-width: 48em) {
    .page-text-with-images__content {
      width: 30%; } }

.page-text-with-images__column-1 {
  order: 3;
  width: 100%;
  padding: 1.25rem; }
  @media only screen and (min-width: 48em) {
    .page-text-with-images__column-1 {
      order: 2;
      width: 45%;
      padding-right: 0; } }

.page-text-with-images__title {
  font-size: 1.5625rem;
  margin: 1.25rem;
  text-align: center; }
  @media only screen and (min-width: 48em) {
    .page-text-with-images__title {
      font-size: 2.1875rem;
      text-align: left;
      margin-left: 0; } }

.page-text-with-images__text {
  margin: 0.625rem 0;
  font-size: 0.875rem;
  line-height: 1.9; }

.page-text-with-images__images--large {
  width: 100%;
  height: auto; }

.page-text-with-images__images--small {
  width: 50%;
  padding: 0.625rem;
  height: auto;
  overflow: hidden; }
  @media only screen and (min-width: 48em) {
    .page-text-with-images__images--small {
      width: 100%; }
      .page-text-with-images__images--small:first-child {
        padding-bottom: 0.3125rem; }
      .page-text-with-images__images--small:last-child {
        padding-top: 0.3125rem; } }

.page-text-with-images__buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-top: 1.875rem; }
  @media only screen and (min-width: 30em) and (max-width: 47.99em) {
    .page-text-with-images__buttons {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  @media only screen and (min-width: 48em) {
    .page-text-with-images__buttons {
      display: block; } }
  .page-text-with-images__buttons .btn {
    padding: 0.625rem 0;
    margin: 0; }
    @media only screen and (min-width: 30em) and (max-width: 47.99em) {
      .page-text-with-images__buttons .btn {
        width: auto;
        flex: 1; }
        .page-text-with-images__buttons .btn:first-child {
          margin-right: 1.25rem; } }
    @media only screen and (min-width: 30em) {
      .page-text-with-images__buttons .btn {
        padding: 0.625rem 0.625rem; } }
    @media only screen and (min-width: 48em) {
      .page-text-with-images__buttons .btn:first-child {
        margin-bottom: 1.25rem; } }

.back__btn {
  pointer-events: auto;
  font-size: 0.875rem;
  padding: 0.625rem 2.5rem;
  border: 0.125rem solid black;
  background-color: transparent; }

.page-text-with-collection {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-bottom: 1.25rem; }
  @media only screen and (min-width: 48em) {
    .page-text-with-collection {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      padding: 1.25rem; } }

.page-text-with-collection__content {
  width: 100%;
  padding: 1.25rem;
  text-align: center; }
  @media only screen and (min-width: 48em) {
    .page-text-with-collection__content {
      width: 40%;
      text-align: left; } }

.page-text-with-collection__collection {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  width: 100%; }
  .page-text-with-collection__collection .collection-content {
    padding: 0; }
  .page-text-with-collection__collection .collection-products__product-card {
    padding: 1.25rem; }
  @media only screen and (min-width: 48em) {
    .page-text-with-collection__collection {
      width: 60%; } }

@media only screen and (min-width: 48em) {
  .page-text-with-collection__product-container {
    width: 100%; } }

/*================ TEMPLATES ================*/
.login {
  max-width: 80rem;
  text-align: center;
  margin: 0 auto;
  padding: 0 1.25rem; }
  @media only screen and (min-width: 48em) {
    .login {
      padding: 0;
      text-align: left; } }
  .login .login__subheader {
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-top: 0; }
    @media only screen and (min-width: 48em) {
      .login .login__subheader {
        font-size: 1.5rem;
        margin-top: initial; } }
  .login .errors {
    width: 100%;
    color: #e74c3c; }
    .login .errors ul {
      padding: 0;
      list-style: none; }

.login__container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  margin: 3.75rem 0; }

.login__register,
.login__current,
.login__create {
  width: 100%; }
  .login__register input,
  .login__current input,
  .login__create input {
    padding: 1.25rem 1.25rem;
    width: 100%;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 0.875rem; }
  .login__register button,
  .login__current button,
  .login__create button {
    padding: 1.25rem 1.25rem; }
  @media only screen and (min-width: 48em) {
    .login__register,
    .login__current,
    .login__create {
      width: 50%;
      padding: 0 5rem; } }

.login__login {
  border-bottom: #ddc3be solid 0.1875rem;
  padding-bottom: 2.5rem; }
  @media only screen and (min-width: 48em) {
    .login__login {
      border-bottom: none;
      padding-bottom: 0; } }

.login__register {
  padding-top: 2.5rem; }
  .login__register label {
    display: none; }
  @media only screen and (min-width: 48em) {
    .login__register {
      padding-top: 0;
      border-left: #ddc3be solid 0.1875rem; } }

.login__reset-success,
.reset-password-success,
.login__recover {
  display: none; }

.login__form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.login-form__input,
.login__btn {
  width: 100%;
  margin-bottom: 1.25rem; }

.login__recover-btn {
  margin-left: auto;
  text-decoration: none; }

.login__recover-btn:hover,
.login__recover-btn:focus {
  outline: none;
  text-decoration: underline;
  color: #ddc3be; }

.login__last-input {
  width: 100%;
  margin-bottom: 0; }

.login__disclaimer {
  margin: 0.625rem 0 1.875rem;
  font-size: 0.75rem;
  text-align: right; }

.login-btn {
  border-radius: 0.3125rem; }

.login-btn--pink {
  background-color: #ddc3be;
  color: black;
  border-color: transparent; }

.login-btn:hover,
.login-btn:focus {
  outline: none; }

.login-btn--pink:hover,
.login-btn--pink:focus {
  background-color: #fbfbfb;
  color: #ddc3be;
  border-color: #ddc3be;
  outline: none; }

.login-form__cancel {
  color: #ddc3be;
  cursor: pointer; }

.shopify-challenge__button {
  display: block;
  margin: 0 auto 1.25rem;
  font-size: 0.875rem;
  padding: 0.625rem 2.5rem;
  font-weight: bold; }
  @media only screen and (min-width: 48em) {
    .shopify-challenge__button {
      margin: 0 0 1.25rem; } }

.shopify-challenge__container {
  padding: 5rem 0 5rem; }

.blog-banner {
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .blog-banner {
      padding-bottom: 1.25rem; } }
  .blog-banner img {
    width: 100%; }

.blog__blog-each-title {
  font-family: Cormorant, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em; }

.blog-each__content-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media only screen and (min-width: 48em) {
    .blog-each__content-container {
      padding: 0 1.25rem; } }

.blog-each__content {
  width: 100%;
  padding: 0.625rem 1.25rem; }
  @media only screen and (min-width: 48em) {
    .blog-each__content {
      width: 50%;
      padding: 1.25rem; } }
  @media only screen and (min-width: 64em) {
    .blog-each__content {
      width: 33.33%; } }

.blog-each__content-inner {
  box-shadow: 0 0.125rem 0.25rem 0 #eeeeee;
  border-radius: 0.3125rem; }

.blog-each__content-image-container {
  display: block;
  text-decoration: none;
  color: black; }
  @media only screen and (min-width: 48em) {
    .blog-each__content-image-container:hover {
      opacity: 0.5; } }
  .blog-each__content-image-container:focus {
    outline: 0;
    opacity: 0.5; }
  .blog-each__content-image-container img {
    width: 100%; }

.blog-each__content-details {
  padding: 1.875rem; }
  @media only screen and (min-width: 48em) {
    .blog-each__content-details {
      padding: 1.875rem 2.5rem; } }

.blog-each__content-details-date {
  color: #999999;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.6;
  font-size: 0.75rem; }
  @media only screen and (min-width: 48em) {
    .blog-each__content-details-date {
      font-size: 0.875rem; } }

.blog-each__content-details-title {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.625rem 0;
  font-size: 1rem; }
  @media only screen and (min-width: 48em) {
    .blog-each__content-details-title {
      font-size: 1.125rem; } }

.blog-each__content-details-excerpt {
  color: #999999;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  font-size: 0.75rem; }
  @media only screen and (min-width: 48em) {
    .blog-each__content-details-excerpt {
      font-size: 0.875rem; } }

.blog-each__content-details-button {
  display: inline-block;
  color: black;
  text-decoration: none;
  border-radius: 0.3125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: transparent;
  border: 0.0625rem solid black;
  margin-top: 1.66667rem;
  font-weight: bold;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem; }
  @media only screen and (min-width: 48em) {
    .blog-each__content-details-button {
      padding: 0.3125rem 1.25rem;
      font-size: 0.875rem; } }
  .blog-each__content-details-button:focus {
    outline: 0; }

.blog__blog-each-view-all {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }
  .blog__blog-each-view-all a {
    padding: 0.625rem 2.5rem;
    border-radius: 0.3125rem;
    margin: 2.5rem 0; }
    .blog__blog-each-view-all a:focus {
      outline: 0; }

.blog-pagination {
  margin: 2.5rem 0; }

.equal-columns--clear {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .equal-columns--clear .one-third {
    padding: 0.625rem 0.3125rem;
    width: 100%; }
    @media only screen and (min-width: 48em) {
      .equal-columns--clear .one-third {
        padding: 1.25rem;
        width: 33%; } }
  .equal-columns--clear .one-half {
    width: 50%;
    padding: 0.625rem 0.3125rem;
    text-align: center; }
    @media only screen and (min-width: 48em) {
      .equal-columns--clear .one-half {
        padding: 1.25rem; } }
    .equal-columns--clear .one-half > div {
      margin: 0 auto; }

.article {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem; }
  @media only screen and (min-width: 64em) {
    .article {
      padding: 0 2.5rem; } }
  .article h3 {
    margin: 1.875rem 0; }
  .article .rte {
    padding: 3.75rem 0;
    border-top: 0.125rem solid #ddc3be;
    line-height: 2; }

.article-image {
  margin: 1.875rem 0;
  width: 100%; }
  .article-image img {
    width: 100%; }

.article__header-blog {
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.75rem; }

.article__header-title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: Montserrat, Arial, sans-serif;
  margin: 0; }

.article__header-date {
  color: #999999;
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  margin: 20px 0; }

.account {
  padding: 0 1.25rem; }
  @media only screen and (min-width: 48em) {
    .account {
      padding: 0 2.5rem; } }

.account__accordion-header {
  display: block;
  width: 100%;
  padding: 1.875rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  background-color: transparent;
  border: none; }
  .account__accordion-header::after {
    content: '+';
    float: right; }
  @media only screen and (min-width: 48em) {
    .account__accordion-header {
      display: none; } }

.account__accordion-header[aria-expanded="true"]::after {
  content: '-';
  float: right; }

.account__title {
  text-transform: capitalize;
  font-size: 1.75rem;
  font-weight: 500;
  font-family: Montserrat, Arial, sans-serif;
  border: 0;
  border-bottom: 0.25rem solid #ddc3be;
  text-align: center;
  margin: 4.375rem 0 0;
  background-color: transparent;
  padding-bottom: 1.875rem; }
  @media only screen and (min-width: 48em) {
    .account__title {
      text-align: left;
      margin: 4.375rem 0 0; } }

.account__accordion-content[aria-hidden="true"] {
  display: none; }

.account__main {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0; }

.account__accordion {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }
  @media only screen and (min-width: 48em) {
    .account__accordion {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      margin-bottom: 3.75rem; } }
  .account__accordion .account__subheader {
    padding: 0;
    margin: 0 0 1.875rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    display: none; }
    @media only screen and (min-width: 48em) {
      .account__accordion .account__subheader {
        margin: 1.875rem 0;
        font-size: 1.5rem;
        text-align: left;
        display: block;
        font-size: 1.25rem; } }

.account__table-container {
  width: 100%;
  overflow: scroll;
  display: block;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem; }

.account__table,
.order__table {
  width: 100%;
  border-collapse: collapse; }
  .account__table th,
  .order__table th {
    background-color: #ddc3be;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    text-align: center; }
  .account__table td,
  .order__table td {
    font-size: 0.875rem;
    text-align: center;
    padding: 0.625rem 1.25rem; }
    .account__table td a,
    .order__table td a {
      text-decoration: none; }
      .account__table td a:hover, .account__table td a:focus,
      .order__table td a:hover,
      .order__table td a:focus {
        text-decoration: underline;
        color: #ddc3be;
        outline: none; }
  @media only screen and (min-width: 48em) {
    .account__table,
    .order__table {
      display: inline-table; } }

table, th, td {
  border: 1px solid black; }

.account__order-history {
  width: 100%;
  margin-bottom: 2.5rem;
  border-bottom: 0.0625rem solid black; }
  @media only screen and (min-width: 48em) {
    .account__order-history {
      width: 75%;
      border-bottom: none; } }

.account__information {
  width: 100%;
  padding-left: 0;
  text-align: center;
  border-bottom: 0.0625rem solid black; }
  @media only screen and (min-width: 48em) {
    .account__information {
      width: 25%;
      padding-left: 2.5rem;
      text-align: left;
      border-bottom: none; } }

.account__owner-information {
  font-size: 1rem; }
  .account__owner-information p {
    margin: 0.625rem 0; }

.account__owner-name {
  font-weight: 500;
  margin-top: 0; }

.account-btn {
  padding: 0.625rem 2.5rem;
  margin: 1.875rem 0;
  border-radius: 0.3125rem; }
  @media only screen and (min-width: 48em) {
    .account-btn {
      margin-bottom: 0; } }

.account-btn:focus {
  outline: none; }

@media only screen and (min-width: 48em) {
  .account-order__overview {
    padding-right: 2.5rem; } }

.account-order__order-container {
  width: 100%;
  border-bottom: 0.0625rem solid black; }
  @media only screen and (min-width: 48em) {
    .account-order__order-container {
      width: 30%;
      border-bottom: none; } }

.account-order__details-container {
  width: 100%;
  border-bottom: 0.0625rem solid black; }
  @media only screen and (min-width: 48em) {
    .account-order__details-container {
      width: 70%;
      border-bottom: none; } }

.account-order__additional {
  display: block;
  margin: 2.5rem 0; }

.account__addresses-link {
  text-decoration: none; }
  .account__addresses-link:hover, .account__addresses-link:focus {
    text-decoration: underline;
    color: #ddc3be;
    outline: none; }

.account__accordion-header:focus {
  outline: none;
  color: #c4cfda; }

@media only screen and (min-width: 48em) {
  .account__order {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

.account__subheader {
  padding: 0;
  margin: 0 0 1.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  display: none; }
  @media only screen and (min-width: 48em) {
    .account__subheader {
      margin: 1.875rem 0;
      font-size: 1.5rem;
      text-align: left;
      display: block;
      font-size: 1.25rem; } }

.order__table {
  width: 100%;
  border-spacing: 0;
  line-height: 1; }

.order__table thead th {
  text-align: center;
  padding: 1.25rem 0; }
  .order__table thead th:not(:first-child):not(:last-child) {
    padding: 1.25rem 0.625rem; }
  .order__table thead th.order-table__money {
    text-align: center; }
  .order__table thead th.order-table__qty {
    text-align: center; }

.order__table td {
  padding: 1.25rem 0; }
  .order__table td:not(:first-child):not(:last-child) {
    padding: 1.25rem 0.625rem; }
  .order__table td.order-table__money {
    text-align: center; }
  .order__table td.order-table__qty {
    text-align: center; }

.order__table a {
  text-decoration: underline; }
  .order__table a:focus {
    color: #999999; }
  @media only screen and (min-width: 64em) {
    .order__table a:hover {
      color: #999999; } }

.order-table__line-item-details {
  list-style: none;
  padding: 0; }

@media only screen and (min-width: 48em) {
  .account-address__accordion {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }
.account-address__accordion .account__subheader {
  display: none; }
  @media only screen and (min-width: 48em) {
    .account-address__accordion .account__subheader {
      display: block; } }
.account-address__accordion .btn {
  padding: 0.625rem;
  margin: 1.25rem 0; }

@media only screen and (min-width: 48em) {
  .account-address__accordion-single {
    border-bottom: 0;
    width: 50%; } }
@media only screen and (min-width: 48em) {
  .account-address__accordion-single:first-child {
    border-top: 0;
    padding-right: 2.5rem; } }
.account-address__accordion-single .account__subheader {
  text-align: center; }
  @media only screen and (min-width: 48em) {
    .account-address__accordion-single .account__subheader {
      text-align: left; } }

.account-address__listing .btn {
  margin-right: 0.625rem; }

.account__addresses form {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
.account__addresses input {
  width: 100%;
  display: block;
  margin-bottom: 0.625rem; }
.account__addresses select {
  display: block;
  width: 100%;
  margin-bottom: 0.625rem; }

#address_default_address_new {
  width: initial;
  margin-right: 0.625rem; }

.account-address__overview {
  margin: 1.25rem 0;
  text-align: center; }
  @media only screen and (min-width: 48em) {
    .account-address__overview {
      text-align: left;
      margin: 2.5rem 0; } }

.AddressPrivnceNew__container {
  width: 100%; }

.account-address__addresses {
  list-style: none;
  padding: 0; }

.account-address__half-size-container {
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .account-address__half-size-container {
      width: 50%; } }

@media only screen and (min-width: 48em) {
  .account-address__half-size-container:nth-child(even) {
    padding-left: 0.625rem; } }

@media only screen and (min-width: 48em) {
  .account-address__half-size-container:nth-child(odd) {
    padding-right: 0.625rem; } }

.address-edit-toggle {
  cursor: pointer;
  text-decoration: none; }

.account-address__listing-container,
.account-address__new-address-container {
  border-bottom: 0.0625rem solid black; }
  @media only screen and (min-width: 48em) {
    .account-address__listing-container,
    .account-address__new-address-container {
      border-bottom: none; } }

.account__return {
  text-decoration: none;
  color: #ddc3be; }
  .account__return:hover, .account__return:focus {
    outline: none;
    color: #ddc3be;
    text-decoration: underline; }

.btn--create-address:hover,
.btn--create-address:focus,
.btn--delete-address:hover,
.btn--delete-address:focus {
  outline: none; }

.template-collection.active {
  overflow: hidden; }
  .template-collection.active:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2; }

.collection-banner {
  min-height: 40vh;
  position: relative; }
  @media only screen and (min-width: 48em) {
    .collection-banner {
      min-height: 55vh; } }

.collection-banner__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1.25rem;
  width: 100%;
  text-align: center;
  color: black; }
  .collection-banner__title h1 {
    font-family: "Grayscale Signature", Arial, sans-serif;
    font-size: 45px;
    margin: 0;
    line-height: 84px;
    font-weight: 400; }
    @media only screen and (min-width: 48em) {
      .collection-banner__title h1 {
        font-size: 84px;
        line-height: 157px; } }
  .collection-banner__title .collection-banner__description {
    max-width: 900px;
    margin: 0 auto; }
    @media only screen and (min-width: 48em) {
      .collection-banner__title .collection-banner__description {
        font-size: 1.5rem; } }
  .collection-banner__title.collection-banner__title--no-image {
    position: relative;
    color: black;
    top: initial;
    left: initial;
    transform: none; }
    .collection-banner__title.collection-banner__title--no-image h1 {
      color: black; }
    .collection-banner__title.collection-banner__title--no-image .collection-banner__description {
      color: black; }

.collection-content {
  padding: 0 12px; }
  @media only screen and (min-width: 48em) {
    .collection-content {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 2.5rem 0.625rem; } }

.collection-content__collection-filters {
  width: 94%;
  padding: 1.25rem;
  transition-duration: 0.3s;
  position: fixed;
  top: 145px;
  bottom: 0;
  left: 3%;
  background: #ffff;
  border: 1px solid black;
  z-index: 10;
  transform: translateX(-100%);
  display: none;
  overflow-y: auto; }
  @media only screen and (min-width: 48em) {
    .collection-content__collection-filters {
      position: relative;
      z-index: 0;
      width: 25%;
      padding: 30px 0 0 1.875rem;
      transform: translateX(0);
      display: block;
      border: none;
      top: 0; } }
  @media only screen and (min-width: 64em) {
    .collection-content__collection-filters {
      width: 20%;
      padding: 30px 0.625rem 0 1.875rem; } }
  .collection-content__collection-filters.active {
    transform: translateX(0);
    display: block; }

.collection-content__collection-product-container {
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .collection-content__collection-product-container {
      width: 75%; } }
  @media only screen and (min-width: 64em) {
    .collection-content__collection-product-container {
      width: 80%; } }

.collection-content__collection-products {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0; }

.collection-products__product-card {
  width: 100%;
  padding: 1.25rem; }
  @media only screen and (min-width: 30em) {
    .collection-products__product-card {
      width: 50%; } }
  @media only screen and (min-width: 48em) {
    .collection-products__product-card {
      padding: 1.875rem; } }
  @media only screen and (min-width: 64em) {
    .collection-products__product-card {
      width: 33.33%; } }

.products__product-card {
  width: 100%;
  padding: 1.25rem; }
  @media only screen and (min-width: 30em) {
    .products__product-card {
      width: 50%; } }
  @media only screen and (min-width: 48em) {
    .products__product-card {
      padding: 1.875rem; } }
  @media only screen and (min-width: 64em) {
    .products__product-card {
      width: 50%; } }

.collection-content__filter-menu {
  text-align: center;
  display: flex;
  font-size: 16px; }

.menu-trigger {
  font-weight: 300;
  padding: 0 5px; }

.menu-trigger:hover {
  cursor: pointer; }

.pt-display-dropdown .menu-trigger::after {
  content: url(//cdn.shopify.com/s/files/1/0173/4842/t/297/assets/arrow.svg?v=91077765485397706831680184422);
  position: relative;
  left: 5px;
  top: -2px; }

.filter-group-sort-orders .scroll-content .nav-sort-orders {
  position: absolute;
  width: 200px;
  right: 0px;
  z-index: 100;
  background: white;
  border: 1px solid black;
  top: 25px; }

.filter-group li:hover a {
  color: black !important; }

.filter-group li.inactive {
  opacity: 30% !important; }

.nav-collection .collection-name a {
  cursor: pointer !important; }

.filter-group .inactive a:hover {
  font-weight: 300 !important; }

.filter-group .active a:hover i.check-icon {
  color: #D8BBB6 !important; }

.filter-group .inactive a:hover i-check-icon {
  color: #888 !important; }

.inactive i.check-icon::before {
  content: "\e808"; }

.inactive .collection-name a:hover i.check-icon::before {
  content: "\e808"; }

.filters-title {
  margin-top: 0;
  text-align: center;
  margin-bottom: 0; }
  @media only screen and (min-width: 48em) {
    .filters-title {
      text-align: left; } }

.collection-content__filter-trigger.collection-content__filter-trigger-close {
  border: none;
  margin: 0;
  padding: 0; }

.flex-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px; }
  @media only screen and (min-width: 48em) {
    .flex-buttons {
      display: none; } }

.pt-apply {
  background-color: #ddc3be; }

.pt-apply, .pt-clear {
  display: flex;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: none;
  letter-spacing: 2px;
  padding: 10px;
  margin-top: 20px;
  margin-left: 0;
  width: 100%;
  font-weight: 700; }

.collection-content__filter-trigger {
  width: 100%;
  display: flex;
  background: white;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 16px;
  border: 1px solid black;
  margin-top: 14px;
  margin-bottom: 30px;
  height: 50px;
  font-size: 16px;
  cursor: pointer; }
  @media only screen and (min-width: 48em) {
    .collection-content__filter-trigger {
      display: none; } }
  .collection-content__filter-trigger.collection-content__filter-trigger-close {
    display: block;
    text-align: right;
    font-size: 2.0625rem;
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto; }
    @media only screen and (min-width: 48em) {
      .collection-content__filter-trigger.collection-content__filter-trigger-close {
        display: none; } }
    .collection-content__filter-trigger.collection-content__filter-trigger-close svg {
      height: 1.25rem;
      padding-top: 0; }
  .collection-content__filter-trigger svg {
    height: 1.66667rem;
    padding-top: 0.3125rem;
    margin-right: 0.3125rem; }
  .collection-content__filter-trigger .icon-plus {
    width: 11px;
    margin-left: 5px; }

.filter-sort {
  position: relative;
  width: auto; }
  .filter-sort svg {
    position: absolute;
    top: 50%;
    right: 0.625rem;
    transform: translateY(-50%);
    pointer-events: none;
    width: 0.625rem; }
  .filter-sort::-ms-expand {
    display: none; }

.sort-by__label {
  font-weight: 500; }

.collection-bottom-banner__container {
  background: #c4cfda; }

.collection-bottom-banner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.875rem;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media only screen and (min-width: 48em) {
    .collection-bottom-banner {
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      text-align: left;
      padding: 1.25rem 3.75rem; } }

.collection-bottom-banner__image-container {
  min-width: 5rem;
  margin: 0 auto 1.25rem auto; }
  @media only screen and (min-width: 48em) {
    .collection-bottom-banner__image-container {
      margin: 0; } }

.collection-bottom-banner__details {
  margin-left: 0; }
  @media only screen and (min-width: 48em) {
    .collection-bottom-banner__details {
      margin-left: 3.75rem; } }

.collection-bottom-banner__details-title {
  color: #fbfbfb;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 0.3125rem 0;
  letter-spacing: 0.13em;
  text-transform: uppercase; }
  @media only screen and (min-width: 48em) {
    .collection-bottom-banner__details-title {
      font-size: 1.5rem; } }

.collection-bottom-banner__details-description {
  color: #fbfbfb;
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0.07313em;
  line-height: 1.43;
  font-weight: 500; }

.collection-content__paragraph-container {
  width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 0 5px;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (min-width: 48em) {
    .collection-content__paragraph-container {
      width: 87.7%;
      padding: 0;
      margin-top: 30px; } }

.filter-menu__popup__trigger {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 10px 10px;
  margin: 35px 0;
  text-decoration: none; }
  @media only screen and (min-width: 48em) {
    .filter-menu__popup__trigger {
      display: none; } }

.collection-content__paragraph {
  padding: 0 1.875rem; }

.product-top {
  max-width: 80rem;
  margin: 0 auto 1.25rem auto;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media only screen and (min-width: 64em) {
    .product-top {
      margin-bottom: 2.5rem;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      padding: 0 2.5rem; } }

.product-insta {
  max-width: 80rem;
  margin: 0 auto 1.25rem auto;
  padding: 0; }
  @media only screen and (min-width: 64em) {
    .product-insta {
      margin-bottom: 2.5rem;
      padding: 0 2.5rem; } }

.product-images {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 0; }
  @media only screen and (min-width: 64em) {
    .product-images {
      width: 60%; } }

.product-image__featured-image {
  position: relative;
  padding: 0 2.5rem; }

.featured-image__zoom {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 0; }

.featured-image__zoom-image {
  display: none;
  width: 100%;
  height: 100%;
  transition: transform .2s ease-out;
  z-index: 1; }
  .featured-image__zoom-image.active {
    display: block; }

.product-image__thumbnail-image {
  display: none;
  position: relative;
  padding: 0; }
  @media only screen and (min-width: 64em) {
    .product-image__thumbnail-image {
      padding: 0 3.75rem;
      display: block; } }

.product-image__thumbnail-image-prev,
.product-image__thumbnail-image-next,
.product-image__featured-image-prev,
.product-image__featured-image-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  background: none;
  border: none;
  padding: 0; }
  @media only screen and (min-width: 64em) {
    .product-image__thumbnail-image-prev:hover svg,
    .product-image__thumbnail-image-next:hover svg,
    .product-image__featured-image-prev:hover svg,
    .product-image__featured-image-next:hover svg {
      fill: #ddc3be;
      color: #ddc3be; } }
  .product-image__thumbnail-image-prev:focus,
  .product-image__thumbnail-image-next:focus,
  .product-image__featured-image-prev:focus,
  .product-image__featured-image-next:focus {
    outline: 0; }
    .product-image__thumbnail-image-prev:focus svg,
    .product-image__thumbnail-image-next:focus svg,
    .product-image__featured-image-prev:focus svg,
    .product-image__featured-image-next:focus svg {
      fill: #ddc3be;
      color: #ddc3be; }
  .product-image__thumbnail-image-prev svg,
  .product-image__thumbnail-image-next svg,
  .product-image__featured-image-prev svg,
  .product-image__featured-image-next svg {
    width: 1.25rem;
    height: 1.25rem; }

.product-image__thumbnail-image-prev {
  left: 1.875rem; }

.product-image__thumbnail-image-next {
  right: 1.875rem; }

.product-image__featured-image-prev {
  left: 0; }

.product-image__featured-image-next {
  right: 0; }

.thumbnail-image {
  padding: 0; }
  @media only screen and (min-width: 64em) {
    .thumbnail-image {
      padding: 1.25rem 0.625rem; } }

.product-images--grid {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 75% 25%;
  grid-template-rows: repeat(9, auto); }
  .product-images--grid li:nth-child(1) {
    grid-row: 1/4;
    grid-column: 1; }
  .product-images--grid li:nth-child(2) {
    grid-row: 1;
    grid-column: 2; }
  .product-images--grid li:nth-child(3) {
    grid-row: 2;
    grid-column: 2; }
  .product-images--grid li:nth-child(4) {
    grid-row: 3;
    grid-column: 2; }
  .product-images--grid li:nth-child(5) {
    grid-row: 4/7;
    grid-column: 1/3; }
  .product-images--grid li:nth-child(6) {
    grid-row: 7/10;
    grid-column: 1/3; }

.product-info {
  width: 100%;
  padding: 1.25rem; }
  @media only screen and (min-width: 64em) {
    .product-info {
      padding: 0 0 0 1.875rem; } }

.product-info__header {
  border-bottom: 0.0625rem solid #ddc3be;
  padding-bottom: 1.875rem; }

.product-info__rating {
  margin: 0; }
  .product-info__rating .spr-badge-caption {
    font-size: 17.5px;
    letter-spacing: 0.08em; }
    .product-info__rating .spr-badge-caption a {
      display: none; }
  .product-info__rating .spr-icon-star:before,
  .product-info__rating .spr-icon:before {
    color: #ddc3be;
    font-size: 1.2rem;
    margin: 0; }

.product-info__title {
  letter-spacing: 0.03em;
  font-family: Montserrat, Arial, sans-serif;
  margin: 0.625rem 0; }

.product-info__vendor {
  letter-spacing: 0.07em;
  font-size: 0.875rem;
  margin: 0; }

.product-info__icons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid #eeeeee; }

.product-info__icons-each {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin-right: 1.875rem; }
  .product-info__icons-each svg {
    height: 1.875rem; }
    .product-info__icons-each svg.icon.cruelty-free {
      padding-bottom: 0.625rem; }

.product-info__icons-text {
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 0.06em; }

.product-info__quantity-atc {
  padding-top: 1.875rem;
  border-top: 0.0625rem solid #eeeeee;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 64em) {
    .product-info__quantity-atc {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .product-info__quantity-atc .js-qty {
    height: 3.125rem;
    line-height: 3.125rem;
    width: 33.33%;
    border-radius: 0.3125rem;
    border: 0.0625rem solid black;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1.25rem;
    max-width: 9.375rem;
    margin-bottom: 1.66667rem; }
    @media only screen and (min-width: 64em) {
      .product-info__quantity-atc .js-qty {
        max-width: auto;
        margin-bottom: 0; } }
  .product-info__quantity-atc .js-qty__num {
    width: 35%; }
  .product-info__quantity-atc .js-qty__adjust {
    width: 37.5%; }

.product-info__atc {
  border-radius: 0.3125rem;
  height: 3.125rem;
  line-height: 3.125rem;
  padding: 0 0.625rem;
  width: 100%; }
  @media only screen and (min-width: 64em) {
    .product-info__atc {
      width: 66.66%; } }
  .product-info__atc span {
    font-weight: bold;
    letter-spacing: 0.07em; }

.product-info__form-afterpay-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.25rem 0 1.875rem;
  border-bottom: 0.0625rem solid #eeeeee; }

.product__variant-price {
  order: 1; }

.product-form {
  order: 2; }

.afterpay-paragraph {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.5;
  order: 3; }

#add-item-form {
  order: 4; }

#product__afterpay {
  margin-bottom: 1.875rem; }

.afterpay-logo {
  width: 4.3rem !important;
  height: auto; }

.afterpay-instalments {
  font-weight: normal; }

.afterpay-link {
  color: black; }
  @media only screen and (min-width: 64em) {
    .afterpay-link:hover {
      font-weight: bold;
      color: #ddc3be; } }
  .afterpay-link:focus {
    outline: 0;
    color: #ddc3be;
    font-weight: bold; }

.selector-wrapper {
  display: none;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  color: #999999; }
  .selector-wrapper select {
    color: #999999;
    border: 0;
    border-bottom: 0.0625rem solid #999999;
    padding: 0 1.66667rem 0.15625rem 0.3125rem;
    font-size: 0.75rem; }
    @media only screen and (min-width: 48em) {
      .selector-wrapper select:hover {
        border-bottom: 0.0625rem solid #ddc3be; } }
    .selector-wrapper select:focus {
      outline: 0;
      border-bottom: 0.0625rem solid #ddc3be; }

select.rc_select {
  font-size: 0.75rem !important;
  border: 0;
  border-bottom: 0.0625rem solid #999999;
  padding: 0 1.66667rem 0.15625rem 0.3125rem;
  color: #999999; }
  @media only screen and (min-width: 48em) {
    select.rc_select:hover {
      border-bottom: 0.0625rem solid #ddc3be; } }
  select.rc_select:focus {
    outline: 0;
    border-bottom: 0.0625rem solid #ddc3be; }

.product-price--hide {
  display: none; }

#rc_container div.rc_block__type--active {
  background: transparent; }

#rc_container div.rc_block__type {
  padding: 0.625rem 0;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.07em; }
  #rc_container div.rc_block__type span.money,
  #rc_container div.rc_block__type .rc_price {
    font-size: 1.375rem !important;
    font-weight: 500 !important;
    margin-right: 0.3125rem; }
  #rc_container div.rc_block__type .rc_label__autodeliver,
  #rc_container div.rc_block__type .rc_label__onetime {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.07em; }
  #rc_container div.rc_block__type .rc_autodeliver_options {
    width: 100%; }
  #rc_container div.rc_block__type .rc_label__deliver_every {
    padding: 0 0 0 1.875rem !important; }
  #rc_container div.rc_block__type input.rc_radio {
    margin-right: 0.625rem;
    cursor: pointer;
    position: relative; }
    #rc_container div.rc_block__type input.rc_radio:after {
      content: '';
      z-index: 2;
      position: absolute;
      background: #f0f0f0;
      border-radius: 50%;
      width: 0.625rem;
      height: 0.625rem;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    #rc_container div.rc_block__type input.rc_radio:before {
      position: absolute;
      content: '';
      top: 50%;
      left: 50%;
      z-index: 1;
      transform: translate(-50%, -50%);
      background: #fbfbfb;
      border: 1px solid black;
      border-radius: 50%;
      width: 1.25rem;
      height: 1.25rem; }

#rc_container div.rc_block__type.rc_block__type--active input.rc_radio:after {
  background: #cd7766; }

.rc_popup {
  display: none !important; }

.product-description__accordion-each {
  border-bottom: 0.0625rem solid #eeeeee; }

.product-description__accordion-header {
  background: none;
  border: 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  .product-description__accordion-header[aria-expanded=false]:before {
    content: '\002B';
    font-size: 1.125rem;
    padding-right: 0.3125rem; }
  .product-description__accordion-header[aria-expanded=true]:before {
    content: '\2212';
    font-size: 1.125rem;
    padding-right: 0.3125rem; }
  @media only screen and (min-width: 64em) {
    .product-description__accordion-header:hover {
      font-weight: bold;
      color: #ddc3be; } }
  .product-description__accordion-header:focus {
    outline: 0;
    font-weight: bold;
    color: #ddc3be; }

.product-description__accordion-content {
  padding-left: 0.625rem;
  line-height: 1.4;
  padding-bottom: 0.625rem; }
  .product-description__accordion-content p {
    font-size: 0.875rem; }
  .product-description__accordion-content td {
    padding: 0.625rem 1.875rem 0.625rem 0;
    font-size: 0.875rem; }

.product-info__social-sharing .social-sharing {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  margin: 1.875rem 0; }
  .product-info__social-sharing .social-sharing .social-sharing__each {
    margin: 0 0.625rem; }
    @media only screen and (min-width: 64em) {
      .product-info__social-sharing .social-sharing .social-sharing__each:hover svg {
        color: #ddc3be; } }
    .product-info__social-sharing .social-sharing .social-sharing__each:focus {
      outline: 0; }
      .product-info__social-sharing .social-sharing .social-sharing__each:focus svg {
        color: #ddc3be; }
    .product-info__social-sharing .social-sharing .social-sharing__each svg {
      color: #999999;
      width: 1.25rem;
      height: 1.25rem; }
  .product-info__social-sharing .social-sharing .social-sharing__label {
    color: black;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875rem; }

.social-sharing {
  margin-bottom: 1.25rem; }
  .social-sharing .icon {
    width: 1.5625rem;
    height: 1.5625rem;
    margin-right: 1.25rem; }

.product__variant-price {
  font-weight: 500;
  text-align: left;
  margin-bottom: 1.25rem; }

.product-bundle .product-top {
  margin-bottom: 0; }
  @media only screen and (min-width: 64em) {
    .product-bundle .product-top {
      margin-bottom: 2.5rem; } }
.product-bundle .product-info {
  padding-bottom: 0; }
  @media only screen and (min-width: 64em) {
    .product-bundle .product-info {
      padding-bottom: 1.25rem; } }
.product-bundle .social-sharing {
  margin-bottom: 1.25rem; }
  @media only screen and (min-width: 64em) {
    .product-bundle .social-sharing {
      margin-bottom: 1.875rem; } }
@media only screen and (min-width: 64em) {
  .product-bundle .product-image__thumbnail-image-container {
    display: none; } }
@media only screen and (min-width: 64em) {
  .product-bundle .product-image__featured-image {
    padding-left: 0;
    padding-right: 0; } }
.product-bundle .product-images {
  width: 100%; }
  @media only screen and (min-width: 64em) {
    .product-bundle .product-images {
      width: 50%;
      margin-right: 2.5rem; } }
.product-bundle .product-image__arrow-down {
  display: none; }
  @media only screen and (min-width: 64em) {
    .product-bundle .product-image__arrow-down {
      display: block;
      position: relative;
      text-align: center;
      -webkit-animation: bounce 2s infinite;
      /* Safari 4.0 - 8.0 */
      animation: bounce 2s infinite;
      padding-top: 1.25rem; } }
  .product-bundle .product-image__arrow-down svg {
    width: 3.125rem;
    color: #c4cfda; }
.product-bundle .product-info {
  width: 100%; }
  @media only screen and (min-width: 64em) {
    .product-bundle .product-info {
      width: 50%; } }
.product-bundle .product-info__title {
  text-transform: uppercase;
  margin: 0.3125rem 0;
  line-height: 1; }
.product-bundle .product-info__form-price {
  padding-bottom: 1.25rem;
  font-size: 1.375rem;
  font-weight: 500; }
.product-bundle .product-info__form-sale-price {
  margin-right: 0.625rem;
  color: #999999; }

.product-bundle__products {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.625rem; }
  @media only screen and (min-width: 48em) {
    .product-bundle__products {
      padding: 1.25rem; } }
  .product-bundle__products .product-card {
    width: 50%;
    padding: 0.625rem;
    display: block; }
    @media only screen and (min-width: 48em) {
      .product-bundle__products .product-card {
        width: 33.33%;
        padding: 1.25rem; } }
    @media only screen and (min-width: 80em) {
      .product-bundle__products .product-card {
        width: 25%; } }
  .product-bundle__products .product-card__image {
    display: block;
    font-size: 0; }
    @media only screen and (min-width: 64em) {
      .product-bundle__products .product-card__image:hover {
        opacity: 0.5; } }
    .product-bundle__products .product-card__image:focus {
      outline: 0;
      opacity: 0.5; }
  .product-bundle__products .product-card__title-and-review {
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }
  .product-bundle__products .product-card__title {
    font-size: 0.875rem;
    text-decoration: none; }
    @media only screen and (min-width: 48em) {
      .product-bundle__products .product-card__title {
        font-size: 1rem; } }
    @media only screen and (min-width: 64em) {
      .product-bundle__products .product-card__title:hover {
        color: #ddc3be; } }
    .product-bundle__products .product-card__title:focus {
      outline: 0;
      color: #ddc3be; }
  .product-bundle__products .product-card__qty-container {
    margin: 0; }
    .product-bundle__products .product-card__qty-container .product-card__qty {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      border: 0.0625rem solid black;
      border-radius: 0.3125rem;
      padding: 0;
      margin-left: 0.1875rem; }
      @media only screen and (min-width: 30em) {
        .product-bundle__products .product-card__qty-container .product-card__qty {
          padding: 0.1875rem 0; } }
    .product-bundle__products .product-card__qty-container .product-card__qty-adjust {
      padding: 0 0.20833rem;
      background: none;
      border: none; }
      @media only screen and (min-width: 30em) {
        .product-bundle__products .product-card__qty-container .product-card__qty-adjust {
          padding: 0 0.625rem; } }
      @media only screen and (min-width: 64em) {
        .product-bundle__products .product-card__qty-container .product-card__qty-adjust:hover {
          color: #ddc3be; } }
      .product-bundle__products .product-card__qty-container .product-card__qty-adjust:focus {
        outline: 0;
        color: #ddc3be; }
    .product-bundle__products .product-card__qty-container .product-card__qty--input {
      width: 1.25rem;
      text-align: center;
      border: none;
      background: none;
      padding: 0; }
      @media only screen and (min-width: 64em) {
        .product-bundle__products .product-card__qty-container .product-card__qty--input:hover {
          color: #ddc3be; } }
      .product-bundle__products .product-card__qty-container .product-card__qty--input:focus {
        outline: 0;
        color: #ddc3be; }

.product-bundle__products-add-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 1.25rem; }

.product-bundle__products-add {
  width: 100%;
  max-width: 29.25rem;
  padding: 0.625rem 0;
  border-radius: 0.3125rem; }

.search-page {
  padding: 0;
  max-width: 1280px;
  margin: 0 auto; }
  @media only screen and (min-width: 64em) {
    .search-page {
      padding: 0 2.5rem; } }
  .search-page .collection-content__collection-products {
    width: 100%; }
  .search-page .search-page__search-bar-container {
    padding: 0 1.25rem; }
  .search-page .search-page__search-bar {
    position: relative;
    margin: 0 auto;
    max-width: 21.875rem; }
    .search-page .search-page__search-bar input {
      border: 0.0625rem solid #eeeeee;
      padding: 0.3125rem 1.25rem;
      border-radius: 1.5625rem;
      width: 21.25rem;
      font-size: 0.875rem; }
      .search-page .search-page__search-bar input:focus {
        outline: none;
        border-color: #ddc3be; }
      .search-page .search-page__search-bar input::-webkit-input-placeholder {
        color: #eeeeee; }
      .search-page .search-page__search-bar input::-moz-placeholder {
        color: #eeeeee; }
      .search-page .search-page__search-bar input:-ms-input-placeholder {
        color: #eeeeee; }
      .search-page .search-page__search-bar input::-ms-input-placeholder {
        color: #eeeeee; }
  .search-page .search-btn {
    border: none;
    background-color: transparent;
    position: absolute;
    top: 0.3125rem;
    right: 1.25rem;
    color: black;
    padding: 0; }
    .search-page .search-btn svg {
      height: 1.25rem;
      width: 1.25rem; }
  .search-page .icon-search {
    width: 1.25rem; }

.search-page__status {
  text-align: center;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.5rem;
  padding: 1.25rem 1.25rem; }

.search__pagination {
  margin: 0 auto; }

/*================ Page Template ================*/
.content-page__container {
  max-width: 80rem;
  min-height: 70vh;
  margin: 0 auto;
  padding: 0 1.25rem 1.25rem; }
  @media only screen and (min-width: 64em) {
    .content-page__container {
      padding: 0 2.5rem 2.5rem; } }

.content-page__title {
  text-transform: uppercase;
  text-align: center; }

.page-not-found {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 0 1.25rem; }
  @media only screen and (min-width: 64em) {
    .page-not-found {
      padding: 0 2.5rem; } }

/*================ Contact ================*/
.contact-us {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem; }
  @media only screen and (min-width: 48em) {
    .contact-us {
      padding: 0 2.5rem; } }

.contact-us__title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5rem; }

.contact-us__content {
  display: block; }
  @media only screen and (min-width: 48em) {
    .contact-us__content {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: row-reverse;
      -moz-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; } }

.contact-us__rte {
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .contact-us__rte {
      width: 50%;
      padding-left: 8.75rem; } }

.contact-us__form {
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .contact-us__form {
      width: 50%; } }
  .contact-us__form label {
    display: none; }
  .contact-us__form input,
  .contact-us__form select {
    width: 100%;
    margin-bottom: 1.25rem; }
  .contact-us__form textarea {
    width: 100%; }
  .contact-us__form .contact-us__required {
    margin-bottom: 5rem;
    font-size: 0.875rem; }
  .contact-us__form .contact-btn {
    border-radius: 0.3125rem;
    font-size: 0.875rem;
    padding: 0.625rem;
    width: 14.0625rem;
    margin: 0 auto 5rem;
    display: block; }
    @media only screen and (min-width: 48em) {
      .contact-us__form .contact-btn {
        margin: 0 0 5rem; } }
    .contact-us__form .contact-btn:hover, .contact-us__form .contact-btn:focus {
      outline: none; }

/*================ Page Collab ================*/
.page-collab-section--no-padding {
  margin-bottom: 1.875rem; }
  @media only screen and (min-width: 48em) {
    .page-collab-section--no-padding {
      margin-bottom: 2.5rem; } }

.page-collab-section {
  padding: 0 1.25rem;
  margin-bottom: 2.5rem; }
  @media only screen and (min-width: 48em) {
    .page-collab-section {
      padding: 0 2.5rem;
      margin-bottom: 1.875rem; } }

/*================ Page Collab - Hero ================*/
.page-collab-hero__image-container {
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .page-collab-hero__image-container {
      height: 60vh;
      position: relative; } }

.page-collab-hero__image {
  width: 100%;
  height: 60vh;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.page-collab-hero__text-container {
  display: block; }
  @media only screen and (min-width: 48em) {
    .page-collab-hero__text-container {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      width: 100%;
      padding: 2.5rem 3.75rem;
      top: 0;
      left: 0;
      position: absolute; } }

.page-collab-hero__title {
  font-family: Cormorant, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.0625rem;
  width: 50%;
  margin: 1.875rem auto; }
  @media only screen and (min-width: 48em) {
    .page-collab-hero__title {
      width: 100%;
      margin: 1.875rem 0; } }

.collab-btn {
  background-color: black;
  color: #fbfbfb;
  border: none;
  border-radius: 0.3125rem;
  padding: 0.625rem 2.5rem; }
  @media only screen and (min-width: 48em) {
    .collab-btn {
      background-color: #fbfbfb;
      color: black; }
      .collab-btn:focus, .collab-btn:hover {
        background-color: black;
        color: #fbfbfb;
        border: none; } }

.page-collab-hero__text-position--top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start; }

.page-collab-hero__text-position--center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }

.page-collab-hero__text-position--bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end; }

.page-collab-hero__text-position--left {
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start; }

.page-collab-hero__text-position--middle {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }

.page-collab-hero__text-position--right {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end; }

.page-collab-hero__text-position--text-left {
  text-align: center; }
  @media only screen and (min-width: 48em) {
    .page-collab-hero__text-position--text-left {
      text-align: left; } }

.page-collab-hero__text-position--text-center, .text-center {
  text-align: center; }

.page-collab-hero__text-position--text-right {
  text-align: center; }
  @media only screen and (min-width: 48em) {
    .page-collab-hero__text-position--text-right {
      text-align: right; } }

/*================ Page Collab - Image and Text Section  ================*/
.page-collab-image-text__container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.page-collab-image-text__container--top {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .page-collab-image-text__container--top .page-collab-image-text__text-container {
    margin-bottom: 0; }

.page-collab-image-text__container--bottom {
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }
  .page-collab-image-text__container--bottom .page-collab-image-text__image-container {
    margin-bottom: 0; }

@media only screen and (min-width: 48em) {
  .page-collab-image-text__container--left {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; } }

@media only screen and (min-width: 48em) {
  .page-collab-image-text__container--right {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; } }

.page-collab-image-text__image-container {
  width: 100%;
  margin-bottom: 1.875rem; }
  @media only screen and (min-width: 48em) {
    .page-collab-image-text__image-container {
      width: 50%;
      margin-bottom: 0; } }

.page-collab-image-text__text-container {
  width: 100%;
  margin-bottom: 1.875rem; }
  @media only screen and (min-width: 48em) {
    .page-collab-image-text__text-container {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      width: 50%;
      margin-bottom: 0; } }

.page-collab-image-text__text {
  text-align: center;
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .page-collab-image-text__text {
      text-align: left;
      width: 50%; } }
  .page-collab-image-text__text .collab-btn {
    background-color: black;
    color: #fbfbfb;
    border: 0.125rem solid black;
    border-radius: 0.3125rem;
    padding: 0.625rem 2.5rem; }
    .page-collab-image-text__text .collab-btn:focus, .page-collab-image-text__text .collab-btn:hover {
      background-color: #fbfbfb;
      color: black;
      border: 0.125rem solid black; }

.page-collab-image-text__title {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 1.25rem;
  line-height: normal; }

.page-collab-image-text__content {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0;
  margin-bottom: 1.875rem;
  line-height: 1.43;
  letter-spacing: 0.071em; }

/*================ Page Collab - Video ================*/
.page-collab-video {
  width: 100%;
  position: relative;
  font-size: 0; }

.page-collab-video__overlay {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2); }

.icon-play {
  width: 4.6875rem;
  fill: #fbfbfb; }

.retailers {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem 5rem; }
  @media only screen and (min-width: 64em) {
    .retailers {
      padding: 0 2.5rem;
      padding-bottom: 7.5rem; } }

.retailers__title {
  text-align: center;
  margin: 3.75rem 0;
  text-transform: uppercase;
  font-weight: 600; }

.retailers__header {
  text-align: center;
  margin: 1.875rem 0;
  letter-spacing: 0.0716rem;
  text-transform: uppercase; }
  @media only screen and (min-width: 64em) {
    .retailers__header {
      text-align: left;
      margin-top: 3.75rem; } }

.retailers__image {
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem; }
  @media only screen and (min-width: 64em) {
    .retailers__image {
      width: 50%;
      padding: 0; } }

.retailers__content {
  text-align: center;
  padding: 0.625rem 0; }
  .retailers__content h4 {
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.07125rem; }
  .retailers__content p {
    line-height: 1.57;
    letter-spacing: 0.0714rem;
    font-size: 0.875rem;
    margin: 0.625rem 0; }
  .retailers__content a {
    word-wrap: break-word;
    font-weight: 700; }
  @media only screen and (min-width: 64em) {
    .retailers__content {
      width: 50%;
      text-align: left;
      padding-right: 1.875rem; } }

@media only screen and (min-width: 64em) {
  .retailers__locations {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    width: 50%; } }

@media only screen and (min-width: 64em) {
  .retailers__section {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between; } }

/*================ Page About Us ================*/
.page-about-section--no-padding {
  margin-bottom: 1.875rem; }
  @media only screen and (min-width: 64em) {
    .page-about-section--no-padding {
      margin-bottom: 2.5rem; } }

.page-about-section {
  padding: 0 1.25rem;
  margin-bottom: 2.5rem; }
  @media only screen and (min-width: 64em) {
    .page-about-section {
      padding: 0 2.5rem;
      margin-bottom: 2.5rem; } }

.page-about-section--custom {
  padding: 0 1.25rem;
  margin-bottom: 2.5rem; }
  @media only screen and (min-width: 64em) {
    .page-about-section--custom {
      padding-left: 2.5rem;
      padding-right: 0;
      margin-bottom: 2.5rem; } }

/*================ Hero ================*/
.about-hero {
  width: 100%; }

.about-hero__optional-links {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 1.25rem 0; }

.about-hero__link {
  padding: 0 0.625rem; }
  @media only screen and (min-width: 64em) {
    .about-hero__link {
      padding: 0 1.25rem; } }

/*================ Image with Shop Btn ================*/
.about-image-with-shop .about-btn {
  background-color: black;
  color: #fbfbfb;
  border: 0.125rem solid black;
  border-radius: 0.3125rem;
  padding: 0.8125rem 2.5rem; }

.about-image-with-shop__image {
  width: 100%; }
  @media only screen and (min-width: 64em) {
    .about-image-with-shop__image {
      width: 50%;
      margin: 0 auto; } }

.about-image-with-shop__shop {
  margin: 2.5rem 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }

/*================ Three Image Section ================*/
.about-three-image-section .about-btn {
  background-color: black;
  color: #fbfbfb;
  border: 0.125rem solid black;
  border-radius: 0.3125rem;
  padding: 0.8125rem 2.5rem; }
.about-three-image-section .about-three-image-section__title {
  text-align: center; }

.about-three-image-section__images {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.about-three-image-section__image-container {
  width: 100%;
  margin-bottom: 1.25rem; }
  @media only screen and (min-width: 64em) {
    .about-three-image-section__image-container {
      padding: 0 1.25rem;
      flex: 1;
      margin-bottom: 0; } }

.about-three-image-section__links {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 1.25rem 0; }

.about-three-image-section__link {
  text-align: center;
  display: block;
  margin-bottom: 1.25rem; }

.about-three-image-section__text {
  margin-top: 10px; }

/*================ Text Section ================*/
.about-text-section .about-image-with-shop__shop {
  margin-top: 1.25rem; }
.about-text-section .about-btn {
  background-color: black;
  color: #fbfbfb;
  border: 0.125rem solid black;
  border-radius: 0.3125rem;
  padding: 0.8125rem 2.5rem; }

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

.about-text-section__content-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }

.about-text-section__content {
  text-align: left;
  margin: 0 auto; }

/*================ Product Snippet ================*/
.product-template-snippet .product-image__thumbnail-image {
  display: none; }

/*================ Our Mission ================*/
.about-our-mission {
  max-width: 80rem;
  margin: 0 auto; }
  .about-our-mission .slick-prev::before {
    content: none; }
  .about-our-mission .slick-next::before {
    content: none; }
  .about-our-mission .slick-dots li button:before {
    display: none; }
  .about-our-mission .slick-dots li button {
    height: 3px;
    width: 20px;
    background: #d5d5d5;
    border-radius: 40px;
    padding: 0; }
  .about-our-mission .slick-dots li {
    position: relative;
    display: inline-block;
    height: 3px;
    width: auto;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
  .about-our-mission .slick-dots li.slick-active button {
    opacity: 1;
    width: 40px;
    background-color: black;
    border-radius: 40px;
    padding: 0; }
  .about-our-mission .slick-dots li.slick-active button::before {
    display: none; }

.about-our-mission__main-title {
  font-family: Cormorant, Arial, sans-serif;
  font-size: 2.0625rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem; }

.about-our-mission__blocks-container {
  display: block; }
  @media only screen and (min-width: 64em) {
    .about-our-mission__blocks-container {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center; } }

.about-our-mission__block-container {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  margin: 0 0.625rem; }
  .about-our-mission__block-container:hover .about-our-mission__content-container {
    display: block; }

.about-our-mission__content-container {
  width: 100%;
  height: 100%;
  display: block;
  padding: 2.5rem 0; }
  @media only screen and (min-width: 64em) {
    .about-our-mission__content-container {
      position: absolute;
      top: 0;
      left: 0;
      padding: 0.625rem;
      width: 100%;
      height: 100%;
      background-color: rgba(234, 204, 206, 0.75);
      display: none; } }

.about-our-mission__content-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.56;
  text-align: center;
  margin-bottom: 1.25rem;
  text-transform: uppercase; }

.about-our-mission__content {
  font-size: 0.875rem;
  font-weight: 300;
  text-align: center;
  line-height: 2; }

/*================ Video ================*/
.about-video-background {
  background-image: linear-gradient(to bottom, #ddc3be, #ddc3be 50%, white 50%); }

.about-video {
  max-width: 64rem;
  margin: 0 auto; }

.about-video__title {
  padding: 3.75rem 0;
  font-family: Cormorant, Arial, sans-serif;
  font-size: 2.0625rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center; }

.about-video__content {
  padding: 3.75rem 0 1.875rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  text-align: center; }

/*================ Image Text ================*/
.page-about-image-text__text {
  text-align: center;
  width: 90%;
  margin: 0 auto; }
  @media only screen and (min-width: 64em) {
    .page-about-image-text__text {
      text-align: left; } }
  .page-about-image-text__text .about-btn {
    background-color: black;
    color: #fbfbfb;
    border: 0.125rem solid black;
    border-radius: 0.3125rem;
    padding: 0.8125rem 2.5rem; }

.page-about-image-text__container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  max-width: 80rem;
  margin: 3.75rem auto 0; }

.page-about-image-text__content {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
  color: black;
  text-align: left;
  margin: 1.875rem 0; }
  @media only screen and (min-width: 48em) {
    .page-about-image-text__content {
      line-height: 2; } }
  @media only screen and (max-width: 63.99em) {
    .page-about-image-text__content font {
      font-size: 3em; } }

.page-about-image-text__image {
  width: 90%;
  margin: 0 auto; }

.page-about-image-text__title {
  font-size: 2.0625rem;
  font-family: Cormorant, Arial, sans-serif;
  font-weight: 600;
  margin: 0;
  text-align: center; }
  @media only screen and (min-width: 64em) {
    .page-about-image-text__title {
      text-align: left; } }

/*================ Slider ================*/
.page-about-slider-background {
  background-color: #ddc3be; }

.page-about-slider {
  padding: 3.75rem 0;
  max-width: 48rem;
  margin: 0 auto; }
  .page-about-slider .slick-prev::before {
    content: none; }
  .page-about-slider .slick-next::before {
    content: none; }
  .page-about-slider .slick-prev {
    left: -50px; }
  .page-about-slider .slick-next {
    right: -13px; }
  .page-about-slider .slick-dots li button:before {
    display: none; }
  .page-about-slider .slick-dots li button {
    height: 3px;
    width: 20px;
    background: #fbfbfb;
    border-radius: 40px;
    padding: 0; }
  .page-about-slider .slick-dots li {
    position: relative;
    display: inline-block;
    height: 3px;
    width: auto;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
  .page-about-slider .slick-dots li.slick-active button {
    opacity: 1;
    width: 40px;
    background-color: black;
    border-radius: 40px;
    padding: 0; }
  .page-about-slider .slick-dots li.slick-active button::before {
    display: none; }

.page-about-slider__title {
  font-family: Cormorant, Arial, sans-serif;
  font-size: 2.0625rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem; }

.page-about-slider__slide-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  text-align: center;
  max-width: 48rem;
  margin: 2.5rem auto; }

.page-about-slider__slide-image {
  width: 10.9375rem;
  margin: 0 auto; }
  .page-about-slider__slide-image img {
    border-radius: 50%; }

/*================ Double Slider ================*/
.about-double-slider__background {
  background-color: #ddc3be; }

.about-double-slider {
  padding-bottom: 5rem; }
  .about-double-slider .slick-prev::before {
    content: none; }
  .about-double-slider .slick-next::before {
    content: none; }
  .about-double-slider .slick-dots li button:before {
    display: none; }
  .about-double-slider .slick-dots li button {
    height: 3px;
    width: 20px;
    background: #fbfbfb;
    border-radius: 40px;
    padding: 0; }
  .about-double-slider .slick-dots li {
    position: relative;
    display: inline-block;
    height: 3px;
    width: auto;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
  .about-double-slider .slick-dots li.slick-active button {
    opacity: 1;
    width: 40px;
    background-color: black;
    border-radius: 40px;
    padding: 0; }
  .about-double-slider .slick-dots li.slick-active button::before {
    display: none; }

.about-double-slider__title {
  padding: 3.75rem 0;
  font-size: 2.0625rem;
  font-weight: 600;
  font-family: Cormorant, Arial, sans-serif;
  font-style: normal;
  line-height: 1.45;
  text-align: center; }

.page-about-double-slider__slider-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }
  @media only screen and (min-width: 64em) {
    .page-about-double-slider__slider-container {
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }

.about-double-slider__left-section {
  width: 100%; }
  @media only screen and (min-width: 64em) {
    .about-double-slider__left-section {
      width: 50%;
      padding: 1.25rem; } }

.about-double-slider__right-section {
  width: 100%; }
  @media only screen and (min-width: 64em) {
    .about-double-slider__right-section {
      width: 50%; } }

.page-about-double-slider__buttons {
  display: none;
  margin-top: 2.5rem; }
  .page-about-double-slider__buttons .slick-prev {
    margin-right: 0.625rem; }
  .page-about-double-slider__buttons .slick-next {
    margin-left: 0.625rem; }
  .page-about-double-slider__buttons .slick-prev, .page-about-double-slider__buttons .slick-next {
    font-size: 0;
    line-height: 0;
    position: unset;
    display: block;
    width: 2.8125rem;
    height: 2.8125rem;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent; }
  @media only screen and (min-width: 64em) {
    .page-about-double-slider__buttons {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }

.about-double-slider__first__slide {
  padding: 2.5rem 0; }
  @media only screen and (min-width: 64em) {
    .about-double-slider__first__slide {
      padding: 0; } }

.about-double-slider__second__slide {
  margin: 1.25rem;
  position: relative;
  opacity: 0.7; }

.about-double-slider__second__slide-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.about-double-slider__second__slide-icon {
  width: 5.625rem; }

.about-double-slider__second__slide.slick-active {
  box-shadow: 1.25rem 1.25rem #fbfbfb;
  opacity: 1; }

.about-double-slider__first__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: 0.072em;
  margin-bottom: 0.625rem;
  text-align: center; }
  @media only screen and (min-width: 64em) {
    .about-double-slider__first__title {
      text-align: left; } }

.about-double-slider__first__content {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  text-align: center; }
  @media only screen and (min-width: 64em) {
    .about-double-slider__first__content {
      text-align: left; } }

/*================ FAQ page ================*/
.faq__title {
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: black;
  line-height: 1.3;
  margin: 2.5rem 0 1.875rem;
  text-transform: uppercase; }

.page__accordions-container {
  padding: 0 1.25rem;
  max-width: 80rem;
  margin: 0 auto; }

.page__accordions {
  border-top: 0.0625rem solid #eeeeee;
  margin-top: 1.875rem;
  margin-bottom: 3.75rem; }
  @media only screen and (min-width: 64em) {
    .page__accordions {
      margin-top: 2.5rem; } }

.page__accordion-single {
  border-bottom: 0.0625rem solid #eeeeee;
  padding: 0.9375rem 0;
  width: 100%; }
  @media only screen and (min-width: 64em) {
    .page__accordion-single {
      padding: 1.25rem 0; } }

.page__accordion-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  width: 100%;
  line-height: 1.7;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0; }
  .page__accordion-header:focus {
    outline: none;
    color: #ddc3be; }

.page__accordion-title {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 1.25rem; }

/* .page__accordion-header[aria-expanded="false"]::after {
    @include display-flexbox();
    @include justify-content(center);
    @include align-items(center);
    content: "+";
    color: $black;
    line-height: 0.58;
    font-size: rem(24px);
} */
.page__accordion-header[aria-expanded="true"]::after {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  content: "-";
  color: black;
  line-height: 0.58;
  font-size: 1.5rem; }

.page__accordion-content {
  margin-top: 0.625rem;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7; }

.page__accordion-content[aria-hidden="true"] {
  display: none; }

/* Mini Grid */
.grid .one-third {
  width: 33%;
  display: inline-block;
  margin-bottom: 10px; }

.grid strong {
  display: block; }

.mb1 {
  margin-bottom: 10px; }

.mb2 {
  margin-bottom: 20px !important; }

/* Eyelash */
.eye-shape-section .hero__content {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px; }

@media only screen and (max-width: 63.99em) {
  .eye-shape-guide .hero__mobile-container {
    background-position: calc(50% - 260px) 50%; }

  .page-eye-shape-slider__button-container {
    position: absolute;
    top: 47%;
    width: 100%; }
    .page-eye-shape-slider__button-container .slick-prev {
      display: block;
      position: absolute;
      left: 25px; }
    .page-eye-shape-slider__button-container .slick-next {
      display: block;
      position: absolute;
      right: 25px; }
    .page-eye-shape-slider__button-container .slick-prev:before, .page-eye-shape-slider__button-container .slick-next:before {
      content: none; }

  .eye-shape__slick .page-text-with-slider__slide-title {
    margin-top: 10px; }

  .eye-shape-guide {
    margin-bottom: 20px; }
    .eye-shape-guide .page-text-with-slider__slides {
      position: relative; }

  .grid .one-third {
    width: 100%; }

  .grid .small--one-half {
    width: 48%; } }
.span.topbadge {
  display: none; }

.drop-down {
  position: relative;
  display: inline-block;
  width: auto;
  margin-top: 0;
  font-size: 14px; }

.drop-down select {
  display: none; }

.drop-down .select-list {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin-top: 30px;
  padding: 0;
  background-color: #fff; }

.drop-down .select-list li {
  display: none;
  list-style-type: none;
  cursor: pointer; }

.drop-down .select-list li img {
  max-width: 25px;
  margin-right: 5px; }

.drop-down .select-list li span {
  display: inline-block;
  min-height: 34px;
  min-width: 75px;
  width: 100%;
  padding: 5px;
  color: #403F3F;
  box-sizing: border-box; }

.select-list-link {
  max-width: 12px;
  display: inline-block;
  margin-left: 5px; }

.link-bar {
  padding: 20px 0; }

.link-bar .icon {
  width: 22px;
  height: 22px; }

.link-bar a.link {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  margin: 0 20px; }

.link-bar .icon-circle {
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  padding: 3px 0; }

.link-bar svg.icon {
  fill: #fff; }

.mobile-col-img {
  display: block; }

.desktop-col-img {
  display: none; }

.white {
  color: #fff !important; }

.video-holder {
  margin: 0 auto; }

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

#shopify-section-page-lash-stories-new .about-text-section__content {
  font-size: 1.4rem;
  text-align: center; }

#shopify-section-page-lash-stories-new .page-about-section {
  margin-bottom: 5rem; }

#shopify-section-page-lash-stories-new .container {
  max-width: 70rem; }

#shopify-section-page-lash-stories-new .h1, .slider__title {
  font-size: 2.0625rem;
  font-weight: bold;
  letter-spacing: 0.11em;
  line-height: 1.5; }

.testimonial-slider__slide-text {
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  line-height: 1.5; }

.about-text-section__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: -10px; }

#shopify-section-page-lash-stories-new .icons img {
  max-width: 220px; }

.icon-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 5px; }

.steps {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 500; }

.quick-add {
  margin-top: 20px; }

.testimonial-slider {
  margin: 40px 0 50px; }

.testimonial-slider .slick-prev {
  left: -55px; }

.testimonial-slider__slide-text {
  padding: 20px;
  font-weight: 500; }

.slider__title {
  text-transform: uppercase;
  margin-bottom: 2.5rem; }

.page-title-text-section .h1 {
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 2.5rem;
  font-weight: bold; }

.page-title__content-container {
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0 40px;
  line-height: 1.4; }

@media only screen and (min-width: 48em) {
  .flex {
    display: flex;
    align-items: center;
    padding: 0 40px; } }

@media only screen and (min-width: 48em) {
  .page-title-text-section .h1 {
    font-size: 3.5rem; }

  .page-title__content-container {
    font-size: 1.8rem; }

  .mobile-col-img {
    display: none; }

  .desktop-col-img {
    display: block; }

  .half-video-right, .half-video-left {
    width: 50%;
    float: left; }

  .testimonial-slider .flex img, .testimonial-slider .flex .testimonial-slider__slide-text {
    width: 50%; } }
@media only screen and (max-width: 47.99em) {
  #shopify-section-page-lash-stories-new .about-text-section__content {
    font-size: 1.2rem; }

  .testimonial-slider__slide-text {
    font-size: 1.4rem; }

  #shopify-section-page-lash-stories-new .icons img {
    max-width: 160px; }

  .testimonial-slider img {
    max-width: 85%;
    margin: 0 auto; }

  .small--hide {
    display: none; }

  .steps, .about-text-section__subtitle {
    font-size: 1.1rem; }

  #shopify-section-page-lash-stories-new .h1, .slider__title {
    font-size: 1.5rem; }

  .link-bar a.link {
    display: block;
    margin-bottom: 10px; }

  .page-title-text-section {
    padding: 5px 0 40px; } }
.instagram .instagram-content__container .fs-wrapper div.fs-timeline-entry {
  margin: 0; }

.content-page__container--pick-of-the-week.lastoftheweek .lash-of-the-week-header-container .lash-of-the-week-header-row .lash-of-the-week-header-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: unset; }
.content-page__container--pick-of-the-week.lastoftheweek .lash-of-the-week-header-container .lash-of-the-week-header-row .lash-of-the-week-header-bottom .wrap-title {
  position: static;
  top: 0;
  left: 0;
  transform: none;
  justify-content: center;
  background: transparent; }
.content-page__container--pick-of-the-week.lastoftheweek .lash-of-the-week-header-container .lash-of-the-week-header-row .lash-of-the-week-header-bottom .wrap-title .title-left,
.content-page__container--pick-of-the-week.lastoftheweek .lash-of-the-week-header-container .lash-of-the-week-header-row .lash-of-the-week-header-bottom .wrap-title .title-right {
  top: 0; }
.content-page__container--pick-of-the-week.lastoftheweek .lash-of-the-week-combo-image .section-bot .three-background {
  padding: 70px 10px; }
  @media (min-width: 640px) {
    .content-page__container--pick-of-the-week.lastoftheweek .lash-of-the-week-combo-image .section-bot .three-background {
      padding: 70px; } }
.content-page__container--pick-of-the-week.lastoftheweek sup {
  font-weight: 200;
  font-style: normal; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .section-title {
  font-family: Vogue;
  text-align: center;
  padding: 0 20px;
  font-size: 66px; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-wrap-img {
  max-width: 90vw;
  margin: auto; }
  .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-wrap-img img {
    width: 100%; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .lash-of-the-week-header-left {
  width: 41%; }
  .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .lash-of-the-week-header-left img {
    width: 100%; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .lash-of-the-week-header-right {
  width: 59%; }
  .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .lash-of-the-week-header-right img {
    width: 100%; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .section-bot .three-background {
  background: transparent; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .section-bot .three-background .title-top-three {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  font-family: 'Vogue'; }
  @media (min-width: 1201px) {
    .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .section-bot .three-background .title-top-three {
      text-align: right; }
      .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .section-bot .three-background .title-top-three .title-top__subtitle {
        display: flex;
        justify-content: space-between;
        align-items: flex-end; }
        .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .section-bot .three-background .title-top-three .title-top__subtitle::before {
          content: "";
          display: block;
          width: calc(100% - 680px);
          height: 2px;
          background: black;
          position: relative;
          bottom: 20px; } }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-2 .lash-of-the-week-combo-image .section-bot .three-background .title-mid-three {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 44px; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .section-title {
  font-family: Vogue;
  text-align: center;
  padding: 0 20px;
  font-size: 66px; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-wrap-img {
  margin: auto; }
  .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-wrap-img img {
    width: 100%; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .lash-of-the-week-header-left {
  width: 48.3333333333%; }
  .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .lash-of-the-week-header-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .lash-of-the-week-header-right {
  width: 51.6666666667%; }
  .content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .lash-of-the-week-header-right img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .section-bot .three-background {
  background: #f2ebe3; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .section-bot .three-background .title-top-three {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-size: 57px;
  line-height: 68px; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lastoftheweek .lash-of-the-week-combo-image .section-bot .second-background {
  padding: 70px 0;
  background-color: #D7B3AF; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .section-bot .three-background .title-mid-three {
  font-family: "Cormorant Garamond";
  font-weight: 400;
  font-size: 44px; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .section-bot .second-background .second-text .title-left-second {
  font-size: 110.6px; }
.content-page__container--pick-of-the-week.lastoftheweek.pick-of-the-week-3 .lash-of-the-week-combo-image .section-bot .second-background .second-text .title-right-second {
  font-size: 47.4px; }

/*=====================================*/
.modal {
  display: inline-block;
  opacity: 0;
  z-index: -100;
  transition: 0.25s all ease-in-out;
  background: #ddc3be;
  position: relative; }
  .modal .modal__overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: black;
    transition: 0.25s all ease-in-out; }
  .modal.modal--open {
    z-index: 5000;
    opacity: 1;
    transition: 0.25s all ease-in-out; }
    .modal.modal--open .modal__overlay {
      position: fixed;
      z-index: 4999;
      opacity: .75;
      transition: 0.25s all ease-in-out; }

.modal__content {
  display: flex;
  position: fixed;
  color: black;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: black;
  padding: 35px;
  min-width: calc(100% - 80px);
  z-index: 5000; }
  @media only screen and (min-width: 48em) {
    .modal__content {
      padding: 70px;
      min-width: initial; } }

.modal__close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  cursor: pointer; }

.modal__trigger {
  cursor: pointer; }

.modal--video-modal {
  display: block; }
  .modal--video-modal.modal--open .modal__popup {
    display: block; }
  .modal--video-modal.modal--open .modal__overlay {
    opacity: 0.95; }
  .modal--video-modal .modal__close-button {
    top: -50px;
    right: -20px;
    background-color: transparent;
    border: 0; }
    .modal--video-modal .modal__close-button:hover {
      color: #fbfbfb;
      background-color: transparent; }
  .modal--video-modal .modal__popup {
    display: none; }
    .modal--video-modal .modal__popup .modal__content {
      width: calc(90% - 80px);
      max-width: 1024px;
      min-width: initial;
      height: auto;
      background: transparent;
      padding: 0; }
      @media only screen and (min-width: 64em) {
        .modal--video-modal .modal__popup .modal__content {
          width: calc(100% - 180px); } }
      .modal--video-modal .modal__popup .modal__content .video-block {
        background: transparent;
        background-image: none;
        background-size: cover !important; }
      .modal--video-modal .modal__popup .modal__content .video-block__video {
        padding-bottom: 56.25%;
        background-color: transparent; }
      .modal--video-modal .modal__popup .modal__content .button--primary {
        position: absolute;
        top: -57px;
        right: -30px;
        color: #fbfbfb;
        background-color: transparent;
        border: none;
        padding: 10px; }
        @media only screen and (min-width: 64em) {
          .modal--video-modal .modal__popup .modal__content .button--primary {
            padding: 20px 30px; } }
      .modal--video-modal .modal__popup .modal__content .video-block {
        min-height: initial; }
      .modal--video-modal .modal__popup .modal__content iframe {
        background: black; }

.video-block {
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  width: 100%; }
  .video-block::before {
    content: '';
    float: left;
    height: 0;
    margin-left: -1px;
    padding-top: calc(9 / 16 * 100%);
    width: 1px; }
  .video-block::after {
    clear: both;
    content: '';
    display: table; }

.video-block__video {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
  width: 100%;
  position: absolute; }
  .video-block__video iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }

.video-block--is-postered .video-block__video,
.video-block--is-postered .video-block__video iframe {
  z-index: -1; }

.video-block--is-postered video::-webkit-media-controls {
  position: relative;
  z-index: -1; }

.video-block--is-not-interactive .video-block__video,
.video-block--is-not-interactive .video-block__video iframe,
.video-block--is-not-interactive video::-webkit-media-controls {
  z-index: -1; }

.video-block--is-not-interactive {
  background-color: rgba(0, 0, 0, 0); }

.video-block__control {
  cursor: pointer;
  display: inline-block;
  color: white; }
  .video-block__control svg.icon {
    transition: 0.25s all ease-in-out; }
  .video-block__control:hover svg.icon {
    transform: scale(1);
    transition: 0.25s all ease-in-out; }
  .video-block__control:focus {
    outline: black solid 2px;
    outline-offset: 5px; }

.video-block__controls-bar {
  position: absolute;
  bottom: 35px;
  right: 35px;
  z-index: 500; }
  .video-block__controls-bar .video-block__control {
    margin-left: 1em; }
  @media only screen and (min-width: 64em) {
    .video-block__controls-bar {
      bottom: 50px;
      right: 50px; } }
  .video-block__controls-bar.video-block__controls-bar--left {
    right: auto;
    left: 20px; }
    .video-block__controls-bar.video-block__controls-bar--left .video-block__control {
      margin-left: 0;
      margin-right: 1em; }
    @media only screen and (min-width: 64em) {
      .video-block__controls-bar.video-block__controls-bar--left {
        right: auto;
        left: 50px; } }

.video-block__controls-poster {
  display: none; }
  .video-block__controls-poster .video-block__control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .video-block__controls-poster .icon__play {
    position: absolute;
    top: 50%;
    left: 50%; }
    .video-block__controls-poster .icon__play svg {
      transform: translate(-50%, -50%);
      height: 57px;
      width: 69px; }
  .video-block__controls-poster:hover .icon__play svg {
    transform: translate(-50%, -50%);
    width: 57px;
    height: 69px; }
  .video-block--is-postered .video-block__controls-poster {
    display: block; }

.video-block--is-postered,
.video-block--is-paused {
  background-repeat: no-repeat;
  background-size: cover !important; }
  .video-block--is-postered .video-block__video,
  .video-block--is-paused .video-block__video {
    z-index: -1; }
  .video-block--is-postered .video-block__controls-poster,
  .video-block--is-paused .video-block__controls-poster {
    display: block; }

.video-block__control--pause {
  display: inline-block; }
  .video-block--is-paused .video-block__control--pause {
    display: none; }

.video-block__control--play {
  display: none; }
  .video-block--is-paused .video-block__control--play {
    display: inline-block; }

.video-block__control--unmute {
  display: none; }
  .video-block--is-muted .video-block__control--unmute {
    display: inline-block; }

.video-block__control--mute {
  display: inline-block; }
  .video-block--is-muted .video-block__control--mute {
    display: none; }

/*================ Section Headline ================*/
.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  text-transform: uppercase; }
  @media only screen and (min-width: 64em) {
    .section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button {
      padding: 0; } }
  .section-headline .cursive-text, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button .cursive-text {
    font-family: "Grayscale Signature", Arial, sans-serif;
    text-transform: initial; }
    .section-headline .cursive-text + .default-text, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button .cursive-text + .default-text {
      margin-top: -20px; }
      @media only screen and (min-width: 64em) {
        .section-headline .cursive-text + .default-text, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button .cursive-text + .default-text {
          margin-top: -55px; } }
  .section-container .section-headline, .section-container .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .section-container .accordion-section__accodion-button {
    margin-bottom: 35px;
    margin-top: 0; }
    @media only screen and (min-width: 64em) {
      .section-container .section-headline, .section-container .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .section-container .accordion-section__accodion-button {
        margin-bottom: 50px; } }

h1 .cursive-text, h1.cursive-text, h2 .cursive-text, h2.cursive-text {
  font-size: 45px;
  line-height: 84px;
  letter-spacing: 0; }
  @media only screen and (min-width: 64em) {
    h1 .cursive-text, h1.cursive-text, h2 .cursive-text, h2.cursive-text {
      font-size: 84px;
      line-height: 157px; } }

h1.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h1.accordion-section__accodion-button, .h1.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .h1.accordion-section__accodion-button {
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0; }
  @media only screen and (min-width: 64em) {
    h1.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h1.accordion-section__accodion-button, .h1.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .h1.accordion-section__accodion-button {
      font-size: 48px;
      line-height: 59px; } }

h2.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h2.accordion-section__accodion-button, .h2.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .h2.accordion-section__accodion-button {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 4px;
  font-weight: 400; }
  @media only screen and (min-width: 64em) {
    h2.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h2.accordion-section__accodion-button, .h2.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .h2.accordion-section__accodion-button {
      font-size: 40px;
      line-height: 49px;
      letter-spacing: 6px; } }

h3.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h3.accordion-section__accodion-button, .h3.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 3px;
  font-weight: 400; }
  @media only screen and (min-width: 64em) {
    h3.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h3.accordion-section__accodion-button, .h3.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button {
      font-size: 25px;
      line-height: 30px;
      letter-spacing: 4px; } }

h4.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h4.accordion-section__accodion-button, .h4.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .h4.accordion-section__accodion-button {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0; }
  @media only screen and (min-width: 64em) {
    h4.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h4.accordion-section__accodion-button, .h4.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .h4.accordion-section__accodion-button {
      font-size: 20px;
      line-height: 24px; } }

h5.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h5.accordion-section__accodion-button, .h5.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .h5.accordion-section__accodion-button {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0; }
  @media only screen and (min-width: 64em) {
    h5.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each h5.accordion-section__accodion-button, .h5.section-headline, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .h5.accordion-section__accodion-button {
      font-size: 18px;
      line-height: 24px; } }

.text-color-pink {
  color: #ddc3be; }

.text-color-white {
  color: #fff; }

.text-color-black {
  color: black; }

.text-color-hit-gray {
  color: #a7b2b8; }

/*================ Section Container ================*/
.section-container {
  margin-top: 70px;
  margin-bottom: 70px; }
  @media only screen and (min-width: 64em) {
    .section-container {
      margin-top: 100px;
      margin-bottom: 100px; } }

/*================ Page Hero ================*/
.page-hero-section {
  /*================ Page Hero ================*/ }
  .page-hero-section .page-hero {
    width: 100%;
    position: relative; }
    @media only screen and (max-width: 47.99em) {
      .page-hero-section .page-hero.page-hero--split {
        position: inherit; }
        .page-hero-section .page-hero.page-hero--split .page-hero-content {
          position: inherit;
          top: auto;
          left: auto;
          transform: none;
          margin-top: 24px; }
        .page-hero-section .page-hero.page-hero--split .section-headline, .page-hero-section .page-hero.page-hero--split .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .page-hero-section .page-hero.page-hero--split .accordion-section__accodion-button {
          padding: 0; }
        .page-hero-section .page-hero.page-hero--split .default-text,
        .page-hero-section .page-hero.page-hero--split .cursive-text,
        .page-hero-section .page-hero.page-hero--split .page-hero__description {
          color: black; } }
  .page-hero-section .ratio-box {
    height: 475px;
    padding-top: inherit !important; }
    .page-hero-section .ratio-box img {
      object-fit: cover; }
  .page-hero-section .page-hero-content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    padding: 0 20px; }
  .page-hero-section .section-headline, .page-hero-section .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .page-hero-section .accordion-section__accodion-button {
    padding: 0;
    text-transform: initial;
    margin: 0;
    padding: 0 10px; }
    .page-hero-section .section-headline .default-text, .page-hero-section .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button .default-text, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .page-hero-section .accordion-section__accodion-button .default-text {
      font-weight: 500; }
    .page-hero-section .section-headline .cursive-text + .default-text, .page-hero-section .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button .cursive-text + .default-text, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .page-hero-section .accordion-section__accodion-button .cursive-text + .default-text {
      margin-top: -20px; }
      @media only screen and (min-width: 64em) {
        .page-hero-section .section-headline .cursive-text + .default-text, .page-hero-section .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button .cursive-text + .default-text, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .page-hero-section .accordion-section__accodion-button .cursive-text + .default-text {
          margin-top: -30px; } }
  .page-hero-section .page-hero-title__cursive-bottom .cursive-text {
    margin-top: 5px; }
    .page-hero-section .page-hero-title__cursive-bottom .cursive-text + .default-text {
      margin-top: 0; }
  .page-hero-section .page-hero__description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 18px;
    text-align: center; }
    @media only screen and (min-width: 64em) {
      .page-hero-section .page-hero__description {
        font-size: 18px; } }
  .page-hero-section .has-mobile-image .desktop-image {
    display: none; }
    @media only screen and (min-width: 48em) {
      .page-hero-section .has-mobile-image .desktop-image {
        display: block; } }
  .page-hero-section .has-mobile-image .mobile-image {
    display: block; }
    @media only screen and (min-width: 48em) {
      .page-hero-section .has-mobile-image .mobile-image {
        display: none; } }
  .page-hero-section .page-hero__button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px; }
    @media only screen and (min-width: 48em) {
      .page-hero-section .page-hero__button-wrapper {
        margin-top: 25px; } }
  .page-hero-section .page-hero__button {
    font-size: 15px;
    letter-spacing: 3px;
    padding: 15px 40px;
    line-height: 16px; }
    @media only screen and (min-width: 48em) {
      .page-hero-section .page-hero__button {
        font-size: 18px; } }

.page-hero-section__collection .ratio-box,
.page-hero-section__collection .page-hero {
  min-height: 250px; }
.page-hero-section__collection .desktop-image {
  display: none; }
  @media only screen and (min-width: 64em) {
    .page-hero-section__collection .desktop-image {
      display: block; } }
.page-hero-section__collection .mobile-image {
  display: block; }
  @media only screen and (min-width: 64em) {
    .page-hero-section__collection .mobile-image {
      display: none; } }

/*================ Custom Homepage Hero ================*/
.homepage-hero-section {
  display: flex;
  justify-content: center;
  height: 600px; }
  .homepage-hero-section a {
    text-decoration: none; }
  .homepage-hero-section .ratio-box {
    height: 600px;
    max-width: 1680px;
    align-self: center; }
  .homepage-hero-section .page-hero {
    width: 100%;
    max-width: 1680px;
    align-self: center; }
    .homepage-hero-section .page-hero img {
      object-position: center; }
  .homepage-hero-section .page-hero__content {
    max-width: 650px; }
  @media only screen and (min-width: 48em) {
    .homepage-hero-section .has-mobile-image .desktop-image {
      display: flex;
      justify-content: center; }
    .homepage-hero-section .align-right {
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin: 0.7rem 0; }
    .homepage-hero-section .align-left {
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin: 0.7rem 0; } }

/*================ Featured Product Slider ================*/
#featured-product-slider__container {
  padding: 0; }
  @media only screen and (min-width: 48em) {
    #featured-product-slider__container {
      padding: 0 25px; } }
  #featured-product-slider__container .featured-product-slider {
    padding: 0 5px 60px; }
    @media only screen and (min-width: 48em) {
      #featured-product-slider__container .featured-product-slider {
        padding-bottom: 0; } }
    @media only screen and (min-width: 64em) {
      #featured-product-slider__container .featured-product-slider {
        padding-left: 20px;
        padding-right: 20px; } }
    #featured-product-slider__container .featured-product-slider .slick-slide {
      padding: 0 15px; }
    #featured-product-slider__container .featured-product-slider .slick-list {
      margin: 0 auto;
      margin-bottom: 30px; }
      @media only screen and (min-width: 48em) {
        #featured-product-slider__container .featured-product-slider .slick-list {
          margin-bottom: 0; } }
    #featured-product-slider__container .featured-product-slider .slick-arrow {
      top: 89%;
      z-index: 9; }
      @media only screen and (min-width: 48em) {
        #featured-product-slider__container .featured-product-slider .slick-arrow {
          top: 25%; } }
      @media only screen and (min-width: 64em) {
        #featured-product-slider__container .featured-product-slider .slick-arrow {
          top: 36%; } }
      #featured-product-slider__container .featured-product-slider .slick-arrow::before {
        height: 25px;
        width: 16px; }
        @media only screen and (min-width: 64em) {
          #featured-product-slider__container .featured-product-slider .slick-arrow::before {
            height: 38px;
            width: 22px; } }
    #featured-product-slider__container .featured-product-slider .slick-dots {
      top: 89.5%;
      padding-right: 5px;
      z-index: 8; }
      #featured-product-slider__container .featured-product-slider .slick-dots li {
        display: inline-block; }
        #featured-product-slider__container .featured-product-slider .slick-dots li:only-of-type {
          display: none; }
    #featured-product-slider__container .featured-product-slider .slick-prev {
      left: 20px; }
      @media only screen and (min-width: 749px) {
        #featured-product-slider__container .featured-product-slider .slick-prev {
          left: 0; } }
    #featured-product-slider__container .featured-product-slider .slick-next {
      right: 20px; }
      @media only screen and (min-width: 749px) {
        #featured-product-slider__container .featured-product-slider .slick-next {
          right: 0; } }
    #featured-product-slider__container .featured-product-slider .product-card__image-container {
      max-width: 100%; }
    #featured-product-slider__container .featured-product-slider .product-card .product-card__title-and-review {
      margin: 10px auto 0;
      max-width: 100%; }
    #featured-product-slider__container .featured-product-slider .product-card .product-card__title {
      font-size: 16px;
      line-height: 24px;
      font-weight: 600;
      padding-bottom: 0; }
    #featured-product-slider__container .featured-product-slider .product-card .product-card__price {
      font-size: 14px;
      line-height: 17px;
      font-weight: 700; }
    #featured-product-slider__container .featured-product-slider .product-card .pwr-category-snippets {
      margin: 15px 0; }
      #featured-product-slider__container .featured-product-slider .product-card .pwr-category-snippets .pr-snippet-stars .pr-star-v4 {
        padding: 0 1px; }
        #featured-product-slider__container .featured-product-slider .product-card .pwr-category-snippets .pr-snippet-stars .pr-star-v4::before {
          font-size: 14px; }
          @media only screen and (min-width: 64em) {
            #featured-product-slider__container .featured-product-slider .product-card .pwr-category-snippets .pr-snippet-stars .pr-star-v4::before {
              font-size: 20px; } }

/*================ Testimonials ================*/
@media only screen and (min-width: 48em) {
  #testimonials__section .testimonials__container {
    padding: 0 25px; } }
@media only screen and (min-width: 64em) {
  #testimonials__section .testimonials__container .testimonials-slider {
    padding-left: 20px;
    padding-right: 20px; } }
@media only screen and (min-width: 80em) {
  #testimonials__section .testimonials__container .testimonials-slider {
    padding-left: 80px;
    padding-right: 80px; } }
#testimonials__section .testimonials__container .testimonials-slider.review-love {
  align-items: flex-start;
  max-height: none; }
#testimonials__section .testimonials__container .testimonials-slider .slick-list.draggable {
  max-height: none !important; }
#testimonials__section .testimonials__container .testimonials-slider .slick-list {
  width: 100%;
  padding-bottom: 20px; }
#testimonials__section .testimonials__container .testimonials-slider .slick-dots {
  bottom: 2%;
  z-index: -1; }
  @media only screen and (min-width: 48em) {
    #testimonials__section .testimonials__container .testimonials-slider .slick-dots {
      bottom: 5px; } }
#testimonials__section .testimonials__container .testimonials-slider .slick-arrow {
  z-index: 9;
  top: 95%; }
  @media only screen and (min-width: 48em) {
    #testimonials__section .testimonials__container .testimonials-slider .slick-arrow {
      top: 30%; } }
  #testimonials__section .testimonials__container .testimonials-slider .slick-arrow::before {
    height: 25px;
    width: 16px; }
    @media only screen and (min-width: 64em) {
      #testimonials__section .testimonials__container .testimonials-slider .slick-arrow::before {
        height: 38px;
        width: 22px; } }
#testimonials__section .testimonials__container .testimonials-slider .slick-prev,
#testimonials__section .testimonials__container .testimonials-slider .slick-next {
  display: inline-block !important; }
#testimonials__section .testimonials__container .shopify-product-reviews-badge .spr-icon-star {
  color: #f7b10d; }
  #testimonials__section .testimonials__container .shopify-product-reviews-badge .spr-icon-star::before {
    font-size: 22px !important; }
    @media only screen and (min-width: 64em) {
      #testimonials__section .testimonials__container .shopify-product-reviews-badge .spr-icon-star::before {
        font-size: 30px !important; } }
#testimonials__section .testimonials__container .product-card__rating {
  padding: 0 15px;
  width: 100%; }
  @media only screen and (min-width: 48em) {
    #testimonials__section .testimonials__container .product-card__rating {
      padding: 0 calc(50px - 0.275rem); } }
#testimonials__section .testimonials__container .product-description__accordion-content {
  font-size: 16px;
  line-height: 28px;
  margin: 20px 50px; }
  @media only screen and (min-width: 64em) {
    #testimonials__section .testimonials__container .product-description__accordion-content {
      font-size: 18px; } }
#testimonials__section .testimonials__container .product-reviews_author {
  margin-top: 0;
  margin-bottom: 20px;
  width: 100%;
  padding: 0 50px;
  font-size: 14px;
  line-height: 17px; }
  @media only screen and (min-width: 48em) {
    #testimonials__section .testimonials__container .product-reviews_author {
      text-align: left; } }
  @media only screen and (min-width: 64em) {
    #testimonials__section .testimonials__container .product-reviews_author {
      font-size: 19px;
      line-height: 21px; } }
  #testimonials__section .testimonials__container .product-reviews_author p {
    margin: 0;
    color: black; }

.section-testimonials .testimonial__image {
  margin-bottom: 25px;
  width: 100%;
  display: grid;
  grid-template-columns: 270px;
  grid-template-rows: 270px;
  overflow: hidden;
  justify-content: center; }
  @media only screen and (min-width: 48em) {
    .section-testimonials .testimonial__image {
      display: flex;
      position: relative;
      padding-bottom: calc(100% - 100px);
      width: 100%;
      margin-left: 50px;
      margin-right: 50px; } }
  .section-testimonials .testimonial__image img {
    height: 100%;
    width: 100%;
    object-fit: cover; }
    @media only screen and (min-width: 48em) {
      .section-testimonials .testimonial__image img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); } }

/*================ Intro Block ================*/
#intro-block__container {
  background-color: #ddc3be;
  padding: 40px 15px; }
  @media only screen and (min-width: 64em) {
    #intro-block__container {
      padding: 50px 0; } }
  #intro-block__container .intro-block__content {
    text-align: center;
    margin: 0 auto; }
    @media only screen and (min-width: 64em) {
      #intro-block__container .intro-block__content {
        padding: 0 80px; } }
    #intro-block__container .intro-block__content .intro-block__text {
      max-width: 972px;
      margin: 0 auto; }
    #intro-block__container .intro-block__content .section-headline, #intro-block__container .intro-block__content .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each #intro-block__container .intro-block__content .accordion-section__accodion-button {
      margin-top: 0;
      margin-bottom: 0; }
      #intro-block__container .intro-block__content .section-headline + .intro-block__text, #intro-block__container .intro-block__content .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button + .intro-block__text, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each #intro-block__container .intro-block__content .accordion-section__accodion-button + .intro-block__text {
        margin-top: 20px; }
    #intro-block__container .intro-block__content .intro-block__buttons {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-wrap: wrap;
      align-content: center;
      margin-bottom: -15px; }
      #intro-block__container .intro-block__content .intro-block__buttons .intro-block__button {
        color: #fff;
        margin-bottom: 15px; }
        #intro-block__container .intro-block__content .intro-block__buttons .intro-block__button:focus {
          color: #fff;
          background-color: #000; }
        @media only screen and (min-width: 48em) {
          #intro-block__container .intro-block__content .intro-block__buttons .intro-block__button {
            margin-right: 20px; }
            #intro-block__container .intro-block__content .intro-block__buttons .intro-block__button:last-of-type {
              margin-right: 0; }
            #intro-block__container .intro-block__content .intro-block__buttons .intro-block__button:hover, #intro-block__container .intro-block__content .intro-block__buttons .intro-block__button:active, #intro-block__container .intro-block__content .intro-block__buttons .intro-block__button:focus {
              color: #000;
              background-color: #fff; } }
      @media only screen and (min-width: 48em) {
        #intro-block__container .intro-block__content .intro-block__buttons {
          flex-direction: row; } }

.section-button {
  padding: 20px 40px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  transition: 0.5s;
  border: 2px solid black; }
  @media only screen and (min-width: 48em) {
    .section-button {
      font-size: 18px;
      line-height: 22px; } }
  .section-button.btn--pink {
    background-color: #ddc3be;
    color: black;
    border: 2px solid #ddc3be; }
    .section-button.btn--pink:hover, .section-button.btn--pink:active, .section-button.btn--pink:focus {
      background: #CDB2AB;
      border: 2px solid #CDB2AB; }
  .section-button.disabled, .section-button:disabled {
    background-color: #EFEFEF;
    color: #BDBDBD;
    border: 2px solid #EFEFEF;
    cursor: inherit; }
    .section-button.disabled:hover, .section-button.disabled:active, .section-button.disabled:focus, .section-button:disabled:hover, .section-button:disabled:active, .section-button:disabled:focus {
      background-color: #EFEFEF;
      color: #BDBDBD;
      border: 2px solid #EFEFEF; }

/*================ Icon Block ================*/
.icon-block__section .home-icons__content-each-icon {
  width: 104px; }
@media only screen and (min-width: 64em) {
  .icon-block__section .home-icons__content {
    margin-bottom: -30px; } }
.icon-block__section .home-icons__content .home-icons__content-each {
  padding: 15px 10px;
  width: 50%; }
  @media only screen and (min-width: 48em) {
    .icon-block__section .home-icons__content .home-icons__content-each {
      width: 33.333%; } }
  @media only screen and (min-width: 64em) {
    .icon-block__section .home-icons__content .home-icons__content-each {
      padding: 15px 20px;
      width: 25%; } }
  .icon-block__section .home-icons__content .home-icons__content-each.has-link {
    position: relative;
    background: transparent;
    transition: 0.25s background ease-in-out; }
    .icon-block__section .home-icons__content .home-icons__content-each.has-link:hover {
      background: #F9F9F9; }
.icon-block__section .home-icons__content .icon-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1; }
.icon-block__section .home-icons__content .icon-link-text {
  margin-top: 15px;
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px; }
  @media only screen and (min-width: 48em) {
    .icon-block__section .home-icons__content .icon-link-text {
      font-size: 16px; } }
.icon-block__section .home-icons__content .home-icons__content-each-subtitle {
  width: 100%; }
.icon-block__section .home-icons__content .home-icons__content-each-title {
  font-size: 14px;
  line-height: 31px;
  margin: 0;
  font-weight: 400; }
  @media only screen and (min-width: 48em) {
    .icon-block__section .home-icons__content .home-icons__content-each-title {
      font-size: 20px;
      line-height: 24px;
      margin-top: 15px; } }
.icon-block__section .home-icons__content .home-icons__content-each-subtitle {
  margin-top: 15px; }

/*================ Collection Driver ================*/
#collection-driver__section {
  margin-top: 50px;
  margin-bottom: 50px; }
  #collection-driver__section h3 {
    color: #a7b2b8; }
  #collection-driver__section .collection-driver__content-each-icon {
    width: 100%;
    height: 180px; }
  #collection-driver__section .collection-driver__content-each,
  #collection-driver__section collection-driver__section-headline {
    text-transform: uppercase; }
  #collection-driver__section .collection-driver__link:hover ~ p {
    text-decoration: underline; }
  #collection-driver__section .ratio-box img, #collection-driver__section .ratio-box iframe, #collection-driver__section .ratio-box video {
    height: 180px;
    object-fit: cover; }
  @media only screen and (min-width: 48em) {
    #collection-driver__section .collection-driver-icons {
      max-width: 100rem; }
    #collection-driver__section .collection-driver__content {
      flex-wrap: nowrap; }
    #collection-driver__section .collection-driver__content-each {
      width: 20%;
      padding: 0;
      margin: 0 5px;
      flex-grow: 1; }
    #collection-driver__section .collection-driver__content-each:hover {
      background: #fff; } }

/*================ Newsletter Section ================*/
.newsletter-section {
  background-color: #ddc3be; }
  .newsletter-section .newsletter-container {
    padding: 70px 15px;
    text-align: center;
    max-width: 1015px; }
    .newsletter-section .newsletter-container .newsletter__title {
      margin-top: 0;
      margin-bottom: 20px; }
    .newsletter-section .newsletter-container .newsletter__content {
      margin-top: 0;
      margin-bottom: 20px; }
  .newsletter-section .form__sign-up {
    position: relative;
    max-width: 415px;
    margin: 0 auto; }
    .newsletter-section .form__sign-up .klaviyo-form {
      position: relative;
      z-index: 2; }
      .newsletter-section .form__sign-up .klaviyo-form .needsclick button img {
        opacity: 0; }
      .newsletter-section .form__sign-up .klaviyo-form .needsclick .needsclick .needsclick .needsclick .needsclick input:hover {
        border-bottom: 1px solid #6d6d6d !important; }
    .newsletter-section .form__sign-up input {
      width: calc(100% + 30px) !important;
      border-bottom: 1px solid #6d6d6d !important;
      color: black !important;
      font-size: 16px !important; }
      .newsletter-section .form__sign-up input:hover {
        border-color: #6d6d6d !important; }
    .newsletter-section .form__sign-up .icon-arrow {
      display: inline-block;
      position: absolute;
      right: 6px;
      top: 10px;
      z-index: 1; }
    .newsletter-section .form__sign-up .kl-private-quill-wrapper-Lkqws1.kl-private-quill-wrapper-Lkqws1.kl-private-quill-wrapper-Lkqws1 .ql-editor strong {
      color: #6d6d6d; }

/*================ Accordion Section ================*/
.accordion-section__container .accordion-section__content {
  max-width: 75.5rem;
  margin: 0 auto; }
  .accordion-section__container .accordion-section__content .accordion-section__accordions {
    border-top: 1px solid #eeeeee;
    margin: 0 auto; }
    .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button {
      color: black;
      justify-content: left;
      flex-direction: row;
      padding: 0;
      text-align: left;
      padding-right: 40px; }
      @media only screen and (max-width: 47.99em) {
        .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button {
          font-size: 13px;
          line-height: 18px;
          letter-spacing: 1.75px; } }
    .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-header {
      padding: 15px;
      margin: 0; }
      .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-header[aria-expanded=false]:before, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-header[aria-expanded=true]:before {
        font-size: 3rem; }
        @media only screen and (min-width: 48em) {
          .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-header[aria-expanded=false]:before, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-header[aria-expanded=true]:before {
            font-size: 3.5rem; } }
      @media only screen and (min-width: 48em) {
        .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-header {
          padding: 25px 30px;
          padding-left: 4.1%; } }
    .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-content {
      padding-left: 15px;
      padding-right: 4.1%;
      padding-bottom: 0; }
      @media only screen and (min-width: 48em) {
        .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-content {
          padding-left: 4.1%; } }
      .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-content .accodion-item__content {
        margin-bottom: 0;
        padding-bottom: 30px;
        font-weight: 400;
        font-size: inherit; }
        .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-content .accodion-item__content p {
          margin-bottom: 1em;
          font-size: inherit; }
        .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-content .accodion-item__content a {
          font-size: inherit !important;
          border-bottom: 2px solid #ddc3be; }
          .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-content .accodion-item__content a::before {
            display: none; }
        @media only screen and (min-width: 48em) {
          .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-content .accodion-item__content {
            padding-bottom: 50px;
            font-size: 16px;
            line-height: 18.5px; } }
        @media only screen and (min-width: 64em) {
          .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-content .accodion-item__content {
            padding-top: 25px; } }
.accordion-section__container .accordion-section__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px; }
  .accordion-section__container .accordion-section__footer .accordion-section__button {
    margin: 0 auto; }

/*================ Gallery Section ================*/
.gallery-section__container .gallery-grid__container {
  display: grid; }
.gallery-section__container .gallery-grid__2 .image-container .ratio-box,
.gallery-section__container .gallery-grid__3 .image-container .ratio-box,
.gallery-section__container .gallery-grid__4 .image-container .ratio-box {
  height: 100%; }
  .gallery-section__container .gallery-grid__2 .image-container .ratio-box .gallery-section__image,
  .gallery-section__container .gallery-grid__3 .image-container .ratio-box .gallery-section__image,
  .gallery-section__container .gallery-grid__4 .image-container .ratio-box .gallery-section__image {
    object-fit: cover; }
.gallery-section__container .gallery-grid__2 {
  grid-template-columns: repeat(2, 1fr); }
.gallery-section__container .gallery-grid__3,
.gallery-section__container .gallery-grid__4 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr); }
  @media only screen and (min-width: 48em) {
    .gallery-section__container .gallery-grid__3,
    .gallery-section__container .gallery-grid__4 {
      grid-template-rows: auto; } }
@media only screen and (min-width: 48em) {
  .gallery-section__container .gallery-grid__3 {
    grid-template-columns: repeat(3, 1fr); } }
@media only screen and (max-width: 47.99em) {
  .gallery-section__container .gallery-grid__3 .image-container:last-of-type {
    grid-column-start: 1;
    grid-column-end: 3; }
    .gallery-section__container .gallery-grid__3 .image-container:last-of-type .ratio-box {
      height: 50%;
      padding-top: 50% !important; } }
@media only screen and (min-width: 48em) {
  .gallery-section__container .gallery-grid__4 {
    grid-template-columns: repeat(4, 1fr); } }
.gallery-section__container .section-headline, .gallery-section__container .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .gallery-section__container .accordion-section__accodion-button {
  margin: 0;
  padding: 0 5px; }
  @media only screen and (max-width: 29.99em) {
    .gallery-section__container .section-headline, .gallery-section__container .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .gallery-section__container .accordion-section__accodion-button {
      font-size: 30px;
      line-height: 56px; }
      .gallery-section__container .section-headline .cursive-text, .gallery-section__container .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button .cursive-text, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .gallery-section__container .accordion-section__accodion-button .cursive-text {
        font-size: inherit;
        line-height: normal; } }
.gallery-section__container.gallery-section__relative {
  position: relative;
  display: grid; }
  .gallery-section__container.gallery-section__relative:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0; }
  .gallery-section__container.gallery-section__relative .section-headline, .gallery-section__container.gallery-section__relative .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .gallery-section__container.gallery-section__relative .accordion-section__accodion-button {
    color: #fff;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.75);
    z-index: 2;
    width: 100%;
    grid-column: 1;
    grid-row: 1; }
  .gallery-section__container.gallery-section__relative .gallery-grid__container {
    grid-column: 1;
    grid-row: 1; }

/*================ Gallery Section ================*/
.content-cards__container .content-cards {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; }
  @media only screen and (min-width: 48em) {
    .content-cards__container .content-cards {
      padding: 0 2.5rem;
      align-items: flex-start;
      flex-direction: row; } }
  @media only screen and (min-width: 1440px) {
    .content-cards__container .content-cards {
      padding: 0; } }
  .content-cards__container .content-cards .card__container {
    width: 100%; }
    @media only screen and (min-width: 48em) {
      .content-cards__container .content-cards .card__container {
        flex: 1;
        max-width: 33.333%; } }
  @media only screen and (min-width: 48em) {
    .content-cards__container .content-cards .card__image .ratio-box {
      padding-top: 100% !important; } }
  @media only screen and (min-width: 48em) {
    .content-cards__container .content-cards .card__image .card-image {
      object-fit: cover; } }
  .content-cards__container .content-cards .card__title {
    text-align: left;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 20px; }
  .content-cards__container .content-cards .card__content {
    margin-top: 20px;
    margin-bottom: 0; }
  .content-cards__container .content-cards .card__link {
    color: black;
    text-decoration: none; }
    .content-cards__container .content-cards .card__link:hover .card__button .section-button, .content-cards__container .content-cards .card__link:focus .card__button .section-button, .content-cards__container .content-cards .card__link:active .card__button .section-button {
      outline: none;
      background: #CDB2AB;
      border: 2px solid #CDB2AB; }
  .content-cards__container .content-cards .card__button {
    margin-top: 20px; }

/*================ Content Panel ================*/
.content-panel {
  padding: 0 15px;
  margin-top: 35px;
  margin-bottom: 35px; }
  @media only screen and (min-width: 64em) {
    .content-panel {
      margin-top: 100px;
      margin-bottom: 100px; } }
  @media only screen and (min-width: 48em) {
    .content-panel {
      padding: 0 1.25rem; } }
  @media only screen and (min-width: 64em) {
    .content-panel {
      margin-top: 50px;
      margin-bottom: 50px; } }
  @media only screen and (min-width: 1440px) {
    .content-panel {
      padding: 0; } }
  .content-panel .content-panel__container {
    margin-top: 0;
    margin-bottom: 0; }
    .content-panel .content-panel__container + .content-panel__container {
      margin-top: 70px; }
      @media only screen and (min-width: 48em) {
        .content-panel .content-panel__container + .content-panel__container {
          margin-top: 100px; } }
  .content-panel .content-panel__meta--video {
    position: relative;
    min-height: 150px; }
  .content-panel .content-panel__image-container.page-collab-image-text__image-container {
    margin-bottom: 34px; }
    .content-panel .content-panel__image-container.page-collab-image-text__image-container .content-panel__image {
      width: 100%; }
    @media only screen and (min-width: 48em) {
      .content-panel .content-panel__image-container.page-collab-image-text__image-container {
        margin-bottom: 0; } }
  .content-panel .page-collab-image-text__text-container,
  .content-panel .page-collab-image-text__image-container {
    margin-bottom: 0; }
  .content-panel .page-collab-image-text__container--top .content-panel__image-container {
    margin-bottom: 34px; }
    @media only screen and (min-width: 48em) {
      .content-panel .page-collab-image-text__container--top .content-panel__image-container {
        margin-bottom: 0; } }
  .content-panel .page-collab-image-text__container--bottom .content-panel__content {
    margin-bottom: 34px; }
    @media only screen and (min-width: 48em) {
      .content-panel .page-collab-image-text__container--bottom .content-panel__content {
        margin-bottom: 0; } }
  .content-panel .page-collab-image-text__container--bottom .content-panel__image-container {
    margin-bottom: 0; }
  @media only screen and (min-width: 48em) {
    .content-panel .content-panel__image-container,
    .content-panel .content-panel__content-container {
      padding: 0 32px; } }
  .content-panel .content-panel__content-container .content-panel__content {
    width: 100%;
    text-align: left; }
  .content-panel .content-panel__content-container .section-headline, .content-panel .content-panel__content-container .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .content-panel .content-panel__content-container .accordion-section__accodion-button {
    text-align: left; }
  .content-panel .content-panel__content-container .content-panel__title,
  .content-panel .content-panel__content-container .content-panel__subtitle {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0; }
  .content-panel .content-panel__content-container .content-panel__highlight {
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    background-color: black;
    padding: 7px 12px;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 1px; }
    @media only screen and (min-width: 48em) {
      .content-panel .content-panel__content-container .content-panel__highlight {
        letter-spacing: 2px;
        font-size: 14px;
        line-height: 16px; } }
  .content-panel .content-panel__content-container .content-panel__description {
    font-size: inherit;
    line-height: inherit;
    margin: 0; }

/*================ Gift Card ================*/
.gift-card-template {
  background-color: #fafafa; }
  .gift-card-template .site-header__logo {
    width: 100%; }
    .gift-card-template .site-header__logo .site-logo {
      max-width: 25rem; }
      .gift-card-template .site-header__logo .site-logo svg {
        width: 100%; }
  .gift-card-template #gift-card-outer-container {
    background-color: #ddc3be; }
  .gift-card-template #gift-card-actions .btn {
    border-radius: 0; }
  .gift-card-template #gift-card-header {
    padding: 2rem;
    border-bottom: 1px solid #eeeeee; }
    .gift-card-template #gift-card-header .section-headline, .gift-card-template #gift-card-header .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .gift-card-template #gift-card-header .accordion-section__accodion-button {
      float: inherit;
      text-align: center;
      font-weight: 500;
      color: black; }
  .gift-card-template #gift-card-code-inner strong {
    color: #6d6d6d;
    border: 1px dashed #ddc3be; }
  .gift-card-template #gift-card-instructions {
    color: #6d6d6d; }
  .gift-card-template #gift-card-actions {
    border-bottom: 1px solid #eeeeee; }
    .gift-card-template #gift-card-actions .action-link {
      color: #a7b2b8; }
  .gift-card-template ::selection {
    background: #a7b2b8; }

/*================ Image Details Block ================*/
.page-section--image-details {
  background-color: #f6f7f8;
  padding: 60px 15px;
  margin: 0;
  overflow: hidden; }
  @media only screen and (min-width: 48em) {
    .page-section--image-details {
      padding: 55px 15px; } }
  .page-section--image-details .container {
    max-width: 95rem; }

@media only screen and (min-width: 64em) {
  .image-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr; } }

.image-details__button {
  margin-top: 30px; }

.image-details__header {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400; }
  @media only screen and (min-width: 64em) {
    .image-details__header {
      grid-row: 1;
      grid-column: 1 / -1;
      font-size: 40px;
      line-height: 49px; } }

.image-details__image {
  padding: 0 5px; }
  @media only screen and (min-width: 64em) {
    .image-details__image {
      grid-column: 2;
      grid-row: 2 / span 2;
      padding: 0;
      max-width: 450px;
      width: 100%;
      height: auto;
      margin: 0 auto; } }
  .image-details__image .background-image {
    object-fit: contain; }

.image-details__items {
  margin-top: 20px; }
  .image-details__items:before {
    display: block;
    content: '';
    background-color: #a7b2b8;
    width: 1px;
    height: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%); }
  .image-details__items:after {
    display: block;
    position: absolute;
    content: '';
    background-color: #a7b2b8;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    top: 0;
    left: 50%;
    transform: translateX(-50%); }
  @media only screen and (min-width: 64em) {
    .image-details__items {
      position: relative;
      grid-column: 1 / span 3;
      grid-row: 2;
      z-index: 5;
      width: 100%;
      margin-top: 0; }
      .image-details__items:before, .image-details__items:after {
        display: none; }
      .image-details__items .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 10px;
        width: 100%; } }
  @media (min-width: 1440px) {
    .image-details__items .swiper-wrapper {
      grid-row-gap: 30px; } }
  @media only screen and (min-width: 64em) {
    .image-details__items .swiper-slide {
      width: auto !important;
      margin-right: 0 !important; }
      .image-details__items .swiper-slide:nth-of-type(even) {
        text-align: right;
        grid-column: 3; }
        .image-details__items .swiper-slide:nth-of-type(even) .detail-item__title {
          grid-template-columns: minmax(92px, 1fr) auto;
          text-align: right; }
        .image-details__items .swiper-slide:nth-of-type(even) .detail-item__copy {
          text-align: right; }
      .image-details__items .swiper-slide:nth-of-type(odd) {
        grid-column: 1; }
        .image-details__items .swiper-slide:nth-of-type(odd) .detail-item__title {
          grid-template-columns: auto minmax(92px, 1fr); }
          .image-details__items .swiper-slide:nth-of-type(odd) .detail-item__title:before {
            order: 2; } }
      @media only screen and (min-width: 64em) and (min-width: 64em) {
        .image-details__items .swiper-slide:nth-of-type(even) .detail-item__grid {
          grid-template-columns: auto 100px; }
          .image-details__items .swiper-slide:nth-of-type(even) .detail-item__grid .detail-item__image {
            grid-column: 2;
            grid-row: 1/-1; } }
      @media only screen and (min-width: 64em) and (min-width: 64em) {
        .image-details__items .swiper-slide:nth-of-type(odd) .detail-item__grid {
          grid-template-columns: 100px auto; }
          .image-details__items .swiper-slide:nth-of-type(odd) .detail-item__grid .detail-item__image {
            grid-column: 1;
            grid-row: 1/-1; } }

.image-details-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px; }
  .image-details-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(167, 178, 184, 0.5);
    margin: 0 6px !important; }
  .image-details-swiper-pagination .swiper-pagination-bullet-active {
    background: #a7b2b8; }
  @media only screen and (min-width: 64em) {
    .image-details-swiper-pagination {
      display: none; } }

.detail-item {
  padding: 20px;
  background-color: transparent;
  transition: 0.25s all ease-in-out;
  margin-left: -20px;
  margin-right: -20px; }
  @media only screen and (min-width: 64em) {
    .detail-item {
      background-color: transparent;
      border-radius: 0;
      padding: 10px;
      margin: 0; } }
  @media only screen and (min-width: 64em) {
    .detail-item.detail-item__grid {
      display: grid;
      grid-template-rows: auto auto;
      grid-column-gap: 20px; } }

.detail-item__image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 14px; }
  @media only screen and (min-width: 64em) {
    .detail-item__image {
      margin-bottom: 0; } }

.detail-item__title {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  justify-content: center; }
  .detail-item__title span {
    white-space: normal; }
  @media only screen and (min-width: 64em) {
    .detail-item__title {
      text-align: left;
      position: relative;
      display: grid;
      margin: 0;
      grid-gap: 7px; }
      .detail-item__title:before {
        display: inline-flex;
        content: '';
        background-color: #a7b2b8;
        width: 100%;
        max-width: 100%;
        height: 1px;
        position: relative;
        left: 0; } }

.detail-item__copy {
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0; }
  @media only screen and (min-width: 64em) {
    .detail-item__copy {
      text-align: left;
      margin-top: 15px; } }

.detail-item__link {
  color: black;
  text-decoration: none; }
  .detail-item__link:hover .detail-item, .detail-item__link:focus .detail-item, .detail-item__link:active .detail-item {
    background-color: #E7E7E7; }

.detail-item__title-wrapper {
  display: inline-block; }
  @media only screen and (min-width: 64em) {
    .detail-item__title-wrapper {
      flex: none; } }

.image-details__button {
  text-align: center; }
  .image-details__button .button {
    font-size: 18px; }

.image-details__footnote {
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px; }

/*================ Image Slider ================*/
@media only screen and (min-width: 64em) {
  .page-section--image-slider {
    margin-bottom: 65px; } }
.page-section--image-slider.background__light-gray {
  background-color: #f6f7f8;
  padding-top: 70px;
  padding-bottom: 70px;
  margin-top: 0;
  margin-bottom: 0; }
  @media only screen and (min-width: 64em) {
    .page-section--image-slider.background__light-gray {
      padding-top: 100px;
      padding-bottom: 65px; } }

.image-slider__container-wrapper.container {
  max-width: 1430px; }
.image-slider__container-wrapper .section-headline, .image-slider__container-wrapper .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .accordion-section__accodion-button, .accordion-section__container .accordion-section__content .accordion-section__accordions .accordion-section__accodion-each .image-slider__container-wrapper .accordion-section__accodion-button {
  margin-bottom: 40px; }
.image-slider__container-wrapper .image-slider__container {
  padding-left: 15px; }
  @media only screen and (min-width: 48em) {
    .image-slider__container-wrapper .image-slider__container {
      padding: 0 15px; } }
  @media only screen and (min-width: 64em) {
    .image-slider__container-wrapper .image-slider__container {
      max-width: 90%; } }
  .image-slider__container-wrapper .image-slider__container .image-slider__image-desktop {
    overflow: hidden;
    position: relative; }
    .image-slider__container-wrapper .image-slider__container .image-slider__image-desktop .ratio-box {
      padding-top: 100% !important;
      position: initial; }
      .image-slider__container-wrapper .image-slider__container .image-slider__image-desktop .ratio-box img {
        object-fit: cover;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .image-slider__container-wrapper .image-slider__container[js-slide-per-view="1"] .image-slider__image-desktop {
    max-height: 562px;
    max-width: 1000px;
    margin: 0 auto; }
  .image-slider__container-wrapper .image-slider__container[js-slide-per-view="2"] .image-slider__image-desktop {
    max-height: 472px; }
  .image-slider__container-wrapper .image-slider__container .image-slider {
    padding: 0 7.5px; }
    @media only screen and (min-width: 64em) {
      .image-slider__container-wrapper .image-slider__container .image-slider {
        padding: 0 10px; } }
  .image-slider__container-wrapper .image-slider__container .image-slider__title {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center; }
  .image-slider__container-wrapper .image-slider__container .image-slider__link .image-slider__title {
    color: black;
    text-decoration: none;
    transition: all 400ms ease-in-out; }
  .image-slider__container-wrapper .image-slider__container .image-slider__link .image-slider__image-desktop {
    position: relative; }
  .image-slider__container-wrapper .image-slider__container .image-slider__link .image-slider__button {
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    background: #f6f7f8;
    padding: 2px 17px;
    color: black;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translate(-50%, 15px);
    z-index: 3;
    transition: transform 400ms ease-in-out; }
  .image-slider__container-wrapper .image-slider__container .image-slider__link:hover .image-slider__title, .image-slider__container-wrapper .image-slider__container .image-slider__link:focus .image-slider__title, .image-slider__container-wrapper .image-slider__container .image-slider__link:active .image-slider__title {
    text-decoration: underline; }
  .image-slider__container-wrapper .image-slider__container .image-slider__link:hover .image-slider__button, .image-slider__container-wrapper .image-slider__container .image-slider__link:focus .image-slider__button, .image-slider__container-wrapper .image-slider__container .image-slider__link:active .image-slider__button {
    transform: translate(-50%, -35px); }
  .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slick-dotted.slick-slider {
    margin-bottom: 0; }
  .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .homepage-hero.slick-active:before {
    display: none; }
  .image-slider__container-wrapper .image-slider__container .slick-dots {
    margin-top: 40px; }
    @media only screen and (min-width: 64em) {
      .image-slider__container-wrapper .image-slider__container .slick-dots {
        margin-top: 50px; } }
    .image-slider__container-wrapper .image-slider__container .slick-dots li {
      margin: 0 3px; }
      .image-slider__container-wrapper .image-slider__container .slick-dots li:only-of-type {
        display: none; }
      .image-slider__container-wrapper .image-slider__container .slick-dots li button:before {
        background: #eaccce;
        opacity: 0.5;
        border: none;
        transition: opacity 1s; }
      .image-slider__container-wrapper .image-slider__container .slick-dots li.slick-active button:before {
        background: #eaccce;
        transition: opacity 1s;
        opacity: 1; }
  .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .slick-list {
    max-width: 100%; }
    @media only screen and (min-width: 64em) {
      .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .slick-list {
        max-width: 90%; } }
  .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .product-image__thumbnail-image-next {
    right: 15px;
    top: 100%; }
    @media only screen and (min-width: 64em) {
      .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .product-image__thumbnail-image-next {
        right: 25px;
        top: 45%; } }
  .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .product-image__thumbnail-image-prev {
    left: 15px;
    top: 100%; }
    @media only screen and (min-width: 64em) {
      .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .product-image__thumbnail-image-prev {
        left: 25px;
        top: 45%; } }

/*================ Promo Slider ================*/
.promo-slider {
  margin-top: 30px; }
  .promo-slider .promo-slider__image-desktop {
    max-height: 134px; }
  @media only screen and (min-width: 48em) {
    .promo-slider .promo-slider__image-desktop {
      max-height: 200px; } }
  .promo-slider .text-color-white {
    color: #fff; }
  .promo-slider .text-color-black {
    color: #000; }
  .promo-slider .promo-slider__container .slick-arrow svg {
    width: 1.2em !important;
    height: 1.2em !important; }
  .promo-slider .image-slider__link:hover .image-slider__title {
    text-decoration: none !important; }
  .promo-slider .image-slider__link:hover .promo-slider__link-title {
    text-decoration: underline !important; }
  .promo-slider .slick-list {
    /* margin: 0 -5px; */
    max-width: 100%; }
  .promo-slider .slick-slide {
    margin: 0 5px;
    width: 90vw !important; }
  @media only screen and (min-width: 48em) {
    .promo-slider .slick-slide {
      width: auto; } }
  .promo-slider .slick-initialized .slick-slide {
    display: flex; }
  .promo-slider .slick-track, .promo-slider .slick-list {
    display: flex; }
  .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider {
    padding: 0;
    display: flex;
    text-align: left;
    width: 438px;
    flex-direction: column; }
    .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider p {
      margin-top: 0; }
    .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider h3, .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider p {
      font-size: 16px;
      padding-left: 10px;
      padding-right: 10px; }
    .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider .promo-slider__link-title {
      margin-bottom: 20px;
      margin-top: auto; }
    .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider .promo-slider__title {
      font-weight: bold; }
    .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider .promo-slider__title, .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider .promo-slider__description {
      text-align: left; }
    .promo-slider .image-slider__container-wrapper .image-slider__container .image-slider .image-slider__link {
      width: 100%; }
  .promo-slider .image-slider__link {
    display: flex;
    flex-direction: column; }
  .promo-slider .image-slider__image-desktop img {
    transition: all 1s; }
  .promo-slider .image-slider__link:hover > .image-slider__image-desktop img {
    transform: translate(-50%, -50%) scale(1.1); }
  @media only screen and (min-width: 64em) {
    .promo-slider .image-slider__container-wrapper .image-slider__container .slick-dots {
      margin-top: 10px; } }
  @media only screen and (min-width: 64em) {
    .promo-slider .image-slider__image-desktop {
      height: 200px; }
    .promo-slider .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .product-image__thumbnail-image-prev {
      left: 40%;
      top: 100%;
      fill: #DDC3BE; }
    .promo-slider .image-slider__container-wrapper .image-slider__container.homepage-hero__container.slide .product-image__thumbnail-image-next {
      right: 40%;
      top: 100%;
      fill: #DDC3BE; } }
  .promo-slider .product-image__thumbnail-image-prev:hover svg, .promo-slider .product-image__thumbnail-image-next:hover svg, .promo-slider .product-image__featured-image-prev:hover svg, .promo-slider .product-image__featured-image-next:hover svg {
    color: #EFEFEF;
    fill: #EFEFEF; }

/*================ Featured Blog Post ================*/
.bg-section__house-seen .featured-blog-post-section .bg-section__house-seen {
  display: none; }

.featured-blog-post-section {
  overflow: hidden; }
  .featured-blog-post-section .featured-blog__background-img.bg-section__house-seen {
    position: initial; }
    .featured-blog-post-section .featured-blog__background-img.bg-section__house-seen .croll-bg_img-house {
      top: auto;
      bottom: 0; }
  .featured-blog-post-section .featured-blog__container.home-page .featured-blog .featured-blog__left-each .featured-blog__left-text .featured-blog__left-title {
    white-space: normal;
    text-align: center;
    font-weight: 400; }
    .bg-section__house-seen .featured-blog-post-section .featured-blog__container.home-page .featured-blog .featured-blog__left-each .featured-blog__left-text .featured-blog__left-title {
      white-space: nowrap; }
  .featured-blog-post-section .featured-blog__subtitle-link {
    display: flex;
    justify-content: center; }
    .featured-blog-post-section .featured-blog__subtitle-link .featured-blog__left-subtitle {
      display: inline-block; }
      .featured-blog-post-section .featured-blog__subtitle-link .featured-blog__left-subtitle:after {
        width: 100%;
        left: 0;
        bottom: -1px;
        content: "";
        display: block;
        min-height: 1px;
        background: transparent;
        margin-top: 4px; }
    .featured-blog-post-section .featured-blog__subtitle-link:hover .featured-blog__left-subtitle:after, .featured-blog-post-section .featured-blog__subtitle-link:focus .featured-blog__left-subtitle:after, .featured-blog-post-section .featured-blog__subtitle-link:active .featured-blog__left-subtitle:after {
      background: #ddc3be;
      transition: width .3s ease 0s,left .3s ease 0s; }
  @media only screen and (min-width: 48em) {
    .featured-blog-post-section.home-page__container .featured-blog__container.home-page {
      padding: 80px 0; } }

/*================ Custom Video ================*/
.custom-video-section .container {
  max-width: 67.6rem; }
@media only screen and (max-width: 1191px) {
  .custom-video-section .content-page__container {
    min-height: auto; } }

/*================ Image Upload Block ================*/
.image-upload-section__container .image-upload__container .has-mobile-image .desktop-image {
  display: none; }
  @media only screen and (min-width: 48em) {
    .image-upload-section__container .image-upload__container .has-mobile-image .desktop-image {
      display: block; } }
.image-upload-section__container .image-upload__container .has-mobile-image .mobile-image {
  display: block; }
  @media only screen and (min-width: 48em) {
    .image-upload-section__container .image-upload__container .has-mobile-image .mobile-image {
      display: none; } }

/*================ Globo Mega Menu ================*/
.desktopNav {
  width: 100%;
  padding: 0 30px !important;
  flex-wrap: nowrap !important; }

.search-desktop_container {
  width: calc(100% + 5rem);
  margin-left: -3.5rem;
  margin-top: 155px !important; }

.search-desktop_container.active {
  margin-top: 155px; }

.gm-text {
  text-transform: uppercase !important;
  font-family: 'Cormorant' !important;
  font-style: normal !important;
  font-size: 16px !important;
  line-height: 23px !important; }

.gm-links .gm-item .gm-text {
  font-size: 12px !important;
  line-height: 16px !important;
  font-family: Montserrat,Arial,sans-serif !important;
  text-transform: none !important; }

.gm-menu-installed .gm-menu .gm-item.gm-level-0 > .gm-target > .gm-icon, .gm-menu-installed .gm-menu .gm-item.gm-level-0 > .gm-target > .gm-text, .gm-menu-installed .gm-menu .gm-item.gm-level-0 > .gm-target > .gm-retractor {
  font-weight: 500 !important; }

.gm-description {
  position: relative;
  display: inline !important; }

.site-header__logo {
  position: relative;
  top: 5px !important; }

.gm-description::before {
  content: "";
  background-color: #D7B6B1;
  transition: 0.4s ease-out;
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -2px; }

.gm-html-inner, .gm-menu-installed .gm-menu .gm-submenu .gm-item .gm-target:hover .gm-text {
  font-weight: 600 !important; }

.gm-tab-panel .gm-image-1:hover .gm-description::before {
  width: 100%; }

.gm-active .gm-retractor {
  transform: scaleY(-1); }

.gm-menu-installed .gm-menu > .gm-submenu-mega > a.gm-target:hover .gm-text,
.gm-level-0.gm-active > a > .gm-text,
.gm-menu-installed .gm-menu > .gm-submenu-mega > a.gm-target:hover .gm-retractor,
.gm-level-0.gm-active > a > .gm-retractor {
  color: black !important;
  font-weight: 700 !important;
  fill: black !important;
  opacity: 60%; }

.gm-submenu-mega.gm-submenu-align-full .gm-submenu,
.gm-submenu-mega.gm-submenu-align-full .gm-tab-links .gm-active.gm-has-submenu .gm-target {
  transition: 0.3s all;
  opacity: 0 !important; }

.gm-submenu-mega.gm-submenu-align-full .gm-tab-contents li.gm-tab-content.hc.gm-active:first-child {
  height: auto; }

.gm-submenu-mega.gm-submenu-align-full.gm-active .gm-submenu,
.gm-submenu-mega.gm-submenu-align-full.gm-active .gm-tab-links .gm-active.gm-has-submenu .gm-target {
  opacity: 100% !important; }

.gm-menu-installed .gm-menu .gm-item.gm-submenu-mega:hover .gm-submenu {
  opacity: 100% !important; }

.gm-level-0:first-of-type {
  flex-shrink: 1 !important; }

li:nth-of-type(4) {
  margin-left: auto !important; }

.dektop-menu__small .site-header-desktop__buttons {
  width: auto;
  margin-right: 52px !important; }

.site-header header {
  margin: 0; }

.gm-submenu {
  width: 100vw !important;
  margin-top: 20px; }

.gm-submenu-align-full .gm-submenu.gm-dropdown, .gm-submenu-align-full > .gm-submenu {
  left: calc(-55vw + 50%) !important; }

.gm-contact, .gm-html, .gm-image, .gm-links, .gm-products-carousel, .gm-products-grid, .gm-products-list, .gm-single-product {
  padding: 21px !important; }

.gm-tab-panel .gm-grid-item .gm-links, .gm-tab-panel .gm-grid-item .gm-image {
  padding: 0 !important; }

.gm-image .gm-text {
  text-transform: none !important; }

.gm-menu li, .theme_store_id_855 .HorizontalList.gm-menu {
  margin-bottom: 10px; }

.gm-tab-panel .gm-image-1:hover .gm-menu-installed .gm-menu .gm-submenu .gm-item .gm-description {
  font-weight: 700 !important; }

.site-header__promo-bar {
  padding: 0;
  border-bottom: none;
  font-weight: 500; }

.gm-image .gm-text {
  text-transform: none; }

.gm-tabs-left .gm-tab-links .gm-item a {
  padding-left: 50px !important; }

.gm-menu-installed .gm-menu .gm-grid-item {
  padding: 0 33px; }

.gm-target:hover {
  font-weight: 700 !important; }

.gm-item {
  cursor: pointer; }

.gm-level-0:last-of-type:hover a {
  opacity: 60%; }

.gm-image-1 .js-no-transition:hover > .gm-target .gm-text .gm-description {
  font-weight: 600 !important; }

.gm-tab-panel {
  padding: 25px 0 !important;
  padding-right: 50px !important; }

.gm-tab-links .gm-item:first-of-type {
  margin-top: 12px !important;
  flex-shrink: 1 !important; }

.item_tab {
  cursor: pointer; }

.drawer .box_tabs_bottom_mobile_nav {
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8; }

.drawer .box_tabs_bottom_mobile_nav .item_tab.active {
  background: #F6F6F6 !important; }

.mobile-nav button div:first-of-type {
  padding-left: 0; }

.mobile-nav__link svg, .mobile-nav__link:focus svg {
  fill: #000 !important; }

.mobile-nav__container .container-nav-mobile-tabs {
  padding: 0 !important; }

.mobile-nav__link {
  padding: 25px 12px !important;
  align-items: flex-start; }

.mobile-nav__sublink {
  padding-left: 0 !important;
  font-size: 14px !important;
  color: #414141 !important; }

.container-nav-mobile-tabs ul li {
  border-top: none;
  padding-top: 0; }

.container-nav-mobile-tabs .mobile-nav .item-one .item-two {
  padding: 10px 26px !important; }

.mobile-nav__plus-icon, .mobile-nav__minus-icon {
  width: 8px !important; }

.mobile-nav--has-submenu .mobile-nav__plus-icon, .mobile-nav--has-submenu .mobile-nav__minus-icon {
  width: 6px !important; }

.mobile-nav--has-submenu .mobile-nav__link[aria-expanded="true"] {
  background: #F0DADB; }

.site-header-desktop__button.user__button {
  padding-right: 20px; }

.title-single-menu-mobile {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding-left: 12px !important; }

.gm-retractor {
  margin-left: 5px !important; }

.site-header header {
  padding-left: 52px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.gm-menu-installed .gm-menu .gm-submenu .gm-item .gm-description {
  font-weight: unset !important; }

.gm-tab-content .gm-has-submenu {
  padding-left: 33px !important; }

@media only screen and (max-width: 1150px) {
  .site-header.home-page .site-logo {
    max-width: 181px; } }
@media only screen and (max-width: 1093px) {
  .desktopNav {
    display: none !important; }

  .site-header.home-page .site-header-dektop__menu, .site-header-desktop {
    padding: 0 !important;
    padding-left: 0px !important; }

  .gm-menu-installed .gm-menu .gm-item.gm-level-0 > .gm-target {
    padding: 0 10px !important; }

  .site-header header {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; }

  button.mobile-nav__link {
    padding-top: 20px; }

  .site-header-mobile__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    margin-right: 20px; }

  .mobile-nav__submenu {
    margin: 0 !important;
    padding: 0; }

  .user__button {
    display: none; }

  .site-header-mobile__menu {
    display: flex;
    margin-left: 8px; }

  .home-page .icon-user-home, .home-page .icon-cart-home, .home-page .icon-search-home {
    width: 24px !important; }

  .site-header-desktop__mobile {
    display: block; }

  .site-header.home-page .site-header-dektop__menu {
    width: auto !important; }

  .site-header-mobile__button__container {
    width: auto; }

  .site-logo {
    margin: 0; }

  .mobile-nav__container {
    padding: 6rem 0; }

  .dektop-menu__small .site-header-desktop__buttons {
    margin-right: 0; }

  .site-header.home-page header {
    padding: 10px 0;
    padding-left: 20px; }

  .site-header-desktop__buttons {
    gap: 20px; }

  .container-nav-mobile-tabs ul li {
    padding-top: 0 !important; }

  .container-nav-mobile-tabs ul {
    margin: 0; }

  .site-header.home-page .site-header-desktop__buttons .site-header-desktop__button.search .btnIconSearch {
    padding-right: 0 !important; }

  .container-nav-mobile-tabs ul li {
    border-top: none;
    border-bottom: 1px solid #D8D8D8; }

  .container-nav-mobile-tabs ul li {
    border-top: none !important; }

  .mobile-nav--has-submenu, .mobile-nav__sublink-container {
    border-bottom: none !important;
    border-top: none !important; }

  .container-nav-mobile-tabs ul li {
    padding-top: 0 !important; }

  .mobile-nav--has-submenu {
    padding: 0 !important; }

  .mobile-nav--has-submenu .mobile-nav__link {
    display: flex;
    align-items: flex-start;
    padding: 12px !important; }

  .mobile-nav__plus-icon, .mobile-nav__minus-icon {
    width: 12px !important;
    height: 12px; }

  .mobile-nav--no-submenu:last-of-type {
    border-bottom: none !important; }

  .mobile-nav__link svg, .mobile-nav__link:focus svg {
    position: relative;
    top: -3px; }

  .container-nav-mobile-tabs .mobile-nav .item-one a, .container-nav-mobile-tabs .mobile-nav .item-one button {
    font-size: 16px !important; }

  .container-nav-mobile-tabs .mobile-nav .item-one .item-two a, .container-nav-mobile-tabs .mobile-nav .item-one .item-two button {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #414141 !important; }

  .mobile-nav button, .mobile-nav a.title_parent, .mobile-nav a.title-single-menu-mobile {
    font-size: 22px !important; } }
@media only screen and (max-width: 450px) {
  .site-header-mobile__search-icon svg {
    width: 24px;
    transform: translateY(-3px); }

  .site-header-mobile__search-icon {
    margin-right: 5px;
    -webkit-tap-highlight-color: transparent;
    color: inherit; }

  .site-header-mobile__buttons {
    margin-right: 0; }

  .home-page header .box_mobile_search {
    margin-top: 125px; }

  #nav-menu-icon {
    height: 8px !important; }

  .site-header.home-page .site-header-dektop__menu, .site-header-desktop {
    padding-left: 0px !important; }

  .drawer .box_tabs_bottom_mobile_nav .item_tab {
    height: 50px !important; }

  .drawer .box_tabs_bottom_mobile_nav .item_tab p {
    line-height: 50px !important;
    font-size: 14px !important; }

  .mobile-nav__container {
    margin: 6rem 0;
    padding: 0 !important; }

  .drawer .box_tabs_bottom_mobile_nav .item_tab {
    height: 50px !important; }

  .drawer .box_tabs_bottom_mobile_nav .item_tab p {
    line-height: 50px !important;
    font-size: 14px !important; } }
/* PROMO BAR */
.site-header__promo-bar {
  background: #8897A0 !important;
  height: 35px;
  font-weight: 400 !important;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: none !important; }

.site-header.home-page .site-header__promo-bar {
  white-space: unset !important; }

/* LOYALTY PAGE */
#loyalty-points .content-page__title {
  background: url(https://cdn.shopify.com/s/files/1/0173/4842/files/Loyalty_Program_Banner.jpg) center;
  background-size: auto;
  background-size: cover; }
