/**
 * Base
 */

*,
*:before,
*:after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
  margin: 0;
}

[hidden] {
  display: none;
}

/**
 * HTML5 display definitions
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

/**
 * Text-level semantic
 */
:active {
  outline: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}
a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-size: inherit;
  font-weight: inherit;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

/**
 * Embedded content
 */
img {
  height: auto;
  border-style: none;
  vertical-align: top;
}

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

/**
 * Grouping content
 */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 16px;
}

/**
 * Forms
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button,
input[type="submit"] {
  padding: 0;
  overflow: visible;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
  border-radius: 0;
}

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

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

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

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 6px 10px 12px;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*! Avalanche | MIT License | @colourgarden */
/*------------------------------------
 *   Grid LAYOUT
 *------------------------------------*/
.Grid {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0 0 0 -24px;
  font-size: 0;
}

.Grid__Cell {
  overflow: hidden;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 0 0 0 24px;
  margin: 0;
  vertical-align: top;
  font-size: 1rem;
}

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

.Grid--center > .Grid__Cell {
  text-align: left;
}

.Grid__Cell--center {
  display: block;
  margin: 0 auto;
}

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

.Grid--right > .Grid__Cell {
  text-align: left;
}

.Grid--middle > .Grid__Cell {
  vertical-align: middle;
}

.Grid--bottom > .Grid__Cell {
  vertical-align: bottom;
}

.Grid--m {
  margin-left: -30px;
}

.Grid--m > .Grid__Cell {
  padding-left: 30px;
}

.Grid--l {
  margin-left: -50px;
}

.Grid--l > .Grid__Cell {
  padding-left: 50px;
}

.Grid--xl {
  margin-left: -50px;
}

.Grid--xl > .Grid__Cell {
  padding-left: 50px;
}

@media screen and (min-width: 1240px) {
  .Grid--m {
    margin-left: -60px;
  }

  .Grid--m > .Grid__Cell {
    padding-left: 60px;
  }

  .Grid--l {
    margin-left: -80px;
  }

  .Grid--l > .Grid__Cell {
    padding-left: 80px;
  }

  .Grid--xl {
    margin-left: -100px;
  }

  .Grid--xl > .Grid__Cell {
    padding-left: 100px;
  }
}
/*------------------------------------*\
    Grid WIDTHS
\*------------------------------------*/
.\31\/2,
.\32\/4,
.\36\/12 {
  width: 50%;
}

.\31\/3,
.\34\/12 {
  width: 33.33333%;
}

.\32\/3,
.\38\/12 {
  width: 66.66667%;
}

.\31\/4,
.\33\/12 {
  width: 25%;
}

.\33\/4,
.\39\/12 {
  width: 75%;
}

.\31\/12 {
  width: 8.33333%;
}

.\32\/12 {
  width: 16.66667%;
}

.\35\/12 {
  width: 41.66667%;
}

.\37\/12 {
  width: 58.33333%;
}

.\31\30\/12 {
  width: 83.33333%;
}

.\31\31\/12 {
  width: 91.66667%;
}

@media screen and (max-width: 640px) {
  .hidden-phone {
    display: none !important;
  }

  .\31\/2--phone,
  .\32\/4--phone,
  .\36\/12--phone {
    width: 50%;
  }

  .\31\/3--phone,
  .\34\/12--phone {
    width: 33.33333%;
  }

  .\32\/3--phone,
  .\38\/12--phone {
    width: 66.66667%;
  }

  .\31\/4--phone,
  .\33\/12--phone {
    width: 25%;
  }

  .\33\/4--phone,
  .\39\/12--phone {
    width: 75%;
  }

  .\31\/12--phone {
    width: 8.33333%;
  }

  .\32\/12--phone {
    width: 16.66667%;
  }

  .\35\/12--phone {
    width: 41.66667%;
  }

  .\37\/12--phone {
    width: 58.33333%;
  }

  .\31\30\/12--phone {
    width: 83.33333%;
  }

  .\31\31\/12--phone {
    width: 91.66667%;
  }
}
@media screen and (min-width: 641px) and (max-width: 1007px) {
  .hidden-tablet {
    display: none !important;
  }

  .\31\/2--tablet,
  .\32\/4--tablet,
  .\36\/12--tablet {
    width: 50%;
  }

  .\31\/3--tablet,
  .\34\/12--tablet {
    width: 33.33333%;
  }

  .\32\/3--tablet,
  .\38\/12--tablet {
    width: 66.66667%;
  }

  .\31\/4--tablet,
  .\33\/12--tablet {
    width: 25%;
  }

  .\33\/4--tablet,
  .\39\/12--tablet {
    width: 75%;
  }

  .\31\/12--tablet {
    width: 8.33333%;
  }

  .\32\/12--tablet {
    width: 16.66667%;
  }

  .\35\/12--tablet {
    width: 41.66667%;
  }

  .\37\/12--tablet {
    width: 58.33333%;
  }

  .\31\30\/12--tablet {
    width: 83.33333%;
  }

  .\31\31\/12--tablet {
    width: 91.66667%;
  }
}
@media screen and (min-width: 641px) {
  .hidden-tablet-and-up {
    display: none !important;
  }

  .\31\/2--tablet-and-up,
  .\32\/4--tablet-and-up,
  .\36\/12--tablet-and-up {
    width: 50%;
  }

  .\31\/3--tablet-and-up,
  .\34\/12--tablet-and-up {
    width: 33.33333%;
  }

  .\32\/3--tablet-and-up,
  .\38\/12--tablet-and-up {
    width: 66.66667%;
  }

  .\31\/4--tablet-and-up,
  .\33\/12--tablet-and-up {
    width: 25%;
  }

  .\33\/4--tablet-and-up,
  .\39\/12--tablet-and-up {
    width: 75%;
  }

  .\31\/12--tablet-and-up {
    width: 8.33333%;
  }

  .\32\/12--tablet-and-up {
    width: 16.66667%;
  }

  .\35\/12--tablet-and-up {
    width: 41.66667%;
  }

  .\37\/12--tablet-and-up {
    width: 58.33333%;
  }

  .\31\30\/12--tablet-and-up {
    width: 83.33333%;
  }

  .\31\31\/12--tablet-and-up {
    width: 91.66667%;
  }
}
@media screen and (max-width: 1007px) {
  .hidden-pocket {
    display: none !important;
  }

  .\31\/2--pocket,
  .\32\/4--pocket,
  .\36\/12--pocket {
    width: 50%;
  }

  .\31\/3--pocket,
  .\34\/12--pocket {
    width: 33.33333%;
  }

  .\32\/3--pocket,
  .\38\/12--pocket {
    width: 66.66667%;
  }

  .\31\/4--pocket,
  .\33\/12--pocket {
    width: 25%;
  }

  .\33\/4--pocket,
  .\39\/12--pocket {
    width: 75%;
  }

  .\31\/12--pocket {
    width: 8.33333%;
  }

  .\32\/12--pocket {
    width: 16.66667%;
  }

  .\35\/12--pocket {
    width: 41.66667%;
  }

  .\37\/12--pocket {
    width: 58.33333%;
  }

  .\31\30\/12--pocket {
    width: 83.33333%;
  }

  .\31\31\/12--pocket {
    width: 91.66667%;
  }
}
@media screen and (min-width: 1008px) and (max-width: 1239px) {
  .hidden-lap {
    display: none !important;
  }

  .\31\/2--lap,
  .\32\/4--lap,
  .\36\/12--lap {
    width: 50%;
  }

  .\31\/3--lap,
  .\34\/12--lap {
    width: 33.33333%;
  }

  .\32\/3--lap,
  .\38\/12--lap {
    width: 66.66667%;
  }

  .\31\/4--lap,
  .\33\/12--lap {
    width: 25%;
  }

  .\33\/4--lap,
  .\39\/12--lap {
    width: 75%;
  }

  .\31\/12--lap {
    width: 8.33333%;
  }

  .\32\/12--lap {
    width: 16.66667%;
  }

  .\35\/12--lap {
    width: 41.66667%;
  }

  .\37\/12--lap {
    width: 58.33333%;
  }

  .\31\30\/12--lap {
    width: 83.33333%;
  }

  .\31\31\/12--lap {
    width: 91.66667%;
  }
}
@media screen and (min-width: 1008px) {
  .hidden-lap-and-up {
    display: none !important;
  }

  .\31\/2--lap-and-up,
  .\32\/4--lap-and-up,
  .\36\/12--lap-and-up {
    width: 50%;
  }

  .\31\/3--lap-and-up,
  .\34\/12--lap-and-up {
    width: 33.33333%;
  }

  .\32\/3--lap-and-up,
  .\38\/12--lap-and-up {
    width: 66.66667%;
  }

  .\31\/4--lap-and-up,
  .\33\/12--lap-and-up {
    width: 25%;
  }

  .\33\/4--lap-and-up,
  .\39\/12--lap-and-up {
    width: 75%;
  }

  .\31\/12--lap-and-up {
    width: 8.33333%;
  }

  .\32\/12--lap-and-up {
    width: 16.66667%;
  }

  .\35\/12--lap-and-up {
    width: 41.66667%;
  }

  .\37\/12--lap-and-up {
    width: 58.33333%;
  }

  .\31\30\/12--lap-and-up {
    width: 83.33333%;
  }

  .\31\31\/12--lap-and-up {
    width: 91.66667%;
  }
}
@media screen and (min-width: 1240px) {
  .hidden-desk {
    display: none !important;
  }

  .\31\/2--desk,
  .\32\/4--desk,
  .\36\/12--desk {
    width: 50%;
  }

  .\31\/3--desk,
  .\34\/12--desk {
    width: 33.33333%;
  }

  .\32\/3--desk,
  .\38\/12--desk {
    width: 66.66667%;
  }

  .\31\/4--desk,
  .\33\/12--desk {
    width: 25%;
  }

  .\33\/4--desk,
  .\39\/12--desk {
    width: 75%;
  }

  .\31\/12--desk {
    width: 8.33333%;
  }

  .\32\/12--desk {
    width: 16.66667%;
  }

  .\35\/12--desk {
    width: 41.66667%;
  }

  .\37\/12--desk {
    width: 58.33333%;
  }

  .\31\30\/12--desk {
    width: 83.33333%;
  }

  .\31\31\/12--desk {
    width: 91.66667%;
  }
}
/* Create each media query */
@media screen and (min-width: 1500px) {
  .hidden-widescreen {
    display: none !important;
  }

  .\31\/2--widescreen,
  .\32\/4--widescreen,
  .\36\/12--widescreen {
    width: 50%;
  }

  .\31\/3--widescreen,
  .\34\/12--widescreen {
    width: 33.33333%;
  }

  .\32\/3--widescreen,
  .\38\/12--widescreen {
    width: 66.66667%;
  }

  .\31\/4--widescreen,
  .\33\/12--widescreen {
    width: 25%;
  }

  .\33\/4--widescreen,
  .\39\/12--widescreen {
    width: 75%;
  }

  .\31\/12--widescreen {
    width: 8.33333%;
  }

  .\32\/12--widescreen {
    width: 16.66667%;
  }

  .\35\/12--widescreen {
    width: 41.66667%;
  }

  .\37\/12--widescreen {
    width: 58.33333%;
  }

  .\31\30\/12--widescreen {
    width: 83.33333%;
  }

  .\31\31\/12--widescreen {
    width: 91.66667%;
  }
}
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp img {
  max-width: none;
}

.pswp--animate_opacity {
  opacity: 0.001;
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  will-change: opacity;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  cursor: url("//www.annesemonin.com/cdn/shop/t/54/assets/cursor-zoom-in.svg?v=174614733836777429241656676562")
      18 18,
    zoom-in;
  cursor: -webkit-image-set(
        url("//www.annesemonin.com/cdn/shop/t/54/assets/cursor-zoom-in.svg?v=174614733836777429241656676562")
          1x,
        url("//www.annesemonin.com/cdn/shop/t/54/assets/cursor-zoom-in-2x.svg?v=165995047460875994171656676562")
          2x
      )
      18 18,
    zoom-in;
}

.pswp--zoomed-in .pswp__img {
  cursor: -webkit-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__container {
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

.pswp__img--placeholder--blank {
  background: white;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/**
 * Custom UI
 */
.pswp__ui {
  position: absolute;
  visibility: hidden;
  width: 100%;
  bottom: 50px;
  opacity: 0;
  transform: translateY(35px);
  left: 0;
  text-align: center;
  transition: all 0.15s ease-in-out;
}

.pswp__button[disabled] {
  opacity: 0;
  pointer-events: none;
}

.pswp--animated-in .pswp__ui {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.pswp--animated-in .pswp__ui--hidden {
  visibility: hidden;
  opacity: 0;
}

.pswp__button--close {
  margin: 0 18px;
}

.pswp__button svg {
  pointer-events: none;
}

.pswp__error-msg {
  position: absolute;
  top: 40%;
  margin: 0 15px;
  padding: 8px 15px;
  background: #e6554d;
  color: #ffffff;
  text-align: center;
}

/**
 * In our theme, we express all font sizes in PX. The reason is that our designer is very picky and want each font size to be exactly as on designed files
 * (which is good :p), but as a consequence, sometimes some font sizes scales across devices (smaller on mobile, bigger on desktop), but sometimes it's the
 * same, which make it super hard to use relative units like REM.
 */
/*
 * Precomputed linear color channel values, for use in contrast calculations.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 *
 * Algorithm, for c in 0 to 255:
 * f(c) {
 *   c = c / 255;
 *   return c < 0.03928 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4);
 * }
 *
 * This lookup table is needed since there is no `pow` in SASS.
 */
/**
 * Calculate the luminance for a color.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 */
/**
 * Calculate the contrast ratio between two colors.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 */
.js .no-js,
.no-js .hide-no-js {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

body:not(.is-tabbing) button:focus,
body:not(.is-tabbing) input:focus,
body:not(.is-tabbing) select:focus,
body:not(.is-tabbing) textarea:focus {
  outline: none;
}

[data-scrollable] {
  overflow: auto;
  /*-webkit-overflow-scrolling: touch;*/
}

.Container {
  margin: 0 auto;
  padding: 0 24px;
}

.Container--narrow {
  max-width: 1420px;
}

.Container--extraNarrow {
  max-width: 800px;
}

/*
   This fixes an issue in IE10/11 when using min-height in flex children
   @info: https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
*/
.FlexboxIeFix {
  display: flex;
  flex-direction: row;
}

@media screen and (min-width: 641px) {
  .Container {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1240px) {
  .Container {
    padding: 0 80px;
  }
}
/**
 * Very general typographic rules that are applied site wide
 */
html {
  font-size: 14px;
}

body {
  font-weight: 400;
  font-style: normal;
  color: #454545;
  background: white;
  line-height: 1.65;
}

.Link,
.shopify-payment-button__more-options {
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.supports-hover .Link--primary:hover,
.Link--primary.is-active {
  color: #454545;
}

.supports-hover .Link--secondary:hover,
.Link--secondary.is-active {
  color: #9d9d9d;
}

.Link--underline,
.shopify-payment-button__more-options {
  position: relative;
  display: inline-block;
}
.Link--underline::before,
.shopify-payment-button__more-options::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  background: currentColor;
  transform: scale(1, 1);
  transform-origin: left center;
  transition: transform 0.2s ease-in-out;
}
@media (-moz-touch-enabled: 0), (hover: hover) {
  .Link--underline:hover::before,
  .shopify-payment-button__more-options:hover::before {
    transform: scale(0, 1);
  }
}

.Link--underlineShort::before {
  width: calc(100% - 0.2em);
}

.Link--underlineNative {
  text-decoration: underline;
  text-underline-position: under;
}

.heading {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.Heading {
  font-weight: 400;
  font-style: normal;
  color: #454545;
  transition: color 0.2s ease-in-out;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.Text--subdued {
  color: #9d9d9d;
}

.Text--alignCenter {
  text-align: center !important;
}

.Text--alignRight {
  text-align: right !important;
}

.Icon-Wrapper--clickable {
  position: relative;
  background: transparent;
  /* This is used to increase the clickable area */
}
.Icon-Wrapper--clickable::before {
  position: absolute;
  content: "";
  top: -8px;
  right: -12px;
  left: -12px;
  bottom: -8px;
  transform: translateZ(0);
  /* Needed to avoid a glitch on iOS */
}

.Icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  fill: currentColor;
  vertical-align: middle;
  stroke-width: 1px;
  background: none;
  pointer-events: none;
}

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

.u-h1,
.Rte h1 {
  font-size: 20px;
}

.u-h2,
.Rte h2 {
  font-size: 18px;
}

.u-h3,
.Rte h3 {
  font-size: 16px;
}

.u-h4,
.Rte h4 {
  font-size: 15px;
}

.u-h5,
.Rte h5 {
  font-size: 13px;
}

.u-h6,
.Rte h6 {
  font-size: 12px;
}

.u-h7 {
  font-size: 11px;
}

.u-h8 {
  font-size: 10px;
}

@media screen and (min-width: 641px) {
  .u-h1,
  .Rte h1 {
    font-size: 20px;
  }

  .u-h2,
  .Rte h2 {
    font-size: 18px;
  }

  .u-h3,
  .Rte h3 {
    font-size: 18px;
  }

  .u-h4,
  .Rte h4 {
    font-size: 16px;
  }

  .u-h5,
  .Rte h5 {
    font-size: 13px;
  }

  .u-h6,
  .Rte h6 {
    font-size: 12px;
  }

  .u-h7 {
    font-size: 11px;
  }

  .u-h8 {
    font-size: 10px;
  }
}
.js .PageTransition {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

/**
 * ----------------------------------------------------------------------------
 * Standard button
 * ----------------------------------------------------------------------------
 */
.Button,
.shopify-payment-button__button--unbranded,
#shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .spr-button-primary:not(input),
#shopify-product-reviews input.spr-button-primary,
#shopify-product-reviews .spr-pagination-prev > a,
#shopify-product-reviews .spr-pagination-next > a {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  line-height: normal;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-style: normal;
  background-color: transparent;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
}
.Button::before,
.shopify-payment-button__button--unbranded::before,
#shopify-product-reviews .spr-summary-actions-newreview::before,
#shopify-product-reviews .spr-button-primary:not(input)::before,
#shopify-product-reviews input.spr-button-primary::before,
#shopify-product-reviews .spr-pagination-prev > a::before,
#shopify-product-reviews .spr-pagination-next > a::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(1, 1);
  transform-origin: left center;
  z-index: -1;
}
@media (-moz-touch-enabled: 0), (hover: hover) {
  .Button:not([disabled])::before,
  .shopify-payment-button__button--unbranded:not([disabled])::before,
  #shopify-product-reviews
    .spr-summary-actions-newreview:not([disabled])::before,
  #shopify-product-reviews
    .spr-button-primary:not(input):not([disabled])::before,
  #shopify-product-reviews input.spr-button-primary:not([disabled])::before,
  #shopify-product-reviews .spr-pagination-prev > a:not([disabled])::before,
  #shopify-product-reviews .spr-pagination-next > a:not([disabled])::before {
    transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .Button:not([disabled]):hover::before,
  .shopify-payment-button__button--unbranded:not([disabled]):hover::before,
  #shopify-product-reviews
    .spr-summary-actions-newreview:not([disabled]):hover::before,
  #shopify-product-reviews
    .spr-button-primary:not(input):not([disabled]):hover::before,
  #shopify-product-reviews
    input.spr-button-primary:not([disabled]):hover::before,
  #shopify-product-reviews
    .spr-pagination-prev
    > a:not([disabled]):hover::before,
  #shopify-product-reviews
    .spr-pagination-next
    > a:not([disabled]):hover::before {
    transform-origin: right center;
    transform: scale(0, 1);
  }
}
.Button[disabled],
[disabled].shopify-payment-button__button--unbranded,
#shopify-product-reviews [disabled].spr-summary-actions-newreview,
#shopify-product-reviews [disabled].spr-button-primary:not(input),
#shopify-product-reviews input[disabled].spr-button-primary,
#shopify-product-reviews .spr-pagination-prev > a[disabled],
#shopify-product-reviews .spr-pagination-next > a[disabled] {
  cursor: not-allowed;
}

.Button--primary,
.shopify-payment-button__button--unbranded,
#shopify-product-reviews .spr-summary-actions-newreview,
#shopify-product-reviews .spr-button-primary:not(input) {
  color: white;
  border-color: #d6c7b9;
}
.Button--primary::before,
.shopify-payment-button__button--unbranded::before,
#shopify-product-reviews .spr-summary-actions-newreview::before,
#shopify-product-reviews .spr-button-primary:not(input)::before {
  background-color: #d6c7b9;
}
@media (-moz-touch-enabled: 0), (hover: hover) {
  .Button--primary:not([disabled]):hover,
  .shopify-payment-button__button--unbranded:not([disabled]):hover,
  #shopify-product-reviews .spr-summary-actions-newreview:not([disabled]):hover,
  #shopify-product-reviews
    .spr-button-primary:not([disabled]):hover:not(input) {
    color: #d6c7b9;
    background-color: transparent;
  }
}

.Button--secondary,
#shopify-product-reviews .spr-pagination-prev > a,
#shopify-product-reviews .spr-pagination-next > a {
  color: #9d9d9d;
  border: 1px solid rgba(157, 157, 157, 0.2);
}
.Button--secondary::before,
#shopify-product-reviews .spr-pagination-prev > a::before,
#shopify-product-reviews .spr-pagination-next > a::before {
  background-color: #d6c7b9;
  transform-origin: right center;
  transform: scale(0, 1);
}
@media (-moz-touch-enabled: 0), (hover: hover) {
  .Button--secondary:not([disabled]):hover,
  #shopify-product-reviews .spr-pagination-prev > a:not([disabled]):hover,
  #shopify-product-reviews .spr-pagination-next > a:not([disabled]):hover {
    color: white;
    border-color: #d6c7b9;
  }
  .Button--secondary:not([disabled]):hover::before,
  #shopify-product-reviews
    .spr-pagination-prev
    > a:not([disabled]):hover::before,
  #shopify-product-reviews
    .spr-pagination-next
    > a:not([disabled]):hover::before {
    transform-origin: left center;
    transform: scale(1, 1);
  }
}

.Button--full {
  width: 100%;
}

.Button--stretched {
  padding-left: 40px;
  padding-right: 40px;
}

.Button--small {
  font-size: 9px;
  padding: 12px 24px;
}

.Button__SeparatorDot {
  display: inline-block;
  margin: 0 18px;
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 100%;
  background: currentColor;
}

.ButtonWrapper {
  text-align: center;
}

/* We allow those buttons to have secondary state. The secondary state is displayed (for instance during loading time) when
   the class "Button--secondaryState" is added */
.Button__PrimaryState,
.Button__SecondaryState {
  display: block;
  transition: transform 0.4s cubic-bezier(0.75, 0, 0.125, 1),
    opacity 0.4s cubic-bezier(0.75, 0, 0.125, 1);
}

.Button__SecondaryState {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 100%);
}

.Button--secondaryState .Button__PrimaryState {
  opacity: 0;
  transform: translateY(-100%);
}
.Button--secondaryState .Button__SecondaryState {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/**
 * ----------------------------------------------------------------------------
 * Button group
 * ----------------------------------------------------------------------------
 */
.ButtonGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: -12px;
}

.ButtonGroup__Item {
  margin: 12px;
}

.ButtonGroup__Item--expand {
  flex: 1 1 0;
}

.ButtonGroup--spacingSmall {
  margin: -8px;
}
.ButtonGroup--spacingSmall .ButtonGroup__Item {
  margin: 8px;
}

.ButtonGroup--sameSize .ButtonGroup__Item {
  flex: 0 1 auto;
  white-space: nowrap;
  max-width: 245px;
}
@supports (-o-object-fit: cover) or (object-fit: cover) {
  .ButtonGroup--sameSize .ButtonGroup__Item {
    flex: 1 1 0;
    /* There is a bug in IE11 so we're forced to use this trick */
  }
}

@media screen and (min-width: 641px) {
  @supports (display: inline-grid) {
    .ButtonGroup--sameSize {
      display: inline-grid;
      grid-template-columns: 1fr 1fr;
    }

    .ButtonGroup--sameSize .ButtonGroup__Item {
      max-width: none;
    }
  }
}
/**
 * ----------------------------------------------------------------------------
 * Round button
 *
 * Those buttons are not really button like the others, but they are used in
 * lot of different places to hold things like icons
 * ----------------------------------------------------------------------------
 */
.RoundButton,
.flickity-prev-next-button {
  position: relative;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #d6c7b9;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(54, 54, 54, 0.15);
  vertical-align: middle;
  line-height: 0;
  transform: scale(1.001);
  /* Avoid rounding error during animation in Chrome */
  transition: background 0.15s ease-in-out, opacity 0.15s ease-in-out,
    transform 0.2s ease-in-out, color 0.2s ease-in-out;
  overflow: hidden;
}
.RoundButton.is-active,
.is-active.flickity-prev-next-button {
  background: #d6c7b9;
  color: white;
  outline: none;
}
.RoundButton svg,
.flickity-prev-next-button svg {
  height: 15px;
  width: 15px;
  fill: currentColor;
}

.RoundButton--small {
  width: 35px;
  height: 35px;
}
.RoundButton--small svg {
  height: 14px;
  width: 14px;
}

.RoundButton--medium {
  width: 50px;
  height: 50px;
}
.RoundButton--medium svg {
  height: 18px;
  width: 18px;
}

.RoundButton--large {
  width: 55px;
  height: 55px;
}
.RoundButton--large svg {
  height: 15px;
  width: 15px;
}

.RoundButton--flat {
  box-shadow: 0 1px 5px rgba(54, 54, 54, 0.15);
  color: rgba(214, 199, 185, 0.5);
}

/* We allow those buttons to have secondary state. The secondary state is displayed (for instance during loading time) when
   the class "RoundButton--withSecondaryState" is added */
.RoundButton__PrimaryState,
.RoundButton__SecondaryState {
  display: block;
  transition: transform 0.4s cubic-bezier(0.75, 0, 0.125, 1),
    opacity 0.4s cubic-bezier(0.75, 0, 0.125, 1);
}

.RoundButton__SecondaryState {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 100%);
}

.RoundButton--secondaryState .RoundButton__PrimaryState {
  opacity: 0;
  transform: translateY(-100%);
}
.RoundButton--secondaryState .RoundButton__SecondaryState {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Animation states */
@-webkit-keyframes buttonFromLeftToRight {
  0% {
    transform: translateX(0%);
  }

  25% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    transform: translateX(-100%);
  }

  75% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes buttonFromLeftToRight {
  0% {
    transform: translateX(0%);
  }

  25% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    transform: translateX(-100%);
  }

  75% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@-webkit-keyframes buttonFromRightToLeft {
  0% {
    transform: translateX(0%);
  }

  25% {
    opacity: 0;
    transform: translateX(-100%);
  }

  50% {
    opacity: 0;
    transform: translateX(100%);
  }

  75% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes buttonFromRightToLeft {
  0% {
    transform: translateX(0%);
  }

  25% {
    opacity: 0;
    transform: translateX(-100%);
  }

  50% {
    opacity: 0;
    transform: translateX(100%);
  }

  75% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@-webkit-keyframes buttonFromTopToBottom {
  0% {
    transform: translateY(0%);
  }

  25% {
    opacity: 0;
    transform: translateY(100%);
  }

  50% {
    opacity: 0;
    transform: translateY(-100%);
  }

  75% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes buttonFromTopToBottom {
  0% {
    transform: translateY(0%);
  }

  25% {
    opacity: 0;
    transform: translateY(100%);
  }

  50% {
    opacity: 0;
    transform: translateY(-100%);
  }

  75% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@media (-moz-touch-enabled: 0), (hover: hover) {
  .RoundButton:hover,
  .flickity-prev-next-button:hover {
    transform: scale(1.1);
  }

  .RoundButton--small:hover {
    transform: scale(1.15);
  }

  .RoundButton:not([aria-expanded="true"]):hover,
  .flickity-prev-next-button:not([aria-expanded="true"]):hover {
    color: #d6c7b9;
  }

  .RoundButton[data-animate-left]:hover svg,
  [data-animate-left].flickity-prev-next-button:hover svg,
  .flickity-prev-next-button.previous:hover svg {
    -webkit-animation: buttonFromRightToLeft 0.5s ease-in-out forwards;
    animation: buttonFromRightToLeft 0.5s ease-in-out forwards;
  }

  .RoundButton[data-animate-right]:hover svg,
  [data-animate-right].flickity-prev-next-button:hover svg,
  .flickity-prev-next-button.next:hover svg {
    -webkit-animation: buttonFromLeftToRight 0.5s ease-in-out forwards;
    animation: buttonFromLeftToRight 0.5s ease-in-out forwards;
  }

  .RoundButton[data-animate-bottom]:hover svg,
  [data-animate-bottom].flickity-prev-next-button:hover svg {
    -webkit-animation: buttonFromTopToBottom 0.5s ease-in-out forwards;
    animation: buttonFromTopToBottom 0.5s ease-in-out forwards;
  }
}
/**
 * ----------------------------------------------------------------------------------------------
 * Flickity styles
 * ----------------------------------------------------------------------------------------------
 */
.flickity-enabled {
  position: relative;
}

body:not(.is-tabbing) .flickity-enabled:focus {
  outline: none;
}

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

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

/* draggable */
.flickity-enabled {
  -webkit-tap-highlight-color: transparent;
}

.flickity-enabled.is-draggable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
}
.flickity-prev-next-button[disabled] {
  opacity: 0;
}
.flickity-prev-next-button svg {
  width: auto;
  height: 18px;
  stroke-width: 1.5px;
  stroke: currentColor;
}

/* ---- page dots ---- */
.flickity-page-dots {
  width: 100%;
  padding: 0;
  margin: 22px 0 0 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.Slideshow .flickity-page-dots {
  display: none;
}

@media screen and (min-width: 641px) {
  .Slideshow .flickity-page-dots {
    display: block;
    width: 100%;
    padding: 0;
    margin: 22px 0 0 0;
    list-style: none;
    text-align: center;
    line-height: 1;
  }
}
.flickity-page-dots .dot {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1px solid #e3e3e3;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
  /* This is used to increase the clickable area */
}
.flickity-page-dots .dot::before {
  position: absolute;
  content: "";
  top: -6px;
  right: -6px;
  left: -6px;
  bottom: -6px;
}

.flickity-page-dots .dot.is-selected {
  background: currentColor;
  border-color: currentColor;
}

@media screen and (min-width: 641px) {
  .flickity-page-dots .dot {
    width: 10px;
    height: 10px;
    margin: 0 7px;
    border-width: 2px;
  }
}
/**
 * ----------------------------------------------------------------------------------------------
 * Default styling for site-wide carousel
 * ----------------------------------------------------------------------------------------------
 */
.Carousel {
  position: relative;
}

.Carousel--fixed,
.Carousel--fixed .flickity-viewport,
.Carousel--fixed .Carousel__Cell {
  height: 100%;
}

/* This allows to hide cells that are not first one until slider is loaded */
.Carousel:not(.flickity-enabled) .Carousel__Cell:not(.is-selected) {
  display: none;
}

.Carousel__Cell {
  display: block;
  width: 100%;
}

.js .Carousel--fadeIn .flickity-slider {
  transform: none !important;
}
.js .Carousel--fadeIn .Carousel__Cell {
  left: 0 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.js .Carousel--fadeIn .Carousel__Cell.is-selected {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.Carousel--insideDots .flickity-page-dots {
  position: absolute;
  width: auto;
  margin: 0;
  bottom: 24px;
  left: 20px;
}
.Carousel--insideDots .flickity-page-dots .dot {
  border-color: currentColor;
}
.Carousel--insideDots .flickity-page-dots .dot.is-selected {
  background: currentColor;
}
.Carousel--insideDots .flickity-prev-next-button {
  bottom: -25px;
  z-index: 1;
}
.Carousel--insideDots .flickity-prev-next-button.next {
  right: 25px;
}
.Carousel--insideDots .flickity-prev-next-button.previous {
  right: 75px;
  margin-right: 15px;
}

@media screen and (min-width: 641px) {
  .Carousel--insideDots .flickity-page-dots {
    bottom: 28px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Collapsible
 * ----------------------------------------------------------------------------
 */
.Collapsible {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  overflow: hidden;
}

.Collapsible + .Collapsible {
  border-top: none;
}

.Collapsible--padded {
  padding-left: 24px;
  padding-right: 24px;
}

.Collapsible__Button {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
}

.Collapsible__Plus {
  position: absolute;
  right: 0;
  top: calc(50% - (11px / 2));
  width: 11px;
  height: 11px;
}
.Collapsible__Plus::before,
.Collapsible__Plus::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-color: currentColor;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.Collapsible__Plus::before {
  width: 11px;
  height: 1px;
  opacity: 1;
}
.Collapsible__Plus::after {
  width: 1px;
  height: 11px;
}

.Collapsible__Button[aria-expanded="true"] .Collapsible__Plus::before,
.Collapsible__Button[aria-expanded="true"] .Collapsible__Plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.Collapsible__Button[aria-expanded="true"] .Collapsible__Plus::before {
  opacity: 0;
}

.Collapsible .Collapsible {
  margin-left: 16px;
  border: none;
}

.Collapsible .Collapsible .Collapsible__Button {
  padding: 13px 0;
}

.Collapsible__Inner {
  display: block;
  height: 0;
  visibility: hidden;
  transition: height 0.35s ease-in-out, visibility 0s ease-in-out 0.35s;
  overflow: hidden;
}

.Collapsible__Button[aria-expanded="true"] + .Collapsible__Inner {
  visibility: visible;
  transition: height 0.35s ease-in-out;
}

.Collapsible__Content {
  padding-bottom: 18px;
}

.Collapsible .Linklist {
  margin-bottom: 4px;
}

.Collapsible .Linklist--bordered {
  margin-top: 16px;
  margin-bottom: 4px;
}

@media screen and (min-width: 641px) {
  /* When this class is applied to a collapsible, it will display as a collapsible on mobile but not on larger screen, where it will
     automatically appear is auto-expanded */
  .Collapsible--autoExpand {
    border: none;
    overflow: visible;
  }
  .Collapsible--autoExpand .Collapsible__Button {
    cursor: default;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 16px;
  }
  .Collapsible--autoExpand .Collapsible__Plus {
    display: none;
  }
  .Collapsible--autoExpand .Collapsible__Inner {
    height: auto;
    visibility: visible;
    overflow: visible;
  }
  .Collapsible--autoExpand .Collapsible__Content {
    padding-bottom: 0;
  }
  .Collapsible--autoExpand .Linklist {
    margin-bottom: 0;
  }

  .Collapsible--autoExpand {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1008px) {
  .Collapsible--padded {
    padding-left: 30px;
    padding-right: 30px;
  }

  .Collapsible--large .Collapsible__Button {
    padding: 34px 0;
  }

  .Collapsible--large .Collapsible__Content {
    padding-bottom: 45px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Base drawer
 * ----------------------------------------------------------------------------
 */
.Drawer {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  width: calc(100vw - 65px);
  /* Interestingly, 100% does not work on iOS 9 and lower */
  height: 100vh;
  max-height: none;
  z-index: 20;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
    visibility 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: white;
  box-shadow: none;
  touch-action: manipulation;
  /* Animating box-shadow is slow, even on modern browsers, so we instead move it in a pseudo-element and animate opacity */
}
.Drawer:focus {
  outline: none;
}
.Drawer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: 2px 0 10px rgba(54, 54, 54, 0.2),
    -2px 0 10px rgba(54, 54, 54, 0.2);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.Drawer--secondary {
  background: white;
}

.Drawer--fromLeft {
  transform: translateX(calc(-100vw + 65px));
}

.Drawer--fromRight {
  right: 0;
  left: auto;
  transform: translateX(calc(100vw - 65px));
}

.Drawer[aria-hidden="false"] {
  visibility: visible;
  transform: translateX(0);
}
.Drawer[aria-hidden="false"]::before {
  opacity: 1;
}

.Drawer__Container {
  width: 100%;
}
.Drawer--fromLeft .Drawer__Container {
  padding-left: 18px;
  padding-right: 24px;
}
.Drawer--fromRight .Drawer__Container {
  padding-left: 24px;
  padding-right: 18px;
}

.Drawer__Header {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  max-height: 60px;
  background: inherit;
  text-align: center;
  z-index: 1;
}
@supports (--css: variables) {
  .Drawer__Header {
    height: var(--header-height);
  }
}

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

.Drawer__Close {
  position: absolute;
  margin-left: 0;
  left: 18px;
  top: 5%;
  line-height: 0;
}
.Drawer__Close svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.25px;
}

.Drawer--fromRight .Drawer__Close {
  right: 18px;
  left: auto;
}

.Drawer__Header--bordered {
  box-shadow: 0 -1px #e3e3e3 inset;
}

.Drawer--secondary .Drawer__Header--bordered {
  box-shadow: 0 -1px rgba(227, 227, 227, 0.6) inset;
}

.Drawer--secondary .Collapsible {
  border-bottom-color: rgba(227, 227, 227, 0.6);
}

.Drawer__Content {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: calc(100% - 60px);
  max-height: calc(100% - 50px);
  /* This handles an edge case when the header is much bigger than the maximum size for content, but this only works on Safari as of today */
}
@supports (--css: variables) {
  .Drawer__Content {
    height: calc(100% - var(--header-height));
    max-height: calc(100% - var(--header-height));
  }
}
@supports (width: calc(max(100%))) {
  .Drawer__Content {
    height: calc(max(100% - var(--header-height), 100% - 60px));
    max-height: calc(max(100% - var(--header-height), 100% - 60px));
  }
}

.Drawer__Main {
  flex: 1 1 auto;
}

.Drawer__Footer {
  flex: none;
  box-shadow: 0 -1px #e3e3e3;
}

.Drawer--secondary .Drawer__Footer {
  box-shadow: 0 -1px rgba(227, 227, 227, 0.6);
}

.Drawer__Footer--padded {
  padding: 24px;
}

@media screen and (min-width: 641px) {
  .Drawer {
    width: 400px;
    transform: translateX(-100%);
  }

  .Drawer--small {
    width: 340px;
  }

  .Drawer--fromRight {
    transform: translateX(100%);
  }

  .Drawer__Header {
    max-height: 80px;
    min-height: 60px;
  }

  /*.Drawer__Content {
    min-height: calc(100% - 80px);
    max-height: calc(100% - 80px);
  }*/
  .Drawer--fromLeft .Drawer__Container,
  .Drawer--fromRight .Drawer__Container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .Drawer__Close {
    left: 30px;
  }

  .Drawer--fromRight .Drawer__Close {
    right: 30px;
    left: auto;
  }

  .Drawer__Close svg {
    stroke-width: 1.5px;
  }

  .Drawer__Footer--padded {
    padding: 24px 30px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Animation
 * ----------------------------------------------------------------------------
 */
[data-drawer-animated-left],
[data-drawer-animated-right] {
  opacity: 0;
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}
.Drawer[aria-hidden="false"] [data-drawer-animated-left],
.Drawer[aria-hidden="false"] [data-drawer-animated-right] {
  opacity: 1;
  transform: translateX(0);
}

[data-drawer-animated-left] {
  transform: translateX(-65px);
}

[data-drawer-animated-right] {
  transform: translateX(65px);
}

[data-drawer-animated-bottom] {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.Drawer[aria-hidden="false"] [data-drawer-animated-bottom] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s,
    transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
}

/**
 * ----------------------------------------------------------------------------
 * Basic form
 * ----------------------------------------------------------------------------
 */
.Form {
  width: 100%;
}

.Form__Item {
  position: relative;
  margin-bottom: 15px;
}

.Form__Input,
#shopify-product-reviews .spr-form-input-text,
#shopify-product-reviews .spr-form-input-email,
#shopify-product-reviews .spr-form-input-textarea,
.Form__Textarea {
  -webkit-appearance: none;
  display: block;
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid #e3e3e3;
  width: 100%;
  line-height: normal;
  resize: none;
  transition: border-color 0.1s ease-in-out;
  background: transparent;
}
.Form__Input:focus,
#shopify-product-reviews .spr-form-input-text:focus,
#shopify-product-reviews .spr-form-input-email:focus,
#shopify-product-reviews .spr-form-input-textarea:focus,
.Form__Textarea:focus {
  border-color: #858585;
  outline: none;
}
.Form__Input::-webkit-input-placeholder,
#shopify-product-reviews .spr-form-input-text::-webkit-input-placeholder,
#shopify-product-reviews .spr-form-input-email::-webkit-input-placeholder,
#shopify-product-reviews .spr-form-input-textarea::-webkit-input-placeholder,
.Form__Textarea::-webkit-input-placeholder {
  color: #9d9d9d;
}
.Form__Input::-moz-placeholder,
#shopify-product-reviews .spr-form-input-text::-moz-placeholder,
#shopify-product-reviews .spr-form-input-email::-moz-placeholder,
#shopify-product-reviews .spr-form-input-textarea::-moz-placeholder,
.Form__Textarea::-moz-placeholder {
  color: #9d9d9d;
}
.Form__Input:-ms-input-placeholder,
#shopify-product-reviews .spr-form-input-text:-ms-input-placeholder,
#shopify-product-reviews .spr-form-input-email:-ms-input-placeholder,
#shopify-product-reviews .spr-form-input-textarea:-ms-input-placeholder,
.Form__Textarea:-ms-input-placeholder {
  color: #9d9d9d;
}
.Form__Input::-ms-input-placeholder,
#shopify-product-reviews .spr-form-input-text::-ms-input-placeholder,
#shopify-product-reviews .spr-form-input-email::-ms-input-placeholder,
#shopify-product-reviews .spr-form-input-textarea::-ms-input-placeholder,
.Form__Textarea::-ms-input-placeholder {
  color: #9d9d9d;
}
.Form__Input::placeholder,
#shopify-product-reviews .spr-form-input-text::placeholder,
#shopify-product-reviews .spr-form-input-email::placeholder,
#shopify-product-reviews .spr-form-input-textarea::placeholder,
.Form__Textarea::placeholder {
  color: #9d9d9d;
}

.Form__FloatingLabel {
  position: absolute;
  bottom: calc(100% - 8px);
  left: 10px;
  padding: 0 5px;
  line-height: normal;
  color: #9d9d9d;
  font-size: 11px;
  opacity: 0;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  transform: translateY(3px);
  transition: all 0.3s ease-in-out;
}

.Form__Input:not(:placeholder-shown) ~ .Form__FloatingLabel,
#shopify-product-reviews
  .spr-form-input-text:not(:placeholder-shown)
  ~ .Form__FloatingLabel,
#shopify-product-reviews
  .spr-form-input-email:not(:placeholder-shown)
  ~ .Form__FloatingLabel,
#shopify-product-reviews
  .spr-form-input-textarea:not(:placeholder-shown)
  ~ .Form__FloatingLabel,
.Form__Textarea:not(:placeholder-shown) ~ .Form__FloatingLabel {
  opacity: 1;
  background: white;
  transform: translateY(0);
}

.Form__Checkbox {
  position: absolute;
  opacity: 0;
}

.Form__Checkbox ~ label::before {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  margin-right: 10px;
  border: 1px solid #e3e3e3;
  vertical-align: -2px;
}

.Form__Checkbox ~ svg {
  position: absolute;
  top: 5px;
  left: 1px;
  width: 12px;
  height: 12px;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  will-change: transform;
}

.Form__Checkbox:checked ~ label::before {
  border-color: #454545;
}

.Form__Checkbox:checked ~ svg {
  transform: scale(1);
}

.Form__Alert,
#shopify-product-reviews .spr-form-message {
  margin-bottom: 20px;
}

.Form__Submit {
  display: block;
  margin-top: 20px;
}

.Form__Label,
#shopify-product-reviews .spr-form-label {
  display: block;
  padding-bottom: 8px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
  line-height: normal;
}

.Form--small .Form__Input,
.Form--small #shopify-product-reviews .spr-form-input-text,
#shopify-product-reviews .Form--small .spr-form-input-text,
.Form--small #shopify-product-reviews .spr-form-input-email,
#shopify-product-reviews .Form--small .spr-form-input-email,
.Form--small #shopify-product-reviews .spr-form-input-textarea,
#shopify-product-reviews .Form--small .spr-form-input-textarea,
.Form--small .Form__Textarea {
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.Form--spacingTight .Form__Item {
  margin-bottom: 15px;
}
.Form--spacingTight .Form__Alert,
.Form--spacingTight #shopify-product-reviews .spr-form-message,
#shopify-product-reviews .Form--spacingTight .spr-form-message {
  margin-bottom: 20px;
}

@media screen and (min-width: 641px) {
  .Form__Item,
  .Form__Alert,
  #shopify-product-reviews .spr-form-message {
    margin-bottom: 30px;
  }

  .Form__Group {
    display: flex;
  }

  .Form__Group > .Form__Item {
    flex: 1;
  }

  .Form__Group > :nth-child(2) {
    margin-left: 30px;
  }

  .Form--spacingTight .Form__Group > :nth-child(2) {
    margin-left: 15px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Form elements
 * ----------------------------------------------------------------------------
 */
.Form__Header {
  margin-bottom: 24px;
  text-align: center;
}

.Form__Hint {
  margin: 24px 0 0 0;
}

.Form__Hint:not(:last-child) {
  margin-bottom: 32px;
}

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

.Form__ItemHelp {
  position: absolute;
  right: 12px;
  top: 50%;
  font-size: 11px;
  color: #9d9d9d;
  transform: translateY(-50%);
}

/**
 * ----------------------------------------------------------------------------
 * Styled select
 * ----------------------------------------------------------------------------
 */
select::-ms-expand {
  display: none;
}

.Select {
  position: relative;
  color: currentColor;
  line-height: 1;
  vertical-align: middle;
}

.Select svg {
  position: absolute;
  line-height: normal;
  pointer-events: none;
  vertical-align: baseline;
  fill: currentColor;
}

.Select select {
  /* Disable built-in styles */
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  color: inherit;
  cursor: pointer;
  border-radius: 0;
  line-height: normal;
  /* Remove the ugly blue background on IE when a value is selected */
}
.Select select:focus::-ms-value {
  background: white;
  color: #454545;
}

/* Make sure to have something easy to read... */
.Select option {
  background: white;
  color: black;
}

.Select--primary::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  height: calc(100% - 2px);
  width: 55px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.7) 20%,
    white 40%
  );
  pointer-events: none;
}
.Select--primary select {
  width: 100%;
  height: 45px;
  padding-left: 14px;
  padding-right: 28px;
  border: 1px solid #e3e3e3;
  background: white;
}
.Select--primary select:active,
.Select--primary select:focus {
  border-color: #454545;
  outline: none;
}
.Select--primary svg {
  top: calc(50% - 5px);
  right: 15px;
  width: 10px;
  height: 10px;
  z-index: 1;
}

.Select--transparent select {
  padding-right: 15px;
  background: transparent;
  border: none;
  font-weight: 400;
  font-style: normal;
  font-size: inherit;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.Select--transparent svg {
  top: calc(50% - 3px);
  right: 0;
  height: 6px;
}

.HorizontalList {
  list-style: none;
  margin: -6px -8px;
}

.HorizontalList__Item {
  display: inline-block;
  margin: 6px 8px 6px 8px;
}

.HorizontalList__Item > .Link,
.HorizontalList__Item > .shopify-payment-button__more-options {
  display: inline-block;
}

.HorizontalList--spacingTight {
  margin-left: -8px;
  margin-right: -8px;
}

.HorizontalList--spacingTight .HorizontalList__Item {
  margin-right: 8px;
  margin-left: 8px;
}

.HorizontalList--spacingLoose {
  margin-left: -14px;
  margin-right: -14px;
}

.HorizontalList--spacingLoose .HorizontalList__Item {
  margin-right: 14px;
  margin-left: 14px;
}

.HorizontalList--spacingExtraLoose {
  margin-left: -17px;
  margin-right: -17px;
}

.HorizontalList--spacingExtraLoose .HorizontalList__Item {
  margin-right: 17px;
  margin-left: 17px;
}

.HorizontalList--spacingFill {
  display: flex;
  justify-content: space-around;
  justify-content: space-evenly;
}

.HorizontalList--spacingFill .HorizontalList__Item {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (min-width: 1240px) {
  .HorizontalList--spacingExtraLoose {
    margin-left: -21px;
    margin-right: -21px;
  }

  .HorizontalList--spacingExtraLoose .HorizontalList__Item {
    margin-right: 21px;
    margin-left: 21px;
  }
}
/**
 * This file contains various generic bloc to use with images
 */
/**
 * ----------------------------------------------------------------------------
 * Image overlay
 * ----------------------------------------------------------------------------
 */
.Image--contrast {
  position: relative;
}

.Image--contrast::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(
    to top,
    rgba(4, 4, 4, 0.65),
    rgba(54, 54, 54, 0.2)
  );
}

.Image--contrast > * {
  z-index: 1;
}

/**
 * ----------------------------------------------------------------------------
 * Image lazy loader (integrates with lazy sizes)
 * ----------------------------------------------------------------------------
 */
@-webkit-keyframes lazyLoader {
  0%,
  100% {
    transform: translateX(-50%);
  }

  50% {
    transform: translateX(100%);
  }
}

@keyframes lazyLoader {
  0%,
  100% {
    transform: translateX(-50%);
  }

  50% {
    transform: translateX(100%);
  }
}

.Image--fadeIn {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.Image--lazyLoaded.Image--fadeIn {
  opacity: 1;
  margin-left: 0;
}

.Image--zoomOut {
  transform: scale(1.1);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.Image--lazyLoaded.Image--zoomOut {
  opacity: 1;
  transform: none;
}

.Image--slideRight,
.Image--slideLeft {
  transform: translateX(25px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.Image--slideLeft {
  transform: translateX(-25px);
}

.Image--lazyLoaded.Image--slideRight,
.Image--lazyLoaded.Image--slideLeft {
  opacity: 1;
  transform: translateX(0);
}

.Image__Loader {
  position: absolute;
  display: block;
  height: 2px;
  width: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  margin: auto;
  pointer-events: none;
  background-color: #e3e3e3;
  z-index: -1;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

.Image__Loader::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 200%;
  background-color: #454545;
}

.Image--lazyLoading + .Image__Loader {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.Image--lazyLoading + .Image__Loader::after {
  -webkit-animation: lazyLoader 3s infinite;
  animation: lazyLoader 3s infinite;
  -webkit-animation-timing-function: cubic-bezier(0.43, 0.43, 0.25, 0.99);
  animation-timing-function: cubic-bezier(0.43, 0.43, 0.25, 0.99);
}

/**
 * ----------------------------------------------------------------------------
 * Aspect ratio
 * ----------------------------------------------------------------------------
 */
.AspectRatio {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.AspectRatio::before {
  content: "";
  display: block;
}

.AspectRatio > img, .AspectRatio > picture {
  max-height: 100%;
  max-width: 100%;
}

.AspectRatio--withFallback > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.no-js .AspectRatio > img {
  display: none !important;
}

@supports (--css: variables) {
  /* For dynamic one, we use CSS variables, which makes it only compatible for newer browsers */
  .AspectRatio--withFallback {
    padding-bottom: 0 !important;
    /* For older browsers we use the padding-bottom trick, so make sure to remove it here */
  }

  .AspectRatio::before {
    padding-bottom: calc(75% / (var(--aspect-ratio)));
  }

  
  .AspectRatio > img,
  .AspectRatio > picture,
  .no-js .AspectRatio > noscript img {
    position: absolute;
    top: 0;
    left: 2%;
    height: 100%;
    width: 100%;
  }
}
.AspectRatio--square::before {
  padding-bottom: 100%;
}

.AspectRatio--short::before {
  padding-bottom: 75%;
}

.AspectRatio--tall::before {
  padding-bottom: 150%;
}

.AspectRatio--square > img,
.AspectRatio--short > img,
.AspectRatio--tall > img {
  position: absolute;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@supports (-o-object-fit: contain) or (object-fit: contain) {
  .AspectRatio--square > img,
  .AspectRatio--short > img,
  .AspectRatio--tall > img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.Image--lazyLoad[data-sizes="auto"] {
  width: 100%;
  /* this is needed to help LazySizes calculate the correct size */
}

/**
 * ----------------------------------------------------------------------------
 * List
 * ----------------------------------------------------------------------------
 */
.Linklist {
  list-style: none;
  padding: 0;
}

.Linklist__Item {
  position: relative;
  display: block;
  margin-bottom: 12px;
  width: 100%;
  line-height: 1.5;
  text-align: left;
  transition: all 0.2s ease-in-out;
}
.Linklist__Item:last-child {
  margin-bottom: 0 !important;
}
.Linklist__Item::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  left: 0;
  border-radius: 100%;
  background: #454545;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.Linklist__Item > .Link,
.Linklist__Item > .shopify-payment-button__more-options {
  display: block;
  width: 100%;
  text-align: inherit;
}

.Linklist--spacingLoose .Linklist__Item {
  margin-bottom: 18px;
}

.Linklist__Item.is-selected {
  padding-left: 18px;
}
.Linklist__Item.is-selected::before {
  opacity: 1;
  transition-delay: 0.1s;
}

.Linklist--bordered {
  margin-left: 8px;
  padding: 0 20px 0 25px;
  border-left: 1px solid #e3e3e3;
}

.Linklist--bordered li:first-child .Linklist__Item {
  margin-top: 2px;
}

.Linklist--bordered li:last-child .Linklist__Item {
  margin-bottom: 2px;
}

/**
 * Google map
 */
.FeaturedMap {
  max-width: 1150px;
  margin: 0 auto;
}

.FeaturedMap__MapContainer {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
}

.FeaturedMap__GMap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.FeaturedMap__Info {
  position: relative;
  margin: 0 auto;
  background: white;
  text-align: left;
  z-index: 1;
  padding: 0 0 40px 0;
}

.FeaturedMap__Store {
  display: block;
  margin-bottom: 1.2em;
  font-weight: 400;
  font-style: normal;
}

.FeaturedMap__Address {
  margin-bottom: 1.2em;
}

.FeaturedMap__Location {
  margin-top: 2.7em;
}

@media screen and (min-width: 641px) {
  .FeaturedMap {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    padding-top: 0;
    height: 550px;
  }

  .FeaturedMap__MapContainer {
    flex: 1 0 auto;
    height: 100%;
  }

  .FeaturedMap__Info {
    flex: none;
    min-width: 370px;
    width: 370px;
    padding: 50px 60px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Anchor
 * ----------------------------------------------------------------------------
 */
.Anchor {
  display: block;
  position: relative;
  top: -75px;
  visibility: hidden;
}
@supports (--css: variables) {
  .Anchor {
    top: calc(-1 * (var(--header-height)));
    /* + var(--announcement-bar-height)));*/
  }
}

/**
 * ----------------------------------------------------------------------------
 * Loading bar
 * ----------------------------------------------------------------------------
 */
.LoadingBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  opacity: 0;
  background: #454545;
  transition: width 0.25s ease-in-out;
  z-index: 50;
  pointer-events: none;
}

.LoadingBar.is-visible {
  opacity: 1;
}

@media screen and (min-width: 641px) {
  .LoadingBar {
    height: 3px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Placeholder (used within the theme editor only)
 * ----------------------------------------------------------------------------
 */
.PlaceholderSvg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.PlaceholderSvg--dark {
  background: dimgray;
  fill: #a1a1a1;
}

.PlaceholderBackground {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.7;
}

.PlaceholderBackground__Svg {
  height: 100% !important;
  width: auto !important;
  min-width: 100%;
}

/**
 * ----------------------------------------------------------------------------
 * Quantity selector
 * ----------------------------------------------------------------------------
 */
.QuantitySelector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e3e3e3;
  white-space: nowrap;
}
.QuantitySelector svg {
  width: 10px;
  height: 10px;
  stroke-width: 1.5px;
  vertical-align: -1px;
}

.QuantitySelector__Button {
  display: inline-block;
  padding: 5px 9px;
  /* this allows to slightly increase the clickable area */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.QuantitySelector__CurrentQuantity {
  display: inline-block;
  width: 20px;
  padding: 0;
  font-size: 9px;
  text-align: center;
  letter-spacing: normal;
  background: transparent;
  border: none;
}

.QuantitySelector--large .QuantitySelector__CurrentQuantity {
  width: 35px;
  font-size: 13px;
}
.QuantitySelector--large .QuantitySelector__Button {
  padding: 10px 20px;
}
.QuantitySelector--large svg {
  width: 11px;
  height: 11px;
}

@media screen and (min-width: 641px) {
  .QuantitySelector__Button {
    padding: 7px 14px 8px 14px;
  }

  .QuantitySelector__CurrentQuantity {
    font-size: 11px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Product price
 * ----------------------------------------------------------------------------
 */
.Price {
  display: inline-block;
}

.Price--highlight {
  color: #de9b68;
}

.Price--compareAt {
  position: relative;
  margin-left: 10px;
}
.Price--compareAt::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -0.4em;
  width: calc(100% + 0.8em);
  height: 1px;
  background: currentColor;
}

/**
 * ----------------------------------------------------------------------------
 * Color swatch
 * ----------------------------------------------------------------------------
 */
.ColorSwatch {
  position: relative;
  display: inline-block;
  height: 30px;
  width: 30px;
  vertical-align: top;
  cursor: pointer;
  background-size: cover;
}
.ColorSwatch::after {
  content: "";
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  top: -3px;
  left: -3px;
}
.ColorSwatch:hover::after {
  border: 1px solid #e3e3e3;
}

.ColorSwatch--small {
  width: 16px;
  height: 16px;
}

.ColorSwatch--large {
  width: 36px;
  height: 36px;
}

.ColorSwatch--white {
  outline: 1px solid #e3e3e3;
  outline-offset: -1px;
}

.ColorSwatch.is-active::after,
.ColorSwatch__Radio:checked + .ColorSwatch::after {
  border: 1px solid currentColor !important;
}

.ColorSwatch__Radio {
  display: none;
}

.Collapsible .ColorSwatchList {
  padding-top: 4px;
  padding-bottom: 10px;
}

.Collapsible--autoExpand .ColorSwatchList {
  padding-top: 8px;
  padding-bottom: 12px;
}

/**
 * ----------------------------------------------------------------------------
 * Size swatch
 * ----------------------------------------------------------------------------
 */
.SizeSwatch {
  display: inline-block;
  text-align: center;
  min-width: 36px;
  padding: 6px 10px;
  border: 1px solid #e3e3e3;
  color: #9d9d9d;
  cursor: pointer;
}

.SizeSwatch__Radio {
  display: none;
}

.SizeSwatch.is-active::after,
.SizeSwatch__Radio:checked + .SizeSwatch {
  border-color: #454545;
  color: #454545;
}

/**
 * ----------------------------------------------------------------------------
 * Alerts
 * ----------------------------------------------------------------------------
 */
.Alert,
#shopify-product-reviews .spr-form-message {
  display: block;
  padding: 10px 20px;
  white-space: normal;
  font-size: 1rem;
  word-break: break-all;
  word-break: break-word;
  text-shadow: none;
}

.Alert--large {
  padding: 18px 20px;
}

.Alert--error,
#shopify-product-reviews .spr-form-message-error {
  background: #e4c4c4;
  color: #cb2b2b;
}

.Alert--success,
#shopify-product-reviews .spr-form-message-success {
  background: #d2e4c4;
  color: #307a07;
}

.Alert__ErrorList {
  list-style: none;
}

@media screen and (min-width: 641px) {
  .Alert--large {
    padding: 18px 30px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Segment
 * ----------------------------------------------------------------------------
 */
.Segment + .Segment {
  margin-top: 50px;
}

.Segment__Title {
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
  color: #9d9d9d;
}

.Segment__Title--flexed {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Segment__ActionList {
  margin-top: 16px;
}

.Segment__ActionItem {
  line-height: 1.4;
}

.Segment__ActionItem + .Segment__ActionItem {
  margin-left: 20px;
}

.Segment__ButtonWrapper {
  margin-top: 32px;
}

@media screen and (min-width: 641px) {
  .Segment__Title {
    margin-bottom: 34px;
  }

  .Segment__ActionList {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1240px) {
  .Segment + .Segment {
    margin-top: 65px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Empty state
 * ----------------------------------------------------------------------------
 */
.EmptyState {
  margin: 140px 0;
  text-align: center;
}

.EmptyState__Action {
  display: inline-block;
  margin-top: 20px;
}

@media screen and (min-width: 641px) {
  .EmptyState {
    margin: 200px 0;
  }
}
@media screen and (min-width: 1240px) {
  .EmptyState {
    margin: 250px 0;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Spinner
 * ----------------------------------------------------------------------------
 */
@-webkit-keyframes bouncingSpinnerAnimation {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes bouncingSpinnerAnimation {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.BouncingSpinner {
  display: block;
  text-align: center;
}

.BouncingSpinner > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 100%;
  -webkit-animation: bouncingSpinnerAnimation 1.4s infinite ease-in-out both;
  animation: bouncingSpinnerAnimation 1.4s infinite ease-in-out both;
}

.BouncingSpinner > span:first-child {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.BouncingSpinner > span:nth-child(2) {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

/**
 * ----------------------------------------------------------------------------
 * Video
 * ----------------------------------------------------------------------------
 */
.Video__PlayButton {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
  height: 80px;
  width: 80px;
  cursor: pointer;
  -webkit-filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}
@media (-moz-touch-enabled: 0), (hover: hover) {
  .Video__PlayButton:hover {
    transform: scale(1.1);
  }
}

.Video__PlayButton svg {
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.VideoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.VideoWrapper iframe,
.VideoWrapper object,
.VideoWrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * ----------------------------------------------------------------------------
 * Announcement bar
 * ----------------------------------------------------------------------------
 */
.AnnouncementBar {
  position: relative;
  text-align: center;
  font-size: 9px;
  z-index: 1;
}

.AnnouncementBar__Wrapper {
  padding: 8px 15px;
}

.AnnouncementBar__Content {
  color: inherit;
  margin: 0;
}

@media screen and (min-width: 641px) {
  .AnnouncementBar {
    font-size: 10px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Share buttons
 * ----------------------------------------------------------------------------
 */
.ShareButtons {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.ShareButtons__Item {
  display: table-cell;
  width: 60px;
  height: 45px;
  min-height: 45px;
  color: #9d9d9d;
  text-align: center;
  vertical-align: middle;
  background: white;
  border: 1px solid #e3e3e3;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: all 0.2s ease-in-out;
}
.ShareButtons__Item svg {
  height: 18px;
  width: 18px;
  vertical-align: text-bottom;
}

.ShareButtons__Item--facebook:hover,
.no-supports-hover .ShareButtons__Item--facebook {
  background: #4469af;
  color: #ffffff;
  border-color: #4469af;
  outline: 1.5px solid #4469af;
}

.ShareButtons__Item--pinterest:hover,
.no-supports-hover .ShareButtons__Item--pinterest {
  background: #c8232c;
  color: #ffffff;
  border-color: #c8232c;
  outline: 1.5px solid #c8232c;
}

.ShareButtons__Item--twitter:hover,
.no-supports-hover .ShareButtons__Item--twitter {
  background: #00aced;
  color: #ffffff;
  border-color: #00aced;
  outline: 1.5px solid #00aced;
}

@media screen and (min-width: 641px) {
  .ShareButtons {
    width: auto;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Featured quote
 * ----------------------------------------------------------------------------
 */
.FeaturedQuote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px;
  background: #f1e4d8;
  color: #373737;
  font-size: 17px;
}

.FeaturedQuote__Author {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.5;
}

@media screen and (min-width: 1008px) {
  .FeaturedQuote {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Shopify CAPTCHA
 * ----------------------------------------------------------------------------
 */
.shopify-challenge__container {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.shopify-challenge__container .shopify-challenge__button {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  line-height: normal;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.2em;
  font-family: "Optima nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #d6c7b9;
  color: white;
}


/**
 * ----------------------------------------------------------------------------
 * TOOLTIP
 * ----------------------------------------------------------------------------
 */
@media (-moz-touch-enabled: 0), (hover: hover) {
  [data-tooltip] {
    position: relative;
  }
  [data-tooltip]::before {
    position: absolute;
    content: attr(data-tooltip);
    bottom: 70%;
    left: 70%;
    padding: 4px 11px 3px 11px;
    white-space: nowrap;
    border: 1px solid #e3e3e3;
    background: white;
    color: #9d9d9d;
    font-size: 12px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s ease-in-out, opacity 0.2s ease-in-out;
    z-index: 1;
  }
  [data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
  }
}
.Modal {
  position: fixed;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  top: 50%;
  left: 50%;
  width: 480px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  padding: 15px 20px 20px 20px;
  z-index: 20;
  opacity: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: white;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@supports (--css: variables) {
  .Modal {
    max-height: calc(var(--window-height) - 40px);
  }
}

.Modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.Modal--dark {
  background: #f1e4d8;
  color: #373737;
}
.Modal--dark .Rte h1,
.Modal--dark .Rte h2,
.Modal--dark .Rte h3,
.Modal--dark .Rte h4,
.Modal--dark .Rte h5,
.Modal--dark .Rte h6 {
  color: #373737;
}

.Modal--fullScreen {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: none;
}

.Modal--pageContent {
  padding: 60px 0 50px 0;
}

.Modal--videoContent {
  justify-content: center;
  background: #000000;
  /* Full theatre experience ! */
  color: #ffffff;
}

.Modal .Heading:not(.Link) {
  color: inherit;
}

.Modal__Header {
  margin-bottom: 30px;
  text-align: center;
}

.Modal__Close {
  display: block;
  margin: 25px auto 0 auto;
  flex-shrink: 0;
}

.Modal__Close--outside {
  position: absolute;
  margin-top: 0;
  top: 20px;
  right: 20px;
  line-height: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}
.Modal__Close--outside:hover {
  opacity: 1;
}
.Modal__Close--outside svg {
  height: 16px;
  width: 16px;
  stroke-width: 1.25px;
}

.Modal--fullScreen .Modal__Close--outside {
  right: 40px;
  top: 40px;
}

.Modal__Content iframe {
  display: none;
}

.Modal[aria-hidden="false"] .Modal__Content iframe {
  display: block;
}

/* We override some styles for common elements like table */
.Modal__Content th,
.Modal__Content td {
  border-color: rgba(55, 55, 55, 0.25) !important;
}
.Modal__Content thead th:empty,
.Modal__Content tbody th {
  background: #f1e4d8 !important;
}

@media screen and (min-width: 641px) {
  .Modal:not(.Modal--pageContent) {
    padding: 35px 40px 40px 40px;
  }
}
@media screen and (min-width: 1008px) {
  .Modal {
    flex-direction: column;
  }

  .Modal--pageContent {
    padding: 100px 0 80px 0;
  }

  .Modal--pageContent .Modal__Content {
    flex: 1 0 0;
  }

  .Modal__Close:not(.Modal__Close--outside) {
    margin-top: 40px;
    flex-shrink: 0;
  }
}
/**
 * ----------------------------------------------------------------------------
 * A11Y
 * ----------------------------------------------------------------------------
 */
.PageSkipLink:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #454545;
  background-color: white;
  padding: 10px;
  z-index: 10000;
  transition: none;
}

/**
 * ----------------------------------------------------------------------------
 * Page overlay
 * ----------------------------------------------------------------------------
 */
.PageOverlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  background: #363636;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.PageOverlay.is-visible {
  opacity: 0.5;
  visibility: visible;
}

/**
 * ----------------------------------------------------------------------------
 * Page header
 * ----------------------------------------------------------------------------
 */
.PageHeader {
  position: relative;
  margin: 35px 0;
}

.PageHeader--withBackground {
  display: flex;
  margin: 0;
  width: 100%;
  min-height: 450px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
}

.PageHeader--withBackground .Heading,
.PageHeader--withBackground .Rte a:not(.Button) {
  color: #ffffff;
  -webkit-text-decoration-color: #ffffff;
  text-decoration-color: #ffffff;
}

.PageHeader__ImageWrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}
@supports (--css: variables) {
  .PageHeader__ImageWrapper {
    top: calc(
      -1 * var(--announcement-bar-height, 0px) - var(--header-height, 0px) * var(--use-unsticky-header, 0)
    );
    height: calc(
      100% + var(--announcement-bar-height, 0px) + var(--header-height, 0px) *
        var(--use-unsticky-header, 0)
    );
  }
}

.PageHeader .SectionHeader__Heading,
.PageHeader .SectionHeader__Description {
  margin-top: 0 !important;
}

.PageHeader .Alert,
.PageHeader #shopify-product-reviews .spr-form-message,
#shopify-product-reviews .PageHeader .spr-form-message {
  margin-top: 22px;
}

.PageHeader__Back {
  display: inline-block;
  margin-bottom: 25px;
}
.PageHeader__Back svg {
  height: 9px;
  margin-right: 12px;
  vertical-align: initial;
}

/* Double selector is just to increase specificity and avoid !important */
.PageHeader--withBackground .SectionHeader.SectionHeader {
  position: relative;
  padding: 60px 0 80px 0;
}
@supports (--css: variables) {
  .PageHeader--withBackground .SectionHeader.SectionHeader {
    margin-top: calc(var(--header-height) * var(--header-is-transparent, 0));
  }
}

@media screen and (max-width: 640px) {
  .PageHeader .SectionHeader__Heading {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 641px) {
  .PageHeader {
    margin: 50px 0;
  }

  .PageHeader--withBackground {
    min-height: 450px;
    margin-top: 0;
    margin-bottom: 0;
  }
  @supports (--css: variables) {
    .PageHeader--withBackground {
      min-height: calc(
        380px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }

  .PageHeader--small.PageHeader--withBackground {
    min-height: 420px;
  }
  @supports (--css: variables) {
    .PageHeader--small.PageHeader--withBackground {
      min-height: calc(
        350px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }

  .PageHeader--large.PageHeader--withBackground {
    min-height: 480px;
  }
  @supports (--css: variables) {
    .PageHeader--large.PageHeader--withBackground {
      min-height: calc(
        410px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }

  .PageHeader--withBackground .SectionHeader.SectionHeader {
    margin-top: 50px;
    padding: 40px 0;
  }
  @supports (--css: variables) {
    .PageHeader--withBackground .SectionHeader.SectionHeader {
      margin-top: calc(var(--header-height) * var(--header-is-transparent, 0));
    }
  }
}
@media screen and (min-width: 1240px) {
  .PageHeader--withBackground {
    min-height: 550px;
  }
  @supports (--css: variables) {
    .PageHeader--withBackground {
      min-height: calc(
        450px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }

  .PageHeader--small.PageHeader--withBackground {
    min-height: 500px;
  }
  @supports (--css: variables) {
    .PageHeader--small.PageHeader--withBackground {
      min-height: calc(
        400px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }

  .PageHeader--large.PageHeader--withBackground {
    min-height: 620px;
  }
  @supports (--css: variables) {
    .PageHeader--large.PageHeader--withBackground {
      min-height: calc(
        520px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }
}
@media screen and (min-width: 1800px) {
  .PageHeader--withBackground {
    min-height: 650px;
  }
  @supports (--css: variables) {
    .PageHeader--withBackground {
      min-height: calc(
        600px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }

  .PageHeader--small.PageHeader--withBackground {
    min-height: 600px;
  }
  @supports (--css: variables) {
    .PageHeader--small.PageHeader--withBackground {
      min-height: calc(
        550px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }

  .PageHeader--large.PageHeader--withBackground {
    min-height: 700px;
  }
  @supports (--css: variables) {
    .PageHeader--large.PageHeader--withBackground {
      min-height: calc(
        650px + var(--header-height) * var(--header-is-transparent, 0)
      );
    }
  }
}
/**
 * ----------------------------------------------------------------------------
 * Page layout (to create two columns) and content
 * ----------------------------------------------------------------------------
 */
.PageLayout__Section:first-child {
  margin-bottom: 60px;
}

.PageLayout__Section--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  align-self: flex-start;
}
@supports (--css: variables) {
  .PageLayout__Section--sticky {
    top: calc(var(--header-height) + 20px);
  }
}

@media screen and (min-width: 641px) {
  .PageLayout {
    display: flex;
    flex-wrap: nowrap;
  }

  .PageLayout__Section {
    flex: 1 0 0;
  }

  .PageLayout__Section:first-child {
    margin-bottom: 0;
  }

  .PageLayout__Section--secondary {
    flex: 1 1 200px;
    max-width: 200px;
  }

  .PageLayout__Section + .PageLayout__Section {
    margin-left: 50px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1007px) {
  .PageLayout--breakLap {
    display: block;
  }

  .PageLayout--breakLap .PageLayout__Section:first-child {
    margin-bottom: 60px;
  }

  .PageLayout--breakLap .PageLayout__Section + .PageLayout__Section {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1008px) {
  .PageLayout__Section--secondary {
    flex-basis: 235px;
    max-width: 235px;
  }
}
@media screen and (min-width: 1240px) {
  .PageLayout__Section + .PageLayout__Section {
    margin-left: 80px;
  }

  .PageLayout__Section--secondary {
    flex-basis: 290px;
    max-width: 290px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Page content
 * ----------------------------------------------------------------------------
 */
.PageContent {
  max-width: 1000px;
  margin: 35px auto;
}

.PageContent--fitScreen {
  display: flex;
  min-height: calc(100vh - 120px);
  align-items: center;
}
@supports (--css: variables) {
  .PageContent--fitScreen {
    min-height: calc(
      var(--window-height) - var(--header-height) -
        var(--announcement-bar-height, 0px) - 120px
    );
    /* 120px is the margin */
  }
}

.PageContent--extraNarrow {
  max-width: 400px;
}

.PageHeader + .PageContent {
  margin-top: 0;
}

@media screen and (min-width: 641px) {
  .PageContent {
    margin-bottom: 80px;
    margin-top: 80px;
  }

  .PageContent--fitScreen {
    min-height: calc(100vh - 160px);
  }
  @supports (--css: variables) {
    .PageContent--fitScreen {
      min-height: calc(
        var(--window-height) - var(--header-height) -
          var(--announcement-bar-height, 0px) - 160px
      );
      /* 160px is the margin */
    }
  }
}
.Pagination {
  margin: 60px 0;
  text-align: center;
  font-family: "Optima nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
}

.Pagination__Nav {
  display: inline-block;
  list-style: none;
}

.Pagination__NavItem {
  display: inline-block;
  padding: 16px 20px;
  border-bottom: 1px solid #e3e3e3;
}
.Pagination__NavItem svg {
  width: 6px;
  height: 10px;
  vertical-align: -1px;
}

.Pagination__NavItem.is-active {
  color: #454545;
  border-bottom-color: #454545;
  box-shadow: 0 -2px #454545 inset;
}

@media screen and (min-width: 641px) {
  .Pagination {
    margin: 80px 0;
  }

  .Pagination__NavItem {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media screen and (min-width: 1240px) {
  .Pagination {
    margin: 120px 0;
  }
}
.Panel {
  position: relative;
  border: 1px solid #e3e3e3;
  padding: 60px 24px;
}

.Panel--withArrows {
  margin: 0 15px;
}

.Panel--flush {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.Panel__Title {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  padding: 0 14px 0 18px;
  transform: translate(-50%, -50%);
  background: white;
  white-space: nowrap;
}

.Panel .flickity-prev-next-button {
  top: calc(50% - (45px / 2));
}

.Panel .flickity-prev-next-button.next {
  right: calc(-45px / 2);
}

.Panel .flickity-prev-next-button.previous {
  left: calc(-45px / 2);
}

@media screen and (min-width: 641px) {
  .Panel {
    padding-left: 50px;
    padding-right: 50px;
  }

  .Panel--withArrows {
    margin-left: 0;
    margin-right: 0;
  }
}
.Popover {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background: white;
  z-index: 10;
  box-shadow: 0 -2px 10px rgba(54, 54, 54, 0.2);
  touch-action: manipulation;
  transform: translateY(100%);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.Popover--secondary {
  background: white;
}

.Popover[aria-hidden="false"] {
  transform: translateY(0);
  visibility: visible;
}

.Popover__Header {
  position: relative;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(227, 227, 227, 0.4);
  text-align: center;
}

.Popover__Close {
  position: absolute;
  left: 20px;
  top: calc(50% - 7px);
  line-height: 0;
}
.Popover__Close svg {
  stroke-width: 1.1px;
}

.Popover__ValueList {
  list-style: none;
  max-height: 385px;
  padding: 18px 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.Popover__Value {
  display: block;
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #9d9d9d;
  text-align: center;
  transition: color 0.2s ease-in-out;
}
.Popover__Value:focus {
  background: white;
  outline: none;
}

.Popover__Value.is-selected {
  color: #454545;
}

.Popover__FooterHelp {
  width: 100%;
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid rgba(227, 227, 227, 0.4);
}

@media screen and (min-width: 1008px) {
  .Popover {
    transform: none;
    width: auto;
    bottom: auto;
    left: auto;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }
  .Popover::before {
    content: "";
    position: absolute;
    right: 40px;
    width: 10px;
    height: 10px;
    border-style: solid;
  }

  .Popover--withMinWidth {
    min-width: 260px;
  }

  .Popover--positionBottom::before {
    bottom: 100%;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent white transparent;
    -webkit-filter: drop-shadow(0 -2px 2px rgba(54, 54, 54, 0.2));
    filter: drop-shadow(0 -2px 2px rgba(54, 54, 54, 0.2));
  }

  .Popover--positionTop::before {
    top: 100%;
    border-width: 10px 10px 0 10px;
    border-color: white transparent transparent transparent;
    -webkit-filter: drop-shadow(0 2px 2px rgba(54, 54, 54, 0.2));
    filter: drop-shadow(0 2px 2px rgba(54, 54, 54, 0.2));
  }

  .Popover--positionLeft::before {
    left: 100%;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
    -webkit-filter: drop-shadow(2px 0 2px rgba(54, 54, 54, 0.2));
    filter: drop-shadow(2px 0 2px rgba(54, 54, 54, 0.2));
  }

  .Popover--positionLeft.Popover--alignCenter::before {
    top: calc(50% - 10px);
  }

  .Popover--positionLeft.Popover--alignBottom::before {
    top: 15px;
  }

  .Popover--positionLeft.Popover--alignTop::before {
    bottom: 10px;
  }

  .Popover[aria-hidden="false"] {
    opacity: 1;
    transform: none;
  }

  .Popover__Header {
    display: none;
  }

  .Popover__Value {
    padding-left: 50px;
    padding-right: 50px;
    text-align: right;
  }

  .Popover--withMinWidth .Popover__Value {
    text-align: center;
  }
}
.Rte {
  word-break: break-word;
  /* Prevent long words to go outside the container */
  /* Simple, minimum clearfix added to every RTE text to avoid issue with float */
}
.Rte::after {
  content: "";
  display: block;
  clear: both;
}
.Rte iframe {
  max-width: 100%;
}
.Rte img {
  display: block;
  margin: 0 auto;
}
.Rte a:not(.Button) {
  color: #d9ccc1;
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(217, 204, 193, 0.6);
  text-decoration-color: rgba(217, 204, 193, 0.6);
  text-underline-position: under;
  transition: color 0.2s ease-in-out,
    -webkit-text-decoration-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, text-decoration-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, text-decoration-color 0.2s ease-in-out,
    -webkit-text-decoration-color 0.2s ease-in-out;
}
.Rte a:not(.Button):hover {
  color: #454545;
  -webkit-text-decoration-color: rgba(69, 69, 69, 0.6);
  text-decoration-color: rgba(69, 69, 69, 0.6);
}
.Rte p:not(:last-child),
.Rte ul:not(:last-child),
.Rte ol:not(:last-child) {
  margin-bottom: 1.6em;
}
.Rte img,
.Rte blockquote,
.Rte .VideoWrapper,
.Rte .Form {
  margin-top: 2.4em;
  margin-bottom: 2.4em;
}
.Rte ul,
.Rte ol {
  margin-left: 30px;
  padding-left: 0;
  list-style-position: outside;
}
.Rte li {
  padding: 5px 0;
}
.Rte h1,
.Rte h2,
.Rte h3,
.Rte h4,
.Rte h5,
.Rte h6 {
  font-family: "Optima nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #454545;
  transition: color 0.2s ease-in-out;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.Rte h1 {
  margin: 2.2em 0 0.8em;
}
.Rte h2 {
  margin: 2.2em 0 0.9em;
}
.Rte h3 {
  margin: 2.2em 0 1.2em;
}
.Rte h4 {
  margin: 2.2em 0 1.4em;
}
.Rte h5 {
  margin: 2.2em 0 1.6em;
}
.Rte h6 {
  margin: 2.2em 0 1.8em;
}
.Rte blockquote {
  margin-left: 0;
  padding: 6px 0 6px 40px;
  font-size: 1.15em;
  line-height: 1.75;
  border-left: 3px solid rgba(227, 227, 227, 0.6);
}
.Rte p:last-child,
.Rte blockquote:last-child,
.Rte ul:last-child,
.Rte ol:last-child,
.Rte h1:last-child,
.Rte h2:last-child,
.Rte h3:last-child,
.Rte h4:last-child,
.Rte h5:last-child,
.Rte h6:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1008px) {
  .Rte img,
  .Rte .VideoWrapper,
  .Rte .Form {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .Rte blockquote {
    margin-left: 40px;
  }
}
.shopify-section--hidden {
  display: none;
}

.shopify-section--bordered + .shopify-section--bordered {
  border-top: 1px solid #e3e3e3;
}

/* When a spacing is applied to a bordered section, as it is isolated, we use padding, otherwise margin */
.Section--spacingNormal {
  margin: 50px 0;
}

.Section--spacingLarge,
.Section--spacingExtraLarge {
  margin: 90px 0;
}

.shopify-section--bordered > .Section--spacingNormal {
  padding: 50px 0;
  margin-top: 0;
  margin-bottom: 0;
}

.shopify-section--bordered > .Section--spacingLarge,
.shopify-section--bordered > .Section--spacingExtraLarge {
  padding: 90px 0;
  margin-top: 0;
  margin-bottom: 0;
}

.SectionHeader:not(:only-child) {
  margin-bottom: 40px;
}

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

/*
  This is just a hack to slightly increase the selector specificity. What this does is actually taking into account the line height (1.65)
  and removing the remaining amount in both direction (0.65 / 2 => 0.325) to have more easier and consistent alignments
*/
.SectionHeader__Heading.SectionHeader__Heading,
.SectionHeader__SubHeading.SectionHeader__SubHeading {
  margin-top: -0.325em;
}

.SectionHeader__SubHeading + .SectionHeader__Heading,
.SectionHeader__SubHeading + .SectionHeader__TabList,
.SectionHeader__Description {
  margin-top: 16px;
}

.SectionHeader__Description {
  max-width: 530px;
}

.SectionHeader__Description a {
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
  text-underline-position: under;
}

.SectionHeader--center .SectionHeader__Description {
  margin-left: auto;
  margin-right: auto;
}

.SectionHeader__ButtonWrapper {
  margin-top: 20px;
}

.SectionHeader__IconHolder {
  margin-top: 30px;
}

/* The SectionFooter is usually use at the end of a given section to redirect somewhere else */
.SectionFooter {
  margin-top: 50px;
  text-align: center;
}

@media screen and (min-width: 641px) {
  .SectionHeader__Heading--emphasize {
    font-size: 21px;
  }
}
@media screen and (min-width: 1008px) {
  .Section--spacingNormal {
    margin: 80px 0;
  }

  .Section--spacingLarge {
    margin: 120px 0;
  }

  .Section--spacingExtraLarge {
    margin: 145px 0;
  }

  .shopify-section--bordered > .Section--spacingNormal {
    padding: 80px 0;
  }

  .shopify-section--bordered > .Section--spacingLarge {
    padding: 120px 0;
  }

  .shopify-section--bordered > .Section--spacingExtraLarge {
    padding: 145px 0;
  }

  .SectionHeader:not(:only-child) {
    margin-bottom: 70px;
  }

  .SectionHeader__Description {
    margin-top: 24px;
  }

  .SectionHeader__ButtonWrapper {
    margin-top: 30px;
  }

  .SectionFooter {
    margin-top: 80px;
  }
}
.TableWrapper {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.Table,
.Rte table {
  width: 100%;
  font-size: 11px;
  border-collapse: separate;
  white-space: nowrap;
}
.Table th,
.Rte table th,
.Table td,
.Rte table td {
  padding: 18px 10px;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
}
.Table th:first-child,
.Rte table th:first-child,
.Table td:first-child,
.Rte table td:first-child,
.Table tfoot td:empty + td,
.Rte table tfoot td:empty + td {
  padding-left: 0;
}
.Table th:last-child,
.Rte table th:last-child,
.Table td:last-child,
.Rte table td:last-child {
  padding-right: 0;
}
.Table th,
.Rte table th {
  font-family: "Optima nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.Table thead th:first-child:empty,
.Rte table thead th:first-child:empty,
.Table tbody th:first-child,
.Rte table tbody th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  min-width: 40px;
  max-width: 100px;
  z-index: 1;
  background: white;
  white-space: normal;
}
.Table tbody th:first-child,
.Rte table tbody th:first-child {
  border-right: 1px solid #e3e3e3;
}
.Table tfoot td:empty,
.Rte table tfoot td:empty {
  border-bottom: none;
}

.Table--large td {
  padding-top: 25px;
  padding-bottom: 25px;
}

.Table--noBorder tbody tr:not(:last-child) td {
  border-bottom: none;
}

@media screen and (max-width: 640px) {
  .TableWrapper {
    margin-right: -24px;
    margin-left: -24px;
  }

  .TableWrapper > .Table,
  .Rte .TableWrapper > table {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (min-width: 1240px) {
  .Table,
  .Rte table {
    white-space: normal;
  }

  .Table--large td {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.TabList {
  white-space: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.TabList__Item {
  position: relative;
}
.TabList__Item::after {
  position: relative;
  display: block;
  content: "";
  bottom: 1px;
  left: 0;
  height: 1px;
  width: 0;
  background: #454545;
  transition: width 0.25s ease-in-out;
}

.TabList__Item + .TabList__Item {
  margin-left: 28px;
}

.TabList__Item.is-active::after {
  width: calc(100% - 0.2em);
}

.TabPanel {
  display: none;
}

.TabPanel[aria-hidden="false"] {
  display: block;
}

@media screen and (min-width: 641px) {
  .TabList__Item + .TabList__Item {
    margin-left: 45px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Layout override
 * ----------------------------------------------------------------------------
 */
.template-customers .OrderAddresses .Grid__Cell + .Grid__Cell {
  margin-top: 50px;
}

@media screen and (min-width: 641px) and (max-width: 1007px) {
  .template-customers .OrderAddresses .Grid__Cell + .Grid__Cell {
    margin-top: 0;
  }
}
@media screen and (min-width: 1240px) {
  .template-customers .OrderAddresses .Grid__Cell + .Grid__Cell {
    margin-top: 65px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Addresses
 * ----------------------------------------------------------------------------
 */
.AddressList {
  margin-bottom: -40px;
}
.AddressList .Grid__Cell {
  margin-bottom: 40px;
}

.AccountAddress span {
  display: inline-block;
  margin-bottom: 12px;
}

@media screen and (max-width: 640px) {
  .Modal--address {
    height: 100%;
    width: 100%;
    max-width: none;
    max-height: none;
  }

  .Modal--address .Modal__Header {
    margin-top: 35px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1007px) {
  .OrderAddresses {
    width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 641px) {
  .AddressList {
    margin-bottom: -60px;
  }
  .AddressList .Grid__Cell {
    margin-bottom: 60px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Account table
 * ----------------------------------------------------------------------------
 */
.AccountTable th {
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 10px;
}

.AccountTable tfoot {
  font-size: 13px;
}

.AccountTable tfoot span + span {
  padding-left: 18px;
}

.AccountTable .CartItem__PriceList {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  .AccountTable .CartItem__ImageWrapper {
    width: 70px;
    min-width: 70px;
  }
}


.Grid--rev {
  direction: rtl;
}
.Grid--rev .history__text {
  padding-left: 40px !important;
}

ul {
  list-style: none;
}

p {
  font-family: inherit;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility;
}

h2 {
  font-size: 1.6875rem;
}

.rj-header-image {
  margin-bottom: 0 !important;
}

.rj-subtitle.article-sub {
  margin-bottom: 115px;
  text-align: center;
  top: 0;
  font-size: 1.125rem;
}

.Article__Title.Heading.u-h1 {
  font-size: 3em;
  letter-spacing: 2px;
  font-family: "Optima nova", sans-serif;
  font-style: italic;
  margin-bottom: 0;
}

/*.Article__Header {
  margin-bottom: 35px;
  text-align: center;
  position: absolute;
  top: 16% !important;
  left: 23%;
}*/
.Article__Header {
  position: relative !important;
  left: initial !important;
}

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

.Article__Content {
  position: relative;
  padding-top: 10px;
}

.item-overlay-text h2:last-child {
  border-top: 1px solid gray;
  padding-top: 35px;
  font-size: 3em;
  letter-spacing: 2px;
  font-family: "Optima nova", sans-serif;
  font-style: italic;
}

.article-content p {
  line-height: 150%;
  margin-bottom: 0em;
}

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

.clear {
  clear: both;
}

/**
* ----------------------------------------------------------------------------
* page
* ----------------------------------------------------------------------------
*/
.history__slide-title1 {
  color: black;
  font-size: 37px;
  margin-bottom: 0px;
}

.history__slide-title2 {
  color: black;
  font-size: 37px;
}

.SectionHeader__Heading {
  font-weight: 500;
  letter-spacing: 0;
  padding: 1.25rem 0;
  font-family: "Optima nova", sans-serif;
  font-size: 3rem;
  line-height: 1.4;
}

.page-width-full.page-container {
  margin-bottom: 80px;
}

.club__privilege {
  display: grid;
  grid-auto-flow: column;
}

.club__priv2 {
  margin-left: 10px;
}

.page__presse {
  padding: 0 50px;
  text-align: center;
}

.presse__img {
  margin: 0 1.25rem 5.25rem 0;
}

.page__spa {
  padding: 0 75px;
  text-align: center;
}

.spa__img {
  margin: 0 1.25rem 1.25rem 0;
  width: 80%;
  height: 271px;
  object-fit: cover;
}

.page__history {
  padding: 0 50px;
}

.page__history-content {
  display: flex;
  align-items: end;
}

.page__history-para {
  text-align: left;
}

.page__history-url {
  margin-top: 50px;
}

.page__soins {
  padding: 0 50px;
}

.page__anne {
  padding: 0 50px;
}

.Rte h2 {
  margin: 0 0 0 0;
}

.small-centered.columns.medium-8.small-12 {
  padding-top: 20px;
}

.history__text {
  padding-left: 90px;
}

.history__title {
  text-align: left;
  margin-top: 3em;
  padding-bottom: 50px;
}
.history__title h2 {
  font-weight: bold;
  text-transform: none;
  color: black;
}

.history__para {
  text-align: justify;
}
.history__para p {
  font-size: 21px;
}

/**
* ----------------------------------------------------------------------------
* page contact
* ----------------------------------------------------------------------------
*/
.no-bullet {
  list-style: none;
}

.account-link {
  margin-bottom: 15px;
}

.PageHeader__Back {
  display: none;
}

/**
* ----------------------------------------------------------------------------
* page 404
* ----------------------------------------------------------------------------
*/
.page__404 {
  padding: 0 50px;
}
.page__404 ul {
  letter-spacing: 0.03em;
  font-size: 20px;
}

.page__404-title {
  letter-spacing: 0;
  padding: 1.25rem 0;
  font-size: 3rem;
  font-family: "Optima nova", sans-serif;
  font-style: italic;
}

.page__404-subtitle {
  margin-bottom: 0.3rem;
  font-weight: 800;
}

/**
* ----------------------------------------------------------------------------
* page livraison
* ----------------------------------------------------------------------------
*/
.page__livraison {
  padding: 0 50px;
}

.livraison__text p {
  font-size: 20px;
}

/**
* ----------------------------------------------------------------------------
* page medical-spa
* ----------------------------------------------------------------------------
*/
.page__medical-spa {
  padding: 0 50px;
}

.medical__spa-text p {
  letter-spacing: 0.03em;
  font-size: 20px;
}

/**
* ----------------------------------------------------------------------------
* page medical-spa
* ----------------------------------------------------------------------------
*/
.page__cgv {
  padding: 0 50px;
}

/**
* ----------------------------------------------------------------------------
* page retail
* ----------------------------------------------------------------------------
*/
.page__retail {
  padding: 0 50px;
}

/**
* ----------------------------------------------------------------------------
* page faq
* ----------------------------------------------------------------------------
*/
.page__faq {
  padding: 0 50px;
}

.faq__text p:last-child {
  margin-bottom: 80px;
}

/**
* ----------------------------------------------------------------------------
* page parrainage
* ----------------------------------------------------------------------------
*/
.page__parrainage {
  padding: 0 300px;
}

.page__parrainage-container {
  max-width: 1000px;
  margin: auto;
}

.page__parrainage-title {
  text-align: center;
  font-style: italic;
}

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

.page__parrainage-image {
  text-align: center;
  margin: 30px 0;
}

.page__parrainage-flexing {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.left-content {
  padding-right: 30px;
}
.left-content p {
  text-align: left !important;
}

.right-content {
  padding-left: 30px;
}
.right-content p {
  text-align: left !important;
}

/**
* ----------------------------------------------------------------------------
* page contact
* ----------------------------------------------------------------------------
*/
.header__page {
  position: relative;
}

.custome__page-image {
  width: 100%;
  height: calc(
    var(--window-height) -
      (var(--header-height) * var(--header-is-not-transparent, 0)) -
      var(--announcement-bar-height, 0px)
  );
}

.header__page-text {
  position: absolute;
  left: 5%;
  bottom: 10%;
  color: white;
}
.header__page-text p {
  font-size: 40px;
  color: black;
  font-weight: bold;
}

.header__page-container {
  margin: 40px auto;
  width: 1200px;
  max-width: calc(100% - 60px) !important;
}

/**
* ----------------------------------------------------------------------------
* page beauty
* ----------------------------------------------------------------------------
*/
.beauty__header {
  margin: 0 80px;
}

.beauty__header-pages {
  border-bottom: 1px dotted #cccccc;
  border-top: 1px dotted #cccccc;
  padding: 15px;
}

.paging-context table {
  width: 100%;
}

.pgStyle1 td.c {
  width: 22px;
}

.pgStyle1 td.c {
  width: 22px;
}

.circle3 td {
  width: 33%;
}

.pgStyle1 var {
  display: block;
  float: left;
  background: none;
  border: 1px solid #ccc;
  color: #000;
  width: 20px;
  height: 20px;
  line-height: 19px;
  text-align: center;
  font-size: 85%;
  font-style: normal;
  border-radius: 10px;
  -o-box-shadow: rgba(0, 0, 0, 0.15) 0 1px 2px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 1px 2px;
}

.pgStyle1 .selected var {
  border: 1px solid #dfd6cc;
  background: #f8eee3;
  color: #000000;
}

.pgStyle1 td.t {
  padding: 0 1%;
}

.leftLabel li,
.rightLabel li {
  width: 74% !important;
  padding-top: 9px;
}

fieldset {
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}

.beauty__title {
  float: left;
  width: 31%;
  margin: 0 15px 0 0;
}

.beauty__title-prop {
  display: flex;
  flex-direction: column;
}

.beauty__pages-prop {
  padding-top: 25px;
}

.beauty__prop {
  padding-bottom: 10px;
}

#instruct540 {
  display: none;
}

.content {
  display: none;
}

.slider__dots
  button:not(.Collapsible__Button):not(.menuMobile):not(.Search__Close) {
  margin: 20px 10px;
}

.back {
  display: none;
}

.next {
  margin-left: 50px;
}

.end {
  display: none;
}

.submit__btn {
  position: absolute;
  left: 20%;
}

.beauty__input {
  -webkit-appearance: none;
  padding: 5px 5px;
  border-radius: 0;
  border: 1px solid #e3e3e3;
  line-height: normal;
  resize: none;
  transition: border-color 0.1s ease-in-out;
  background: transparent;
}

.beauy__name {
  margin-left: 20px;
}

.beauty__form input::-webkit-input-placeholder {
  color: #e3e3e3;
}

/**
* ----------------------------------------------------------------------------
* page atelier
* ----------------------------------------------------------------------------
*/
.page__atelier-text {
  text-align: justify;
}

.page__atelier-pad {
  padding: 0 50px;
}

.page__atelier {
  display: flex !important;
}

.carousel-cell {
  width: 35%;
  /* full width */
  margin-left: 100px;
}

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

.offers {
  margin-top: 80px;
}

.atelier--button {
  position: relative;
}
.atelier--button .next {
  position: absolute;
  top: 35%;
  right: 0%;
}
.atelier--button .previous {
  position: absolute;
  top: 35%;
  left: 3%;
}

.CollectionItem-atelier {
  padding-bottom: 80px;
  padding-left: 50px;
  max-width: 400px;
  width: 100%;
}

.atelier__collection {
  padding-right: 40px;
}
.atelier__collection h2 {
  text-align: center;
}

.carousel-cell {
  width: 30%;
  /* full width */
  margin-right: 10px;
}

.offers {
  position: relative;
}
.offers .left {
  position: absolute;
  left: 0;
  top: 50%;
}
.offers .right {
  position: absolute;
  right: 0;
  top: 50%;
}

.left svg {
  margin-top: 13px;
}

.right svg {
  margin-top: 13px;
}

@media screen and (max-width: 700px) {
  .atelier--button {
    position: relative;
  }
  .atelier--button .next {
    position: absolute;
    top: 25%;
    right: 0%;
  }
  .atelier--button .previous {
    position: absolute;
    top: 25%;
    left: 3%;
  }

  .CollectionItem-atelier {
    max-width: 350px !important;
  }

  .atelier__collection {
    padding-left: 0px !important;
  }
}
@media screen and (max-width: 1000px) {
  .atelier--button {
    position: relative;
  }
  .atelier--button .next {
    width: 30px;
    height: 30px;
  }
  .atelier--button .previous {
    width: 30px;
    height: 30px;
  }

  .atelier__collection {
    padding-left: 0px !important;
  }
}
@media screen and (min-width: 1240px) {
  .CollectionItem-atelier .CollectionItem__Wrapper {
    height: 360px;
  }

  .atelier-map {
    height: 400px;
  }
  .atelier-map .FeaturedMap__Info {
    width: 50% !important;
    padding: 10px 60px !important;
    height: 100px;
  }
  .atelier-map .FeaturedMap__MapContainer {
    height: 65%;
  }
}
/**
* ----------------------------------------------------------------------------
* store locator
* ----------------------------------------------------------------------------
*/
#store-locator-title {
  text-align: center;
  font-size: 3em;
  letter-spacing: 2px;
  font-family: "Optima nova", sans-serif;
  margin: 55px;
}

.all {
  margin-bottom: 60px;
}

/**
* ----------------------------------------------------------------------------
* Product page
* ----------------------------------------------------------------------------
*/
.Product__longdesc {
  padding-right: 150px;
  padding-left: 350px;
}

.long__description div {
  font-family: inherit;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility;
}
.long__description h2 {
  color: #d6c7b9;
  font-weight: bold;
}

.product-overview {
  font-size: 1.25rem;
  text-align: justify;
}

.SectionHeader__Heading.Heading.u-h3 {
  color: #d6c7b9;
}

.ProductItem__Info.ProductItem__Info--center h2 {
  opacity: 0.5;
}

.short__description {
  display: none;
}

.product-usage {
  max-width: 355px;
  margin-bottom: 25px;
  text-align: justify;
}

.product-mix {
  max-width: 355px;
  margin-bottom: 25px;
  text-align: justify;
}

.mixologie {
  display: none;
  text-align: justify;
}

.product-advantage {
  max-width: 355px;
  margin-bottom: 25px;
  text-align: justify;
}

.product-ingredient {
  max-width: 355px;
  margin-bottom: 25px;
  text-align: justify;
}

@media screen and (min-width: 700px) {
  .ipad {
    width: 50% !important;
  }

  .Product__InfoWrapper {
    margin-right: 90px;
  }

  .long__description {
    margin-right: 235px;
  }
}
@media screen and (max-width: 1007px) {
  .long__description div {
    font-size: 11px !important;
  }
}
@media screen and (max-width: 800px) {
  .Product__longdesc {
    padding-left: 50px !important;
  }
}
/**
* ----------------------------------------------------------------------------ot
* spa container
* ----------------------------------------------------------------------------
*/
.page__spa-slider {
  display: flex;
  justify-content: center;
}
.page__spa-slider .carousel-cell {
  margin-left: 0px;
  padding-bottom: 30px;
}

.spa--button {
  position: relative;
}
.spa--button .next {
  position: absolute;
  top: 35%;
  right: -90%;
}
.spa--button .previous {
  position: absolute;
  top: 35%;
  left: -90%;
}

.spa__showmore {
  text-align: center;
  font-size: 30px;
}

.page__spa .grid__cell:not(.display) {
  display: none !important;
}

/**
* ----------------------------------------------------------------------------ot
* footer
* ----------------------------------------------------------------------------
*/
.Footer__Block.Footer__Block--links .Linklist {
  font-size: 1.25rem;
}

.Footer__Block:first-child p,
.Footer__Block:last-child p {
  text-align: justify;
}

/**
* ----------------------------------------------------------------------------ot
* weglot
* ----------------------------------------------------------------------------
*/
.weglot-container {
  padding-right: 10px;
  padding-top: 3px;
}

.product__imgs {
  position: relative;
  width: 400px;
}
.product__imgs img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doubleBlock {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.doubleBlock .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/*.doubleBlock .history__title {
  display: none !important;
}*/
.doubleBlock .history__title {
  padding-bottom: 25px;
}

.doubleBlock.side-left .img {
  order: 0;
}

.doubleBlock.side-left .text {
  order: 1;
  padding: 0 0 0 30px !important;
}

.doubleBlock .side.text {
  width: 55%;
  padding: 0 30px 0 0;
}

.doubleBlock .side.img {
  width: 45%;
}

.doubleBlock .side.img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.history__para p {
  font-size: 17px;
}

@media screen and (max-width: 778px) {
  .doubleBlock .side.text,
  .doubleBlock .side.img {
    width: 100% !important;
  }

  .doubleBlock .side.img {
    order: 0 !important;
  }

  .doubleBlock .side.text {
    order: 1 !important;
    padding: 0 !important;
  }
}
.Header__LogoImage {
  max-height: 50px;
  object-fit: contain;
}

body {
  overflow-x: hidden;
}

#shopify-section-header {
  transition: all 0.3s;
}

.scrollTop {
  transform: translateY(-100%);
}

#section-collection-list .CollectionItem__Link {
  border-color: #d6c7b9 !important;
}

#section-collection-list .CollectionItem__Link::before {
  background-color: #d6c7b9 !important;
}

.FeaturedProduct__Info .ProductForm__Item {
  margin-top: 0;
}

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

/*

let auto = document.querySelector("#mc_embed_signup")

auto.querySelector("input[type='email']").value = "h@test.com"
auto.querySelector("input[type='submit']").click()
 */
@media screen and (min-width: 640px) and (max-width: 1024px) {
  .Header__Icon + .Header__Icon {
    margin-left: 25px !important;
  }
}
.notOptions .ProductForm__Option.ProductForm__Option--labelled {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .b-page .side-left div {
    margin-bottom: 40px;
  }
}
/*
  Instagram section
*/
.instagram-feed h1 {
  display: flex;
  place-content: center;
  margin: 30px 0;
  text-transform: uppercase;
}
.instagram-feed h1 p {
  font-size: 1.3rem !important;
  font-weight: 500;
  text-align: center;
}
.instagram-feed h1 p a:hover {
  text-decoration: underline;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(var(--sm-cols), 1fr);
}

@media screen and (min-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(var(--md-cols), 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(var(--cols), 1fr);
  }
}
.instagram-grid__post {
  position: relative;
  aspect-ratio: 1/1;
}
.instagram-grid__post p {
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  z-index: 10;
  opacity: 0;
  transition: all 200ms ease-in-out;
  overflow: hidden;
}
.instagram-grid__post p:hover {
  transition: all 200ms ease-in-out;
  opacity: 1;
}
