/** Shopify CDN: Minification failed

Line 115:3 Unexpected "zoom"
Line 180:3 Unexpected "zoom"
Line 1696:3 Unexpected "zoom"
Line 1709:3 Unexpected "zoom"

**/
@charset "UTF-8";
html {
  padding-bottom: 0px !important; }

/*============================================================================
  Table of Contents

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
==============================================================================*/
/*============================================================================
  #Language Support
==============================================================================*/
body.lang-fr span.lang-fr {
  opacity: 1; }
body.lang-fr span.lang-en {
  opacity: 0; }

body.lang-en span.lang-en {
  opacity: 1; }
body.lang-en span.lang-fr {
  opacity: 0; }

span.lang-en,
span.lang-fr {
  transition: opacity 600ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  display: inline-block; }

span.lang-en {
  position: absolute;
  left: 0px;
  bottom: 0px; }

#ly-languages-switcher {
  border: 0px;
  outline: 0;
  padding-left: 0px;
  padding-right: 32px;
  padding-right: 0px;
  background: none; }

/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'Circular';
  src: url("/cdn/shop/t/75/assets/circular-medium.otf?v=59067794926890324251646929511") format("opentype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Circular';
  src: url("/cdn/shop/t/75/assets/circular-medium.otf?v=59067794926890324251646929511") format("opentype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Circular';
  src: url("/cdn/shop/t/75/assets/circular-medium-italic.otf?v=17679720600616178681646929511") format("opentype");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'icons';
  src: url("/cdn/shop/t/75/assets/icons.eot?v=158399200609435563841646929537");
  src: url("/cdn/shop/t/75/assets/icons.eot?v=158399200609435563841646929537#iefix") format("embedded-opentype"), url("/cdn/shop/t/75/assets/icons.woff?v=169945158533379702731646929539") format("woff"), url("/cdn/shop/t/75/assets/icons.ttf?v=152698340250222789721646929538") format("truetype"), url("/cdn/shop/t/75/assets/icons.svg?v=1632698112070928441646929538#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

/*============================================================================
  Prefixer mixin for generating vendor prefixes:
    - Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
    - Usage:

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

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
==============================================================================*/
/*============================================================================
  Layer promotion mixin for creating smoother animations with higher FPS.
==============================================================================*/
/*============================================================================
  Dependency-free breakpoint mixin
    - Based on http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
    - Usage docs: http://shopify.github.io/Timber/#sass-mixins
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0; }

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

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

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

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

/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns, a fixed gutter size, and BEM classes
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid items
==============================================================================*/
/* Force clearfix on grids */
.grid, .grid--rev, .grid--full,
.grid-uniform {
  *zoom: 1; }
  .grid:after, .grid--rev:after, .grid--full:after,
  .grid-uniform:after {
    content: '';
    display: table;
    clear: both; }

/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid, .grid--rev, .grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -64px; }

.grid__item,
.grid__item-2 {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 64px;
  vertical-align: top;
  width: 100%; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item,
  .grid--rev > .grid__item-2 {
    direction: ltr;
    text-align: left;
    float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item,
  .grid--full > .grid__item-2 {
    padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
.mobile-hide {
  display: none !important; }
  @media screen and (min-width: 1030px) {
    .mobile-hide {
      display: block !important; } }

.desk-hide {
  display: none; }
  @media screen and (max-width: 1030px) {
    .desk-hide {
      display: block; } }

/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.333%; }

.two-thirds {
  width: 66.666%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.666%; }

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.333%; }

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

.text-left {
  text-align: left !important; }

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.333%; }

  .small--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%; }

  .small--two-quarters {
    width: 50%; }

  .small--three-quarters {
    width: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%; }

  .small--two-fifths {
    width: 40%; }

  .small--three-fifths {
    width: 60%; }

  .small--four-fifths {
    width: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.666%; }

  .small--two-sixths {
    width: 33.333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.666%; }

  .small--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }

  .small--two-eighths {
    width: 25%; }

  .small--three-eighths {
    width: 37.5%; }

  .small--four-eighths {
    width: 50%; }

  .small--five-eighths {
    width: 62.5%; }

  .small--six-eighths {
    width: 75%; }

  .small--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%; }

  .small--two-tenths {
    width: 20%; }

  .small--three-tenths {
    width: 30%; }

  .small--four-tenths {
    width: 40%; }

  .small--five-tenths {
    width: 50%; }

  .small--six-tenths {
    width: 60%; }

  .small--seven-tenths {
    width: 70%; }

  .small--eight-tenths {
    width: 80%; }

  .small--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }

  .small--two-twelfths {
    width: 16.666%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.333%; }

  .small--five-twelfths {
    width: 41.666%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.333%; }

  .small--eight-twelfths {
    width: 66.666%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.333%; }

  .small--eleven-twelfths {
    width: 91.666%; }

  .small--show {
    display: block !important; }

  .small--hide {
    display: none !important; }

  .small--text-left {
    text-align: left !important; }

  .small--text-right {
    text-align: right !important; }

  .small--text-center {
    text-align: center !important; }

  .small--left {
    float: left !important; }

  .small--right {
    float: right !important; }

  .grid-uniform .small--one-half:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 481px) and (max-width: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

  /* Halves */
  .medium--one-half {
    width: 50%; }

  /* Thirds */
  .medium--one-third {
    width: 33.333%; }

  .medium--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .medium--one-quarter {
    width: 25%; }

  .medium--two-quarters {
    width: 50%; }

  .medium--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium--one-fifth {
    width: 20%; }

  .medium--two-fifths {
    width: 40%; }

  .medium--three-fifths {
    width: 60%; }

  .medium--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }

  .medium--two-sixths {
    width: 33.333%; }

  .medium--three-sixths {
    width: 50%; }

  .medium--four-sixths {
    width: 66.666%; }

  .medium--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }

  .medium--two-eighths {
    width: 25%; }

  .medium--three-eighths {
    width: 37.5%; }

  .medium--four-eighths {
    width: 50%; }

  .medium--five-eighths {
    width: 62.5%; }

  .medium--six-eighths {
    width: 75%; }

  .medium--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium--one-tenth {
    width: 10%; }

  .medium--two-tenths {
    width: 20%; }

  .medium--three-tenths {
    width: 30%; }

  .medium--four-tenths {
    width: 40%; }

  .medium--five-tenths {
    width: 50%; }

  .medium--six-tenths {
    width: 60%; }

  .medium--seven-tenths {
    width: 70%; }

  .medium--eight-tenths {
    width: 80%; }

  .medium--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }

  .medium--two-twelfths {
    width: 16.666%; }

  .medium--three-twelfths {
    width: 25%; }

  .medium--four-twelfths {
    width: 33.333%; }

  .medium--five-twelfths {
    width: 41.666%; }

  .medium--six-twelfths {
    width: 50%; }

  .medium--seven-twelfths {
    width: 58.333%; }

  .medium--eight-twelfths {
    width: 66.666%; }

  .medium--nine-twelfths {
    width: 75%; }

  .medium--ten-twelfths {
    width: 83.333%; }

  .medium--eleven-twelfths {
    width: 91.666%; }

  .medium--show {
    display: block !important; }

  .medium--hide {
    display: none !important; }

  .medium--text-left {
    text-align: left !important; }

  .medium--text-right {
    text-align: right !important; }

  .medium--text-center {
    text-align: center !important; }

  .medium--left {
    float: left !important; }

  .medium--right {
    float: right !important; }

  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 768px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }

  /* Halves */
  .medium-down--one-half {
    width: 50%; }

  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }

  .medium-down--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .medium-down--one-quarter {
    width: 25%; }

  .medium-down--two-quarters {
    width: 50%; }

  .medium-down--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }

  .medium-down--two-fifths {
    width: 40%; }

  .medium-down--three-fifths {
    width: 60%; }

  .medium-down--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }

  .medium-down--two-sixths {
    width: 33.333%; }

  .medium-down--three-sixths {
    width: 50%; }

  .medium-down--four-sixths {
    width: 66.666%; }

  .medium-down--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }

  .medium-down--two-eighths {
    width: 25%; }

  .medium-down--three-eighths {
    width: 37.5%; }

  .medium-down--four-eighths {
    width: 50%; }

  .medium-down--five-eighths {
    width: 62.5%; }

  .medium-down--six-eighths {
    width: 75%; }

  .medium-down--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }

  .medium-down--two-tenths {
    width: 20%; }

  .medium-down--three-tenths {
    width: 30%; }

  .medium-down--four-tenths {
    width: 40%; }

  .medium-down--five-tenths {
    width: 50%; }

  .medium-down--six-tenths {
    width: 60%; }

  .medium-down--seven-tenths {
    width: 70%; }

  .medium-down--eight-tenths {
    width: 80%; }

  .medium-down--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }

  .medium-down--two-twelfths {
    width: 16.666%; }

  .medium-down--three-twelfths {
    width: 25%; }

  .medium-down--four-twelfths {
    width: 33.333%; }

  .medium-down--five-twelfths {
    width: 41.666%; }

  .medium-down--six-twelfths {
    width: 50%; }

  .medium-down--seven-twelfths {
    width: 58.333%; }

  .medium-down--eight-twelfths {
    width: 66.666%; }

  .medium-down--nine-twelfths {
    width: 75%; }

  .medium-down--ten-twelfths {
    width: 83.333%; }

  .medium-down--eleven-twelfths {
    width: 91.666%; }

  .medium-down--show {
    display: block !important; }

  .medium-down--hide {
    display: none !important; }

  .medium-down--text-left {
    text-align: left !important; }

  .medium-down--text-right {
    text-align: right !important; }

  .medium-down--text-center {
    text-align: center !important; }

  .medium-down--left {
    float: left !important; }

  .medium-down--right {
    float: right !important; }

  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }
@media only screen and (min-width: 1030px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

  /* Halves */
  .large--one-half {
    width: 50%; }

  /* Thirds */
  .large--one-third {
    width: 33.333%; }

  .large--two-thirds {
    width: 66.666%; }

  /* Quarters */
  .large--one-quarter {
    width: 25%; }

  .large--two-quarters {
    width: 50%; }

  .large--three-quarters {
    width: 75%; }

  /* Fifths */
  .large--one-fifth {
    width: 20%; }

  .large--two-fifths {
    width: 40%; }

  .large--three-fifths {
    width: 60%; }

  .large--four-fifths {
    width: 80%; }

  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }

  .large--two-sixths {
    width: 33.333%; }

  .large--three-sixths {
    width: 50%; }

  .large--four-sixths {
    width: 66.666%; }

  .large--five-sixths {
    width: 83.333%; }

  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }

  .large--two-eighths {
    width: 25%; }

  .large--three-eighths {
    width: 37.5%; }

  .large--four-eighths {
    width: 50%; }

  .large--five-eighths {
    width: 62.5%; }

  .large--six-eighths {
    width: 75%; }

  .large--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .large--one-tenth {
    width: 10%; }

  .large--two-tenths {
    width: 20%; }

  .large--three-tenths {
    width: 30%; }

  .large--four-tenths {
    width: 40%; }

  .large--five-tenths {
    width: 50%; }

  .large--six-tenths {
    width: 60%; }

  .large--seven-tenths {
    width: 70%; }

  .large--eight-tenths {
    width: 80%; }

  .large--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }

  .large--two-twelfths {
    width: 16.666%; }

  .large--three-twelfths {
    width: 25%; }

  .large--four-twelfths {
    width: 33.333%; }

  .large--five-twelfths {
    width: 41.666%; }

  .large--six-twelfths {
    width: 50%; }

  .large--seven-twelfths {
    width: 58.333%; }

  .large--eight-twelfths {
    width: 66.666%; }

  .large--nine-twelfths {
    width: 75%; }

  .large--ten-twelfths {
    width: 83.333%; }

  .large--eleven-twelfths {
    width: 91.666%; }

  .large--show {
    display: block !important; }

  .large--hide {
    display: none !important; }

  .large--text-left {
    text-align: left !important; }

  .large--text-right {
    text-align: right !important; }

  .large--text-center {
    text-align: center !important; }

  .large--left {
    float: left !important; }

  .large--right {
    float: right !important; }

  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }
/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

/* Halves */
.push--one-half {
  left: 50%; }

/* Thirds */
.push--one-third {
  left: 33.333%; }

.push--two-thirds {
  left: 66.666%; }

/* Quarters */
.push--one-quarter {
  left: 25%; }

.push--two-quarters {
  left: 50%; }

.push--three-quarters {
  left: 75%; }

/* Fifths */
.push--one-fifth {
  left: 20%; }

.push--two-fifths {
  left: 40%; }

.push--three-fifths {
  left: 60%; }

.push--four-fifths {
  left: 80%; }

/* Sixths */
.push--one-sixth {
  left: 16.666%; }

.push--two-sixths {
  left: 33.333%; }

.push--three-sixths {
  left: 50%; }

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

/* Eighths */
.push--one-eighth {
  left: 12.5%; }

.push--two-eighths {
  left: 25%; }

.push--three-eighths {
  left: 37.5%; }

.push--four-eighths {
  left: 50%; }

.push--five-eighths {
  left: 62.5%; }

.push--six-eighths {
  left: 75%; }

.push--seven-eighths {
  left: 87.5%; }

/* Tenths */
.push--one-tenth {
  left: 10%; }

.push--two-tenths {
  left: 20%; }

.push--three-tenths {
  left: 30%; }

.push--four-tenths {
  left: 40%; }

.push--five-tenths {
  left: 50%; }

.push--six-tenths {
  left: 60%; }

.push--seven-tenths {
  left: 70%; }

.push--eight-tenths {
  left: 80%; }

.push--nine-tenths {
  left: 90%; }

/* Twelfths */
.push--one-twelfth {
  left: 8.333%; }

.push--two-twelfths {
  left: 16.666%; }

.push--three-twelfths {
  left: 25%; }

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

.push--six-twelfths {
  left: 50%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

.push--nine-twelfths {
  left: 75%; }

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }

  .push--medium--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }

  .push--medium--two-quarters {
    left: 50%; }

  .push--medium--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }

  .push--medium--two-fifths {
    left: 40%; }

  .push--medium--three-fifths {
    left: 60%; }

  .push--medium--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }

  .push--medium--two-sixths {
    left: 33.333%; }

  .push--medium--three-sixths {
    left: 50%; }

  .push--medium--four-sixths {
    left: 66.666%; }

  .push--medium--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }

  .push--medium--two-eighths {
    left: 25%; }

  .push--medium--three-eighths {
    left: 37.5%; }

  .push--medium--four-eighths {
    left: 50%; }

  .push--medium--five-eighths {
    left: 62.5%; }

  .push--medium--six-eighths {
    left: 75%; }

  .push--medium--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }

  .push--medium--two-tenths {
    left: 20%; }

  .push--medium--three-tenths {
    left: 30%; }

  .push--medium--four-tenths {
    left: 40%; }

  .push--medium--five-tenths {
    left: 50%; }

  .push--medium--six-tenths {
    left: 60%; }

  .push--medium--seven-tenths {
    left: 70%; }

  .push--medium--eight-tenths {
    left: 80%; }

  .push--medium--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }

  .push--medium--two-twelfths {
    left: 16.666%; }

  .push--medium--three-twelfths {
    left: 25%; }

  .push--medium--four-twelfths {
    left: 33.333%; }

  .push--medium--five-twelfths {
    left: 41.666%; }

  .push--medium--six-twelfths {
    left: 50%; }

  .push--medium--seven-twelfths {
    left: 58.333%; }

  .push--medium--eight-twelfths {
    left: 66.666%; }

  .push--medium--nine-twelfths {
    left: 75%; }

  .push--medium--ten-twelfths {
    left: 83.333%; }

  .push--medium--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (max-width: 768px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }

  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }

  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }

  .push--medium-down--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }

  .push--medium-down--two-quarters {
    left: 50%; }

  .push--medium-down--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }

  .push--medium-down--two-fifths {
    left: 40%; }

  .push--medium-down--three-fifths {
    left: 60%; }

  .push--medium-down--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }

  .push--medium-down--two-sixths {
    left: 33.333%; }

  .push--medium-down--three-sixths {
    left: 50%; }

  .push--medium-down--four-sixths {
    left: 66.666%; }

  .push--medium-down--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }

  .push--medium-down--two-eighths {
    left: 25%; }

  .push--medium-down--three-eighths {
    left: 37.5%; }

  .push--medium-down--four-eighths {
    left: 50%; }

  .push--medium-down--five-eighths {
    left: 62.5%; }

  .push--medium-down--six-eighths {
    left: 75%; }

  .push--medium-down--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }

  .push--medium-down--two-tenths {
    left: 20%; }

  .push--medium-down--three-tenths {
    left: 30%; }

  .push--medium-down--four-tenths {
    left: 40%; }

  .push--medium-down--five-tenths {
    left: 50%; }

  .push--medium-down--six-tenths {
    left: 60%; }

  .push--medium-down--seven-tenths {
    left: 70%; }

  .push--medium-down--eight-tenths {
    left: 80%; }

  .push--medium-down--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }

  .push--medium-down--two-twelfths {
    left: 16.666%; }

  .push--medium-down--three-twelfths {
    left: 25%; }

  .push--medium-down--four-twelfths {
    left: 33.333%; }

  .push--medium-down--five-twelfths {
    left: 41.666%; }

  .push--medium-down--six-twelfths {
    left: 50%; }

  .push--medium-down--seven-twelfths {
    left: 58.333%; }

  .push--medium-down--eight-twelfths {
    left: 66.666%; }

  .push--medium-down--nine-twelfths {
    left: 75%; }

  .push--medium-down--ten-twelfths {
    left: 83.333%; }

  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 1030px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }

  /* Halves */
  .push--large--one-half {
    left: 50%; }

  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }

  .push--large--two-thirds {
    left: 66.666%; }

  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }

  .push--large--two-quarters {
    left: 50%; }

  .push--large--three-quarters {
    left: 75%; }

  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }

  .push--large--two-fifths {
    left: 40%; }

  .push--large--three-fifths {
    left: 60%; }

  .push--large--four-fifths {
    left: 80%; }

  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }

  .push--large--two-sixths {
    left: 33.333%; }

  .push--large--three-sixths {
    left: 50%; }

  .push--large--four-sixths {
    left: 66.666%; }

  .push--large--five-sixths {
    left: 83.333%; }

  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }

  .push--large--two-eighths {
    left: 25%; }

  .push--large--three-eighths {
    left: 37.5%; }

  .push--large--four-eighths {
    left: 50%; }

  .push--large--five-eighths {
    left: 62.5%; }

  .push--large--six-eighths {
    left: 75%; }

  .push--large--seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }

  .push--large--two-tenths {
    left: 20%; }

  .push--large--three-tenths {
    left: 30%; }

  .push--large--four-tenths {
    left: 40%; }

  .push--large--five-tenths {
    left: 50%; }

  .push--large--six-tenths {
    left: 60%; }

  .push--large--seven-tenths {
    left: 70%; }

  .push--large--eight-tenths {
    left: 80%; }

  .push--large--nine-tenths {
    left: 90%; }

  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }

  .push--large--two-twelfths {
    left: 16.666%; }

  .push--large--three-twelfths {
    left: 25%; }

  .push--large--four-twelfths {
    left: 33.333%; }

  .push--large--five-twelfths {
    left: 41.666%; }

  .push--large--six-twelfths {
    left: 50%; }

  .push--large--seven-twelfths {
    left: 58.333%; }

  .push--large--eight-twelfths {
    left: 66.666%; }

  .push--large--nine-twelfths {
    left: 75%; }

  .push--large--ten-twelfths {
    left: 83.333%; }

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
html {
  background-color: #dbdbdb; }

body {
  background-color: white; }

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

.wrapper {
  *zoom: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8px; }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 480px) {
    .wrapper {
      padding: 0 16px; } }

.wrapper-2x {
  *zoom: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px; }
  .wrapper-2x:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 1030px) {
    .wrapper-2x {
      padding: 0px 96px; } }

.main-content {
  display: block;
  margin-top: 0px;
  opacity: 0;
  transition: all 1000ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .main-content.active {
    opacity: 1; }

.padding {
  padding: 16px; }

.padding-2x {
  padding: 32px; }

@media all and (max-width: 800px) {
  .padding-2x {
    padding-top: 16px;
    padding-bottom: 16px; } }
.padding-4x {
  padding: 64px; }

.large--padding-4x {
  padding-left: 32px;
  padding-right: 32px; }
  @media screen and (min-width: 1030px) {
    .large--padding-4x {
      padding: 32px; } }

.padding-x-4x {
  padding-left: 64px;
  padding-right: 64px; }

.padding-y-4x {
  padding-top: 21px;
  padding-bottom: 21px; }

.padding-top-2x {
  padding-top: 32px; }

.padding-top-4x {
  padding-top: 64px; }

.padding-bottom-2x {
  padding-bottom: 32px; }

.padding-bottom-4x {
  padding-bottom: 64px; }

.padding-x {
  padding-left: 16px;
  padding-right: 16px; }

.padding-x-2x {
  padding-left: 32px;
  padding-right: 32px; }

.padding-y {
  padding-top: 16px;
  padding-bottom: 16px; }

.padding-y-2x {
  padding-top: 32px;
  padding-bottom: 32px; }

.padding-vw {
  padding: 0; }
  @media screen and (min-width: 1030px) {
    .padding-vw {
      padding: 4.1666vw !important; } }

/*============================================================================
  #Helper Classes
==============================================================================*/
.no-select {
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */ }

.is-transitioning {
  display: block !important;
  visibility: visible !important; }

.display-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.relative {
  position: relative; }

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }

@media screen and (min-width: 1030px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.visually-hidden, .supports-fontface .icon-fallback-text .fallback-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.cursor {
  cursor: pointer; }

.bg-pink {
  background-color: #ffd4db;
  transition: background-color 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .bg-pink:hover, .bg-pink:focus {
    background-color: #ffcad2; }
  .bg-pink a:hover {
    color: black; }

.bg-white {
  background-color: white; }

.bg-grey {
  background-color: #dbdbdb; }

.bg-light-grey {
  background-color: #ebebeb; }

.table {
  display: table;
  width: 100%;
  height: 100%; }
  .table .table-cell {
    display: table-cell;
    width: 100%;
    vertical-align: middle; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Circular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: black;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: "Circular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0 0 0.7em;
  line-height: 1; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 2em; }

h2, .h2 {
  font-size: 2em; }

h3, .h3 {
  font-size: 1.57143em; }

h4, .h4 {
  font-size: 1.42857em; }

h5, .h5 {
  font-size: 1.14286em; }

h6, .h6 {
  font-size: 1em; }

p {
  margin: 0 0 8px 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

sup, sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

.underlined span {
  border-bottom: 3px black solid; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-left: 1px solid black; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 8px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

/*================ Code ================*/
code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 8px;
  margin: 0 0 16px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid black;
  border-width: 1px 0 0;
  margin: 16px 0;
  height: 0; }
  hr.hr--small {
    margin: 8px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*================ Section Headers ================*/
.section-header {
  margin-bottom: 0px;
  padding-top: 21px; }

@media screen and (min-width: 1030px) {
  .section-header {
    display: table;
    width: 100%; }

  .section-header__title {
    margin-bottom: 6.4px; }

  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__left h1, .section-header__left .h1, .section-header__left h2, .section-header__left .h2, .section-header__left h3, .section-header__left .h3, .section-header__left h4, .section-header__left .h4,
    .section-header__left .h1, .section-header__left .h2, .section-header__left .h3, .section-header__left .h4 {
      margin-bottom: 0; }

  .section-header__right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 335px; } }
  @media screen and (min-width: 1030px) and (max-width: 768px) {
    .section-header__right {
      margin-bottom: 16px; } }

.section-header__right .form-horizontal,
.section-header__right .collection-view {
  display: inline-block;
  vertical-align: middle; }
@media screen and (min-width: 481px) {
  .section-header__right label + select,
  .section-header__right .collection-view {
    margin-left: 8px; } }

.collection-view {
  display: inline-block;
  border: 1px solid black;
  border-radius: 0px;
  padding: 0 5px;
  height: 37px;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  @media screen and (min-width: 1030px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  padding: 10px 8px;
  color: black;
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: black; }

.change-view--active {
  cursor: default;
  color: black; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 8px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 8px; }
  .rte li {
    margin-bottom: 0.4em; }

.rte--header {
  margin-bottom: 0; }

/*============================================================================
  #Links and Buttons
==============================================================================*/
a,
.text-link {
  color: black;
  text-decoration: none;
  background: transparent;
  transition: color 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  a:hover, a:focus,
  .text-link:hover,
  .text-link:focus {
    color: #ffd4db; }

.bg-grey a,
.bg-grey .text-link {
  color: black;
  text-decoration: none;
  background: transparent;
  transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .bg-grey a:hover, .bg-grey a:focus,
  .bg-grey .text-link:hover,
  .bg-grey .text-link:focus {
    color: black;
    opacity: 0.5; }

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

button {
  overflow: visible; }

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

.btn, .btn--secondary,
.rte .btn--secondary, .btn--invert,
.rte .btn--invert,
.rte .btn,
.rte .btn--secondary,
.rte .btn--invert {
  display: inline-block;
  padding: 8px 10px;
  width: auto;
  margin: 0;
  line-height: 1.42;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  transition: background-color 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95), color 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  /*================ Set primary button colors - can override later ================*/
  background-color: transparent;
  border-color: black;
  color: black; }
  .btn:hover, .btn--secondary:hover, .btn--invert:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .rte .btn--invert:hover {
    background-color: black;
    color: white; }
  .btn:active, .btn--secondary:active, .btn--invert:active, .btn:focus, .btn--secondary:focus, .btn--invert:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn--invert:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus,
  .rte .btn--invert:focus {
    background-color: black;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, [disabled].btn--invert, .btn.disabled, .disabled.btn--secondary, .disabled.btn--invert,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte [disabled].btn--invert,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary,
  .rte .disabled.btn--invert {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: transparent;
  border: 1px black solid;
  color: black; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: black;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: black;
    color: white; }

.btn--invert,
.rte .btn--invert {
  background-color: black;
  border: 1px black solid;
  color: white; }
  .btn--invert:hover,
  .rte .btn--invert:hover {
    background-color: transparent;
    color: black; }
  .btn--invert:active, .btn--invert:focus,
  .rte .btn--invert:active,
  .rte .btn--invert:focus {
    background-color: transparent;
    color: black; }

.btn--small {
  padding: 4px 5px;
  font-size: 0.85714em; }

.btn--large {
  padding: 12px 15px;
  font-size: 1.14286em; }

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

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

ol.alpha {
  list-style: lower-alpha outside; }

.no-bullets {
  list-style: none outside;
  margin-left: 0; }

.inline-list {
  margin-left: 0; }
  .inline-list li {
    display: inline-block;
    margin-bottom: 0; }

.desk-inline-list li {
  display: block !important; }

@media screen and (min-width: 1030px) {
  .desk-inline-list {
    margin-left: 0; }
    .desk-inline-list li {
      display: inline-block !important;
      margin-bottom: 0; } }
/*============================================================================
  #Tables
==============================================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

table.full {
  width: 100%;
  margin-bottom: 1em; }

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

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 8px;
  border: 1px solid black; }

/*============================================================================
  Responsive tables, defined with .table--responsive on table element.
  Only defined for IE9+
==============================================================================*/
@media screen and (max-width: 480px) {
  .table--responsive thead {
    display: none; }
  .table--responsive tr {
    display: block; }
  .table--responsive tr,
  .table--responsive td {
    float: left;
    clear: both;
    width: 100%; }
  .table--responsive th,
  .table--responsive td {
    display: block;
    text-align: right;
    padding: 15px; }
  .table--responsive td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }
  .table--responsive.cart-table img {
    margin: 0 auto; }
  .table--responsive.cart-table .js-qty, .table--responsive.cart-table .ajaxcart__qty {
    float: right; } }

@media screen and (max-width: 480px) {
  .table--small-hide {
    display: none !important; }

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid black; } }
/*============================================================================
  #OOCSS Media Object
    - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-img {
  float: left;
  margin-right: 16px; }

.media-img-right {
  float: right;
  margin-left: 16px; }

.media-img img,
.media-img-right img {
  display: block; }

/*============================================================================
  #Images and Iframes
==============================================================================*/
.img {
  height: 0px;
  padding-bottom: 100%;
  position: relative;
  width: 100%; }
  .img img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }
  @media screen and (min-width: 1030px) {
    .img.img-landscape {
      padding-bottom: 60%; } }

img {
  border: 0 none; }

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

img,
iframe {
  max-width: 100%; }

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

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

.form-vertical {
  margin-bottom: 8px; }

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 768px) {
  input,
  textarea {
    font-size: 16px; } }
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

button {
  background: none;
  border: none;
  cursor: pointer; }

button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

fieldset {
  border: 1px solid black;
  padding: 8px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid black;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 0px; }
  input.no-border,
  textarea.no-border,
  select.no-border {
    border: 0px; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid black; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px; }

/*================ Input element overrides ================*/
input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0 8px 0 0;
  padding: 0;
  width: auto; }

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox; }

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio; }

input[type="image"] {
  padding-left: 0;
  padding-right: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("/cdn/shop/t/75/assets/ico-select.svg?v=82695883560256468271646929573");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

option {
  color: #000;
  background-color: #fff; }

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

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

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }

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

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  margin-bottom: 32px; }
  .input-group.full-width {
    width: 100%; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group .input-group-btn:first-child > .btn--invert,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--invert {
    border-radius: 0px 0 0 0px; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary,
  .input-group .input-group-btn:last-child > .btn--invert {
    border-radius: 0 0px 0px 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }
  .input-group input:focus, .input-group input:active {
    outline: 0; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group .btn--secondary, .input-group .btn--invert,
.input-group .input-group-field {
  height: 37px; }

.input-group .input-group-field {
  width: 100%;
  padding-left: 100px;
  background-color: transparent; }
  .input-group .input-group-field + label {
    display: block;
    position: absolute;
    top: 50%;
    left: 16px;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100px; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

/*============================================================================
  #Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block; }

.holi-icon {
  display: inline-block !important;
  width: 32px;
  margin-bottom: 16px;
  pointer-events: none; }
  .holi-icon.holi-icon-large {
    width: 64px; }

.grid__item .holi-icon, .product-desc-wrap .holi-icon {
  display: none !important; }

#pre-footer .holi-icon {
  display: inline-block !important; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon:before {
  display: none; }

.supports-fontface .icon:before {
  display: inline;
  font-family: "icons";
  text-decoration: none;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*================ Icon mapping ================*/
.icon-amazon_payments:before {
  content: "\e800"; }

.icon-american_express:before {
  content: "\41"; }

.icon-arrow-down:before {
  content: "\e607"; }

.icon-bitcoin:before {
  content: "\42"; }

.icon-cart:before {
  content: "\e600"; }

.icon-cirrus:before {
  content: "\43"; }

.icon-dankort:before {
  content: "\64"; }

.icon-diners_club:before {
  content: "\63"; }

.icon-discover:before {
  content: "\44"; }

.icon-dogecoin:before {
  content: "\e904"; }

.icon-dwolla:before {
  content: "\e905"; }

.icon-facebook:before {
  content: "\66"; }

.icon-fancy:before {
  content: "\46"; }

.icon-forbrugsforeningen:before {
  content: "\e906"; }

.icon-google-plus:before {
  content: "\e900"; }

.icon-grid-view:before {
  content: "\e603"; }

.icon-hamburger:before {
  content: "\e601"; }

.icon-instagram:before {
  content: "\e901"; }

.icon-interac:before {
  content: "\49"; }

.icon-jcb:before {
  content: "\4a"; }

.icon-list-view:before {
  content: "\e604"; }

.icon-litecoin:before {
  content: "\e908"; }

.icon-maestro:before {
  content: "\6d"; }

.icon-master:before {
  content: "\4d"; }

.icon-minus:before {
  content: "\e602"; }

.icon-paypal:before {
  content: "\50"; }

.icon-pinterest:before {
  content: "\70"; }

.icon-plus:before {
  content: "\e605"; }

.icon-rss:before {
  content: "\72"; }

.icon-search:before {
  content: "\73"; }

.icon-stripe:before {
  content: "\53"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-twitter:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-visa:before {
  content: "\56"; }

.icon-x:before {
  content: "\e606"; }

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

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin: 0 4px 4px;
    color: #000000;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.social-icons li {
  margin: 0 8px 8px;
  vertical-align: middle; }
  @media screen and (min-width: 481px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    font-size: 30px;
    line-height: 26px; }
  .social-icons li a {
    color: #000000; }
    .social-icons li a:hover {
      color: black; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin-bottom: 1em;
  text-align: center; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  padding: 8px 0;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  background-color: white; }
  @media screen and (max-width: 1030px) {
    .site-header .header-wrap {
      padding-left: 32px;
      padding-right: 32px; } }
  @media screen and (min-width: 1030px) {
    .site-header {
      padding: 0px; } }
  .site-header.active {
    opacity: 1.0; }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }
  .site-header .nav-open-icon {
    display: none !important; }
    @media screen and (max-width: 1170px) {
      .site-header .nav-open-icon {
        display: inline-block !important;
        margin-right: -16px;
        outline: none !important; } }

.site-header__logo {
  text-align: center;
  margin: 0 auto;
  max-width: 100%; }
  .site-header__logo svg {
    width: 150px;
    line-height: 0;
    display: block;
    margin: 12px 0px; }
  .site-header__logo svg path, .site-header__logo svg rect, .site-header__logo svg polygon {
    transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .site-header__logo svg:hover path, .site-header__logo svg:hover rect, .site-header__logo svg:hover polygon, .site-header__logo svg:focus path, .site-header__logo svg:focus rect, .site-header__logo svg:focus polygon {
    fill: #ffd4db !important; }
  @media screen and (max-width: 1030px) {
    .site-header__logo svg {
      margin: 12px 0; } }
  @media screen and (min-width: 1030px) {
    .site-header__logo {
      text-align: left; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0 auto; }

.site-header__logo-link {
  max-width: 450px;
  margin: 0 auto; }

.site-header__cart-toggle {
  display: inline-block;
  width: 24px;
  border: 1px black solid;
  text-align: center;
  font-size: 0.85em;
  margin-left: 8px;
  cursor: pointer;
  position: relative;
  background-color: white;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .site-header__cart-toggle:hover, .site-header__cart-toggle:focus {
    background-color: black;
    color: white; }
  .site-header__cart-toggle:before {
    width: 13px;
    height: 6px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    position: absolute;
    left: 4px;
    top: -6px;
    border: 1px black solid;
    content: ''; }

.site-header__search {
  display: inline-block;
  max-width: 400px;
  margin-top: 8px;
  width: 100%; }

.search-bar {
  max-width: 100%; }
  @media screen and (max-width: 768px) {
    .search-bar {
      margin-left: auto;
      margin-right: auto; } }

a#questions {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 1px black solid;
  text-align: center;
  display: inline-block;
  margin-left: 8px;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  a#questions:hover, a#questions:focus {
    background-color: black;
    color: white; }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  background-color: white; }

.site-nav, .site-nav--mobile {
  cursor: default;
  margin: 0 0 0 -8px; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block; }
    .site-nav li:hover a, .site-nav--mobile li:hover a, .site-nav li:active a, .site-nav--mobile li:active a, .site-nav li:focus a, .site-nav--mobile li:focus a {
      color: #ffd4db; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block; }

/*================ Home to hamburger and cart that toggle drawers ================*/
.text-right .site-nav--mobile {
  margin: 0 -8px 0 0; }

@media screen and (min-width: 1030px) {
  .utility-right {
    text-align: right; } }

.site-nav__link {
  display: block;
  text-decoration: none;
  padding: 8px;
  white-space: nowrap;
  color: black;
  /*  &:hover,
    &:active,
    &:focus {
      color: darken($colorNavText, 15%);
    }*/ }
  .site-nav__link span {
    border-bottom: 2px transparent solid;
    transition: border-color 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .site-nav__link:hover {
    color: black !important; }
  @media screen and (min-width: 1030px) {
    .site-nav__link {
      padding: 24px 8px; }
      .site-footer .site-nav__link {
        padding: 0px 4px; } }
  @media screen and (min-width: 1280px) {
    .site-nav__link {
      padding: 24px 10px; } }
  .utility-navigation .site-nav__link {
    display: inline-block; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    padding-left: 4px; }
  .site-nav--active > .site-nav__link {
    font-weight: bold; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

/*================ Dropdowns ================*/
.site-nav--has-dropdown > a span {
  border-bottom: 2px transparent solid;
  transition: border-color 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
@media screen and (min-width: 1030px) {
  .site-nav--has-dropdown {
    position: static !important; } }

.site-nav--has-dropdown:hover {
  background-color: #dbdbdb; }
  .site-nav--has-dropdown:hover.holistory-nav {
    background-color: #ffd4db; }
    .site-nav--has-dropdown:hover.holistory-nav .site-nav__dropdown {
      background-color: #ffd4db; }
  .site-nav--has-dropdown:hover > a span {
    border-bottom: 2px black solid; }
  .site-nav--has-dropdown:hover a {
    color: black !important; }

.site-nav--link:hover > a span {
  border-bottom: 2px black solid; }

.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  width: 100%;
  z-index: 5;
  background-color: #dbdbdb;
  padding-top: 32px;
  padding-bottom: 32px; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown li {
    display: inline-block; }
    @media screen and (min-width: 1030px) {
      .site-nav__dropdown li {
        padding-left: 64px;
        padding-right: 64px; } }
  .site-nav__dropdown a {
    background-color: transparent;
    color: black; }
    .site-nav__dropdown a span {
      border-bottom: 2px transparent solid;
      transition: border-color 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }

/*================ Search bar in header ================*/
.nav-search {
  position: relative;
  padding: 10px 0; }
  @media screen and (max-width: 768px) {
    .nav-search {
      padding: 0 0 8px;
      margin: 0 auto;
      text-align: center; } }

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: -8px -8px 0 -8px; }
  .mobile-nav li {
    margin-bottom: 0; }

.mobile-nav__search {
  padding: 8px; }
  .mobile-nav__search .search-bar {
    margin-bottom: 0; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    border-bottom: 1px solid black; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: black;
  padding: 20px 25px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: black; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    /*background-color: darken($colorDrawers, 5%);*/ }

.mobile-nav__item--active {
  font-weight: bold; }

.mobile-nav__has-sublist {
  display: table;
  width: 100%; }
  .mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

.mobile-nav__sublist li {
  padding-left: 32px !important; }

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.mobile-nav--expanded .mobile-nav__toggle-open {
  display: none; }

.mobile-nav__toggle-close {
  display: none; }
  .mobile-nav--expanded .mobile-nav__toggle-close {
    display: block; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 700px;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 16px;
    font-weight: normal; }

/*============================================================================
  #Drawers
==============================================================================*/
@media screen and (max-width: 1030px) {
  .js-drawer-open, .showing-results {
    overflow: hidden; } }

#questionnaire .drawer--left {
  z-index: 999; }

#questionnaire .drawer--right {
  transition: all 0ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  @media screen and (max-width: 1030px) {
    #questionnaire .drawer--right {
      width: 100vw;
      right: -100vw;
      -ms-transform: translateX(-100vw);
      -webkit-transform: translateX(-100vw);
      transform: translateX(-100vw);
      max-width: none;
      z-index: 999; } }

#querstionnaire.showing-results .drawer__close {
  display: none !important; }

.drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 32px 8px;
  max-width: 95%;
  z-index: 10;
  color: black;
  background-color: #dbdbdb;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .drawer a {
    color: black; }
  .drawer input,
  .drawer textarea {
    border-color: black; }

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

.drawer--right {
  background-color: white;
  width: 95vw;
  right: -95vw; }
  @media screen and (min-width: 1030px) {
    .drawer--right {
      width: 50vw;
      right: -50vw;
      padding: 64px; } }
  @media screen and (max-width: 1030px) {
    .drawer--right {
      padding-left: 0px;
      padding-right: 0px;
      background-color: #ffd4db; }
      .drawer--right .cart-inner-wrap {
        background-color: transparent !important;
        padding: 32px !important; } }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-95vw);
    -webkit-transform: translateX(-95vw);
    transform: translateX(-95vw); }
    @media screen and (min-width: 1030px) {
      .js-drawer-open-right .drawer--right {
        -ms-transform: translateX(-50vw);
        -webkit-transform: translateX(-50vw);
        transform: translateX(-50vw); } }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

#PageContainer {
  overflow: hidden; }

.js-drawer-open-right .clear-form {
  display: none; }

.is-moved-by-drawer {
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  @media screen and (max-width: 1030px) {
    .is-moved-by-drawer {
      -webkit-transform: translateZ(0);
      will-change: transform; } }
  .js-drawer-open-right .is-moved-by-drawer {
    /*@include transform(translateX(-$drawerCartWidth));

    @include at-query ($min, $large){
      @include transform(translateX(-50vw));
    }*/ }

.drawer__header {
  display: table;
  height: 70px;
  width: 100%;
  margin-bottom: 8px;
  /*border-bottom: 1px solid $colorDrawerBorder;*/ }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle; }

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center;
  font-size: 1.28571em; }

.drawer__close button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit; }
  .drawer__close button:active, .drawer__close button:focus {
    background-color: #cecece; }

/*============================================================================
  #Newsletter Signup
==============================================================================*/
.newsletter-signup input[type="email"] {
  width: 100%; }
.newsletter-signup .btn, .newsletter-signup .btn--secondary, .newsletter-signup .btn--invert {
  width: 100%;
  height: 39px;
  position: relative;
  top: -1px; }
.newsletter-signup h4, .newsletter-signup .h4 {
  padding-top: 1em; }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: #dbdbdb;
  padding: 12px 0;
  color: black; }

/*============================================================================
  #Product and Collection Grids
==============================================================================*/
.grid__image {
  display: block;
  margin: 0 auto;
  position: relative;
  height: 0px;
  padding-bottom: 100%;
  background-color: white; }
  .grid__image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    object-position: center center; }

.pgi {
  margin-bottom: 64px;
  /*  &:hover, &:focus{
      .pgi-type, .pgi-price{
        opacity: 1.0;
      }
    }*/ }
  .pgi .btn, .pgi .btn--secondary, .pgi .btn--invert {
    margin-top: 16px; }
  .pgi .grid__image {
    transition: opacity 1000ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    opacity: 1.0; }
  .pgi:hover .grid__image, .pgi:focus .grid__image {
    opacity: 0.5; }
  .pgi .holi-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: 99; }
    @media screen and (max-width: 1030px) {
      .pgi .holi-icon {
        display: none !important; } }
  .pgi .pgi-info {
    padding: 0 2px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 1030px) {
      .pgi .pgi-info a {
        display: block;
        height: 64px; } }
  .pgi .pgi-type {
    height: 50px;
    overflow: hidden;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (min-width: 1030px) {
      .pgi .pgi-type {
        opacity: 1;
        transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); } }
  @media screen and (min-width: 1030px) {
    .pgi .pgi-price {
      opacity: 1;
      transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); } }

.pgi-add .pgi-info {
  height: 160px; }

.template-collection .coll-desc-wrapper {
  max-width: 640px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em; }
@media screen and (min-width: 1030px) {
  .template-collection .pgi .pgi-info {
    max-width: calc(100% - 32px); } }

/*============================================================================
  #Collection Page
==============================================================================*/
#all-products .pgi div.errors {
  display: none !important; }

@media screen and (min-width: 1030px) {
  .template-collection .section-header-large {
    height: 75vh;
    overflow: hidden; }
    .template-collection .section-header-large .grid, .template-collection .section-header-large .grid--rev, .template-collection .section-header-large .grid--full, .template-collection .section-header-large .grid__item, .template-collection .section-header-large .grid__item-2 {
      height: 100%; } }
@media screen and (max-width: 767px) {
  .template-collection .section-header-large .h2 {
    margin-top: 15px; }
  .template-collection .coll-desc-wrapper {
    padding-left: 5px;
    padding-right: 5px; } }

/*============================================================================
  #Collection Filters
==============================================================================*/
.filter--active {
  font-weight: bold; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin-bottom: 16px; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    margin-right: 7px; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }

/*============================================================================
  #Product Page
==============================================================================*/
.tab-product-faceyoga article.video {
  display: block !important; }

@media screen and (min-width: 1024px) and (min-height: 768px) {
  .product-desc {
    position: fixed;
    bottom: 0px;
    right: 0px; } }
@media screen and (min-width: 1030px) {
  .product-desc {
    height: calc(100vh - 68px);
    min-height: 768px;
    overflow: hidden; }
    .js-drawer-open-right .product-desc, .showing-results .product-desc, .is-transitioning .product-desc {
      position: relative !important; }
    .product-desc .product-desc-wrap {
      padding-left: 64px;
      padding-right: 64px; } }
@media screen and (max-width: 767px) {
  .product-desc .product-desc-wrap {
    padding-top: 45px;
    padding-bottom: 45px; } }
@media screen and (max-width: 1030px) {
  .product-desc .product-desc-wrap {
    padding-left: 32px;
    padding-right: 32px; } }

.product-single__variants {
  display: none; }
  .no-js .product-single__variants {
    display: block; }

@media screen and (min-width: 1030px) {
  .product-single__photos {
    height: calc(100vh - 66px);
    overflow: hidden;
    margin-bottom: 0px;
    min-height: 768px; }
    .product-single__photos img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; } }

.product-single__photos #video,
.product-single__thumbnails #video {
  opacity: 1.0; }
  @media screen and (max-width: 1030px) {
    .product-single__photos #video,
    .product-single__thumbnails #video {
      padding-bottom: 100%; } }
.product-single__photos a, .product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  display: block;
  margin: 0 auto; }
.product-single__photos li,
.product-single__thumbnails li {
  margin-bottom: 16px; }

@media screen and (min-width: 1024px) and (max-height: 768px) {
  .related-products-wrap {
    width: 100% !important; }
    .related-products-wrap .featured-products.grid .large--one-half, .related-products-wrap .featured-products.grid--rev .large--one-half, .related-products-wrap .featured-products.grid--full .large--one-half {
      width: 25% !important; }
      .related-products-wrap .featured-products.grid .large--one-half .pgi-title, .related-products-wrap .featured-products.grid--rev .large--one-half .pgi-title, .related-products-wrap .featured-products.grid--full .large--one-half .pgi-title {
        height: 32px; } }
.related-heading {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto; }

.template-product .product-desc button#AddToCart {
  border: 0px;
  border-right: 1px black solid; }
.template-product .product-desc .product-desc-wrap .holi-icon {
  position: absolute;
  right: 64px; }
  @media screen and (max-width: 1030px) {
    .template-product .product-desc .product-desc-wrap .holi-icon {
      left: auto;
      right: 32px; } }
.template-product .product-desc .selector-wrapper {
  display: none; }
.template-product .product-desc .js-qty input, .template-product .product-desc .ajaxcart__qty input {
  border: 0px; }
.template-product .product-desc .button-wrap {
  border: 1px black solid; }
  .template-product .product-desc .button-wrap .spurit-po-wrapper {
    width: 100%; }
    .template-product .product-desc .button-wrap .spurit-po-wrapper .design-pre-order-template-wrapper {
      width: 100%; }
      .template-product .product-desc .button-wrap .spurit-po-wrapper .design-pre-order-template-wrapper #pre_order_custom {
        width: 100%; }
        .template-product .product-desc .button-wrap .spurit-po-wrapper .design-pre-order-template-wrapper #pre_order_custom .pre-order-2-button {
          width: 100%; }
  .template-product .product-desc .button-wrap .btn, .template-product .product-desc .button-wrap .btn--secondary, .template-product .product-desc .button-wrap .btn--invert {
    background-color: black;
    color: white; }
    @media screen and (min-width: 1030px) {
      .template-product .product-desc .button-wrap .btn, .template-product .product-desc .button-wrap .btn--secondary, .template-product .product-desc .button-wrap .btn--invert {
        border-right: 1px black solid; } }
    .template-product .product-desc .button-wrap .btn:hover, .template-product .product-desc .button-wrap .btn--secondary:hover, .template-product .product-desc .button-wrap .btn--invert:hover, .template-product .product-desc .button-wrap .btn:focus, .template-product .product-desc .button-wrap .btn--secondary:focus, .template-product .product-desc .button-wrap .btn--invert:focus {
      background-color: transparent;
      color: black; }
    @media screen and (max-width: 1030px) {
      .template-product .product-desc .button-wrap .btn, .template-product .product-desc .button-wrap .btn--secondary, .template-product .product-desc .button-wrap .btn--invert {
        text-align: center !important;
        font-size: 15px; } }
  .template-product .product-desc .button-wrap .js-qty, .template-product .product-desc .button-wrap .ajaxcart__qty {
    max-width: none;
    margin-bottom: 0px;
    padding-top: 3px;
    padding-bottom: 0px; }
    .template-product .product-desc .button-wrap .js-qty .js-qty__adjust, .template-product .product-desc .button-wrap .ajaxcart__qty .js-qty__adjust, .template-product .product-desc .button-wrap .js-qty .ajaxcart__qty-adjust, .template-product .product-desc .button-wrap .ajaxcart__qty .ajaxcart__qty-adjust {
      font-size: 0.75em; }

.desc-headings {
  width: 100% !important;
  white-space: nowrap;
  overflow-x: scroll; }
  .desc-headings::-webkit-scrollbar {
    display: none; }
  .desc-headings .grid__item,
  .desc-headings .grid__item-2 {
    padding: 10px 0;
    float: none !important;
    vertical-align: middle;
    line-height: 1;
    width: fit-content;
    margin-right: 40px;
    color: #888685; }
    @media screen and (max-width: 767px) {
      .desc-headings .grid__item,
      .desc-headings .grid__item-2 {
        margin-right: 20px; } }
    .desc-headings .grid__item:last-child,
    .desc-headings .grid__item-2:last-child {
      margin-right: 0px !important; }
    .desc-headings .grid__item.active,
    .desc-headings .grid__item-2.active {
      border-bottom: 3px solid #000000;
      color: #000000; }

.line-special {
  border-bottom: 1px solid #888685;
  margin-top: -1.5px;
  margin-bottom: 35px; }

@media screen and (min-width: 1030px) {
  .desc-wrap {
    padding-bottom: 0px !important; } }

@media screen and (min-width: 1030px) {
  .desc-detail {
    height: 270px;
    overflow: scroll; }
    .desc-detail::-webkit-scrollbar {
      display: none; } }
@media screen and (min-width: 1024px) and (min-height: 768px) {
  .desc-detail {
    height: 250px;
    overflow: scroll; }
    .desc-detail::-webkit-scrollbar {
      display: none; } }
@media screen and (max-width: 767px) {
  .desc-detail {
    height: 235px;
    overflow: scroll; }
    .desc-detail::-webkit-scrollbar {
      display: none; } }
.desc-detail div {
  display: none; }
  .desc-detail div.active {
    display: block; }

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 0px;
  padding: 6px 12px;
  margin-bottom: 8px;
  border: 1px solid transparent;
  font-size: 0.9em;
  text-align: left; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.note {
  border-color: black; }

.errors ul {
  list-style: disc outside;
  margin-left: 20px; }

.form-success {
  color: #56ad6a;
  background-color: #ecfef0;
  border-color: #56ad6a; }
  .form-success a {
    color: #56ad6a;
    text-decoration: underline; }
    .form-success a:hover {
      text-decoration: none; }

.form-error,
.errors {
  color: #d02e2e;
  background-color: #fff6f6;
  border-color: #d02e2e; }
  .form-error a,
  .errors a {
    color: #d02e2e;
    text-decoration: underline; }
    .form-error a:hover,
    .errors a:hover {
      text-decoration: none; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart__row {
  position: relative;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid black; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }

.cart-table th {
  font-weight: normal; }
.cart-table td,
.cart-table th {
  padding: 30px 15px;
  border: none; }

@media screen and (min-width: 1030px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 100%; }

.cart__subtotal {
  margin: 0 0 0 5.33333px;
  display: inline; }

.cart__mini-labels {
  display: block;
  margin: 5.33333px 0;
  font-size: 0.85714em; }
  @media screen and (min-width: 1030px) {
    .cart__mini-labels {
      display: none; } }

.cart__remove {
  display: block; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
.ajaxcart__inner {
  margin-bottom: 16px; }

.ajaxcart__row > .grid, .ajaxcart__row > .grid--rev, .ajaxcart__row > .grid--full {
  margin-left: -8px; }
  .ajaxcart__row > .grid > .grid__item, .ajaxcart__row > .grid--rev > .grid__item, .ajaxcart__row > .grid--full > .grid__item {
    padding-left: 8px; }

.ajaxcart__product {
  position: relative;
  max-height: 500px; }
  .ajaxcart__product.is-removed {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.ajaxcart__row {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid black; }

.ajaxcart__product-image {
  display: block;
  overflow: hidden;
  margin-bottom: 15px; }
  .ajaxcart__product-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.ajaxcart__product-name,
.ajaxcart__product-meta {
  display: block; }

.ajaxcart__product-name + .ajaxcart__product-meta {
  padding-top: 3.2px; }

/*================ Quantity Selectors ================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 5px 25px;
    margin: 0; }

.js-qty__adjust, .ajaxcart__qty-adjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border: 0 none;
  padding: 0 8px;
  background: none;
  text-align: center;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .js-qty__adjust:hover, .ajaxcart__qty-adjust:hover, .js-qty__adjust:focus, .ajaxcart__qty-adjust:focus {
    color: black; }

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0;
  outline: none; }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0;
  outline: none; }

/*================ Quantity Selectors in Ajax Cart ================*/
.ajaxcart__qty {
  margin: 0; }
  .is-loading .ajaxcart__qty {
    opacity: 0.5;
    transition: none; }

.ajaxcart__qty-num {
  border-color: black;
  color: black; }

.ajaxcart__qty-adjust {
  color: black; }

.ajaxcart__qty--plus {
  border-color: black; }

.ajaxcart__qty--minus {
  border-color: black; }

.ajaxcart-item__price-strikethrough {
  float: right; }

/*============================================================================
  #Index
==============================================================================*/
.block, .shopify-section {
  opacity: 0;
  transition: 1000ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  /* Full height */
  /* Collection Grid */
  /* Figures Grid */
  /* Featured Products */ }
  .block.active, .shopify-section.active {
    opacity: 1; }
  .block .hp-banner p, .shopify-section .hp-banner p {
    max-width: 360px;
    margin: 0 auto; }
  .block h2, .block .h2, .shopify-section h2, .shopify-section .h2 {
    margin-bottom: 2em; }
  @media all and (max-width: 800px) {
    .block h2, .block .h2, .shopify-section h2, .shopify-section .h2 {
      margin-bottom: 1em; } }
  .block h4, .block .h4, .shopify-section h4, .shopify-section .h4 {
    margin-bottom: 0px; }
  .block p, .shopify-section p {
    margin: 0; }
  .block img, .shopify-section img {
    display: block; }
  .block .cta-wrap p, .shopify-section .cta-wrap p {
    margin: 64px auto;
    max-width: 270px; }
  @media screen and (max-width: 1030px) {
    .block .table-cell, .shopify-section .table-cell {
      padding: 0px !important; } }
  @media screen and (min-width: 1030px) {
    .block.block-full-height,
    .block .block-full-height, .shopify-section.block-full-height,
    .shopify-section .block-full-height {
      height: calc(100vh - 66px);
      min-height: 768px; }
      .block.block-full-height .grid, .block.block-full-height .grid--rev, .block.block-full-height .grid--full, .block.block-full-height .grid__item, .block.block-full-height .grid__item-2, .block.block-full-height .full-height,
      .block .block-full-height .grid,
      .block .block-full-height .grid--rev,
      .block .block-full-height .grid--full,
      .block .block-full-height .grid__item,
      .block .block-full-height .grid__item-2,
      .block .block-full-height .full-height, .shopify-section.block-full-height .grid, .shopify-section.block-full-height .grid--rev, .shopify-section.block-full-height .grid--full, .shopify-section.block-full-height .grid__item, .shopify-section.block-full-height .grid__item-2, .shopify-section.block-full-height .full-height,
      .shopify-section .block-full-height .grid,
      .shopify-section .block-full-height .grid--rev,
      .shopify-section .block-full-height .grid--full,
      .shopify-section .block-full-height .grid__item,
      .shopify-section .block-full-height .grid__item-2,
      .shopify-section .block-full-height .full-height {
        height: 100%; }
      .block.block-full-height .text-wrap, .block.block-full-height .cta-wrap,
      .block .block-full-height .text-wrap,
      .block .block-full-height .cta-wrap, .shopify-section.block-full-height .text-wrap, .shopify-section.block-full-height .cta-wrap,
      .shopify-section .block-full-height .text-wrap,
      .shopify-section .block-full-height .cta-wrap {
        height: 50%; }
      .block.block-full-height .img-wrap img,
      .block .block-full-height .img-wrap img, .shopify-section.block-full-height .img-wrap img,
      .shopify-section .block-full-height .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover; } }
      @media screen and (min-width: 1030px) and (min-width: 1030px) {
        .block.block-full-height .text-wrap.large-cta-hack, .block.block-full-height .cta-wrap.large-cta-hack,
        .block .block-full-height .text-wrap.large-cta-hack,
        .block .block-full-height .cta-wrap.large-cta-hack, .shopify-section.block-full-height .text-wrap.large-cta-hack, .shopify-section.block-full-height .cta-wrap.large-cta-hack,
        .shopify-section .block-full-height .text-wrap.large-cta-hack,
        .shopify-section .block-full-height .cta-wrap.large-cta-hack {
          display: table !important; } }
  @media screen and (min-width: 1030px) {
    .block.hp-block-collections .hp-block-collections-wrap,
    .block .hp-block-collections .hp-block-collections-wrap, .shopify-section.hp-block-collections .hp-block-collections-wrap,
    .shopify-section .hp-block-collections .hp-block-collections-wrap {
      padding-left: 64px;
      padding-right: 64px; } }
  @media screen and (min-width: 1030px) {
    .block.hp-block-collections .hp-block-item,
    .block .hp-block-collections .hp-block-item, .shopify-section.hp-block-collections .hp-block-item,
    .shopify-section .hp-block-collections .hp-block-item {
      padding-top: 64px;
      padding-bottom: 64px; } }
  .block.hp-block-collections .img,
  .block .hp-block-collections .img, .shopify-section.hp-block-collections .img,
  .shopify-section .hp-block-collections .img {
    /*margin-bottom: $gutter*4;*/ }
  @media screen and (min-width: 1030px) {
    .block.hp-block-figures .grid__item,
    .block .hp-block-figures .grid__item, .shopify-section.hp-block-figures .grid__item,
    .shopify-section .hp-block-figures .grid__item {
      /*padding-top: $gutter*4;
      padding-bottom: $gutter*4;*/ }
      .block.hp-block-figures .grid__item.no-pad,
      .block .hp-block-figures .grid__item.no-pad, .shopify-section.hp-block-figures .grid__item.no-pad,
      .shopify-section .hp-block-figures .grid__item.no-pad {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        /*p{margin:0!important;}*/ } }
  .block.block-featured-products h2, .block.block-featured-products .h2,
  .block .block-featured-products h2,
  .block .block-featured-products .h2, .shopify-section.block-featured-products h2, .shopify-section.block-featured-products .h2,
  .shopify-section .block-featured-products h2,
  .shopify-section .block-featured-products .h2 {
    margin-top: 2em;
    margin-bottom: 1em; }
  @media screen and (min-width: 1030px) {
    .block.block-featured-products .abs-wrap,
    .block .block-featured-products .abs-wrap, .shopify-section.block-featured-products .abs-wrap,
    .shopify-section .block-featured-products .abs-wrap {
      position: absolute;
      height: 100%;
      left: 0px; } }
  .block.block-featured-products .img-wrap img,
  .block .block-featured-products .img-wrap img, .shopify-section.block-featured-products .img-wrap img,
  .shopify-section .block-featured-products .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media screen and (min-width: 1030px) {
    .block.block-featured-products .product-wrap,
    .block .block-featured-products .product-wrap, .shopify-section.block-featured-products .product-wrap,
    .shopify-section .block-featured-products .product-wrap {
      right: 0px;
      position: relative;
      margin-left: 50%; } }
  @media screen and (min-width: 1030px) {
    .block.block-featured-products .featured-products,
    .block .block-featured-products .featured-products, .shopify-section.block-featured-products .featured-products,
    .shopify-section .block-featured-products .featured-products {
      margin-top: 64px;
      margin-bottom: 0px; } }

/*============================================================================
  #Slick
==============================================================================*/
.slick-list {
  width: 100%;
  height: 100%; }
  .slick-list .slick-track {
    height: 100%; }
    @media screen and (max-width: 1030px) {
      .slick-list .slick-track .slick-slide {
        height: 66vh !important;
        padding-bottom: 0px !important; } }
    @media screen and (min-width: 1030px) {
      .slick-list .slick-track .slick-slide {
        padding-bottom: 0px !important; } }

#marque .slick-list {
  height: fit-content; }

@media screen and (min-width: 1030px) {
  .slick-prev,
  .slick-next {
    opacity: 0; }

  .product-single__photos:hover .slick-next,
  .product-single__photos:hover .slick-prev {
    opacity: 0.75; } }
.yoga-link {
  cursor: pointer; }
  .yoga-link:hover, .yoga-link:focus {
    color: black !important;
    opacity: 0.5; }

.yl.active span {
  border-bottom: 1px black solid; }

/*============================================================================
  #Page Template
==============================================================================*/
.jump-nav .active {
  opacity: 1.0; }
  .jump-nav .active span {
    border-bottom: 1px black solid; }
.jump-nav li {
  transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .jump-nav li a {
    color: black !important; }
@media screen and (min-width: 1030px) {
  .jump-nav {
    position: fixed; } }

.template-page .rte p {
  /*margin-top: 32px;*/
  margin-bottom: 32px; }
.template-page #faq strong {
  display: inline-block;
  border-bottom: 1px black solid; }
.template-page#questionnaire .main-content {
  padding-top: 0px;
  padding-bottom: 0px; }
  @media screen and (max-width: 960px) {
    .template-page#questionnaire .main-content {
      margin-top: 0px !important; } }
.template-page .main-content {
  padding-top: 32px;
  padding-bottom: 32px; }

body[data-color="grey"] a:hover, body[data-color="grey"] .text-link:hover {
  color: black;
  opacity: 0.75; }
body[data-color="grey"] .main-content {
  background: #dbdbdb; }

/*============================================================================
  #Account Pages
==============================================================================*/
@media screen and (min-width: 1030px) {
  #account .main-content {
    padding-top: 96px;
    padding-bottom: 96px; } }

.template-customers-login .main-content,
.template-customers-register .main-content,
.template-customers-account .main-content {
  padding: 64px 0; }
  @media screen and (min-width: 1030px) {
    .template-customers-login .main-content,
    .template-customers-register .main-content,
    .template-customers-account .main-content {
      padding: 128px 0; } }

.template-customers-account .main-content {
  padding-left: 64px;
  padding-right: 64px;
  min-height: 768px; }
  @media screen and (max-width: 1030px) {
    .template-customers-account .main-content {
      padding-left: 32px;
      padding-right: 32px; } }

/*============================================================================
  #Quiz
==============================================================================*/
.showing-results #welcome {
  display: none !important; }

#questionnaire {
  /* Hack for presentation */ }
  #questionnaire .cart-inner-wrap {
    min-height: 100%;
    padding: 64px 64px 32px !important; }
  @media screen and (max-width: 960px) {
    #questionnaire .cart-inner-wrap {
      min-height: 100%;
      padding: 0px 16px 32px !important; } }
  @media screen and (min-width: 1030px) {
    #questionnaire #PageContainer {
      transform: translateX(0px) !important; } }
  #questionnaire .email-hold {
    display: none !important; }
  #questionnaire #email_signup_actual {
    height: 100%; }
  #questionnaire .success_message {
    display: none !important;
    visibility: hidden !important; }
  #questionnaire .klaviyo_messages {
    position: absolute;
    right: 0px;
    width: 100%; }
  #questionnaire #quiz .money {
    display: none; }
  #questionnaire .site-footer {
    display: none; }
  #questionnaire .showing-results .site-footer {
    display: block; }
  #questionnaire .site-header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: white;
    width: 100%;
    z-index: 999; }
    @media screen and (max-width: 960px) {
      #questionnaire .site-header {
        position: static !important; } }
  @media screen and (min-width: 1030px) {
    #questionnaire .site-footer {
      width: 50%; } }

@media screen and (min-width: 1030px) {
  .right-panel {
    position: fixed;
    width: 50%;
    right: 0px;
    bottom: 0px; } }

.begin-quiz {
  cursor: pointer;
  transition: background-color 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  @media screen and (min-width: 1025px) {
    .begin-quiz:hover, .begin-quiz:focus {
      background-color: #ffcad2; } }

#welcome {
  opacity: 0;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  height: auto;
  overflow: hidden; }
  #welcome.active {
    opacity: 1.0; }
  #welcome .welcome-block {
    display: grid;
    transition: max-height 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
    @media screen and (max-width: 768px) {
      #welcome .welcome-block {
        height: 670px; } }
    #welcome .welcome-block h2, #welcome .welcome-block .h2 {
      margin-top: 0px; }
    #welcome .welcome-block .grid-wrap {
      align-self: center;
      opacity: 0;
      transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
    #welcome .welcome-block.active .grid-wrap {
      opacity: 1.0; }
  @media screen and (min-width: 768px) {
    #welcome .welcome-block {
      height: 50%;
      max-height: 50%;
      overflow: hidden; } }
  @media screen and (min-width: 768px) {
    #welcome {
      height: calc(100vh - 4.1666vw - 4.1666vw);
      overflow: scroll; } }
  @media screen and (min-width: 1024px) {
    #welcome {
      height: calc(100vh - 4.1666vw - 4.1666vw - 64px); } }
  #welcome h2 span, #welcome .h2 span, #welcome .start-quiz span {
    width: 100%; }
  #welcome .start-quiz {
    position: absolute;
    bottom: 64px;
    left: 0px;
    width: 100%;
    transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
    #welcome .start-quiz:hover, #welcome .start-quiz:focus {
      opacity: 0.33;
      mix-blend-mode: multiply; }

#quiz {
  opacity: 0;
  display: none;
  transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /* Sizing of Each Panel in Quiz */
  /* General Styling */ }
  #quiz.active {
    opacity: 1.0; }
  #quiz #survey {
    opacity: 0;
    transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
    #quiz #survey.active {
      opacity: 1.0; }
  #quiz #survey, #quiz .klaviyo-wrapper {
    overflow: scroll;
    height: calc(100vh - 66px);
    position: relative; }
    @media screen and (max-width: 960px) {
      #quiz #survey, #quiz .klaviyo-wrapper {
        height: 100%;
        overflow: hidden; } }
    #quiz #survey .progress-tools, #quiz .klaviyo-wrapper .progress-tools {
      opacity: 0;
      pointer-events: none;
      transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
      #quiz #survey .progress-tools.active, #quiz .klaviyo-wrapper .progress-tools.active {
        opacity: 1.0;
        pointer-events: auto; }
    #quiz #survey .progress-bar, #quiz .klaviyo-wrapper .progress-bar {
      width: calc(100% - 64px);
      height: 4px;
      left: 16px;
      top: 16px;
      position: absolute;
      background-color: rgba(255, 255, 255, 0.33); }
      #quiz #survey .progress-bar .progress, #quiz .klaviyo-wrapper .progress-bar .progress {
        width: 0px;
        transition: width 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
        background-color: white;
        height: 100%; }
    #quiz #survey .clear-form, #quiz #survey .clear-klaviyo, #quiz .klaviyo-wrapper .clear-form, #quiz .klaviyo-wrapper .clear-klaviyo {
      width: 32px;
      height: 32px;
      position: absolute;
      right: 4px;
      top: 4px;
      z-index: 999; }
      #quiz #survey .clear-form:hover, #quiz #survey .clear-form:focus, #quiz #survey .clear-klaviyo:hover, #quiz #survey .clear-klaviyo:focus, #quiz .klaviyo-wrapper .clear-form:hover, #quiz .klaviyo-wrapper .clear-form:focus, #quiz .klaviyo-wrapper .clear-klaviyo:hover, #quiz .klaviyo-wrapper .clear-klaviyo:focus {
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg); }
      #quiz #survey .clear-form:after, #quiz #survey .clear-form:before, #quiz #survey .clear-klaviyo:after, #quiz #survey .clear-klaviyo:before, #quiz .klaviyo-wrapper .clear-form:after, #quiz .klaviyo-wrapper .clear-form:before, #quiz .klaviyo-wrapper .clear-klaviyo:after, #quiz .klaviyo-wrapper .clear-klaviyo:before {
        content: '';
        border-bottom: 2px black solid;
        position: absolute;
        top: 50%;
        margin-top: -1px;
        width: 100%; }
      #quiz #survey .clear-form:after, #quiz #survey .clear-klaviyo:after, #quiz .klaviyo-wrapper .clear-form:after, #quiz .klaviyo-wrapper .clear-klaviyo:after {
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      #quiz #survey .clear-form:before, #quiz #survey .clear-klaviyo:before, #quiz .klaviyo-wrapper .clear-form:before, #quiz .klaviyo-wrapper .clear-klaviyo:before {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
    #quiz #survey .calculate, #quiz .klaviyo-wrapper .calculate {
      position: fixed;
      right: 0px;
      bottom: 0px;
      opacity: 0; }
    @media screen and (min-width: 1025px) {
      #quiz #survey, #quiz .klaviyo-wrapper {
        height: calc(100vh - 4.1666vw - 4.1666vw - 64px); } }
    #quiz #survey article, #quiz .klaviyo-wrapper article {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0px;
      top: 0px;
      opacity: 0;
      transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
      @media screen and (max-width: 960px) {
        #quiz #survey article, #quiz .klaviyo-wrapper article {
          height: auto; } }
      #quiz #survey article.active, #quiz .klaviyo-wrapper article.active {
        opacity: 1;
        z-index: 99; }
      #quiz #survey article#qa .article-grid-wrap, #quiz .klaviyo-wrapper article#qa .article-grid-wrap {
        grid-template-rows: 96px auto 32px; }
        #quiz #survey article#qa .article-grid-wrap h3, #quiz #survey article#qa .article-grid-wrap .h3, #quiz .klaviyo-wrapper article#qa .article-grid-wrap h3, #quiz .klaviyo-wrapper article#qa .article-grid-wrap .h3 {
          margin-bottom: 32px; }
      @media screen and (min-width: 768px) {
        #quiz #survey article .article-grid-wrap, #quiz .klaviyo-wrapper article .article-grid-wrap {
          display: grid;
          grid-template-rows: 64px auto 32px;
          height: 100%; } }
      #quiz #survey article .article-grid-wrap header, #quiz .klaviyo-wrapper article .article-grid-wrap header {
        align-self: start;
        padding-top: 16px; }
      #quiz #survey article .article-grid-wrap main, #quiz .klaviyo-wrapper article .article-grid-wrap main {
        align-self: center; }
      #quiz #survey article .article-grid-wrap footer, #quiz .klaviyo-wrapper article .article-grid-wrap footer {
        align-self: end;
        line-height: 1; }
  #quiz p {
    margin: 0; }
  #quiz .answers {
    margin-top: 64px;
    /* To Fade it in */
    /* To Fade Answers out on select */
    /* Only Answers that have Text Inputs */
    /* Only Answers that have Radio Buttons */ }
    @media screen and (min-width: 1025px) {
      #quiz .answers {
        margin-top: 128px; } }
    #quiz .answers .answer {
      opacity: 0;
      transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
      #quiz .answers .answer.active {
        opacity: 1.0; }
    #quiz .answers.selected .answer label {
      opacity: 0.25;
      mix-blend-mode: multiply; }
    #quiz .answers.selected .answer input[type="radio"]:checked + label,
    #quiz .answers.selected .answer input[type="checkbox"]:checked + label {
      opacity: 1; }
    @media screen and (min-width: 1030px) {
      #quiz .answers.text-answers {
        margin-bottom: 64px; } }
    #quiz .answers.radio-answers, #quiz .answers.check-answers, #quiz .answers.multiple-answers {
      /* Hack to center radio buttons */
      font-size: 0;
      text-align: center; }
      #quiz .answers.radio-answers .answer, #quiz .answers.check-answers .answer, #quiz .answers.multiple-answers .answer {
        /* Hack to center radio buttons */
        float: none;
        display: inline-block;
        font-size: 14px;
        margin-bottom: 32px; }
        @media screen and (min-width: 1025px) {
          #quiz .answers.radio-answers .answer, #quiz .answers.check-answers .answer, #quiz .answers.multiple-answers .answer {
            margin-bottom: 64px; } }
      #quiz .answers.radio-answers input[type="radio"],
      #quiz .answers.radio-answers input[type="checkbox"], #quiz .answers.check-answers input[type="radio"],
      #quiz .answers.check-answers input[type="checkbox"], #quiz .answers.multiple-answers input[type="radio"],
      #quiz .answers.multiple-answers input[type="checkbox"] {
        visibility: hidden;
        margin: 0;
        width: 0;
        height: 0;
        overflow: hidden; }
        #quiz .answers.radio-answers input[type="radio"]:checked + label:after,
        #quiz .answers.radio-answers input[type="checkbox"]:checked + label:after, #quiz .answers.check-answers input[type="radio"]:checked + label:after,
        #quiz .answers.check-answers input[type="checkbox"]:checked + label:after, #quiz .answers.multiple-answers input[type="radio"]:checked + label:after,
        #quiz .answers.multiple-answers input[type="checkbox"]:checked + label:after {
          -ms-transform: scale(1);
          -webkit-transform: scale(1);
          transform: scale(1); }
        #quiz .answers.radio-answers input[type="radio"]:hover + label, #quiz .answers.radio-answers input[type="radio"]:focus + label,
        #quiz .answers.radio-answers input[type="checkbox"]:hover + label,
        #quiz .answers.radio-answers input[type="checkbox"]:focus + label, #quiz .answers.check-answers input[type="radio"]:hover + label, #quiz .answers.check-answers input[type="radio"]:focus + label,
        #quiz .answers.check-answers input[type="checkbox"]:hover + label,
        #quiz .answers.check-answers input[type="checkbox"]:focus + label, #quiz .answers.multiple-answers input[type="radio"]:hover + label, #quiz .answers.multiple-answers input[type="radio"]:focus + label,
        #quiz .answers.multiple-answers input[type="checkbox"]:hover + label,
        #quiz .answers.multiple-answers input[type="checkbox"]:focus + label {
          opacity: 1 !important; }
          #quiz .answers.radio-answers input[type="radio"]:hover + label:after, #quiz .answers.radio-answers input[type="radio"]:focus + label:after,
          #quiz .answers.radio-answers input[type="checkbox"]:hover + label:after,
          #quiz .answers.radio-answers input[type="checkbox"]:focus + label:after, #quiz .answers.check-answers input[type="radio"]:hover + label:after, #quiz .answers.check-answers input[type="radio"]:focus + label:after,
          #quiz .answers.check-answers input[type="checkbox"]:hover + label:after,
          #quiz .answers.check-answers input[type="checkbox"]:focus + label:after, #quiz .answers.multiple-answers input[type="radio"]:hover + label:after, #quiz .answers.multiple-answers input[type="radio"]:focus + label:after,
          #quiz .answers.multiple-answers input[type="checkbox"]:hover + label:after,
          #quiz .answers.multiple-answers input[type="checkbox"]:focus + label:after {
            -ms-transform: scale(1);
            -webkit-transform: scale(1);
            transform: scale(1); }
        #quiz .answers.radio-answers input[type="radio"]:active + label:after,
        #quiz .answers.radio-answers input[type="checkbox"]:active + label:after, #quiz .answers.check-answers input[type="radio"]:active + label:after,
        #quiz .answers.check-answers input[type="checkbox"]:active + label:after, #quiz .answers.multiple-answers input[type="radio"]:active + label:after,
        #quiz .answers.multiple-answers input[type="checkbox"]:active + label:after {
          -ms-transform: scale(1.3);
          -webkit-transform: scale(1.3);
          transform: scale(1.3); }
      #quiz .answers.radio-answers label, #quiz .answers.check-answers label, #quiz .answers.multiple-answers label {
        width: 100%;
        line-height: 1;
        position: relative;
        display: inline-block;
        text-align: center;
        padding-top: 40px;
        margin: 0;
        cursor: pointer;
        transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
        #quiz .answers.radio-answers label span, #quiz .answers.check-answers label span, #quiz .answers.multiple-answers label span {
          display: block;
          width: 100%;
          padding-left: 8px;
          padding-right: 8px; }
          @media screen and (min-width: 1025px) {
            #quiz .answers.radio-answers label span, #quiz .answers.check-answers label span, #quiz .answers.multiple-answers label span {
              padding-left: 16px;
              padding-right: 16px; } }
          #quiz .answers.radio-answers label span.lang-en, #quiz .answers.check-answers label span.lang-en, #quiz .answers.multiple-answers label span.lang-en {
            bottom: auto;
            top: 40px; }
        #quiz .answers.radio-answers label:before, #quiz .answers.check-answers label:before, #quiz .answers.multiple-answers label:before {
          content: '';
          height: 24px;
          width: 24px;
          border-radius: 24px;
          border: 2px black solid;
          position: absolute;
          left: 50%;
          top: 0px;
          margin-left: -12px;
          background-color: transparent; }
        #quiz .answers.radio-answers label:after, #quiz .answers.check-answers label:after, #quiz .answers.multiple-answers label:after {
          content: '';
          height: 16px;
          width: 16px;
          border-radius: 16px;
          position: absolute;
          left: calc(50% + 4px);
          top: 4px;
          margin-left: -12px;
          background-color: black;
          -ms-transform: scale(0);
          -webkit-transform: scale(0);
          transform: scale(0);
          transition: transform 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  #quiz h3, #quiz .h3 {
    position: relative;
    line-height: 1;
    display: inline-block;
    width: 100%;
    margin: 0;
    text-align: center; }
    #quiz h3 span, #quiz .h3 span {
      display: block;
      width: 100%; }
  #quiz footer .prev-button {
    visibility: hidden !important; }
  #quiz footer .prev-button,
  #quiz footer .next-button {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
    #quiz footer .prev-button:hover, #quiz footer .prev-button:focus,
    #quiz footer .next-button:hover,
    #quiz footer .next-button:focus {
      opacity: 0.33;
      mix-blend-mode: multiply; }
    #quiz footer .prev-button span,
    #quiz footer .next-button span {
      width: 100%; }
  #quiz footer .next-button {
    opacity: 0; }
    #quiz footer .next-button.active {
      opacity: 1.0; }
      #quiz footer .next-button.active:hover, #quiz footer .next-button.active:focus {
        opacity: 0.33;
        mix-blend-mode: multiply; }

.left-panel {
  height: calc(100vh - 66px); }
  @media screen and (max-width: 768px) {
    .left-panel {
      height: 0px; } }
  .left-panel.selections {
    height: auto;
    position: static; }

#selections,
#video {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  #selections.active,
  #video.active {
    opacity: 1.0; }
  #selections video,
  #video video {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover; }

#selections {
  left: 0px;
  /* top: 0px; */
  /* width: 100%; */
  height: 100vh;
  /* padding-top: 128px; */
  padding-bottom: 128px;
  background-color: white;
  overflow: scroll;
  /* right: 0px; */
  position: static; }
  #selections form.available-false {
    opacity: 0.5;
    pointer-events: none;
    position: relative; }
    #selections form.available-false button {
      border: 0px !important; }
      @media screen and (min-width: 1030px) {
        #selections form.available-false button {
          display: none !important; } }
    #selections form.available-false:after {
      content: 'Bient\00f4t disponible';
      text-align: center;
      background-color: white;
      color: black;
      position: absolute;
      left: 0px;
      top: 28px;
      width: 100%; }
  #selections .pgi {
    margin-bottom: 0px !important; }
    #selections .pgi .pgi-info {
      height: 100px;
      max-width: none;
      padding: 0px; }
      @media screen and (max-width: 1030px) {
        #selections .pgi .pgi-info a {
          height: auto; } }
      @media screen and (min-width: 1030px) {
        #selections .pgi .pgi-info {
          height: 76px; } }
  #selections .results, #selections .suggestions {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }

#selections {
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  #selections #products {
    margin-top: 64px; }
  #selections #products .pgi, #selections #upsell-products .pgi {
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
    #selections #products .pgi.active, #selections #upsell-products .pgi.active {
      opacity: 1.0; }
  #selections #upsell-products .pgi {
    display: none; }
  #selections #upsell-products .pgi:nth-child(1) {
    display: block; }
  #selections #upsell-products .pgi:nth-child(2) {
    display: block; }
  #selections #upsell-products .pgi:nth-child(3) {
    display: block; }
  #selections.active {
    opacity: 1.0;
    pointer-events: all; }
  #selections label, #selections h3, #selections .h3 {
    position: relative;
    line-height: 1;
    display: inline-block;
    width: 100%;
    margin-bottom: 0px;
    text-align: center; }
  #selections h3, #selections .h3 {
    margin: 2em 0; }
    #selections h3 span, #selections .h3 span {
      display: block;
      text-align: center;
      width: 100%; }
  #selections p {
    line-height: 1.33;
    margin-bottom: 0px; }
    @media screen and (min-width: 1030px) {
      #selections p {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto; } }

#email_signup_actual .klaviyo_messages {
  background-color: white;
  bottom: -44px;
  position: absolute;
  line-height: 1; }

.holistory {
  margin-top: -32px;
  margin-bottom: -32px; }
  @media screen and (min-width: 1030px) {
    .holistory {
      margin-top: 0px;
      margin-bottom: -96px; } }
  .holistory p {
    margin: 16px 0;
    text-align: left; }
    @media screen and (min-width: 1030px) {
      .holistory p.columns {
        columns: 2;
        column-gap: 32px; } }

.template-article hr {
  margin: 56px 0; }
.template-article .section-header {
  padding-top: 64px; }
.template-article .rte {
  margin-bottom: 64px; }
  @media screen and (max-width: 1030px) {
    .template-article .rte .grid__item {
      margin-bottom: 32px; } }
.template-article .rte ul {
  margin-left: 3rem; }

/*.jdgm-rev__buyer-badge {
  display: none !important;
}*/
/* Jeu concours */
.fvDFbQ.fvDFbQ {
  max-width: 2000px !important;
  padding: 0 !important; }
  .fvDFbQ.fvDFbQ .needsclick {
    font-size: 12px !important; }
  .fvDFbQ.fvDFbQ .dMHKxR.dMHKxR {
    padding: 10px 0px !important; }

/* Out of stock */
.OutOfStock {
  background-color: #dedede;
  height: 40px; }

.OoS_Text {
  padding-left: 30px;
  padding-top: 10px; }

.alert_me {
  margin-top: 20px;
  margin-bottom: -16px; }

.bell {
  height: 11px;
  margin-right: 6px; }

.klaviyo-form form {
  padding: 10px 0px !important;
  margin-left: 0px !important; }

.eUySvI.eUySvI, .lpsQFr.lpsQFr {
  padding: 10px 0px 10px 0px; }

.Row__FormRow-sc-17nghml-0 > * {
  padding: 10px 0px !important; }

.no_show {
  display: none !important; }

.AlertButton:hover span, .AlertButton:hover a {
  color: white !important; }

@media screen and (max-width: 1080px) {
  .klaviyo-form form {
    margin-left: 0px !important; } }
@media screen and (min-width: 1080px) {
  .klaviyo-form-W9SNTb {
    margin-left: 40px; } }
@media (max-width: 768px) {
  .grid__item, .grid__item-2 {
    width: 100% !important; } }
@media (max-width: 768px) {
  .homepage .grid__item, .height--grid-item .grid__item {
    display: grid; } }
/* Marie Claire */
@media (max-width: 768px) {
  .product-single .wrap-badge-left img, .pgi .wrap-badge-left img {
    height: 58px;
    width: 58px; } }
.wrap-badge-left {
  z-index: 1;
  position: absolute;
  top: 16px;
  left: 16px; }

/* Alma */
.blocker {
  z-index: 9999999999999 !important; }

.cart-inner-wrap .alma {
  position: relative;
  max-width: inherit; }
  .cart-inner-wrap .alma a:hover {
    color: black !important; }
  .cart-inner-wrap .alma #logo_alma {
    position: absolute;
    top: 5px;
    right: 20px;
    width: 30px; }
  .cart-inner-wrap .alma #question {
    width: 15px;
    margin-left: 4px;
    position: absolute;
    top: 3px;
    right: 0px; }

.alma {
  position: relative; }
  .alma a:hover {
    color: black !important; }
  .alma #logo_alma {
    width: 30px;
    margin-left: 4px; }
  .alma #question {
    width: 15px;
    margin-left: 4px; }

#alma_modal {
  z-index: 999 !important;
  border-radius: 0px;
  position: relative;
  background-color: #FED4DB;
  height: 442px;
  width: 724px;
  max-width: 700px;
  padding: 40px 30px; }
  #alma_modal a.close-modal {
    top: 7.5px;
    right: 15.5px;
    width: 15px;
    background-image: url("/cdn/shop/files/cancel.svg?v=1612868812"); }
  #alma_modal .wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; }
  #alma_modal .reassure {
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 90%; }
  #alma_modal .reassure_block {
    width: 29%; }
    #alma_modal .reassure_block img {
      width: 55px; }
  #alma_modal .modal_footer {
    width: 60%; }

.mobile {
  display: none; }

@media screen and (max-width: 768px) {
  .desktop {
    display: none; }

  .mobile {
    display: block; }

  .alma_drawer  {
    font-size: 12px !important; }
    .alma_drawer  a {
      font-size: 12px !important; }
    .alma_drawer  #logo_alma {
      right: 28px; }

  #alma_modal {
    height: 60vh;
    width: 90%;
    padding: 30px; }
    #alma_modal .alma_big_text {
      font-size: 18px !important; }
    #alma_modal .reassure {
      width: 100%;
      flex-direction: column; }
      #alma_modal .reassure .reassure_block {
        width: 100%;
        display: flex;
        height: auto;
        justify-content: space-between;
        margin: 5px 0px; }
        #alma_modal .reassure .reassure_block img {
          width: 30px; }
    #alma_modal .reassure_text {
      width: 80%; }
    #alma_modal .modal_footer {
      width: 100%; } }
.first_block {
  display: flex;
  justify-content: space-between;
  width: 88%;
  margin: 0 auto; }
  .first_block img {
    width: 58%;
    height: 400px;
    object-fit: cover; }
  .first_block .text {
    width: 34%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }

.country {
  border-bottom: 1px solid black;
  width: 88%;
  margin: 0 auto;
  padding-bottom: 4px;
  margin-top: 30px;
  margin-bottom: 20px; }

.address_wrap span {
  margin-bottom: 6px; }

.pdv_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 88%;
  margin: 0 auto; }
  .pdv_wrapper .point_de_vente {
    width: 49%;
    display: flex; }
    .pdv_wrapper .point_de_vente p {
      font-size: 14px; }
    .pdv_wrapper .point_de_vente .links {
      flex-direction: column;
      font-weight: 900;
      display: flex;
      margin-top: 20px; }
      .pdv_wrapper .point_de_vente .links a {
        font-weight: bolder; }
    .pdv_wrapper .point_de_vente img {
      width: 250px;
      object-fit: contain; }
    .pdv_wrapper .point_de_vente .infos {
      width: 44%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 40px 0px; }

@media screen and (max-width: 768px) {
  .first_block {
    flex-direction: column; }
    .first_block img, .first_block .text {
      width: 100% !important; }
    .first_block img {
      margin-bottom: 40px; }

  .point_de_vente {
    width: 100% !important;
    flex-direction: column; }
    .point_de_vente .infos {
      width: 100% !important; }
    .point_de_vente .infos {
      padding: 18px 0px !important;
      margin-bottom: 32px !important; }

  .pdv_wrapper .point_de_vente img {
    width: 100%; } }
.grid__image img {
  display: block;
  opacity: 0.98;
  background-color: black; }

.pgi .grid__image {
  transition: opacity 1s cubic-bezier(0.57, 0.06, 0.05, 0.95);
  opacity: 1;
  background-color: black;
  margin: 10px; }

.pgi {
  margin-bottom: 85px; }

.pgi .pgi-type {
  height: 30px; }

.reveal .hidden1 {
  display: block !important;
  visibility: visible !important; }

.product:hover .reveal img {
  opacity: 1; }

.reveal {
  position: relative; }

.reveal .hidden1 {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.reveal:hover .hidden1 {
  z-index: 100000;
  opacity: 1; }

.reveal .caption {
  position: absolute;
  top: 0;
  display: table;
  width: 100%;
  height: 100%;
  background-color: white;
  /* fallback for IE8 */
  background-color: rgba(255, 255, 255, 0.7);
  font: 13px/1.6 sans-serif;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 1px;
  text-align: center;
  text-rendering: optimizeLegibility; }

.reveal .hidden1 .caption .centered {
  display: table-cell;
  vertical-align: middle; }

@media (min-width: 480px) and (max-width: 979px) {
  .reveal .caption {
    font-size: 11px; } }
.trusttreviews-product-extrablock img {
  display: inline-block; }
