/*================ VARIABLES ================*/
/*============================================================================
  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, $large-up);
    - Default is no push classes
==============================================================================*/
/*================ Color Variables ================*/
/*================ Sizing Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ Drawers ================*/
/*================ Hero ================*/
/*================ Hero Slider ================*/
/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ VENDOR ================*/
/*============================================================================
  Slick Slider 1.6.0

  - 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.
  - Remove `outline: none` from `.slick-dots li button`
==============================================================================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ #Mixins ================*/
/*============================================================================
  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 ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*============================================================================
  #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;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -25px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 768px) {
    .grid {
      margin-left: -15px; } }

.grid__item {
  float: left;
  padding-left: 25px;
  width: 100%; }
  @media only screen and (max-width: 768px) {
    .grid__item {
      padding-left: 15px; } }
  @media only screen and (min-width: 640px) {
    .grid__item {
      -webkit-flex: 0 1 auto;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto; } }
  .grid__item[class*="--push"] {
    position: relative; }
  .grid__item:last-of-type .grid-view-item {
    padding-bottom: 0; }

.grid_sizer img {
  position: relative; }
  @media only screen and (min-width: 769px) {
    .grid_sizer img {
      top: 50%;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); } }

.ie9 .grid_sizer img {
  top: 0; }

.grid_sizer--fix .grid_sizer img {
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0); }

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

/*============================================================================
  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%; }

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

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

.two-thirds {
  width: 66.66667%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 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: 640px) {
  /* Whole */
  .extra-small--one-whole {
    width: 100%; }

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

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

  .extra-small--two-thirds {
    width: 66.66667%; }

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

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

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

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

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

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

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

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

  .extra-small--two-sixths {
    width: 33.33333%; }

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

  .extra-small--four-sixths {
    width: 66.66667%; }

  .extra-small--five-sixths {
    width: 83.33333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .extra-small--two-twelfths {
    width: 16.66667%; }

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

  .extra-small--four-twelfths {
    width: 33.33333%; }

  .extra-small--five-twelfths {
    width: 41.66667%; }

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

  .extra-small--seven-twelfths {
    width: 58.33333%; }

  .extra-small--eight-twelfths {
    width: 66.66667%; }

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

  .extra-small--ten-twelfths {
    width: 83.33333%; }

  .extra-small--eleven-twelfths {
    width: 91.66667%; }

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

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

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

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

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

  .extra-small--text-center {
    text-align: center !important; } }
@media only screen and (max-width: 639px) {
  /* Whole */
  .small-down--one-whole {
    width: 100%; }

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

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

  .small-down--two-thirds {
    width: 66.66667%; }

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

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

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

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

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

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

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

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

  .small-down--two-sixths {
    width: 33.33333%; }

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

  .small-down--four-sixths {
    width: 66.66667%; }

  .small-down--five-sixths {
    width: 83.33333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small-down--two-twelfths {
    width: 16.66667%; }

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

  .small-down--four-twelfths {
    width: 33.33333%; }

  .small-down--five-twelfths {
    width: 41.66667%; }

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

  .small-down--seven-twelfths {
    width: 58.33333%; }

  .small-down--eight-twelfths {
    width: 66.66667%; }

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

  .small-down--ten-twelfths {
    width: 83.33333%; }

  .small-down--eleven-twelfths {
    width: 91.66667%; }

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

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

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

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

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

  .small-down--text-center {
    text-align: center !important; } }
@media only screen and (max-width: 768px) {
  /* Whole */
  .small--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small--eleven-twelfths {
    width: 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--one-eighth:nth-child(8n+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: 640px) {
  /* Whole */
  .small-up--one-whole {
    width: 100%; }

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

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

  .small-up--two-thirds {
    width: 66.66667%; }

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

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

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

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

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

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

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

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

  .small-up--two-sixths {
    width: 33.33333%; }

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

  .small-up--four-sixths {
    width: 66.66667%; }

  .small-up--five-sixths {
    width: 83.33333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small-up--two-twelfths {
    width: 16.66667%; }

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

  .small-up--four-twelfths {
    width: 33.33333%; }

  .small-up--five-twelfths {
    width: 41.66667%; }

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

  .small-up--seven-twelfths {
    width: 58.33333%; }

  .small-up--eight-twelfths {
    width: 66.66667%; }

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

  .small-up--ten-twelfths {
    width: 83.33333%; }

  .small-up--eleven-twelfths {
    width: 91.66667%; }

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

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

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

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

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

  .small-up--text-center {
    text-align: center !important; } }
@media only screen and (max-width: 768px) {
  /* Whole */
  .medium-down--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 640px) and (max-width: 1099px) {
  /* Whole */
  .medium--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 769px) {
  /* Whole */
  .medium-up--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-up--eleven-twelfths {
    width: 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--one-eighth:nth-child(8n+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 (max-width: 1099px) {
  /* Whole */
  .large-down--one-whole {
    width: 100%; }

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

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

  .large-down--two-thirds {
    width: 66.66667%; }

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

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

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

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

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

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

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

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

  .large-down--two-sixths {
    width: 33.33333%; }

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

  .large-down--four-sixths {
    width: 66.66667%; }

  .large-down--five-sixths {
    width: 83.33333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-down--two-twelfths {
    width: 16.66667%; }

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

  .large-down--four-twelfths {
    width: 33.33333%; }

  .large-down--five-twelfths {
    width: 41.66667%; }

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

  .large-down--seven-twelfths {
    width: 58.33333%; }

  .large-down--eight-twelfths {
    width: 66.66667%; }

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

  .large-down--ten-twelfths {
    width: 83.33333%; }

  .large-down--eleven-twelfths {
    width: 91.66667%; }

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

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

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

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

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

  .large-down--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 1100px) {
  /* Whole */
  .large-up--one-whole {
    width: 100%; }

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

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

  .large-up--two-thirds {
    width: 66.66667%; }

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

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

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

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

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

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

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

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

  .large-up--two-sixths {
    width: 33.33333%; }

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

  .large-up--four-sixths {
    width: 66.66667%; }

  .large-up--five-sixths {
    width: 83.33333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-up--two-twelfths {
    width: 16.66667%; }

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

  .large-up--four-twelfths {
    width: 33.33333%; }

  .large-up--five-twelfths {
    width: 41.66667%; }

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

  .large-up--seven-twelfths {
    width: 58.33333%; }

  .large-up--eight-twelfths {
    width: 66.66667%; }

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

  .large-up--ten-twelfths {
    width: 83.33333%; }

  .large-up--eleven-twelfths {
    width: 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--one-eighth:nth-child(8n+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; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 640px) {
  /* Halves */
  .extra-small--push-one-half {
    left: 50%; }

  /* Thirds */
  .extra-small--push-one-third {
    left: 33.33333%; }

  .extra-small--push-two-thirds {
    left: 66.66667%; }

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

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

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

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

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

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

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

  /* Sixths */
  .extra-small--push-one-sixth {
    left: 16.66667%; }

  .extra-small--push-two-sixths {
    left: 33.33333%; }

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

  .extra-small--push-four-sixths {
    left: 66.66667%; }

  .extra-small--push-five-sixths {
    left: 83.33333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Twelfths */
  .extra-small--push-one-twelfth {
    left: 8.33333%; }

  .extra-small--push-two-twelfths {
    left: 16.66667%; }

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

  .extra-small--push-four-twelfths {
    left: 33.33333%; }

  .extra-small--push-five-twelfths {
    left: 41.66667%; }

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

  .extra-small--push-seven-twelfths {
    left: 58.33333%; }

  .extra-small--push-eight-twelfths {
    left: 66.66667%; }

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

  .extra-small--push-ten-twelfths {
    left: 83.33333%; }

  .extra-small--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (max-width: 768px) {
  /* Halves */
  .small--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .small--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (max-width: 768px) {
  /* Halves */
  .medium-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 640px) and (max-width: 1099px) {
  /* Halves */
  .medium--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 769px) {
  /* 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%; } }
@media only screen and (max-width: 1099px) {
  /* Halves */
  .large-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-down--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 1100px) {
  /* Halves */
  .large-up--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-up--push-eleven-twelfths {
    left: 91.66667%; } }
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

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

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  @media only screen and (min-width: 640px) {
    .index-section-wrapper .slick-track {
      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; } }
  .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: inline-block; }
  @media only screen and (min-width: 769px) {
    .slick-slide .slideshow__link {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      text-align: left; } }
  @media only screen and (min-width: 769px) {
    .slick-slide .slideshow__image {
      -webkit-order: 1;
      -ms-order: 1;
      order: 1;
      -ms-flex-order: 1;
      width: 63%;
      height: 500px;
      position: relative;
      overflow: hidden; } }
  .slick-slide .slideshow__image--mobile {
    display: block;
    max-width: none;
    width: 100%; }
    @media only screen and (min-width: 769px) {
      .slick-slide .slideshow__image--mobile {
        display: none; } }
  .slick-slide .slideshow__image--desktop {
    display: none; }
    @media only screen and (min-width: 769px) {
      .slick-slide .slideshow__image--desktop {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 100%;
        max-width: none; } }
  @media only screen and (min-width: 769px) {
    .slick-slide .slideshow__text-wrap {
      -webkit-order: 0;
      -ms-order: 0;
      order: 0;
      -ms-flex-order: 0;
      width: 37%;
      height: auto; } }
  @media only screen and (min-width: 640px) {
    .slick-slide {
      height: auto; } }
  .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: 128px;
    width: 128px;
    padding: 0 0 15px;
    overflow: hidden; }
    .slick-vertical .slick-slide img {
      height: 100%;
      margin: auto; }

.product-single__thumbnails2 {
  height: 100%;
  border: 1px solid #f2f2f2; }

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

.slider-for {
  border: 1px solid #f2f2f2; }

/*================ Slick Slider Theme ================*/
.slick-loading .slick-list {
  background: white url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/ajax-loader.gif?v=12666879963503634074) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 15px;
  width: 27px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  color: transparent;
  padding: 0;
  border: none;
  left: 0;
  right: 0;
  margin: auto; }

.slick-prev {
  top: -25px;
  background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/icon-arrow-up.svg?v=1439203620046613756); }

.slick-next {
  bottom: -25px;
  background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/icon-arrow-down.svg?v=391159253651840679); }

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

.slick-dots {
  list-style: none;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin: 25px;
  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: #7a7a7a;
        opacity: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: #3e51b5;
      opacity: 1; }

/*================ FONTS =================*/
@font-face {
  font-family: 'Milo Serif Text';
  src: url("milotx.ttf");
  src: url("milotx.eot?#iefix") format("embedded-opentype"), url("milotx.woff2") format("woff2"), url("milotx.woff") format("woff"), url("milotx.ttf") format("truetype"), url("milotx.svg#miloseriftext") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Milo Serif Medium';
  src: url("milomd.ttf");
  src: url("milomd.eot?#iefix") format("embedded-opentype"), url("milomd.woff2") format("woff2"), url("milomd.woff") format("woff"), url("milomd.ttf") format("truetype"), url("milomd.svg#miloserifmedium") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Milo Serif Bold';
  src: url("milobd.ttf");
  src: url("milobd.eot?#iefix") format("embedded-opentype"), url("milobd.woff2") format("woff2"), url("milobd.woff") format("woff"), url("milobd.ttf") format("truetype"), url("milobd.svg#miloserifbold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Econ Sans Light';
  src: url("econsansltos.ttf");
  src: url("econsansltos.eot?#iefix") format("embedded-opentype"), url("econsansltos.woff2") format("woff2"), url("econsansltos.woff") format("woff"), url("econsansltos.ttf") format("truetype"), url("econsansltos.svg#econsansltos") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Econ Sans Regular';
  src: url("econsans-rg-os.ttf");
  src: url("econsans-rg-os.eot?#iefix") format("embedded-opentype"), url("econsans-rg-os.woff2") format("woff2"), url("econsans-rg-os.woff") format("woff"), url("econsans-rg-os.ttf") format("truetype"), url("econsans-rg-os.svg#econsansltos") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Econ Sans Medium';
  src: url("econsansmdos.ttf");
  src: url("econsansmdos.eot?#iefix") format("embedded-opentype"), url("econsansmdos.woff2") format("woff2"), url("econsansmdos.woff") format("woff"), url("econsansmdos.ttf") format("truetype"), url("econsansmdos.svg#econsansmdos") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Econ Sans Bold';
  src: url("econsansbdos.ttf");
  src: url("econsansbdos.eot?#iefix") format("embedded-opentype"), url("econsansbdos.woff2") format("woff2"), url("econsansbdos.woff") format("woff"), url("econsansbdos.ttf") format("truetype"), url("econsansbdos.svg#econsansbdos") format("svg");
  font-weight: normal;
  font-style: normal; }

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

/* Body Styles */
body {
  font-family: "Econ Sans Light", sans-serif;
  margin: 0;
  background: white;
  font-size: 85%; }
  body.template-index {
    background: #f2f2f2; }

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

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

a {
  color: #e3120b; }

em {
  font-style: italic; }

p {
  line-height: 1.4; }

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-size: 0.8125rem;
  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"], input[type="number"], input[type="email"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none; }

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

td,
th {
  padding: 0; }

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

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

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

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

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

.visibility-hidden {
  visibility: hidden; }

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

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

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

.disabled {
  cursor: default;
  pointer-events: none; }

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

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

.iwishWrapper,
.page-width {
  *zoom: 1;
  max-width: 1360px;
  margin: 0 auto; }
  .iwishWrapper::after,
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

.main-content {
  display: block;
  padding-top: 18px;
  margin-bottom: 55px; }
  .template-cart .main-content, .template-product .main-content, .template-collewtion .main-content, .template-index .main-content {
    margin-bottom: 0; }

.section-header {
  margin-bottom: 35px; }
  @media only screen and (min-width: 769px) {
    .section-header {
      margin-bottom: 55px; } }

/*================ Typography ================*/
.font-error {
  text-align: center;
  background: #f00;
  color: #fff;
  padding: 10px;
  margin: 0; }

blockquote {
  font-size: 1.125rem;
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0; }
  .rte blockquote {
    border-color: #f2f2f2;
    border-width: 1px 0;
    border-style: solid;
    padding: 30px 0;
    margin-bottom: 15px; }
  blockquote p + cite {
    margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.85em; }
    blockquote cite::before {
      content: '\2014 \0020'; }

a {
  text-decoration: none; }

p {
  margin: 0 0 10px; }

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

pre {
  overflow: auto; }

/*================ Headings ================*/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
  line-height: 120%; }
  h1 a, .h1 a,
  h2 a, .h2 a,
  h3 a, .h3 a,
  h4 a, .h4 a,
  h5 a, .h5 a,
  h6 a, .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }

h1, .h1 {
  font-family: "Milo Serif Medium", Georgia, serif;
  font-weight: normal;
  margin: 0;
  font-size: 2rem; }

h2, .h2 {
  font-family: "Milo Serif Medium", Georgia, serif;
  font-weight: normal;
  margin: 0;
  font-size: 1.25rem; }

h3, .h3 {
  font-family: "Milo Serif Bold", Georgia, serif;
  font-size: 1rem;
  margin: 0;
  font-weight: normal; }

h4, .h4 {
  font-family: "Milo Serif Bold", Georgia, serif;
  font-size: 0.8125rem;
  font-weight: 100;
  margin: 0; }

h5, .h5 {
  font-family: "Milo Serif Bold", Georgia, serif;
  font-size: 0.8125rem;
  font-weight: normal;
  margin: 0; }

h6, .h6 {
  font-family: "Milo Serif Bold", Georgia, serif;
  font-size: 0.75rem;
  font-weight: normal;
  margin: 0; }

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

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

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

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

.address {
  margin-top: 15px;
  margin-bottom: 30px;
  padding-top: 15px;
  border-top: 1px solid #f2f2f2; }

/*================ Hero and slideshow headers ================*/
.mega-title {
  margin-bottom: 8px; }

.mega-subtitle p {
  color: inherit; }

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

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

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

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons .icon {
    width: 30px;
    height: 30px; }

/*================ Social Icons ================*/
.social-icons .icon {
  width: 23px;
  height: 23px; }
  @media only screen and (min-width: 769px) {
    .social-icons .icon {
      width: 25px;
      height: 25px; } }
  .social-icons .icon.icon--wide {
    width: 40px; }

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

ol {
  list-style: decimal; }

.list--inline {
  padding: 0;
  margin: 0; }
  .list--inline li {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
    margin-right: 3%; }
    @media (max-width: 1160px) {
      .list--inline li {
        margin-right: 2%; } }
    .list--inline li:last-child {
      margin-right: 0; }

/*================ #Rich Text Editor ================*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte h1, .rte h2, .rte h3 {
  margin-bottom: 10px; }
.rte ul,
.rte ol {
  margin: 0 0 17.5px 35px; }
  .rte ul li,
  .rte ol li {
    list-style: initial; }
  .rte ul.list--inline,
  .rte ol.list--inline {
    margin-left: 0; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }
.rte a:not(.btn) {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px; }

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

.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding-bottom: 20px; }
  .rte__table-wrapper table {
    min-width: 400px;
    margin-bottom: 20px; }

/*================ Buttons ================*/
.btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  background-color: #3e51b5;
  color: white;
  white-space: normal;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all 0.25s cubic-bezier(0.29, 0.63, 0.44, 1); }
  @media only screen and (min-width: 769px) {
    .btn {
      padding: 12px 16px; } }
  .btn:hover {
    opacity: 0.7; }
  .btn.btn--wide {
    width: 100%; }
  .btn.btn--large {
    padding: 20px 16px; }
  .btn .icon-arrow-right,
  .btn .icon-arrow-left {
    height: 9px; }
  .btn[disabled] {
    cursor: default;
    opacity: 0.5;
    background-color: #b6b6b6;
    color: white; }

.iwishRemoveBtn,
.btn--secondary {
  background-color: #7a7a7a;
  color: white; }

.btn--small {
  padding: 8px 10px;
  font-size: 0.8125rem;
  line-height: 1; }

.selector-group {
  padding: 10px 0;
  display: inline-block;
  height: 46px; }
  .selector-group .selector-group__option {
    color: #121212;
    cursor: pointer;
    opacity: 0.35;
    border: 1px solid #f2f2f2;
    padding: 5px;
    margin-right: 5px;
    font-size: 0.6875rem; }
    .selector-group .selector-group__option.selected {
      opacity: 1; }

/*================ Button variations ================*/
@media only screen and (max-width: 768px) {
  .btn--small-wide {
    padding-left: 50px;
    padding-right: 50px; } }
.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  text-align: left; }
  .btn--link:hover, .btn--link:focus {
    opacity: 0.6; }
  .btn--link .icon {
    vertical-align: middle; }

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

.btn--disabled {
  opacity: 0.5;
  cursor: default; }
  .btn--disabled:hover, .btn--disabled:focus {
    opacity: 0.5; }

.btn--has-icon-after .icon {
  margin-left: 10px; }

.btn--has-icon-before .icon {
  margin-right: 10px; }

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

/*================ Return to collection/blog links ================*/
.return-link-wrapper {
  margin: 45px 0; }
  @media only screen and (max-width: 768px) {
    .return-link-wrapper {
      margin-bottom: -56px; }
      .return-link-wrapper .btn {
        display: block; } }

/*================ #Tables ================*/
table {
  margin-bottom: 15px; }

th {
  font-weight: 100; }

th,
td {
  text-align: left;
  border: 1px solid #f2f2f2;
  padding: 10px 14px; }

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

  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 30px; }
    .responsive-table__row + .responsive-table__row::after,
    tfoot > .responsive-table__row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #f2f2f2; } }
/*================ #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 ================*/
form {
  margin: 0; }

fieldset {
  border: 1px solid #f2f2f2;
  margin: 0 0 30px;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

.btn,
button {
  cursor: pointer;
  font-family: "Econ Sans Regular", Helvetica, sans-serif;
  font-weight: 500; }

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

label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8125rem;
  color: #7a7a7a; }
  [type="radio"] + label, [type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0; }
  label[for] {
    cursor: pointer; }

input,
textarea,
select {
  border: 1px solid #f2f2f2;
  background-color: white;
  color: #121212;
  max-width: 100%;
  line-height: 1.2;
  border-radius: 0; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #d8d8d8; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #b6b6b6;
    border-color: #b6b6b6; }
  .cart-ajax__quantity input[disabled], .cart-ajax__quantity
  textarea[disabled], .cart-ajax__quantity
  select[disabled] {
    background-color: white;
    color: #121212; }
  input.input--error::-webkit-input-placeholder,
  textarea.input--error::-webkit-input-placeholder,
  select.input--error::-webkit-input-placeholder {
    color: white;
    opacity: 0.5; }
  input.input--error::-moz-placeholder,
  textarea.input--error::-moz-placeholder,
  select.input--error::-moz-placeholder {
    color: white;
    opacity: 0.5; }
  input.input--error:-ms-input-placeholder,
  textarea.input--error:-ms-input-placeholder,
  select.input--error:-ms-input-placeholder {
    color: white;
    opacity: 0.5; }
  input.input--error::-ms-input-placeholder,
  textarea.input--error::-ms-input-placeholder,
  select.input--error::-ms-input-placeholder {
    color: white;
    opacity: 1; }
  input.hidden-placeholder::-webkit-input-placeholder,
  textarea.hidden-placeholder::-webkit-input-placeholder,
  select.hidden-placeholder::-webkit-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-moz-placeholder,
  textarea.hidden-placeholder::-moz-placeholder,
  select.hidden-placeholder::-moz-placeholder {
    color: transparent; }
  input.hidden-placeholder:-ms-input-placeholder,
  textarea.hidden-placeholder:-ms-input-placeholder,
  select.hidden-placeholder:-ms-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-ms-input-placeholder,
  textarea.hidden-placeholder::-ms-input-placeholder,
  select.hidden-placeholder::-ms-input-placeholder {
    opacity: 1; }

textarea {
  min-height: 100px; }

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/ico-select.svg?v=15556381834474199855);
  background-repeat: no-repeat;
  background-position: right 10px center;
  line-height: 1.2;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  padding-top: 8px;
  padding-left: 15px;
  padding-bottom: 8px;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  @media only screen and (min-width: 769px) {
    select {
      padding-top: 12px;
      padding-left: 16px;
      padding-bottom: 12px; } }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

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

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

::-webkit-input-placeholder {
  color: #121212;
  opacity: 0.6; }

::-moz-placeholder {
  color: #121212;
  opacity: 0.6; }

:-ms-input-placeholder {
  color: #121212;
  opacity: 0.6; }

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

/*================ Labels ================*/
.label--error {
  color: white; }

input,
textarea {
  padding: 8px 15px; }
  @media only screen and (min-width: 769px) {
    input,
    textarea {
      padding: 12px 16px; } }

/*================ Vertical forms ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 19.44444px; }
.form-vertical [type="radio"],
.form-vertical [type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px; }
.form-vertical [type="submit"],
.form-vertical .btn {
  display: inline-block;
  width: auto; }

/*================ Form feedback messages ================*/
.note,
.form--success,
.errors {
  padding: 8px;
  margin: 0 0 15px; }
  @media only screen and (min-width: 769px) {
    .note,
    .form--success,
    .errors {
      padding: 12px; } }

.note {
  border: 1px solid #f2f2f2; }

.form--success {
  border: 1px solid white;
  background-color: #3e51b5;
  color: white; }

.errors {
  border: 1px solid white;
  background-color: #e3120b;
  color: white; }
  .errors ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .errors a {
    color: white;
    text-decoration: underline; }

/*================ Input Groups ================*/
.input-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate; }
  .form-vertical .input-group {
    margin-bottom: 30px; }

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

.input-group__field,
.input-group__btn .btn {
  height: 42px;
  padding-top: 0;
  padding-bottom: 0; }
  @media only screen and (min-width: 769px) {
    .input-group__field,
    .input-group__btn .btn {
      height: 46px; } }

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

.input-group__btn {
  white-space: nowrap;
  width: 1%; }
  .input-group__btn .btn {
    border-radius: 0 0 0 0;
    white-space: nowrap; }

/*================ #Site Nav and Dropdowns ================*/
.site-header__logo img {
  display: block;
  width: 100%;
  max-width: 296px; }
  @media screen and (max-width: 415px) {
    .site-header__logo img {
      margin: 0 auto;
      height: 75px;
      padding: 10px;
      width: auto;
      max-width: 100%; } }

.site-nav {
  position: relative;
  padding: 0;
  font-family: "Econ Sans Medium", Helvetica, sans-serif;
  font-size: 15px;
  text-align: center;
  margin: 10px 0; }
  .site-nav .site-nav__link {
    color: #121212;
    padding: 6px 0; }

.site-nav--centered {
  padding-bottom: 10px; }

/*================ Site Nav Links ================*/
.site-nav__link {
  display: inline-block;
  white-space: nowrap; }
  .site-nav--centered .site-nav__link {
    padding-top: 0; }
  .site-nav__link .icon-chevron-down {
    width: 8px;
    height: 8px;
    margin-left: 2px; }
    .site-nav--active-dropdown .site-nav__link .icon-chevron-down {
      transform: rotateZ(-180deg); }
  .site-nav__link.site-nav--active-dropdown {
    z-index: 2; }

/*================ Dropdowns ================*/
.site-nav--has-dropdown {
  position: relative; }

.site-nav--has-centered-dropdown {
  position: static; }

.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  padding: 11px 17px;
  margin: 0;
  z-index: 7;
  text-align: left;
  border: 1px solid #f2f2f2;
  left: -1px;
  top: 41px; }
  .site-nav__dropdown .site-nav__link {
    padding: 4px 30px 4px 0; }
  .site-nav--active-dropdown .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown li {
    display: block; }

.meganav--has-child .site-nav__link:after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/icon-arrow-down.svg?v=391159253651840679);
  width: 11px;
  height: 8px;
  position: relative;
  margin-left: 9px; }
  @media (max-width: 1050px) {
    .meganav--has-child .site-nav__link:after {
      margin-left: 5px; } }

.site-nav__dropdown--centered {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  text-align: center; }

/*================ Child list ================*/
.site-nav__childlist {
  display: inline-block;
  border: 1px solid #f2f2f2;
  padding: 11px 17px;
  text-align: left; }

.site-nav__childlist-grid {
  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;
  width: auto;
  margin-bottom: -35px; }

.site-nav__childlist-item {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-bottom: 35px; }

.site-nav__child-link--parent {
  margin: 4px 0; }

.standard-page {
  margin-bottom: 55px; }

.iwishWrapper,
.page-width {
  padding-left: 30px;
  padding-right: 30px; }
  @media only screen and (max-width: 768px) {
    .iwishWrapper,
    .page-width {
      padding-left: 10px;
      padding-right: 10px; } }

.page-container {
  transition: all 0.25s cubic-bezier(0.29, 0.63, 0.44, 1);
  position: relative;
  overflow: hidden; }
  @media only screen and (min-width: 769px) {
    .page-container {
      -ms-transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); } }

hr {
  margin: 30px 0;
  border: 0;
  border-bottom: 1px solid #f2f2f2; }

.hr--small {
  padding: 10px 0;
  margin: 0; }

.hr--invisible {
  border-bottom: 0; }

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

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

.empty-page-content {
  padding: 125px 30px; }
  @media only screen and (max-width: 768px) {
    .empty-page-content {
      padding-left: 10px;
      padding-right: 10px; } }

.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle; }

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

.grid--half-gutters {
  margin-left: -12.5px; }
  .grid--half-gutters > .grid__item {
    padding-left: 12.5px; }

.grid--double-gutters {
  margin-left: -50px; }
  .grid--double-gutters > .grid__item {
    padding-left: 50px; }

.grid--flush-bottom {
  margin-bottom: -55px;
  overflow: auto; }
  .grid--flush-bottom > .grid__item {
    margin-bottom: 55px; }

/*============================================================================
  Animation Classes and Keyframes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

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

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

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

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

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

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

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

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

.drawer {
  display: none;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  transition: all 0.25s cubic-bezier(0.29, 0.63, 0.44, 1);
  z-index: 9; }

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

.drawer--top {
  overflow: visible;
  height: 60px;
  width: 100%; }
  .js-drawer-open-top .drawer--top {
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    display: block;
    opacity: 1;
    pointer-events: auto; }

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

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

.drawer__close-button {
  background: none;
  border: 0 none;
  position: relative;
  right: -15px;
  height: 100%;
  width: 60px;
  padding: 0 20px;
  color: inherit;
  font-size: 1.125rem; }
  .drawer__close-button:active, .drawer__close-button:focus {
    background-color: #e5e5e5; }

@media only screen and (min-width: 640px) {
  .grid--view-items {
    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: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch; } }

.grid-view-item {
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: stretch;
  -ms-justify-content: stretch;
  justify-content: stretch;
  height: 100%; }
  .custom__item .grid-view-item {
    margin-bottom: 0; }

.grid-view-item__title {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  padding-top: 20px;
  text-decoration: none;
  text-align: center;
  color: #383e42; }

.grid-view-item__meta {
  display: block;
  margin: 0;
  font-family: "Econ Sans Medium", Helvetica, sans-serif;
  font-weight: 500;
  color: #121212;
  text-align: center; }

.product-price__price {
  display: inline-block;
  font-size: 16px;
  text-align: center; }
  @media only screen and (min-width: 769px) {
    .product-price__price {
      text-align: left; } }
  .product-template__container .product-price__price {
    font-size: 22px; }

.product-price__sale {
  padding-right: 0;
  padding-left: 5px;
  color: #e3120b; }

.grid-view-item__link {
  display: block;
  text-align: left;
  outline: none; }
  @media only screen and (min-width: 640px) {
    .grid-view-item__link {
      -webkit-flex: 0 1 auto;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto; } }

.grid-view-item__vendor {
  display: block;
  margin-top: 4px;
  text-transform: uppercase; }

.grid-view-item__image--wrapper {
  display: inline-block;
  text-align: center;
  line-height: 0;
  width: 100%;
  padding: 15px; }
  @media only screen and (min-width: 640px) {
    .grid-view-item__image--wrapper {
      overflow: hidden;
      position: relative;
      padding: 115% 0 0; } }
  .grid-view-item__image--wrapper .grid_sizer {
    display: inline-block; }
  .grid-view-item__image--wrapper .grid-view-item__image {
    display: inline-block;
    margin: 0 auto;
    max-height: 310px; }
    @media only screen and (min-width: 640px) {
      .grid-view-item__image--wrapper .grid-view-item__image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        height: auto;
        max-width: none;
        max-height: none; } }
    .grid-view-item--sold-out .grid-view-item__image--wrapper .grid-view-item__image {
      opacity: 0.5; }

.list-view-item {
  display: table;
  table-layout: fixed;
  margin-bottom: 10px;
  width: 100%; }
  .list-view-item:last-child {
    margin-bottom: 0; }
  @media only screen and (min-width: 769px) {
    .list-view-item {
      border-bottom: 1px solid #f2f2f2;
      padding-bottom: 10px; }
      .list-view-item:last-child {
        padding-bottom: 0;
        border-bottom: 0; } }

.search-list {
  margin-bottom: 55px; }

.search-page__header {
  margin: 25px 0; }

.list-view-item__image-column {
  display: table-cell;
  vertical-align: middle;
  width: 130px; }
  @media only screen and (max-width: 768px) {
    .list-view-item__image-column {
      width: 85px; } }

.list-view-item__image-wrapper {
  position: relative;
  margin-right: 35px; }
  @media only screen and (max-width: 768px) {
    .list-view-item__image-wrapper {
      margin-right: 17.5px; } }

.list-view-item__title-column {
  display: table-cell;
  vertical-align: middle; }

.list-view-item__title {
  min-width: 100px; }
  .cart .list-view-item__title {
    max-width: 75%; }

@media only screen and (max-width: 768px) {
  .list-view-item__on-sale {
    display: none; } }

.list-view-item__vendor-column {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 20%; }

.list-view-item__vendor {
  font-style: italic; }

.list-view-item__price-column {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 20%; }
  .list-view-item__price-column .product-price__sale {
    display: block; }
  .list-view-item__price-column .product-price__sale-label,
  .list-view-item__price-column .product-price__sold-out {
    display: none; }

.list-view-item__price {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

@media only screen and (max-width: 768px) {
  .list-view-item__price--reg {
    display: block; } }

@media only screen and (max-width: 768px) {
  .list-view-item__price--sale {
    display: block; } }

/*============================================================================
  Slick slider overrides
==============================================================================*/
.slick-dotted.slick-slider {
  margin-bottom: 0; }

/*================ Slick dots and prev/next pagination ================*/
.slick-slider .slick-dots {
  margin: 18px 0 0;
  width: auto; }
  .slick-slider .slick-dots li {
    margin: 0;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin-left: 20px; }
    .slick-slider .slick-dots li:first-of-type {
      margin-left: 0; }
    @media only screen and (min-width: 769px) {
      .slick-slider .slick-dots li {
        width: 10px;
        height: 10px;
        margin-left: 20px; } }
    .slick-slider .slick-dots li button {
      position: relative;
      padding: 0;
      width: 8px;
      height: 8px; }
      @media only screen and (min-width: 769px) {
        .slick-slider .slick-dots li button {
          width: 10px;
          height: 10px; } }
    .slick-slider .slick-dots li button::before {
      text-indent: -9999px;
      background-color: transparent;
      border-radius: 100%;
      background-color: currentColor;
      width: 8px;
      height: 8px;
      opacity: 1;
      transition: all 0.2s; }
      @media only screen and (min-width: 769px) {
        .slick-slider .slick-dots li button::before {
          width: 10px;
          height: 10px; } }
    .slick-slider .slick-dots li.slick-active button::before {
      color: #3e51b5;
      opacity: 1; }
    .slick-slider .slick-dots li button:active::before {
      opacity: 0.7; }

/*================ Index sections ================*/
.index-section {
  padding-top: 55px;
  padding-bottom: 55px; }
  .template-index .index-section {
    padding-top: 0; }
  .index-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .index-section:last-child {
    padding-bottom: 0; }

.template-index .index-section:first-child {
  padding-bottom: 20px; }

.index-section-header {
  margin: 0 0 50px;
  display: inline-block;
  width: 100%; }
  .index-section-header:before {
    content: '';
    display: inline-block;
    margin-bottom: 5px;
    width: 48px;
    height: 6px;
    background: #e3120b; }

.index-section-white .index-section-header {
  margin: 50px 0; }
.index-section-white .index-section-wrapper {
  background: white; }
.index-section-white.index-section-extra-space .index-section-wrapper {
  padding-bottom: 60px; }

.index-section-wrapper-grey {
  padding: 50px 0;
  background-color: #f2f2f2; }

.index-section--flush + .index-section--flush {
  margin-top: -70px; }
  @media only screen and (min-width: 769px) {
    .index-section--flush + .index-section--flush {
      margin-top: -110px; } }

.index-section--flush:first-child {
  margin-top: -35px; }
  @media only screen and (min-width: 769px) {
    .index-section--flush:first-child {
      margin-top: -55px; } }

.index-section--flush:last-child {
  margin-bottom: -35px; }
  @media only screen and (min-width: 769px) {
    .index-section--flush:last-child {
      margin-bottom: -55px; } }

@media only screen and (max-width: 768px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }
.placeholder-svg {
  fill: #dedede;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #f2f2f2; }

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

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

.image-bar__content .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0; }

/*================ TEMPLATES ================*/
/*============= Templates | Password =============*/
.template-password {
  height: 100vh; }

.password-page {
  display: table;
  height: 100%;
  width: 100%;
  background-size: cover; }
  .ie9 .password-page {
    height: auto; }
  .password-page .errors,
  .password-page .form--success {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; }

.password-header {
  height: 85px;
  display: table-row; }

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

.password-login {
  padding: 0 30px;
  text-align: right; }

.password-logo .logo {
  font-weight: 700;
  max-width: 100%; }

.password-main {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.password-main__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 30px; }

.password-message {
  max-width: 500px;
  margin: 45px auto 15px; }

.password__input-group {
  max-width: 340px;
  margin: 0 auto 30px; }

.password__title {
  margin-bottom: 45px; }

.password__form-heading {
  margin-bottom: 30px; }

.password-powered-by {
  margin-top: 45px; }

.product-single {
  margin-bottom: 55px; }

h1.product-single__title {
  margin: 0 0 25px; }

.product-single__price {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: 22px; }
  @media only screen and (max-width: 768px) {
    .product-single__price {
      display: block; } }

.product-single__vendor {
  margin: 5px 0 10px; }

@media only screen and (max-width: 1099px) {
  .product-single__left {
    max-width: 70%;
    margin-left: 15%; } }
@media only screen and (max-width: 768px) {
  .product-single__left {
    max-width: 100%;
    margin-left: 0; } }

.product-single__right {
  margin-top: 25px; }
  @media only screen and (min-width: 1100px) {
    .product-single__right {
      padding-left: 65px;
      margin-top: 0; } }

/*================ Add to cart 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;
  width: auto;
  margin: 0 -5px; }
  @media only screen and (min-width: 640px) {
    .product-form {
      margin-top: auto;
      -webkit-flex: 0 1 auto;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto; } }

.product-form.customizer-active {
  background: #f2f2f2;
  padding: 20px; }
  .product-form.customizer-active label {
    color: #121212; }
  .product-form.customizer-active .product-customizer-option {
    margin-bottom: 30px; }
    .product-form.customizer-active .product-customizer-option:last-child {
      margin-bottom: 0; }
  .product-form.customizer-active .product-customizer-option-description {
    color: #7a7a7a;
    padding-bottom: 5px; }
  .product-form.customizer-active .product-customizer-option {
    position: relative; }
    .product-form.customizer-active .product-customizer-option span.max-count {
      position: absolute;
      right: 0;
      color: #7a7a7a;
      padding-top: 3px; }

.template-product .product-form__item--submit .product-form__cart-submit {
  width: 100%;
  padding: 8px 15px; }
  @media only screen and (min-width: 769px) {
    .template-product .product-form__item--submit .product-form__cart-submit {
      padding: 12px 16px; } }
  .template-product .product-form__item--submit .product-form__cart-submit span {
    font-size: 15px; }

.product-form__item {
  -webkit-flex: 1 1 200px;
  -moz-flex: 1 1 200px;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  margin-bottom: 25px;
  padding: 0 5px; }
  .product-form__item label {
    display: block; }
    .product-form--hide-variant-labels .product-form__item label {
      position: absolute !important;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0; }

.product-form__row {
  width: 100%; }

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

.product-form__item--quantity {
  -webkit-flex: 0 0 50%;
  -moz-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%; }
  @media (max-width: 440px) {
    .product-form__item--quantity {
      -webkit-flex: 0 0 100%;
      -moz-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%; } }
  .product-form__item--quantity.product-form__item-quantity--fullwidth {
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }
    .product-form__item--quantity.product-form__item-quantity--fullwidth input {
      max-width: 49%; }
      @media (max-width: 440px) {
        .product-form__item--quantity.product-form__item-quantity--fullwidth input {
          max-width: 100%; } }

.product-form__item-submit--fullwidth {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.product-form__item--submit {
  text-align: center;
  display: block;
  width: 100%;
  line-height: 1.3;
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal; }
  @media only screen and (min-width: 769px) {
    .product-form__item--submit {
      -ms-flex-preferred-size: 50%;
      -webkit-flex-basis: 50%;
      -moz-flex-basis: 50%;
      flex-basis: 50%; } }
  .product-form--submitted .product-form__item--submit {
    background-color: white; }
  .product-form__item--submit a,
  .product-form__item--submit button {
    font-size: 0.9375rem;
    font-weight: 500;
    width: 100%; }
  .product-form__item--submit .product-form__cart-submit {
    padding: 10px 20px;
    width: auto;
    font-size: 0.8125rem;
    font-weight: 500; }

.customizer input,
.customizer select,
.product-form__input {
  display: block;
  width: 100%; }

.product-single__description {
  margin-top: 25px;
  font-size: 0.9375rem;
  font-family: "Milo Serif Text", Georgia, serif;
  padding-bottom: 25px;
  line-height: 25px; }
  .product-single__description p, .product-single__description ul {
    line-height: 25px; }

.readmore {
  margin-bottom: 25px;
  display: inline-block;
  font-size: 0.8125rem;
  font-family: "Econ Sans Medium", Helvetica, sans-serif;
  color: #7a7a7a; }

.tabs {
  padding: 0 5px; }
  .tabs .tab {
    overflow: hidden; }
    .tabs .tab .tab__header {
      text-transform: uppercase;
      padding: 16px 0;
      border-top: 1px solid #f2f2f2;
      border-width: 1px 0;
      display: inline-block;
      float: left;
      width: 100%;
      cursor: pointer; }
      .tabs .tab .tab__header h5 {
        float: left;
        width: 90%; }
      .tabs .tab .tab__header:after {
        content: '';
        width: 12px;
        height: 7px;
        float: right;
        background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/icon-arrow-down.svg?v=391159253651840679);
        background-repeat: no-repeat;
        background-position: 100% 0;
        margin-top: 5px;
        width: 10%; }
      .tabs .tab .tab__header span {
        float: right; }
      .tabs .tab .tab__header .spr-badge-caption {
        display: none; }
      .tabs .tab .tab__header.tab__header--last {
        border-bottom: 1px solid #f2f2f2; }
      .tabs .tab .tab__header.tab__header--active {
        border-bottom: none; }
        .tabs .tab .tab__header.tab__header--active:after {
          background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/icon-arrow-up.svg?v=1439203620046613756); }
    .tabs .tab .tab__content {
      display: none;
      width: 100%; }
      .tabs .tab .tab__content.tab__content--active {
        display: inline-block; }
        .tabs .tab .tab__content.tab__content--active.tab__content--last {
          border-bottom: 1px solid #f2f2f2; }

.product-single__delivery-info {
  font-size: 15px;
  color: #616161;
  margin: 12.5px 0 37.5px;
  padding: 0 5px; }

#shopify-section-recommend {
  background-color: #f2f2f2; }

/*================ Product Images ================*/
.product-single__thumbnail {
  display: block;
  margin: -2px 0 8px;
  border: 2px solid transparent; }
  .product-single__thumbnail.active-thumb {
    border-color: #f2f2f2; }

.product-single__thumbnail-image {
  display: block; }

.product-featured-img {
  display: block;
  margin: 0 auto; }

@media only screen and (max-width: 768px) {
  .product-single__photos {
    margin-bottom: 25px; }

  .product-single__photo--has-thumbnails {
    margin-bottom: 25px; } }
.product-single__photos--full {
  margin-bottom: 25px; }

.product-single__photo {
  min-height: 1px; }

.product-single__photos {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase; }

.product-single__photos-zoom {
  display: inline-block;
  color: #7a7a7a;
  margin-top: 25px;
  font-weight: normal;
  text-transform: initial; }
  @media only screen and (max-width: 768px) {
    .product-single__photos-zoom {
      display: none; } }
  .product-single__photos-zoom svg {
    fill: #7a7a7a;
    vertical-align: middle; }

@media (max-width: 1100px) {
  .zoomImg {
    z-index: -1 !important;
    opacity: 0 !important; } }
@media only screen and (max-width: 768px) {
  .template-product .main-content {
    padding-top: 15px; }

  .thumbnails-slider--active .product-single__thumbnails {
    display: none; }
    .thumbnails-slider--active .product-single__thumbnails.slick-initialized, .ie9 .thumbnails-slider--active .product-single__thumbnails {
      display: block;
      margin: 0 auto;
      max-width: 75%; }

  .product-single__photos {
    position: relative; }

  .thumbnails-wrapper {
    position: relative;
    text-align: center; }

  .thumbnails-slider__btn {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }

  .thumbnails-slider__prev {
    left: -20px; }

  .thumbnails-slider__next {
    right: -20px; }

  .product-single__thumbnails-item {
    display: inline-block;
    padding-bottom: 10px;
    width: 72px;
    float: none;
    vertical-align: middle; }
    .slick-slider .product-single__thumbnails-item {
      float: left; }
    .thumbnails-slider--active .product-single__thumbnails-item {
      padding: 5px 0; }

  .product-single__thumbnail {
    margin: 0 auto;
    width: 50px; } }
/*================ Template | Collections ================*/
.collection-fade {
  transition: all 0.25s cubic-bezier(0.29, 0.63, 0.44, 1);
  opacity: 0;
  margin-top: 15px; }
  .collection-fade.collection-fadein {
    opacity: 1; }

.collection-hero {
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px; }
  @media only screen and (min-width: 769px) {
    .collection-hero {
      margin-bottom: 35px;
      border-bottom: 4px solid #df110e; } }

.collection-description {
  margin-bottom: 75px;
  margin-top: 75px;
  font-family: "Milo Serif Text", Georgia, serif; }
  @media only screen and (min-width: 769px) {
    .collection-description {
      margin-bottom: 55px;
      margin-top: 55px;
      padding-left: 25%;
      padding-right: 25%; } }

.collection-hero__title-wrapper {
  height: 100%;
  padding: 32px 16px 16px;
  text-align: left;
  width: 100%; }
  @media only screen and (min-width: 769px) {
    .collection-hero__title-wrapper {
      -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;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      left: 0;
      padding: 50px 16px 32px 32px;
      position: absolute;
      top: 0;
      width: 50%; } }
  @media only screen and (max-width: 768px) {
    .collection-hero__title-wrapper {
      border-top: 4px solid #df110e; } }
  .collection-hero__title-wrapper .collection-hero__title {
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.206em; }
    @media only screen and (min-width: 769px) {
      .collection-hero__title-wrapper .collection-hero__title {
        margin-bottom: 2rem; } }
    @media only screen and (min-width: 1100px) {
      .collection-hero__title-wrapper .collection-hero__title {
        font-size: 2.125rem; } }
  .collection-hero__title-wrapper .collection-hero__description {
    font-size: 1rem;
    width: 100%; }
    @media only screen and (min-width: 1100px) {
      .collection-hero__title-wrapper .collection-hero__description {
        line-height: 1.375rem; } }
  .collection-hero__title-wrapper .collection-hero__description--top {
    margin-bottom: 1em; }

.collection-hero__image {
  height: 200px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover; }
  @media only screen and (min-width: 769px) {
    .collection-hero__image {
      height: 260px;
      margin-left: 50%; } }

.template-blog .social-sharing {
  margin-bottom: 17.5px; }

.blog--list-view .pagination {
  padding-top: 0; }

.template-collection .product-form__item--submit button {
  padding: 10px 20px;
  width: auto;
  font-size: 0.8125rem;
  font-weight: 500; }
.template-collection .selector-wrapper {
  margin-bottom: 0; }
.template-collection label[id="gold-blocking"] {
  padding: 0 5px;
  display: inline-block;
  width: 100%;
  margin: 5px 0 15px;
  cursor: pointer;
  position: relative; }
  .template-collection label[id="gold-blocking"] .gold-blocking__tooltip {
    display: none;
    position: relative;
    background: #fff;
    padding: 7px 10px;
    border: 1px solid #f2f2f2;
    right: 0;
    z-index: 1;
    max-width: 170px;
    font-size: 11px;
    margin-top: -15px;
    margin-bottom: -15px;
    float: right; }
    .template-collection label[id="gold-blocking"] .gold-blocking__tooltip:before {
      content: '';
      width: 10px;
      height: 10px;
      background: #fff;
      border: 1px solid #f2f2f2;
      border-width: 0 0 1px 1px;
      position: absolute;
      top: 15px;
      left: -6px;
      transform: rotate(45deg);
      z-index: 0; }
  .template-collection label[id="gold-blocking"]:hover .gold-blocking__tooltip {
    display: block; }
.template-collection .customizer {
  display: none; }
  .template-collection .customizer input {
    margin-top: -2px;
    margin-bottom: 15px; }
  .template-collection .customizer.customizer--active {
    display: block; }
.template-collection .one-whole_sort-by {
  display: flex;
  margin-bottom: 20px; }
  .template-collection .one-whole_sort-by .sort-by__label {
    color: #000;
    font-family: "Econ Sans Medium",Helvetica,sans-serif;
    font-size: 15px;
    margin-left: auto;
    padding: 10px 10px 0 0; }
    @media only screen and (max-width: 768px) {
      .template-collection .one-whole_sort-by .sort-by__label {
        padding: 7px 12px 0 0; } }
  .template-collection .one-whole_sort-by .sort-by__selector {
    max-width: 160px;
    width: 100%; }

/*================ Cart page ================*/
.cart td {
  border: 0;
  padding: 10px 0 0 0; }
  @media only screen and (min-width: 769px) {
    .cart td {
      padding: 10px 0; } }
.cart th {
  border: 0;
  padding: 20px 40px;
  font-size: 15px; }
  @media only screen and (max-width: 1099px) {
    .cart th {
      padding: 20px 10px; } }
.cart .cart__meta {
  padding-right: 15px; }
.cart .cart__list-wrapper {
  border: 1px solid #f2f2f2; }
  .cart .cart__list-wrapper table {
    border: none; }

.cart__subtotal--wrapper {
  border: 1px solid #eeeeee;
  background-color: #fcfbfc; }
  @media only screen and (max-width: 768px) {
    .cart__subtotal--wrapper {
      margin-top: 30px; } }

.cart__subtotal-summary {
  border-bottom: 1px solid #eeeeee;
  display: inline-block;
  width: 100%;
  padding: 40px;
  text-align: center; }
  .cart__subtotal-summary .h3 {
    font-weight: 700; }
  .cart__subtotal-summary .cart__subtotal-title {
    font-size: 22px;
    font-weight: 700;
    font-family: "Milo Serif Bold", Georgia, serif; }
  .cart__subtotal-summary .cart__subtotal {
    font-size: 22px;
    font-weight: 700;
    font-family: "Milo Serif Bold", Georgia, serif; }
  .cart__subtotal-summary .cart__cost-note {
    font-size: 14px;
    color: #e3120b;
    margin-top: 5px;
    font-weight: 700; }

form[action="/cart"] {
  margin-bottom: 55px; }

.cart__subtotal-meta {
  padding: 30px 20px; }
  .cart__subtotal-meta .btn--secondary {
    background-color: #121212; }
  .cart__subtotal-meta .cart__terms-reminder {
    display: none;
    margin-bottom: 10px;
    color: red;
    visibility: hidden; }
  .cart__subtotal-meta .terms-and-conditions {
    margin-top: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    margin-bottom: 20px; }
    .cart__subtotal-meta .terms-and-conditions input {
      float: none;
      margin-right: 5px;
      -webkit-flex: 0 1 auto;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto; }
    .cart__subtotal-meta .terms-and-conditions span {
      width: auto;
      -webkit-flex: 0 1 auto;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto; }
      .cart__subtotal-meta .terms-and-conditions span a {
        color: inherit;
        text-decoration: underline; }
  .cart__subtotal-meta > span {
    text-align: center;
    font-family: "Milo Serif Bold", Georgia, serif;
    display: block;
    margin: 20px 0;
    color: #6f6f6f;
    font-size: 16px; }

.cart__meta-text {
  padding: 5px 0;
  font-size: 13px; }

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

.cart__qty-input {
  float: left;
  text-align: center;
  width: 40px;
  padding-left: 5px;
  padding-right: 5px;
  height: 41px; }
  .cart__qty-input::-webkit-inner-spin-button, .cart__qty-input::-webkit-outer-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0; }

.cart__quantity-ico {
  float: left;
  font-size: 0.9375rem;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  width: 27px;
  height: 41px;
  border: 1px solid #f2f2f2; }

.cart__quantity-ico--plus {
  border-left: 0; }

.cart__quantity-ico--minus {
  border-right: 0; }

.cart__edit {
  margin-top: 10px; }

.cart__edit--active .cart__edit-text--cancel {
  display: none; }

.cart__edit-text--edit {
  display: none; }
  .cart__edit--active .cart__edit-text--edit {
    display: block; }

.cart__edit-text--cancel,
.cart__edit-text--edit {
  pointer-events: none; }

.cart__row {
  border-bottom: 1px solid #f2f2f2; }
  .cart__row:last-child {
    border-bottom: none; }
  .cart__row h3 {
    color: #121212;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400; }
  .cart__row td {
    min-width: 90px;
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 16px; }
    .cart__row td:first-child {
      padding-left: 40px;
      width: 180px;
      min-width: 100px; }
      @media only screen and (max-width: 1099px) {
        .cart__row td:first-child {
          padding-left: 10px; } }
    .cart__row td:last-child {
      padding-right: 40px; }
      @media only screen and (max-width: 1099px) {
        .cart__row td:last-child {
          padding-right: 10px; } }
  .cart__row p {
    margin-bottom: 0; }
    .cart__row p + p {
      margin-top: 10px; }

.cart__savings {
  padding-top: 18px; }

.cart__savings-amount {
  padding-left: 15px; }
  @media only screen and (min-width: 769px) {
    .cart__savings-amount {
      padding-left: 30px;
      min-width: 150px;
      display: inline-block; } }

.cart__update--large {
  margin-right: 10px; }

.cart__trust-symbols {
  color: #7a7a7a;
  padding: 30px 20px;
  border-top: 1px solid #eeeeee; }
  .cart__trust-symbols img {
    display: block;
    margin: 0 auto; }

.cart__shipping {
  margin-top: 20px; }

.cart-note {
  margin-bottom: 2em; }

.cart-note__label,
.cart-note__input {
  display: block; }
  @media only screen and (max-width: 768px) {
    .cart-note__label,
    .cart-note__input {
      margin: 0 auto; } }

.cart-note__label {
  margin-bottom: 15px; }

.cart-note__input {
  min-height: 50px;
  width: 100%; }
  @media only screen and (max-width: 768px) {
    .cart-note__input {
      margin-bottom: 40px; } }

.cart__continue-shopping {
  text-decoration: underline;
  margin-top: 20px;
  display: inline-block; }

.cart__submit-container {
  position: relative; }
  .cart__submit-container .cart__dummy-submit {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    width: 100%; }

.cart__image-wrapper a {
  display: block;
  padding-right: 17.5px; }
  @media only screen and (min-width: 769px) {
    .cart__image-wrapper a {
      padding-right: 35px; } }

.cart__remove {
  float: right;
  margin-top: 10px;
  border-bottom: 1px solid #7a7a7a;
  color: #7a7a7a;
  font-size: 13px; }
  @media only screen and (max-width: 768px) {
    .cart__remove {
      color: #fff; } }

@media only screen and (min-width: 769px) {
  .cart__image-wrapper {
    width: 130px; }

  .cart__meta {
    max-width: 300px; }

  .cart__remove {
    float: none; }

  .cart__qty {
    width: 94px;
    margin: 0 auto;
    text-align: center; } }
@media only screen and (max-width: 768px) {
  .cart table {
    display: block;
    width: 100%; }
  .cart thead {
    display: none; }
  .cart tr,
  .cart tbody {
    width: 100%; }
  .cart tbody {
    display: block; }
  .cart .cart__update-wrapper {
    display: none;
    width: 100%;
    margin-left: 85px;
    padding-top: 0; }

  .js-edit-toggle {
    margin-top: 10px;
    display: inline-block;
    text-decoration: underline; }

  .cart__update--show .cart__update-wrapper {
    display: block; }

  .cart-flex {
    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: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }

  .cart-flex-item {
    display: block;
    min-width: 0;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }

  .cart__meta {
    -webkit-flex: 1 1 0%;
    -moz-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%; }

  .cart__image-wrapper {
    -webkit-flex: 0 0 85px;
    -moz-flex: 0 0 85px;
    -ms-flex: 0 0 85px;
    flex: 0 0 85px; }

  .cart__price-wrapper {
    -webkit-flex: 0 1 24%;
    -moz-flex: 0 1 24%;
    -ms-flex: 0 1 24%;
    flex: 0 1 24%;
    text-align: right; }

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

  .cart-message {
    padding-top: 20px; } }
.additional-checkout-buttons [type="submit"][disabled="disabled"] {
  opacity: 0.5; }
.additional-checkout-buttons button {
  border-radius: 0;
  width: 100%; }
.additional-checkout-buttons #paypal-express-button {
  width: 100%;
  margin: 0;
  padding: 0; }
.additional-checkout-buttons input[type="image"] {
  padding: 0;
  border: 0;
  background: transparent; }

.additional-checkout-button {
  margin: 0 5px 10px !important; }
  .additional-checkout-button + .additional-checkout-button {
    margin-left: 5px !important; }

.site-header--wrapper {
  border-bottom: 1px solid #f2f2f2; }
  @media only screen and (max-width: 1099px) {
    .site-header--wrapper .page-width {
      padding: 0; } }
  .site-header--wrapper .site-header {
    position: relative;
    background: white; }
    @media only screen and (min-width: 1100px) {
      .site-header--wrapper .site-header.logo--center {
        padding-top: 25px; } }
  .site-header--wrapper .site-header__icons-wrapper img {
    vertical-align: bottom; }
    @media only screen and (min-width: 1100px) {
      .site-header--wrapper .site-header__icons-wrapper img {
        margin-right: 5px; } }
  .site-header--wrapper .site-header__icons-wrapper a {
    color: #b6b6b6; }
  @media only screen and (min-width: 1100px) {
    .site-header--wrapper .site-header__search-toggle {
      position: absolute;
      top: 10px;
      right: 414px; } }
  .site-header--wrapper .site-header__redirects {
    position: absolute;
    right: 15px;
    top: 0;
    width: 110px; }
    .site-header--wrapper .site-header__redirects select {
      background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/ico-select-white.svg?v=10159525080804463290);
      background-position: 85% 57%;
      padding: 12px 25px 8px 30px;
      color: white;
      background-color: transparent;
      top: 2px; }
    @media only screen and (max-width: 1099px) {
      .site-header--wrapper .site-header__redirects {
        right: initial; }
        .site-header--wrapper .site-header__redirects select {
          border: none;
          margin: 0; } }
    .site-header--wrapper .site-header__redirects img {
      position: relative;
      top: -3px;
      right: -15px;
      height: 24px;
      width: 24px; }
      @media only screen and (max-width: 1099px) {
        .site-header--wrapper .site-header__redirects img {
          right: -8px; } }
  .site-header--wrapper .site-header__phone {
    position: absolute;
    right: 428px;
    top: 0;
    padding: 8px 0; }
    .site-header--wrapper .site-header__phone img {
      position: relative;
      top: 2px;
      width: 24px;
      height: 24px; }
    @media only screen and (max-width: 1099px) {
      .site-header--wrapper .site-header__phone {
        position: relative;
        right: 0;
        top: -2px;
        display: inline-block;
        padding: 5px 8px;
        vertical-align: middle; } }
  .site-header--wrapper .site-header__wishlist {
    position: absolute;
    right: 315px;
    top: 0;
    padding: 8px 0; }
    .site-header--wrapper .site-header__wishlist img {
      position: relative;
      top: 2px; }
    @media only screen and (max-width: 1099px) {
      .site-header--wrapper .site-header__wishlist {
        position: relative;
        right: 0;
        top: -2px;
        display: inline-block;
        padding: 5px 8px;
        vertical-align: middle; } }
    @media only screen and (max-width: 1099px) {
      .site-header--wrapper .site-header__wishlist .site-header__cart-count {
        top: 2px; } }

.site-header__top {
  background: #383e42; }

.site-header__logo {
  margin: 0; }
  .logo-align--center .site-header__logo {
    text-align: center;
    margin: 0 auto; }
    @media only screen and (max-width: 1099px) {
      .logo-align--center .site-header__logo {
        text-align: left;
        margin: 15px 0; } }

.site-header__logo-link {
  display: inline-block;
  word-break: break-word; }

.site-header__logo-image {
  display: block; }
  @media only screen and (min-width: 1100px) {
    .site-header__logo-image {
      margin: 0 auto; } }

.site-header__logo-image--centered img {
  margin: 0 auto; }

@media only screen and (min-width: 1100px) {
  .logo-align--center .site-header__logo-link {
    margin: 0 auto; } }
.site-header__icons {
  position: relative;
  white-space: nowrap; }
  @media only screen and (min-width: 1100px) {
    .site-header__icons {
      text-align: right; } }

.site-header__icons-wrapper {
  position: relative;
  margin-right: -10px;
  margin-top: 12px;
  font-size: 0.8125rem;
  z-index: 2;
  min-width: 275px; }
  @media screen and (max-width: 415px) {
    .site-header__icons-wrapper {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between; } }
  @media only screen and (max-width: 1099px) {
    .site-header__icons-wrapper {
      min-width: 100%; } }
  @media only screen and (max-width: 1099px) {
    .site-header__icons-wrapper {
      background: #484d50;
      padding: 4px 10px 4px 4px;
      margin-top: 0; } }
  .site-header__icons-wrapper input {
    color: #383e42;
    font-weight: normal; }
    .site-header__icons-wrapper input::-webkit-input-placeholder {
      color: white;
      opacity: 0; }
    .site-header__icons-wrapper input::-moz-placeholder {
      color: white;
      opacity: 0; }
    .site-header__icons-wrapper input:-ms-input-placeholder {
      color: white;
      opacity: 0; }
    .site-header__icons-wrapper input::-ms-input-placeholder {
      color: white;
      opacity: 0; }

.site-header__cart,
.site-header__search,
.site-header__account {
  position: relative; }

.site-header__account {
  top: -2px; }
  .site-header__account img {
    position: relative;
    top: 2px; }

.site-header__cart {
  top: -1px; }
  .site-header__cart img {
    position: relative;
    bottom: -2px; }

.site-header__search {
  padding-right: 560px;
  top: 1px; }
  .site-header__search .search--focus .search-header__input {
    border: #60666a solid 1px; }

@media only screen and (min-width: 1100px) {
  .site-header__cart,
  .site-header__account {
    position: absolute;
    top: 0;
    right: 130px;
    padding: 8px 0; }

  .site-header__account {
    right: 220px; } }
.site-header__cart-title,
.site-header__search-title {
  display: inline-block;
  vertical-align: middle;
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.site-header__cart-title {
  margin-right: 3px; }

@media only screen and (max-width: 1099px) {
  .site-header__cart-count {
    display: inline-block;
    min-width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 16px;
    text-align: center;
    background: #e3120b;
    border-radius: 50%; } }
.site-header__menu {
  display: none; }

.site-header .icon-search,
.site-header .icon-hamburger,
.site-header .icon-close,
.site-header .icon-cart {
  height: 30px; }
  @media only screen and (min-width: 1100px) {
    .site-header .icon-search,
    .site-header .icon-hamburger,
    .site-header .icon-close,
    .site-header .icon-cart {
      margin-right: 3px;
      margin-top: 3px; } }

@media only screen and (max-width: 1099px) {
  .site-header__icons {
    padding-right: 10px; }

  .site-header .icon-close,
  .site-header .icon-hamburger {
    margin-top: -7px;
    height: 20px;
    fill: white; }

  .site-header__menu,
  .site-header__search-toggle,
  .site-header__cart,
  .site-header__account {
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    padding: 18px 8px;
    margin: 0; }
    .site-header__icons--plus .site-header__menu, .site-header__icons--plus
    .site-header__search-toggle, .site-header__icons--plus
    .site-header__cart, .site-header__icons--plus
    .site-header__account {
      padding: 5px 8px; }

  .site-header__logo {
    text-align: left; } }
.notification-bar {
  display: none;
  text-align: center;
  padding-top: 15px;
  margin-bottom: 25px; }
  @media only screen and (min-width: 1100px) {
    .notification-bar {
      display: block; } }
  .template-index .notification-bar {
    margin-bottom: 0; }

.notification-bar__message {
  display: block;
  font-family: "Econ Sans Medium", Helvetica, sans-serif;
  font-size: 13px;
  background: #383e42;
  padding: 6px 10px;
  color: white; }
  @media only screen and (min-width: 1100px) {
    .notification-bar__message {
      padding: 8px 30px; } }

.notification-bar__icon {
  display: inline-block;
  position: relative;
  top: 2px;
  max-height: 20px;
  margin-right: 11px; }

.article--listing {
  padding-top: 30px;
  margin-bottom: 30px; }

.article__title {
  margin-bottom: 5px; }

.article__author {
  margin-right: 10px; }

.article__author,
.article__date {
  display: inline-block;
  margin-bottom: 10px; }
  .template-article .article__author, .template-article
  .article__date {
    margin-bottom: 0; }

.article__tags {
  margin-bottom: 27.5px; }

.article__tags--list {
  font-style: italic; }

/*============================================================================
  Blog article grid
==============================================================================*/
.grid--blog {
  margin-bottom: -55px;
  overflow: auto; }

.article__grid-tag {
  margin-right: 10px; }

.article__grid-meta {
  margin-bottom: 55px; }

@media only screen and (max-width: 768px) {
  .article__grid-meta--has-image {
    float: left;
    width: 60%;
    padding-left: 10px; } }
.article__grid-excerpt {
  margin-bottom: 17.5px; }

.article__grid-image {
  display: block;
  clear: both;
  margin-bottom: 27.5px; }
  @media only screen and (max-width: 768px) {
    .article__grid-image {
      float: left;
      width: 40%;
      margin-bottom: 55px; } }
  .article__grid-image img {
    display: block; }

.article__list-image {
  margin: 0 auto; }

.sidebar {
  margin-top: 40px; }

.sidebar__list {
  list-style: none;
  margin-bottom: 30px; }
  .sidebar__list li {
    margin-bottom: 10px; }

.pagination {
  margin-top: 30px;
  text-align: center;
  list-style: none;
  font-size: 0.9375rem;
  padding: 30px 0;
  border-top: 1px solid #f2f2f2; }
  .pagination li {
    display: inline-block; }
  .pagination .icon {
    display: block;
    height: 20px;
    vertical-align: middle; }

.pagination__text {
  padding: 0 15px; }
  .pagination__text .next, .pagination__text .prev {
    display: none; }
  .pagination__text span {
    margin: 0 7px;
    font-size: 0.8125rem; }
    .pagination__text span.current {
      font-weight: 700; }

.comment {
  margin-bottom: 25px; }
  .comment:last-child {
    margin-bottom: 0; }

.comment__content {
  margin-bottom: 5px; }

.comment__meta-item {
  margin-right: 10px;
  font-size: 0.875rem; }
  .comment__meta-item:first-child::before {
    content: '\2014 \0020'; }

.btn--share {
  margin-right: 5px;
  margin-bottom: 10px; }
  .btn--share .icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 4px; }
  .btn--share .icon-facebook {
    fill: #3b5998; }
  .btn--share .icon-twitter {
    fill: #00aced; }
  .btn--share .icon-pinterest {
    fill: #cb2027; }

.share-title {
  display: inline-block;
  vertical-align: middle; }

.search-bar__form {
  display: table;
  width: 100%;
  position: relative;
  height: 40px;
  border: 1px solid transparent; }

@media only screen and (max-width: 768px) {
  .search-bar__form {
    width: 100%; } }
.search-bar__submit .icon {
  position: relative;
  top: -1px;
  height: 30px; }

.search-bar__submit,
.search-header__submit {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 0 0 35px;
  height: 100%;
  z-index: 1; }
  @media only screen and (max-width: 1099px) {
    .search-bar__submit,
    .search-header__submit {
      padding-left: 0; } }

.search-header__input,
.search-bar__input {
  background-color: transparent;
  border-radius: 0;
  border-color: transparent;
  padding-left: 35px;
  width: 100%;
  max-height: 40px; }
  .search-header__input::-ms-clear, .search-header__input::-ms-reveal,
  .search-bar__input::-ms-clear,
  .search-bar__input::-ms-reveal {
    appearance: none;
    display: none;
    margin: 0; }
  .search-header__input::-webkit-search-decoration, .search-header__input::-webkit-search-cancel-button, .search-header__input::-webkit-search-results-button, .search-header__input::-webkit-search-results-decoration,
  .search-bar__input::-webkit-search-decoration,
  .search-bar__input::-webkit-search-cancel-button,
  .search-bar__input::-webkit-search-results-button,
  .search-bar__input::-webkit-search-results-decoration {
    appearance: none;
    -webkit-appearance: none;
    display: none; }
  .search-header__input::-webkit-input-placeholder,
  .search-bar__input::-webkit-input-placeholder {
    color: #121212;
    opacity: 0.6; }
  .search-header__input::-moz-placeholder,
  .search-bar__input::-moz-placeholder {
    color: #121212;
    opacity: 0.6; }
  .search-header__input:-ms-input-placeholder,
  .search-bar__input:-ms-input-placeholder {
    color: #121212;
    opacity: 0; }
  .search-header__input::-ms-input-placeholder,
  .search-bar__input::-ms-input-placeholder {
    color: #121212;
    opacity: 1; }

.search-bar__input {
  border: 1px solid transparent; }
  .search-bar__input:focus {
    border-color: transparent; }

/*============================================================================
  The search submit button has pointer-events: none which also
  effects the :hover style. This forces the style to be applied.
==============================================================================*/
.search-header__input:hover + .btn--link {
  opacity: 0.6; }

/*================ Mobile Search Bar ================*/
.search-bar {
  background-color: white;
  border: 10px solid #f2f2f2;
  padding: 0 15px; }

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

.search-bar__table-cell {
  display: table-cell;
  vertical-align: middle; }

.search-bar__form-wrapper {
  width: 90%; }

/*================ Header Search ================*/
.search-header {
  color: #e3120b;
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100px;
  vertical-align: middle;
  top: 2px; }
  .search-header i {
    color: #b6b6b6;
    font-style: normal;
    position: relative;
    top: -3px; }
  .search-header button {
    font-family: "Econ Sans Light", Helvetica, sans-serif; }
  .search-header.search--focus {
    max-width: 250px; }
    .search-header.search--focus i {
      display: none; }
    .search-header.search--focus input {
      color: white; }
      .search-header.search--focus input::-webkit-input-placeholder {
        color: white;
        opacity: 1; }
      .search-header.search--focus input::-moz-placeholder {
        color: white;
        opacity: 1; }
      .search-header.search--focus input:-ms-input-placeholder {
        color: white;
        opacity: 1; }
      .search-header.search--focus input::-ms-input-placeholder {
        color: white;
        opacity: 1; }

.search-results {
  z-index: 8889;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #E6EAEC;
  box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden; }
  .search-results li {
    display: block;
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 0;
    border-top: 1px solid #d4d4d4;
    line-height: 38px;
    overflow: hidden; }
    .search-results li:first-child {
      border-top: none; }
  .search-results a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
  .search-results .thumbnail {
    display: block;
    width: 32px;
    height: 32px;
    margin: 3px 0 3px 3px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
  .search-results .title {
    font-size: 12px;
    max-width: 207px;
    padding-left: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    color: #79878E;
    font-weight: 600; }

.search-header__input {
  cursor: pointer; }

.search--focus .search-header__input {
  outline: none;
  border-color: #f2f2f2;
  cursor: auto; }
.search--focus .search-header__submit {
  padding-left: 10px;
  pointer-events: auto; }

.search-header__submit {
  pointer-events: none; }

.search-header,
.search-header__submit {
  transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }

.no-svg .site-header__search {
  display: inline-block; }
.no-svg .search-header {
  max-width: none; }
.no-svg .search__input {
  width: auto;
  padding-left: 60px; }

/*================ Mobile Site Nav ================*/
.mobile-nav {
  display: block;
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.25s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .sub-nav--is-open .mobile-nav {
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .third-nav--is-open .mobile-nav {
    -ms-transform: translate3d(-200%, 0, 0);
    -webkit-transform: translate3d(-200%, 0, 0);
    transform: translate3d(-200%, 0, 0); }

.mobile-nav__link,
.mobile-nav__sublist-link {
  display: block;
  width: 100%;
  padding: 15px;
  color: #121212;
  font-family: "Econ Sans Medium", Helvetica, sans-serif; }
  .mobile-nav__link:hover, .mobile-nav__link:focus,
  .mobile-nav__sublist-link:hover,
  .mobile-nav__sublist-link:focus {
    opacity: 0.6; }

.mobile-nav__link {
  position: relative; }

.mobile-nav__sublist-link:not(.mobile-nav__sublist-header) {
  padding-left: 70px; }

.mobile-nav__item {
  display: block;
  width: 100%; }
  .mobile-nav__item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 12px;
    width: 10px;
    margin: -6px 0 0 -5px; }

.mobile-nav__return {
  border-right: 1px solid #f2f2f2; }

.mobile-nav__return-btn {
  position: relative;
  padding: 24px 0;
  width: 55px; }

.mobile-nav__icon {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  pointer-events: none;
  overflow: hidden; }

.mobile-nav__table {
  display: table;
  width: 100%; }

.mobile-nav__table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 1%;
  text-align: left;
  white-space: normal; }

.mobile-nav__toggle-button {
  padding: 20px 15px; }

.mobile-nav__dropdown {
  position: absolute;
  z-index: 8;
  width: 100%;
  top: 0;
  right: -100%;
  display: none; }
  .is-active + .mobile-nav__dropdown {
    display: block;
    opacity: 1; }
  .mobile-nav__dropdown.is-closing {
    transition: all 0.25s cubic-bezier(0.29, 0.63, 0.44, 1);
    opacity: 0.99; }
  .mobile-nav__dropdown .mobile-nav__sublist-header {
    display: table-cell;
    vertical-align: middle; }

/*================ Mobile nav wrapper ================*/
.mobile-nav-wrapper {
  -ms-transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  position: absolute;
  transition: all 0.25s cubic-bezier(0.29, 0.63, 0.44, 1);
  display: none;
  overflow: hidden;
  width: 100%;
  top: 0;
  left: 0;
  background: white; }
  .mobile-nav-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #f2f2f2; }
  .mobile-nav-wrapper.js-menu--is-open {
    display: block; }

.mobile-nav--open .icon-close {
  display: none; }

.mobile-nav--close .icon-hamburger {
  display: none; }

/*================ Modals ================*/
.modal {
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0; }

.modal--is-active {
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  display: block;
  opacity: 1;
  overflow: hidden; }

.modal__inner {
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  height: 100%; }

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

.modal__close {
  border: 0;
  padding: 30px;
  position: fixed;
  top: 0;
  right: 0; }
  .modal__close .icon {
    font-size: 1.25rem; }

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

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

.slideshow {
  position: relative; }
  .slideshow::before {
    -ms-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    content: '';
    z-index: 20;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    opacity: 1;
    pointer-events: none; }
  .slideshow.slick-initialized::before {
    opacity: 0; }
  .slideshow .slick-prev,
  .slideshow .slick-next {
    top: 0;
    height: 100%;
    margin-top: 0;
    width: 40px; }
  .slideshow .slick-prev {
    left: 0; }
  .slideshow .slick-next {
    right: 0; }
  .slideshow .slick-dots {
    display: inline-block;
    text-align: center; }

.video-is-playing .slick-dots {
  display: none !important; }

.slideshow__pause:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: white;
  background-color: #3e51b5;
  padding: 15px;
  z-index: 10000;
  transition: none; }
  .video-is-playing .slideshow__pause:focus {
    display: none; }

.slideshow__pause-stop {
  display: block; }
  .is-paused .slideshow__pause-stop {
    display: none; }

.slideshow__pause-play {
  display: none; }
  .is-paused .slideshow__pause-play {
    display: block; }

/*================ General slide styles ================*/
.slideshow__slide {
  position: relative;
  overflow: hidden; }

.slideshow__link {
  display: block;
  color: inherit;
  background: #FFF; }
  .slideshow__link:active, .slideshow__link:focus {
    opacity: 1; }

.slideshow__title {
  font-size: 1.5rem;
  font-family: "Milo Serif Text", Georgia, serif;
  line-height: 1.4; }
  @media only screen and (min-width: 769px) {
    .slideshow__title {
      font-size: 2.125rem;
      line-height: 1.2;
      margin-bottom: 2rem; } }

.slideshow__subtitle {
  font-family: "Milo Serif Text", Georgia, serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #333333; }
  @media only screen and (min-width: 769px) {
    .slideshow__subtitle {
      font-size: 1.3125rem; } }

.slideshow__cta {
  margin-top: 24px; }
  @media only screen and (min-width: 769px) {
    .slideshow__cta {
      margin-top: auto; } }

/*================ Slide images ================*/
.slideshow__image {
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  .slick-initialized .slideshow__image, .no-js .slideshow__image {
    opacity: 1; }
  .slideshow__slide--background-video .slideshow__image {
    opacity: 0; }
  .no-autoplay .slideshow__image {
    opacity: 1; }

.ie9 .slideshow__slide {
  z-index: 1 !important; }
.ie9 .slick-dots {
  z-index: 2; }

/*================ Slide text ================*/
.slideshow__text-wrap {
  height: 100%; }
  @media only screen and (max-width: 768px) {
    .slideshow__text-wrap {
      height: auto; } }
  .slideshow__link .slideshow__text-wrap {
    cursor: inherit; }
  .slideshow__slide--has-background-video .slideshow__text-wrap {
    padding-top: 90px; }
  .video-is-playing .slideshow__text-wrap {
    display: none; }
  .slideshow__slide.video-is-paused .slideshow__text-wrap {
    display: none; }

.slideshow__text-content {
  padding: 30px 16px;
  width: 100%;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  transition-delay: 0.3s;
  z-index: 3; }
  @media only screen and (min-width: 769px) {
    .slideshow__text-content {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      height: 100%;
      padding: 50.6px 32px 65px; } }
  .slick-active .slideshow__text-content, .no-js .slideshow__text-content {
    opacity: 1; }
  .slideshow__text-content::after {
    content: '';
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    border: 3px solid white;
    border-top-color: transparent;
    -moz-animation: spin 0.65s infinite linear;
    -o-animation: spin 0.65s infinite linear;
    -webkit-animation: spin 0.65s infinite linear;
    animation: spin 0.65s infinite linear;
    opacity: 1;
    transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
    bottom: -30px;
    left: 50%; }
  .slick-initialized .slideshow__text-content::after, .no-js .slideshow__text-content::after {
    opacity: 0;
    visibility: hidden;
    content: none; }

.slideshow__subtitle {
  display: block; }

/*================ Video styles ================*/
.slideshow__slide--has-background-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; }

.slideshow__video {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2; }

.slideshow__video--background {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in; }
  .autoplay .slideshow__video--background.video-is-loaded {
    display: block;
    visibility: visible;
    opacity: 1; }

.slideshow__slide--background-video::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; }

.slideshow__video--chrome {
  display: none;
  opacity: 0;
  visibility: none;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in; }
  .ie9 .slideshow__video--chrome {
    display: block; }
  .slideshow__slide.video-is-playing .slideshow__video--chrome, .slideshow__slide.video-is-paused .slideshow__video--chrome {
    display: block;
    visibility: visible;
    opacity: 1; }

/*================ Video control buttons ================*/
.slideshow__video-control {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 5px;
  z-index: 4;
  transition: all 0.1s ease-out; }
  .slideshow__video-control:hover, .slideshow__video-control:focus {
    opacity: 0.7; }

.video-loader {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 3px solid white;
  border-top-color: transparent;
  -moz-animation: spin 0.65s infinite linear;
  -o-animation: spin 0.65s infinite linear;
  -webkit-animation: spin 0.65s infinite linear;
  animation: spin 0.65s infinite linear;
  transition: all 0.1s ease-out 0.5s;
  z-index: 4;
  top: 50%;
  left: 50%; }
  .ie9 .video-loader, .video-is-loaded .video-loader, .video-is-playing .video-loader, .video-is-paused .video-loader, .autoplay .video-loader, .no-autoplay .video-loader {
    content: none;
    display: none; }
  .video-is-loading .video-loader, .autoplay .video-is-loading .video-loader, .no-autoplay .video-is-loading .video-loader {
    display: block;
    visibility: visible;
    opacity: 1; }

.slideshow__video-control--play-wrapper {
  height: 30px; }
  @media only screen and (min-width: 769px) {
    .slideshow__video-control--play-wrapper {
      height: 45px; } }

@media only screen and (min-width: 769px) {
  .slideshow__video-control--play-wrapper--push {
    margin-top: 25px; } }
.slideshow__video-control--play {
  opacity: 0;
  position: relative;
  margin: 0 auto; }
  .slideshow__video-control--play .slideshow__video--background {
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .video-is-loaded .slideshow__video-control--play {
    display: block;
    visibility: visible;
    opacity: 1; }
  .video-is-loading .slideshow__video-control--play, .video-is-playing .slideshow__video-control--play, .slideshow__slide.video-is-paused .slideshow__video-control--play {
    display: none;
    visibility: hidden;
    opacity: 0; }
  .slideshow__video-control--play .icon {
    width: 42px;
    height: 100%; }
    @media only screen and (min-width: 769px) {
      .slideshow__video-control--play .icon {
        width: 65px; } }

.slideshow__video-control--close {
  top: 10px;
  right: 10px;
  background-color: white;
  color: #494949; }
  .video-is-playing .slideshow__video-control--close, .slideshow__slide.video-is-paused .slideshow__video-control--close {
    display: block;
    visibility: visible;
    opacity: 1; }
  .slideshow__video-control--close .icon {
    display: block;
    width: 20px;
    height: 20px; }

.grid-view-item.product-price--sold-out .product-price__price {
  text-decoration: line-through; }

.product-price__sale--single {
  padding-left: 10px; }

.product-price__sale-label {
  display: inline-block;
  white-space: nowrap; }

.product-price__sold-out {
  white-space: nowrap; }

/*================ Terms & Conditions ================*/
.terms-and-conditions {
  *zoom: 1;
  margin-top: 20px;
  display: inline-block;
  width: 100%; }
  .terms-and-conditions::after {
    content: '';
    display: table;
    clear: both; }
  .terms-and-conditions input {
    float: left;
    margin-top: 2px;
    padding: 0; }
  .terms-and-conditions span {
    display: inline-block;
    width: calc(100% - 35px);
    text-align: left;
    float: right; }
  .terms-and-conditions.ajax-terms {
    display: block; }
    .terms-and-conditions.ajax-terms span {
      white-space: normal; }
      .terms-and-conditions.ajax-terms span a {
        color: #121212;
        display: inline; }

.terms-and-conditions-sign-up-form {
  margin-bottom: 20px; }

/*================ Swatches ================*/
.swatches {
  display: inline-block;
  width: 100%;
  float: left;
  padding: 0 5px;
  margin-bottom: 25px; }
  .swatches .swatch {
    float: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    margin-right: 10px; }
    .swatches .swatch:last-child {
      margin: 0; }
    .swatches .swatch .swatch__color {
      display: inline-block;
      width: 30px;
      height: 30px; }
    .swatches .swatch .swatch__name {
      display: inline-block;
      width: 100%; }
    .swatches .swatch input {
      width: 0;
      height: 0;
      position: absolute;
      top: -30px; }

/*================ CTA Modals ================*/
.cta {
  position: relative;
  display: none;
  transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .cta.cta--show {
    display: block; }
  .cta input[type="submit"], .cta button {
    vertical-align: top;
    height: 45px; }
  .cta .btn {
    margin-bottom: 5px; }
  .cta.cta--slidedown {
    background-color: #3e51b5;
    color: white;
    padding: 25px;
    text-align: center;
    height: 0;
    padding: 0;
    overflow: hidden; }
    .cta.cta--slidedown.cta--animate {
      height: auto;
      padding: 25px; }
  .cta.cta--popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999999;
    opacity: 0; }
    .cta.cta--popup .cta__content-inner {
      opacity: 0;
      position: relative;
      background-color: white;
      color: #121212;
      text-align: center;
      white-space: normal;
      width: 80%;
      max-width: 620px;
      margin: 50px auto 0;
      transition: opacity 0.75s cubic-bezier(0.29, 0.63, 0.44, 1); }
      .cta.cta--popup .cta__content-inner .cta__content .cta__content-title {
        font-family: "Milo Serif Bold", Georgia, serif; }
    .cta.cta--popup .cta__content-header {
      background: #383e42; }
    .cta.cta--popup .cta__content-header__logo {
      margin: 0; }
      .cta.cta--popup .cta__content-header__logo img {
        display: block; }
    .cta.cta--popup .cta__content {
      padding: 25px; }
    .cta.cta--popup h2 {
      margin-bottom: 15px; }
    .cta.cta--popup p {
      margin-bottom: 20px; }
    .cta.cta--popup .cta__content-newsletter {
      max-width: 850px;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
      .cta.cta--popup .cta__content-newsletter .cta__content {
        padding-top: 25px;
        padding-bottom: 25px;
        background: rgba(255, 255, 255, 0.9); }
        @media only screen and (min-width: 769px) {
          .cta.cta--popup .cta__content-newsletter .cta__content {
            padding-top: 100px;
            padding-bottom: 100px;
            margin-left: 50%; } }
        .cta.cta--popup .cta__content-newsletter .cta__content form {
          max-width: 360px;
          margin: 0 auto; }
          .cta.cta--popup .cta__content-newsletter .cta__content form button {
            min-width: 150px; }
        .cta.cta--popup .cta__content-newsletter .cta__content .cta__content-title {
          padding-bottom: 25px;
          font-size: 1.625rem;
          color: #121212; }
        .cta.cta--popup .cta__content-newsletter .cta__content .cta__content-description {
          padding-bottom: 25px; }
        .cta.cta--popup .cta__content-newsletter .cta__content .cta__input {
          width: 100%;
          margin-bottom: 25px; }
    .cta.cta--popup.cta--animate {
      opacity: 1; }
      .cta.cta--popup.cta--animate .cta__content-inner {
        opacity: 1; }
    .cta.cta--popup .error {
      max-width: 300px;
      margin: 0 auto;
      padding-top: 25px;
      text-align: center; }
  .cta .cta__close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
    line-height: 30px;
    font-weight: bold;
    color: white;
    background-color: #3e51b5;
    border-radius: 50%; }

/*================ Module | Filters and Sort toolbar and selection ================*/
.filters-toolbar-wrapper {
  border-bottom: 1px solid #f2f2f2;
  border-top: 1px solid #f2f2f2;
  margin-bottom: 10px; }
  .no-flexbox .filters-toolbar-wrapper {
    padding: 15px 0; }
  @media only screen and (min-width: 769px) {
    .filters-toolbar-wrapper {
      margin-bottom: 55px; } }

.filters-toolbar {
  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; }

.filters-toolbar__item {
  min-width: 33%;
  -webkit-flex: 1 1 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%; }
  .no-flexbox .filters-toolbar__item {
    text-align: left !important; }

.filters-toolbar__item--count {
  min-width: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center; }

.no-flexbox .filters-toolbar select {
  width: 100% !important;
  text-align: left !important;
  min-width: 0;
  display: inline-block;
  float: left; }
  .no-flexbox .filters-toolbar select label, .no-flexbox .filters-toolbar select select {
    float: left;
    display: inline-block;
    max-width: 50%;
    height: 25px;
    margin-right: 15px;
    padding: 0; }
  .no-flexbox .filters-toolbar select.filters-toolbar__item--count {
    height: 25px;
    padding: 0;
    float: right; }
    .no-flexbox .filters-toolbar select.filters-toolbar__item--count span {
      line-height: 25px; }

.filters-toolbar__input {
  -ms-transition: all ease-out 0.15s;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  border: 0 solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  height: 55px;
  opacity: 1; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__input {
      height: 46px; } }
  .filters-toolbar__input.hidden {
    opacity: 0; }
  .filters-toolbar__input option {
    text-overflow: ellipsis;
    overflow: hidden; }

.filters-toolbar__input--sort {
  margin-right: -10px; }
  .no-flexbox .filters-toolbar__input--sort {
    margin: 0; }

.filters-toolbar__input--filter {
  margin-left: -15px; }
  .no-flexbox .filters-toolbar__input--filter {
    margin: 0; }

.filters-toolbar__product-count {
  font-style: italic;
  line-height: 55px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__product-count {
      line-height: 46px; } }

/* Footer Styles */
.footer-section.site-footer__newsletter--wrapper {
  background: #383e42;
  padding: 30px 0;
  font-family: "Econ Sans Light", Helvetica, sans-serif; }
  .footer-section.site-footer__newsletter--wrapper * {
    color: white; }
  .footer-section.site-footer__newsletter--wrapper h3 {
    margin-bottom: 25px;
    margin-top: 15px; }
  .footer-section.site-footer__newsletter--wrapper p {
    font-size: 0.875rem; }
  .footer-section.site-footer__newsletter--wrapper .site-footer__newsletter {
    margin: 15px 0 0; }
  .footer-section.site-footer__newsletter--wrapper .site-footer__newsletter {
    display: inline-block;
    width: 100%; }
    .footer-section.site-footer__newsletter--wrapper .site-footer__newsletter input[type="email"] {
      width: 80%;
      float: left;
      border: none;
      color: #121212;
      background-color: white;
      height: 45px; }
    .footer-section.site-footer__newsletter--wrapper .site-footer__newsletter button {
      border: none;
      text-align: center;
      width: 18%;
      margin-left: 2%;
      float: left;
      color: white;
      height: 45px; }
    .footer-section.site-footer__newsletter--wrapper .site-footer__newsletter .newsletter-btn {
      font-family: "Econ Sans Medium", Helvetica, sans-serif; }
    .footer-section.site-footer__newsletter--wrapper .site-footer__newsletter .newsletter-notification {
      clear: both;
      padding-top: 10px; }

.site-footer {
  font-family: "Econ Sans Light", Helvetica, sans-serif;
  background: #f2f2f2; }
  @media only screen and (max-width: 768px) {
    .site-footer {
      text-align: center; } }

@media only screen and (min-width: 769px) {
  .site-footer__linklist--center {
    margin-top: 35px;
    padding-right: 0; } }
.site-footer__linklist,
.site-footer__newsletter {
  margin-top: 35px; }
  @media only screen and (min-width: 769px) {
    .site-footer__linklist,
    .site-footer__newsletter {
      margin-top: 55px; } }

.site-footer__linklist {
  margin: 25px 0; }
  .site-footer__linklist .site-footer__linklist-item {
    display: inline-block;
    padding: 5px 10px 5px 30px; }
    .site-footer__linklist .site-footer__linklist-item:first-child {
      padding-left: 0; }
    .site-footer__linklist .site-footer__linklist-item a {
      color: #121212;
      font-size: 0.875rem; }

.site-footer__top {
  border-bottom: 1px solid #d0d6d9; }
  .site-footer__top .social-icons__link {
    background: #383e42;
    border-radius: 100%;
    display: block;
    height: 30px;
    position: relative;
    text-align: center;
    width: 30px; }
    .site-footer__top .social-icons__link svg {
      display: inline-block;
      fill: white;
      height: 20px;
      left: 5px;
      position: absolute;
      top: 5px;
      vertical-align: middle;
      width: 20px; }
      .site-footer__top .social-icons__link svg.icon-google, .site-footer__top .social-icons__link svg.icon-facebook {
        margin-top: -2px; }
    .site-footer__top .social-icons__link:first-child {
      margin-left: 0; }

.site-footer__bottom {
  padding: 20px 0; }
  .site-footer__bottom .site-footer__copyright {
    margin: 0; }

.site-footer__newsletter {
  margin: 35px auto 0; }
  @media only screen and (min-width: 769px) {
    .site-footer__newsletter {
      max-width: 320px;
      margin: 55px 0 0;
      max-width: none; } }

.site-footer__social-icons,
.site-footer__copyright {
  margin-top: 25px; }
  @media only screen and (max-width: 768px) {
    .site-footer__social-icons,
    .site-footer__copyright {
      margin-top: 5px;
      text-align: center !important;
      margin-bottom: 25px; } }

.site-footer__copyright {
  text-align: center; }

.site-footer__copyright-content {
  display: inline-block;
  color: #383e42;
  text-align: center;
  margin: 0 0 9px;
  width: 100%;
  font-size: 13px; }
  @media only screen and (min-width: 769px) {
    .site-footer__copyright-content {
      width: auto;
      text-align: left;
      margin: 9px 0 0;
      padding-right: 20px; } }
  .site-footer__copyright-content a {
    color: #383e42; }
  .site-footer__copyright-content.economist_footer a {
    color: #121212; }
  .site-footer__copyright--right .site-footer__copyright-content {
    padding: 0 0 0 20px; }
    .site-footer__copyright--right .site-footer__copyright-content:first-child {
      padding-left: 0; }
    @media only screen and (min-width: 769px) {
      .site-footer__copyright--right .site-footer__copyright-content {
        padding: 0 0 0 30px; } }

.site-footer__copyright-content--powered-by {
  padding-right: 0;
  float: right; }

.site-footer__payment-icons {
  margin-top: 10px; }
  @media only screen and (min-width: 769px) {
    .site-footer__payment-icons {
      margin-top: 10px; }
      .site-footer__copyright--right .site-footer__payment-icons {
        padding-left: 30px; } }
  .site-footer__payment-icons .payment-icon {
    margin-right: 5px; }
    .site-footer__payment-icons .payment-icon svg {
      fill: #383e42; }
    .site-footer__payment-icons .payment-icon .icon {
      width: 40px;
      height: 40px; }
    .site-footer__payment-icons .payment-icon:last-child {
      margin-right: 0; }

.cred {
  background: white;
  padding: 15px 0;
  font-family: "Econ Sans Light", Helvetica, sans-serif; }
  @media only screen and (max-width: 768px) {
    .cred .economistgroup-logos {
      text-align: center; } }
  .cred .economistgroup-logos img {
    height: 38px; }

.site-footer__copyright--bottom {
  margin-top: 35px; }

@media only screen and (min-width: 769px) {
  .site-footer__payment-icons--right {
    float: right;
    margin-top: 0; } }
.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 768px) {
    .feature-row {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

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

.feature-row__image {
  display: block;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    .feature-row__image {
      order: 1; } }

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media only screen and (max-width: 768px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media only screen and (min-width: 769px) {
  .feature-row__text--left {
    padding-left: 35px; }

  .feature-row__text--right {
    padding-right: 35px; } }
.hero {
  position: relative;
  height: 475px;
  display: table;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%; }

/* Feature Block */
.hero-wrapper .hero {
  background-color: white; }
.hero-wrapper .hero-3--bottom {
  margin-top: 30px; }

@media only screen and (min-width: 1100px) {
  .grid--hero-wrapper {
    display: block; } }
/* Product Carousel */
.product-carousel {
  text-align: center; }
  .product-carousel .product-carousel__item {
    margin: 0 15px 0 0; }
    .product-carousel .product-carousel__item .grid_sizer img {
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      top: 50%; }

.product-carousel-recommended.loading {
  height: 400px;
  overflow: hidden;
  background: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/ajax-loader.gif?v=12666879963503634074) no-repeat center center; }
  .product-carousel-recommended.loading div, .product-carousel-recommended.loading ul {
    opacity: 0; }
@media only screen and (min-width: 640px) {
  .product-carousel-recommended .grid_sizer_de {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; } }

/* Trending Carousel */
[data-section-type="trending"] .product-carousel .grid-view-item__image--wrapper {
  background: white; }

/* Product Page Directed Edge Carousel */
#shopify-section-recommend .product-carousel .grid-view-item__image--wrapper {
  background: white; }

.hero--x-small {
  height: 94px; }

.hero--small {
  height: 200px; }

.hero--medium {
  height: 357px; }

.hero--large {
  height: 200px; }

.hero--x-large {
  height: 582px; }

@media only screen and (min-width: 769px) {
  .hero--x-small {
    height: 125px; }

  .hero--small {
    height: 215px; }

  .hero--medium {
    height: 475px; }

  .hero--large {
    height: 300px;
    margin-bottom: 0; }

  .hero--x-large {
    height: 775px; } }
.hero__link {
  display: block;
  margin-bottom: 30px;
  position: relative;
  background-color: #FFF; }
  @media only screen and (min-width: 1100px) {
    .hero__link {
      margin-bottom: 0;
      height: 255px; } }
  @media only screen and (min-width: 1100px) {
    .hero__link .hero__image--desktop {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 58%;
      top: 0;
      height: auto; } }

@media only screen and (min-width: 1100px) {
  .hero__link--top {
    margin-bottom: 30px; } }

@media only screen and (min-width: 1100px) {
  .hero__link--large {
    height: 540px; } }
@media only screen and (min-width: 1100px) {
  .hero__link--large .hero__image--desktop {
    width: 62.5%;
    top: 26%; } }

.hero__link--small .hero__title {
  font-size: 1.25rem; }
  @media only screen and (min-width: 1100px) {
    .hero__link--small .hero__title {
      font-size: 1.625rem;
      line-height: 1.4; } }
.hero__link--small .hero__copy + .hero__cta,
.hero__link--small .hero__title + .hero__cta {
  margin-top: 22px; }
  @media only screen and (min-width: 1100px) {
    .hero__link--small .hero__copy + .hero__cta,
    .hero__link--small .hero__title + .hero__cta {
      margin-top: 25px; } }

.hero__image {
  background-size: cover;
  background-position: center center; }

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

@media only screen and (min-width: 1100px) {
  .hero__image--mobile {
    display: none; } }

.hero__overlay {
  padding: 20px 25px; }
  @media only screen and (min-width: 1100px) {
    .hero__overlay {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -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;
      width: 42%;
      padding: 37px 16px 50px 32px;
      height: 100%; } }

@media only screen and (min-width: 1100px) {
  .hero__overlay--large {
    width: 100%;
    padding: 37px 0 50px 32px; } }
@media only screen and (min-width: 1100px) {
  .hero__overlay--large .hero__title {
    width: 64%; } }
@media only screen and (min-width: 1100px) {
  .hero__overlay--large .hero__overlay--bottom {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    height: 100%;
    width: 37.5%;
    padding-right: 16px; } }

.hero__title {
  color: #333;
  font-family: "Milo Serif Text", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 10px;
  width: 100%; }
  @media only screen and (min-width: 1100px) {
    .hero__title {
      font-size: 2.125rem;
      line-height: 1.2;
      margin-bottom: 2rem; } }

.hero__copy {
  color: #333;
  font-family: "Milo Serif Text", Georgia, serif;
  font-size: 1rem;
  line-height: 1.4;
  width: 100%; }
  @media only screen and (min-width: 1100px) {
    .hero__copy {
      font-size: 1.125rem; } }

.hero__copy + .hero__cta, .hero__title + .hero__cta {
  margin-top: 22px; }
  @media only screen and (min-width: 1100px) {
    .hero__copy + .hero__cta, .hero__title + .hero__cta {
      margin-top: 25px; } }

.hero__inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 55px 0;
  z-index: 2; }

.hero__btn {
  background-color: white;
  color: #494949;
  margin-top: 27.5px; }

/**
 * Medium to Large custom hero design
 */
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .grid--hero-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }

  .hero__link--large {
    height: calc(100% - 30px); }

  .hero--large {
    height: 355px; }

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

.quotes-slider__text {
  font-style: normal;
  padding: 0 12.5px; }
  .quotes-slider__text cite {
    font-style: normal; }
  .quotes-slider__text p {
    margin-bottom: 25px; }
    .quotes-slider__text p + cite {
      margin-top: 0; }

.quotes-slider.slick-initialized {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab; }

.quotes-wrapper .slick-dots {
  position: relative;
  margin-top: 55px; }
  .quotes-wrapper .slick-dots li button::before {
    opacity: 0.2; }

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

.logo-bar {
  text-align: center;
  margin-bottom: -35px; }

@media only screen and (min-width: 769px) {
  .logo-bar--large {
    margin-bottom: -55px; } }
.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  margin: 0 27.5px 35px; }

@media only screen and (min-width: 769px) {
  .logo-bar__item--large {
    margin-bottom: 55px; } }
.logo-bar__image {
  display: block;
  margin: 0 auto; }

.logo-bar__link {
  display: block; }

.map-section {
  position: relative;
  height: 650px;
  width: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 769px) {
    .map-section {
      height: 500px; } }
  .map-section .page-width {
    height: 100%; }

.map-section--load-error {
  height: auto; }

.map-section__overlay-wrapper {
  position: relative;
  text-align: center;
  height: 100%; }

.map-section__overlay {
  position: relative;
  display: inline-block;
  padding: 35px;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  z-index: 3; }
  @media only screen and (min-width: 769px) {
    .map-section__overlay {
      position: absolute;
      left: 0;
      top: 50%;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      margin-top: 0;
      width: 33.33333%; }
      .ie9 .map-section__overlay {
        top: 10%; } }
  .map-section--load-error .map-section__overlay {
    position: static;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }

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

.map-section__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  margin-bottom: -50%; }
  @media only screen and (min-width: 769px) {
    .map-section__container {
      width: 130%;
      height: 100%;
      margin: 0 -30% 0 0; } }

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

@media only screen and (max-width: 768px) {
  .image-bar {
    max-width: 400px;
    margin: 0 auto; } }
.image-bar__item {
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover; }

.image-bar__link:focus .image-bar__content {
  border-color: #f2f2f2; }

.image-bar__content {
  position: relative;
  width: 100%; }
  .image-bar--x-small .image-bar__content {
    height: 94px; }
  .image-bar--small .image-bar__content {
    height: 225px; }
  .image-bar--medium .image-bar__content {
    height: 357px; }
  .image-bar--large .image-bar__content {
    height: 488px; }
  .image-bar--x-large .image-bar__content {
    height: 582px; }
  @media only screen and (min-width: 769px) {
    .image-bar--x-small .image-bar__content {
      height: 125px; }
    .image-bar--small .image-bar__content {
      height: 300px; }
    .image-bar--medium .image-bar__content {
      height: 475px; }
    .image-bar--large .image-bar__content {
      height: 650px; }
    .image-bar--x-large .image-bar__content {
      height: 775px; } }

.image-bar__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #f2f2f2;
  opacity: 0.25; }

.image-bar__caption {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  width: 100%;
  text-align: center; }

.collection-grid {
  margin-bottom: -10px;
  overflow: auto; }

.collection-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 10px; }
  @media only screen and (min-width: 769px) {
    .collection-grid-item {
      margin-bottom: 25px; } }

.collection-grid-item__title {
  position: absolute;
  text-align: center;
  width: 170px;
  font-family: "Econ Sans Medium", Helvetica, sans-serif;
  margin-left: -85px;
  top: 50%;
  padding: 15px 5px;
  left: 50%;
  padding: 8px 15px;
  background-color: #3e51b5;
  color: white;
  border-radius: 4px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  @media only screen and (min-width: 769px) {
    .collection-grid-item__title {
      padding: 15px 5px; } }

.collection-grid-item__link {
  border: 2px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }
  .collection-grid-item__link:focus {
    border-color: #f2f2f2; }

.collection-grid-item__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; }

.collection-grid-item__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 0.25; }

.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;
  margin-bottom: -25px;
  margin-left: -25px; }
  @media only screen and (max-width: 768px) {
    .custom-content {
      margin-bottom: -15px;
      margin-left: -15px; } }

.custom__item {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 25px;
  padding-left: 25px;
  max-width: 100%; }
  @media only screen and (max-width: 768px) {
    .custom__item {
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      padding-left: 15px;
      margin-bottom: 15px; }
      .custom__item.small--one-half {
        -webkit-flex: 1 0 50%;
        -moz-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto; } }
  .custom__item .collection-grid-item {
    margin-bottom: 0; }

.custom__item-inner {
  position: relative;
  display: inline-block;
  text-align: left;
  max-width: 100%; }

.custom__item-inner--video,
.custom__item-inner--collection,
.custom__item-inner--html {
  display: block; }

/*================ 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; }

/*=============================================*/
/*================== MODULES ==================*/
/*=============================================*/
/*================ Ajax Cart ================*/
.cart-ajax {
  display: none;
  opacity: 0;
  position: absolute;
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
  top: 40px;
  right: 33px;
  transition: all 0.25s cubic-bezier(0.29, 0.63, 0.44, 1);
  -webkit-box-shadow: 0px 4px 11px -3px #5f5f5f;
  -moz-box-shadow: 0px 4px 11px -3px #5f5f5f;
  box-shadow: 0px 4px 11px -3px #5f5f5f; }
  .cart-ajax .cart-ajax--full {
    opacity: 0; }
  .cart-ajax .cart-ajax--empty {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
    .cart-ajax .cart-ajax--empty span {
      left: 0;
      position: absolute;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      width: 100%; }
  .cart-ajax.cart-ajax--full .cart-ajax--full {
    opacity: 1; }
  .cart-ajax.cart-ajax--full .cart-ajax--empty {
    display: none;
    opacity: 0; }
  .cart-ajax:before {
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f2f2f2;
    width: 0;
    height: 0;
    float: right;
    margin-top: -9px;
    margin-right: 25px; }
  .cart-ajax.cart-ajax--show {
    display: inline-block;
    max-width: 320px; }
    @media only screen and (min-width: 769px) {
      .cart-ajax.cart-ajax--show {
        max-width: 580px;
        width: 580px;
        top: 40px;
        right: 34px; } }
    @media only screen and (min-width: 1100px) {
      .cart-ajax.cart-ajax--show {
        right: 100px;
        top: 52px; } }
  .cart-ajax.cart-ajax--fadeIn {
    opacity: 1; }
  .cart-ajax .cart-ajax__list {
    min-height: 250px;
    max-height: 300px;
    overflow-y: scroll;
    padding: 20px;
    float: left;
    width: 100%; }
    @media only screen and (min-width: 769px) {
      .cart-ajax .cart-ajax__list {
        width: 60%; } }
  .cart-ajax:after {
    content: '';
    width: 100%;
    height: 25px;
    left: 0;
    bottom: 0;
    position: absolute;
    background: -moz-linear-gradient(top, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f2f2f2', endColorstr='#f2f2f2',GradientType=0 );
    /* IE6-9 */
    z-index: 999;
    pointer-events: none; }
  .cart-ajax .cart-ajax__row {
    float: left;
    width: 100%;
    margin-top: 25px;
    padding-top: 25px;
    border-top: #dbdbdb 1px solid;
    text-align: left;
    transition: opacity 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }
    .cart-ajax .cart-ajax__row.cart-ajax__row--deleted {
      opacity: 0; }
    .cart-ajax .cart-ajax__row:first-child {
      border-top-width: 0;
      margin-top: 0;
      padding-top: 0; }
  .cart-ajax .cart-ajax__image {
    float: left;
    width: 25%; }
  .cart-ajax .cart-ajax__meta {
    float: left;
    width: 75%;
    padding-left: 20px; }
    .cart-ajax .cart-ajax__meta p {
      white-space: normal; }
  .cart-ajax a.cart-ajax__remove {
    float: right;
    color: #121212; }
  .cart-ajax .cart-ajax__tools {
    float: left;
    width: 100%;
    padding: 15px 20px;
    border-left: 1px solid #dbdbdb; }
    @media only screen and (min-width: 769px) {
      .cart-ajax .cart-ajax__tools {
        width: 40%; } }
    .cart-ajax .cart-ajax__tools .cart-ajax__checkout {
      padding-top: 38px; }
      @media only screen and (min-width: 769px) {
        .cart-ajax .cart-ajax__tools .cart-ajax__checkout {
          border-top: 1px solid #dbdbdb;
          margin-top: 40px; } }
      .cart-ajax .cart-ajax__tools .cart-ajax__checkout .terms-disable {
        color: white; }
    .cart-ajax .cart-ajax__tools a {
      width: 100%;
      display: inline-block;
      font-weight: 500; }
    .cart-ajax .cart-ajax__tools h6 {
      font-family: "Econ Sans Medium", Helvetica, sans-serif; }
    .cart-ajax .cart-ajax__tools .cart-link {
      float: left;
      margin-top: 15px;
      color: #e3120b;
      text-decoration: underline; }
    .cart-ajax .cart-ajax__tools .cart-ajax--total {
      padding: 0 0 12.5px 0; }
      .cart-ajax .cart-ajax__tools .cart-ajax--total .cart-ajax--total-title {
        margin-right: 5px; }
  .cart-ajax .cart-ajax__quantity {
    position: relative;
    text-align: center;
    border: 1px solid #f2f2f2;
    margin-bottom: 12.5px;
    background-color: white; }
    .cart-ajax .cart-ajax__quantity .cart-ajax__quantity-ico {
      position: absolute;
      top: 10px;
      font-size: 1.5625rem;
      cursor: pointer;
      width: 40px;
      height: 40px;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 15px; }
    .cart-ajax .cart-ajax__quantity .cart-ajax__quantity-ico--plus {
      right: 0;
      top: 0;
      background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/icon-plus.svg?v=7447019581426910907); }
    .cart-ajax .cart-ajax__quantity .cart-ajax__quantity-ico--minus {
      left: 0;
      top: 0;
      background-image: url(//cdn.shopify.com/s/files/1/0535/3509/t/74/assets/icon-minus.svg?v=5579996488658829157); }
    .cart-ajax .cart-ajax__quantity input {
      color: #121212;
      width: 60%;
      border: 1px solid #f2f2f2;
      border-width: 0 1px;
      text-align: center;
      height: 40px; }

.site-header__cart-count {
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .site-header__cart-count.site-header__cart-count--show {
    opacity: 1; }
  @media only screen and (min-width: 769px) {
    .logo--center .site-header__cart-count {
      right: -2px; }
    .logo--left .site-header__cart-count {
      left: 12px;
      top: 4px; } }

/*================ #Redirect ================*/
.redirect-picker {
  border: none;
  margin-top: 2px;
  background-position: right 0 center; }
  .redirect-picker option {
    color: #000 !important; }
  @media only screen and (max-width: 768px) {
    .redirect-picker {
      margin-top: 4px; } }

/*================ Mega Nav ================*/
#shopify-section-meganav {
  position: relative;
  z-index: 7;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto; }
  @media (max-width: 1360px) {
    #shopify-section-meganav {
      padding-left: 0;
      padding-right: 0; } }

.meganav_arrow {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f2f2f2;
  display: none;
  width: 0;
  height: 0;
  position: absolute;
  top: -7px;
  left: 0; }
  .meganav_arrow.meganav__show {
    display: block; }

.meganav {
  position: absolute;
  display: none;
  background-color: #f2f2f2;
  width: 100%;
  padding: 25px;
  border-bottom: 1px solid #dedede;
  border-width: 1px 0;
  font-family: "Econ Sans Medium", Helvetica, sans-serif;
  -webkit-box-shadow: 0 4px 9px rgba(147, 147, 147, 0.8);
  -moz-box-shadow: 0 4px 9px rgba(147, 147, 147, 0.8);
  box-shadow: 0 4px 9px rgba(147, 147, 147, 0.8); }
  .meganav.medium-up--one-third {
    width: 33.333%; }
  .meganav.meganav__show {
    display: block; }
  .meganav ul {
    float: left;
    width: 60%; }
    .meganav ul li {
      margin: 12px 0; }
  .meganav img {
    max-width: 35%;
    max-height: 200px;
    float: right;
    margin-top: 14px; }
  .meganav h3 {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dedede; }
  .meganav a {
    color: #121212;
    font-family: "Econ Sans Light", Helvetica, sans-serif; }

.product-single__photos {
  float: right;
  width: 78%; }
  @media (max-width: 640px) {
    .product-single__photos {
      width: 100%; } }

.product-single__thumbnails {
  float: left;
  width: 20%;
  text-align: center; }
  @media (max-width: 640px) {
    .product-single__thumbnails {
      display: none; } }

.iwishTitle {
  margin-bottom: 15px; }

.iwishItem {
  margin-bottom: 60px; }
  .iwishItem:nth-child(4n+1) {
    clear: left; }
  .iwishItem .iwishMeta-ctn {
    margin-top: 20px; }
  @media (min-width: 481px) {
    .iwishItem .grid_sizer_iw {
      height: 380px;
      display: block; }
      .iwishItem .grid_sizer_iw img {
        max-height: 100%;
        position: relative;
        top: 50%;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); } }
  @media only screen and (max-width: 1099px) {
    .iwishItem:nth-child(2n+1) {
      clear: left; } }

.iwishShareContainer {
  clear: both;
  padding-top: 25px; }

.breadcrumb-block {
  display: block;
  margin-top: -15px;
  margin-bottom: 60px;
  color: #7a7a7a;
  font-size: 13px; }
  @media only screen and (max-width: 1099px) {
    .breadcrumb-block {
      margin: 5px 0 50px; } }
  .breadcrumb-block a {
    color: #7a7a7a; }

.spacer {
  padding: 0 10px; }

.account-wrapper h2, .account-wrapper .h2 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f2f2f2; }

.template-product .tab .judgeme-preview-badge {
  float: right;
  font-size: 15px;
  color: #7a7a7a;
  margin-top: -2px; }
  .template-product .tab .judgeme-preview-badge .judgeme-badge + span {
    display: none; }
.template-product .tab #judgeme_product_reviews {
  margin: 15px 0 0;
  border-bottom: none; }
  .template-product .tab #judgeme_product_reviews .judgeme-star-on,
  .template-product .tab #judgeme_product_reviews .judgeme-star-off {
    color: #7a7a7a; }
  .template-product .tab #judgeme_product_reviews .judgeme-review-header {
    margin-bottom: 15px; }
  .template-product .tab #judgeme_product_reviews .judgeme-review {
    padding-top: 18px;
    margin-top: 18px; }
  .template-product .tab #judgeme_product_reviews .judgeme-review-body {
    margin-top: 12px; }
  .template-product .tab #judgeme_product_reviews .judgeme-verified-buyer-badge {
    padding: 4px 11px;
    font-weight: 700;
    margin-right: 10px; }
  .template-product .tab #judgeme_product_reviews #judgeme_show_all {
    padding-top: 20px;
    margin-top: 25px; }

.signup-page .signup-page__input {
  width: 100%;
  border: 1px solid #b6b6b6; }
.signup-page .btn-signup-page {
  width: 100%; }
.signup-page .notification_container-1 {
  margin-top: 2rem; }
.signup-page .signup-page__groups {
  margin-bottom: 20px; }
  .signup-page .signup-page__groups label {
    color: #121212;
    font-size: 0.875rem; }

.sign-up__submit-container {
  position: relative; }
  .sign-up__submit-container .sign-up__dummy-submit {
    position: absolute;
    top: 0;
    height: 45px;
    left: 0;
    background-color: transparent;
    width: 100%; }

.no-content {
  height: 0;
  overflow: hidden;
  display: inline-block; }

/* GDPR Styling */
.text-tip {
  position: relative; }

.text-tip-message {
  width: 300px;
  top: 0;
  background: #d9242b;
  color: #FFF;
  padding: 10px;
  border-radius: 0;
  position: absolute;
  top: 242px;
  left: 0;
  display: none; }
  @media only screen and (min-width: 769px) {
    .text-tip-message {
      top: 266px; } }
  .text-tip-message:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: -5px;
    left: 12px;
    background: #d9242b;
    transform: rotate(135deg);
    z-index: 0; }

.acceptsMarketing {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  -o-align-items: baseline;
  align-items: baseline;
  margin-bottom: 29px; }

.acceptsMarketing label {
  text-align: left;
  cursor: default; }

.acceptsMarketing input {
  margin-right: 10px; }

.policy_link a {
  color: #475c67; }

.testtest {
  display: block !important; }

.account-custom-notification {
  text-align: center;
  margin: 20px 0; }
  .account-custom-notification .alert-red {
    color: red; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  button#_evidon-accept-button {
    width: 130px !important; } }
