/** Shopify CDN: Minification failed

Line 149:2 Expected identifier but found "*"
Line 1802:2 Expected identifier but found "*"
Line 1842:2 Expected identifier but found "*"
Line 2487:2 Expected identifier but found "*"
Line 7302:0 Unexpected "#5de5834f483f966c5c7be659"
Line 7932:2 Expected identifier but found "*"

**/
/*============================================================================
  Venture by Shopify
==============================================================================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  Convert pixels to ems

  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)

  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Strips the unit from a number.

  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}

  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ THEME SASS HELPERS ================*/
/*================ Prefix mixins ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ Style mixins ================*/
/*================ SASS VARIABLES & SETTINGS ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
==============================================================================*/
/*================ Color Variables ================*/
/*================ Sizing Variables ================*/
/*================ Product Grid ================*/
/*================ Product slider ================*/
/*================ Collection Grid ================*/
/*================ Typography Variables ================*/
@font-face {
  font-family: Rubik;
  font-weight: 400;
  font-style: normal;
  src: url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_n4.c2fb67c90aa34ecf8da34fc1da937ee9c0c27942.woff2") format("woff2"), url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_n4.d229bd4a6a25ec476a0829a74bf3657a5fd9aa36.woff") format("woff"); }

@font-face {
  font-family: Rubik;
  font-weight: 400;
  font-style: normal;
  src: url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_n4.c2fb67c90aa34ecf8da34fc1da937ee9c0c27942.woff2") format("woff2"), url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_n4.d229bd4a6a25ec476a0829a74bf3657a5fd9aa36.woff") format("woff"); }

@font-face {
  font-family: Rubik;
  font-weight: 700;
  font-style: normal;
  src: url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_n7.9ddb1ff19ac4667369e1c444a6663062e115e651.woff2") format("woff2"), url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_n7.2f2815a4763d5118fdb49ad25ccceea3eafcae92.woff") format("woff"); }

@font-face {
  font-family: Rubik;
  font-weight: 400;
  font-style: italic;
  src: url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_i4.528fdfa8adf0c2cb49c0f6d132dcaffa910849d6.woff2") format("woff2"), url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_i4.937396c2106c0db7a4072bbcd373d4e3d0ab306b.woff") format("woff"); }

@font-face {
  font-family: Rubik;
  font-weight: 700;
  font-style: italic;
  src: url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_i7.e37585fef76596b7b87ec84ca28db2ef5e3df433.woff2") format("woff2"), url("//gloveboxdetail.com/cdn/fonts/rubik/rubik_i7.a18d51774424b841c335ca3a15ab66cba9fce8c1.woff") format("woff"); }

/*================ Z-Index ================*/
/*================ Drawers ================*/
/*================ Sticky nav ================*/
/*================ Links and Buttons ================*/
/*================ Product and Collection Cards ================*/
/*================ Search in header ================*/
/*================ Meganav ================*/
/*================ Hero ================*/
/*================ Slate ================*/
/*============================================================================
  Slate Table of Contents

  #Mixins
  #Grid
  #Normalize
  #Helper Classes
  #Basic Styles
  #Icons
  #Lists
  #Rich Text Editor
  #Links and Buttons
  #Tables
  #Reponsive Tables
  #Images and Iframes
  #Forms
  #Site Nav and Dropdowns
  #Section Headers
  #Giftcard Template
==============================================================================*/
/*================ #Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

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

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Media Query IE z-index Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  #Grid
==============================================================================*/
/*============================================================================
  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 {
  *zoom: 1; }
  .grid:after {
    content: '';
    display: table;
    clear: both; }

.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -20px; }

.grid__item {
  float: left;
  padding-left: 20px;
  width: 100%;
  -ms-flex-preferred-size: auto !important;
  -webkit-flex-basis: auto !important;
  -moz-flex-basis: auto !important;
  flex-basis: auto !important; }

.grid__item[class*='--push'] {
  position: relative; }

/*================ Flex grid ================*/
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.flex__item {
  position: relative;
  -webkit-flex: 1 1 100%;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: auto !important;
  min-width: 0; }

.flex__item--fixed {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Grid push classes ================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Build Base Grid Classes ================*/
/** Whole */
.one-whole {
  width: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }

/* Halves */
.one-half {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

/* Thirds */
.one-third {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.two-thirds {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

/* Quarters */
.one-quarter {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.two-quarters {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.three-quarters {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

/* Fifths */
.one-fifth {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  -webkit-flex-basis: 20%;
  -moz-flex-basis: 20%;
  flex-basis: 20%; }

.two-fifths {
  width: 40%;
  -ms-flex-preferred-size: 40%;
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  flex-basis: 40%; }

.three-fifths {
  width: 60%;
  -ms-flex-preferred-size: 60%;
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  flex-basis: 60%; }

.four-fifths {
  width: 80%;
  -ms-flex-preferred-size: 80%;
  -webkit-flex-basis: 80%;
  -moz-flex-basis: 80%;
  flex-basis: 80%; }

/* Sixths */
.one-sixth {
  width: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  -webkit-flex-basis: 16.66667%;
  -moz-flex-basis: 16.66667%;
  flex-basis: 16.66667%; }

.two-sixths {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.three-sixths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.four-sixths {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

.five-sixths {
  width: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  -webkit-flex-basis: 83.33333%;
  -moz-flex-basis: 83.33333%;
  flex-basis: 83.33333%; }

/* Eighths */
.one-eighth {
  width: 12.5%;
  -ms-flex-preferred-size: 12.5%;
  -webkit-flex-basis: 12.5%;
  -moz-flex-basis: 12.5%;
  flex-basis: 12.5%; }

.two-eighths {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.three-eighths {
  width: 37.5%;
  -ms-flex-preferred-size: 37.5%;
  -webkit-flex-basis: 37.5%;
  -moz-flex-basis: 37.5%;
  flex-basis: 37.5%; }

.four-eighths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.five-eighths {
  width: 62.5%;
  -ms-flex-preferred-size: 62.5%;
  -webkit-flex-basis: 62.5%;
  -moz-flex-basis: 62.5%;
  flex-basis: 62.5%; }

.six-eighths {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

.seven-eighths {
  width: 87.5%;
  -ms-flex-preferred-size: 87.5%;
  -webkit-flex-basis: 87.5%;
  -moz-flex-basis: 87.5%;
  flex-basis: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%;
  -ms-flex-preferred-size: 10%;
  -webkit-flex-basis: 10%;
  -moz-flex-basis: 10%;
  flex-basis: 10%; }

.two-tenths {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  -webkit-flex-basis: 20%;
  -moz-flex-basis: 20%;
  flex-basis: 20%; }

.three-tenths {
  width: 30%;
  -ms-flex-preferred-size: 30%;
  -webkit-flex-basis: 30%;
  -moz-flex-basis: 30%;
  flex-basis: 30%; }

.four-tenths {
  width: 40%;
  -ms-flex-preferred-size: 40%;
  -webkit-flex-basis: 40%;
  -moz-flex-basis: 40%;
  flex-basis: 40%; }

.five-tenths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.six-tenths {
  width: 60%;
  -ms-flex-preferred-size: 60%;
  -webkit-flex-basis: 60%;
  -moz-flex-basis: 60%;
  flex-basis: 60%; }

.seven-tenths {
  width: 70%;
  -ms-flex-preferred-size: 70%;
  -webkit-flex-basis: 70%;
  -moz-flex-basis: 70%;
  flex-basis: 70%; }

.eight-tenths {
  width: 80%;
  -ms-flex-preferred-size: 80%;
  -webkit-flex-basis: 80%;
  -moz-flex-basis: 80%;
  flex-basis: 80%; }

.nine-tenths {
  width: 90%;
  -ms-flex-preferred-size: 90%;
  -webkit-flex-basis: 90%;
  -moz-flex-basis: 90%;
  flex-basis: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  -webkit-flex-basis: 8.33333%;
  -moz-flex-basis: 8.33333%;
  flex-basis: 8.33333%; }

.two-twelfths {
  width: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  -webkit-flex-basis: 16.66667%;
  -moz-flex-basis: 16.66667%;
  flex-basis: 16.66667%; }

.three-twelfths {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  flex-basis: 25%; }

.four-twelfths {
  width: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  flex-basis: 33.33333%; }

.five-twelfths {
  width: 41.66667%;
  -ms-flex-preferred-size: 41.66667%;
  -webkit-flex-basis: 41.66667%;
  -moz-flex-basis: 41.66667%;
  flex-basis: 41.66667%; }

.six-twelfths {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  flex-basis: 50%; }

.seven-twelfths {
  width: 58.33333%;
  -ms-flex-preferred-size: 58.33333%;
  -webkit-flex-basis: 58.33333%;
  -moz-flex-basis: 58.33333%;
  flex-basis: 58.33333%; }

.eight-twelfths {
  width: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  flex-basis: 66.66667%; }

.nine-twelfths {
  width: 75%;
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  flex-basis: 75%; }

.ten-twelfths {
  width: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  -webkit-flex-basis: 83.33333%;
  -moz-flex-basis: 83.33333%;
  flex-basis: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%;
  -ms-flex-preferred-size: 91.66667%;
  -webkit-flex-basis: 91.66667%;
  -moz-flex-basis: 91.66667%;
  flex-basis: 91.66667%; }

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 749px) {
  /** Whole */
  .small--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .small--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .small--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .small--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .small--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .small--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .small--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .small--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .small--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .small--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .small--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .small--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .small--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .small--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .small--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .small--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .small--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .small--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .small--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .small--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .small--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .small--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .small--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .small--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .small--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .small--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .small--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

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

  .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; } }
@media only screen and (min-width: 750px) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .medium-up--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .medium-up--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .medium-up--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .medium-up--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .medium-up--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .medium-up--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .medium-up--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .medium-up--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .medium-up--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .medium-up--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .medium-up--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .medium-up--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .medium-up--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .medium-up--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .medium-up--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .medium-up--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .medium-up--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .medium-up--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .medium-up--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .medium-up--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .medium-up--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .medium-up--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .medium-up--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .medium-up--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .medium-up--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .medium-up--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .medium-up--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .medium-up--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .medium-up--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .medium-up--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

  .grid--uniform .medium-up--one-half:nth-child(2n + 1),
  .grid--uniform .medium-up--one-third:nth-child(3n + 1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n + 1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n + 1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n + 1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n + 1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n + 1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n + 1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n + 1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n + 1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n + 1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n + 1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n + 1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n + 1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n + 1) {
    clear: both; }

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

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

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

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

  .medium-up--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 990px) {
  /** Whole */
  .large-up--one-whole {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  /* Halves */
  .large-up--one-half {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  /* Thirds */
  .large-up--one-third {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--two-thirds {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  /* Quarters */
  .large-up--one-quarter {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--two-quarters {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--three-quarters {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  /* Fifths */
  .large-up--one-fifth {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .large-up--two-fifths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .large-up--three-fifths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .large-up--four-fifths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  /* Sixths */
  .large-up--one-sixth {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .large-up--two-sixths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--three-sixths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--four-sixths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .large-up--five-sixths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  /* Eighths */
  .large-up--one-eighth {
    width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
    -webkit-flex-basis: 12.5%;
    -moz-flex-basis: 12.5%;
    flex-basis: 12.5%; }

  .large-up--two-eighths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--three-eighths {
    width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
    -webkit-flex-basis: 37.5%;
    -moz-flex-basis: 37.5%;
    flex-basis: 37.5%; }

  .large-up--four-eighths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--five-eighths {
    width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
    -webkit-flex-basis: 62.5%;
    -moz-flex-basis: 62.5%;
    flex-basis: 62.5%; }

  .large-up--six-eighths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .large-up--seven-eighths {
    width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
    -webkit-flex-basis: 87.5%;
    -moz-flex-basis: 87.5%;
    flex-basis: 87.5%; }

  /* Tenths */
  .large-up--one-tenth {
    width: 10%;
    -ms-flex-preferred-size: 10%;
    -webkit-flex-basis: 10%;
    -moz-flex-basis: 10%;
    flex-basis: 10%; }

  .large-up--two-tenths {
    width: 20%;
    -ms-flex-preferred-size: 20%;
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    flex-basis: 20%; }

  .large-up--three-tenths {
    width: 30%;
    -ms-flex-preferred-size: 30%;
    -webkit-flex-basis: 30%;
    -moz-flex-basis: 30%;
    flex-basis: 30%; }

  .large-up--four-tenths {
    width: 40%;
    -ms-flex-preferred-size: 40%;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    flex-basis: 40%; }

  .large-up--five-tenths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--six-tenths {
    width: 60%;
    -ms-flex-preferred-size: 60%;
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    flex-basis: 60%; }

  .large-up--seven-tenths {
    width: 70%;
    -ms-flex-preferred-size: 70%;
    -webkit-flex-basis: 70%;
    -moz-flex-basis: 70%;
    flex-basis: 70%; }

  .large-up--eight-tenths {
    width: 80%;
    -ms-flex-preferred-size: 80%;
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    flex-basis: 80%; }

  .large-up--nine-tenths {
    width: 90%;
    -ms-flex-preferred-size: 90%;
    -webkit-flex-basis: 90%;
    -moz-flex-basis: 90%;
    flex-basis: 90%; }

  /* Twelfths */
  .large-up--one-twelfth {
    width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    flex-basis: 8.33333%; }

  .large-up--two-twelfths {
    width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    flex-basis: 16.66667%; }

  .large-up--three-twelfths {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    flex-basis: 25%; }

  .large-up--four-twelfths {
    width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    flex-basis: 33.33333%; }

  .large-up--five-twelfths {
    width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    flex-basis: 41.66667%; }

  .large-up--six-twelfths {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .large-up--seven-twelfths {
    width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    flex-basis: 58.33333%; }

  .large-up--eight-twelfths {
    width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    flex-basis: 66.66667%; }

  .large-up--nine-twelfths {
    width: 75%;
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    flex-basis: 75%; }

  .large-up--ten-twelfths {
    width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    flex-basis: 83.33333%; }

  .large-up--eleven-twelfths {
    width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    flex-basis: 91.66667%; }

  .grid--uniform .large-up--one-half:nth-child(2n + 1),
  .grid--uniform .large-up--one-third:nth-child(3n + 1),
  .grid--uniform .large-up--one-quarter:nth-child(4n + 1),
  .grid--uniform .large-up--one-fifth:nth-child(5n + 1),
  .grid--uniform .large-up--one-sixth:nth-child(6n + 1),
  .grid--uniform .large-up--two-sixths:nth-child(3n + 1),
  .grid--uniform .large-up--three-sixths:nth-child(2n + 1),
  .grid--uniform .large-up--two-eighths:nth-child(4n + 1),
  .grid--uniform .large-up--four-eighths:nth-child(2n + 1),
  .grid--uniform .large-up--five-tenths:nth-child(2n + 1),
  .grid--uniform .large-up--one-twelfth:nth-child(12n + 1),
  .grid--uniform .large-up--two-twelfths:nth-child(6n + 1),
  .grid--uniform .large-up--three-twelfths:nth-child(4n + 1),
  .grid--uniform .large-up--four-twelfths:nth-child(3n + 1),
  .grid--uniform .large-up--six-twelfths:nth-child(2n + 1) {
    clear: both; }

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

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

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

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

  .large-up--text-center {
    text-align: center !important; } }
/*================ Grid Push Classes ================*/
@media only screen and (min-width: 750px) {
  /* Halves */
  .medium-up--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-up--push-eleven-twelfths {
    left: 91.66667%; } }
/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*,
*:before,
*:after {
  box-sizing: border-box; }

body {
  margin: 0; }

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

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

a {
  background-color: transparent; }

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  max-width: 100%;
  border: 0; }

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

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

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

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

input[type='search'] {
  -webkit-appearance: none;
  -moz-appearance: none; }

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

td,
th {
  padding: 0; }

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

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

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

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

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

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

/*================ #Basic Styles ================*/
body,
html {
  background-color: white; }

.page-width {
  *zoom: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px; }
  .page-width:after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (min-width: 750px) {
    .page-width {
      padding: 0 20px; } }

/*================ Typography ================*/
blockquote p + cite {
  margin-top: 10px; }
blockquote cite {
  display: block; }
  blockquote cite:before {
    content: '\2014 \0020'; }

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

pre {
  overflow: auto; }

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

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

.no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

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

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin-right: 5px; }
  .payment-icons .icon {
    width: 38px;
    height: 24px; }
  .payment-icons .icon--wide {
    width: 55px; }

/*================ Social Icons ================*/
.social-icons .icon {
  width: 24px;
  height: 24px; }

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

ol {
  list-style: decimal; }

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

.rte ul,
.rte ol {
  margin: 0;
  padding-left: 20px; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }
.rte img {
  height: auto; }

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

/*================ #Rich Text Editor ================*/
.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*================ #Links and Buttons ================*/
.btn, .btn--secondary,
.rte .btn--secondary, .shopify-payment-button .shopify-payment-button__button--unbranded,
.rte .btn,
.rte .btn--secondary,
.rte .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .rte .shopify-payment-button__button--unbranded {
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #e32c2b;
  color: white; }
  .btn:hover, .btn--secondary:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:hover {
    background-color: #c11a1a;
    color: white; }
  .btn:active, .btn--secondary:active, .shopify-payment-button .shopify-payment-button__button--unbranded:active, .btn:focus, .btn--secondary:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:active,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded:focus {
    background-color: #941414;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .shopify-payment-button [disabled].shopify-payment-button__button--unbranded,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .shopify-payment-button [disabled].shopify-payment-button__button--unbranded,
  .shopify-payment-button .rte [disabled].shopify-payment-button__button--unbranded {
    cursor: default;
    color: #757575;
    background-color: #d5d5d5; }
  .btn .icon, .btn--secondary .icon, .shopify-payment-button .shopify-payment-button__button--unbranded .icon,
  .rte .btn .icon,
  .rte .btn--secondary .icon,
  .rte .shopify-payment-button .shopify-payment-button__button--unbranded .icon,
  .shopify-payment-button .rte .shopify-payment-button__button--unbranded .icon {
    fill: currentColor;
    path: currentColor; }

.btn--secondary,
.rte .btn--secondary {
  background-color: black; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #0d0d0d;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #262626;
    color: white; }

.btn--secondary-accent {
  border: 2px solid #D73F37;
  color: #e32c2b;
  background-color: rgba(0, 0, 0, 0); }
  .btn--secondary-accent:hover {
    border: 2px solid #D73F37;
    color: white;
    background-color: #D73F37; }
  .btn--secondary-accent:active, .btn--secondary-accent:focus {
    border: 1px solid #941414;
    color: #941414;
    background-color: rgba(0, 0, 0, 0); }
  .btn--secondary-accent[disabled] {
    border-color: #d5d5d5; }
    .btn--secondary-accent[disabled]:hover, .btn--secondary-accent[disabled]:active, .btn--secondary-accent[disabled]:focus {
      background-color: #d5d5d5;
      color: #757575; }

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

/*================ #Tables ================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

th {
  font-weight: 700; }

th,
td {
  text-align: left;
  border: 1px solid white; }

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 749px) {
  .responsive-table thead {
    display: none; }
  .responsive-table tr {
    display: block; }
  .responsive-table th,
  .responsive-table td {
    display: block;
    text-align: right;
    padding: 10px;
    margin: 0; }
  .responsive-table td:before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 14px;
    padding-right: 10px; } }
.responsive-table__row {
  border-bottom: 1px solid white; }

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

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

/*================ Forms ================*/
@media only screen and (max-width: 989px) {
  input,
  select,
  textarea {
    font-size: 16px; } }
fieldset {
  border: 1px solid white;
  margin: 0 0 20px;
  padding: 10px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid white;
  border-radius: 0;
  max-width: 100%; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #e6e6e6; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #d5d5d5;
    border-color: #757575; }

textarea {
  min-height: 100px; }

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//gloveboxdetail.com/cdn/shop/t/48/assets/ico-select.svg?v=145142949295650484321785846233");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0px;
  text-overflow: '';
  cursor: pointer; }

optgroup {
  font-weight: 700; }

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

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

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

label[for] {
  cursor: pointer; }

/*================ #Site Nav and Dropdowns ================*/
.site-header__logo img {
  display: block;
  width: 100%; }

.site-nav li {
  display: inline-block; }

/*================ Site Nav Links ================*/
.site-nav__link {
  display: block;
  white-space: nowrap; }
  .site-nav__link .icon-arrow-down {
    position: relative; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 5; }
  .site-nav__dropdown li {
    display: block; }

.hidden {
  display: none; }

/*================ #Giftcard Template ================*/
.giftcard__qr-code img {
  margin: 0 auto; }

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

.giftcard__wrap {
  margin: 0 auto 20px; }

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

  p {
    orphans: 3;
    widows: 3; }

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

  .giftcard__print-link,
  .giftcard__apple-wallet {
    display: none; } }
/*================ GLOBAL ================*/
.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

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

.main-content {
  display: block;
  margin-top: 30px;
  padding-bottom: 40px; }
  @media only screen and (min-width: 750px) {
    .main-content {
      margin-top: 60px;
      padding-bottom: 80px; } }
  .template-index .main-content {
    padding-bottom: 0; }

.full-width {
  padding: 80px 20px;
  background-color: white; }

.full-width--return-link {
  margin-bottom: -40px; }
  @media only screen and (min-width: 750px) {
    .full-width--return-link {
      margin-bottom: -80px; } }
  .content-block + .full-width--return-link {
    margin-top: -20px; }

hr {
  margin: 20px 0;
  border-color: white;
  border-style: solid;
  border-width: 1px 0 0; }

.hr--dark {
  border-color: #d9d9d9; }

/*================ Empty pages (404, cart) ================*/
.page-empty {
  padding: 120px 0;
  margin-bottom: 20px; }

/*================ Index sections ================*/
.index-section {
  margin-bottom: 0px; }

.shopify-section--full-width + .shopify-section--full-width {
  margin-top: -50px; }

.shopify-section--full-width:last-child {
  padding-bottom: 0;
  margin-bottom: 0; }

/*================ Flex class helpers ================*/
.flex--center-vertical .flex__item {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.flex--grid {
  margin: 0 -10px;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .flex--grid > .flex__item {
    padding: 10px; }

.flex--grid-center {
  justify-content: center; }

.flex--no-gutter {
  margin: 0; }
  .flex--no-gutter > .flex__item {
    padding: 0; }

/*================ Grid | Half gutters ================*/
.grid--half-gutters {
  margin-left: -10px; }
  .grid--half-gutters > .grid__item {
    padding-left: 10px; }

.grid--no-gutters {
  margin-left: 0; }
  .grid--no-gutters > .grid__item {
    padding-left: 0; }

/*================ Grid | Vertically centered items ================*/
.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding-left: 0; }

.medium-up--grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: 0; }
  .medium-up--grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding-left: 0; }
  @media only screen and (max-width: 749px) {
    .medium-up--grid--table {
      display: block; }
      .medium-up--grid--table > .grid__item {
        display: block; } }

body,
input,
textarea,
button,
select {
  font-size: 16px;
  font-family: Rubik, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
  line-height: 1.375; }

@media only screen and (max-width: 989px) {
  input,
  textarea {
    font-size: 16px; } }
/*================ Headings ================*/
h1, .h1, .h1--mini,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #030303;
  margin: 0 0 0.625em; }
  h1 a, .h1 a, .h1--mini a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }
  h1:last-child, .h1:last-child, .h1--mini:last-child,
  h2:last-child,
  .h2:last-child,
  h3:last-child,
  .h3:last-child,
  h4:last-child,
  .h4:last-child,
  h5:last-child,
  .h5:last-child,
  h6:last-child,
  .h6:last-child {
    margin-bottom: 0; }

h2, .h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  letter-spacing: inherit;
  text-transform: inherit;
  font-family: Rubik, sans-serif;
  font-weight: 700;
  font-style: normal; }

h1, .h1, .h1--mini {
  font-family: Rubik, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.875em; }
  @media only screen and (min-width: 750px) {
    h1, .h1, .h1--mini {
      font-size: 2.25em; } }

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

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

h4, .h4 {
  font-size: 1.125em;
  letter-spacing: 1.2px;
  text-transform: uppercase; }

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

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

.h1--mini {
  font-size: 1.75em; }

/*================ RTE headings ================*/
.rte {
  *zoom: 1;
  margin-bottom: 20px; }
  .rte:after {
    content: '';
    display: table;
    clear: both; }
  .rte:last-child {
    margin-bottom: 0; }
  .rte h1, .rte .h1, .rte .h1--mini,
  .rte h2,
  .rte .h2,
  .rte h3,
  .rte .h3,
  .rte h4,
  .rte .h4,
  .rte h5,
  .rte .h5,
  .rte h6,
  .rte .h6 {
    margin-top: 40px; }
    .rte h1:first-child, .rte .h1:first-child, .rte .h1--mini: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 p {
    margin: 0 10px 20px; }
  .rte li {
    margin-bottom: 10px; }
    .rte li:last-child {
      margin-bottom: 0; }

.rte-setting {
  margin-bottom: 10px; }
  .rte-setting:last-child {
    margin-bottom: 0; }

/*================ Paragraph styles ================*/
p {
  margin: 0 0 10px; }
  p:last-child {
    margin-bottom: 0; }

/*================ Blockquote ================*/
blockquote {
  color: #030303;
  font-size: 1.25em;
  font-weight: 700;
  text-align: center; }
  blockquote cite {
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.6;
    font-style: normal; }
  @media only screen and (max-width: 749px) {
    blockquote {
      margin-left: 0;
      margin-right: 0; } }

/*================ Lists ================*/
.list--no-bullets {
  list-style: none; }

.list--bold {
  font-weight: 700;
  font-size: 0.9375em; }

/*================ Form elements ================*/
label {
  font-size: 0.75em;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  margin-bottom: 13px; }

/*================ Blog styles ================*/
.blog__meta {
  font-size: 0.875em; }

.blog__rss-link .icon-rss {
  fill: currentColor;
  width: 18px;
  height: 18px;
  vertical-align: baseline; }

/*================ Primary color inline background ================*/
.emphasized-title {
  display: inline;
  font-size: 2.25em;
  line-height: 1.35;
  padding: 0 10px;
  font-family: bebas-neue;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }

.emphasized-title--link:hover, .emphasized-title--link:focus {
  background-color: #1a1a1a;
  color: white; }

@media only screen and (min-width: 750px) {
  .emphasized-title--large {
    font-family: bebas-neue;
    font-size: 3.75em;
    padding-bottom: 0; } }
.emphasized-subtitle {
  text-align: center;
  line-height: 2;
  padding: 10px 140px;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-color 0.15s ease-in; }
  @media only screen and (min-width: 750px) {
    .emphasized-subtitle {
      font-size: 18px; } }
  .emphasized-subtitle:hover, .emphasized-subtitle:focus {
    color: white;
    background-color: rgba(26, 26, 26, 0); }

.emphasized-title-wrapper {
  text-align: center;
  margin-bottom: 0; }

/*================ Tables ================*/
td,
th {
  padding: 10px;
  border: 1px solid white; }

/*================ Forms and inputs ================*/
::-webkit-input-placeholder {
  color: black;
  opacity: 0.6; }

:-moz-placeholder {
  color: black;
  opacity: 0.6; }

:-ms-input-placeholder {
  color: black;
  opacity: 0.6; }

::-ms-input-placeholder {
  color: black;
  opacity: 0.6;
  opacity: 1; }

input,
textarea,
select {
  background-color: #f4f4f4;
  color: #333333;
  border: 0;
  max-width: 100%; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    color: rgba(0, 0, 0, 0.4); }
  input.input--error,
  textarea.input--error,
  select.input--error {
    color: white; }
    input.input--error::-webkit-input-placeholder,
    textarea.input--error::-webkit-input-placeholder,
    select.input--error::-webkit-input-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error:-moz-placeholder,
    textarea.input--error:-moz-placeholder,
    select.input--error:-moz-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error:-ms-input-placeholder,
    textarea.input--error:-ms-input-placeholder,
    select.input--error:-ms-input-placeholder {
      color: white;
      opacity: 0.6; }
    input.input--error::-ms-input-placeholder,
    textarea.input--error::-ms-input-placeholder,
    select.input--error::-ms-input-placeholder {
      color: white;
      opacity: 0.6;
      opacity: 1; }

.input--content-color {
  background-color: rgba(0, 0, 0, 0); }

input,
textarea {
  padding: 13px 15px; }

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

select {
  padding-top: 13px;
  padding-left: 15px;
  padding-bottom: 13px; }

.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px; }
.form-vertical input[type="submit"],
.form-vertical .btn,
.form-vertical .btn--secondary,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  display: inline-block; }

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

textarea {
  min-height: 100px; }

/*================ Form feedback messages ================*/
.note,
.form-success,
.errors {
  padding: 13px;
  margin: 0 0 10px; }

.note {
  border: 1px solid white; }

.form-success {
  background-color: #59ac6c;
  color: white; }

.errors {
  background-color: #d73f37;
  color: white; }

.errors ul {
  list-style: none;
  padding: 0;
  margin: 0; }

/*============================================================================
  Input groups
  - Align a text input beside a submit button without
    any space between them. The button will size it's parent
    based on the 1% width below while maintaining its
    padding and styles.
==============================================================================*/
.input-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate; }
  .form-vertical .input-group {
    margin-bottom: 20px; }

.input-group__field,
.input-group__btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group__field,
.input-group__btn .btn,
.input-group__btn .btn--secondary,
.input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0; }

.input-group__field {
  width: 100%; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__btn {
  white-space: nowrap;
  width: 1%; }
  .input-group__btn .icon-arrow-right {
    width: 14px;
    height: 17px; }

/*================ Theme links and buttons ================*/
.btn, .btn--secondary,
.rte .btn--secondary, .shopify-payment-button .shopify-payment-button__button--unbranded,
.btn--secondary {
  font-size: 0.8125em;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 45px;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }

.btn--narrow {
  padding-left: 15px;
  padding-right: 15px; }

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

/*================ Default link styles ================*/
a,
.link-accent-color {
  color: #e32c2b;
  text-decoration: none;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }
  a:hover, a:focus,
  .link-accent-color:hover,
  .link-accent-color:focus {
    color: #ab1717; }

.text-link {
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }
  .text-link .icon {
    fill: currentColor;
    height: 1em;
    width: 1em;
    margin-left: 3px; }

.link-body-color {
  color: black;
  transition: color 0.1s ease-in, background-color 0.1s ease-in; }
  .link-body-color:hover, .link-body-color:focus {
    color: #e32c2b; }

/*================ Return link ================*/
.return-link {
  display: block;
  text-align: center;
  margin-bottom: 20px !important;
  font-size: 1.5em;
  color: #D73F37; }
  .return-link .icon {
    fill: currentColor; }

.placeholder-svg {
  fill: #404040;
  background-color: #8c8c8c;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2); }

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

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

.placeholder-background--hide {
  display: none; }

.placeholder-background--animation {
  background-color: black;
  -moz-animation: placeholder-background-loading 1.5s infinite linear;
  -o-animation: placeholder-background-loading 1.5s infinite linear;
  -webkit-animation: placeholder-background-loading 1.5s infinite linear;
  animation: placeholder-background-loading 1.5s infinite linear; }
  .no-js .placeholder-background--animation {
    display: none; }

@-webkit-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@-moz-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@-ms-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

.featured-card__image .placeholder-svg {
  width: auto; }

.hero__slide .placeholder-background {
  background-color: white; }

/*================ TEMPLATES ================*/
/*============= Templates | Password page =============*/
.template-password {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  color: white; }

.password-page {
  display: table;
  height: 100%;
  width: 100%; }
  .password-page a {
    color: white; }
  .password-page h1, .password-page .h1, .password-page .h1--mini,
  .password-page h2,
  .password-page .h2,
  .password-page h3,
  .password-page .h3,
  .password-page h4,
  .password-page .h4,
  .password-page h5,
  .password-page .h5,
  .password-page h6,
  .password-page .h6 {
    color: white; }
  .password-page label {
    color: white; }

.password-page__inner {
  display: table-cell;
  vertical-align: middle; }

.password-page__content,
.password-modal__content {
  max-width: 600px;
  margin: 0 auto; }

.password-page__content {
  padding: 20px 0; }

.password-logo {
  margin-top: 10px;
  margin-bottom: 20px; }

.password-logo__image {
  max-width: 100%; }

.password-page__title {
  font-size: 3.125em;
  line-height: 1;
  margin-bottom: 20px; }

.password-page__message {
  font-size: 1.125em;
  margin-bottom: 40px; }

.password-signup-form {
  margin-bottom: 80px; }

.password-social-sharing {
  margin-bottom: 80px; }

/*================ Login link ================*/
.password-login-link {
  display: block;
  padding: 20px;
  text-align: center; }
  @media only screen and (min-width: 750px) {
    .password-login-link {
      position: absolute;
      top: 0;
      right: 0; } }
  .password-login-link .icon {
    width: 12px;
    height: 1em;
    margin-right: 6.66667px;
    fill: currentColor; }

/*================ Login modal ================*/
.password-login-form {
  margin-bottom: 40px; }

/*================ Newsletter ================*/
.password-signup-form__subheading {
  margin-bottom: 25px; }
  .password-signup-form__subheading a {
    color: #e32c2b; }
    .password-signup-form__subheading a:hover {
      color: #c11a1a; }

.password-signup-form .input-group {
  max-width: 450px;
  margin: 0 auto; }

/*================ Password svg icons ================*/
.icon-shopify-logo {
  width: 82.28571px;
  height: 24px;
  margin-left: 6.66667px;
  fill: currentColor; }

/*============= Templates | Gift card page =============*/
.template-giftcard {
  background-color: white; }

.giftcard__header {
  margin: 80px auto 40px; }

.giftcard__content {
  background-color: rgba(0, 0, 0, 0);
  max-width: 540px;
  margin: 0 auto 40px;
  padding: 20px; }

.giftcard__shop-url {
  display: none; }

/*================ Giftcard image, amount, and code ================*/
.giftcard__wrap {
  position: relative; }
  .giftcard__wrap:before, .giftcard__wrap:after {
    content: '';
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    height: 40px;
    width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1); }
  .giftcard__wrap:before {
    top: -2px;
    left: -2px;
    border-radius: 12px 0 100%;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); }
  .giftcard__wrap:after {
    bottom: -2px;
    right: -2px;
    border-radius: 100% 0 12px;
    box-shadow: -2px -2px 1px rgba(0, 0, 0, 0.05); }

.giftcard__image {
  display: block;
  border-radius: 12px;
  overflow: hidden; }

.giftcard__amount-wrapper {
  position: absolute;
  top: 6.66667px;
  right: 10px; }

.giftcard__amount,
.giftcard__amount-remaining {
  color: white; }

.giftcard__amount {
  font-size: 1.75em;
  margin-bottom: 0;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1); }
  @media only screen and (min-width: 750px) {
    .giftcard__amount {
      font-size: 2.5em; } }

.giftcard__code {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px; }

.giftcard__code-bubble {
  position: relative;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0);
  color: black;
  padding: 10px 20px;
  font-size: 0.9375em;
  border-radius: 4px; }
  @media only screen and (min-width: 750px) {
    .giftcard__code-bubble {
      font-size: 1.25em; } }
  .giftcard__code-bubble:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    border: 1px dashed black;
    border-radius: 4px;
    opacity: 0.3; }

/*================ Print styles ================*/
@media print {
  .giftcard__shop-url {
    display: block; }

  .giftcard__wrap:before, .giftcard__wrap:after {
    display: none; }

  .giftcard__amount-wrapper {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 4px;
    padding: 0 6.66667px; } }
/*================ VENDOR ================*/
/*============================================================================
  Slick Slider 1.5.8

  - If upgrading Slick's styles, use the following variables/functions
    instead of the slick defaults (from slick-theme.scss)
  - This file includes default slick.scss styles (at Slick Slider SCSS)
    and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually
  - All `outline: none;` have been removed for any elements in slideshow
    (buttons, arrows, etc) to preserve a11y
==============================================================================*/
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

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

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

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

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

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

/*================ Slick Slider Theme ================*/
.slick-loading .slick-list {
  background: white url(//gloveboxdetail.com/cdn/shop/t/48/assets/ajax-loader.gif?v=41356863302472015721785846233) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick-icons, sans-serif";
  font-size: 20px;
  line-height: 1;
  color: black;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

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

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover:before, .slick-dots li button:focus:before {
        opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick-icons, sans-serif";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: white;
      opacity: 0.75; }

/*================ MODULES ================*/
/*================ Site Header ================*/
.site-header {
  background-color: rgba(0, 0, 0, 0); }

.site-header__upper {
  padding-top: 10px;
  padding-bottom: 10px; }
  @media only screen and (min-width: 750px) {
    .site-header__upper {
      padding-top: 20px;
      padding-bottom: 20px; } }

.site-header__logo {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  max-width: 100%; }
  .site-header__logo a {
    display: block;
    color: white; }
    @media only screen and (min-width: 750px) {
      .site-header__logo a {
        display: block;
        float: left; } }

.site-header__shop-name--small {
  font-size: 20px; }

.template-giftcard .site-header__logo-link {
  display: inline-block;
  float: none; }

/*================ Menu toggle, Cart, and Search icons ================*/
.site-header__link {
  display: inline-block;
  color: white;
  padding: 10px;
  line-height: 1; }
  .site-header__link .icon {
    width: 22px;
    height: 22px;
    fill: currentColor; }
  .site-header__link .icon-cart {
    position: relative;
    top: -1px; }
  .site-header__link:hover, .site-header__link:focus {
    color: #D73F37; }

.site-header__menu-toggle--close {
  display: none; }

.site-header__link.js-drawer-open .site-header__menu-toggle--open {
  display: none; }
.site-header__link.js-drawer-open .site-header__menu-toggle--close {
  display: block; }

/*================ Cart icon ================*/
.site-header__cart {
  position: relative; }

.site-header__cart-indicator {
  position: absolute;
  bottom: 19px;
  right: 8px;
  background-color: #D74139;
  height: 10px;
  width: 10px;
  border-radius: 10px; }
  .no-svg .site-header__cart-indicator {
    bottom: auto;
    top: -6px;
    right: -10px; }

/*================ Header search bar ================*/
.site-header__search-cart-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end; }

.site-header__search {
  position: relative;
  display: inline-block; }

.site-header__search-input {
  width: 45px;
  display: block;
  height: 45px; }

.active-form .site-header__search-submit {
  pointer-events: auto;
  z-index: 2; }
.active-form .site-header__search-input {
  width: 200px;
  opacity: 1;
  padding-left: 10px;
  padding-right: 30px; }
  @media only screen and (min-width: 990px) {
    .active-form .site-header__search-input {
      width: 250px; } }

.site-header__search-input {
  position: relative;
  cursor: pointer;
  opacity: 0;
  width: 45px;
  height: 45px;
  padding: 10px 0;
  font-size: 0.8125em;
  color: white;
  background-color: rgba(20, 20, 20, 0);
  transition: opacity 0.15s ease-in, width 0.15s ease-in;
  z-index: 1;
  min-width: 1px; }
  .site-header__search-input::-webkit-input-placeholder {
    color: white;
    opacity: 0.6; }
  .site-header__search-input:-moz-placeholder {
    color: white;
    opacity: 0.6; }
  .site-header__search-input:-ms-input-placeholder {
    color: white;
    opacity: 0.6; }
  .site-header__search-input::-ms-input-placeholder {
    color: white;
    opacity: 0.6;
    opacity: 1; }

input[type='search']::-webkit-search-cancel-button {
  position: relative;
  left: -10px; }

.site-header__search-submit {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0; }

/*================ Nav Bar ================*/
.nav-bar {
  position: relative;
  border-top: none;
  background-color: rgba(0, 0, 0, 0);
  z-index: 5; }
  .nav-bar:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 6; }

/*================ Sticky bar ================*/
.sticky {
  position: relative;
  overflow: visible;
  z-index: 5; }

.sticky--active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.sticky--open {
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }

.sticky--active .sticky-hidden {
  display: none; }

.sticky-only {
  position: relative;
  display: none;
  z-index: 7; }
  .sticky--active .sticky-only {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end; }

/*================ Site Nav ================*/
.site-nav {
  margin-left: -20px;
  white-space: nowrap; }

.site-nav__item--no-columns {
  position: relative; }
  .site-nav__item--no-columns .meganav {
    right: auto;
    min-width: 200px; }
  .site-nav__item--no-columns .meganav__list {
    width: 100%; }

.site-nav__link {
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  position: relative;
  color: white;
  color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  z-index: 7; }
  .site-nav__link .icon {
    position: relative;
    top: -1.5px;
    width: 9px;
    height: 9px;
    fill: currentColor; }
  .site-nav__link:hover, .site-nav__link:focus, .site-nav--active .site-nav__link {
    color: white; }
  .site-nav__link:focus {
    background-color: rgba(20, 20, 20, 0); }
  .site-nav--active .site-nav__link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: #e32c2b; }

.site-nav__link--compressed {
  margin-left: -20px; }
  .site-nav__link--compressed .icon {
    width: 22px;
    height: 22px; }

.site-nav__link-menu-label {
  display: none; }
  @media only screen and (min-width: 750px) {
    .site-nav__link-menu-label {
      display: inline-block; } }

.customer-login-links {
  position: relative;
  display: inline-block;
  margin-right: -10px;
  z-index: 7; }

.customer-login-links a {
  display: inline-block;
  color: white;
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 10px;
  font-size: 0.8125em; }
  .customer-login-links a:hover, .customer-login-links a:focus {
    color: white; }

/*============================================================================
  Meganav

  - The meganav is used in three places:
    1. Site nav as a dropdown
    2. Drawer nav as a dropdown
    3. Homepage in accordion links
==============================================================================*/
.meganav {
  display: block;
  visibility: hidden;
  right: 0;
  background-color: rgba(0, 0, 0, 0); }
  .meganav.meganav--active {
    visibility: visible;
    z-index: 6; }

/*================ Site header animation ================*/
.site-header .meganav {
  opacity: 0;
  -ms-transform: translate3d(0, -15%, 0);
  -webkit-transform: translate3d(0, -15%, 0);
  transform: translate3d(0, -15%, 0);
  transition: none; }
  .site-header .meganav.meganav--active {
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .site-header .meganav.meganav--no-animation {
    transition: none; }

/*================ Drawer animation ================*/
.drawer__nav .meganav {
  display: none; }

/*================ Meganav elements ================*/
.meganav__nav {
  margin: 0 auto;
  position: relative;
  list-style: none; }

.meganav__nav--third-level {
  padding-left: 20px; }

.meganav__list {
  padding: 20px 0; }

.meganav__list--third-level {
  background-color: white; }

.meganav__list--offset:before {
  content: "\00a0";
  font-size: 1.5em;
  visibility: hidden; }

.meganav__list--gutter {
  padding-left: 20px;
  padding-right: 20px; }

.meganav__list--multiple-columns {
  position: relative; }

.meganav__title {
  font-size: 1.5em;
  margin-bottom: 0;
  white-space: normal; }

.meganav__link {
  display: block;
  color: black;
  padding: 5px 10px;
  margin-left: -10px; }
  .meganav__link:hover, .meganav__link:focus {
    color: #e32c2b; }

.meganav__link--has-list {
  position: relative; }
  .meganav__link--has-list .icon {
    position: relative;
    top: -1.5px;
    width: 9px;
    height: 9px;
    fill: currentColor; }

.meganav__link--active {
  color: black;
  font-weight: 700; }

/*================ Meganav product cards ================*/
.meganav__product .product-card {
  border-bottom-width: 0; }
.meganav__product:last-child .product-card {
  border-right-width: 1px; }

/*================ Site nav specific styles ================*/
.site-nav__dropdown-container {
  padding: 0 20px;
  min-width: 200px;
  white-space: normal; }
  .meganav__nav .site-nav__dropdown-container {
    padding: 0 20px 0 20px;
    margin-left: -20px; }
  .site-nav__dropdown-container.meganav--active {
    background-color: white; }

.site-nav__dropdown--third-level {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  height: auto;
  position: absolute;
  top: 0;
  left: 100%;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.4s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .meganav__list .site-nav__dropdown--third-level {
    margin-left: -20px; }
  .site-nav__dropdown--third-level.meganav--active {
    visibility: visible;
    opacity: 1; }
  .meganav__nav .meganav__list--multiple-columns .site-nav__dropdown--third-level {
    left: 20%;
    width: 80%;
    height: 100%;
    overflow: hidden; }
    .meganav__nav .meganav__list--multiple-columns .site-nav__dropdown--third-level .meganav__list {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start;
      -webkit-align-content: flex-start;
      -moz-align-content: flex-start;
      -ms-align-content: flex-start;
      align-content: flex-start;
      max-height: 100%;
      overflow-x: auto;
      overflow-y: hidden; }
    .meganav__nav .meganav__list--multiple-columns .site-nav__dropdown--third-level .meganav__link--third-level {
      display: inline-block;
      white-space: normal; }
  .meganav__list:nth-child(2) .site-nav__dropdown--third-level {
    left: 40%;
    width: 60%; }
  .meganav__list:nth-child(3) .site-nav__dropdown--third-level {
    left: 60%;
    width: 40%; }
  .meganav__list:nth-child(4) .site-nav__dropdown--third-level {
    left: 80%;
    width: 20%; }
  .meganav__list:nth-child(5) .site-nav__dropdown--third-level {
    left: auto;
    right: calc(20% + 20px);
    text-align: right; }

.site-nav__dropdown--full-height {
  height: 100%; }

/*================ Drawer meganav styles ================*/
.meganav--drawer {
  background-color: white;
  visibility: visible;
  overflow: hidden; }
  .meganav--drawer .product-card {
    margin-top: 1px; }
  .meganav--drawer .meganav__product {
    margin-left: -4px; }

.drawer__nav-toggle--open {
  display: block; }
  .meganav--active > .drawer__nav-toggle--open {
    display: none; }

.drawer__nav-toggle--close {
  display: none; }
  .meganav--active > .drawer__nav-toggle--close {
    display: block; }

/*================ Fixed width meganav columns (for horizontal scrolling) ================*/
.meganav__scroller {
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .drawer__nav--template-index .meganav__scroller {
    background-color: rgba(0, 0, 0, 0);
    border-top: none; }
  .meganav__scroller .grid__item {
    float: none;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    white-space: normal; }

.drawer__nav .meganav__scroller--has-list {
  padding-left: 20px; }

/*================ Site footer ================*/
html {
  background-color: black; }

.site-footer {
  background-color: black;
  color: white;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 20px; }
  @media only screen and (min-width: 750px) {
    .site-footer {
      padding-top: 40px; } }
  .site-footer a {
    color: white;
    color: rgba(255, 255, 255, 0.6); }
    .site-footer a:hover, .site-footer a:focus {
      color: white; }
  .site-footer p {
    margin-bottom: 10px; }
  @media only screen and (max-width: 749px) {
    .site-footer .page-width {
      padding: 0 20px; } }

.flex-footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0; }
  .flex-footer .flex__item {
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 0 10px; }
  @media only screen and (min-width: 750px) {
    .flex-footer .flex__item {
      -webkit-flex: 1 1 20%;
      -moz-flex: 1 1 20%;
      -ms-flex: 1 1 20%;
      flex: 1 1 20%; } }

.site-footer__section {
  padding-bottom: 20px; }
  @media only screen and (min-width: 750px) {
    .site-footer__section {
      padding-bottom: 40px; } }

.site-footer__copyright {
  border-top: none;
  padding: 10px 0; }

/*================ Linklists and page content ================*/
.site-footer__section-title {
  color: white;
  font-size: 2em;
  font-family: bebas-neue; }

.site-footer__list {
  list-style: none; }

.site-footer__list-item {
  margin-bottom: 10px; }

/*================ Newsletter field ================*/
.site-footer__newsletter-label {
  display: block;
  color: white;
  color: rgba(255, 255, 255, 0.6);
  font-family: Rubik, sans-serif;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  text-transform: inherit; }
  .site-footer__newsletter-label a {
    color: #e32c2b; }
    .site-footer__newsletter-label a:hover {
      color: #c11a1a; }

/*================ Icons ================*/
.site-footer .social-icons .icon {
  fill: currentColor; }
.site-footer .social-icons .icon {
  margin-right: 10px; }
.site-footer .social-icons a {
  display: block;
  margin-bottom: 10px; }
.site-footer .payment-icons {
  padding: 5px 0; }
  .site-footer .payment-icons li {
    padding: 5px 0; }

/*================ Content blocks ================*/
.content-block {
  background-color: rgba(0, 0, 0, 0);
  padding: 40px;
  margin-bottom: 20px; }
  .content-block:last-child {
    margin-bottom: 0; }

.content-block--small {
  padding: 20px; }

.content-block--no-bottom-padding {
  padding-bottom: 0; }

.content-block__item {
  margin-bottom: 20px; }

.content-block__full-image {
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 40px; }
  .content-block__full-image img {
    display: block;
    margin: 0 auto; }
  .content-block__full-image:first-child {
    margin-top: -40px; }

/*================ Product cards ================*/
.product-card {
  position: relative;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  padding: 12.5px;
  border-color: white;
  border-style: solid;
  border-width: 0 0 1px;
  color: black;
  z-index: 1; }
  .grid--no-gutters .product-card {
    border-left-width: 1px; }
  .collection__card--first .product-card {
    border-left-width: 0; }
  .product-card:hover, .product-card:focus {
    color: black; }
  .product-card:focus {
    z-index: 2; }
  @media only screen and (min-width: 750px) {
    .product-card {
      padding: 25px; } }

/*================ Product hover/focus overlay ================*/
.product-card__overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.06);
  transition: all 0.15s ease-in; }
  .product-card:hover .product-card__overlay, .product-card:focus .product-card__overlay {
    visibility: visible;
    opacity: 1; }

.product-card__overlay-btn {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-45%);
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  transition: all 0.15s ease-in; }
  .product-card:hover .product-card__overlay-btn {
    -ms-transform: translateY(-85%);
    -webkit-transform: translateY(-85%);
    transform: translateY(-85%); }
  .no-csstransforms .product-card__overlay-btn {
    top: 35%; }

/*================ Product image and wrapper ================*/
.product-card__image-container {
  height: 235px;
  margin-bottom: 60px;
  display: table;
  width: 100%; }

.product-card__image-wrapper {
  display: table-cell;
  vertical-align: middle; }

.product-card__image {
  position: relative;
  margin: 0 auto; }
  .product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%; }

/*================ Product meta info ================*/
.product-card__info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 0; }
  @media only screen and (min-width: 750px) {
    .product-card__info {
      padding: 10px 12.5px 15px; } }

.product-card__name,
.product-card__availability {
  position: relative;
  z-index: 3; }

.product-card__name {
  font-weight: 700;
  color: #030303;
  white-space: normal; }

.product-card__availability {
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.875em;
  color: #e32c2b; }

.product-card__brand,
.product-card__price {
  font-size: 0.875em; }

.product-card__regular-price {
  opacity: 1;
  color: #0d0d0d; }

.template-product .page-container {
  background-color: rgba(0, 0, 0, 0); }

.product-single {
  margin-bottom: 40px; }
  @media only screen and (min-width: 750px) {
    .product-single {
      margin-bottom: 80px; } }

@media only screen and (max-width: 749px) {
  .product-single__info-wrapper {
    padding: 0 10px; } }
/*================ Product meta ================*/
.product-single__meta-list {
  line-height: 1; }
  .product-single__meta-list li {
    padding-right: 10px;
    vertical-align: middle; }
    .product-single__meta-list li:last-child {
      padding-right: 0; }

.product-single__vendor {
  margin-bottom: 5px; }

.product-single__title {
  margin-bottom: 6.66667px; }

.product-single__price-container {
  margin-bottom: 10px; }

.product-single__price {
  font-size: 1.25em; }

.product-single__price--compare {
  color: #000000; }

.product-single__stock {
  display: inline-block;
  padding: 15px 0;
  font-size: 0.8125em;
  text-transform: uppercase; }

.product-single__policies {
  font-size: 0.9375em; }

.product-unit-price {
  font-size: 0.75em;
  color: black; }

.product-card__unit-price {
  display: block; }

/*================ Product form ================*/
.product-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  margin: -5px; }
  .product-form .btn, .product-form .btn--secondary, .product-form .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-form .shopify-payment-button__button--unbranded {
    padding-top: 12px;
    padding-bottom: 12px; }
  .product-form .btn, .product-form .btn--secondary, .product-form .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-form .shopify-payment-button__button--unbranded,
  .product-form select,
  .product-form input[type="text"] {
    min-height: 48px; }
  .product-form.product-form--featured-product {
    margin-top: 30px;
    text-align: left; }

.no-js .product-form__variants {
  display: block;
  margin-bottom: 10px; }

.product-form__item {
  -webkit-flex: 1 0 160px;
  -moz-flex: 1 0 160px;
  -ms-flex: 1 0 160px;
  flex: 1 0 160px;
  margin-bottom: 10px;
  padding: 0 5px; }
  .product-form__item label {
    display: block; }

.product-form__item--quantity {
  -webkit-flex: 0 0 100px;
  -moz-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px; }

.product-form__item--submit {
  -ms-flex-preferred-size: 200px;
  -webkit-flex-basis: 200px;
  -moz-flex-basis: 200px;
  flex-basis: 200px;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-top: 0px; }
  .product-form--payment-button .product-form__item--submit {
    margin-top: 10px;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }
  .product-form__item--submit.product-form__onboarding {
    margin-top: 20px;
    padding-left: 0; }

.product-form__input {
  display: block;
  width: 100%; }

.btn--sold-out[disabled] {
  background-color: #d73f37;
  color: white; }

.product-form__cart-submit {
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal;
  border-radius: 3px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.shopify-payment-button {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }
  .shopify-payment-button .shopify-payment-button__button {
    margin-top: 10px;
    border-radius: 3px; }
  .shopify-payment-button .shopify-payment-button__button--branded {
    overflow: hidden;
    min-height: 48px; }
  .shopify-payment-button .shopify-payment-button__button--unbranded {
    width: 100%;
    margin-bottom: 10px; }
    .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
      background-color: #c11a1a !important; }
  .shopify-payment-button .shopify-payment-button__more-options {
    margin: 16px 0 10px 0;
    font-size: 0.875em;
    color: #e32c2b;
    text-decoration: underline; }
    .shopify-payment-button .shopify-payment-button__more-options:hover {
      color: #c11a1a; }
  .product-form--payment-button .shopify-payment-button {
    margin-bottom: 10px; }

/*================ Product image and thumbnail layout ================*/
.photos__item--main {
  text-align: center;
  min-width: 0;
  margin: 0 20px; }

.photos__item--thumbs {
  max-width: 100%; }

@media only screen and (min-width: 750px) {
  .photos {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    flex-direction: row; }

  .photos__item--main {
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    order: 2; }

  .photos__item--thumbs {
    order: 1;
    -webkit-flex: 0 0 15%;
    -moz-flex: 0 0 15%;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%; } }
.product__photo-container {
  width: 100%;
  position: relative;
  max-width: 480px;
  margin: 0 auto; }
  .product__photo-container.hide {
    display: none; }

.product__photo-wrapper {
  display: block;
  width: 100%; }
  .product__photo-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; }

.product-single__photo {
  margin-bottom: 20px; }

/*================ Product thumbnail layout ================*/
.product-single__thumbnails.slick-vertical .slick-slide {
  border: 0;
  padding: 2px 0; }

.product-single__thumbnails {
  display: none;
  margin: 0 40px 20px; }
  .product-single__thumbnails.slick-initialized {
    display: block; }
  @media only screen and (min-width: 750px) {
    .product-single__thumbnails {
      margin: 0; } }

.product-single__thumbnails--static {
  display: block;
  text-align: center; }
  @media only screen and (max-width: 749px) {
    .product-single__thumbnails--static .product-single__thumbnail-item {
      display: inline-block;
      width: 45%;
      max-width: 150px; } }

.product-single__thumbnail {
  position: relative;
  display: block;
  height: 130px;
  padding: 10px;
  max-width: 200px;
  margin: 0 auto; }
  .product-single__thumbnail img {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    max-height: 110px;
    margin: 0 auto; }
    .no-csstransforms .product-single__thumbnail img {
      top: 0; }
  .is-active .product-single__thumbnail:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #e32c2b; }

/*================ Slider arrows ================*/
.product-single__thumbnails.slick-initialized .slick-prev,
.product-single__thumbnails.slick-initialized .slick-next {
  opacity: 0.2;
  transition: opacity 0.15s ease-in;
  width: 30px;
  height: 30px; }
  .product-single__thumbnails.slick-initialized .slick-prev:before,
  .product-single__thumbnails.slick-initialized .slick-next:before {
    display: none; }
  .product-single__thumbnails.slick-initialized .slick-prev:hover, .product-single__thumbnails.slick-initialized .slick-prev:focus,
  .product-single__thumbnails.slick-initialized .slick-next:hover,
  .product-single__thumbnails.slick-initialized .slick-next:focus {
    opacity: 0.7; }
  .product-single__thumbnails.slick-initialized .slick-prev .icon,
  .product-single__thumbnails.slick-initialized .slick-next .icon {
    fill: black;
    width: 30px;
    height: 30px; }
.product-single__thumbnails.slick-initialized .slick-disabled {
  opacity: 0;
  visibility: hidden; }

.product-single__thumbnails.slick-vertical .slick-prev,
.product-single__thumbnails.slick-vertical .slick-next {
  left: 0;
  right: 0;
  margin-top: 0;
  width: 100%;
  height: auto; }
.product-single__thumbnails.slick-vertical .slick-prev {
  top: -20px; }
.product-single__thumbnails.slick-vertical .slick-next {
  top: auto;
  bottom: -40px; }

/*================ Product image modal ================*/
.product-modal__image {
  display: block;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  max-height: 95%;
  max-width: 95%;
  margin: 0 auto; }
  .no-csstransforms .product-modal__image {
    top: 2.5%; }

.js-modal-open-product-modal {
  cursor: zoom-in; }

.product-tag {
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.75em;
  background-color: #e32c2b;
  color: white;
  padding: 4px 10px; }

.product-tag--absolute {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

/*============================================================================
  Pagination
  - Markup build by liquid tag,
    so nesting and element selectors are necessary
==============================================================================*/
.pagination {
  text-align: center;
  margin: 40px 40px 0; }
  .pagination a {
    color: black; }
    .pagination a:hover, .pagination a:focus {
      color: #e32c2b; }
  .pagination .current {
    font-weight: 700;
    color: #030303; }
  .pagination a,
  .pagination .current {
    display: inline-block;
    padding: 5px 10px; }

/*================ Article comments ================*/
.comment {
  margin-bottom: 20px; }
  .comment:last-child {
    margin-bottom: 0; }
  .comment + .comment {
    padding-top: 20px;
    border-top: 1px solid white; }

/*================ Indented article/page images ================*/
.rte--indented-images .rte__image-indent {
  position: relative;
  margin-left: -20px;
  margin-right: -20px; }
  @media only screen and (min-width: 750px) {
    .rte--indented-images .rte__image-indent {
      margin-left: -40px;
      margin-right: -40px; } }

/*================ Section header ================*/
.section-header {
  margin-bottom: 40px; }

@media only screen and (max-width: 749px) {
  .section-header__item + .section-header__item {
    margin-top: 20px; } }
.section-header__title,
.section-header__subtext {
  margin-bottom: 0; }

/*============================================================================
  Hero slider

  Extends default slick slider styles.
  Extra specificity in selectors is used to override defaults.
==============================================================================*/
.hero-wrapper {
  position: relative; }

.shopify-section--slideshow:first-child .hero {
  margin-bottom: -30px; }
  @media only screen and (min-width: 750px) {
    .shopify-section--slideshow:first-child .hero {
      margin-bottom: -60px; } }
.shopify-section--slideshow:first-child .hero-wrapper {
  margin-top: -30px; }
  @media only screen and (min-width: 750px) {
    .shopify-section--slideshow:first-child .hero-wrapper {
      margin-top: -60px; } }
.shopify-section--slideshow:first-child .hero-wrapper--adapt {
  background-color: rgba(0, 0, 0, 0); }
  .shopify-section--slideshow:first-child .hero-wrapper--adapt .hero {
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 50px; }

.hero {
  height: 340px;
  overflow: hidden;
  margin-bottom: 0; }
  @media only screen and (min-width: 750px) {
    .hero {
      height: 600px; } }
  .hero.hero--adapt {
    margin-bottom: 50px; }
  .hero .hero__slide,
  .hero .slick-list,
  .hero .slick-track {
    height: 100%; }

.hero--large {
  height: 440px; }
  @media only screen and (min-width: 750px) {
    .hero--large {
      height: 740px; } }

.hero--adapt-height {
  max-height: 100vh; }
  @media only screen and (min-width: 750px) {
    .hero--adapt-height {
      max-height: 80vh; } }

.hero-toggle-stop {
  display: table; }
  .is-paused .hero-toggle-stop {
    display: none; }

.hero-toggle-play {
  display: none; }
  .is-paused .hero-toggle-play {
    display: table; }

/*=========================== Margins ===========================*/
.shopify-section--slideshow:not(:first-child) + .shopify-section--slideshow .hero--adapt,
.shopify-section--slideshow:not(:first-child) + .shopify-section:not(.shopify-section--full-width) {
  margin-top: 50px; }

.shopify-section--full-width + .shopify-section--slideshow .hero:not(.hero--adapt) {
  margin-top: -50px; }

.shopify-section--slideshow:first-child + .shopify-section--slideshow .hero--adapt {
  margin-top: 30px; }
  @media only screen and (min-width: 750px) {
    .shopify-section--slideshow:first-child + .shopify-section--slideshow .hero--adapt {
      margin-top: 60px; } }

/*================ Dots and prev/next pagination ================*/
.hero .slick-dots {
  margin: 0;
  bottom: 10px; }
  .hero .slick-dots li {
    margin: 0;
    vertical-align: middle; }
    .hero .slick-dots li button {
      position: relative; }
    .hero .slick-dots li button:before {
      text-indent: -9999px;
      background-color: white;
      border-radius: 100%;
      border: 2px solid transparent;
      width: 10px;
      height: 10px;
      margin: 5px 0 0 5px;
      opacity: 1;
      transition: all 0.2s; }
    .hero .slick-dots li.slick-active button:before {
      background-color: transparent;
      border-color: white;
      opacity: 1;
      width: 12px;
      height: 12px;
      margin: 4px 0 0 4px; }
    .hero .slick-dots li button:active:before {
      opacity: 0.5; }
.hero .slick-prev,
.hero .slick-next {
  top: 0;
  height: 100%;
  margin-top: 0;
  width: 40px; }
.hero .slick-prev {
  left: 0; }
.hero .slick-next {
  right: 0; }

/*================ General slide styles ================*/
.hero__slide {
  position: relative; }

.hero__image {
  position: relative;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  height: 100%;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover"; }
  .slick-initialized .hero__image, .no-js .hero__image {
    opacity: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center; }
  .hero__image img {
    display: block;
    width: 100%; }

.hero__image-content {
  height: inherit; }

/*================ Hero text ================*/
.hero-content {
  position: absolute;
  width: 100%;
  bottom: 45px;
  left: 0; }
  .hero-wrapper--adapt .hero-content {
    bottom: 0;
    width: 100%; }
  @media only screen and (min-width: 750px) {
    .hero-content {
      bottom: 120px; }
      .hero-wrapper--adapt .hero-content {
        bottom: 60px; } }
  .hero-content .hero-content__title-wrapper {
    margin-bottom: 2px; }
  .hero-content .hero-content__controls,
  .hero-content .hero-content__title-wrapper {
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0; }
    @media only screen and (min-width: 750px) {
      .hero-content .hero-content__controls,
      .hero-content .hero-content__title-wrapper {
        -ms-transform: translateY(40px);
        -webkit-transform: translateY(40px);
        transform: translateY(40px); } }
  .hero-wrapper--adapt .hero-content .hero-content__controls {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1; }
    @media only screen and (min-width: 750px) {
      .hero-wrapper--adapt .hero-content .hero-content__controls {
        -ms-transform: translateY(40px);
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        opacity: 0; } }

.hero-content__inner-text {
  padding: 0 5px; }
  @media only screen and (min-width: 750px) {
    .hero-content__inner-text {
      padding: 0 60px; } }

.hero-content__title {
  display: none;
  font-size: 2.25em;
  line-height: 1.35;
  margin-bottom: 0.625rem;
  padding: 0 10px;
  background-color: black;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  .hero-content__title:last-child {
    margin-bottom: 0.625rem; }
  .hero-wrapper--adapt .hero-content__title {
    margin-bottom: 0.31rem; }
  @media only screen and (min-width: 750px) {
    .hero-content__title {
      font-size: 3.75em; }
      .hero-wrapper--adapt .hero-content__title {
        margin-bottom: 0.625rem; } }

/*================ Controls ================*/
.hero-content__inner-controls {
  padding: 0; }
  @media only screen and (min-width: 750px) {
    .hero-content__inner-controls {
      padding: 0 60px; } }

.hero-content__controls {
  width: inherit;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  .hero-wrapper--adapt .hero-content__controls {
    width: 100%;
    margin-left: 0;
    background-color: rgba(0, 0, 0, 0); }
    @media only screen and (min-width: 750px) {
      .hero-wrapper--adapt .hero-content__controls {
        width: inherit;
        background-color: transparent; } }
  .hero-content__controls .icon {
    position: relative;
    width: 11px;
    height: 11px;
    fill: currentColor;
    top: -1px; }

.hero-content__controls-item {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  padding: 8px 15px;
  margin-right: 1px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  .hero-wrapper--adapt .hero-content__controls-item {
    margin-right: 0; }
    @media only screen and (min-width: 750px) {
      .hero-wrapper--adapt .hero-content__controls-item {
        margin-right: 1px; } }

.hero-content__controls-item--count {
  padding: 8px 6px;
  min-width: 40px;
  text-align: center;
  font-size: 0.75em;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }
  @media only screen and (min-width: 750px) {
    .hero-content__controls-item--count {
      padding: 10px;
      background: rgba(0, 0, 0, 0.5); } }

.hero-content__controls-item--pause,
.hero-content__controls-item--arrow {
  padding: 0;
  align-items: stretch; }
  .hero-content__controls-item--pause button,
  .hero-content__controls-item--arrow button {
    padding: 8px 15px;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    transition: background-color 0.15s ease-in; }
    .hero-content__controls-item--pause button:hover, .hero-content__controls-item--pause button:focus,
    .hero-content__controls-item--arrow button:hover,
    .hero-content__controls-item--arrow button:focus {
      color: white;
      background-color: rgba(20, 20, 20, 0); }
    @media only screen and (min-width: 750px) {
      .hero-content__controls-item--pause button,
      .hero-content__controls-item--arrow button {
        padding: 10px 15px; } }

.hero-content__controls-item--pause .icon-pause {
  height: 7px; }
.hero-content__controls-item--pause .icon-play {
  height: 9px; }

.hero-content__controls-item--text {
  display: none; }
  .hero-wrapper--adapt .hero-content__controls-item--text {
    text-align: right;
    width: 100%; }
    @media only screen and (min-width: 750px) {
      .hero-wrapper--adapt .hero-content__controls-item--text {
        width: inherit; } }
  @media only screen and (min-width: 750px) {
    .hero-content__controls-item--text {
      font-size: 1.25em; } }

.hero-content__controls-item--arrow,
.hero-content__controls-item--text {
  transition: background-color 0.15s ease-in; }
  .hero-content__controls-item--arrow:hover, .hero-content__controls-item--arrow:focus,
  .hero-content__controls-item--text:hover,
  .hero-content__controls-item--text:focus {
    color: white;
    background-color: rgba(20, 20, 20, 0); }

.hero-content-navigation {
  display: flex; }

.hero-content-navigation__item {
  list-style: none; }

/*================ Transitions ================*/
.hero-content-active .hero-content__controls,
.hero-content-active .hero-content__title-wrapper {
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition: 0.4s; }
  @media only screen and (min-width: 750px) {
    .hero-content-active .hero-content__controls,
    .hero-content-active .hero-content__title-wrapper {
      transition: 0.6s; } }
@media only screen and (min-width: 750px) {
  .hero-wrapper--adapt .hero-content-active .hero-content__controls {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1; } }

.hero-title-active {
  display: inline; }

.hero-link-active {
  display: block; }

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

.page-container {
  overflow: hidden; }

.js-drawer-open .page-container:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10; }

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

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  max-width: 95%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .drawer {
      z-index: 3; } }

.drawer--left {
  width: 300px;
  left: -300px; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
    .no-csstransforms .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  width: 300px;
  right: -300px; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
    .no-csstransforms .js-drawer-open-right .drawer--right {
      right: 0; }

.is-moved-by-drawer {
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
    .no-csstransforms .js-drawer-open-left .is-moved-by-drawer {
      left: 300px; }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
    .no-csstransforms .js-drawer-open-right .is-moved-by-drawer {
      left: -300px; }

/*================ Drawer theme styles ================*/
.page-element {
  position: relative; }
  .page-element.is-transitioning {
    z-index: 2; }

.page-container {
  background-color: white; }

.is-moved-by-drawer {
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open .is-moved-by-drawer {
    transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px; }
  .js-drawer-open-right .is-moved-by-drawer {
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 -5px; }

.drawer--left {
  left: -75px; }
  .js-drawer-open-left .drawer--left {
    -ms-transform: translateX(75px);
    -webkit-transform: translateX(75px);
    transform: translateX(75px); }

.drawer {
  overflow: visible;
  color: black; }

.drawer__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden; }

/*================ Drawer search field ================*/
.drawer__search {
  position: relative;
  background-color: white;
  padding: 10px; }

.drawer__search-input {
  display: block;
  width: 100%;
  padding-left: 15px;
  background-color: white; }
  .drawer__search-input[type="search"] {
    padding-right: 60px; }
  .drawer__search-input::-webkit-search-decoration {
    display: none; }

.drawer__search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 20px; }
  .drawer__search-submit .icon {
    width: 25px;
    height: 25px;
    fill: black; }

/*================ Drawer linklist ================*/
.drawer__nav {
  list-style: none; }

.drawer__nav--template-index {
  position: relative;
  margin-bottom: -10px;
  background-color: rgba(0, 0, 0, 0); }

.drawer__nav--margin {
  margin-bottom: 30px; }

.drawer__nav-item {
  display: block; }
  @media only screen and (max-width: 749px) {
    .drawer__nav-item {
      border-bottom: 1px solid white; } }

.drawer__nav-link {
  display: block; }

.drawer__nav-link--top-level {
  font-family: Rubik, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13.33333px 20px;
  font-size: 1.625em;
  color: black; }
  .drawer__nav-link--top-level:hover, .drawer__nav-link--top-level:focus {
    color: #D73F37;
    background-color: rgba(5, 5, 5, 0); }

.drawer__nav-link--split {
  -webkit-flex: 1 0 0;
  -moz-flex: 1 0 0;
  -ms-flex: 1 0 0;
  flex: 1 0 0;
  padding-right: 0; }

/*================ Sublist expand/collapse trigger ================*/
.drawer__nav-has-sublist {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-direction: row;
  flex-direction: row; }

.drawer__nav-toggle-btn {
  padding: 10px 20px;
  color: black;
  line-height: 1; }
  .drawer__nav-toggle-btn .icon {
    width: 18px;
    height: 18px;
    fill: currentColor; }
  .drawer__nav-toggle-btn:hover, .drawer__nav-toggle-btn:focus {
    opacity: 0.6; }

.drawer__nav-toggle-btn--small {
  color: black;
  line-height: 0; }
  .drawer__nav-toggle-btn--small .icon {
    width: 12px;
    height: 12px; }

.drawer__nav-toggle--open {
  display: block; }

.drawer__nav-toggle--close {
  display: none; }

/*================ Collection sorting select menus ================*/
.collection-sort {
  display: inline-block;
  text-align: left;
  max-width: 150px; }
  .collection-sort + .collection-sort {
    margin-left: 20px; }
  @media only screen and (max-width: 749px) {
    .collection-sort {
      width: 80%; }
      .collection-sort + .collection-sort {
        margin: 20px 0 0; } }

.collection-sort__label {
  display: block;
  text-align: center; }
  @media only screen and (min-width: 750px) {
    .collection-sort__label {
      text-align: left;
      padding-left: 6.66667px;
      margin-bottom: 0; } }

.collection-sort__input {
  background-color: transparent;
  font-weight: 700;
  padding-top: 6.66667px;
  padding-bottom: 6.66667px;
  padding-left: 6.66667px;
  color: #030303; }
  @media only screen and (max-width: 749px) {
    .collection-sort__input {
      width: 100%;
      border: 1px solid #e6e6e6; } }

/*================ Collection card and grid ================*/
.collection {
  margin-bottom: 30px; }
  .collection:last-child {
    margin-bottom: 0; }

/*================ Collection card ================*/
.collection-card {
  position: relative;
  box-sizing: content-box;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 12.5px;
  height: 295px;
  z-index: 1; }
  .collection-card:focus {
    z-index: 2; }
  @media only screen and (min-width: 750px) {
    .collection-card {
      padding: 25px; } }
  .collection-card:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.4;
    z-index: 1;
    transition: opacity 0.2s ease; }
  .collection-card:hover:after, .collection-card:focus:after {
    opacity: 0.6; }

.collection-card__meta {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  margin-right: 10px;
  z-index: 2; }
  @media only screen and (min-width: 750px) {
    .collection-card__meta {
      bottom: 40px; } }

.collection-card__title {
  display: inline;
  background-color: #e32c2b;
  color: white;
  margin-bottom: 10px;
  padding: 2px 10px;
  letter-spacing: 0;
  font-size: 1.625em;
  line-height: 1.4;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 990px) {
    .collection-card__title {
      font-size: 2em; } }

.collection-card__subtext {
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 10px 0 0 10px;
  font-size: 0.8125em;
  color: white; }

/*================ Social sharing icons ================*/
.social-sharing .icon {
  width: 24px;
  height: 24px;
  fill: currentColor; }

@media only screen and (max-width: 749px) {
  .social-sharing__title {
    display: inline-block;
    margin-bottom: 10px; } }
.social-sharing__link {
  color: black;
  opacity: 0.7; }
  .social-sharing__link:hover, .social-sharing__link:focus {
    opacity: 1;
    color: #e32c2b; }
  .social-sharing__link + .social-sharing__link {
    margin-left: 10px; }

/*================ Cart ================*/
.cart-table {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  margin-bottom: 40px; }
  .cart-table td,
  .cart-table th {
    border: 0; }
    @media only screen and (min-width: 750px) {
      .cart-table td,
      .cart-table th {
        padding: 20px; } }

/*================ Cart cells ================*/
@media only screen and (min-width: 750px) {
  .cart__cell--image {
    width: 180px; }

  .cart__cell--quantity {
    width: 130px; }

  .cart__cell--total {
    width: 200px;
    text-align: right; } }
/*================ Cart cell responsive labels ================*/
@media only screen and (max-width: 749px) {
  .cart-table th,
  .cart-table td {
    text-align: center; }
  .cart-table td:before {
    display: none; } }
/*================ Cart items ================*/
.cart__image {
  display: inline-block;
  max-width: 120px;
  margin: 10px auto; }
  @media only screen and (max-width: 749px) {
    .cart__image img {
      max-height: 120px; } }

.cart__quantity-label {
  display: block;
  text-align: center; }

.cart__cell--quantity .js-qty {
  max-width: 120px;
  margin: 0 auto; }

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

.cart__item-total {
  font-size: 1.2em;
  display: block; }

.cart__subtotal {
  margin: 35px 0 0; }
  @media only screen and (min-width: 750px) {
    .cart__subtotal {
      margin-top: 20px; } }

.cart__taxes {
  margin-bottom: 45px; }

.cart__note {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #e6e6e6; }
  @media only screen and (max-width: 749px) {
    .cart__note {
      min-height: 50px; } }

.cart__buttons .btn, .cart__buttons .btn--secondary, .cart__buttons .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .cart__buttons .shopify-payment-button__button--unbranded {
  margin-bottom: 10px; }
  @media only screen and (max-width: 749px) {
    .cart__buttons .btn, .cart__buttons .btn--secondary, .cart__buttons .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .cart__buttons .shopify-payment-button__button--unbranded {
      display: block;
      width: 100%; } }

.update-cart {
  display: none; }
  .no-js .update-cart {
    display: inline-block; }

/*================ Cart discounts ================*/
.cart-item__original-price,
.cart-item__discount {
  font-size: 80% !important;
  margin-bottom: 0 !important; }

/*================ Empty cart ================*/
.cart--no-cookies .cart--empty-message {
  display: none; }

.cart--no-cookies .cart--continue-message {
  display: none; }

.cart--cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cart--cookie-message {
    display: block; }

/*================ Quantity selector ================*/
.js-qty {
  position: relative; }

.js-qty--is-loading {
  opacity: 0.6; }

.js-qty__input {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center; }

.js-qty__adjust {
  position: absolute;
  top: 0;
  bottom: 0;
  text-align: center;
  width: 30px;
  padding: 0;
  background: none;
  border-style: solid;
  border-color: #e7e7e7;
  border-width: 0;
  transition: background-color 0.03s ease-in; }
  .js-qty__adjust:hover, .js-qty__adjust:focus {
    background-color: #e7e7e7;
    transition-duration: 0.08s; }
  .js-qty__adjust .icon {
    width: 8px;
    height: 8px;
    fill: currentColor; }

.js-qty__adjust--minus {
  left: 0;
  border-right-width: 1px; }

.js-qty__adjust--plus {
  right: 0;
  border-left-width: 1px; }

/*================ Notification bar ================*/
.notification {
  visibility: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0;
  transition: top 0.25s, visibility 0.25s, opacity 0.15s;
  transition-timing-function: cubic-bezier(0.33, 0.59, 0.14, 1);
  z-index: 4; }

.notification--promo {
  position: static;
  display: none; }

.notification--active {
  display: block;
  visibility: visible;
  top: 100%;
  opacity: 1; }

.notification__link {
  display: block;
  padding: 10px 0; }
  .notification-adapt .notification__link {
    padding: 0; }
  .notification__link:hover u {
    text-decoration: none; }

.notification__inner {
  position: relative;
  overflow: visible;
  padding: 10px 0; }
  .notification-adapt .notification__inner {
    padding: 0; }

.notification__inner--has-link {
  padding: 0; }

.notification__message {
  display: block;
  padding: 0 60px;
  text-align: center;
  font-weight: 700; }
  .notification-adapt .notification__message {
    background-color: #e32c2b;
    padding: 10px 60px; }
  .notification__message span {
    white-space: nowrap; }

.notification--success,
.notification--promo {
  background-color: #d74139;
  color: #fff; }
  .notification--success a,
  .notification--promo a {
    color: white; }

.notification--success.notification-adapt,
.notification--promo.notification-adapt {
  background-color: transparent; }

.notification--error {
  background-color: #d73f37;
  color: white; }
  .notification--error a {
    color: white; }

.notification__close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  padding: 0 10px;
  color: inherit; }
  .notification__close .icon {
    fill: currentColor; }

/*================ Modals ================*/
.modal {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  color: black;
  z-index: 15;
  transition: all ease-in-out 0.2s; }
  .modal.modal--is-active {
    display: block;
    opacity: 1; }

body.modal--is-active {
  overflow: hidden; }

.modal__inner {
  height: 100%;
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all ease-in-out 0.2s; }
  .modal--is-active .modal__inner {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }

.modal__centered {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  .modal__centered .no-csstransforms {
    top: 20%; }

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px; }
  .modal__close .icon {
    font-size: 1.25em; }

/*================ Featured collection card ================*/
.featured-card {
  display: block;
  position: relative;
  height: 100%;
  text-align: center;
  border-color: white;
  border-style: solid;
  border-width: 0 0 1px 1px;
  background-color: rgba(0, 0, 0, 0);
  padding: 0 40px; }
  .featured-card:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: opacity 0.15s ease-in;
    z-index: 1; }
  .featured-card:hover:before {
    opacity: 1; }
  @media only screen and (min-width: 750px) {
    .medium-up--one-quarter .featured-card {
      height: 470px; } }
  @media only screen and (min-width: 750px) {
    .medium-up--one-third .featured-card {
      height: 530px; } }
  @media only screen and (min-width: 750px) {
    .medium-up--one-half .featured-card {
      height: 650px; } }
  .no-js .featured-card {
    height: 625px; }

@media only screen and (max-width: 749px) {
  .featured-card--contain {
    height: 100% !important; } }

.featured-card--cover {
  height: 380px !important;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-width: 0; }

.featured-card__image-container {
  position: relative;
  width: 100%;
  margin: 0 auto; }
  @media only screen and (max-width: 749px) {
    .featured-card--contain .featured-card__image-container {
      height: 100% !important;
      margin-bottom: 40px; } }

.featured-card__blank-image-container {
  position: relative;
  width: 100%;
  margin: 0 auto 40px; }
  .featured-card__blank-image-container .featured-card__image {
    position: relative; }
    @media only screen and (max-width: 749px) {
      .featured-card__blank-image-container .featured-card__image {
        max-width: 290px; } }

.featured-card__image {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0; }
  .no-js .featured-card__image {
    opacity: 1; }

.featured-card__header {
  padding: 30px 5% 10px;
  z-index: 1; }
  .featured-card--cover .featured-card__header {
    position: relative;
    display: inline-block; }
  @media only screen and (max-width: 749px) {
    .featured-card--contain .featured-card__header {
      height: 100% !important; } }

.featured-card__header--background {
  background-color: rgba(0, 0, 0, 0); }

.featured-card__title {
  font-size: 1.75em;
  margin-bottom: 0;
  color: #030303; }

.featured-card__action {
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.8125em;
  color: #e32c2b; }
  .featured-card:hover .featured-card__action {
    color: inherit; }

.section-block {
  position: relative;
  background-color: rgba(0, 0, 0, 0); }

.section-block--padding {
  padding: 30px; }

.section-block__header {
  margin-bottom: 30px; }

.section-block__header--padded {
  padding-top: 30px; }

.section-block__title,
.section-block__subtext {
  margin-bottom: 0; }

/*================ Maps ================*/
.map-section {
  position: relative;
  min-height: 650px;
  width: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  flex-direction: row; }
  @media only screen and (min-width: 750px) {
    .map-section {
      min-height: 500px; } }
  .map-section .section-header {
    margin-bottom: 20px; }
  .map-section .btn, .map-section .btn--secondary, .map-section .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .map-section .shopify-payment-button__button--unbranded {
    margin-top: 10px; }
  .map-section .icon-pin {
    height: 0.89375em;
    position: relative;
    top: -1px; }
  .shopify-section:first-child .map-section {
    margin-top: -60px; }

.map-section__full-width {
  margin: -50px 0; }

.map-section__wrapper {
  height: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  flex-direction: row; }

.map-section__content-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 750px) {
    .map-section__content-wrapper {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -ms-flex-preferred-size: 33%;
      -webkit-flex-basis: 33%;
      -moz-flex-basis: 33%;
      flex-basis: 33%;
      flex-grow: 0; } }

.map-section__image {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 750px) {
    .map-section__image {
      position: absolute; } }
  .map-section--display-map .map-section__image {
    display: none !important; }
  .map-section--load-error .map-section__image {
    display: block !important; }

.flex--third {
  -webkit-flex: 1 1 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%; }
  @media only screen and (max-width: 749px) {
    .flex--third {
      -webkit-flex: 0 1 100%;
      -moz-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%; } }

.flex--half {
  -webkit-flex: 1 1 50%;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%; }
  @media only screen and (max-width: 749px) {
    .flex--half {
      -webkit-flex: 0 1 100%;
      -moz-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%; } }

.map-section__overlay {
  width: 100%;
  min-height: auto;
  position: relative;
  display: block;
  background-color: white;
  padding: 40px;
  text-align: center;
  z-index: 3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media only screen and (min-width: 750px) {
    .map-section__overlay:nth-child(2) {
      border-left: 1px solid rgba(0, 0, 0, 0.2); } }
  @media only screen and (max-width: 749px) {
    .map-section__overlay:nth-child(2) {
      border-top: 1px solid rgba(0, 0, 0, 0.2); } }
  .map-section__overlay > * {
    width: 100%; }
  @media only screen and (min-width: 750px) {
    .map-section__overlay {
      min-height: 320px;
      margin: 40px 0; } }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }

@media only screen and (min-width: 750px) {
  .map-section__text {
    background-color: #8c8c8c;
    padding: 20px; } }
@media only screen and (max-width: 749px) {
  .map-section__text {
    order: 0;
    padding: 0 20px 20px; } }

@media only screen and (min-width: 750px) {
  .map-section__text-second-item {
    border-left: 1px solid rgba(0, 0, 0, 0.2); } }
@media only screen and (max-width: 749px) {
  .map-section__text-second-item {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2); } }

.map-section__background-wrapper {
  overflow: hidden;
  position: relative;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 750px) {
    .map-section__background-wrapper {
      position: static;
      -ms-flex-preferred-size: 50%;
      -webkit-flex-basis: 50%;
      -moz-flex-basis: 50%;
      flex-basis: 50%;
      flex-grow: 0; } }

.map-section__container {
  width: 100%;
  height: 55vh; }
  @media only screen and (min-width: 750px) {
    .map-section__container {
      position: absolute !important;
      top: 0;
      left: 0;
      width: 130%;
      height: 100%;
      margin: 0 -30% 0 0; } }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

/*================ Link block CTA ================*/
.link-block {
  position: relative;
  display: block;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  flex: 1;
  background-size: cover;
  background-position: top center; }
  .link-block:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.4;
    transition: opacity 0.2s ease;
    z-index: 1; }
  .link-block:hover:after, .link-block:hover:focus {
    opacity: 0.5; }

.link-block__cta {
  word-break: break-word;
  z-index: 2;
  position: relative; }

.link-block-no-js {
  position: relative;
  display: block;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  flex: 1; }

/*================ Quote slider ================*/
.quote-icon {
  display: block;
  margin: 0 auto 20px; }

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 30px; }
  .quotes-wrapper .slick-dots li,
  .quotes-wrapper .slick-dots button {
    width: auto;
    height: auto; }
  .quotes-wrapper .slick-dots button {
    line-height: 1;
    font-size: 1em;
    opacity: 0.6;
    color: currentColor; }
    .quotes-wrapper .slick-dots button:before {
      display: none; }
  .quotes-wrapper .slick-dots .slick-active button {
    font-weight: 700;
    opacity: 1; }

.quotes-wrapper .slick-slide[tabindex="0"] {
  outline: none; }

/*================ Image content section ================*/
.image-content__image-container {
  position: relative; }

.image-content__image-wrapper {
  display: block;
  margin: 0 auto; }
  .image-content__image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; }

.image-content__text {
  padding: 40px; }

/*================ Featured product section ================*/
.featured-product__text {
  margin-top: 5px; }
  @media only screen and (max-width: 749px) {
    .featured-product__text {
      text-align: center;
      position: relative;
      top: -50px;
      margin-bottom: -50px; } }

.featured-product__prices {
  margin-top: 10px; }

.featured-product__prices--policy-enabled {
  margin-bottom: 10px; }

@media only screen and (max-width: 749px) {
  .featured-product__image {
    text-align: center; } }

.featured-product__full-details {
  display: inline-block;
  margin-top: 20px;
  padding: 0 5px; }

/*================ Featured articles ================*/
.article-block {
  display: block;
  text-align: center; }
  @media only screen and (max-width: 749px) {
    .article-block {
      padding: 20px 0; } }

.article-block__image {
  height: 0;
  padding-bottom: 75%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }
  @media only screen and (max-width: 749px) {
    .article-block__image {
      padding-bottom: 50%; } }

.article-block__info {
  padding: 20px 10px; }

.article-block__date {
  display: block;
  font-size: 0.875em;
  color: black; }

.article-block__date,
.article-block__title {
  margin-bottom: 5px; }

/*================ Featured content ================*/
.featured-content {
  font-family: bebas-neue;
  height: 350px;
  padding: 40px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat; }

/*============================================================================
  Styles columns.liquid and gallery.liquid
    - Background images and positioning are handled with theme settings
==============================================================================*/
@media only screen and (max-width: 749px) {
  .column-flex {
    -webkit-flex-direction: column;
    flex-direction: column; } }

.column-flex__image {
  position: relative;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center; }
  @media only screen and (min-width: 750px) {
    .column-flex__image {
      height: 380px; } }

.column-flex__image--tall {
  height: 300px; }
  @media only screen and (min-width: 750px) {
    .column-flex__image--tall {
      height: 520px; } }

.column-flex__content {
  padding: 20px; }

.custom-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto; }

/*================ Flex item alignment ================*/
.align--top-middle {
  text-align: center; }

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

.align--middle-left {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.align--center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: center; }

.align--middle-right {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: right; }

.align--bottom-left {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end; }

.align--bottom-middle {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center; }

.align--bottom-right {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: right; }

/*================ Video section ================*/
body.video-playing {
  overflow: hidden; }

.video-section {
  height: 200px; }
  @media only screen and (min-width: 750px) {
    .video-section {
      height: 380px; } }
  .video-section.video-section--tall {
    height: 300px; }
    @media only screen and (min-width: 750px) {
      .video-section.video-section--tall {
        height: 520px; } }

.video-section__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out; }
  @media only screen and (min-width: 750px) {
    .video-section__modal {
      width: 75%; } }
  .video-section--loaded .video-section__modal {
    opacity: 1;
    pointer-events: auto;
    z-index: 16; }

.video-section__body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out; }
  .video-section--loaded .video-section__body-overlay {
    opacity: 1;
    pointer-events: auto;
    z-index: 15; }

.video-section__player,
.video-section__player iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden; }
  .video-section--loaded .video-section__player, .video-section--loaded
  .video-section__player iframe {
    z-index: 16;
    visibility: visible; }

.video-section__player-close {
  display: none;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  border: 0; }
  .video-section__player-close:hover {
    opacity: 0.5; }
  .video-section--loaded .video-section__player-close {
    z-index: 17; }
  .video-section__player-close .icon {
    fill: black;
    width: 25px;
    height: 25px; }
  @media only screen and (max-width: 749px) {
    .video-section__player-close {
      top: 10px;
      left: 10px; } }

.video-section__cover {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  overflow: hidden;
  transition: all 0.25s ease-out;
  z-index: 2; }

.video-section__cover-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 1;
  transition: opacity 0.25s ease-out; }

.video-section__cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-section__cover-content {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 13px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.25s ease-out;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.video-section__load-player-button {
  border: 0;
  line-height: 1;
  padding: 10px;
  background-color: #e32c2b;
  text-transform: uppercase;
  transition: all 0.25s ease;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  .video-section__load-player-button:hover {
    background-color: #c11a1a; }
  .video-section__load-player-button.video-section__load-player-button--large {
    padding: 0;
    background: none; }

.video-section__error {
  display: none;
  position: absolute;
  bottom: -40px;
  width: 50vw;
  min-width: 340px;
  left: 50%;
  color: white;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }
  .video-section--error .video-section__error {
    display: block; }

.video-section__load-player-text {
  margin-left: 10px;
  display: inline-block;
  letter-spacing: 0;
  font-size: 1.625em;
  line-height: 1.2;
  color: white;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone; }
  @media only screen and (min-width: 990px) {
    .video-section__load-player-text {
      font-size: 2em; } }

.video-section__load-player-icon {
  position: relative;
  top: 2px;
  margin: 0 auto;
  height: 20px;
  width: 20px;
  padding: 0;
  display: inline-block;
  transition: all 0.5s ease; }
  @media only screen and (min-width: 750px) {
    .video-section__load-player-icon {
      top: 0; } }
  .video-section__load-player-button--large .video-section__load-player-icon {
    width: 60px;
    height: 60px; }

.video-section__load-player-button-triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 7px solid #e32c2b;
  border-bottom: 5px solid transparent;
  -ms-transform: translate(-34%, -50%);
  -webkit-transform: translate(-34%, -50%);
  transform: translate(-34%, -50%); }
  .video-section__load-player-button--large .video-section__load-player-button-triangle {
    border-top: 15px solid transparent;
    border-left: 23px solid white;
    border-bottom: 15px solid transparent; }

.video-section__load-player-button-circle {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  height: 20px;
  width: 20px;
  -moz-border-radius: 75px;
  -webkit-border-radius: 75px;
  transition: all 0.25s ease-out; }
  .video-section__load-player-button--large .video-section__load-player-button-circle {
    background-color: #e32c2b;
    width: 60px;
    height: 60px; }
  .video-section__load-player-button--large:hover .video-section__load-player-button-circle, .video-section__load-player-button--large:focus .video-section__load-player-button-circle {
    background-color: #c11a1a; }

/*================ Blog ================*/
.article__photo-container {
  position: relative; }

.article__photo-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%; }

/*================ Rich text section ================*/
.rich-text__heading--large {
  font-size: 2.25em; }

.rich-text__heading--small {
  font-size: 1.5em; }

.rich-text__text--large {
  font-size: 1.125em; }

.rich-text__text--small {
  font-size: 0.875em; }

.order-table {
  border: 1px solid white; }
  .order-table a {
    color: black; }
  .order-table th, .order-table td {
    border: 0; }
  .order-table tbody th,
  .order-table tfoot th {
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0; }
  .order-table tbody tr + tr {
    border-top: 1px solid white; }
  .order-table thead {
    border-bottom: 1px solid black; }
  .order-table tfoot {
    border-top: 1px solid black; }
    .order-table tfoot tr:first-child th, .order-table tfoot tr:first-child td {
      padding-top: 1.25em; }
    .order-table tfoot tr:nth-last-child(2) th, .order-table tfoot tr:nth-last-child(2) td {
      padding-bottom: 1.25em; }
    .order-table tfoot tr:last-child th, .order-table tfoot tr:last-child td {
      border-top: 1px solid black;
      font-weight: 700;
      padding-top: 1.25em;
      padding-bottom: 1.25em; }
  @media only screen and (min-width: 750px) {
    .order-table tbody tr:first-child th, .order-table tbody tr:first-child td {
      padding-top: 1.25em; }
    .order-table tbody tr:last-child th, .order-table tbody tr:last-child td {
      padding-bottom: 1.25em; }
      .order-table tbody tr:last-child th .order-discount--list, .order-table tbody tr:last-child td .order-discount--list {
        margin-bottom: 0; }
    .order-table tfoot tr td, .order-table tfoot tr th {
      vertical-align: bottom; } }
  @media only screen and (max-width: 749px) {
    .order-table {
      border: 0; }
      .order-table thead {
        display: none; }
      .order-table th,
      .order-table td {
        float: left;
        clear: left;
        width: 100%;
        text-align: right;
        padding: 0.5rem 0;
        border: 0;
        margin: 0; }
      .order-table th::before,
      .order-table td::before {
        content: attr(data-label);
        float: left;
        text-align: left;
        padding-right: 2em;
        max-width: 80%; }
      .order-table tbody tr th:first-child {
        padding-top: 1.25em; }
      .order-table tbody tr td:last-child {
        padding-bottom: 1.25em; }
      .order-table tbody th::before,
      .order-table tbody td::before {
        font-weight: 700; } }

@media only screen and (max-width: 749px) {
  .order-table__product {
    display: flex;
    justify-content: space-between; } }

.order-discount {
  text-transform: uppercase;
  color: #e32c2b;
  display: block;
  line-height: 1.2em; }
  .order-discount .icon-saletag {
    fill: currentColor;
    width: 1em;
    height: 1em;
    margin-right: 0.4em; }

.order-discount--cart {
  font-size: 0.9em; }

.order-discount--title {
  word-break: break-word;
  padding-right: 1em; }

.order-discount--list {
  margin: 0.8em 0 0.6em 1.3em;
  list-style: none;
  padding: 0; }

.order-discount__item {
  text-indent: -1.3em; }
  .order-discount__item + .order-discount__item {
    margin-top: 0.6em; }

@media only screen and (max-width: 749px) {
  .order-discount-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%; } }

.order-discount-cart-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0 5px 0; }
  @media only screen and (min-width: 750px) {
    .order-discount-cart-wrapper {
      justify-content: flex-end; } }

.product-recommendations {
  background-color: white;
  margin-bottom: -40px;
  padding: 0 0 80px 0; }
  @media only screen and (min-width: 750px) {
    .product-recommendations {
      margin-bottom: -80px; } }

#StickNavWrapper {
  display: none; }

/*============================================================================
  # EXTRA EDITS
==============================================================================*/
/* FONTS ADDED */
@font-face {
  font-family: "bebas-neue";
  src: url("bebas-neue-v1-latin-regular.woff2") format("woff2"), url("bebas-neue-v1-latin-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

/* SQUARESPACE ADDED */
/*changes Oct-2019*/
#Desk-footer {
  background: #000; }

#collection-5db15dd209eaa25c48da7805 .Header--top {
  display: none; }

#new-page {
  position: relative !important; }

#new-page a {
  font-family: bebas-neue !important;
  font-size: 22px; }

#new-page a:hover {
  color: rgba(29, 29, 29, 0.4); }

#new-page .html-block {
  z-index: 10; }

#block-yui_3_17_2_1_1571943769586_5283 {
  position: relative;
  z-index: 0;
  top: -100px;
  left: 0%;
  margin-bottom: -100px !important; }

#welcome-copy .Index-page-content {
  padding-bottom: 40px !important;
  padding-top: 50px; }

#welcome-copy .spacer-block {
  height: 20px; }

#block-1d0e6253c48ca8c331cb h1, #block-1d0e6253c48ca8c331cb .h1, #block-1d0e6253c48ca8c331cb .h1--mini {
  font-size: 48px; }

#block-1d0e6253c48ca8c331cb h2, #block-1d0e6253c48ca8c331cb .h2 {
  font-size: 26px; }

#welcome-banner, #yui_3_17_2_1_1572076461403_103, #yui_3_17_2_1_1572076545244_104 {
  border-top: 2px solid #f7f7f7 !important;
  border-bottom: 2px solid #f7f7f7 !important; }

.cart_wrapper .cart_item_price i {
  display: none !important; }

.Site-inner {
  border-top: 2px solid #f7f7f7 !important;
  border-bottom: 2px solid #f7f7f7 !important; }

.BlogList--posts-full article .BlogList-item-title {
  display: none; }

.BlogList--posts-full {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }

.BlogList--posts-full article {
  min-width: 400px;
  margin: 0 40px; }

#welcome-banner .Index-page-content {
  padding-top: 10px;
  padding-bottom: 10px; }

#welcome-banner .sqs-layout > .sqs-row {
  display: flex !important;
  flex-direction: row;
  align-items: center; }

#yui_3_17_2_1_1572209817444_327 .sqs-block-button-element--small {
  padding: 13 28px !important; }

#yui_3_17_2_1_1572246919577_327 a {
  padding: 13px 28px !important; }

#welcome-banner .sqs-layout:not(.sqs-editing) .sqs-row .sqs-block:not(.float):not(.sqs-feature-gated-wrapper):first-child {
  padding-top: 4px; }

#block-1d0e6253c48ca8c331cb {
  padding-right: 0 !important; }

#welcome-banner .sqs-block-button .sqs-block-button-element--small {
  width: 100px !important; }

#timer-copy .Index-page-content {
  padding: 0 !important; }

#benefits-copy {
  background-color: #2d2d2d;
  color: #fff; }

#benefits-copy h1, #benefits-copy .h1, #benefits-copy .h1--mini, #benefits-copy h3, #benefits-copy .h3 {
  color: #fff; }

#yui_3_17_2_1_1572264493919_167 {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important; }

#welcome-banner .sqs-col-4 {
  max-width: 450px !important; }

#welcome-banner .sqs-row .sqs-col-12 {
  display: none; }

/*end of changes*/
#block-yui_3_17_2_1_1528085119147_9289 {
  border-left: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
  border-radius: 3px; }

#block-1b0338dc2a173fc0d973
h1, #block-1b0338dc2a173fc0d973
.h1, #block-1b0338dc2a173fc0d973
.h1--mini {
  background: #fff;
  padding-top: 2px;
  padding-bottom: 2px; }

/*Homepage Edits*/
#block-yui_3_17_2_1_1528229632906_4849 {
  margin-top: -3.5em; }

#block-yui_3_17_2_1_1543201318120_4739
h2, #block-yui_3_17_2_1_1543201318120_4739
.h2, #block-yui_3_17_2_1_1543201318120_9638 h3, #block-yui_3_17_2_1_1543201318120_9638 .h3, #block-yui_3_17_2_1_1543201318120_11200 h3, #block-yui_3_17_2_1_1543201318120_11200 .h3, #block-yui_3_17_2_1_1543201318120_12325 h3, #block-yui_3_17_2_1_1543201318120_12325 .h3, #block-yui_3_17_2_1_1543212899746_12173 p, #block-yui_3_17_2_1_1543250368074_17262 h3, #block-yui_3_17_2_1_1543250368074_17262 .h3, #block-yui_3_17_2_1_1543201318120_4739 h1, #block-yui_3_17_2_1_1543201318120_4739 .h1, #block-yui_3_17_2_1_1543201318120_4739 .h1--mini {
  color: #fff; }

#timer
.Index-page-content {
  padding-bottom: 0px;
  padding-top: 10px; }

#block-yui_3_17_2_1_1539572646259_3887 {
  text-align: center; }

#block-yui_3_17_2_2_1514570976077_14606 {
  margin-top: 4px; }

#block-yui_3_17_2_13_1514577807684_10067 {
  margin-top: -3px; }

#block-yui_3_17_2_1_1528229632906_10503
p {
  margin-top: -1em; }

/*END Homepage Edits*/
/*New Homepage 2018*/
#block-yui_3_17_2_1_1528260750570_6691 {
  padding-top: 1em !important; }

@media screen and (max-width: 768px) {
  #block-yui_3_17_2_1_1528229632906_10503
  p {
    font-size: 11px; }

  .choose-a-plan-padding {
    padding-top: 40px !important; } }
#slider
.Index-page-content {
  padding: 0px; }

#block-yui_3_17_2_1_1543196119441_10910 {
  min-height: 350px;
  border-bottom: 4px solid #2d2d2d; }

.sqs-block .sqs-intrinsic .sqs-intrinsic-content {
  min-height: 350px; }

.sqs-gallery-design-strip .sqs-wrapper {
  min-height: 350px; }

.sqs-gallery-design-strip {
  min-height: 350px;
  border-top: 1px solid #2d2d2d; }

.sqs-gallery-design-strip-slide {
  min-height: 350px;
  border: 2px solid #2d2d2d; }

.sqs-gallery-design-strip-slide {
  min-height: 350px; }

#block-yui_3_17_2_1_1543196119441_10910 {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0px;
  padding-bottom: 0px; }

#timer-2
.Index-page-content {
  padding-bottom: 0px;
  padding-top: 10px; }

#glovebox-media-2
.Index-page-content {
  padding-top: 0px; }

#our-partners-1
.Index-page-content {
  padding-bottom: 0px; }

#benefits {
  background-color: #2d2d2d; }

#our-plans-1 {
  background-color: #f4f5f6; }

#our-plans {
  background-color: #fafaf9; }

#block-yui_3_17_2_1_1543201318120_6488, #block-yui_3_17_2_1_1543201318120_7994, #block-yui_3_17_2_1_1543201318120_5617, #block-yui_3_17_2_1_1543250368074_12129 {
  margin-bottom: -1em; }

@media screen and (max-width: 700px) {
  #yui_3_17_2_1_1572162967316_7289 {
    text-align: center; }

  .Mobile-bar--top .Mobile-bar-branding img {
    width: 60px; }

  #yui_3_17_2_1_1572162967316_355, #yui_3_17_2_1_1572162967316_350 {
    display: none; }

  #yui_3_17_2_1_1572162967316_1060 {
    display: none; }

  #yui_3_17_2_1_1572162967316_7289 h1, #yui_3_17_2_1_1572162967316_7289 .h1, #yui_3_17_2_1_1572162967316_7289 .h1--mini {
    font-size: 26px; }

  #yui_3_17_2_1_1572162967316_7289 h2, #yui_3_17_2_1_1572162967316_7289 .h2 {
    font-size: 16px; }

  #block-cdbb0b3331d462a152a3 {
    display: none; }

  #yui_3_17_2_1_1572162967316_8151, #yui_3_17_2_1_1572162967316_8411 {
    width: 45% !important;
    font-size: 1em;
    float: right !important;
    margin-bottom: 15px; }

  #block-yui_3_17_2_1_1543201318120_6488, #block-yui_3_17_2_1_1543201318120_7994, #block-yui_3_17_2_1_1543201318120_5617, #block-yui_3_17_2_1_1543250368074_12129 {
    margin-bottom: -2.5em; } }
#block-yui_3_17_2_1_1543201318120_4739 {
  margin-top: -2.5em;
  margin-bottom: -2.5em; }

#block-yui_3_17_2_1_1543201318120_11200, #block-yui_3_17_2_1_1543201318120_12325, #block-yui_3_17_2_1_1543201318120_9638, #block-yui_3_17_2_1_1543250368074_17262 {
  margin-bottom: 3em; }

/*END New Homepage 2018*/
/*Gifts*/
#block-yui_3_17_2_1_1528084610113_6960, #block-yui_3_17_2_1_1528084610113_7996, #block-yui_3_17_2_1_1528084610113_10352, #block-yui_3_17_2_1_1528084366388_5493, #block-yui_3_17_2_1_1528084366388_6166, #block-yui_3_17_2_1_1528084366388_6713 {
  border: 10px solid #f7f7f7;
  border-radius: 3px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 55px;
  padding: 0px; }

#block-yui_3_17_2_1_1528084610113_10352
img {
  border-bottom: 1px solid #eee;
  margin-bottom: -1px !important; }

#block-yui_3_17_2_1_1528084366388_6713 img {
  border-bottom: 1px solid #eee;
  margin-bottom: -1px !important; }

/*END Gifts*/
/*Sitewide Edits*/
.sqs-block-summary-v2 .summary-heading {
  text-decoration: underline; }

.sqs-block-summary-v2 .summary-block-setting-text-size-extralarge .summary-title {
  font-family: bebas-neue;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0em;
  text-transform: none;
  line-height: 1em;
  font-size: 32px;
  color: #1d1d1d;
  pointer-events: none; }

.sqs-block-summary-v2 .summary-block-setting-text-size-extralarge .summary-excerpt p {
  font-family: Rubik;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0em;
  text-transform: none;
  line-height: 1.6em; }

.sqs-block-summary-v2 .summary-block-setting-text-size-extralarge .summary-title {
  margin-bottom: -15px; }

/*END Sitewide Eidts*/
/*Buttons*/
.product-block .buy-button, .product-block .sqs-add-to-cart-button-wrapper {
  padding-left: 10px;
  padding-right: 10px; }

.product-block .productDetails .product-title {
  padding-left: 10px;
  padding-right: 10px; }

.product-block .productDetails .product-price {
  padding-left: 10px;
  padding-right: 10px; }

.product-excerpt {
  padding-left: 10px;
  padding-right: 10px; }

.product-quantity-input {
  display: none; }

/*Dec-2019 redesign*/
#top-banner-new {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), no-repeat url(/cdn/shop/files/AMR-1_2_1.jpg?v=1582849509);
  color: #fff;
  background-size: cover; }

#top-banner-new h1, #top-banner-new .h1, #top-banner-new .h1--mini, #top-banner-new h2, #top-banner-new .h2 {
  color: #fff; }

.desk-header {
  display: flex;
  flex-direction: row; }

.desk-header-img {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 55%; }

.desk-header-img img {
  width: 90px; }

.desk-header-links {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 45%;
  text-align: right;
  justify-content: flex-end; }

.desk-header-menu {
  display: flex;
  padding-left: 0; }

.desk-header-logo {
  width: 40% !important; }

.desk-header-logo img {
  width: 90px;
  height: 90px; }

#collection-5a1d712d085229dccc14bfd5 .Header {
  position: absolute;
  top: 0px;
  z-index: 3;
  width: 100%;
  max-width: 1800px;
  background: transparent; }

.countdown-wrapper {
  padding-top: 100px; }

#collection-5a1d712d085229dccc14bfd5 .Header-branding-logo {
  width: 90px; }

#collection-5a1d712d085229dccc14bfd5 .Site-inner {
  border-top: 0 !important;
  background: #fff; }

.Header-nav-inner a {
  color: white !important; }

.desk-header-menu {
  text-transform: uppercase;
  font-size: 20px;
  font-family: bebas-neue; }

.desk-header-menu {
  list-style: none;
  display: flex;
  justify-content: space-around; }

.mobile-countdown {
  display: none; }

.desk-header-menu li {
  padding-right: 10px;
  letter-spacing: 0.075em;
  cursor: pointer; }

.desk-header-menu li:hover {
  color: #ccc; }

.desk-top-banner-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1500px; }

.desk-top-banner-block img {
  width: 400px;
  height: 100%; }

#countdown {
  text-align: left;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  color: white !important;
  position: absolute; }

.desk-top-banner-text {
  padding: 30px 0; }

.desk-header-h2 {
  text-transform: uppercase;
  font-family: bebas-neue;
  letter-spacing: 0.075em;
  font-size: 65px;
  line-height: 73px;
  padding-top: 20px;
  width: 80%; }

.desk-header-h2-sub {
  font-family: Rubik;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.05em;
  padding-bottom: 50px;
  width: 60%; }

.desk-banner-button-group {
  width: 100%;
  position: relative;
  display: flex; }

@media only screen and (max-width: 700px) {
  .desk-banner-button-group {
    display: block; } }
.button-group-box {
  overflow: hidden; }

.desk-banner-subscribe {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #D73F37;
  border: 2px solid #D8433B;
  margin: 10px;
  margin-left: 0px;
  text-transform: uppercase;
  padding: 11px 42px;
  box-sizing: border-box;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 1.5px;
  border-radius: 5px; }

.desk-banner-gift {
  display: block;
  position: relative;
  overflow: hidden;
  border: 2px solid #D8433B;
  box-sizing: border-box;
  margin: 10px;
  text-transform: uppercase;
  padding: 11px 55px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  letter-spacing: 1.5px;
  border-radius: 5px; }

.desk-banner-gift:hover {
  cursor: pointer;
  background: #D73F37; }

.desk-banner-subscribe:hover, .subscr-button:hover {
  background-color: transparent;
  border: 2px solid #D8433B;
  cursor: pointer;
  color: white !important; }

.desk-banner-gift:before, .desk-banner-subscribe:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #D73F37;
  opacity: 0;
  z-index: 1;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s; }

.desk-banner-gift:after, .desk-banner-subscribe:after {
  content: "";
  display: none;
  width: 20px;
  height: 300px;
  margin-left: 60px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.5) 20%, white 50%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0.2) 100%);
  position: absolute;
  left: -40px;
  top: -150px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
  -webkit-animation-delay: 0.01s;
  animation-delay: 0.01s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.desk-banner-gift:after {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

/*header-menu-hover*/
body:not(.tweak-header-primary-nav-hover-style-button).tweak-header-secondary-nav-inherit-styles .Header-nav--secondary .Header-nav-item {
  border: 2px solid transparent; }

body:not(.tweak-header-primary-nav-hover-style-button).tweak-header-secondary-nav-inherit-styles .Header-nav--secondary .Header-nav-item:hover {
  border: 2px solid #d73f37; }

/*header-menu-hover*/
body:not(.tweak-header-primary-nav-hover-style-button).tweak-header-secondary-nav-inherit-styles .Header-nav--secondary .Header-nav-item {
  margin: 0;
  padding: .618em; }

.subscr-wrapper {
  display: table;
  border-spacing: 35px;
  overflow: visible;
  box-sizing: border-box;
  max-width: 1500px;
  margin: 0 auto; }

.subscr-title {
  padding-bottom: 40px;
  text-align: center; }

.subscr-title-main {
  margin-bottom: 10px;
  margin-top: 20px; }

.subscr-plan-image1 {
  margin-top: -105px;
  display: inline-block;
  width: 275px;
  height: 205px;
  background-image: url("/cdn/shop/files/monthly-box.png?v=1664933375");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center; }

.subscr-plan-image2 {
  margin-top: -105px;
  display: inline-block;
  width: 275px;
  height: 205px;
  background-image: url("/cdn/shop/files/3month-subscription-v2_8314f06f-84e0-4375-a697-3b9d16e3a626.png?v=1664940830");
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: center; }

.subscr-plan-image3 {
  margin-top: -110px;
  display: inline-block;
  width: 275px;
  height: 206px;
  background-image: url("/cdn/shop/files/6_monther_6f871800-dcc2-452d-aa9e-4bfb70e71547.png?v=1664940831");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center; }

.subscr {
  background: no-repeat url("/cdn/shop/files/Rectangle_11.jpg?v=1582849457");
  position: relative;
  display: table-cell;
  text-align: center;
  background-size: cover;
  border-radius: 20px; }

.subscr-plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-position: 50% 0;
  text-align: center;
  color: #fff;
  padding-top: 0;
  max-width: 360px;
  margin: 0 auto;
  height: auto; }

.subscr-title-main {
  font-family: bebas-neue;
  font-size: 55px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  margin-bottom: 10px; }

.subscr-description {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: none;
  padding: 20px 0px 0px; }

.subscr-plan-name {
  text-transform: uppercase;
  font-family: bebas-neue;
  font-size: 58px;
  margin-top: -50px;
  margin-bottom: 22px;
  letter-spacing: 0.05em; }

.review-name {
  text-transform: uppercase;
  font-family: bebas-neue;
  font-size: 32px;
  margin-top: 22px;
  margin-bottom: 0px;
  letter-spacing: 0.05em; }

.subscr-plan-price {
  color: #D74139;
  text-transform: uppercase;
  font-family: bebas-neue;
  font-size: 32px;
  margin-top: -30px;
  margin-bottom: 22px;
  letter-spacing: 0.05em; }

.review-handle {
  color: #D74139;
  text-transform: uppercase;
  font-family: bebas-neue;
  font-size: 22px;
  margin-top: 0px;
  margin-bottom: 22px;
  letter-spacing: 0.05em; }

.subscr-plan-details {
  text-align: center;
  list-style: none;
  padding: 0 40px;
  margin-bottom: 10px; }

.subscr-plan-details li {
  padding-bottom: 6px;
  font-size: 20px;
  color: #e5e5e5; }

.subscr-plan-tick,
.subscr-plan-circle {
  padding-right: 10px; }

.subscr-plan-details2 {
  text-align: center;
  padding: 0 20px 0 20px;
  font-size: 14px;
  padding-bottom: 30px; }

.reviews-details2 {
  text-align: center;
  padding: 30px;
  font-size: 14px; }

.epmty {
  height: 50px; }

.subscr-plan-details2 > p > strong {
  font-weight: 500;
  color: #ffffff;
  padding-right: 5px; }

.plan-details2 span {
  opacity: 0.7; }

.subscr-button {
  background: #d73f37;
  margin: 0;
  border: 2px solid #d73f37;
  border-radius: 5px;
  padding: 11px 30px;
  cursor: pointer;
  text-transform: uppercase;
  width: 70%;
  font-weight: 700;
  font-family: 'Rubik',sans-serif;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 30px;
  margin-bottom: 40px;
  margin: 0 auto;
  letter-spacing: 1.5px;
  color: white; }

.subscr-button-drop {
  background: #d73f37;
  margin: 0;
  border: 2px solid #d73f37;
  border-radius: 5px;
  padding: 11px 30px;
  cursor: pointer;
  text-transform: uppercase;
  width: 70%;
  font-weight: 700;
  font-family: 'Rubik',sans-serif;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 30px;
  margin-bottom: 40px;
  margin: 0 auto;
  letter-spacing: 1.5px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: white;
  border: 2px solid #D8433B;
  margin: 10px;
  margin-left: 0;
  text-transform: uppercase;
  padding: 11px 42px;
  box-sizing: border-box;
  letter-spacing: 1.5px;
  color: #1c1c1c; }

 /* .subscr-button:hover:before, .subscr-button:focus:before, .subscr-button:active:before {
    opacity: 1;
    }
  .subscr-button:hover{
  text-shadow: 2px 2px 2px rgba(15, 15, 15, 1);
  box-shadow: inset 0px 0px 15px 2px
rgba(0,0,0,0.75);
border-radius: 4px;}
  .subscr-button:before {
    content: '';
    position: absolute;
    border: #9f2620 solid 1px;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}*/
.plans-row {
  display: table-row; }

/*dropdow menu*/
.dropbtn {
  background-color: white;
  color: #1c1c1c;
  padding: 11px 30px;
  width: 100%;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: solid 2px #D73F37;
  border-radius: 5px;
  font-family: 'Rubik',sans-serif;
  letter-spacing: 1.5px; }

.dropdown {
  position: relative;
  display: inline-block; }

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  width: 80%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Rubik',sans-serif;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 30px;
  margin: 0 auto;
  letter-spacing: 1px;
  overflow: hidden;
  background-color: white;
  border: 2px solid #D8433B;
  padding: 5px 5px;
  box-sizing: border-box;
  letter-spacing: 1px;
  color: #1c1c1c; }

.dropdown-content a {
  color: #1c1c1c;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: 'Rubik',sans-serif;
  font-size: 12px; }

.dropdown-content a:hover {
  background-color: #f1f1f1; }

.dropdown:hover .dropdown-content {
  display: block; }

.dropdown:hover .dropbtn {
  background-color: #f1f1f1; }

/*plans end*/
/*three steps*/
.desk-three-steps {
  background: no-repeat url("/cdn/shop/files/how-it-works-desk_1.png?v=1582849355");
  background-size: 90%;
  background-position-x: 50%;
  min-height: 100px;
  display: flex;
  position: relative;
  list-style: none;
  justify-content: space-between;
  text-transform: capitalize;
  text-align: center;
  padding-top: 130px;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 0; }

.desk-three-steps li {
  width: 220px;
  list-style: none; }

.desk-how-it-works {
  text-align: center; }

.desk-how-it-works p {
  font-size: 14px;
  padding-bottom: 30px; }

.desk-how-it-works h2, .desk-how-it-works .h2 {
  padding-top: 30px;
  font-family: bebas-neue;
  font-size: 55px;
  line-height: 55px;
  text-align: center;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  font-weight: 400; }

.newsletter-block .newsletter-form-button-wrapper {
  width: 100%; }

.newsletter-block .newsletter-form-header-title {
  margin: 0px 0 17px 0; }

.sqs-alternate-block-style-container .newsletter-block .newsletter-form-wrapper .newsletter-form-button {
  width: 100%;
  background: #d73f37;
  border: 2px solid transparent !important;
  color: #fff; }

.sqs-alternate-block-style-container .newsletter-block .newsletter-form-wrapper .newsletter-form-button:hover {
  background-color: transparent;
  border: 2px solid #d8433b !important;
  cursor: pointer;
  color: #fff; }

.newsletter-form-field-wrapper input {
  background: transparent !important;
  border: 0;
  border-bottom: 1px solid #fff;
  color: white !important; }

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: gray;
  opacity: 1;
  /* Firefox */ }

.sqs-alternate-block-style-container .newsletter-block .newsletter-form-wrapper .newsletter-form-field-element {
  border: 0;
  border-bottom: 1px solid white !important;
  color: #fff; }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white !important; }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white !important; }

.desk-what-say {
  padding: 0 10px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  height: auto; }

.desk-what-title {
  padding-top: 40px;
  width: 400px;
  margin: 0 auto;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-family: bebas-neue;
  font-size: 55px;
  line-height: 45px; }

.desk-what-stars {
  text-align: left; }

.desk-what-text {
  text-align: left;
  padding: 10px; }

#5de5834f483f966c5c7be659.Index-page-content {
  padding-bottom: 0; }

#desk-reviews-slider {
  width: 100%;
  justify-content: space-between;
  position: relative;
  max-width: 1100px;
  height: 280px;
  padding-top: 60px;
  margin: 0 auto; }

#desk-slide-next {
  position: absolute;
  right: 47%;
  top: 120px;
  cursor: pointer; }

#desk-slide-prev {
  position: absolute;
  left: 47%;
  top: 120px;
  cursor: pointer; }

.desk-what-text {
  position: absolute;
  width: 97%;
  height: 100%;
  left: 15px;
  display: none; }

#desk-reviews-slider .active {
  display: flex;
  justify-content: space-between; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }

  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

#desk-how-it-works, #desk-reviews, #video-block {
  background-color: #FFFFFF; }

.why-us {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 40px; }

.why-us-title {
  padding-top: 30px;
  padding-bottom: 40px;
  text-transform: uppercase;
  font-family: bebas-neue;
  font-size: 55px;
  font-weight: 400; }

.why-us-text {
  list-style: none;
  text-align: left;
  font-size: 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center; }

.why-us-text li {
  display: flex;
  padding-bottom: 10px;
  padding-right: 5px;
  width: 250px; }

.why-us-text li img {
  padding-top: 15px;
  width: 70px; }

.why-us-text li p {
  padding-left: 15px;
  text-transform: capitalize;
  padding-right: 20px;
  line-height: 18px;
  width: 180px; }

.why-us-text li p span {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding-bottom: 4px; }

.reviews-slide-wrap {
  width: 27%;
  max-width: 300px;
  padding-right: 40px;
  float: left; }

.mobile-what-say {
  display: none; }

footer {
  background: no-repeat url("/cdn/shop/files/Rectangle_17.jpg?v=1582849551");
  background-size: cover;
  background-position-x: 50%;
  color: white !important;
  padding-top: 20px;
  overflow: hidden; }

footer .Index-page-content {
  padding-bottom: 0; }

#yui_3_17_2_1_1575304929156_1160, #yui_3_17_2_1_1575301938016_1480 {
  margin: 0 auto;
  text-align: center; }

.tweak-footer-layout-stacked .Footer-blocks--middle {
  padding: 0 !important; }

#block-yui_3_17_2_41_1501990910149_1732 {
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.tweak-footer-layout-stacked .Footer-blocks--bottom {
  padding: 0 !important; }

.tweak-footer-layout-stacked .Footer-nav {
  padding: 0 !important; }

.tweak-footer-layout-stacked .Footer-blocks--top {
  padding: 0 !important; }

.newsletter-form-field-element {
  background: transparent !important;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font-size: 16px;
  border-radius: 0; }

.newsletter-block .newsletter-form-field-wrapper {
  width: 100% !important; }

footer h2, footer .h2 {
  color: #ffffff;
  letter-spacing: 0.035em; }

footer .sqs-block-content {
  text-align: center;
  overflow: hidden; }

footer form {
  width: 310px !important; }

#block-yui_3_17_2_1_1575301475428_50647 {
  padding: 0; }

#block-yui_3_17_2_1_1575301475428_50647 h3, #block-yui_3_17_2_1_1575301475428_50647 .h3 {
  color: #fff; }

footer .Footer-nav-group {
  margin-bottom: 10px; }

footer form {
  width: 330px;
  margin: 0 auto;
  margin-bottom: 10px;
  text-align: center; }

footer form input {
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font-size: 16px;
  border-radius: 0; }

footer form .form-item {
  margin-bottom: 5px; }

footer form .form-button-wrapper {
  background: #D73F37;
  cursor: pointer; }

footer form .button {
  border: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

#desk-footer form input:hover {
  color: #fff; }

footer form .form-button-wrapper:hover {
  text-shadow: 2px 2px 2px #0f0f0f;
  box-shadow: inset 0px 0px 15px 2px rgba(0, 0, 0, 0.75);
  border-radius: 4px; }

footer form label {
  display: none; }

#email-yui_3_17_2_1_1575236677774_5064-field {
  margin-bottom: 10px; }

#collection-5de2d206c573c502d7dd00d8 header, #collection-5de2d206c573c502d7dd00d8 footer {
  display: none; }

@media (max-width: 1200px) {
  .desk-banner-gift {
    padding: 11px 40px; }

  .desk-banner-subscribe {
    padding: 11px 30px; }

  .subscr-plan-details2 {
    padding: 0 10px 50px 20px; }

  .reviews-details2 {
    padding: 20px; }

  .subscr-plan-details {
    padding: 0 0 0 10px; }

  .desk-banner-button-group {
    font-size: 16px; }

  .desk-top-banner-block img {
    width: 300px; }

  .desk-header-h2 {
    font-size: 50px;
    line-height: 55px;
    width: 100%; }

  .countdown-wrapper {
    padding-top: 120px; }

  .desk-header-h2-sub {
    font-size: 20px;
    line-height: 22px;
    width: 80%; } }
@-webkit-keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px; }

  5% {
    left: 110%;
    margin-left: 80px; }

  100% {
    left: 110%;
    margin-left: 80px; } }

@media (max-width: 1200px) {
  .desk-banner-gift {
    padding: 11px 40px; }

  .desk-banner-subscribe {
    padding: 11px 30px; }

  .subscr-plan-details2 {
    padding: 0 10px 50px 20px; }

  .reviews-details2 {
    padding: 20px; }

  .subscr-plan-details {
    padding: 0 0 0 10px; }

  .desk-banner-button-group {
    font-size: 15px; }

  .desk-top-banner-block img {
    width: 300px; }

  .desk-header-h2 {
    font-size: 50px;
    line-height: 55px;
    width: 100%; }

  .desk-header-h2-sub {
    font-size: 20px;
    line-height: 22px;
    width: 80%; } }
@media (max-width: 960px) {
  .Index-page-content {
    padding-left: 18px;
    padding-right: 18px; }

  #block-yui_3_17_2_1_1575148482957_5741 {
    width: 100%; }

  .subscr-wrapper .subscr3 {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 20px; }

  .desk-how-it-works {
    font-size: 14px; }

  .desk-three-steps li {
    width: 190px; }

  .why-us-text {
    flex-wrap: wrap;
    justify-content: space-around; }

  #desk-slide-prev img, #desk-slide-next img {
    max-width: 150%;
    width: 150%; } }
@media (max-width: 800px) {
  .emphasized-title {
    font-size: 30px; }

  #collection-5a1d712d085229dccc14bfd5 .Header {
    top: 60px;
    z-index: 3;
    width: 100%;
    max-width: 1800px;
    background: transparent; }

  #top-banner-new h6, #top-banner-new .h6 {
    padding-bottom: 0; }

  .subscr {
    margin-right: 0; }

  .plans-row {
    display: flex;
    flex-direction: column; }

  .desk-three-steps {
    background: no-repeat url("/cdn/shop/files/AI_Image.png?v=1582849607");
    flex-direction: column;
    background-position-x: 50%; }

  .desk-three-steps li {
    width: 220px;
    margin: 0 auto; }

  .three-steps-1 {
    padding-top: 30px;
    padding-bottom: 50px; }

  .three-steps-2 {
    padding-top: 130px; }

  .three-steps-3 {
    padding-top: 180px;
    padding-bottom: 30px; }

  .mobile-what-say {
    display: block; }

  .desk-what-say {
    display: none; }

  .mobile-what-say {
    padding: 0 10px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    height: auto; }

  .mobile-what-title {
    padding-top: 30px;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-family: bebas-neue;
    font-size: 55px;
    line-height: 110%; }

  .mobile-what-stars {
    text-align: left; }

  .mobile-what-text {
    text-align: left;
    padding: 10px; }

  #reviews-slider {
    position: relative;
    width: 100%;
    height: 280px;
    padding-top: 45px; }

  #mob-slide-next {
    position: absolute;
    right: 45%;
    top: 100px;
    cursor: pointer; }

  #mob-slide-prev {
    position: absolute;
    left: 45%;
    top: 100px;
    cursor: pointer; }

  .mobile-what-text {
    position: absolute;
    width: 85%;
    height: 100%;
    left: 15px;
    display: none; }

  #reviews-slider .active {
    display: block; }

  #collection-5a1d712d085229dccc14bfd5 .Mobile {
    position: relative;
    top: 65px;
    z-index: 100; }

  .ancillary-mobile-bar-branding-position-top-left .Mobile-bar--top {
    background: transparent !important; }

  #top-banner-new {
    margin-top: -100px;
    text-align: center; }

  .desk-top-banner-block {
    flex-direction: column; }

  .desk-top-banner-text {
    text-align: center;
    padding-top: 5px; }

  .desk-header-h2-sub {
    width: 100%; }

  .desk-banner-button-group {
    justify-content: center; }

  .subscr-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

  .subscr {
    margin-bottom: 150px; } }
#collection-5ddb9475ee3ebb607af8fd01 header, #collection-5ddb9475ee3ebb607af8fd01 footer, #collection-5ddb9475ee3ebb607af8fd01 .sqs-surrounding-overlay, #collection-5ddb9475ee3ebb607af8fd01 .Mobile-bar {
  display: none; }

#collection-5ddb9475ee3ebb607af8fd01 .Main-content, #collection-5ddb9475ee3ebb607af8fd01 .code-block {
  padding: 0; }

/*Dec-2019 end of redesign*/
@media screen and (max-width: 1296px) {
  .test-component {
    min-height: 350px !important; } }
@media screen and (min-width: 1101px) {
  .product-excerpt {
    height: 150px; } }
@media screen and (max-width: 1100px) {
  .test-component {
    padding: 1rem 0.5rem; }

  .box {
    width: 10% !important;
    margin: 0 auto; }

  .box-desktop {
    width: 100% !important;
    margin: 0 auto; } }
@media screen and (max-width: 1100px) and (min-width: 700px) {
  .featured-content {
    height: 250px;
    padding: 30px; }

  .emphasized-title {
    font-size: 50px;
    padding-bottom: 20px; }

  .emphasized-subtitle {
    padding: 10px 120px !important;
    font-size: 15px !important;
    margin: 0 0 12px !important; }

  .desk-header-img {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%; }

  .desk-header-links {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 70%;
    text-align: right;
    justify-content: space-between; }

  #block-5db1d4ad9ed632592dea8243, #page-5db1d4ad9ed632592dea8242 {
    width: 100%;
    float: left;
    font-size: 16px; }

  #new-page a {
    font-size: 16px; }

  #yui_3_17_2_1_1572170269286_4099 .col,
  #welcome-banner .sqs-col-6, #welcome-banner .sqs-col-2 {
    width: 40%;
    font-size: 1em;
    float: right; }

  #yui_3_17_2_1_1572265339037_168.sqs-col-8.sqs-row {
    display: flex;
    justify-content: center; }

  .sqs-block-button .sqs-block-button-element--small {
    padding: 13px !important; }

  #yui_3_17_2_1_1572170269286_4100 h1, #yui_3_17_2_1_1572170269286_4100 .h1, #yui_3_17_2_1_1572170269286_4100 .h1--mini, #welcome-banner h1, #welcome-banner .h1, #welcome-banner .h1--mini {
    font-size: 36px;
    text-align: center; }

  #yui_3_17_2_1_1572170269286_4100 h2, #yui_3_17_2_1_1572170269286_4100 .h2, #welcome-banner h2, #welcome-banner .h2 {
    font-size: 22px;
    text-align: center; }

  #yui_3_17_2_1_1572170269286_376, #yui_3_17_2_1_1572175170483_167 {
    margin-top: 30px !important; }

  .product-excerpt {
    height: 235px; } }
.product-block .sqs-add-to-cart-button {
  font-size: 15px; }

body:not(.button-style-default).button-style-solid .sqs-editable-button:hover, body:not(.button-style-default).button-style-solid .sqs-editable-button-style:hover {
  background-color: #fff;
  color: #141414;
  border: 1px solid #141414; }

body:not(.button-style-default).button-style-solid .sqs-editable-button, body:not(.button-style-default).button-style-solid .sqs-editable-button-style {
  border: 1px solid #141414;
  font-weight: 500; }

.small-button-style-solid .sqs-block-button .sqs-block-button-element--small:hover, .medium-button-style-solid .sqs-block-button .sqs-block-button-element--medium:hover, .large-button-style-solid .sqs-block-button .sqs-block-button-element--large:hover {
  background-color: #fff;
  color: #141414;
  border: 1px solid #141414; }

.small-button-style-solid .sqs-block-button .sqs-block-button-element--small, .medium-button-style-solid .sqs-block-button .sqs-block-button-element--medium, .large-button-style-solid .sqs-block-button .sqs-block-button-element--large {
  border: 1px solid #141414; }

body:not(.button-style-default) .sqs-editable-button, body:not(.button-style-default) .sqs-editable-button-layout {
  padding: 13px 26px; }

/*END Buttons*/
/* Timer*/
.flip-clock-wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }

.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc; }

.flip-clock-wrapper a:hover {
  color: #fff; }

.flip-clock-wrapper ul {
  list-style: none; }

.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table; }

.flip-clock-wrapper.clearfix:after {
  clear: both; }

.flip-clock-wrapper.clearfix {
  *zoom: 1; }

/* Main */
.flip-clock-wrapper {
  font-size: 11px;
  -webkit-user-select: none; }

.flip-clock-meridium {
  background: none !important;
  box-shadow: 0 0 0 !important;
  font-size: 25px !important; }

@media screen and (max-width: 767px) {
  .test-component {
    min-height: 250px !important;
    margin: 0 !important; }

  .box-desktop {
    width: 100% !important; } }
@media screen and (max-width: 700px) {
  .featured-content {
    padding: 20px;
    height: 200px; }

  .emphasized-subtitle {
    font-size: 15px; }

  .ancillary-mobile-bar-branding-position-top-left [data-nc-base="mobile-bar"] [data-nc-container="top-left"][data-nc-container] {
    justify-content: flex-end;
    flex-basis: 65%; }

  .ancillary-mobile-bar-search-icon-position-top-right [data-nc-base="mobile-bar"] [data-nc-container="top-right"][data-nc-container], .ancillary-mobile-bar-menu-icon-position-top-right [data-nc-base="mobile-bar"] [data-nc-container="top-right"][data-nc-container] {
    flex-basis: 35%; }

  .Mobile-bar--top .Mobile-bar-branding img {
    width: 90px; }

  /*.mobile-countdown{display:none;}
  .countdown-wrapper{display:none}*/
  .countdown-wrapper {
    padding-top: 0px; }

  .desk-header {
    display: none; }

  #welcome-banner .sqs-col-8 .sqs-row {
    display: none; }

  #welcome-banner .sqs-col-8, #welcome-banner .sqs-block-html {
    padding-bottom: 0 !important; }

  #welcome-banner .sqs-row .sqs-col-12 {
    display: block;
    margin-top: 12px; }

  #welcome-banner .sqs-layout > .sqs-row {
    display: flex !important;
    flex-direction: column;
    justify-content: center; }

  .sqs-block-button .sqs-block-button-element--small {
    padding: 13px !important; }

  #new-page {
    display: none; }

  #yui_3_17_2_1_1572170269286_4099 .col, #welcome-banner .sqs-col-2, #welcome-banner .sqs-col-6 {
    width: 40% !important;
    font-size: 1em;
    float: right !important;
    margin-right: 27px; }

  #yui_3_17_2_1_1572170269286_4100 h1, #yui_3_17_2_1_1572170269286_4100 .h1, #yui_3_17_2_1_1572170269286_4100 .h1--mini, #welcome-banner h1, #welcome-banner .h1, #welcome-banner .h1--mini {
    font-size: 34px;
    text-align: center; }

  #yui_3_17_2_1_1572170269286_4100 h2, #yui_3_17_2_1_1572170269286_4100 .h2, #welcome-banner h2, #welcome-banner .h2 {
    font-size: 20px;
    text-align: center; }

  #yui_3_17_2_1_1572170269286_4345, #block-7bcd8df908b3287b39dd {
    display: none; }

  #welcome-banner .sqs-col-4 {
    width: 320px !important;
    margin: 0auto; }

  .flip-clock-meridium {
    font-size: 12px !important; } }
.flip-clock-meridium a {
  color: #fff; }

.flip-clock-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  vertical-align: middle; }

.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.flip-clock-wrapper:after {
  clear: both; }

.bestSellerLogo::before {
  content: url(/cdn/shop/files/best-seller-large_303ee0ab-526a-4e6b-8fa7-02fb1e17574b.png?v=1664936205);
  position: absolute;
  left: -615px;
  top: -610px;
  z-index: 3;
  transform: scale(0.05); }

.bestGiftLogo::before {
  content: url(/cdn/shop/files/best-gift-large.png?v=1664939928);
  position: absolute;
  left: -615px;
  top: -610px;
  z-index: 3;
  transform: scale(0.05); }

.bestValueLogo::before {
  content: url(/cdn/shop/files/best-value-large.png?v=1664936205);
  position: absolute;
  left: -615px;
  top: -610px;
  z-index: 3;
  transform: scale(0.05); }

.pricing {
  color: #D74139; }

.blackb:hover {
  color: black !important; }

.product-single__title {
  font-family: bebas-neue;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0em;
  text-transform: none;
  line-height: 1em;
  font-size: 52px;
  color: #1d1d1d;
  pointer-events: none; }

.product-single__price {
  font-family: bebas-neue;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0em;
  text-transform: none;
  line-height: 1em;
  font-size: 32px;
  color: red;
  pointer-events: none; }

.section-block--padding {
  padding: 0; }

.grid__item {
  margin: 0; }

.main-content {
  margin: 0;
  padding: 0; }

#shopify-section-header {
  position: absolute;
  item-align: center;
  width: 100%; }

#shopify-section-header {
  z-index: 1; }

.page-container {
  z-index: 0; }

.desk-header-h2 {
  min-width: 350px; }

.seeall {
  min-width: 230px; }

.site-footer__section {
  text-align: center; }

.subscr-wrapper {
  padding: 20px; }

.custom-nav {
  background-color: black;
  background-image: url("/cdn/shop/files/Untitled-7-01_81d4fc44-1cae-4250-b6dc-de8a245cc4c8.png?v=1588798799");
  background-position: center;
  background-size: cover;
  height: 120px;
  margin-top: -120px;
  position: initial !important;
  z-index: 1; }

@media only screen and (max-width: 750px) {
  .product__photo-wrapper img {
    margin: 0 auto;
    width: 90%; }

  .page-width {
    /* padding-top: 40px !important; */ } }
.video-size {
  width: 60%; }

@media only screen and (max-width: 750px) {
  .video-size {
    width: 80%; } }
@media only screen and (max-width: 750px) {
  .center-mob {
    text-align: center; } }
@media only screen and (max-width: 800px) {
  .emphasized-subtitle {
    padding: 10px 50px !important; }

  .subscr-rev {
    margin-bottom: 50px !important; } }
.sellify-countdown-timer-holder.position-custom {
  margin: 0px !important; }

@media only screen and (max-width: 800px) {
  .klaviyo-form-PfYZuZ {
    padding-left: 30px; } }
@media only screen and (max-width: 800px) {
  #countdown {
    text-align: center;
    margin-bottom: 0px; } }
.space-head {
  display: none; }

@media only screen and (max-width: 800px) {
  .space-head {
    display: block;
    height: 50px; } }
@media only screen and (max-width: 800px) {
  .desk-banner-subscribe {
    margin-left: 10px; } }
@media screen and (max-width: 620px) {
  .test-component {
    min-height: 300px !important; } }
.custom-h1 {
  text-align: center;
  font-family: bebas-neue;
  font-size: 3.25em;
  letter-spacing: 0px; }

.section-header__title {
  font-family: bebas-neue;
  font-size: 3.25em;
  letter-spacing: 0px; }

.pcom {
  display: block; }

.productcompare-31529122889762 .productcompare-31529122922530 {
  display: block !important;
  padding-top: 10px; }

.comppri {
  color: black;
  font-size: 22px; }

.logintitle {
  font-family: bebas-neue;
  font-size: 3.25em;
  letter-spacing: 0px; }

.prodrec {
  font-family: bebas-neue;
  font-size: 2.25em;
  letter-spacing: 0px; }

.shopcart {
  font-family: bebas-neue;
  font-size: 3.25em;
  letter-spacing: 0px; }

.removebtn {
  color: grey;
  font-size: 12px; }

.btn-red {
  border: 3px solid #D73F37;
  border-radius: 3px;
  color: black;
  background-color: white; }

.btn-red:hover {
  border-radius: 3px;
  background-color: #D73F37; }

.wlo_logo {
  background-position: 50% !important;
  height: 100px !important; }

@media screen and (max-width: 585px) {
  .featured-content {
    height: 220px !important; }

  .emphasized-title--large {
    font-size: 30px; }

  .emphasized-subtitle {
    font-size: 13px;
    padding: 10px 0 !important; }

  .box-desktop {
    width: 100% !important; } }
@media screen and (max-width: 470px) {
  .wlo_logo {
    left: 10% !important; }

  .test-component {
    padding: 1rem 0.3rem !important; } }
@media screen and (min-width: 375px) {
  .test-component {
    max-height: 380px !important; }
    .test-component .test-content p {
      font-size: 14px; } }
#rc_container {
  display: none !important; }

#AddToCartForm-product-template #rc_container {
  display: none !important; }

.product-single__price--compare {
  background: linear-gradient(to top, transparent 47.75%, currentColor 49.5%, currentColor 50.5%, transparent 52.25%); }

.ourpartners:hover {
  color: #D73F37; }

.giftbox {
  color: white;
  text-align: center;
  font-size: 0.8125em; }

.giftbox:hover {
  color: black !important; }

.once-image {
  display: none !important; }

.swatch-value-container.swatch-selected .swatch-value {
  border-color: lightgreen !important;
  border: 2px solid; }

.swatch-value-container {
  padding: 5px 3px 0 0 !important; }

@media only screen and (max-width: 749px) {
  .product-single__info-wrapper {
    padding: 0px !important; }

  .mw-product-options {
    width: 100vw !important; }

  .mw-options-container {
    width: 100vw !important; }

  .swatch-value-container .swatch-value {
    width: 18vw !important; } }
.swatch-value-container.swatch-selected .swatch-value {
  transform: scale(1.05) !important; }

@media only screen and (max-width: 749px) {
  .qtip-content:before {
    text-align: right !important;
    content: "X";
    margin-left: 90%;
    font-weight: bold;
    color: black;
    border: 1px solid;
    padding: 1px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 40px;
    position: relative;
    z-index: 999999; } }
.option-cart-title-content {
  display: none !important; }

.option-cart-title {
  display: none !important; }

.option-cart-title-content-byob {
  display: contents !important; }

.option-cart-title-byob {
  display: contents !important; }

.cart-table {
  margin-bottom: 10px; }

.past-boxes-slider, h2, .h2, h3, .h3 {
  text-align: center; }

.videoproduct4418717351970 {
  display: block !important;
  padding: 0 !important; }

.videoproduct24418717450274 {
  display: block !important; }

.videoprod {
  width: 56vw;
  height: 32vw; }

.tiktok-video {
  display: none; }

.p-hide-mobile {
  display: none; }

.faq-mobile {
  display: none; }

.faq-desktop {
  display: block; }

@media only screen and (max-width: 800px) {
  .past-boxes-container {
    margin-bottom: 100px; }

  .past-box-content {
    padding: 0 15px; }

  .past-boxes-slider p {
    font-size: 15px; }

  .mobile-slider h2, .mobile-slider .h2 {
    font-size: 25px !important; }

  .videoprod {
    width: 66vw;
    height: 42vw; } }
.shopify-challenge__container {
  padding-top: 150px;
  background-color: #efefef;
  margin-bottom: -60px !important;
  padding-bottom: 60px; }

.page-width {
  padding-top: 120px; }

.site-header__upper {
  margin-top: -100px; }

.site-header__upper.page-width {
  margin-bottom: -30px !important;
  margin-top: -50px; }

.grid.grid--table {
  padding-top: 30px;
  padding-top: 20px; }

.recharge.page__customers__subscriptions {
  padding-top: 10px; }

@media only screen and (max-width: 768px) {
  .rc_layout__content {
    padding-top: 30px; }

  .rc_customer__name {
    text-align: center; }

  .rc_header-settings__title.rc_title-bar__title {
    text-align: center; }

  .purchase-address {
    text-align: center; } }
.rc_header-settings.rc_header-settings--seamless.rc_title-bar {
  padding-bottom: 20px; }

td {
  border: 1px solid black !important; }

.rc_button--fa-plus-circle:before {
  padding-right: 5px; }

.edit_address_link {
  color: #e3443a;
  font-size: 14px; }

.rc_layout__container {
  padding-top: 150px; }

.recharge hr {
  display: none; }

.rc_menu__item {
  list-style: none;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
  transition: all 250ms; }

.rc_active.active {
  color: #e3443a; }

.rc_menu__item:hover {
  font-size: 18px;
  font-size-adjust: 20px; }

.edit-item-link {
  color: #e3443a; }

.recharge .table th {
  text-align: left;
  background-color: #1d1d1d;
  color: white;
  border: 1px solid white !important; }

.rc_button.rc_button--link.rc_button--primary.rc_button--fa-plus-circle {
  background-color: #e3443a;
  color: white;
  margin-top: 15px;
  padding: 9px; }

.page-width.notification__inner.notification__inner--has-link {
  padding-top: 0px; }

.mobile-hide {
  position: relative; }

.desktop-hide {
  position: relative; }

@media (min-width: 320px) and (max-width: 801px) {
  .desktop-hide {
    display: none; } }
@media (min-width: 802px) {
  .mobile-hide {
    display: none; } }
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #fff;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  border-top: 1px solid #d6d6d6;
  outline: none;
  transition: 0.4s; }

.accordion:after {
  content: '\FF0B';
  /* Unicode character for "plus" sign (+) */
  font-size: 20px;
  color: #777;
  float: right;
  margin-left: 5px; }

.active:after {
  content: "\FF0D";
  /* Unicode character for "minus" sign (-) */ }

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out; }

.hero-content__title {
  background-color: white;
  color: black; }

.hero-content__controls .icon {
  position: relative;
  width: 20px;
  height: 20px;
  fill: white;
  top: -1px;
  background-color: black; }

.hero__image {
  object-fit: contain !important; }

.hero-content__controls-item.hero-content__controls-item--count {
  display: none; }

.hero__image-content {
  height: inherit;
  max-width: 1000px;
  margin: auto; }

.testimonial-reel {
  margin-bottom: 4rem !important;
  margin-top: 4rem; }
  .testimonial-reel .box {
    position: relative;
    margin-bottom: 30px; }
    .testimonial-reel .box .image {
      margin: 0 auto -45px;
      text-align: center; }
      .testimonial-reel .box .image img {
        height: 130px;
        margin: 0 auto; }
    .testimonial-reel .box .test-component {
      background-color: #fff;
      padding: 1rem 1rem;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      min-height: 300px; }
    @media screen and (max-width: 1023px) {
      .testimonial-reel .box .test-component {
        margin: auto 9rem;
        min-height: 250px !important; } }
    .testimonial-reel .box .test-title {
      font-family: "Open Sans", sans-serif;
      color: #f96d02;
      text-align: center;
      margin-top: 2rem;
      margin-bottom: 15px; }
    .testimonial-reel .box .test-content {
      text-align: center; }
  .testimonial-reel .slick-slide {
    opacity: 0.3;
    transition: opacity 0.3s;
    padding-left: 1rem;
    padding-right: 1rem; }
    .testimonial-reel .slick-slide.slick-cloned {
      opacity: 0.3;
      transition: opacity 0.3s; }
    .testimonial-reel .slick-slide.slick-current.slick-active {
      opacity: 1;
      transition: opacity 0.3s; }

.img-fluid.rounded-circle {
  width: auto !important;
  height: auto !important; }

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick-icons, sans-serif";
  font-size: 25px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75; }

@media (max-width: 801px) {
  .testimonial-reel {
    margin-top: 0rem; } }
@media (min-width: 801px) {
  .testimonial-reel {
    margin-top: 0rem; } }
.hero-content__controls-item.hero-content__controls-item--pause {
  display: none; }

.hero-content__controls .icon {
  position: relative;
  width: 40px;
  height: 50px;
  fill: black;
  top: -1px;
  background-color: transparent; }

@media (min-width: 801px) {
  .slider-desktop-left {
    position: absolute;
    left: 9%;
    bottom: 10%; }

  .slider-desktop-right {
    position: absolute;
    right: 10%;
    bottom: 10%; } }
@media (max-width: 801px) {
  .slider-desktop-left {
    position: absolute;
    top: 0px; }

  .slider-desktop-right {
    position: absolute;
    right: 0px;
    top: 0px; } }
.subscr-title-main {
  line-height: normal; }

@media (max-width: 801px) {
  .desktop-position {
    margin-top: 100px; }

  .subscr-wrapper {
    border-spacing: 0px !important; }

  .move-mobile {
    margin-top: 150px !important; }

  .img-fluid.rounded-circle {
    height: auto !important; }

  .second-section {
    margin-top: 120px; } }
.product-single__price--compare {
  color: #000000; }

button:focus {
  outline: none; }

#shopify-section-1592834689982 .hero .slick-dots li.slick-active button:before {
  background-color: #000000;
  border-color: #000000;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 5px 0 0 4px; }

.testimonial-reel .box .image {
  max-width: 20%;
  padding-bottom: 15px; }

#shopify-section-1592834689982 .hero .slick-list, .hero .slick-track {
  height: 94%; }

@media (min-width: 768px) and (max-width: 1199px) {
  .testimonial-reel .box .image {
    max-width: 30%;
    padding-bottom: 15px; } }
@media (max-width: 575px) {
  .featured-content {
    height: 130px; }

  .testimonial-reel .box .image {
    max-width: 30%;
    padding-bottom: 0; }

  .videoprod {
    display: none; }

  .p-hide-desktop {
    display: none; }

  .p-hide-mobile {
    display: block; }

  .tiktok-video {
    display: block;
    width: 90vw; }

  .faq-desktop {
    display: none; }

  .faq-mobile {
    display: block; } }
@media (max-width: 801px) {
  #shopify-section-1592834689982 .slider-desktop-left {
    position: absolute;
    top: -50px; }

  #shopify-section-1592834689982 .slider-desktop-right {
    position: absolute;
    right: 0px;
    top: -50px; } }
@media (max-width: 768px) {
  .site-header__upper {
    padding-bottom: 0 !important; } }
@media (max-width: 600px) {
  .featured-content {
    height: 220px; } }
.dropdown-content {
  padding: 5px 0; }
