/*============================================================================
  Shopify Tombihn
  Copyright 2016 Tom Bihn
  Author CommandC
  Built with Sass - http://sass-lang.com/

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use @imports in this file
        * Use grunt or gulp tasks to enable @imports - https://github.com/Shopify/shopify-css-import
    - Helpers variables, mixins, and starter classes are provided. Change as needed.
    - The file is prepped with a CSS reset
    - The font icons are prepared using https://icomoon.io/app
==============================================================================*/
/*============================================================================
  Table of Contents

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
  #Blog
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icons.eot?v=9569621082325021121");
  src: url("//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icons.eot?v=9569621082325021121#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icons.woff?v=6574892100248703103") format("woff"), url("//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icons.ttf?v=1793966381440680946") format("truetype"), url("//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icons.svg?v=8790591914291354894#tombihn-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  position: relative;
  background-color: white;
  z-index: 1; }
  @media screen and (max-width: 991px) {
    body {
      z-index: 2; } }
  @media screen and (max-width: 767px) {
    body {
      z-index: 3; } }

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

.wrapper {
  *zoom: 1;
  margin: 0 auto;
  padding: 0 15px; }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 768px) {
    .wrapper {
      max-width: 750px; }
      .site-header .wrapper {
        max-width: 780px; } }
  @media screen and (min-width: 992px) {
    .wrapper {
      max-width: 970px; }
      .site-header .wrapper {
        max-width: 1000px; } }
  @media screen and (min-width: 1200px) {
    .wrapper {
      max-width: 1170px; }
      .site-header .wrapper {
        max-width: 1200px; } }

/*.iwishWrapper {
  @extend .wrapper;

  margin-left: auto !important;
  margin-right: auto !important;
}*/
.main-content {
  display: block; }

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

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

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

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

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

#skipnav:focus {
  position: relative;
  padding: 10px;
  height: auto;
  width: auto;
  display: block; }

a:focus,
button:focus {
  outline-width: 2px;
  outline-style: solid;
  outline-color: Highlight;
  /* WebKit gets its native focus styles.
  */ }
  @media (-webkit-min-device-pixel-ratio: 0) {
    a:focus,
    button:focus {
      outline-color: -webkit-focus-ring-color;
      outline-style: auto; } }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 1.42857143;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  /*-webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  outline: none !important;*/ }

body {
  background: #fff; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.4; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 48px;
  color: #3f3f3f;
  text-transform: uppercase;
  padding-top: 0.7291666em; }

h2, .h2 {
  font-size: 24px;
  color: #b11116;
  margin-bottom: 0; }
  h2 span, .h2 span {
    display: block;
    font-size: 0.666em;
    font-style: italic; }
  h2.small, .small.h2 {
    font-size: 16px;
    line-height: 1.5;
    color: #3f3f3f;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px; }

h3, .h3 {
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 700; }
  h3 span, .h3 span {
    display: block;
    text-transform: none;
    font-weight: 400; }
  h3.small2, .small2.h3 {
    font-weight: 400;
    text-transform: none;
    font-style: italic; }

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

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

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

p {
  margin: 0 0 1.0em 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.15em;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 30px;
  padding: 7.5px 0; }
  blockquote span {
    font-style: normal;
    text-transform: uppercase;
    font-weight: 400; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 7.5px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

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

pre {
  overflow: auto;
  padding: 7.5px;
  margin: 0 0 15px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #2f292b;
  border-width: 1px 0 0;
  margin: 15px 0;
  height: 0; }
  hr.hr--small {
    margin: 7.5px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

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

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

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

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

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

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

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

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

.change-view--active {
  cursor: default;
  color: #231f20; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.07143em;
  line-height: 1.5;
  color: #3f3f3f; }
  @media screen and (max-width: 767px) {
    .rte > *.gray:first-child {
      margin-top: 15px; } }
  .rte a {
    text-decoration: underline; }
  .rte.product-description a {
    color: #000;
    text-decoration: none; }
    .rte.product-description a:hover {
      text-decoration: underline;
      color: #23527c; }
    .rte.product-description a:after {
      content: " \f0c5 ";
      font-family: "FontAwesome";
      font-size: 90%;
      padding-right: 5px; }
  .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em; }
    .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte li {
    margin-bottom: 0.4em; }

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

/*============================================================================
  #Links and Buttons
==============================================================================*/
a,
.text-link {
  /*color: $colorLink;*/
  color: #337ab7;
  text-decoration: none;
  background: transparent; }

a:hover,
a:focus {
  /*color: $colorLinkHover;*/
  color: #23527c; }

button {
  overflow: visible; }

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

.btn, .btn--secondary, .iWishAdd,
.iWishCartAdd, .iwishRemoveBtn,
.rte .btn--secondary,
.rte .iWishAdd,
.rte .iWishCartAdd,
.rte .iwishRemoveBtn, .iwishBuyBtn,
.rte .btn,
.rte .btn--secondary,
.rte .iWishAdd,
.rte .iWishCartAdd,
.rte .iwishRemoveBtn,
.rte .iwishBuyBtn {
  display: inline-block;
  padding: 7px 12px;
  width: auto;
  margin: 0;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  /*================ Set primary button colors - can override later ================*/
  background-color: #231f20;
  color: white; }
  .btn:hover, .btn--secondary:hover, .iWishAdd:hover,
  .iWishCartAdd:hover, .iwishRemoveBtn:hover, .iwishBuyBtn:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .rte .iWishAdd:hover,
  .rte .iWishCartAdd:hover,
  .rte .iwishRemoveBtn:hover,
  .rte .iwishBuyBtn:hover {
    background-color: #080707;
    color: white; }
  .btn:active, .btn--secondary:active, .iWishAdd:active,
  .iWishCartAdd:active, .iwishRemoveBtn:active, .iwishBuyBtn:active, .btn:focus, .btn--secondary:focus, .iWishAdd:focus,
  .iWishCartAdd:focus, .iwishRemoveBtn:focus, .iwishBuyBtn:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .iWishAdd:active,
  .rte .iWishCartAdd:active,
  .rte .iwishRemoveBtn:active,
  .rte .iwishBuyBtn:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus,
  .rte .iWishAdd:focus,
  .rte .iWishCartAdd:focus,
  .rte .iwishRemoveBtn:focus,
  .rte .iwishBuyBtn:focus {
    /*background-color: $colorBtnPrimaryActive;
    color: $colorBtnPrimaryText;*/
    background-color: #231f20;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, [disabled].iWishAdd,
  [disabled].iWishCartAdd, [disabled].iwishRemoveBtn, [disabled].iwishBuyBtn, .btn.disabled, .disabled.btn--secondary, .disabled.iWishAdd,
  .disabled.iWishCartAdd, .disabled.iwishRemoveBtn, .disabled.iwishBuyBtn,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte [disabled].iWishAdd,
  .rte [disabled].iWishCartAdd,
  .rte [disabled].iwishRemoveBtn,
  .rte [disabled].iwishBuyBtn,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary,
  .rte .disabled.iWishAdd,
  .rte .disabled.iWishCartAdd,
  .rte .disabled.iwishRemoveBtn,
  .rte .disabled.iwishBuyBtn {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn--secondary, .iWishAdd,
.iWishCartAdd, .iwishRemoveBtn,
.rte .btn--secondary,
.rte .iWishAdd,
.rte .iWishCartAdd,
.rte .iwishRemoveBtn {
  background-color: #7b7476; }
  .btn--secondary:hover, .iWishAdd:hover,
  .iWishCartAdd:hover, .iwishRemoveBtn:hover,
  .rte .btn--secondary:hover,
  .rte .iWishAdd:hover,
  .rte .iWishCartAdd:hover,
  .rte .iwishRemoveBtn:hover {
    background-color: #948e90;
    color: white; }
  .btn--secondary:active, .iWishAdd:active,
  .iWishCartAdd:active, .iwishRemoveBtn:active, .btn--secondary:focus, .iWishAdd:focus,
  .iWishCartAdd:focus, .iwishRemoveBtn:focus,
  .rte .btn--secondary:active,
  .rte .iWishAdd:active,
  .rte .iWishCartAdd:active,
  .rte .iwishRemoveBtn:active,
  .rte .btn--secondary:focus,
  .rte .iWishAdd:focus,
  .rte .iWishCartAdd:focus,
  .rte .iwishRemoveBtn:focus {
    background-color: #ada8a9;
    color: white; }

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

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

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

a.btn, a.btn--secondary, a.iWishAdd,
a.iWishCartAdd, a.iwishRemoveBtn,
.rte a.btn--secondary,
.rte a.iWishAdd,
.rte a.iWishCartAdd,
.rte a.iwishRemoveBtn, a.iwishBuyBtn,
a.btn--secondary,
a.iWishAdd,
a.iWishCartAdd,
a.iwishRemoveBtn {
  font-size: 12px; }

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 7.5px;
  border: 1px solid #2f292b; }

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

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

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      border-bottom: 1px solid #2f292b; } }
.table-tabs {
  margin: 0;
  padding: 0; }
  .table-tabs .tab {
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    background: #d7d6d7;
    font-size: 16px;
    line-height: 2em;
    margin: 0;
    font-weight: 500;
    color: #fff; }
    @media screen and (max-width: 991px) {
      .table-tabs .tab {
        font-size: 13px; }
        .table-tabs .tab a {
          padding: 0 5px; } }
    @media screen and (max-width: 767px) {
      .table-tabs .tab {
        display: block;
        margin-bottom: 4px;
        font-size: 16px; } }
    .table-tabs .tab.active {
      background: #7c7879;
      color: #fff;
      font-weight: 700;
      padding-top: 6px; }
      .table-tabs .tab.active a {
        color: #fff; }
    .table-tabs .tab a {
      color: #7c7879;
      display: block;
      padding: 0 9px;
      outline: none;
      text-decoration: none; }
      @media screen and (max-width: 991px) {
        .table-tabs .tab a {
          padding: 0 5px; } }
      @media screen and (max-width: 767px) {
        .table-tabs .tab a {
          padding: 0 9px; } }
      .table-tabs .tab a:hover {
        text-decoration: underline; }

table.table-style-A {
  display: none;
  font-family: 'Source Sans Pro', sans-serif;
  border: none; }
  @media screen and (max-width: 767px) {
    table.table-style-A {
      border: 1px solid #d7d6d7; } }
  table.table-style-A.active {
    display: table; }
  table.table-style-A th {
    background: #7c7879;
    font-size: 12px;
    line-height: 1.5;
    padding: 0.25em 1.0em;
    border: none;
    color: #fff;
    font-weight: 500; }
  table.table-style-A td {
    font-size: 12px;
    line-height: 13px;
    padding: 0.4em 0.8333em;
    color: #443f3f;
    border: none;
    border-bottom: 1px solid #d7d6d7;
    border-right: 1px solid #d7d6d7;
    font-family: 'Source Sans Pro', sans-serif; }
    @media screen and (max-width: 767px) {
      table.table-style-A td {
        border: none; }
        table.table-style-A td:before {
          font-size: 12px;
          font-size: 12px;
          line-height: 13px;
          padding-right: 0.8333em;
          font-family: 'Source Sans Pro', sans-serif; } }
    table.table-style-A td:first-child {
      border-left: 1px solid #d7d6d7; }
      @media screen and (max-width: 767px) {
        table.table-style-A td:first-child {
          border: none;
          border-top: 1px solid #d7d6d7; } }
  table.table-style-A tbody tr:first-child td {
    border-top: 1px solid #d7d6d7; }
    @media screen and (max-width: 767px) {
      table.table-style-A tbody tr:first-child td {
        border: none; } }

table.table-style-B {
  font-family: 'Source Sans Pro', sans-serif;
  border-collapse: separate;
  border-spacing: 8px; }
  table.table-style-B th {
    background: #7c7879;
    font-size: 18px;
    line-height: 1.333;
    padding: 5px 12px 6px;
    border: none;
    color: #fff;
    font-weight: 500; }
  table.table-style-B td {
    font-size: 12px;
    line-height: 13px;
    color: #3f3f3f;
    padding: 0.5em 0.8333em;
    border: none; }
    @media screen and (max-width: 767px) {
      table.table-style-B td {
        border-left: 1px solid #d7d6d7;
        border-right: 1px solid #d7d6d7; }
        table.table-style-B td:last-child {
          border-bottom: 1px solid #d7d6d7; } }
  @media screen and (max-width: 767px) {
    table.table-style-B tr:first-child:first-child {
      border-top: 1px solid #d7d6d7; } }
  table.table-style-B tr:nth-of-type(2n + 1) td {
    padding: 0.25em 0.8333em; }
  table.table-style-B tr:nth-of-type(2n) td {
    background: #e5e5e5; }

table.table-style-C {
  display: none;
  font-family: 'Source Sans Pro', sans-serif;
  border: none;
  border-bottom: 1px solid #2f292b; }
  @media screen and (max-width: 767px) {
    table.table-style-C {
      border: 1px solid #2f292b; } }
  table.table-style-C.active {
    display: table; }
  table.table-style-C th {
    background: #7c7879;
    font-size: 15px;
    line-height: 1.6;
    padding: 0.6em 1.0em;
    border: none;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase; }
  table.table-style-C td {
    font-size: 12px;
    line-height: 27px;
    padding: 0.5em 0.8333em;
    color: #443f3f;
    border: none;
    border-right: 1px solid #2f292b; }
    @media screen and (max-width: 767px) {
      table.table-style-C td {
        border: none;
        line-height: 21px; } }
    table.table-style-C td:nth-of-type(2), table.table-style-C td:nth-of-type(4), table.table-style-C td:nth-of-type(6) {
      border-right: none; }
      @media screen and (max-width: 767px) {
        table.table-style-C td:nth-of-type(2), table.table-style-C td:nth-of-type(4), table.table-style-C td:nth-of-type(6) {
          padding-bottom: 0; } }
    @media screen and (max-width: 767px) {
      table.table-style-C td:nth-of-type(3), table.table-style-C td:nth-of-type(5), table.table-style-C td:nth-of-type(7) {
        padding-top: 0; } }
    table.table-style-C td[colspan="2"] {
      border-right: 1px solid #2f292b;
      border-bottom: 1px solid #d7d6d7; }
      @media screen and (max-width: 767px) {
        table.table-style-C td[colspan="2"] {
          display: none; } }
    table.table-style-C td[colspan="2"], table.table-style-C td[colspan="1"] {
      border-bottom: 1px solid #2f292b;
      border-top: 2px solid #2f292b;
      border-right: none;
      font-family: 'Source Sans Pro', sans-serif;
      font-weight: 700;
      color: #2f292b;
      font-size: 14px;
      line-height: 1.714285;
      text-transform: uppercase;
      padding: 1.5em 0.8333em 0.6428571em; }
    table.table-style-C td:first-child {
      border-left: 1px solid #2f292b; }
      @media screen and (max-width: 767px) {
        table.table-style-C td:first-child {
          text-align: left;
          border: none;
          border-top: 1px solid #2f292b; }
          table.table-style-C td:first-child[colspan="1"] {
            border-top: none;
            border-bottom: 1px solid #2f292b; } }
    table.table-style-C td:last-child {
      border-right: 1px solid #2f292b; }
  table.table-style-C tbody tr:first-child td {
    border-top: 1px solid #d7d6d7; }

/*============================================================================
  #OOCSS Media Object
    - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

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

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

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

/*============================================================================
  #Images and Iframes
==============================================================================*/
img {
  border: 0 none; }
  img.img-responsive {
    display: block;
    max-width: 100%;
    height: auto; }

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

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

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

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

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

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 991px) {
  input,
  textarea {
    font-size: 16px; } }
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: #666; }

input::-webkit-input-placeholder {
  color: #666 !important; }
input:-moz-placeholder {
  color: #666 !important; }
input::-moz-placeholder {
  color: #666 !important; }
input:-ms-input-placeholder {
  color: #666 !important; }

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

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

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

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

fieldset,
.fieldset {
  border: 1px solid #2f292b;
  border-right: 2px solid #2f292b;
  border-bottom: 2px solid #2f292b;
  padding: 0;
  margin: 0; }

.field {
  padding: 0; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #2f292b;
  max-width: 100%;
  padding: 6px 12px;
  border-radius: 0; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #141112; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px; }

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

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

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

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

select {
  /*  -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-position: right center;
    background: {
      image: url('//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/ico-select.svg?v=354012039368648229');
      repeat: no-repeat;
      position: right 10px center;
      color: transparent;
    }
    padding-right: 28px;
    text-indent: 0.01px;
    text-overflow: '';
    cursor: pointer;*/
  display: block;
  width: 100%;
  height: 26px;
  margin: 5px 0 15px;
  padding: 1px 2px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: solid 1px #cecece;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }
  select:focus {
    border-color: #cecece;
    	/*border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
          	0 0 8px rgba(102,175,233,.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
          	0 0 8px rgba(102,175,233,.6);*/ }

optgroup {
  font-weight: bold; }

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

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

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

label[for] {
  cursor: pointer; }

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

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

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group .input-group-btn:first-child > .iWishAdd,
  .input-group .input-group-btn:first-child > .iWishCartAdd,
  .input-group .input-group-btn:first-child > .iwishRemoveBtn,
  .input-group .input-group-btn:first-child > .iwishBuyBtn,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .iWishAdd,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .iWishCartAdd,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .iwishRemoveBtn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .iwishBuyBtn {
    border-radius: 0; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary,
  .input-group .input-group-btn:last-child > .iWishAdd,
  .input-group .input-group-btn:last-child > .iWishCartAdd,
  .input-group .input-group-btn:last-child > .iwishRemoveBtn,
  .input-group .input-group-btn:last-child > .iwishBuyBtn {
    border-radius: 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

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

.input-group .btn, .input-group .btn--secondary, .input-group .iWishAdd,
.input-group .iWishCartAdd, .input-group .iwishRemoveBtn, .input-group .iwishBuyBtn,
.input-group .input-group-field {
  height: 34px; }

.input-group .input-group-field {
  width: 100%; }

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

/*============================================================================
  #Checkout Forms
==============================================================================*/
.field__input {
  border-radius: 0;
  border: none;
  border-top: 1px solid #2f292b;
  border-left: 1px solid #2f292b; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-google_wallet:before {
  content: "\47"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-apple_pay {
  vertical-align: text-bottom; }

.icon-apple_pay:before {
  content: '';
  background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/Apple_Pay_Payment_Mark.svg?v=5750513470497262216);
  width: 47px;
  height: 30px;
  display: block !important;
  background-size: contain;
  background-repeat: no-repeat; }

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

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

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

/*============================================================================
  #Site Top Bar
==============================================================================*/
.top-bar {
  padding: 0 15px;
  background-color: #3f3f3f;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #ffffff; }
  .top-bar .grid__item {
    padding: 7px 10px; }
  .top-bar a {
    color: #fff;
    padding: 0 10px 0 0; }
    .top-bar a:hover {
      color: #ed1c24; }
  @media screen and (max-width: 767px) {
    .top-bar {
      /*border-top: 20px solid #7A7A7A;*/
      height: 0;
      overflow: hidden; }
      .top-bar a {
        color: #2f292b; }
        .top-bar a:hover {
          color: #ed1c24; } }

.notice-bar {
  background: #000;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 0; }
  .notice-bar p {
    margin: 0;
    padding: 0; }
  .notice-bar .highlighted-link {
    text-decoration: underline; }
  .notice-bar a {
    color: #fff;
    text-decoration: underline; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header .grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .site-header .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle; }

.site-header__logo {
  text-align: center;
  margin: 0 auto 0.41666em !important;
  max-width: 100%;
  padding: 20px 15px 0 !important; }
  @media screen and (min-width: 992px) {
    .site-header__logo {
      text-align: left; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0;
    max-width: 409px;
    width: 100%; }

.site-header__logo-link {
  margin: 0 auto; }

.site-header__cart-toggle {
  display: inline-block; }

#checkout-nav {
  padding: 1px 0;
  float: right;
  text-align: right; }
  #checkout-nav a {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 14px;
    padding: 0 7px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase; }
    #checkout-nav a:last-child {
      padding-left: 2px;
      padding-right: 0px; }
    @media screen and (min-width: 767px) {
      #checkout-nav a {
        font-size: 14px;
        padding: 0 10px; } }
  #checkout-nav .icon {
    font-size: 24px;
    vertical-align: middle; }

.site-header__search {
  display: block;
  float: right;
  max-width: 548px;
  width: 100%;
  margin-top: 12px;
  padding-right: 15px;
  clear: right; }
  @media screen and (min-width: 767px) {
    .site-header__search {
      max-width: 275px; } }

.search-bar {
  margin: 10px 0 4px; }
  .search-bar .input-group-field {
    border: none;
    border-bottom: 1px solid #7c7879;
    max-width: 100%;
    padding: 6px 6px 6px 0;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    height: 36px;
    color: #333;
    box-sizing: border-box; }
    .search-bar .input-group-field::-webkit-input-placeholder {
      color: #333 !important; }
    .search-bar .input-group-field:-moz-placeholder {
      color: #333 !important; }
    .search-bar .input-group-field::-moz-placeholder {
      color: #333 !important; }
    .search-bar .input-group-field:-ms-input-placeholder {
      color: #333 !important; }
  .search-bar .input-group-btn .btn, .search-bar .input-group-btn .btn--secondary, .search-bar .input-group-btn .iWishAdd,
  .search-bar .input-group-btn .iWishCartAdd, .search-bar .input-group-btn .iwishRemoveBtn, .search-bar .input-group-btn .iwishBuyBtn {
    border: none;
    border-bottom: 1px solid #7c7879;
    padding: 0 9px;
    background: #fff;
    border-radius: 0 !important;
    color: #7C7879;
    font-size: 21px;
    line-height: 36px;
    height: 36px; }
  @media screen and (max-width: 991px) {
    .search-bar {
      margin: 0; } }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  border-top: 1px solid #7c7879;
  border-bottom: 1px solid #7c7879;
  position: relative;
  z-index: 999999; }
  @media screen and (max-width: 991px) {
    .nav-bar {
      border: none; } }

.site-nav, .site-nav--mobile {
  font-size: 1.14286em;
  cursor: default;
  margin: 0; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block; }
  .site-nav .wrapper > li, .site-nav--mobile .wrapper > li {
    position: relative;
    display: inline-block; }

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

.site-nav__link {
  display: block;
  text-decoration: none;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px; }
  @media screen and (min-width: 992px) {
    .site-nav__link {
      font-size: 16px; } }
  .site-nav__link.site-nav__main-link {
    text-transform: uppercase;
    font-weight: 700;
    min-width: 25%; }
  .site-nav__link.site-nav__all-link {
    text-decoration: underline; }
    .site-nav__link.site-nav__all-link:hover, .site-nav__link.site-nav__all-link:active, .site-nav__link.site-nav__all-link:focus {
      text-decoration: none; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #fff;
    text-decoration: underline; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    display: inline-block;
    text-decoration: none; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

span.site-nav__link:hover, span.site-nav__link:active, span.site-nav__link:focus {
  text-decoration: none; }

#menu_toggle {
  position: relative;
  float: left;
  padding: 4px 9px 0;
  margin: 0 15px;
  background-color: #3f3f3f;
  border: 1px solid #ddd;
  border-radius: 4px; }
  #menu_toggle .icon {
    color: #fff;
    font-size: 24px;
    height: 28px; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 5; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown a {
    background-color: white; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      background-color: #e6e6e6; }

/*================ MegaMenu ================*/
#megamenu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99; }

@media screen and (min-width: 768px) {
  .nav-bar {
    position: relative; } }

.site-nav-new {
  font-size: 1.14286em;
  cursor: default;
  margin: 0;
  list-style: none; }
  .site-nav-new .site-nav__top-link {
    float: left;
    margin: 0; }
    .site-nav-new .site-nav__top-link:hover > .site-nav__link {
      color: #fff;
      background: #3f3f3f;
      background: rgba(63, 63, 63, 0.95); }
    .site-nav-new .site-nav__top-link.active > .site-nav__link {
      color: #fff;
      background: #3f3f3f;
      background: rgba(63, 63, 63, 0.95); }
    .site-nav-new .site-nav__top-link.active .site-nav__megamenu {
      display: block; }
    .site-nav-new .site-nav__top-link > .site-nav__link {
      color: #2f292b;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 12px;
      padding: 5px 2px; }
      .site-nav-new .site-nav__top-link > .site-nav__link.site-nav--active {
        text-decoration: underline; }
      @media screen and (min-width: 992px) {
        .site-nav-new .site-nav__top-link > .site-nav__link {
          padding: 8px 3px;
          font-size: 16px; } }
      @media screen and (min-width: 1200px) {
        .site-nav-new .site-nav__top-link > .site-nav__link {
          padding: 15px 11px; }
          .site-nav-new .site-nav__top-link > .site-nav__link.has-megamenu {
            padding-right: 5px; } }
      .site-nav-new .site-nav__top-link > .site-nav__link:hover, .site-nav-new .site-nav__top-link > .site-nav__link:active, .site-nav-new .site-nav__top-link > .site-nav__link:focus {
        text-decoration: none; }

.site-nav__megamenu {
  display: none;
  margin: 0;
  padding: 45px 0 25px;
  background: rgba(63, 63, 63, 0.95);
  color: #fff;
  position: absolute;
  top: 1.6875em;
  left: 0;
  right: 0;
  z-index: 99;
  font-size: 14px;
  line-height: 1.125; }
  @media screen and (min-width: 992px) {
    .site-nav__megamenu {
      top: 2.375em;
      font-size: 16px; } }
  @media screen and (min-width: 1200px) {
    .site-nav__megamenu {
      top: 3.2142857em; } }
  .site-nav__megamenu ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .site-nav__megamenu li {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%; }
  .site-nav__megamenu a {
    color: #fff; }
  .site-nav__megamenu figure {
    float: left;
    width: 29%;
    padding: 0 45px 0 0;
    margin: 0; }
    .site-nav__megamenu figure img {
      display: block; }
    .site-nav__megamenu figure figcaption {
      margin-top: 10px; }
  .site-nav__megamenu .site-nav__main-link {
    float: left;
    padding: 0 0 3px; }
  .site-nav__megamenu .site-nav__all-link {
    float: right;
    padding: 0 0 3px; }
  .site-nav__megamenu .site-nav__submenu {
    padding-left: 20px;
    float: left;
    width: 71%;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2; }
    .site-nav__megamenu .site-nav__submenu .site-nav__link {
      padding: 9px 0; }
  .site-nav__megamenu .site-nav__subsubmenu {
    padding-left: 20px;
    padding-bottom: 5px; }
    .site-nav__megamenu .site-nav__subsubmenu .site-nav__link {
      padding: 6px 0; }

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

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: 0; }
  .mobile-nav ul {
    margin: 0; }
  .mobile-nav li {
    margin-bottom: 0; }
  .mobile-nav > li {
    border-bottom: 1px solid #e7e7e7; }
    .mobile-nav > li > a {
      font-weight: 700;
      text-transform: uppercase;
      font-size: 18px;
      padding: 14px 0; }
      .mobile-nav > li > a:hover, .mobile-nav > li > a:active, .mobile-nav > li > a:focus {
        color: #060506;
        text-decoration: none; }
    .mobile-nav > li:last-child {
      border-bottom: none; }

.mobile-nav__subsubmenu {
  margin-left: 35px !important; }

.mobile-nav__meta {
  padding-bottom: 5px; }
  .mobile-nav__meta a {
    font-size: 10px;
    letter-spacing: 0.025em;
    text-transform: uppercase; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: white; }

.mobile-nav__item > span {
  display: block;
  text-decoration: none;
  color: #2f292b;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 18px;
  padding: 9px 0; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  display: block;
  text-decoration: none;
  color: #2f292b;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 18px;
  padding: 9px 0; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    text-decoration: underline; }

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

.mobile-nav__toggle {
  display: block;
  float: right;
  margin-top: -7.5px; }
  .mobile-nav__toggle .icon {
    transform: rotate(-90deg); }

.mobile-nav--expanded .icon {
  transform: rotate(0deg); }

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

/*============================================================================
  #Drawers
==============================================================================*/
.js-drawer-open {
  overflow: hidden;
  height: 100%; }

.drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 7.5px 7.5px;
  max-width: 95%;
  z-index: 10;
  color: #3f3f3f;
  background-color: white;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .drawer a {
    color: #3f3f3f; }
    .drawer a:hover, .drawer a:focus {
      opacity: 0.7; }
  .drawer input,
  .drawer textarea {
    border-color: #7c7879; }

.drawer--left {
  width: 300px;
  left: -300px;
  border-right: 1px solid #7c7879; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
    .lt-ie9 .js-drawer-open-left .drawer--left {
      left: 0; }

.drawer--right {
  width: 300px;
  right: -300px;
  border-left: 1px solid #7c7879; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

#NavDrawer .drawer__header {
  margin: 0 -7.5px 7.5px;
  padding: 0 7.5px;
  background: #e1e1e1;
  border: none;
  width: auto; }
#NavDrawer .drawer__search button,
#NavDrawer .drawer__close button {
  font-size: 1.71429em; }

#CartDrawer {
  font-family: "Source Sans Pro", Arial, sans-serif;
  padding: 7.5px 15px 15px; }
  #CartDrawer .btn--secondary, #CartDrawer .iWishAdd,
  #CartDrawer .iWishCartAdd, #CartDrawer .iwishRemoveBtn {
    color: #fff; }

#PageContainer {
  overflow: hidden;
  background: #fff; }

body#checkout {
  height: auto; }

body[id$=-checkout] #PageContainer,
#checkout #PageContainer,
#inventory-issues #PageContainer {
  overflow-x: hidden; }

.anyflexbox body.template-checkout,
.anyflexbox body[id^="thank-you"],
.anyflexbox .page--thank-you,
.anyflexbox body#inventory-issues {
  display: block; }

.is-moved-by-drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }

.drawer__header {
  display: table;
  height: 50px;
  width: 100%;
  margin-bottom: 7.5px;
  border-bottom: 1px solid #e7e7e7; }

.drawer__header-inner {
  display: table-row; }

.drawer__title.h3 {
  font-size: 18px; }

.drawer__title,
.drawer__phone {
  width: 45%; }

.drawer__phone {
  font-size: 0.85714em; }

.drawer__search,
.drawer__close {
  width: 5%; }

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

.drawer__search,
.drawer__close {
  text-align: center; }
  .drawer__search button,
  .drawer__close button {
    position: relative;
    height: 100%;
    padding: 0 0.25em;
    color: inherit; }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: #3f3f3f;
  padding: 102px 0 45px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  color: #fff; }
  .site-footer h3, .site-footer .h3 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    margin-right: 15px;
    border-bottom: 2px solid #fff;
    padding-bottom: 15px; }
    @media screen and (max-width: 767px) {
      .site-footer h3, .site-footer .h3 {
        border: none; } }
  @media screen and (min-width: 1200px) {
    .site-footer {
      font-size: 17px; }
      .site-footer h3, .site-footer .h3 {
        font-size: 17px; } }
  @media screen and (max-width: 767px) {
    .site-footer {
      padding-top: 15px; }
      .site-footer h3:hover, .site-footer .h3:hover {
        cursor: pointer;
        color: #ed1c24; }
      .site-footer .grid, .site-footer .grid--rev, .site-footer .grid--full {
        margin-left: 0; }
        .site-footer .grid .grid__item, .site-footer .grid--rev .grid__item, .site-footer .grid--full .grid__item {
          padding-left: 0; } }
  .site-footer .boxes {
    margin: 0 0 35px;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff; }
    @media screen and (max-width: 767px) {
      .site-footer .boxes {
        border-top: none; } }
    .site-footer .boxes .grid__item {
      border-left: 4px solid #fff;
      border-right: 4px solid #fff;
      text-transform: uppercase;
      font-size: 33px;
      font-weight: 300;
      line-height: 33px;
      padding: 16px 44px 15px;
      font-family: "Source Sans Pro", Arial, sans-serif; }
      @media screen and (max-width: 1200px) {
        .site-footer .boxes .grid__item {
          font-size: 24px;
          line-height: 27px; } }
      @media screen and (max-width: 767px) {
        .site-footer .boxes .grid__item {
          border-left: none;
          border-right: none;
          border-top: 4px solid #fff;
          border-bottom: 4px solid #fff; } }
      .site-footer .boxes .grid__item:first-child {
        border-left: none;
        border-right: none;
        padding-top: 33px; }
        @media screen and (max-width: 767px) {
          .site-footer .boxes .grid__item:first-child {
            border-top: none;
            border-bottom: none;
            padding-top: 5px; } }
      .site-footer .boxes .grid__item:last-child {
        border-left: none;
        border-right: none;
        padding-left: 0;
        padding-right: 0;
        text-align: center; }
        @media screen and (max-width: 767px) {
          .site-footer .boxes .grid__item:last-child {
            border-top: none;
            border-bottom: none; } }
        @media screen and (max-width: 1200px) {
          .site-footer .boxes .grid__item:last-child {
            padding: 14px 0 10px; } }
  .site-footer .footer-nav {
    margin: 0 0 39px;
    padding: 0;
    list-style-type: none; }
    @media screen and (max-width: 767px) {
      .site-footer .footer-nav {
        display: none; } }
    .site-footer .footer-nav li {
      margin: 0;
      padding: 0; }
  .site-footer a {
    color: white;
    text-decoration: none; }
    .site-footer a:hover {
      color: #ed1c24; }
  .site-footer .social-icons {
    padding-top: 38px;
    text-align: center; }
  .site-footer #mc_newsletter {
    position: relative; }
    .site-footer #mc_newsletter h3, .site-footer #mc_newsletter .h3 {
      font-size: 13px;
      margin-bottom: 8px;
      font-weight: 500;
      text-transform: none;
      border: none; }
      @media screen and (min-width: 1200px) {
        .site-footer #mc_newsletter h3, .site-footer #mc_newsletter .h3 {
          font-size: 15px;
          line-height: 18px; } }
      @media screen and (max-width: 767px) {
        .site-footer #mc_newsletter h3, .site-footer #mc_newsletter .h3 {
          text-align: left; } }
    .site-footer #mc_newsletter input {
      width: 100%;
      /*max-width: 171px; */
      padding: 6px; }
      .site-footer #mc_newsletter input[type="email"] {
        background: #fff; }
      .site-footer #mc_newsletter input.btn, .site-footer #mc_newsletter input.btn--secondary, .site-footer #mc_newsletter input.iWishAdd,
      .site-footer #mc_newsletter input.iWishCartAdd, .site-footer #mc_newsletter input.iwishRemoveBtn, .site-footer #mc_newsletter input.iwishBuyBtn {
        width: auto;
        position: absolute;
        right: 0; }
    .site-footer #mc_newsletter div.mce_inline_error,
    .site-footer #mc_newsletter #mce-error-response,
    .site-footer #mc_newsletter #mce-success-response {
      clear: both;
      padding: 7.5px 0;
      font-size: 12px;
      line-height: 15px;
      font-weight: bold;
      text-align: left; }
    .site-footer #mc_newsletter div.mce_inline_error,
    .site-footer #mc_newsletter #mce-error-response {
      color: #ed1c24; }
    .site-footer #mc_newsletter #mce-success-response {
      color: #fff; }
  @media screen and (max-width: 991px) {
    .site-footer #final-footer {
      margin-top: 39px; } }
  @media screen and (max-width: 767px) {
    .site-footer #final-footer {
      margin-top: 0px; } }
  .site-footer #final-footer .grid__item:nth-of-type(1) {
    padding-bottom: 25px; }
  .site-footer .feedback-notice {
    padding: 39px 0 19px;
    font-weight: 700; }
    .site-footer .feedback-notice p {
      display: inline-block;
      padding: 20px 30px;
      border: 4px solid #fff;
      margin-bottom: 0; }

/*============================================================================
  #General
==============================================================================*/
.gray {
  background: #ebebeb; }

/*============================================================================
  #Home Page
==============================================================================*/
@media screen and (max-width: 767px) {
  .template-index .main-content {
    /*margin-top: 20px;*/ } }
.template-index .main-content .bx-wrapper img {
  width: 100% !important; }
.template-index .main-content .bxslider {
  list-style: none;
  margin: 0;
  padding: 0; }
  .template-index .main-content .bxslider li {
    margin: 0;
    padding: 0 0 15px 0; }
    .template-index .main-content .bxslider li img {
      width: 100%; }
.template-index .main-content > .wrapper > *:first-child {
  position: relative;
  z-index: 2; }

@media screen and (min-width: 1200px) {
  .xlarge--five-sixths {
    width: 83.333%; }

  .push--xlarge--one-twelfth {
    left: 8.333%; } }
.home-quote {
  margin: 55px auto;
  margin-bottom: 10px;
  width: 95%;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 16px;
  font-style: italic;
  text-decoration: none;
  line-height: 21px; }
  @media screen and (min-width: 1200px) {
    .home-quote {
      font-size: 18px;
      line-height: 22px;
      width: 95%; } }

hr.dots {
  border: 0;
  padding-top: 52px;
  background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 22px;
  margin: 0; }

#candid_widget {
  margin-bottom: 10px; }
  #candid_widget .text-center p {
    margin-bottom: 10px; }
    #candid_widget .text-center p span {
      font-family: "Source Sans Pro", Arial, sans-serif;
      font-size: 21px; }

/*============================================================================
  #About Page
==============================================================================*/
body.template-page-about .rte div.grid--rev {
  padding-top: 18px; }
  body.template-page-about .rte div.grid--rev h2, body.template-page-about .rte div.grid--rev .h2 {
    margin-top: 68px; }
    @media screen and (max-width: 767px) {
      body.template-page-about .rte div.grid--rev h2, body.template-page-about .rte div.grid--rev .h2 {
        margin-top: 30px; } }
  body.template-page-about .rte div.grid--rev h3, body.template-page-about .rte div.grid--rev .h3 {
    margin-top: 16px; }

#about_materials {
  padding: 41px 0 34px;
  background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/about_materials.jpg?v=2097200243269303232) no-repeat center center;
  background-size: cover;
  color: #fff; }
  #about_materials .grid__item {
    padding: 0 15px; }
  #about_materials h2, #about_materials .h2 {
    color: #fff;
    margin: 0; }
  #about_materials .video-wrapper {
    margin-top: 48px;
    margin-bottom: 13px;
    border: 1px solid #fff; }
  #about_materials .box {
    position: relative;
    background: #fff;
    padding: 15px 15px 15px 70px;
    color: #2f292b;
    font-size: 10px;
    line-height: 1.75;
    font-weight: 700;
    /*font-variant: small-caps;*/
    text-transform: uppercase; }
    #about_materials .box:after {
      content: '';
      display: block;
      position: absolute;
      left: 15px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      border-top: 21px solid transparent;
      border-bottom: 21px solid transparent;
      border-left: 36px solid #2f292b; }
    #about_materials .box a {
      color: #2f292b; }

#candid_widget2 {
  font-family: "Source Sans Pro", Arial, sans-serif; }
  #candid_widget2 .text-center {
    padding-top: 15px; }
    #candid_widget2 .text-center h2, #candid_widget2 .text-center .h2 {
      margin: 0; }
    #candid_widget2 .text-center p {
      margin-bottom: 10px; }
      #candid_widget2 .text-center p a {
        color: #b11116;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px; }
  #candid_widget2 #the_candid_widget {
    margin-bottom: -21px; }

#crew {
  padding: 25px 0 20px;
  font-size: 12px;
  line-height: 1.25; }
  #crew h2, #crew .h2 {
    margin-bottom: 0; }
    #crew h2 + .grid, #crew .h2 + .grid, #crew h2 + .grid--rev, #crew .h2 + .grid--rev, #crew h2 + .grid--full, #crew .h2 + .grid--full {
      border-top: none; }
  #crew h3, #crew .h3 {
    padding-top: 9px;
    margin-bottom: 0;
    font-size: 10px;
    line-height: 1.5;
    font-weight: 700; }
    #crew h3 span, #crew .h3 span {
      text-transform: uppercase;
      display: inline;
      font-weight: 400; }
  #crew .grid .grid__item, #crew .grid--rev .grid__item, #crew .grid--full .grid__item {
    padding-top: 21px;
    padding-bottom: 6px;
    position: relative; }
    @media screen and (max-width: 767px) {
      #crew .grid .grid__item:nth-of-type(2n+3), #crew .grid--rev .grid__item:nth-of-type(2n+3), #crew .grid--full .grid__item:nth-of-type(2n+3) {
        clear: both; }
        #crew .grid .grid__item:nth-of-type(2n+3):before, #crew .grid--rev .grid__item:nth-of-type(2n+3):before, #crew .grid--full .grid__item:nth-of-type(2n+3):before {
          content: '';
          position: absolute;
          top: 0;
          left: 15px;
          right: -100%;
          display: block;
          height: 1px;
          background: #424242; } }
    @media screen and (min-width: 767px) {
      #crew .grid .grid__item:nth-of-type(5n+6), #crew .grid--rev .grid__item:nth-of-type(5n+6), #crew .grid--full .grid__item:nth-of-type(5n+6) {
        clear: both; }
        #crew .grid .grid__item:nth-of-type(5n+6):before, #crew .grid--rev .grid__item:nth-of-type(5n+6):before, #crew .grid--full .grid__item:nth-of-type(5n+6):before {
          content: '';
          position: absolute;
          top: 0;
          left: 15px;
          right: -400%;
          display: block;
          height: 1px;
          background: #424242; } }

/*============================================================================
  #Contact Page
==============================================================================*/
#contact {
  color: #3f3f3f;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6875;
  padding-bottom: 62px; }
  @media screen and (max-width: 767px) {
    #contact {
      padding-bottom: 15px; } }
  #contact h2, #contact .h2 {
    line-height: 1.125;
    margin-bottom: 5px; }
  #contact p {
    margin-bottom: 27px; }
  #contact a {
    color: #b11116; }
  #contact .social a {
    color: #3f3f3f;
    text-decoration: none; }
  @media screen and (max-width: 991px) {
    #contact .grid__item:nth-of-type(3) {
      clear: both; } }

#faq {
  font-size: 14px;
  line-height: 1.5;
  color: #3f3f3f;
  padding-bottom: 20px; }
  #faq .faqs {
    list-style: none;
    margin: 0 auto 35px; }
    #faq .faqs li {
      margin-bottom: 0.7em; }
      #faq .faqs li.active > a {
        font-weight: bold; }
      #faq .faqs li > a {
        color: #595959;
        font-style: italic;
        text-decoration: none; }
        #faq .faqs li > a:hover {
          color: #000;
          border-bottom: 1px dotted #595959; }
        #faq .faqs li > a + * {
          margin-top: 6px; }
        #faq .faqs li > a ~ * {
          display: none;
          line-height: 1.428571;
          margin: 0;
          padding: 1.0em;
          background: #efefef; }

#txt {
  font-size: 14px;
  line-height: 1.5;
  color: #3f3f3f;
  padding-bottom: 20px; }
  #txt .faqs {
    list-style: none;
    margin: 0 auto 35px; }
    #txt .faqs li {
      margin-bottom: 0.7em; }
      #txt .faqs li.active > a {
        font-weight: bold; }
      #txt .faqs li table {
        display: none; }
        #txt .faqs li table thead {
          background: #efefef; }

/*============================================================================
  #Shipping Page
==============================================================================*/
#shipping_info {
  font-weight: 400;
  line-height: 1.6875;
  padding-bottom: 26px; }
  #shipping_info .grid__item {
    padding-left: 45px;
    padding-right: 30px; }
  #shipping_info h2, #shipping_info .h2 {
    margin-top: 0; }
  #shipping_info img {
    margin-bottom: 3px; }

#shipping_rates {
  font-size: 14px;
  line-height: 1.3571428;
  padding-bottom: 10px; }
  #shipping_rates h1, #shipping_rates .h1 {
    margin-bottom: 10px; }
  #shipping_rates h2, #shipping_rates .h2 {
    margin-top: 22px;
    margin-bottom: 0; }
  #shipping_rates i {
    display: inline-block;
    font-size: 18px;
    line-height: 1.1666;
    padding-bottom: 1.0em; }

#shipping_boxes {
  padding: 49px 0 48px; }
  #shipping_boxes #box1 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.1666;
    font-weight: 700;
    text-transform: uppercase; }
    #shipping_boxes #box1 img {
      display: block;
      margin: 0 auto 13px; }
  #shipping_boxes #box2 {
    font-size: 14px;
    line-height: 1.428571; }
    #shipping_boxes #box2 .lined {
      margin: 0 15px;
      padding: 0 15px;
      border-left: 2px solid #3f3f3f;
      border-right: 2px solid #3f3f3f; }
      @media screen and (max-width: 767px) {
        #shipping_boxes #box2 .lined {
          margin: 30px 0;
          padding: 30px 0;
          border-left: none;
          border-right: none;
          border-top: 2px solid #3f3f3f;
          border-bottom: 2px solid #3f3f3f; } }
    #shipping_boxes #box2 b {
      text-transform: uppercase; }
    #shipping_boxes #box2 p {
      padding-bottom: 4px;
      margin-bottom: 0; }
  #shipping_boxes #box3 {
    font-size: 21px;
    line-height: 1.285714;
    text-transform: uppercase; }

/*============================================================================
  #Video Page
==============================================================================*/
#top-video {
  padding: 20px 0 10px; }
  @media screen and (max-width: 767px) {
    #top-video {
      padding-left: 30px;
      padding-right: 30px; } }
  #top-video .video-wrapper {
    margin-top: 48px;
    margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      #top-video .video-wrapper {
        margin-top: 12px; } }
  #top-video ul {
    list-style: none;
    margin: 0;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.714285;
    text-transform: uppercase; }
    #top-video ul li {
      margin-bottom: 2.142857em; }
    #top-video ul a {
      display: block;
      color: #424242;
      text-decoration: none;
      max-width: 160px; }
      #top-video ul a:after {
        content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icon_arrow.png?v=4278176671719907991);
        float: right;
        padding-top: 1px; }

@media screen and (max-width: 767px) {
  .videos {
    padding-left: 30px;
    padding-right: 30px; }
    .videos .video-wrapper {
      margin-bottom: 45px; } }
.videos h2, .videos .h2 {
  padding-top: 20px;
  padding-bottom: 11px; }
.videos a.to-top {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 2.0;
  text-transform: uppercase;
  color: #424242;
  text-decoration: none;
  margin: 3px 0 0;
  display: inline-block; }
  .videos a.to-top:after {
    content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icon_arrow_up.png?v=30005270607377645);
    padding-left: 7px; }
.videos:last-child {
  padding-bottom: 79px; }
.videos .one-half:nth-of-type(2n+1) {
  clear: both; }

/*============================================================================
  #History Page
==============================================================================*/
#story {
  padding: 20px 0 48px; }
  #story h1, #story .h1 {
    margin-bottom: 14px; }
  #story i {
    display: block;
    padding-bottom: 20px; }
  #story .img-box {
    border: 1px solid #737373;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px; }
    #story .img-box a {
      display: block; }
    #story .img-box img {
      width: 100%; }
    #story .img-box p {
      text-align: center;
      padding: 11px 33px 0; }

@media screen and (max-width: 767px) {
  .masonry_grid {
    margin-left: 0;
    margin-right: 15px; } }

/*============================================================================
  #Glossary
==============================================================================*/
#terms h1, #terms .h1 {
  margin-bottom: 0; }

#terms_list {
  background: #dadada;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  padding: 11px 0 13px; }
  #terms_list ul {
    padding: 0;
    margin: 0;
    list-style: none; }
    #terms_list ul li {
      display: inline-block;
      margin-bottom: 0; }
      #terms_list ul li a {
        display: block;
        padding: 0.5em;
        text-decoration: none;
        color: #3f3f3f; }
        #terms_list ul li a:hover {
          color: #23527c; }

.term {
  margin: 92px 0 0;
  font-size: 14px;
  line-height: 1.5; }
  @media screen and (max-width: 767px) {
    .term > .small--one-whole {
      padding-left: 0; } }
  .term:before {
    /*content: '';*/
    background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/material_bg.jpg?v=12194142630761069614) repeat-x center top;
    display: block;
    heighT: 94px;
    margin-bottom: 30px;
    margin-left: 15px; }
    @media screen and (max-width: 767px) {
      .term:before {
        margin-left: 0; } }
  .term .video-wrapper {
    margin-bottom: 23px; }
  .term h2, .term .h2 {
    font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #3f3f3f;
    margin: 7px 0 15px !important; }
  .term p {
    margin-bottom: 1.428571em; }
    .term p::first-line {
      font-weight: 700;
      font-variant: small-caps;
      font-size: 15px; }

/*============================================================================
  #Job Page
==============================================================================*/
#jobs h1, #jobs .h1 {
  font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 47px;
  color: #5c5754;
  margin-bottom: 14px; }
  #jobs h1 span, #jobs .h1 span {
    display: block;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #2f292b; }

.job_listing {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3888;
  color: #2f292b;
  text-transform: uppercase;
  padding: 9px 0; }
  @media screen and (max-width: 480px) {
    .job_listing li {
      width: 100%; } }
  .job_listing img {
    display: block;
    margin: 0 auto; }
  .job_listing a {
    text-decoration: none; }

.job_opening {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: #2f292b;
  padding-bottom: 26px; }
  .job_opening .one-third {
    line-height: 1.285714; }
    .job_opening .one-third img {
      margin: 0 0 4px;
      display: block; }
  .job_opening:before {
    content: '';
    display: block;
    position: relative;
    margin-left: 15px;
    border-top: 1px solid #eee;
    margin-bottom: 21px; }
  .job_opening h2, .job_opening .h2 {
    margin: 0 0 10px;
    background-color: #2f292b;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 300;
    font-size: 33px;
    line-height: 1;
    padding: 18px 0;
    color: #ffffff; }
    @media screen and (max-width: 767px) {
      .job_opening h2, .job_opening .h2 {
        font-size: 24px;
        line-height: 30px; } }
    @media screen and (max-width: 480px) {
      .job_opening h2, .job_opening .h2 {
        position: relative;
        padding-left: 74px; } }
    .job_opening h2 img, .job_opening .h2 img {
      float: left;
      margin-right: 20px;
      margin-left: 10px;
      margin-top: -18px; }
      @media screen and (max-width: 480px) {
        .job_opening h2 img, .job_opening .h2 img {
          position: absolute;
          top: 18px;
          left: 0; } }
    .job_opening h2 span, .job_opening .h2 span {
      float: right;
      margin-right: 10px;
      font-family: "Source Sans Pro", Arial, sans-serif;
      font-weight: 700;
      font-size: 12px;
      line-height: 33px;
      font-style: normal;
      text-transform: uppercase; }
  .job_opening h3, .job_opening .h3 {
    margin-top: 0; }
  .job_opening ul {
    width: 45%;
    list-style: none;
    margin: 0;
    padding: 0 0 10px; }
    @media screen and (max-width: 480px) {
      .job_opening ul {
        width: 100%;
        border-bottom: 1px solid #c8c8c8;
        padding: 0; }
        .job_opening ul + ul {
          padding: 10px 0 10px;
          border-bottom: none; } }
    .job_opening ul li {
      border-top: 1px solid #c8c8c8;
      margin: 0;
      padding: 10px 0; }
      .job_opening ul li:first-child {
        border-top: none;
        padding-top: 0; }
  .job_opening ul + ul + h3, .job_opening ul + ul + .h3 {
    clear: both;
    border-top: 1px solid #000;
    padding-top: 10px; }

/*============================================================================
  #Specs Page
==============================================================================*/
#dimensions .spec-anchors {
  list-style: none;
  margin-top: -7px; }
  #dimensions .spec-anchors a {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.714285;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #b11116; }
    #dimensions .spec-anchors a:after {
      content: url("//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/arrow_red.png?v=5004519349815629448");
      display: inline-block;
      padding-left: 5px;
      vertical-align: middle; }
#dimensions h2, #dimensions .h2 {
  font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1;
  color: #3f3f3f;
  text-transform: uppercase;
  padding-top: 50px;
  padding-bottom: 25px; }
  #dimensions h2 span, #dimensions .h2 span {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.714285;
    font-weight: 700;
    font-style: normal;
    color: #424242;
    padding-top: 9px; }
#dimensions p {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
  color: #424242;
  padding: 0 0 16px; }

/*============================================================================
  #Account Pages
==============================================================================*/
.acct-menu {
  list-style: none;
  margin: 0 0 2.0em; }

body.template-customers-account .main-content,
body.template-customers-order .main-content,
body.template-customers-addresses .main-content {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 1.0em;
  line-height: inherit;
  color: #443f3f;
  padding-bottom: 45px; }
  body.template-customers-account .main-content a,
  body.template-customers-order .main-content a,
  body.template-customers-addresses .main-content a {
    text-decoration: underline; }
    body.template-customers-account .main-content a.btn, body.template-customers-account .main-content a.btn--secondary, body.template-customers-account .main-content a.iWishAdd,
    body.template-customers-account .main-content a.iWishCartAdd, body.template-customers-account .main-content a.iwishRemoveBtn, body.template-customers-account .main-content a.iwishBuyBtn,
    body.template-customers-order .main-content a.btn,
    body.template-customers-order .main-content a.btn--secondary,
    body.template-customers-order .main-content a.iWishAdd,
    body.template-customers-order .main-content a.iWishCartAdd,
    body.template-customers-order .main-content a.iwishRemoveBtn,
    body.template-customers-order .main-content a.iwishBuyBtn,
    body.template-customers-addresses .main-content a.btn,
    body.template-customers-addresses .main-content a.btn--secondary,
    body.template-customers-addresses .main-content a.iWishAdd,
    body.template-customers-addresses .main-content a.iWishCartAdd,
    body.template-customers-addresses .main-content a.iwishRemoveBtn,
    body.template-customers-addresses .main-content a.iwishBuyBtn {
      text-decoration: none; }
    body.template-customers-account .main-content a:hover,
    body.template-customers-order .main-content a:hover,
    body.template-customers-addresses .main-content a:hover {
      text-decoration: none; }
  body.template-customers-account .main-content h2, body.template-customers-account .main-content .h2,
  body.template-customers-order .main-content h2,
  body.template-customers-order .main-content .h2,
  body.template-customers-addresses .main-content h2,
  body.template-customers-addresses .main-content .h2 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #443f3f;
    text-transform: uppercase;
    letter-spacing: 1px; }
  body.template-customers-account .main-content h3, body.template-customers-account .main-content .h3,
  body.template-customers-order .main-content h3,
  body.template-customers-order .main-content .h3,
  body.template-customers-addresses .main-content h3,
  body.template-customers-addresses .main-content .h3 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #443f3f;
    text-transform: uppercase; }
  body.template-customers-account .main-content h4, body.template-customers-account .main-content .h4,
  body.template-customers-order .main-content h4,
  body.template-customers-order .main-content .h4,
  body.template-customers-addresses .main-content h4,
  body.template-customers-addresses .main-content .h4 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #443f3f;
    text-transform: uppercase; }
  body.template-customers-account .main-content table th,
  body.template-customers-order .main-content table th,
  body.template-customers-addresses .main-content table th {
    border-top: none;
    padding-top: 15px; }
  body.template-customers-account .main-content table th,
  body.template-customers-account .main-content table td,
  body.template-customers-order .main-content table th,
  body.template-customers-order .main-content table td,
  body.template-customers-addresses .main-content table th,
  body.template-customers-addresses .main-content table td {
    border-left: none;
    border-right: none; }
    @media screen and (max-width: 767px) {
      body.template-customers-account .main-content table th,
      body.template-customers-account .main-content table td,
      body.template-customers-order .main-content table th,
      body.template-customers-order .main-content table td,
      body.template-customers-addresses .main-content table th,
      body.template-customers-addresses .main-content table td {
        border: none;
        padding: 7.5px; }
        body.template-customers-account .main-content table th:last-child,
        body.template-customers-account .main-content table td:last-child,
        body.template-customers-order .main-content table th:last-child,
        body.template-customers-order .main-content table td:last-child,
        body.template-customers-addresses .main-content table th:last-child,
        body.template-customers-addresses .main-content table td:last-child {
          border-bottom: 1px solid #2f292b; }
        body.template-customers-account .main-content table th[colspan="4"],
        body.template-customers-account .main-content table td[colspan="4"],
        body.template-customers-order .main-content table th[colspan="4"],
        body.template-customers-order .main-content table td[colspan="4"],
        body.template-customers-addresses .main-content table th[colspan="4"],
        body.template-customers-addresses .main-content table td[colspan="4"] {
          display: none; } }
  body.template-customers-account .main-content table th,
  body.template-customers-account .main-content table tfoot td strong,
  body.template-customers-order .main-content table th,
  body.template-customers-order .main-content table tfoot td strong,
  body.template-customers-addresses .main-content table th,
  body.template-customers-addresses .main-content table tfoot td strong {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #443f3f; }

/*============================================================================
  #404 Page
==============================================================================*/
body.template-404 #PageContainer .rte {
  margin-top: 42px;
  position: relative;
  overflow: hidden;
  background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/404_bg.jpg?v=7959279530197443185);
  background-size: cover;
  background-position: center center; }
  @media screen and (max-width: 991px) {
    body.template-404 #PageContainer .rte {
      background-position: right center; } }
  @media screen and (max-width: 767px) {
    body.template-404 #PageContainer .rte {
      background-position: 75% center; } }

#not-found {
  min-height: 350px; }

.box_404 {
  padding: 143px 60px 121px;
  margin-bottom: 212px;
  background: rgba(255, 255, 255, 0.8);
  color: #231f20; }
  .box_404 h1, .box_404 .h1 {
    margin-top: -42px;
    margin-bottom: 42px;
    padding-top: 0;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 129px;
    line-height: 129px;
    font-weight: 700;
    font-style: normal;
    color: #0f0f0f; }
  .box_404 p {
    font-size: 29px;
    line-height: 39px; }
  .box_404 p.large {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 39px;
    line-height: 39px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 43px; }
    .box_404 p.large strong {
      margin-bottom: 1.0em;
      color: #0f0f0f; }
  .box_404 .search-bar {
    max-width: 350px;
    margin: 0 auto; }
    .box_404 .search-bar .input-group-field {
      background: none;
      font-size: 19px;
      height: 61px;
      border-width: 2px; }
    .box_404 .search-bar .input-group-btn .btn, .box_404 .search-bar .input-group-btn .btn--secondary, .box_404 .search-bar .input-group-btn .iWishAdd,
    .box_404 .search-bar .input-group-btn .iWishCartAdd, .box_404 .search-bar .input-group-btn .iwishRemoveBtn, .box_404 .search-bar .input-group-btn .iwishBuyBtn {
      background: none;
      height: 61px;
      width: 61px;
      border-width: 2px; }
  @media screen and (max-width: 991px) {
    .box_404 {
      margin-top: 40px;
      margin-bottom: 42px;
      padding: 60px; }
      .box_404 h1, .box_404 .h1 {
        margin-top: -21px;
        margin-bottom: 21px;
        font-size: 64px;
        line-height: 64px; }
      .box_404 p {
        font-size: 22px;
        line-height: 29px; }
      .box_404 p.large {
        font-size: 29px;
        line-height: 29px; } }

/*============================================================================
  #Product and Collection Grids
==============================================================================*/
.grid__image {
  display: block;
  margin: 0 auto 7.5px; }
  .grid__image img {
    display: block;
    margin: 0 auto; }

/*============================================================================
  #Collection Filters
==============================================================================*/
ul.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  width: 228px; }
  ul.filter-list.opened, ul.filter-list:hover {
    display: block; }
  ul.filter-list li {
    border-top: 1px solid #9e9c9d;
    margin: 0;
    padding: 0; }
    ul.filter-list li a {
      display: block;
      padding: 7px 6px;
      font-family: "Source Sans Pro", Arial, sans-serif;
      font-size: 12px;
      line-height: 1.75;
      background-color: #ffffff;
      color: #2f292b; }
      ul.filter-list li a:hover {
        background-color: #2f292b;
        color: #ffffff; }

.filter--active {
  font-weight: bold; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin: -15px 0 45px;
  text-align: center;
  background: #D3D2D2;
  padding: 5px;
  font-weight: 400;
  text-transform: uppercase; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    color: #fff; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }
  .breadcrumb .breadcrumb__item--completed,
  .breadcrumb .breadcrumb__item--current {
    color: #5F5F5F; }
    .breadcrumb .breadcrumb__item--completed a,
    .breadcrumb .breadcrumb__item--completed span,
    .breadcrumb .breadcrumb__item--current a,
    .breadcrumb .breadcrumb__item--current span {
      color: #5F5F5F; }
  .breadcrumb .breadcrumb__item--current ~ * {
    color: #fff; }
    .breadcrumb .breadcrumb__item--current ~ * a,
    .breadcrumb .breadcrumb__item--current ~ * span {
      color: #fff; }

.page--logo-main .breadcrumb {
  margin-top: -15px !important; }

/*============================================================================
  #Collection Page
==============================================================================*/
body.template-collection .filter_holder,
body.template-collection-skookum .filter_holder,
#cool_stuff .filter_holder,
.iwishWrapper .filter_holder,
body.template-search .filter_holder,
.featured_products .filter_holder,
.template-cart .cross-sell .filter_holder {
  position: relative; }
  body.template-collection .filter_holder h1, body.template-collection .filter_holder .h1,
  body.template-collection-skookum .filter_holder h1,
  body.template-collection-skookum .filter_holder .h1,
  #cool_stuff .filter_holder h1,
  #cool_stuff .filter_holder .h1,
  .iwishWrapper .filter_holder h1,
  .iwishWrapper .filter_holder .h1,
  body.template-search .filter_holder h1,
  body.template-search .filter_holder .h1,
  .featured_products .filter_holder h1,
  .featured_products .filter_holder .h1,
  .template-cart .cross-sell .filter_holder h1,
  .template-cart .cross-sell .filter_holder .h1 {
    padding-right: 243px; }
    @media screen and (max-width: 767px) {
      body.template-collection .filter_holder h1, body.template-collection .filter_holder .h1,
      body.template-collection-skookum .filter_holder h1,
      body.template-collection-skookum .filter_holder .h1,
      #cool_stuff .filter_holder h1,
      #cool_stuff .filter_holder .h1,
      .iwishWrapper .filter_holder h1,
      .iwishWrapper .filter_holder .h1,
      body.template-search .filter_holder h1,
      body.template-search .filter_holder .h1,
      .featured_products .filter_holder h1,
      .featured_products .filter_holder .h1,
      .template-cart .cross-sell .filter_holder h1,
      .template-cart .cross-sell .filter_holder .h1 {
        padding-right: 0; } }
body.template-collection h1, body.template-collection .h1,
body.template-collection-skookum h1,
body.template-collection-skookum .h1,
#cool_stuff h1,
#cool_stuff .h1,
.iwishWrapper h1,
.iwishWrapper .h1,
body.template-search h1,
body.template-search .h1,
.featured_products h1,
.featured_products .h1,
.template-cart .cross-sell h1,
.template-cart .cross-sell .h1 {
  font-size: 30px;
  color: #5b5653;
  margin-bottom: 0.5em; }
body.template-collection .filter-list-holder,
body.template-collection-skookum .filter-list-holder,
#cool_stuff .filter-list-holder,
.iwishWrapper .filter-list-holder,
body.template-search .filter-list-holder,
.featured_products .filter-list-holder,
.template-cart .cross-sell .filter-list-holder {
  /*	position: absolute;
      top: 35px;
      right: 0;
      z-index: 10;*/
  position: relative;
  clear: both;
  width: 228px;
  height: 39px;
  z-index: 10;
  border: 2px solid #2f292b; }
  @media screen and (max-width: 767px) {
    body.template-collection .filter-list-holder,
    body.template-collection-skookum .filter-list-holder,
    #cool_stuff .filter-list-holder,
    .iwishWrapper .filter-list-holder,
    body.template-search .filter-list-holder,
    .featured_products .filter-list-holder,
    .template-cart .cross-sell .filter-list-holder {
      position: relative;
      top: auto;
      right: auto;
      margin-bottom: 15px;
      height: 39px; } }
  body.template-collection .filter-list-holder button,
  body.template-collection-skookum .filter-list-holder button,
  #cool_stuff .filter-list-holder button,
  .iwishWrapper .filter-list-holder button,
  body.template-search .filter-list-holder button,
  .featured_products .filter-list-holder button,
  .template-cart .cross-sell .filter-list-holder button {
    display: block;
    padding: 7px 6px;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.75;
    background-color: #ffffff;
    color: #2f292b;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    padding-left: 21px;
    width: 100%;
    text-align: left; }
    body.template-collection .filter-list-holder button:before,
    body.template-collection-skookum .filter-list-holder button:before,
    #cool_stuff .filter-list-holder button:before,
    .iwishWrapper .filter-list-holder button:before,
    body.template-search .filter-list-holder button:before,
    .featured_products .filter-list-holder button:before,
    .template-cart .cross-sell .filter-list-holder button:before {
      content: '';
      position: absolute;
      top: 15px;
      left: 8px;
      display: block;
      width: 0;
      height: 0;
      border-top: 7px solid #2f292b;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent; }
    body.template-collection .filter-list-holder button:hover,
    body.template-collection-skookum .filter-list-holder button:hover,
    #cool_stuff .filter-list-holder button:hover,
    .iwishWrapper .filter-list-holder button:hover,
    body.template-search .filter-list-holder button:hover,
    .featured_products .filter-list-holder button:hover,
    .template-cart .cross-sell .filter-list-holder button:hover {
      background-color: #2f292b;
      color: #ffffff; }
      body.template-collection .filter-list-holder button:hover:before,
      body.template-collection-skookum .filter-list-holder button:hover:before,
      #cool_stuff .filter-list-holder button:hover:before,
      .iwishWrapper .filter-list-holder button:hover:before,
      body.template-search .filter-list-holder button:hover:before,
      .featured_products .filter-list-holder button:hover:before,
      .template-cart .cross-sell .filter-list-holder button:hover:before {
        border-top-color: #fff; }
body.template-collection ul.filter-list,
body.template-collection-skookum ul.filter-list,
#cool_stuff ul.filter-list,
.iwishWrapper ul.filter-list,
body.template-search ul.filter-list,
.featured_products ul.filter-list,
.template-cart .cross-sell ul.filter-list {
  position: absolute;
  display: none;
  top: 35px;
  right: -2px;
  z-index: 10;
  max-height: 333px;
  overflow: auto;
  border: 2px solid #2f292b;
  border-top: none;
  -webkit-overflow-scrolling: touch; }
  body.template-collection ul.filter-list.opened,
  body.template-collection-skookum ul.filter-list.opened,
  #cool_stuff ul.filter-list.opened,
  .iwishWrapper ul.filter-list.opened,
  body.template-search ul.filter-list.opened,
  .featured_products ul.filter-list.opened,
  .template-cart .cross-sell ul.filter-list.opened {
    display: block; }
  @media screen and (max-width: 767px) {
    body.template-collection ul.filter-list,
    body.template-collection-skookum ul.filter-list,
    #cool_stuff ul.filter-list,
    .iwishWrapper ul.filter-list,
    body.template-search ul.filter-list,
    .featured_products ul.filter-list,
    .template-cart .cross-sell ul.filter-list {
      right: auto; }
      body.template-collection ul.filter-list::-webkit-scrollbar,
      body.template-collection-skookum ul.filter-list::-webkit-scrollbar,
      #cool_stuff ul.filter-list::-webkit-scrollbar,
      .iwishWrapper ul.filter-list::-webkit-scrollbar,
      body.template-search ul.filter-list::-webkit-scrollbar,
      .featured_products ul.filter-list::-webkit-scrollbar,
      .template-cart .cross-sell ul.filter-list::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 7px; }
      body.template-collection ul.filter-list::-webkit-scrollbar-thumb,
      body.template-collection-skookum ul.filter-list::-webkit-scrollbar-thumb,
      #cool_stuff ul.filter-list::-webkit-scrollbar-thumb,
      .iwishWrapper ul.filter-list::-webkit-scrollbar-thumb,
      body.template-search ul.filter-list::-webkit-scrollbar-thumb,
      .featured_products ul.filter-list::-webkit-scrollbar-thumb,
      .template-cart .cross-sell ul.filter-list::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5); } }
body.template-collection main,
body.template-collection-skookum main,
#cool_stuff main,
.iwishWrapper main,
body.template-search main,
.featured_products main,
.template-cart .cross-sell main {
  padding-bottom: 60px; }
  @media screen and (max-width: 767px) {
    body.template-collection main,
    body.template-collection-skookum main,
    #cool_stuff main,
    .iwishWrapper main,
    body.template-search main,
    .featured_products main,
    .template-cart .cross-sell main {
      padding-bottom: 15px; } }
body.template-collection .product-entry,
body.template-collection-skookum .product-entry,
#cool_stuff .product-entry,
.iwishWrapper .product-entry,
body.template-search .product-entry,
.featured_products .product-entry,
.template-cart .cross-sell .product-entry {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #2f292b;
  position: relative;
  margin-bottom: 23px; }
  body.template-collection .product-entry .product_image,
  body.template-collection-skookum .product-entry .product_image,
  #cool_stuff .product-entry .product_image,
  .iwishWrapper .product-entry .product_image,
  body.template-search .product-entry .product_image,
  .featured_products .product-entry .product_image,
  .template-cart .cross-sell .product-entry .product_image {
    height: 0;
    padding-bottom: 66%;
    position: relative; }
    body.template-collection .product-entry .product_image a,
    body.template-collection-skookum .product-entry .product_image a,
    #cool_stuff .product-entry .product_image a,
    .iwishWrapper .product-entry .product_image a,
    body.template-search .product-entry .product_image a,
    .featured_products .product-entry .product_image a,
    .template-cart .cross-sell .product-entry .product_image a {
      display: block;
      position: absolute;
      width: 100%;
      height: 100%; }
      body.template-collection .product-entry .product_image a:after,
      body.template-collection-skookum .product-entry .product_image a:after,
      #cool_stuff .product-entry .product_image a:after,
      .iwishWrapper .product-entry .product_image a:after,
      body.template-search .product-entry .product_image a:after,
      .featured_products .product-entry .product_image a:after,
      .template-cart .cross-sell .product-entry .product_image a:after {
        content: '\f1ce';
        font-family: "FontAwesome";
        display: block;
        width: 18px;
        height: 18px;
        line-height: 18px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -9px;
        margin-left: -9px;
        z-index: 1;
        font-size: 18px;
        color: #3f3f3f;
        -webkit-animation: fa-spin 2s infinite linear;
        animation: fa-spin 2s infinite linear; }
    body.template-collection .product-entry .product_image img,
    body.template-collection-skookum .product-entry .product_image img,
    #cool_stuff .product-entry .product_image img,
    .iwishWrapper .product-entry .product_image img,
    body.template-search .product-entry .product_image img,
    .featured_products .product-entry .product_image img,
    .template-cart .cross-sell .product-entry .product_image img {
      display: block;
      margin: 0 auto;
      top: 50%;
      position: absolute;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 2; }
  body.template-collection .product-entry a h2, body.template-collection .product-entry a .h2,
  body.template-collection-skookum .product-entry a h2,
  body.template-collection-skookum .product-entry a .h2,
  #cool_stuff .product-entry a h2,
  #cool_stuff .product-entry a .h2,
  .iwishWrapper .product-entry a h2,
  .iwishWrapper .product-entry a .h2,
  body.template-search .product-entry a h2,
  body.template-search .product-entry a .h2,
  .featured_products .product-entry a h2,
  .featured_products .product-entry a .h2,
  .template-cart .cross-sell .product-entry a h2,
  .template-cart .cross-sell .product-entry a .h2 {
    text-decoration: underline;
    color: #231f20; }
    body.template-collection .product-entry a h2:hover, body.template-collection .product-entry a .h2:hover,
    body.template-collection-skookum .product-entry a h2:hover,
    body.template-collection-skookum .product-entry a .h2:hover,
    #cool_stuff .product-entry a h2:hover,
    #cool_stuff .product-entry a .h2:hover,
    .iwishWrapper .product-entry a h2:hover,
    .iwishWrapper .product-entry a .h2:hover,
    body.template-search .product-entry a h2:hover,
    body.template-search .product-entry a .h2:hover,
    .featured_products .product-entry a h2:hover,
    .featured_products .product-entry a .h2:hover,
    .template-cart .cross-sell .product-entry a h2:hover,
    .template-cart .cross-sell .product-entry a .h2:hover {
      color: #23527c; }
  body.template-collection .product-entry a + div,
  body.template-collection-skookum .product-entry a + div,
  #cool_stuff .product-entry a + div,
  .iwishWrapper .product-entry a + div,
  body.template-search .product-entry a + div,
  .featured_products .product-entry a + div,
  .template-cart .cross-sell .product-entry a + div {
    padding: 6px; }
  body.template-collection .product-entry h2, body.template-collection .product-entry .h2,
  body.template-collection-skookum .product-entry h2,
  body.template-collection-skookum .product-entry .h2,
  #cool_stuff .product-entry h2,
  #cool_stuff .product-entry .h2,
  .iwishWrapper .product-entry h2,
  .iwishWrapper .product-entry .h2,
  body.template-search .product-entry h2,
  body.template-search .product-entry .h2,
  .featured_products .product-entry h2,
  .featured_products .product-entry .h2,
  .template-cart .cross-sell .product-entry h2,
  .template-cart .cross-sell .product-entry .h2 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #000;
    padding: 4px; }
  body.template-collection .product-entry p,
  body.template-collection-skookum .product-entry p,
  #cool_stuff .product-entry p,
  .iwishWrapper .product-entry p,
  body.template-search .product-entry p,
  .featured_products .product-entry p,
  .template-cart .cross-sell .product-entry p {
    margin: 0; }
  body.template-collection .product-entry .price,
  body.template-collection-skookum .product-entry .price,
  #cool_stuff .product-entry .price,
  .iwishWrapper .product-entry .price,
  body.template-search .product-entry .price,
  .featured_products .product-entry .price,
  .template-cart .cross-sell .product-entry .price {
    font-size: 14px;
    font-weight: 700; }
  body.template-collection .product-entry .swatches,
  body.template-collection-skookum .product-entry .swatches,
  #cool_stuff .product-entry .swatches,
  .iwishWrapper .product-entry .swatches,
  body.template-search .product-entry .swatches,
  .featured_products .product-entry .swatches,
  .template-cart .cross-sell .product-entry .swatches {
    margin: 1.0em 0 0; }
    body.template-collection .product-entry .swatches:before,
    body.template-collection-skookum .product-entry .swatches:before,
    #cool_stuff .product-entry .swatches:before,
    .iwishWrapper .product-entry .swatches:before,
    body.template-search .product-entry .swatches:before,
    .featured_products .product-entry .swatches:before,
    .template-cart .cross-sell .product-entry .swatches:before {
      display: inline-block; }
    body.template-collection .product-entry .swatches li,
    body.template-collection-skookum .product-entry .swatches li,
    #cool_stuff .product-entry .swatches li,
    .iwishWrapper .product-entry .swatches li,
    body.template-search .product-entry .swatches li,
    .featured_products .product-entry .swatches li,
    .template-cart .cross-sell .product-entry .swatches li {
      margin: 0;
      vertical-align: middle; }
    body.template-collection .product-entry .swatches img,
    body.template-collection-skookum .product-entry .swatches img,
    #cool_stuff .product-entry .swatches img,
    .iwishWrapper .product-entry .swatches img,
    body.template-search .product-entry .swatches img,
    .featured_products .product-entry .swatches img,
    .template-cart .cross-sell .product-entry .swatches img {
      cursor: pointer; }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

body.template-collection .search-box,
body.template-search .search-box {
  padding: 15px;
  background: #eeeeee;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333; }
  body.template-collection .search-box strong,
  body.template-search .search-box strong {
    display: block;
    padding-bottom: 4px; }
body.template-collection .collection-description,
body.template-search .collection-description {
  font-family: "Source Sans Pro", Arial, sans-serif;
  /*font-size: 32px;
  line-height:1.21875;
  font-size: 24px;
  line-height:1.25;
  font-size: 21px;*/
  font-size: 15px;
  line-height: 1.5;
  /*    font-style: italic;*/
  color: #3f3f3f;
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 23px;
  /*    letter-spacing: -2px;*/ }
  @media screen and (max-width: 767px) {
    body.template-collection .collection-description,
    body.template-search .collection-description {
      padding-right: 15px;
      padding-top: 0; } }

@media screen and (min-width: 991px) {
  body.template-collection .product-entry:nth-of-type(4n+6) {
    clear: both; }
    body.template-collection .product-entry:nth-of-type(4n+6):before {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      right: -300%;
      display: block;
      height: 1px;
      background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0; } }
@media screen and (min-width: 767px) and (max-width: 991px) {
  body.template-collection .product-entry:nth-of-type(3n+1) {
    clear: none; }
  body.template-collection .product-entry:nth-of-type(3n+5) {
    clear: both; }
    body.template-collection .product-entry:nth-of-type(3n+5):before {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      right: -200%;
      display: block;
      height: 1px;
      background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0; } }
@media screen and (max-width: 767px) {
  body.template-collection .product-entry:nth-of-type(2n+5) {
    clear: both; }
    body.template-collection .product-entry:nth-of-type(2n+5):before {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      right: -100%;
      display: block;
      height: 1px;
      background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0; } }
@media screen and (max-width: 480px) {
  body.template-collection .product-entry {
      /*clear: both;
      width: 100%;

      &:before {
        content: '';
        position: absolute;
        top: 0;
        left: $gutter;
        right: 0;
        display: block;
        height: 1px; 
        background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0;
      }*/ } }

@media screen and (min-width: 991px) {
  body.template-search .product-entry:nth-of-type(4n+5) {
    clear: both; }
    body.template-search .product-entry:nth-of-type(4n+5):before {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      right: -300%;
      display: block;
      height: 1px;
      background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0; } }
@media screen and (min-width: 767px) and (max-width: 991px) {
  body.template-search .product-entry:nth-of-type(3n+4) {
    clear: both; }
    body.template-search .product-entry:nth-of-type(3n+4):before {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      right: -200%;
      display: block;
      height: 1px;
      background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0; } }
@media screen and (max-width: 767px) {
  body.template-search .product-entry:nth-of-type(2n+3) {
    clear: both; }
    body.template-search .product-entry:nth-of-type(2n+3):before {
      content: '';
      position: absolute;
      top: 0;
      left: 15px;
      right: -100%;
      display: block;
      height: 1px;
      background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0; } }

body.template-collection-skookum h1, body.template-collection-skookum .h1 {
  padding: 0;
  margin-bottom: 10px; }
  @media screen and (max-width: 991px) {
    body.template-collection-skookum h1, body.template-collection-skookum .h1 {
      margin-top: 0.5em; } }
body.template-collection-skookum #skookum-desc {
  background-color: #ebebeb;
  padding: 25px;
  margin-top: 15px;
  margin-left: 0; }
body.template-collection-skookum .collection-description {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333; }
body.template-collection-skookum .product-entry {
  padding-top: 15px; }
  @media screen and (min-width: 991px) {
    body.template-collection-skookum .product-entry:nth-of-type(2n+3) {
      clear: both; }
      body.template-collection-skookum .product-entry:nth-of-type(2n+3):before {
        content: '';
        position: absolute;
        top: 0;
        left: 15px;
        right: -100%;
        display: block;
        height: 1px;
        background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0; }
    body.template-collection-skookum .product-entry:nth-of-type(1), body.template-collection-skookum .product-entry:nth-of-type(2) {
      padding-top: 0; } }
  @media screen and (max-width: 991px) {
    body.template-collection-skookum .product-entry {
      clear: both;
      width: 100%; }
      body.template-collection-skookum .product-entry:before {
        content: '';
        position: absolute;
        top: 0;
        left: 15px;
        right: 0;
        display: block;
        height: 1px;
        background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/dots-b8b8b8.png?v=6705507735832132845) repeat-x 0 0; }
      body.template-collection-skookum .product-entry:nth-of-type(1) {
        padding-top: 0; } }
  body.template-collection-skookum .product-entry .product_image {
    padding-bottom: 67%; }

@media screen and (min-width: 991px) {
  #cool_stuff .product-entry:nth-of-type(4n+5) {
    clear: both; } }
@media screen and (min-width: 767px) and (max-width: 991px) {
  #cool_stuff .product-entry:nth-of-type(3n+4) {
    clear: both; } }
@media screen and (min-width: 480px) and (max-width: 767px) {
  #cool_stuff .product-entry:nth-of-type(2n+3) {
    clear: both; } }
@media screen and (max-width: 480px) {
  #cool_stuff .product-entry {
    clear: both;
    width: 100%; } }

/*============================================================================
  #Product Page
==============================================================================*/
.product-single__variants {
  display: none; }
  .no-js .product-single__variants {
    display: block; }

.product-single .video-wrapper {
  padding-bottom: 61.571428%;
  margin-bottom: 45px; }
  .product-single .video-wrapper iframe {
    height: 91.357309%; }

.product-single__photos {
  margin-bottom: 15px;
  height: 0;
  padding-bottom: 61.571428%;
  overflow: hidden; }

.image-slider-arrow {
  position: absolute;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  z-index: 9999;
  border-radius: 32px; }
  .image-slider-arrow span {
    position: absolute;
    left: -9999em; }
  .image-slider-arrow.prev-arrow {
    margin-left: 10px;
    background: url(controls.png) no-repeat 0 -32px; }
  .image-slider-arrow.next-arrow {
    margin-left: -10px;
    background: url(controls.png) no-repeat -43px -32px; }
  .image-slider-arrow:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px Highlight;
    /* WebKit gets its native focus styles.
    */ }
    @media (-webkit-min-device-pixel-ratio: 0) {
      .image-slider-arrow:focus {
        box-shadow: 0 0 0 2px -webkit-focus-ring-color; } }

.product-single__photos,
.product-single__thumbnails {
  margin-bottom: 45px; }
  @media screen and (max-width: 480px) {
    .product-single__photos,
    .product-single__thumbnails {
      text-align: left; } }
  .product-single__photos a, .product-single__photos img,
  .product-single__thumbnails a,
  .product-single__thumbnails img {
    display: block;
    margin: 0 auto; }
  .product-single__photos li,
  .product-single__thumbnails li {
    margin-bottom: 15px;
    display: inline-block;
    float: none;
    margin-left: -4px; }
    @media screen and (max-width: 480px) {
      .product-single__photos li,
      .product-single__thumbnails li {
        width: 33.333%; } }
    .product-single__photos li.variant-thumbnail,
    .product-single__thumbnails li.variant-thumbnail {
      display: none; }
      .product-single__photos li.variant-thumbnail.current-variant,
      .product-single__thumbnails li.variant-thumbnail.current-variant {
        display: inline-block; }
    .product-single__photos li.easter-egg,
    .product-single__thumbnails li.easter-egg {
      display: none !important; }
  @media screen and (max-width: 991px) {
    .product-single__photos,
    .product-single__thumbnails {
      margin-bottom: 15px; }
      .product-single__photos .one-sixth,
      .product-single__thumbnails .one-sixth {
        width: auto;
        padding: 0;
        margin: 0; }
      .product-single__photos li a,
      .product-single__thumbnails li a {
        padding: 0.5em;
        opacity: 0.5; }
        .product-single__photos li a:hover,
        .product-single__thumbnails li a:hover {
          opacity: 1.0; }
      .product-single__photos li.active-image a,
      .product-single__thumbnails li.active-image a {
        opacity: 1.0; } }

.swatches {
  list-style: none;
  margin: 10px 0;
  padding: 0; }
  .swatches li {
    display: inline-block; }
    .swatches li.out-of-stock {
      opacity: 0.5; }
    .swatches li img {
      display: block; }
  .swatches.in-stock:before, .swatches.out-of-stock:before {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.666;
    vertical-align: middle; }
  .swatches.in-stock:before {
    content: 'In Stock:'; }
  .swatches.in-stock.pre-order:before {
    content: 'Pre-Order:'; }
  .swatches.out-of-stock li:not(.out-of-stock) {
    display: block; }
  .swatches.out-of-stock:before {
    content: 'In Production:'; }

.template-product,
.template-product-pre-order,
.template-product-coming-soon,
.template-product-gift-card,
.template-product-scrap {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  color: #2f292b; }
  @media screen and (max-width: 767px) {
    .template-product .wrapper > .one-whole,
    .template-product-pre-order .wrapper > .one-whole,
    .template-product-coming-soon .wrapper > .one-whole,
    .template-product-gift-card .wrapper > .one-whole,
    .template-product-scrap .wrapper > .one-whole {
      padding-left: 0; } }
  .template-product #product-actions,
  .template-product-pre-order #product-actions,
  .template-product-coming-soon #product-actions,
  .template-product-gift-card #product-actions,
  .template-product-scrap #product-actions {
    font-family: "Source Sans Pro", Arial, sans-serif; }
    .template-product #product-actions h1, .template-product #product-actions .h1,
    .template-product-pre-order #product-actions h1,
    .template-product-pre-order #product-actions .h1,
    .template-product-coming-soon #product-actions h1,
    .template-product-coming-soon #product-actions .h1,
    .template-product-gift-card #product-actions h1,
    .template-product-gift-card #product-actions .h1,
    .template-product-scrap #product-actions h1,
    .template-product-scrap #product-actions .h1 {
      font-size: 30px;
      color: #3f3f3f;
      line-height: 44px;
      margin: 10px 0; }
      .template-product #product-actions h1.product-name, .template-product #product-actions .product-name.h1,
      .template-product-pre-order #product-actions h1.product-name,
      .template-product-pre-order #product-actions .product-name.h1,
      .template-product-coming-soon #product-actions h1.product-name,
      .template-product-coming-soon #product-actions .product-name.h1,
      .template-product-gift-card #product-actions h1.product-name,
      .template-product-gift-card #product-actions .product-name.h1,
      .template-product-scrap #product-actions h1.product-name,
      .template-product-scrap #product-actions .product-name.h1 {
        font-size: 24px;
        line-height: 32px;
        text-transform: none; }
    .template-product #product-actions #ProductPrice,
    .template-product #product-actions #ProductPriceAlt,
    .template-product-pre-order #product-actions #ProductPrice,
    .template-product-pre-order #product-actions #ProductPriceAlt,
    .template-product-coming-soon #product-actions #ProductPrice,
    .template-product-coming-soon #product-actions #ProductPriceAlt,
    .template-product-gift-card #product-actions #ProductPrice,
    .template-product-gift-card #product-actions #ProductPriceAlt,
    .template-product-scrap #product-actions #ProductPrice,
    .template-product-scrap #product-actions #ProductPriceAlt {
      font-family: "Source Sans Pro", Arial, sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 21px; }
    .template-product #product-actions .product_info_top,
    .template-product-pre-order #product-actions .product_info_top,
    .template-product-coming-soon #product-actions .product_info_top,
    .template-product-gift-card #product-actions .product_info_top,
    .template-product-scrap #product-actions .product_info_top {
      padding-bottom: 10px;
      border-bottom: 1px solid #2f292b;
      margin-bottom: 14px; }
    .template-product #product-actions .made-in-usa,
    .template-product-pre-order #product-actions .made-in-usa,
    .template-product-coming-soon #product-actions .made-in-usa,
    .template-product-gift-card #product-actions .made-in-usa,
    .template-product-scrap #product-actions .made-in-usa {
      float: right;
      max-width: 55px; }
      .template-product #product-actions .made-in-usa img,
      .template-product-pre-order #product-actions .made-in-usa img,
      .template-product-coming-soon #product-actions .made-in-usa img,
      .template-product-gift-card #product-actions .made-in-usa img,
      .template-product-scrap #product-actions .made-in-usa img {
        display: block; }
    .template-product #product-actions .swatches,
    .template-product-pre-order #product-actions .swatches,
    .template-product-coming-soon #product-actions .swatches,
    .template-product-gift-card #product-actions .swatches,
    .template-product-scrap #product-actions .swatches {
      clear: both; }
      .template-product #product-actions .swatches li,
      .template-product-pre-order #product-actions .swatches li,
      .template-product-coming-soon #product-actions .swatches li,
      .template-product-gift-card #product-actions .swatches li,
      .template-product-scrap #product-actions .swatches li {
        cursor: pointer; }
      .template-product #product-actions .swatches.in-stock, .template-product #product-actions .swatches.out-of-stock,
      .template-product-pre-order #product-actions .swatches.in-stock,
      .template-product-pre-order #product-actions .swatches.out-of-stock,
      .template-product-coming-soon #product-actions .swatches.in-stock,
      .template-product-coming-soon #product-actions .swatches.out-of-stock,
      .template-product-gift-card #product-actions .swatches.in-stock,
      .template-product-gift-card #product-actions .swatches.out-of-stock,
      .template-product-scrap #product-actions .swatches.in-stock,
      .template-product-scrap #product-actions .swatches.out-of-stock {
        width: 49.5%;
        clear: none !important; }
        .template-product #product-actions .swatches.in-stock:before, .template-product #product-actions .swatches.out-of-stock:before,
        .template-product-pre-order #product-actions .swatches.in-stock:before,
        .template-product-pre-order #product-actions .swatches.out-of-stock:before,
        .template-product-coming-soon #product-actions .swatches.in-stock:before,
        .template-product-coming-soon #product-actions .swatches.out-of-stock:before,
        .template-product-gift-card #product-actions .swatches.in-stock:before,
        .template-product-gift-card #product-actions .swatches.out-of-stock:before,
        .template-product-scrap #product-actions .swatches.in-stock:before,
        .template-product-scrap #product-actions .swatches.out-of-stock:before {
          display: block; }
      .template-product #product-actions .swatches.in-stock,
      .template-product-pre-order #product-actions .swatches.in-stock,
      .template-product-coming-soon #product-actions .swatches.in-stock,
      .template-product-gift-card #product-actions .swatches.in-stock,
      .template-product-scrap #product-actions .swatches.in-stock {
        float: left; }
        .template-product #product-actions .swatches.in-stock + *:not(.out-of-stock),
        .template-product-pre-order #product-actions .swatches.in-stock + *:not(.out-of-stock),
        .template-product-coming-soon #product-actions .swatches.in-stock + *:not(.out-of-stock),
        .template-product-gift-card #product-actions .swatches.in-stock + *:not(.out-of-stock),
        .template-product-scrap #product-actions .swatches.in-stock + *:not(.out-of-stock) {
          clear: both; }
      .template-product #product-actions .swatches.out-of-stock,
      .template-product-pre-order #product-actions .swatches.out-of-stock,
      .template-product-coming-soon #product-actions .swatches.out-of-stock,
      .template-product-gift-card #product-actions .swatches.out-of-stock,
      .template-product-scrap #product-actions .swatches.out-of-stock {
        float: right;
        text-align: right; }
        .template-product #product-actions .swatches.out-of-stock + *,
        .template-product-pre-order #product-actions .swatches.out-of-stock + *,
        .template-product-coming-soon #product-actions .swatches.out-of-stock + *,
        .template-product-gift-card #product-actions .swatches.out-of-stock + *,
        .template-product-scrap #product-actions .swatches.out-of-stock + * {
          clear: both; }
    .template-product #product-actions .faq-link,
    .template-product-pre-order #product-actions .faq-link,
    .template-product-coming-soon #product-actions .faq-link,
    .template-product-gift-card #product-actions .faq-link,
    .template-product-scrap #product-actions .faq-link {
      clear: both;
      display: block; }
    .template-product #product-actions .custom_properties label,
    .template-product-pre-order #product-actions .custom_properties label,
    .template-product-coming-soon #product-actions .custom_properties label,
    .template-product-gift-card #product-actions .custom_properties label,
    .template-product-scrap #product-actions .custom_properties label {
      text-transform: uppercase;
      cursor: default; }
    .template-product #product-actions .custom_properties input,
    .template-product #product-actions .custom_properties textarea,
    .template-product-pre-order #product-actions .custom_properties input,
    .template-product-pre-order #product-actions .custom_properties textarea,
    .template-product-coming-soon #product-actions .custom_properties input,
    .template-product-coming-soon #product-actions .custom_properties textarea,
    .template-product-gift-card #product-actions .custom_properties input,
    .template-product-gift-card #product-actions .custom_properties textarea,
    .template-product-scrap #product-actions .custom_properties input,
    .template-product-scrap #product-actions .custom_properties textarea {
      display: block;
      width: 100%;
      height: 34px;
      padding: 6px 12px;
      margin: 5px -4px 0px 0px;
      font-size: 14px;
      line-height: 1.42857143;
      color: #555;
      background-color: #fff;
      background-image: none;
      border: 1px solid #ccc;
      border-radius: 4px;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
      -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
      transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; }
      .template-product #product-actions .custom_properties input + label,
      .template-product #product-actions .custom_properties textarea + label,
      .template-product-pre-order #product-actions .custom_properties input + label,
      .template-product-pre-order #product-actions .custom_properties textarea + label,
      .template-product-coming-soon #product-actions .custom_properties input + label,
      .template-product-coming-soon #product-actions .custom_properties textarea + label,
      .template-product-gift-card #product-actions .custom_properties input + label,
      .template-product-gift-card #product-actions .custom_properties textarea + label,
      .template-product-scrap #product-actions .custom_properties input + label,
      .template-product-scrap #product-actions .custom_properties textarea + label {
        display: inline-block;
        margin-top: 10px; }
      .template-product #product-actions .custom_properties input[type="checkbox"],
      .template-product #product-actions .custom_properties textarea[type="checkbox"],
      .template-product-pre-order #product-actions .custom_properties input[type="checkbox"],
      .template-product-pre-order #product-actions .custom_properties textarea[type="checkbox"],
      .template-product-coming-soon #product-actions .custom_properties input[type="checkbox"],
      .template-product-coming-soon #product-actions .custom_properties textarea[type="checkbox"],
      .template-product-gift-card #product-actions .custom_properties input[type="checkbox"],
      .template-product-gift-card #product-actions .custom_properties textarea[type="checkbox"],
      .template-product-scrap #product-actions .custom_properties input[type="checkbox"],
      .template-product-scrap #product-actions .custom_properties textarea[type="checkbox"] {
        height: auto;
        width: auto;
        float: left;
        margin-right: 10px;
        vertical-align: middle;
        margin-top: 12px; }
        .template-product #product-actions .custom_properties input[type="checkbox"] + label,
        .template-product #product-actions .custom_properties textarea[type="checkbox"] + label,
        .template-product-pre-order #product-actions .custom_properties input[type="checkbox"] + label,
        .template-product-pre-order #product-actions .custom_properties textarea[type="checkbox"] + label,
        .template-product-coming-soon #product-actions .custom_properties input[type="checkbox"] + label,
        .template-product-coming-soon #product-actions .custom_properties textarea[type="checkbox"] + label,
        .template-product-gift-card #product-actions .custom_properties input[type="checkbox"] + label,
        .template-product-gift-card #product-actions .custom_properties textarea[type="checkbox"] + label,
        .template-product-scrap #product-actions .custom_properties input[type="checkbox"] + label,
        .template-product-scrap #product-actions .custom_properties textarea[type="checkbox"] + label {
          vertical-align: middle; }
    .template-product #product-actions .custom_properties#Recipient_Info,
    .template-product-pre-order #product-actions .custom_properties#Recipient_Info,
    .template-product-coming-soon #product-actions .custom_properties#Recipient_Info,
    .template-product-gift-card #product-actions .custom_properties#Recipient_Info,
    .template-product-scrap #product-actions .custom_properties#Recipient_Info {
      display: none; }
    .template-product #product-actions .selector-wrapper label,
    .template-product-pre-order #product-actions .selector-wrapper label,
    .template-product-coming-soon #product-actions .selector-wrapper label,
    .template-product-gift-card #product-actions .selector-wrapper label,
    .template-product-scrap #product-actions .selector-wrapper label {
      display: block;
      text-transform: uppercase;
      font-weight: 700; }
    .template-product #product-actions .selector-wrapper option.out-of-stock,
    .template-product-pre-order #product-actions .selector-wrapper option.out-of-stock,
    .template-product-coming-soon #product-actions .selector-wrapper option.out-of-stock,
    .template-product-gift-card #product-actions .selector-wrapper option.out-of-stock,
    .template-product-scrap #product-actions .selector-wrapper option.out-of-stock {
      color: #a09c9d; }
    .template-product #product-actions .bundle-label,
    .template-product-pre-order #product-actions .bundle-label,
    .template-product-coming-soon #product-actions .bundle-label,
    .template-product-gift-card #product-actions .bundle-label,
    .template-product-scrap #product-actions .bundle-label {
      display: block;
      text-transform: uppercase; }
    .template-product #product-actions #product-actions-form a,
    .template-product-pre-order #product-actions #product-actions-form a,
    .template-product-coming-soon #product-actions #product-actions-form a,
    .template-product-gift-card #product-actions #product-actions-form a,
    .template-product-scrap #product-actions #product-actions-form a {
      color: #23527c; }
      .template-product #product-actions #product-actions-form a:hover,
      .template-product-pre-order #product-actions #product-actions-form a:hover,
      .template-product-coming-soon #product-actions #product-actions-form a:hover,
      .template-product-gift-card #product-actions #product-actions-form a:hover,
      .template-product-scrap #product-actions #product-actions-form a:hover {
        text-decoration: underline; }
      .template-product #product-actions #product-actions-form a:after,
      .template-product-pre-order #product-actions #product-actions-form a:after,
      .template-product-coming-soon #product-actions #product-actions-form a:after,
      .template-product-gift-card #product-actions #product-actions-form a:after,
      .template-product-scrap #product-actions #product-actions-form a:after {
        /*content: " \f0c5 ";
        font-family: "FontAwesome";
        font-size: 90%;
        padding-right: 5px;*/ }
    .template-product #product-actions #product-actions-form .accordian,
    .template-product-pre-order #product-actions #product-actions-form .accordian,
    .template-product-coming-soon #product-actions #product-actions-form .accordian,
    .template-product-gift-card #product-actions #product-actions-form .accordian,
    .template-product-scrap #product-actions #product-actions-form .accordian {
      clear: both;
      margin: 20px 0 5px;
      list-style: none;
      border-top: 1px solid #1a1a1a; }
      .template-product #product-actions #product-actions-form .accordian li,
      .template-product-pre-order #product-actions #product-actions-form .accordian li,
      .template-product-coming-soon #product-actions #product-actions-form .accordian li,
      .template-product-gift-card #product-actions #product-actions-form .accordian li,
      .template-product-scrap #product-actions #product-actions-form .accordian li {
        margin: 0; }
        .template-product #product-actions #product-actions-form .accordian li > a,
        .template-product-pre-order #product-actions #product-actions-form .accordian li > a,
        .template-product-coming-soon #product-actions #product-actions-form .accordian li > a,
        .template-product-gift-card #product-actions #product-actions-form .accordian li > a,
        .template-product-scrap #product-actions #product-actions-form .accordian li > a {
          display: block;
          padding: 10px;
          border-bottom: 1px solid #1a1a1a;
          background: #ffffff;
          color: #2f292b;
          text-transform: uppercase;
          transition: all linear 0.15s; }
          .template-product #product-actions #product-actions-form .accordian li > a:after,
          .template-product-pre-order #product-actions #product-actions-form .accordian li > a:after,
          .template-product-coming-soon #product-actions #product-actions-form .accordian li > a:after,
          .template-product-gift-card #product-actions #product-actions-form .accordian li > a:after,
          .template-product-scrap #product-actions #product-actions-form .accordian li > a:after {
            content: "\f067";
            font-family: "FontAwesome";
            font-size: 125%;
            display: block;
            float: right;
            color: #595455; }
          .template-product #product-actions #product-actions-form .accordian li > a.open, .template-product #product-actions #product-actions-form .accordian li > a:hover,
          .template-product-pre-order #product-actions #product-actions-form .accordian li > a.open,
          .template-product-pre-order #product-actions #product-actions-form .accordian li > a:hover,
          .template-product-coming-soon #product-actions #product-actions-form .accordian li > a.open,
          .template-product-coming-soon #product-actions #product-actions-form .accordian li > a:hover,
          .template-product-gift-card #product-actions #product-actions-form .accordian li > a.open,
          .template-product-gift-card #product-actions #product-actions-form .accordian li > a:hover,
          .template-product-scrap #product-actions #product-actions-form .accordian li > a.open,
          .template-product-scrap #product-actions #product-actions-form .accordian li > a:hover {
            color: #23527c;
            background: #F4F4F4;
            text-decoration: none;
            transition: all linear 0.15s; }
          .template-product #product-actions #product-actions-form .accordian li > a span:after,
          .template-product-pre-order #product-actions #product-actions-form .accordian li > a span:after,
          .template-product-coming-soon #product-actions #product-actions-form .accordian li > a span:after,
          .template-product-gift-card #product-actions #product-actions-form .accordian li > a span:after,
          .template-product-scrap #product-actions #product-actions-form .accordian li > a span:after {
            /*content: " \f0c5 ";
            font-family: "FontAwesome";
            font-size: 90%;
            padding-left: 5px;*/ }
      .template-product #product-actions #product-actions-form .accordian .collapse,
      .template-product-pre-order #product-actions #product-actions-form .accordian .collapse,
      .template-product-coming-soon #product-actions #product-actions-form .accordian .collapse,
      .template-product-gift-card #product-actions #product-actions-form .accordian .collapse,
      .template-product-scrap #product-actions #product-actions-form .accordian .collapse {
        display: none;
        padding: 15px; }
        .template-product #product-actions #product-actions-form .accordian .collapse.open,
        .template-product-pre-order #product-actions #product-actions-form .accordian .collapse.open,
        .template-product-coming-soon #product-actions #product-actions-form .accordian .collapse.open,
        .template-product-gift-card #product-actions #product-actions-form .accordian .collapse.open,
        .template-product-scrap #product-actions #product-actions-form .accordian .collapse.open {
          display: block; }
        .template-product #product-actions #product-actions-form .accordian .collapse a.tog2,
        .template-product-pre-order #product-actions #product-actions-form .accordian .collapse a.tog2,
        .template-product-coming-soon #product-actions #product-actions-form .accordian .collapse a.tog2,
        .template-product-gift-card #product-actions #product-actions-form .accordian .collapse a.tog2,
        .template-product-scrap #product-actions #product-actions-form .accordian .collapse a.tog2 {
          display: block;
          margin-top: -1.0em; }
          .template-product #product-actions #product-actions-form .accordian .collapse a.tog2:after,
          .template-product-pre-order #product-actions #product-actions-form .accordian .collapse a.tog2:after,
          .template-product-coming-soon #product-actions #product-actions-form .accordian .collapse a.tog2:after,
          .template-product-gift-card #product-actions #product-actions-form .accordian .collapse a.tog2:after,
          .template-product-scrap #product-actions #product-actions-form .accordian .collapse a.tog2:after {
            content: " \f0c5 ";
            font-family: "FontAwesome";
            font-size: 90%;
            padding-right: 5px; }
      .template-product #product-actions #product-actions-form .accordian .specs,
      .template-product-pre-order #product-actions #product-actions-form .accordian .specs,
      .template-product-coming-soon #product-actions #product-actions-form .accordian .specs,
      .template-product-gift-card #product-actions #product-actions-form .accordian .specs,
      .template-product-scrap #product-actions #product-actions-form .accordian .specs {
        background: #ebebeb;
        font-size: 12px;
        color: #2f292b;
        line-height: 19px;
        margin: 10px 0; }
    .template-product #product-actions #product-actions-form label.quantity-selector,
    .template-product-pre-order #product-actions #product-actions-form label.quantity-selector,
    .template-product-coming-soon #product-actions #product-actions-form label.quantity-selector,
    .template-product-gift-card #product-actions #product-actions-form label.quantity-selector,
    .template-product-scrap #product-actions #product-actions-form label.quantity-selector {
      float: left;
      display: block;
      margin-top: 23px;
      margin-bottom: 1em;
      line-height: 26px; }
    .template-product #product-actions #product-actions-form .js-qty, .template-product #product-actions #product-actions-form .ajaxcart__qty,
    .template-product-pre-order #product-actions #product-actions-form .js-qty,
    .template-product-pre-order #product-actions #product-actions-form .ajaxcart__qty,
    .template-product-coming-soon #product-actions #product-actions-form .js-qty,
    .template-product-coming-soon #product-actions #product-actions-form .ajaxcart__qty,
    .template-product-gift-card #product-actions #product-actions-form .js-qty,
    .template-product-gift-card #product-actions #product-actions-form .ajaxcart__qty,
    .template-product-scrap #product-actions #product-actions-form .js-qty,
    .template-product-scrap #product-actions #product-actions-form .ajaxcart__qty {
      float: left;
      display: block;
      margin-top: 23px;
      margin-left: 14px; }
    .template-product #product-actions #product-actions-form .js-qty + *, .template-product #product-actions #product-actions-form .ajaxcart__qty + *,
    .template-product-pre-order #product-actions #product-actions-form .js-qty + *,
    .template-product-pre-order #product-actions #product-actions-form .ajaxcart__qty + *,
    .template-product-coming-soon #product-actions #product-actions-form .js-qty + *,
    .template-product-coming-soon #product-actions #product-actions-form .ajaxcart__qty + *,
    .template-product-gift-card #product-actions #product-actions-form .js-qty + *,
    .template-product-gift-card #product-actions #product-actions-form .ajaxcart__qty + *,
    .template-product-scrap #product-actions #product-actions-form .js-qty + *,
    .template-product-scrap #product-actions #product-actions-form .ajaxcart__qty + * {
      clear: both; }
    .template-product #product-actions #product-actions-form #AddToCart,
    .template-product-pre-order #product-actions #product-actions-form #AddToCart,
    .template-product-coming-soon #product-actions #product-actions-form #AddToCart,
    .template-product-gift-card #product-actions #product-actions-form #AddToCart,
    .template-product-scrap #product-actions #product-actions-form #AddToCart {
      display: block;
      clear: left;
      width: 50%;
      float: left;
      margin: 6px 0 20px; }
    .template-product #product-actions #restock_notice_form,
    .template-product #product-actions #mc-embedded-subscribe-form-coming-soon,
    .template-product #product-actions #mc-embedded-subscribe-form-pre-order,
    .template-product-pre-order #product-actions #restock_notice_form,
    .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon,
    .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order,
    .template-product-coming-soon #product-actions #restock_notice_form,
    .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon,
    .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order,
    .template-product-gift-card #product-actions #restock_notice_form,
    .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon,
    .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order,
    .template-product-scrap #product-actions #restock_notice_form,
    .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon,
    .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order {
      clear: both;
      position: relative; }
      .template-product #product-actions #restock_notice_form input,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon input,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order input,
      .template-product-pre-order #product-actions #restock_notice_form input,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon input,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order input,
      .template-product-coming-soon #product-actions #restock_notice_form input,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon input,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order input,
      .template-product-gift-card #product-actions #restock_notice_form input,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon input,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order input,
      .template-product-scrap #product-actions #restock_notice_form input,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon input,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order input {
        width: 100%;
        padding: 7px 112px 7px 12px; }
      .template-product #product-actions #restock_notice_form button,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon button,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order button,
      .template-product-pre-order #product-actions #restock_notice_form button,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon button,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order button,
      .template-product-coming-soon #product-actions #restock_notice_form button,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon button,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order button,
      .template-product-gift-card #product-actions #restock_notice_form button,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon button,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order button,
      .template-product-scrap #product-actions #restock_notice_form button,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon button,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order button {
        width: 100px;
        position: absolute;
        top: 0;
        right: 0; }
      .template-product #product-actions #restock_notice_form div.mce_inline_error,
      .template-product #product-actions #restock_notice_form #mce-error-response,
      .template-product #product-actions #restock_notice_form #mce-success-response,
      .template-product #product-actions #restock_notice_form #mcecs-error-response,
      .template-product #product-actions #restock_notice_form #mcecs-success-response,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response,
      .template-product-pre-order #product-actions #restock_notice_form div.mce_inline_error,
      .template-product-pre-order #product-actions #restock_notice_form #mce-error-response,
      .template-product-pre-order #product-actions #restock_notice_form #mce-success-response,
      .template-product-pre-order #product-actions #restock_notice_form #mcecs-error-response,
      .template-product-pre-order #product-actions #restock_notice_form #mcecs-success-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response,
      .template-product-coming-soon #product-actions #restock_notice_form div.mce_inline_error,
      .template-product-coming-soon #product-actions #restock_notice_form #mce-error-response,
      .template-product-coming-soon #product-actions #restock_notice_form #mce-success-response,
      .template-product-coming-soon #product-actions #restock_notice_form #mcecs-error-response,
      .template-product-coming-soon #product-actions #restock_notice_form #mcecs-success-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response,
      .template-product-gift-card #product-actions #restock_notice_form div.mce_inline_error,
      .template-product-gift-card #product-actions #restock_notice_form #mce-error-response,
      .template-product-gift-card #product-actions #restock_notice_form #mce-success-response,
      .template-product-gift-card #product-actions #restock_notice_form #mcecs-error-response,
      .template-product-gift-card #product-actions #restock_notice_form #mcecs-success-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response,
      .template-product-scrap #product-actions #restock_notice_form div.mce_inline_error,
      .template-product-scrap #product-actions #restock_notice_form #mce-error-response,
      .template-product-scrap #product-actions #restock_notice_form #mce-success-response,
      .template-product-scrap #product-actions #restock_notice_form #mcecs-error-response,
      .template-product-scrap #product-actions #restock_notice_form #mcecs-success-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response {
        clear: both;
        padding: 7.5px 0;
        font-size: 12px;
        line-height: 15px;
        font-weight: bold;
        text-align: left; }
      .template-product #product-actions #restock_notice_form div.mce_inline_error,
      .template-product #product-actions #restock_notice_form #mce-error-response,
      .template-product #product-actions #restock_notice_form #mcecs-error-response,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product-pre-order #product-actions #restock_notice_form div.mce_inline_error,
      .template-product-pre-order #product-actions #restock_notice_form #mce-error-response,
      .template-product-pre-order #product-actions #restock_notice_form #mcecs-error-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product-coming-soon #product-actions #restock_notice_form div.mce_inline_error,
      .template-product-coming-soon #product-actions #restock_notice_form #mce-error-response,
      .template-product-coming-soon #product-actions #restock_notice_form #mcecs-error-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product-gift-card #product-actions #restock_notice_form div.mce_inline_error,
      .template-product-gift-card #product-actions #restock_notice_form #mce-error-response,
      .template-product-gift-card #product-actions #restock_notice_form #mcecs-error-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response,
      .template-product-scrap #product-actions #restock_notice_form div.mce_inline_error,
      .template-product-scrap #product-actions #restock_notice_form #mce-error-response,
      .template-product-scrap #product-actions #restock_notice_form #mcecs-error-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon div.mce_inline_error,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon #mce-error-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-error-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order div.mce_inline_error,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order #mce-error-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-error-response {
        color: #ed1c24; }
      .template-product #product-actions #restock_notice_form #mce-success-response,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product-pre-order #product-actions #restock_notice_form #mce-success-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product-coming-soon #product-actions #restock_notice_form #mce-success-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product-gift-card #product-actions #restock_notice_form #mce-success-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response,
      .template-product-scrap #product-actions #restock_notice_form #mce-success-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon #mce-success-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order #mce-success-response {
        color: #fff; }
      .template-product #product-actions #restock_notice_form #mcecs-success-response,
      .template-product #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response,
      .template-product-pre-order #product-actions #restock_notice_form #mcecs-success-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product-pre-order #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response,
      .template-product-coming-soon #product-actions #restock_notice_form #mcecs-success-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product-coming-soon #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response,
      .template-product-gift-card #product-actions #restock_notice_form #mcecs-success-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product-gift-card #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response,
      .template-product-scrap #product-actions #restock_notice_form #mcecs-success-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-coming-soon #mcecs-success-response,
      .template-product-scrap #product-actions #mc-embedded-subscribe-form-pre-order #mcecs-success-response {
        padding: 7.5px; }
  .template-product .hover-easter-egg,
  .template-product-pre-order .hover-easter-egg,
  .template-product-coming-soon .hover-easter-egg,
  .template-product-gift-card .hover-easter-egg,
  .template-product-scrap .hover-easter-egg {
    position: relative;
    cursor: pointer; }
    .template-product .hover-easter-egg span,
    .template-product-pre-order .hover-easter-egg span,
    .template-product-coming-soon .hover-easter-egg span,
    .template-product-gift-card .hover-easter-egg span,
    .template-product-scrap .hover-easter-egg span {
      display: none;
      width: 250px;
      max-height: 308px;
      position: absolute;
      left: 0;
      background: #fff;
      border: 1px solid #ebebeb;
      box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
      padding: 1.0em;
      overflow: auto; }
  .template-product section,
  .template-product-pre-order section,
  .template-product-coming-soon section,
  .template-product-gift-card section,
  .template-product-scrap section {
    padding: 30px 0; }
    .template-product section h1, .template-product section .h1,
    .template-product-pre-order section h1,
    .template-product-pre-order section .h1,
    .template-product-coming-soon section h1,
    .template-product-coming-soon section .h1,
    .template-product-gift-card section h1,
    .template-product-gift-card section .h1,
    .template-product-scrap section h1,
    .template-product-scrap section .h1 {
      padding-top: 0; }
  .template-product .rte,
  .template-product-pre-order .rte,
  .template-product-coming-soon .rte,
  .template-product-gift-card .rte,
  .template-product-scrap .rte {
    font-size: 14px;
    color: #2f292b;
    line-height: 19px; }
    .template-product .rte p,
    .template-product-pre-order .rte p,
    .template-product-coming-soon .rte p,
    .template-product-gift-card .rte p,
    .template-product-scrap .rte p {
      margin-bottom: 16px; }
  .template-product .pullquote,
  .template-product-pre-order .pullquote,
  .template-product-coming-soon .pullquote,
  .template-product-gift-card .pullquote,
  .template-product-scrap .pullquote {
    color: #B11116;
    font-size: 24px;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-style: normal;
    line-height: 40px;
    padding: 0 30px 30px 0; }
  .template-product #description-main,
  .template-product-pre-order #description-main,
  .template-product-coming-soon #description-main,
  .template-product-gift-card #description-main,
  .template-product-scrap #description-main {
    padding-bottom: 0; }
    @media screen and (max-width: 767px) {
      .template-product #description-main h1, .template-product #description-main .h1,
      .template-product-pre-order #description-main h1,
      .template-product-pre-order #description-main .h1,
      .template-product-coming-soon #description-main h1,
      .template-product-coming-soon #description-main .h1,
      .template-product-gift-card #description-main h1,
      .template-product-gift-card #description-main .h1,
      .template-product-scrap #description-main h1,
      .template-product-scrap #description-main .h1 {
        font-size: 30px; } }
    .template-product #description-main .product-specs,
    .template-product-pre-order #description-main .product-specs,
    .template-product-coming-soon #description-main .product-specs,
    .template-product-gift-card #description-main .product-specs,
    .template-product-scrap #description-main .product-specs {
      float: right;
      padding: 30px;
      font-size: 12px; }
      @media screen and (max-width: 767px) {
        .template-product #description-main .product-specs,
        .template-product-pre-order #description-main .product-specs,
        .template-product-coming-soon #description-main .product-specs,
        .template-product-gift-card #description-main .product-specs,
        .template-product-scrap #description-main .product-specs {
          padding: 0 0 30px; } }
      .template-product #description-main .product-specs a,
      .template-product-pre-order #description-main .product-specs a,
      .template-product-coming-soon #description-main .product-specs a,
      .template-product-gift-card #description-main .product-specs a,
      .template-product-scrap #description-main .product-specs a {
        line-height: 24px;
        color: #636363; }
        .template-product #description-main .product-specs a:after,
        .template-product-pre-order #description-main .product-specs a:after,
        .template-product-coming-soon #description-main .product-specs a:after,
        .template-product-gift-card #description-main .product-specs a:after,
        .template-product-scrap #description-main .product-specs a:after {
          display: none; }
      .template-product #description-main .product-specs i,
      .template-product-pre-order #description-main .product-specs i,
      .template-product-coming-soon #description-main .product-specs i,
      .template-product-gift-card #description-main .product-specs i,
      .template-product-scrap #description-main .product-specs i {
        font-size: 24px;
        padding-right: 20px; }
      .template-product #description-main .product-specs hr,
      .template-product-pre-order #description-main .product-specs hr,
      .template-product-coming-soon #description-main .product-specs hr,
      .template-product-gift-card #description-main .product-specs hr,
      .template-product-scrap #description-main .product-specs hr {
        border-color: #fff; }
      .template-product #description-main .product-specs h2, .template-product #description-main .product-specs .h2,
      .template-product-pre-order #description-main .product-specs h2,
      .template-product-pre-order #description-main .product-specs .h2,
      .template-product-coming-soon #description-main .product-specs h2,
      .template-product-coming-soon #description-main .product-specs .h2,
      .template-product-gift-card #description-main .product-specs h2,
      .template-product-gift-card #description-main .product-specs .h2,
      .template-product-scrap #description-main .product-specs h2,
      .template-product-scrap #description-main .product-specs .h2 {
        font-family: "Source Sans Pro", Arial, sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 17px;
        color: #b11116;
        text-transform: uppercase;
        text-align: left;
        margin: 2px 0; }
      .template-product #description-main .product-specs + *,
      .template-product-pre-order #description-main .product-specs + *,
      .template-product-coming-soon #description-main .product-specs + *,
      .template-product-gift-card #description-main .product-specs + *,
      .template-product-scrap #description-main .product-specs + * {
        clear: left; }
        @media screen and (min-width: 768px) {
          .template-product #description-main .product-specs + *,
          .template-product-pre-order #description-main .product-specs + *,
          .template-product-coming-soon #description-main .product-specs + *,
          .template-product-gift-card #description-main .product-specs + *,
          .template-product-scrap #description-main .product-specs + * {
            padding-top: 30px; } }
      .template-product #description-main .product-specs img,
      .template-product-pre-order #description-main .product-specs img,
      .template-product-coming-soon #description-main .product-specs img,
      .template-product-gift-card #description-main .product-specs img,
      .template-product-scrap #description-main .product-specs img {
        display: inline-block;
        vertical-align: middle; }
    .template-product #description-main .video-wrapper,
    .template-product-pre-order #description-main .video-wrapper,
    .template-product-coming-soon #description-main .video-wrapper,
    .template-product-gift-card #description-main .video-wrapper,
    .template-product-scrap #description-main .video-wrapper {
      margin: 35px 0; }
    .template-product #description-main #candid_widget a,
    .template-product-pre-order #description-main #candid_widget a,
    .template-product-coming-soon #description-main #candid_widget a,
    .template-product-gift-card #description-main #candid_widget a,
    .template-product-scrap #description-main #candid_widget a {
      display: inline-block;
      margin-top: 4px; }
      .template-product #description-main #candid_widget a:after,
      .template-product-pre-order #description-main #candid_widget a:after,
      .template-product-coming-soon #description-main #candid_widget a:after,
      .template-product-gift-card #description-main #candid_widget a:after,
      .template-product-scrap #description-main #candid_widget a:after {
        display: none; }
  .template-product #design-notes,
  .template-product-pre-order #design-notes,
  .template-product-coming-soon #design-notes,
  .template-product-gift-card #design-notes,
  .template-product-scrap #design-notes {
    background: white url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/design-notes-background.jpg?v=8910202577773114579) no-repeat center center;
    background-size: cover; }
    @media screen and (max-width: 767px) {
      .template-product #design-notes,
      .template-product-pre-order #design-notes,
      .template-product-coming-soon #design-notes,
      .template-product-gift-card #design-notes,
      .template-product-scrap #design-notes {
        background: #fff !important; } }
    .template-product #design-notes h1, .template-product #design-notes .h1,
    .template-product-pre-order #design-notes h1,
    .template-product-pre-order #design-notes .h1,
    .template-product-coming-soon #design-notes h1,
    .template-product-coming-soon #design-notes .h1,
    .template-product-gift-card #design-notes h1,
    .template-product-gift-card #design-notes .h1,
    .template-product-scrap #design-notes h1,
    .template-product-scrap #design-notes .h1 {
      margin-bottom: 0; }
      @media screen and (max-width: 767px) {
        .template-product #design-notes h1, .template-product #design-notes .h1,
        .template-product-pre-order #design-notes h1,
        .template-product-pre-order #design-notes .h1,
        .template-product-coming-soon #design-notes h1,
        .template-product-coming-soon #design-notes .h1,
        .template-product-gift-card #design-notes h1,
        .template-product-gift-card #design-notes .h1,
        .template-product-scrap #design-notes h1,
        .template-product-scrap #design-notes .h1 {
          font-size: 30px; } }
    .template-product #design-notes p,
    .template-product-pre-order #design-notes p,
    .template-product-coming-soon #design-notes p,
    .template-product-gift-card #design-notes p,
    .template-product-scrap #design-notes p {
      margin-bottom: 10px; }
  .template-product #fitguide,
  .template-product #organization,
  .template-product #guarantee,
  .template-product #faq,
  .template-product-pre-order #fitguide,
  .template-product-pre-order #organization,
  .template-product-pre-order #guarantee,
  .template-product-pre-order #faq,
  .template-product-coming-soon #fitguide,
  .template-product-coming-soon #organization,
  .template-product-coming-soon #guarantee,
  .template-product-coming-soon #faq,
  .template-product-gift-card #fitguide,
  .template-product-gift-card #organization,
  .template-product-gift-card #guarantee,
  .template-product-gift-card #faq,
  .template-product-scrap #fitguide,
  .template-product-scrap #organization,
  .template-product-scrap #guarantee,
  .template-product-scrap #faq {
    padding: 30px 0 0 0; }
    .template-product #fitguide h1, .template-product #fitguide .h1,
    .template-product #organization h1,
    .template-product #organization .h1,
    .template-product #guarantee h1,
    .template-product #guarantee .h1,
    .template-product #faq h1,
    .template-product #faq .h1,
    .template-product-pre-order #fitguide h1,
    .template-product-pre-order #fitguide .h1,
    .template-product-pre-order #organization h1,
    .template-product-pre-order #organization .h1,
    .template-product-pre-order #guarantee h1,
    .template-product-pre-order #guarantee .h1,
    .template-product-pre-order #faq h1,
    .template-product-pre-order #faq .h1,
    .template-product-coming-soon #fitguide h1,
    .template-product-coming-soon #fitguide .h1,
    .template-product-coming-soon #organization h1,
    .template-product-coming-soon #organization .h1,
    .template-product-coming-soon #guarantee h1,
    .template-product-coming-soon #guarantee .h1,
    .template-product-coming-soon #faq h1,
    .template-product-coming-soon #faq .h1,
    .template-product-gift-card #fitguide h1,
    .template-product-gift-card #fitguide .h1,
    .template-product-gift-card #organization h1,
    .template-product-gift-card #organization .h1,
    .template-product-gift-card #guarantee h1,
    .template-product-gift-card #guarantee .h1,
    .template-product-gift-card #faq h1,
    .template-product-gift-card #faq .h1,
    .template-product-scrap #fitguide h1,
    .template-product-scrap #fitguide .h1,
    .template-product-scrap #organization h1,
    .template-product-scrap #organization .h1,
    .template-product-scrap #guarantee h1,
    .template-product-scrap #guarantee .h1,
    .template-product-scrap #faq h1,
    .template-product-scrap #faq .h1 {
      display: inline-block;
      background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/chevron-down.png?v=8804095363573763127) no-repeat right 50%;
      padding-right: 55px;
      cursor: pointer; }
      .template-product #fitguide h1 button, .template-product #fitguide .h1 button,
      .template-product #organization h1 button,
      .template-product #organization .h1 button,
      .template-product #guarantee h1 button,
      .template-product #guarantee .h1 button,
      .template-product #faq h1 button,
      .template-product #faq .h1 button,
      .template-product-pre-order #fitguide h1 button,
      .template-product-pre-order #fitguide .h1 button,
      .template-product-pre-order #organization h1 button,
      .template-product-pre-order #organization .h1 button,
      .template-product-pre-order #guarantee h1 button,
      .template-product-pre-order #guarantee .h1 button,
      .template-product-pre-order #faq h1 button,
      .template-product-pre-order #faq .h1 button,
      .template-product-coming-soon #fitguide h1 button,
      .template-product-coming-soon #fitguide .h1 button,
      .template-product-coming-soon #organization h1 button,
      .template-product-coming-soon #organization .h1 button,
      .template-product-coming-soon #guarantee h1 button,
      .template-product-coming-soon #guarantee .h1 button,
      .template-product-coming-soon #faq h1 button,
      .template-product-coming-soon #faq .h1 button,
      .template-product-gift-card #fitguide h1 button,
      .template-product-gift-card #fitguide .h1 button,
      .template-product-gift-card #organization h1 button,
      .template-product-gift-card #organization .h1 button,
      .template-product-gift-card #guarantee h1 button,
      .template-product-gift-card #guarantee .h1 button,
      .template-product-gift-card #faq h1 button,
      .template-product-gift-card #faq .h1 button,
      .template-product-scrap #fitguide h1 button,
      .template-product-scrap #fitguide .h1 button,
      .template-product-scrap #organization h1 button,
      .template-product-scrap #organization .h1 button,
      .template-product-scrap #guarantee h1 button,
      .template-product-scrap #guarantee .h1 button,
      .template-product-scrap #faq h1 button,
      .template-product-scrap #faq .h1 button {
        font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
        font-size: 48px;
        color: #3f3f3f; }
        @media screen and (max-width: 767px) {
          .template-product #fitguide h1 button, .template-product #fitguide .h1 button,
          .template-product #organization h1 button,
          .template-product #organization .h1 button,
          .template-product #guarantee h1 button,
          .template-product #guarantee .h1 button,
          .template-product #faq h1 button,
          .template-product #faq .h1 button,
          .template-product-pre-order #fitguide h1 button,
          .template-product-pre-order #fitguide .h1 button,
          .template-product-pre-order #organization h1 button,
          .template-product-pre-order #organization .h1 button,
          .template-product-pre-order #guarantee h1 button,
          .template-product-pre-order #guarantee .h1 button,
          .template-product-pre-order #faq h1 button,
          .template-product-pre-order #faq .h1 button,
          .template-product-coming-soon #fitguide h1 button,
          .template-product-coming-soon #fitguide .h1 button,
          .template-product-coming-soon #organization h1 button,
          .template-product-coming-soon #organization .h1 button,
          .template-product-coming-soon #guarantee h1 button,
          .template-product-coming-soon #guarantee .h1 button,
          .template-product-coming-soon #faq h1 button,
          .template-product-coming-soon #faq .h1 button,
          .template-product-gift-card #fitguide h1 button,
          .template-product-gift-card #fitguide .h1 button,
          .template-product-gift-card #organization h1 button,
          .template-product-gift-card #organization .h1 button,
          .template-product-gift-card #guarantee h1 button,
          .template-product-gift-card #guarantee .h1 button,
          .template-product-gift-card #faq h1 button,
          .template-product-gift-card #faq .h1 button,
          .template-product-scrap #fitguide h1 button,
          .template-product-scrap #fitguide .h1 button,
          .template-product-scrap #organization h1 button,
          .template-product-scrap #organization .h1 button,
          .template-product-scrap #guarantee h1 button,
          .template-product-scrap #guarantee .h1 button,
          .template-product-scrap #faq h1 button,
          .template-product-scrap #faq .h1 button {
            font-size: 30px; } }
      .template-product #fitguide h1.open, .template-product #fitguide .open.h1,
      .template-product #organization h1.open,
      .template-product #organization .open.h1,
      .template-product #guarantee h1.open,
      .template-product #guarantee .open.h1,
      .template-product #faq h1.open,
      .template-product #faq .open.h1,
      .template-product-pre-order #fitguide h1.open,
      .template-product-pre-order #fitguide .open.h1,
      .template-product-pre-order #organization h1.open,
      .template-product-pre-order #organization .open.h1,
      .template-product-pre-order #guarantee h1.open,
      .template-product-pre-order #guarantee .open.h1,
      .template-product-pre-order #faq h1.open,
      .template-product-pre-order #faq .open.h1,
      .template-product-coming-soon #fitguide h1.open,
      .template-product-coming-soon #fitguide .open.h1,
      .template-product-coming-soon #organization h1.open,
      .template-product-coming-soon #organization .open.h1,
      .template-product-coming-soon #guarantee h1.open,
      .template-product-coming-soon #guarantee .open.h1,
      .template-product-coming-soon #faq h1.open,
      .template-product-coming-soon #faq .open.h1,
      .template-product-gift-card #fitguide h1.open,
      .template-product-gift-card #fitguide .open.h1,
      .template-product-gift-card #organization h1.open,
      .template-product-gift-card #organization .open.h1,
      .template-product-gift-card #guarantee h1.open,
      .template-product-gift-card #guarantee .open.h1,
      .template-product-gift-card #faq h1.open,
      .template-product-gift-card #faq .open.h1,
      .template-product-scrap #fitguide h1.open,
      .template-product-scrap #fitguide .open.h1,
      .template-product-scrap #organization h1.open,
      .template-product-scrap #organization .open.h1,
      .template-product-scrap #guarantee h1.open,
      .template-product-scrap #guarantee .open.h1,
      .template-product-scrap #faq h1.open,
      .template-product-scrap #faq .open.h1 {
        background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/chevron-up.png?v=14676970038016960144) no-repeat right 50%; }
      @media screen and (max-width: 767px) {
        .template-product #fitguide h1, .template-product #fitguide .h1,
        .template-product #organization h1,
        .template-product #organization .h1,
        .template-product #guarantee h1,
        .template-product #guarantee .h1,
        .template-product #faq h1,
        .template-product #faq .h1,
        .template-product-pre-order #fitguide h1,
        .template-product-pre-order #fitguide .h1,
        .template-product-pre-order #organization h1,
        .template-product-pre-order #organization .h1,
        .template-product-pre-order #guarantee h1,
        .template-product-pre-order #guarantee .h1,
        .template-product-pre-order #faq h1,
        .template-product-pre-order #faq .h1,
        .template-product-coming-soon #fitguide h1,
        .template-product-coming-soon #fitguide .h1,
        .template-product-coming-soon #organization h1,
        .template-product-coming-soon #organization .h1,
        .template-product-coming-soon #guarantee h1,
        .template-product-coming-soon #guarantee .h1,
        .template-product-coming-soon #faq h1,
        .template-product-coming-soon #faq .h1,
        .template-product-gift-card #fitguide h1,
        .template-product-gift-card #fitguide .h1,
        .template-product-gift-card #organization h1,
        .template-product-gift-card #organization .h1,
        .template-product-gift-card #guarantee h1,
        .template-product-gift-card #guarantee .h1,
        .template-product-gift-card #faq h1,
        .template-product-gift-card #faq .h1,
        .template-product-scrap #fitguide h1,
        .template-product-scrap #fitguide .h1,
        .template-product-scrap #organization h1,
        .template-product-scrap #organization .h1,
        .template-product-scrap #guarantee h1,
        .template-product-scrap #guarantee .h1,
        .template-product-scrap #faq h1,
        .template-product-scrap #faq .h1 {
          font-size: 30px; } }
    .template-product #fitguide .collapse,
    .template-product #organization .collapse,
    .template-product #guarantee .collapse,
    .template-product #faq .collapse,
    .template-product-pre-order #fitguide .collapse,
    .template-product-pre-order #organization .collapse,
    .template-product-pre-order #guarantee .collapse,
    .template-product-pre-order #faq .collapse,
    .template-product-coming-soon #fitguide .collapse,
    .template-product-coming-soon #organization .collapse,
    .template-product-coming-soon #guarantee .collapse,
    .template-product-coming-soon #faq .collapse,
    .template-product-gift-card #fitguide .collapse,
    .template-product-gift-card #organization .collapse,
    .template-product-gift-card #guarantee .collapse,
    .template-product-gift-card #faq .collapse,
    .template-product-scrap #fitguide .collapse,
    .template-product-scrap #organization .collapse,
    .template-product-scrap #guarantee .collapse,
    .template-product-scrap #faq .collapse {
      display: none; }
      .template-product #fitguide .collapse.open,
      .template-product #organization .collapse.open,
      .template-product #guarantee .collapse.open,
      .template-product #faq .collapse.open,
      .template-product-pre-order #fitguide .collapse.open,
      .template-product-pre-order #organization .collapse.open,
      .template-product-pre-order #guarantee .collapse.open,
      .template-product-pre-order #faq .collapse.open,
      .template-product-coming-soon #fitguide .collapse.open,
      .template-product-coming-soon #organization .collapse.open,
      .template-product-coming-soon #guarantee .collapse.open,
      .template-product-coming-soon #faq .collapse.open,
      .template-product-gift-card #fitguide .collapse.open,
      .template-product-gift-card #organization .collapse.open,
      .template-product-gift-card #guarantee .collapse.open,
      .template-product-gift-card #faq .collapse.open,
      .template-product-scrap #fitguide .collapse.open,
      .template-product-scrap #organization .collapse.open,
      .template-product-scrap #guarantee .collapse.open,
      .template-product-scrap #faq .collapse.open {
        display: block;
        padding-bottom: 30px; }
  .template-product #fitguide img,
  .template-product-pre-order #fitguide img,
  .template-product-coming-soon #fitguide img,
  .template-product-gift-card #fitguide img,
  .template-product-scrap #fitguide img {
    padding-right: 15px;
    border-right: 2px solid #fff; }
    @media screen and (max-width: 991px) {
      .template-product #fitguide img,
      .template-product-pre-order #fitguide img,
      .template-product-coming-soon #fitguide img,
      .template-product-gift-card #fitguide img,
      .template-product-scrap #fitguide img {
        display: block;
        border: none;
        padding: 0 0 45px;
        margin: 0 auto; } }
  .template-product #fitguide .grid__item.three-eighths + .grid__item,
  .template-product-pre-order #fitguide .grid__item.three-eighths + .grid__item,
  .template-product-coming-soon #fitguide .grid__item.three-eighths + .grid__item,
  .template-product-gift-card #fitguide .grid__item.three-eighths + .grid__item,
  .template-product-scrap #fitguide .grid__item.three-eighths + .grid__item {
    padding-left: 30px; }
    @media screen and (max-width: 991px) {
      .template-product #fitguide .grid__item.three-eighths + .grid__item,
      .template-product-pre-order #fitguide .grid__item.three-eighths + .grid__item,
      .template-product-coming-soon #fitguide .grid__item.three-eighths + .grid__item,
      .template-product-gift-card #fitguide .grid__item.three-eighths + .grid__item,
      .template-product-scrap #fitguide .grid__item.three-eighths + .grid__item {
        padding-left: 15px; } }
  .template-product #fitguide h2, .template-product #fitguide .h2,
  .template-product-pre-order #fitguide h2,
  .template-product-pre-order #fitguide .h2,
  .template-product-coming-soon #fitguide h2,
  .template-product-coming-soon #fitguide .h2,
  .template-product-gift-card #fitguide h2,
  .template-product-gift-card #fitguide .h2,
  .template-product-scrap #fitguide h2,
  .template-product-scrap #fitguide .h2 {
    font-size: 18px;
    line-height: 1.0;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 1.777em; }
  .template-product #fitguide .notice,
  .template-product-pre-order #fitguide .notice,
  .template-product-coming-soon #fitguide .notice,
  .template-product-gift-card #fitguide .notice,
  .template-product-scrap #fitguide .notice {
    font-size: 13px;
    line-height: 1.0;
    /*font-variant: small-caps;*/
    text-transform: uppercase;
    font-weight: bold;
    color: #b11116;
    margin: 0 0 2.111em; }
    .template-product #fitguide .notice a,
    .template-product-pre-order #fitguide .notice a,
    .template-product-coming-soon #fitguide .notice a,
    .template-product-gift-card #fitguide .notice a,
    .template-product-scrap #fitguide .notice a {
      color: #b11116; }
  .template-product #fitguide .tabs,
  .template-product-pre-order #fitguide .tabs,
  .template-product-coming-soon #fitguide .tabs,
  .template-product-gift-card #fitguide .tabs,
  .template-product-scrap #fitguide .tabs {
    margin: 0;
    padding: 0; }
  .template-product #fitguide .tab,
  .template-product-pre-order #fitguide .tab,
  .template-product-coming-soon #fitguide .tab,
  .template-product-gift-card #fitguide .tab,
  .template-product-scrap #fitguide .tab {
    display: inline-block;
    font-family: "Source Sans Pro", Arial, sans-serif;
    background: #443f3f;
    font-size: 16px;
    line-height: 27px;
    padding: 0.5em;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff; }
  .template-product #fitguide table,
  .template-product-pre-order #fitguide table,
  .template-product-coming-soon #fitguide table,
  .template-product-gift-card #fitguide table,
  .template-product-scrap #fitguide table {
    font-family: "Source Sans Pro", Arial, sans-serif;
    border: 1px solid #443f3f; }
    .template-product #fitguide table th,
    .template-product-pre-order #fitguide table th,
    .template-product-coming-soon #fitguide table th,
    .template-product-gift-card #fitguide table th,
    .template-product-scrap #fitguide table th {
      background: #443f3f;
      font-size: 12px;
      line-height: 1.5;
      padding: 0.5em 1.0em;
      border: none;
      font-weight: bold;
      text-transform: uppercase;
      color: #fff; }
    .template-product #fitguide table td,
    .template-product-pre-order #fitguide table td,
    .template-product-coming-soon #fitguide table td,
    .template-product-gift-card #fitguide table td,
    .template-product-scrap #fitguide table td {
      font-size: 12px;
      line-height: 13px;
      padding: 0.5em 0.8333em;
      color: #443f3f;
      border: none;
      border-top: 1px solid #afaaaa;
      border-left: 1px solid #afaaaa; }
      @media screen and (max-width: 767px) {
        .template-product #fitguide table td,
        .template-product-pre-order #fitguide table td,
        .template-product-coming-soon #fitguide table td,
        .template-product-gift-card #fitguide table td,
        .template-product-scrap #fitguide table td {
          border: none; } }
      .template-product #fitguide table td:first-child,
      .template-product-pre-order #fitguide table td:first-child,
      .template-product-coming-soon #fitguide table td:first-child,
      .template-product-gift-card #fitguide table td:first-child,
      .template-product-scrap #fitguide table td:first-child {
        border-left: none; }
        @media screen and (max-width: 767px) {
          .template-product #fitguide table td:first-child,
          .template-product-pre-order #fitguide table td:first-child,
          .template-product-coming-soon #fitguide table td:first-child,
          .template-product-gift-card #fitguide table td:first-child,
          .template-product-scrap #fitguide table td:first-child {
            border-top: 1px solid #afaaaa; } }
    .template-product #fitguide table tbody tr:first-child td,
    .template-product-pre-order #fitguide table tbody tr:first-child td,
    .template-product-coming-soon #fitguide table tbody tr:first-child td,
    .template-product-gift-card #fitguide table tbody tr:first-child td,
    .template-product-scrap #fitguide table tbody tr:first-child td {
      border-top: none; }
  .template-product #organization .notice,
  .template-product-pre-order #organization .notice,
  .template-product-coming-soon #organization .notice,
  .template-product-gift-card #organization .notice,
  .template-product-scrap #organization .notice {
    font-size: 13px;
    line-height: 1.0;
    font-weight: bold;
    /*font-variant: small-caps;*/
    text-transform: uppercase;
    color: #b11116; }
    .template-product #organization .notice + *,
    .template-product-pre-order #organization .notice + *,
    .template-product-coming-soon #organization .notice + *,
    .template-product-gift-card #organization .notice + *,
    .template-product-scrap #organization .notice + * {
      clear: both; }
  .template-product #organization .organization_list .grid__item:nth-of-type(4n+5),
  .template-product-pre-order #organization .organization_list .grid__item:nth-of-type(4n+5),
  .template-product-coming-soon #organization .organization_list .grid__item:nth-of-type(4n+5),
  .template-product-gift-card #organization .organization_list .grid__item:nth-of-type(4n+5),
  .template-product-scrap #organization .organization_list .grid__item:nth-of-type(4n+5) {
    clear: both; }
  .template-product #guarantee,
  .template-product-pre-order #guarantee,
  .template-product-coming-soon #guarantee,
  .template-product-gift-card #guarantee,
  .template-product-scrap #guarantee {
    font-size: 24px;
    line-height: 1.25;
    color: #443f3f; }
    .template-product #guarantee p,
    .template-product-pre-order #guarantee p,
    .template-product-coming-soon #guarantee p,
    .template-product-gift-card #guarantee p,
    .template-product-scrap #guarantee p {
      letter-spacing: -1.75px; }
    .template-product #guarantee .grid__item.one-half,
    .template-product-pre-order #guarantee .grid__item.one-half,
    .template-product-coming-soon #guarantee .grid__item.one-half,
    .template-product-gift-card #guarantee .grid__item.one-half,
    .template-product-scrap #guarantee .grid__item.one-half {
      padding: 0 30px 0 15px; }
      .template-product #guarantee .grid__item.one-half + .grid__item.one-half,
      .template-product-pre-order #guarantee .grid__item.one-half + .grid__item.one-half,
      .template-product-coming-soon #guarantee .grid__item.one-half + .grid__item.one-half,
      .template-product-gift-card #guarantee .grid__item.one-half + .grid__item.one-half,
      .template-product-scrap #guarantee .grid__item.one-half + .grid__item.one-half {
        padding: 0 15px 0 30px; }
      @media screen and (max-width: 767px) {
        .template-product #guarantee .grid__item.one-half,
        .template-product-pre-order #guarantee .grid__item.one-half,
        .template-product-coming-soon #guarantee .grid__item.one-half,
        .template-product-gift-card #guarantee .grid__item.one-half,
        .template-product-scrap #guarantee .grid__item.one-half {
          padding: 0 0 0 15px; }
          .template-product #guarantee .grid__item.one-half + .grid__item.one-half,
          .template-product-pre-order #guarantee .grid__item.one-half + .grid__item.one-half,
          .template-product-coming-soon #guarantee .grid__item.one-half + .grid__item.one-half,
          .template-product-gift-card #guarantee .grid__item.one-half + .grid__item.one-half,
          .template-product-scrap #guarantee .grid__item.one-half + .grid__item.one-half {
            padding: 0 0 0 15px; } }

.template-product-coming-soon #ProductPhoto,
.template-product-scrap #ProductPhoto {
  position: relative; }
.template-product-coming-soon .coming-soon-info,
.template-product-scrap .coming-soon-info {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.333;
  font-style: italic; }
  .template-product-coming-soon .coming-soon-info h1, .template-product-coming-soon .coming-soon-info .h1,
  .template-product-scrap .coming-soon-info h1,
  .template-product-scrap .coming-soon-info .h1 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 18px !important;
    line-height: 1.333 !important;
    font-style: normal;
    font-weight: 700;
    margin: 15px 0 0 !important; }
.template-product-coming-soon .coming-soon-box,
.template-product-scrap .coming-soon-box {
  padding: 10px;
  border: 3px solid #231f20;
  font-size: 15px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 15px; }
  .template-product-coming-soon .coming-soon-box strong,
  .template-product-scrap .coming-soon-box strong {
    display: block;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 700;
    padding: 0 20px 0.75em; }
    .template-product-coming-soon .coming-soon-box strong:before,
    .template-product-scrap .coming-soon-box strong:before {
      content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/star-gray.png?v=4929923994797491627);
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      line-height: 0; }
    .template-product-coming-soon .coming-soon-box strong:after,
    .template-product-scrap .coming-soon-box strong:after {
      content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/star-gray.png?v=4929923994797491627);
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      line-height: 0; }
  .template-product-coming-soon .coming-soon-box p,
  .template-product-scrap .coming-soon-box p {
    margin-bottom: 0.6em; }
.template-product-coming-soon .keypress-easter-egg-holder,
.template-product-scrap .keypress-easter-egg-holder {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }
  .template-product-coming-soon .keypress-easter-egg-holder.flex,
  .template-product-scrap .keypress-easter-egg-holder.flex {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    align-items: center;
    align-content: center; }
  .template-product-coming-soon .keypress-easter-egg-holder.has-iframe .keypress-easter-egg,
  .template-product-scrap .keypress-easter-egg-holder.has-iframe .keypress-easter-egg {
    width: 80%;
    max-width: 1170px; }
.template-product-coming-soon .keypress-easter-egg,
.template-product-scrap .keypress-easter-egg {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
  background: #fff;
  padding: 45px;
  margin: 0 auto; }
  .template-product-coming-soon .keypress-easter-egg button,
  .template-product-scrap .keypress-easter-egg button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    text-indent: -999em;
    cursor: pointer; }
    .template-product-coming-soon .keypress-easter-egg button:hover:before, .template-product-coming-soon .keypress-easter-egg button:hover:after,
    .template-product-scrap .keypress-easter-egg button:hover:before,
    .template-product-scrap .keypress-easter-egg button:hover:after {
      background-color: #6A696A; }
    .template-product-coming-soon .keypress-easter-egg button:before, .template-product-coming-soon .keypress-easter-egg button:after,
    .template-product-scrap .keypress-easter-egg button:before,
    .template-product-scrap .keypress-easter-egg button:after {
      content: '';
      position: absolute;
      width: 24px;
      height: 4px;
      background-color: #3f3f3f;
      border-radius: 2px; }
    .template-product-coming-soon .keypress-easter-egg button:before,
    .template-product-scrap .keypress-easter-egg button:before {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg);
      left: 3px;
      top: 12px; }
    .template-product-coming-soon .keypress-easter-egg button:after,
    .template-product-scrap .keypress-easter-egg button:after {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      transform: rotate(-45deg);
      right: 3px;
      top: 13px; }

.coming-soon-notice {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 250px;
  margin: 0 0 0 -125px;
  display: block;
  line-height: 42px;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #231f20;
  color: #fff; }
  .coming-soon-notice:before {
    content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/star-white.png?v=5284289013026713239);
    display: block;
    position: absolute;
    top: 14px;
    left: 8px;
    line-height: 0; }
  .coming-soon-notice:after {
    content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/star-white.png?v=5284289013026713239);
    display: block;
    position: absolute;
    top: 14px;
    right: 8px;
    line-height: 0; }
  .coming-soon-notice.small-notice {
    font-size: 17px;
    line-height: 30px;
    width: 166px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 0 0 -83px !important; }
    .coming-soon-notice.small-notice:before {
      content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/star-white-sm.png?v=6809782560842981357);
      top: 11px;
      left: 5px; }
    .coming-soon-notice.small-notice:after {
      content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/star-white-sm.png?v=6809782560842981357);
      top: 11px;
      right: 5px; }

.template-product-gift-card #description-main {
  padding-top: 45px;
  padding-right: 45px; }
  .template-product-gift-card #description-main ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #eeeeee; }

#scroll-to-top {
  position: fixed;
  bottom: 75px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #231f20 url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/scroll-top-arrow.png?v=3454494896620531117) no-repeat center center;
  opacity: 0;
  transition: opacity 0.5s; }
  #scroll-to-top:hover {
    background-color: #080707; }
  body.scrolled #scroll-to-top {
    opacity: 1.0;
    transition: opacity 0.5s; }

.giftcard__tag {
  float: left !important;
  margin-bottom: 24px !important; }

/*============================================================================
  #Checkout
==============================================================================*/
body#inventory-issues .stock-problem-table__header th,
body#inventory-issues .stock-problems-table td,
body#inventory-issues .order-summary td,
body#inventory-issues .order-summary th {
  border: none; }

body[id$=-checkout] .total-line-table__footer .total-line td::before,
body#checkout .total-line-table__footer .total-line td::before,
body#inventory-issues
body[id^="thank-you"] .total-line-table__footer .total-line td::before,
.page--thank-you .total-line-table__footer .total-line td::before {
  display: none; }
body[id$=-checkout] #menu_toggle,
body#checkout #menu_toggle,
body#inventory-issues
body[id^="thank-you"] #menu_toggle,
.page--thank-you #menu_toggle {
  margin-top: 5px; }
body[id$=-checkout] #checkout-nav .icon,
body[id$=-checkout] .icon-search,
body#checkout #checkout-nav .icon,
body#checkout .icon-search,
body#inventory-issues
body[id^="thank-you"] #checkout-nav .icon,
body#inventory-issues
body[id^="thank-you"] .icon-search,
.page--thank-you #checkout-nav .icon,
.page--thank-you .icon-search {
  margin-top: -3px; }
body[id$=-checkout] #checkout-nav,
body#checkout #checkout-nav,
body#inventory-issues
body[id^="thank-you"] #checkout-nav,
.page--thank-you #checkout-nav {
  padding-top: 10px;
  padding-bottom: 7px; }
body[id$=-checkout] .step__sections .section .section__footer,
body#checkout .step__sections .section .section__footer,
body#inventory-issues
body[id^="thank-you"] .step__sections .section .section__footer,
.page--thank-you .step__sections .section .section__footer {
  font-size: 12px;
  margin: 1.5em 0.5em; }
body[id$=-checkout] main,
body#checkout main,
body#inventory-issues
body[id^="thank-you"] main,
.page--thank-you main {
  font-family: "Source Sans Pro", Arial, sans-serif;
  padding: 45px 0 60px; }
  body[id$=-checkout] main .one-half,
  body#checkout main .one-half,
  body#inventory-issues
  body[id^="thank-you"] main .one-half,
  .page--thank-you main .one-half {
    padding-left: 30px; }
    body[id$=-checkout] main .one-half + .one-half,
    body#checkout main .one-half + .one-half,
    body#inventory-issues
    body[id^="thank-you"] main .one-half + .one-half,
    .page--thank-you main .one-half + .one-half {
      padding-left: 15px;
      padding-right: 0; }
    @media screen and (max-width: 999px) {
      body[id$=-checkout] main .one-half,
      body#checkout main .one-half,
      body#inventory-issues
      body[id^="thank-you"] main .one-half,
      .page--thank-you main .one-half {
        width: 100%;
        padding-left: 15px;
        padding-right: 0; } }
  body[id$=-checkout] main h2, body[id$=-checkout] main .h2,
  body[id$=-checkout] main h2.section_title,
  body[id$=-checkout] main .section_title.h2,
  body#checkout main h2,
  body#checkout main .h2,
  body#checkout main h2.section_title,
  body#checkout main .section_title.h2,
  body#inventory-issues
  body[id^="thank-you"] main h2,
  body#inventory-issues
  body[id^="thank-you"] main .h2,
  body#inventory-issues
  body[id^="thank-you"] main h2.section_title,
  body#inventory-issues
  body[id^="thank-you"] main .section_title.h2,
  .page--thank-you main h2,
  .page--thank-you main .h2,
  .page--thank-you main h2.section_title,
  .page--thank-you main .section_title.h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #443f3f; }
  body[id$=-checkout] main h3, body[id$=-checkout] main .h3,
  body[id$=-checkout] main h3.section_title,
  body[id$=-checkout] main .section_title.h3,
  body#checkout main h3,
  body#checkout main .h3,
  body#checkout main h3.section_title,
  body#checkout main .section_title.h3,
  body#inventory-issues
  body[id^="thank-you"] main h3,
  body#inventory-issues
  body[id^="thank-you"] main .h3,
  body#inventory-issues
  body[id^="thank-you"] main h3.section_title,
  body#inventory-issues
  body[id^="thank-you"] main .section_title.h3,
  .page--thank-you main h3,
  .page--thank-you main .h3,
  .page--thank-you main h3.section_title,
  .page--thank-you main .section_title.h3 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #443f3f; }
  body[id$=-checkout] main h4, body[id$=-checkout] main .h4,
  body[id$=-checkout] main h4.section_title,
  body[id$=-checkout] main .section_title.h4,
  body[id$=-checkout] main h5,
  body[id$=-checkout] main .h5,
  body[id$=-checkout] main h5.section_title,
  body[id$=-checkout] main .section_title.h5,
  body#checkout main h4,
  body#checkout main .h4,
  body#checkout main h4.section_title,
  body#checkout main .section_title.h4,
  body#checkout main h5,
  body#checkout main .h5,
  body#checkout main h5.section_title,
  body#checkout main .section_title.h5,
  body#inventory-issues
  body[id^="thank-you"] main h4,
  body#inventory-issues
  body[id^="thank-you"] main .h4,
  body#inventory-issues
  body[id^="thank-you"] main h4.section_title,
  body#inventory-issues
  body[id^="thank-you"] main .section_title.h4,
  body#inventory-issues
  body[id^="thank-you"] main h5,
  body#inventory-issues
  body[id^="thank-you"] main .h5,
  body#inventory-issues
  body[id^="thank-you"] main h5.section_title,
  body#inventory-issues
  body[id^="thank-you"] main .section_title.h5,
  .page--thank-you main h4,
  .page--thank-you main .h4,
  .page--thank-you main h4.section_title,
  .page--thank-you main .section_title.h4,
  .page--thank-you main h5,
  .page--thank-you main .h5,
  .page--thank-you main h5.section_title,
  .page--thank-you main .section_title.h5 {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    color: #443f3f; }
body[id$=-checkout] .field--error .field__input,
body#checkout .field--error .field__input,
body#inventory-issues
body[id^="thank-you"] .field--error .field__input,
.page--thank-you .field--error .field__input {
  box-shadow: none !important; }
body[id$=-checkout] .field__input,
body#checkout .field__input,
body#inventory-issues
body[id^="thank-you"] .field__input,
.page--thank-you .field__input {
  box-shadow: none !important; }
  body[id$=-checkout] .field__input:focus,
  body#checkout .field__input:focus,
  body#inventory-issues
  body[id^="thank-you"] .field__input:focus,
  .page--thank-you .field__input:focus {
    border: none;
    box-shadow: none !important;
    outline: none;
    border-left: 1px solid #2f292b;
    border-top: 1px solid #2f292b;
    background: #fafafa; }
body[id$=-checkout] .content-box,
body#checkout .content-box,
body#inventory-issues
body[id^="thank-you"] .content-box,
.page--thank-you .content-box {
  border: 1px solid #2f292b;
  border-right: 2px solid #2f292b;
  border-bottom: 2px solid #2f292b;
  padding: 0;
  margin: 0;
  box-shadow: none !important;
  border-radius: 0;
  color: #443f3f; }
  body[id$=-checkout] .content-box .fieldset,
  body#checkout .content-box .fieldset,
  body#inventory-issues
  body[id^="thank-you"] .content-box .fieldset,
  .page--thank-you .content-box .fieldset {
    border: none;
    border-right: 1px solid #2f292b;
    border-bottom: 1px solid #2f292b; }
  body[id$=-checkout] .content-box .field__input,
  body#checkout .content-box .field__input,
  body#inventory-issues
  body[id^="thank-you"] .content-box .field__input,
  .page--thank-you .content-box .field__input {
    box-shadow: none !important; }
    body[id$=-checkout] .content-box .field__input:focus,
    body#checkout .content-box .field__input:focus,
    body#inventory-issues
    body[id^="thank-you"] .content-box .field__input:focus,
    .page--thank-you .content-box .field__input:focus {
      border: none;
      box-shadow: none !important;
      outline: none;
      border-left: 1px solid #2f292b;
      border-top: 1px solid #2f292b;
      background: #fafafa; }
body[id$=-checkout] .field__input--select,
body#checkout .field__input--select,
body#inventory-issues
body[id^="thank-you"] .field__input--select,
.page--thank-you .field__input--select {
  padding-right: 35px; }
body[id$=-checkout] .content-box__row,
body#checkout .content-box__row,
body#inventory-issues
body[id^="thank-you"] .content-box__row,
.page--thank-you .content-box__row {
  border-top: 1px solid #2f292b;
  border-left: 1px solid #2f292b;
  border-radius: 0; }
body[id$=-checkout] .order-summary-toggle,
body#checkout .order-summary-toggle,
body#inventory-issues
body[id^="thank-you"] .order-summary-toggle,
.page--thank-you .order-summary-toggle {
  line-height: 20px;
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background-color: #231f20;
  color: white;
  border: none;
  padding: 7px 12px;
  margin-bottom: 45px; }
  body[id$=-checkout] .order-summary-toggle .order-summary-toggle__text,
  body[id$=-checkout] .order-summary-toggle .total-recap__final-price,
  body#checkout .order-summary-toggle .order-summary-toggle__text,
  body#checkout .order-summary-toggle .total-recap__final-price,
  body#inventory-issues
  body[id^="thank-you"] .order-summary-toggle .order-summary-toggle__text,
  body#inventory-issues
  body[id^="thank-you"] .order-summary-toggle .total-recap__final-price,
  .page--thank-you .order-summary-toggle .order-summary-toggle__text,
  .page--thank-you .order-summary-toggle .total-recap__final-price {
    color: white; }
  body[id$=-checkout] .order-summary-toggle .order-summary-toggle__dropdown,
  body#checkout .order-summary-toggle .order-summary-toggle__dropdown,
  body#inventory-issues
  body[id^="thank-you"] .order-summary-toggle .order-summary-toggle__dropdown,
  .page--thank-you .order-summary-toggle .order-summary-toggle__dropdown {
    fill: white; }
  body[id$=-checkout] .order-summary-toggle .order-summary-toggle__icon-wrapper,
  body#checkout .order-summary-toggle .order-summary-toggle__icon-wrapper,
  body#inventory-issues
  body[id^="thank-you"] .order-summary-toggle .order-summary-toggle__icon-wrapper,
  .page--thank-you .order-summary-toggle .order-summary-toggle__icon-wrapper {
    display: none; }
body[id$=-checkout] .input-checkbox,
body#checkout .input-checkbox,
body#inventory-issues
body[id^="thank-you"] .input-checkbox,
.page--thank-you .input-checkbox {
  border: 2px solid #2f292b;
  -webkit-appearance: none;
  height: 26px;
  width: 26px;
  display: block;
  padding: 0;
  -webkit-appearance: none;
  border-radius: 0; }
body[id$=-checkout] .input-radio,
body#checkout .input-radio,
body#inventory-issues
body[id^="thank-you"] .input-radio,
.page--thank-you .input-radio {
  border: 2px solid #2f292b;
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  display: block;
  padding: 0;
  -webkit-appearance: none; }
body[id$=-checkout] .input-checkbox:checked,
body[id$=-checkout] .input-radio:checked,
body#checkout .input-checkbox:checked,
body#checkout .input-radio:checked,
body#inventory-issues
body[id^="thank-you"] .input-checkbox:checked,
body#inventory-issues
body[id^="thank-you"] .input-radio:checked,
.page--thank-you .input-checkbox:checked,
.page--thank-you .input-radio:checked {
  border: none;
  box-shadow: 0 0 0 10px #ed1c24 inset;
  min-width: 16px;
  min-height: 16px; }
body[id$=-checkout] .input-checkbox:checked,
body#checkout .input-checkbox:checked,
body#inventory-issues
body[id^="thank-you"] .input-checkbox:checked,
.page--thank-you .input-checkbox:checked {
  box-shadow: 0 0 0 26px #ed1c24 inset; }
body[id$=-checkout] .previous-link__icon,
body#checkout .previous-link__icon,
body#inventory-issues
body[id^="thank-you"] .previous-link__icon,
.page--thank-you .previous-link__icon {
  fill: #337ab7; }
body[id$=-checkout] .field__input-wrapper--select select,
body#checkout .field__input-wrapper--select select,
body#inventory-issues
body[id^="thank-you"] .field__input-wrapper--select select,
.page--thank-you .field__input-wrapper--select select {
  background: #fff;
  margin: 0;
  height: 3.63em; }
body[id$=-checkout] .field__input-wrapper--select:before,
body#checkout .field__input-wrapper--select:before,
body#inventory-issues
body[id^="thank-you"] .field__input-wrapper--select:before,
.page--thank-you .field__input-wrapper--select:before {
  background-image: url(//cdn.shopify.com/s/assets/checkout_v2/dropdown-arrow-down-dark-e0b56f8b6bd91b987ac4526a533b29444088db55ef80c9d47778945233c13c09.png);
  background-image: url(//cdn.shopify.com/s/assets/checkout_v2/dropdown-arrow-down-dark-03cace330ac9af908922bab6c8e659b8c356ca7093d8b680fb3b09cd4b642ecb.svg), none; }
body[id$=-checkout] .field__message--error,
body[id$=-checkout] .international--error,
body#checkout .field__message--error,
body#checkout .international--error,
body#inventory-issues
body[id^="thank-you"] .field__message--error,
body#inventory-issues
body[id^="thank-you"] .international--error,
.page--thank-you .field__message--error,
.page--thank-you .international--error {
  line-height: 1.3em;
  margin: -1px 0 0;
  padding: 0.25em 0.5em 0.75em;
  color: #ed1c24;
  border-left: 1px solid #2f292b;
  border-top: 1px solid #fff;
  background: #fff; }
body[id$=-checkout] .international--error,
body#checkout .international--error,
body#inventory-issues
body[id^="thank-you"] .international--error,
.page--thank-you .international--error {
  border-left: none;
  padding-left: 45px;
  padding-top: 0;
  font-size: 0.9em; }
body[id$=-checkout] .order-summary__section--discount fieldset, body[id$=-checkout] .order-summary__section--discount .fieldset,
body#checkout .order-summary__section--discount fieldset,
body#checkout .order-summary__section--discount .fieldset,
body#inventory-issues
body[id^="thank-you"] .order-summary__section--discount fieldset,
body#inventory-issues
body[id^="thank-you"] .order-summary__section--discount .fieldset,
.page--thank-you .order-summary__section--discount fieldset,
.page--thank-you .order-summary__section--discount .fieldset {
  border: 1px solid #2f292b;
  border-top: 2px solid #2f292b; }
  body[id$=-checkout] .order-summary__section--discount fieldset .field__input, body[id$=-checkout] .order-summary__section--discount .fieldset .field__input,
  body#checkout .order-summary__section--discount fieldset .field__input,
  body#checkout .order-summary__section--discount .fieldset .field__input,
  body#inventory-issues
  body[id^="thank-you"] .order-summary__section--discount fieldset .field__input,
  body#inventory-issues
  body[id^="thank-you"] .order-summary__section--discount .fieldset .field__input,
  .page--thank-you .order-summary__section--discount fieldset .field__input,
  .page--thank-you .order-summary__section--discount .fieldset .field__input {
    border-top: none; }
body[id$=-checkout] .section--reductions.hidden-on-desktop,
body#checkout .section--reductions.hidden-on-desktop,
body#inventory-issues
body[id^="thank-you"] .section--reductions.hidden-on-desktop,
.page--thank-you .section--reductions.hidden-on-desktop {
  padding-bottom: 3em; }
  body[id$=-checkout] .section--reductions.hidden-on-desktop fieldset, body[id$=-checkout] .section--reductions.hidden-on-desktop .fieldset,
  body#checkout .section--reductions.hidden-on-desktop fieldset,
  body#checkout .section--reductions.hidden-on-desktop .fieldset,
  body#inventory-issues
  body[id^="thank-you"] .section--reductions.hidden-on-desktop fieldset,
  body#inventory-issues
  body[id^="thank-you"] .section--reductions.hidden-on-desktop .fieldset,
  .page--thank-you .section--reductions.hidden-on-desktop fieldset,
  .page--thank-you .section--reductions.hidden-on-desktop .fieldset {
    border: 1px solid #2f292b;
    border-top: 2px solid #2f292b;
    border-bottom: 2px solid #2f292b; }
    body[id$=-checkout] .section--reductions.hidden-on-desktop fieldset .field__input, body[id$=-checkout] .section--reductions.hidden-on-desktop .fieldset .field__input,
    body#checkout .section--reductions.hidden-on-desktop fieldset .field__input,
    body#checkout .section--reductions.hidden-on-desktop .fieldset .field__input,
    body#inventory-issues
    body[id^="thank-you"] .section--reductions.hidden-on-desktop fieldset .field__input,
    body#inventory-issues
    body[id^="thank-you"] .section--reductions.hidden-on-desktop .fieldset .field__input,
    .page--thank-you .section--reductions.hidden-on-desktop fieldset .field__input,
    .page--thank-you .section--reductions.hidden-on-desktop .fieldset .field__input {
      border-top: none; }
body[id$=-checkout] .product:first-child td,
body#checkout .product:first-child td,
body#inventory-issues
body[id^="thank-you"] .product:first-child td,
.page--thank-you .product:first-child td {
  padding-top: 7.5px; }
body[id$=-checkout] .product td,
body#checkout .product td,
body#inventory-issues
body[id^="thank-you"] .product td,
.page--thank-you .product td {
  vertical-align: top; }
body[id$=-checkout] .product .product__image__wrapper:after,
body#checkout .product .product__image__wrapper:after,
body#inventory-issues
body[id^="thank-you"] .product .product__image__wrapper:after,
.page--thank-you .product .product__image__wrapper:after {
  display: none; }
body[id$=-checkout] .product__image,
body#checkout .product__image,
body#inventory-issues
body[id^="thank-you"] .product__image,
.page--thank-you .product__image {
  width: 94px; }
body[id$=-checkout] .product__image__inner,
body#checkout .product__image__inner,
body#inventory-issues
body[id^="thank-you"] .product__image__inner,
.page--thank-you .product__image__inner {
  padding-right: 30px; }
body[id$=-checkout] .product__quantity,
body#checkout .product__quantity,
body#inventory-issues
body[id^="thank-you"] .product__quantity,
.page--thank-you .product__quantity {
  border-radius: 0;
  font-size: 1.0em;
  font-weight: 700;
  padding: 0;
  min-width: 30px;
  right: 0;
  top: 0;
  color: #443f3f;
  background-color: #fff; }
@media screen and (max-width: 999px) {
  body[id$=-checkout] .order-summary.order-summary--is-expanded,
  body#checkout .order-summary.order-summary--is-expanded,
  body#inventory-issues
  body[id^="thank-you"] .order-summary.order-summary--is-expanded,
  .page--thank-you .order-summary.order-summary--is-expanded {
    margin-bottom: 45px; } }
body[id$=-checkout] .order-summary .order-summary__section,
body#checkout .order-summary .order-summary__section,
body#inventory-issues
body[id^="thank-you"] .order-summary .order-summary__section,
.page--thank-you .order-summary .order-summary__section {
  border: none;
  padding: 0; }
body[id$=-checkout] .order-summary .order-summary__emphasis,
body#checkout .order-summary .order-summary__emphasis,
body#inventory-issues
body[id^="thank-you"] .order-summary .order-summary__emphasis,
.page--thank-you .order-summary .order-summary__emphasis {
  font-weight: 400;
  color: #443f3f; }
body[id$=-checkout] .order-summary .order-summary__small-text,
body#checkout .order-summary .order-summary__small-text,
body#inventory-issues
body[id^="thank-you"] .order-summary .order-summary__small-text,
.page--thank-you .order-summary .order-summary__small-text {
  font-size: 12px;
  line-height: 1.0;
  font-style: italic;
  margin: 10px 0 12px;
  color: #443f3f; }
body[id$=-checkout] .order-summary thead,
body#checkout .order-summary thead,
body#inventory-issues
body[id^="thank-you"] .order-summary thead,
.page--thank-you .order-summary thead {
  display: none; }
body[id$=-checkout] .order-summary td,
body#checkout .order-summary td,
body#inventory-issues
body[id^="thank-you"] .order-summary td,
.page--thank-you .order-summary td {
  border-left: none;
  border-right: none;
  border-bottom: none; }
body[id$=-checkout] .order-summary .total-line:first-child td,
body#checkout .order-summary .total-line:first-child td,
body#inventory-issues
body[id^="thank-you"] .order-summary .total-line:first-child td,
.page--thank-you .order-summary .total-line:first-child td {
  padding-top: 7.5px; }
body[id$=-checkout] .order-summary .total-line__name,
body[id$=-checkout] .order-summary .total-line__price,
body#checkout .order-summary .total-line__name,
body#checkout .order-summary .total-line__price,
body#inventory-issues
body[id^="thank-you"] .order-summary .total-line__name,
body#inventory-issues
body[id^="thank-you"] .order-summary .total-line__price,
.page--thank-you .order-summary .total-line__name,
.page--thank-you .order-summary .total-line__price {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  border-left: none;
  border-right: none; }
  body[id$=-checkout] .order-summary .total-line__name.payment-due-label, body[id$=-checkout] .order-summary .total-line__name.payment-due,
  body[id$=-checkout] .order-summary .total-line__price.payment-due-label,
  body[id$=-checkout] .order-summary .total-line__price.payment-due,
  body#checkout .order-summary .total-line__name.payment-due-label,
  body#checkout .order-summary .total-line__name.payment-due,
  body#checkout .order-summary .total-line__price.payment-due-label,
  body#checkout .order-summary .total-line__price.payment-due,
  body#inventory-issues
  body[id^="thank-you"] .order-summary .total-line__name.payment-due-label,
  body#inventory-issues
  body[id^="thank-you"] .order-summary .total-line__name.payment-due,
  body#inventory-issues
  body[id^="thank-you"] .order-summary .total-line__price.payment-due-label,
  body#inventory-issues
  body[id^="thank-you"] .order-summary .total-line__price.payment-due,
  .page--thank-you .order-summary .total-line__name.payment-due-label,
  .page--thank-you .order-summary .total-line__name.payment-due,
  .page--thank-you .order-summary .total-line__price.payment-due-label,
  .page--thank-you .order-summary .total-line__price.payment-due {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: #443f3f;
    margin-bottom: 30px;
    padding-top: 0.5em;
    border-bottom: none; }
body[id$=-checkout] .order-summary .payment-due__currency,
body#checkout .order-summary .payment-due__currency,
body#inventory-issues
body[id^="thank-you"] .order-summary .payment-due__currency,
.page--thank-you .order-summary .payment-due__currency {
  font-size: 12px;
  vertical-align: middle;
  margin-right: 0.5em;
  font-weight: 400;
  color: #a09c9d; }
body[id$=-checkout] .order-summary .payment-due__price,
body#checkout .order-summary .payment-due__price,
body#inventory-issues
body[id^="thank-you"] .order-summary .payment-due__price,
.page--thank-you .order-summary .payment-due__price {
  font-size: 1.0em;
  font-weight: 700;
  letter-spacing: 0;
  color: #443f3f;
  line-height: 1em; }
body[id$=-checkout] .site-footer p,
body#checkout .site-footer p,
body#inventory-issues
body[id^="thank-you"] .site-footer p,
.page--thank-you .site-footer p {
  line-height: 1.42857143; }

.page--thank-you .content-box__row--no-border + .content-box__row {
  border-top: none !important; }
.page--thank-you .order-summary-toggle {
  display: none; }
.page--thank-you main a {
  text-decoration: underline; }
  .page--thank-you main a.btn, .page--thank-you main a.btn--secondary, .page--thank-you main a.iWishAdd,
  .page--thank-you main a.iWishCartAdd, .page--thank-you main a.iwishRemoveBtn, .page--thank-you main a.iwishBuyBtn {
    text-decoration: none; }
.page--thank-you h1 span, .page--thank-you .h1 span {
  display: block;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #424242;
  text-transform: none;
  padding: 0.58333em 0 0.291666em; }
.page--thank-you #post_checkout_successA {
  padding-bottom: 16px; }
  .page--thank-you #post_checkout_successA p {
    margin-bottom: 29px; }
  .page--thank-you #post_checkout_successA h2, .page--thank-you #post_checkout_successA .h2 {
    padding-bottom: 7px; }
.page--thank-you #post_checkout_successC {
  color: #424242;
  padding-bottom: 19px; }
  .page--thank-you #post_checkout_successC p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1; }
    .page--thank-you #post_checkout_successC p + p {
      margin-top: 1.08333em; }
    @media screen and (min-width: 992px) {
      .page--thank-you #post_checkout_successC p br {
        display: none; } }
  .page--thank-you #post_checkout_successC h2, .page--thank-you #post_checkout_successC .h2 {
    font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 1;
    color: #3f3f3f;
    text-transform: uppercase;
    padding-bottom: 0.5em; }
    .page--thank-you #post_checkout_successC h2 + p, .page--thank-you #post_checkout_successC .h2 + p {
      font-size: 16px;
      line-height: 1.5; }
      .page--thank-you #post_checkout_successC h2 + p a, .page--thank-you #post_checkout_successC .h2 + p a {
        position: relative;
        color: #3f3f3f;
        padding-right: 33px;
        padding-left: 30px; }
        .page--thank-you #post_checkout_successC h2 + p a:hover, .page--thank-you #post_checkout_successC .h2 + p a:hover {
          text-decoration: none; }
        .page--thank-you #post_checkout_successC h2 + p a:after, .page--thank-you #post_checkout_successC .h2 + p a:after {
          content: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/printer.png?v=8565515257835409290);
          position: absolute;
          top: 2px;
          right: 0; }
      .page--thank-you #post_checkout_successC h2 + p span, .page--thank-you #post_checkout_successC .h2 + p span {
        display: inline-block;
        padding-left: 30px;
        font-weight: 700;
        text-transform: uppercase; }
        .page--thank-you #post_checkout_successC h2 + p span:first-child, .page--thank-you #post_checkout_successC .h2 + p span:first-child {
          padding-left: 0; }
.page--thank-you #post_checkout_successB {
  padding-top: 56px; }
  @media screen and (min-width: 767px) and (max-width: 999px) {
    .page--thank-you #post_checkout_successB .small--one-whole {
      width: 50%; } }
  .page--thank-you #post_checkout_successB h2, .page--thank-you #post_checkout_successB .h2 {
    font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 30px;
    line-height: 33px;
    font-weight: 400;
    padding-bottom: 24px; }
  .page--thank-you #post_checkout_successB p {
    font-size: 21px;
    line-height: 1.285714; }
    .page--thank-you #post_checkout_successB p b {
      /*font-variant: small-caps; */
      text-transform: uppercase;
      font-size: 15px; }
      @media screen and (min-width: 480px) and (max-width: 767px) {
        .page--thank-you #post_checkout_successB p b {
          display: block; } }
  .page--thank-you #post_checkout_successB .cs_forums p {
    padding-left: 121px;
    padding-top: 15px;
    padding-right: 20px;
    min-height: 83px;
    background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icon_text_bubble.png?v=8748993952431364502) no-repeat left center; }
  .page--thank-you #post_checkout_successB .cs_instagram p {
    margin-top: 9px;
    padding-left: 98px;
    padding-top: 5px;
    min-height: 75px;
    background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icon_instagram.png?v=15419039483264603145) no-repeat left center; }
.page--thank-you .content-column .section {
  padding-top: 0; }
.page--thank-you .content-column .section:nth-of-type(1) {
  display: none; }
.page--thank-you .content-column .section:nth-of-type(2) .content-box:nth-of-type(1) {
  border-bottom: none; }
  .page--thank-you .content-column .section:nth-of-type(2) .content-box:nth-of-type(1) .content-box__row:nth-of-type(2) {
    /*          display: none; */ }
.page--thank-you .content-column .section:nth-of-type(2) .content-box:nth-of-type(2) .content-box__row:nth-of-type(1) {
  padding-bottom: 1.0em; }
.page--thank-you .order-summary--is-collapsed {
  display: block; }
  @media screen and (max-width: 999px) {
    .page--thank-you .order-summary--is-collapsed {
      height: auto;
      margin-top: 45px; } }

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note, .blog-header #mc_embed_signup div.mce_inline_error,
.errors {
  border-radius: 3px;
  padding: 6px 12px;
  margin: 15px 0;
  border: 1px solid transparent;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  text-align: left; }
  .note ul, .blog-header #mc_embed_signup div.mce_inline_error ul,
  .note ol,
  .blog-header #mc_embed_signup div.mce_inline_error ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0; }
  .note li:last-child, .blog-header #mc_embed_signup div.mce_inline_error li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p, .blog-header #mc_embed_signup div.mce_inline_error p,
  .errors p {
    margin-bottom: 0; }
  .note.qty-error, .blog-header #mc_embed_signup div.qty-error.mce_inline_error, .note.wishlist-error, .blog-header #mc_embed_signup div.wishlist-error.mce_inline_error, .note.wishlist-success, .blog-header #mc_embed_signup div.wishlist-success.mce_inline_error,
  .errors.qty-error,
  .errors.wishlist-error,
  .errors.wishlist-success {
    clear: both; }

.note, .blog-header #mc_embed_signup div.mce_inline_error {
  border-color: #2f292b; }

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

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

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

/*============================================================================
  #Cart Page
==============================================================================*/
#cart {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 1em;
  line-height: 1.142857;
  color: #443f3f; }
  #cart input,
  #cart textarea,
  #cart select {
    color: #443f3f; }
  #cart .btn, #cart .btn--secondary, #cart .iWishAdd,
  #cart .iWishCartAdd, #cart .iwishRemoveBtn, #cart .iwishBuyBtn {
    color: #fff; }

.cart__row {
  position: relative;
  margin-top: 15px;
  padding-top: 10px; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }

.cart-table {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400; }
  @media screen and (max-width: 767px) {
    .cart-table {
      border-bottom: 1px solid #2f292b; } }
  .cart-table th {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 39px;
    color: #443f3f;
    text-transform: uppercase;
    border: none;
    border-bottom: 2px solid #2f292b;
    padding: 0 15px; }
  .cart-table td {
    padding: 15px 15px 30px;
    border: none;
    border-bottom: 1px solid #2f292b;
    vertical-align: top; }
    @media screen and (max-width: 767px) {
      .cart-table td {
        border-bottom: none;
        padding: 10px; } }
    .cart-table td p.small {
      margin: 10px 0 12px; }
    .cart-table td .small {
      font-size: 12px;
      line-height: 1.0;
      font-style: italic; }

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

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

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

.cart__remove_holder {
  text-align: center; }

.cart__remove {
  display: inline-block;
  text-transform: lowercase;
  line-height: 1.0;
  padding-top: 15px;
  font-style: normal !important; }

textarea[name="note"] {
  margin-top: 5px;
  resize: none;
  height: 123px; }

.cart__subtotal-title,
.cart__subtotal {
  display: inline-block;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: #443f3f;
  margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .cart__subtotal-title,
    .cart__subtotal {
      margin-top: 30px; } }

input[name="update"],
input[name="checkout"] {
  margin-left: 20px;
  margin-bottom: 30px; }

#shipping-calculator {
  padding-top: 29px;
  color: #2f292b; }
  #shipping-calculator h1, #shipping-calculator .h1 {
    font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 48px;
    color: #3f3f3f;
    text-transform: uppercase;
    padding-top: 0;
    margin-bottom: 5px; }
  #shipping-calculator h2, #shipping-calculator .h2 {
    color: #2f292b;
    padding-bottom: 10px; }
  #shipping-calculator label {
    display: block;
    text-transform: uppercase; }
  #shipping-calculator input[type="text"] {
    display: block;
    height: 34px;
    padding: 6px 12px;
    margin: 5px -4px 0px 0px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; }
  #shipping-calculator .shipping_text {
    padding-top: 36px; }
    #shipping-calculator .shipping_text p {
      font-size: 18px;
      line-height: 1.333;
      font-style: italic; }
      #shipping-calculator .shipping_text p a {
        color: #2f292b;
        text-decoration: underline; }

#cool_stuff {
  display: none;
  padding-top: 29px; }
  #cool_stuff h1, #cool_stuff .h1 {
    font-family: "Reem Kufi", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 48px;
    color: #3f3f3f;
    text-transform: uppercase;
    padding-top: 0.7291666em;
    margin-bottom: 0; }

#candid_widget3 {
  padding-top: 6px; }
  #candid_widget3 h1, #candid_widget3 .h1 {
    margin-bottom: 3px; }
  #candid_widget3 a {
    display: inline-block;
    font-size: 18px;
    line-height: 1.333;
    font-style: italic;
    margin: 0 0 12px; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
.ajaxcart__inner {
  border-bottom: 2px solid #3f3f3f;
  margin: 17.5px 0 10px; }

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

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

.ajaxcart__row {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #b9b6b7; }
  .ajaxcart__row p {
    margin-bottom: 0; }

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

.ajaxcart__remove {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  vertical-align: middle; }

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

.ajaxcart__product-name {
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 700; }

.ajaxcart__product-meta {
  font-size: 15px;
  line-height: 1.6; }

.ajaxcart__product-price,
.ajaxcart__product-qty {
  display: inline-block;
  font-size: 12px;
  line-height: 2.0;
  vertical-align: middle;
  margin-top: 2px; }

.ajaxcart__subtotal {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px; }

.ajaxcart__continue_shopping {
  margin-top: 15px; }

.ajaxcart__footer .additional_checkout_buttons .additional-checkout-button--apple-pay {
  margin-top: 15px; }

/*================ Quantity Selectors ================*/
label.quantity-selector {
  display: inline-block; }

.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 2px 25px;
    margin: 0;
    border: solid 1px #cecece;
    font-size: 14px; }

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

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0;
  border-left: 1px solid #cecece; }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0;
  border-right: 1px solid #cecece; }

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

.ajaxcart__qty-num {
  border-color: #7c7879;
  color: #3f3f3f; }

.ajaxcart__qty-adjust {
  color: #3f3f3f; }

.ajaxcart__qty--plus {
  border-color: #7c7879; }

.ajaxcart__qty--minus {
  border-color: #7c7879; }

.ajaxcart__qty--remove {
  width: 24px;
  height: 24px;
  background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/icon-trash.png?v=162551353091775647) no-repeat center 2px;
  padding: 0; }

.candid-zoom-overlay-footer, .candid-zoom-overlay-footer-mobile {
  font-weight: 500 !important; }

/* CANDID WALL */
.template-page-candidwall .rte p {
  font-size: 12px;
  padding: 0 30px; }
.template-page-candidwall .candid-wall-load-more {
  margin: 20px 70px; }
  @media screen and (max-width: 767px) {
    .template-page-candidwall .candid-wall-load-more {
      margin: 20px 10px; } }
.template-page-candidwall .candid-wall-cell {
  border: 1px solid #ddd;
  text-align: center; }
  .template-page-candidwall .candid-wall-cell img {
    height: 100% !important;
    width: auto !important;
    max-width: none;
    /*min-width:100%;*/ }
  .template-page-candidwall .candid-wall-cell.ious-portrait img {
    width: 100% !important;
    height: auto !important; }
.template-page-candidwall #candid-tag-nav {
  background: #3f3f3f;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  margin: 30px 0; }
  .template-page-candidwall #candid-tag-nav ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .template-page-candidwall #candid-tag-nav ul li {
      display: inline-block; }
      @media screen and (max-width: 767px) {
        .template-page-candidwall #candid-tag-nav ul li {
          width: 100%;
          padding: 7.5px 0; } }
      .template-page-candidwall #candid-tag-nav ul li a {
        color: #fff;
        text-transform: uppercase;
        font-size: 12px;
        padding: 15px;
        font-family: "Source Sans Pro", Arial, sans-serif;
        letter-spacing: 1px; }
        .template-page-candidwall #candid-tag-nav ul li a.c-active {
          font-style: italic; }
.template-page-candidwall #candid-overlay #candid-overlay-share .candid-share {
  text-align: center; }
.template-page-candidwall #candid-overlay #candid-overlay-share div.candid-share:before {
  display: none; }
.template-page-candidwall #candid-overlay #candid-overlay-share .candid-share a {
  display: inline-block;
  margin: 5px; }
.template-page-candidwall #candid-overlay #candid-overlay-share .candid-share a:hover {
  opacity: 0.7; }
.template-page-candidwall #candid-overlay #candid-overlay-share .candid-share img {
  width: 36px;
  height: auto;
  border-radius: 36px;
  border: 1px solid #454545; }
.template-page-candidwall #candid-overlay .gallery-container {
  display: none; }
@media only screen and (max-width: 1100px) {
  .template-page-candidwall #candid-overlay.ct-hSlider #candid-overlay-caption,
  .template-page-candidwall #candid-overlay.ct-hSlider #candid-overlay-share {
    margin-left: 0; }
  .template-page-candidwall #candid-overlay #candid-overlay-share .candid-share {
    margin-left: 10px; }
  .template-page-candidwall #candid-overlay #candid-overlay-caption {
    padding: 10px 30px; }
  .template-page-candidwall .ct-urban .candid-wall-cell {
    width: 49%;
    padding-top: 49%; }
  .template-page-candidwall .candid-wall-overlay, .template-page-candidwall .candid-wall-overlay-text {
    display: none; }
  .template-page-candidwall .candid-wall-cell:hover .candid-wall-overlay {
    opacity: 0; }
  .template-page-candidwall .candid-wall-cell:hover .candid-wall-overlay-text {
    display: none; }
  .template-page-candidwall #candid-overlay .candid-next, .template-page-candidwall #candid-overlay .candid-prev {
    margin-top: 45%; }
  .template-page-candidwall #candid-overlay {
    border: 1px solid #fff;
    overflow-y: scroll; }
  .template-page-candidwall #candid-overlay .candid-shortcuts {
    display: none; }
  .template-page-candidwall #candid-overlay .overlay-img-container:hover .candid-image-overlay, .template-page-candidwall #candid-overlay.ct-revolve .candid-image-overlay {
    display: none; }
  .template-page-candidwall #candid-overlay .wrapper, .template-page-candidwall #candid-overlay.ct-hSlider .wrapper, .template-page-candidwall #candid-overlay.ct-revolve .wrapper, .template-page-candidwall #candid-overlay.ct-minimal .wrapper {
    position: static;
    width: auto;
    height: auto;
    margin: auto;
    top: auto;
    left: auto;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: none; }
  .template-page-candidwall #candid-overlay .inner {
    width: auto;
    height: auto;
    position: static;
    top: auto;
    left: auto;
    margin: auto;
    background-color: white; }
  .template-page-candidwall #candid-overlay .wrapper .controls {
    position: absolute;
    right: 20px;
    top: 20px;
    left: 20px;
    width: auto;
    overflow: visible;
    pointer-events: none; }
  .template-page-candidwall #candid-overlay .candid-close, .template-page-candidwall #candid-overlay .candid-prev, .template-page-candidwall #candid-overlay .candid-next, .template-page-candidwall #candid-progress .candid-close {
    opacity: 0.6; }
  .template-page-candidwall #candid-overlay .candid-prev {
    left: -15px; }
  .template-page-candidwall #candid-overlay .candid-next {
    right: -15px; }
  .template-page-candidwall #candid-overlay .candid-close, .template-page-candidwall #candid-overlay.ct-minimal .candid-close {
    top: -15px;
    right: -15px; }
  .template-page-candidwall #candid-overlay .wrapper .controls div {
    overflow: visible; }
  .template-page-candidwall #candid-overlay .candid-by-container {
    padding: 30px 5px 0 0;
    font-size: smaller; }
  .template-page-candidwall #candid-overlay .gallery-container {
    height: 40px;
    position: relative;
    text-align: left; }
  .template-page-candidwall #overlay-profile-img-link, .template-page-candidwall div.name, .template-page-candidwall p.user-bio, .template-page-candidwall .wrapper.ct-revolve #overlay-profile-img-link, .template-page-candidwall .wrapper.ct-revolve div.name, .template-page-candidwall .wrapper.ct-revolve p.user-bio {
    display: none; }
  .template-page-candidwall #candid-overlay .overlay-img-container, .template-page-candidwall #candid-overlay.ct-revolve .overlay-img-container, .template-page-candidwall #candid-overlay.ct-minimal .overlay-img-container {
    float: none;
    position: relative;
    height: auto;
    overflow: hidden;
    width: 100%;
    padding: 0; }
  .template-page-candidwall #candid-overlay-img, .template-page-candidwall #candid-overlay.ct-revolve #candid-overlay-img {
    position: static;
    height: auto;
    width: 100%;
    max-height: none; }
  .template-page-candidwall #candid-overlay.ct-revolve #candid-overlay-img-link {
    height: initial; }
  .template-page-candidwall #candid-overlay .profile-wrap, .template-page-candidwall #candid-overlay.ct-hSlider .profile-wrap, .template-page-candidwall #candid-overlay.ct-revolve .profile-wrap, .template-page-candidwall #candid-overlay.ct-minimal .profile-wrap {
    width: 100%;
    height: auto;
    float: none; }
  .template-page-candidwall #candid-overlay-links {
    padding-top: 0;
    max-height: none; }
  .template-page-candidwall #candid-overlay.ct-hSlider #candid-overlay-link-items .item, .template-page-candidwall #candid-overlay.ct-minimal #candid-overlay-link-items .item {
    display: block;
    max-width: none;
    width: auto; }
  .template-page-candidwall .candid-image-btn img, .template-page-candidwall #candid-overlay-link-items .item:only-child .candid-image-btn img {
    max-width: 120px;
    max-height: 150px; }
  .template-page-candidwall #candid-overlay-links .links-heading {
    margin-bottom: 5px; }
  .template-page-candidwall .product-label {
    margin: 5px 20px; }
  .template-page-candidwall .candid-zoom-overlay {
    font-size: 40px;
    line-height: 30px; }
  .template-page-candidwall .candid-zoom-overlay-footer {
    display: none; }
  .template-page-candidwall .candid-zoom-overlay-footer-mobile {
    display: block;
    padding: 0; } }
@media only screen and (max-width: 500px) {
  .template-page-candidwall #candid-overlay #candid-overlay-caption {
    padding: 10px 15px; } }

/* GIFT CARD REDEEM */
body.template-page-gift-card-check .main-content {
  min-height: 300px; }

#gc_check_balance {
  position: relative; }
  #gc_check_balance input {
    float: left;
    padding-top: 7px;
    padding-bottom: 7px;
    width: 225px; }
  #gc_check_balance input[type="submit"] {
    width: auto; }
  #gc_check_balance.loading input[type="submit"] {
    display: none; }
  #gc_check_balance.loading:before {
    content: "\f1ce";
    font-family: "FontAwesome";
    font-size: 20px;
    position: absolute;
    bottom: 0;
    left: 235px;
    animation: fa-spin 2s infinite linear; }
  #gc_check_balance:after {
    content: '';
    display: block;
    clear: both; }

#gc_balance {
  clear: both;
  margin-top: 15px;
  border: 1px solid;
  padding: 0.5em; }
  #gc_balance.note, .blog-header #mc_embed_signup div#gc_balance.mce_inline_error {
    background: #eeeeee; }
  #gc_balance p {
    margin-bottom: 0; }

/*============================================================================
  #Values Pages
==============================================================================*/
#values-nav-notice {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-weight: 400 !important; }
  @media screen and (max-width: 767px) {
    #values-nav-notice {
      text-align: left; } }
  #values-nav-notice li {
    display: inline-block;
    text-transform: uppercase;
    margin: 0;
    padding: 0; }
    #values-nav-notice li.values-nav__title {
      font-family: 'Reem Kufi', sans-serif;
      color: #00646c;
      text-transform: uppercase;
      padding: 10px;
      font-size: 16px; }
      @media screen and (max-width: 820px) {
        #values-nav-notice li.values-nav__title {
          padding-left: 15px;
          padding-right: 15px; } }
      @media screen and (max-width: 767px) {
        #values-nav-notice li.values-nav__title {
          width: 100%;
          padding-bottom: 0;
          text-align: left;
          padding-left: 0;
          padding-right: 0; } }
    #values-nav-notice li.values-nav__item--active a {
      font-weight: 700; }
    #values-nav-notice li a {
      display: block;
      padding: 10px;
      font-family: 'Source Sans Pro', sans-serif;
      color: #333333;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 13px;
      font-weight: 400 !important; }
      @media screen and (max-width: 820px) {
        #values-nav-notice li a {
          padding-left: 15px;
          padding-right: 15px; } }
      @media screen and (max-width: 767px) {
        #values-nav-notice li a {
          letter-spacing: 1px;
          font-size: 12px;
          padding: 10px 15px 20px; } }
      @media screen and (max-width: 450px) {
        #values-nav-notice li a {
          font-size: 10px;
          letter-spacing: 0; } }

.template-page-values #values-nav {
  background: #ebebeb;
  width: 100%;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .template-page-values #values-nav {
      text-align: left; } }
  .template-page-values #values-nav li {
    display: inline-block;
    text-transform: uppercase;
    margin: 0;
    padding: 0; }
    .template-page-values #values-nav li.values-nav__title {
      font-family: 'Reem Kufi', sans-serif;
      color: #00646c;
      text-transform: uppercase;
      padding: 20px 30px;
      font-size: 21px; }
      @media screen and (max-width: 820px) {
        .template-page-values #values-nav li.values-nav__title {
          padding-left: 15px;
          padding-right: 15px; } }
      @media screen and (max-width: 767px) {
        .template-page-values #values-nav li.values-nav__title {
          width: 100%;
          padding-bottom: 0;
          text-align: left; } }
    .template-page-values #values-nav li.values-nav__item--active a {
      font-weight: 700; }
    .template-page-values #values-nav li a {
      display: block;
      padding: 20px 30px;
      font-family: 'Source Sans Pro', sans-serif;
      color: #333333;
      text-transform: uppercase;
      letter-spacing: 2px; }
      @media screen and (max-width: 820px) {
        .template-page-values #values-nav li a {
          padding-left: 15px;
          padding-right: 15px; } }
      @media screen and (max-width: 767px) {
        .template-page-values #values-nav li a {
          letter-spacing: 1px;
          font-size: 12px;
          padding: 10px 15px 20px; } }
      @media screen and (max-width: 450px) {
        .template-page-values #values-nav li a {
          font-size: 10px;
          letter-spacing: 0; } }
.template-page-values #values-header {
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/Company-Philosophy-1.jpg?v=14722282684344619744) no-repeat center center;
  background-size: cover; }
  .template-page-values #values-header.made-in-seattle {
    background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/sun.jpg?v=11856540191216653016) no-repeat center center;
    background-size: cover; }
  .template-page-values #values-header.planet-earth {
    background: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/trail.jpg?v=12437810830081752602) no-repeat center center;
    background-size: cover; }
  @media screen and (max-width: 767px) {
    .template-page-values #values-header {
      padding-top: 60px;
      padding-bottom: 60px; } }
  .template-page-values #values-header .abstract {
    background: rgba(255, 255, 255, 0.75);
    padding: 40px 60px;
    margin-left: 150px;
    margin-right: 150px; }
    @media screen and (max-width: 767px) {
      .template-page-values #values-header .abstract {
        margin: 0;
        padding: 30px 20px 15px; } }
    .template-page-values #values-header .abstract h1, .template-page-values #values-header .abstract .h1 {
      font-family: 'Reem Kufi', sans-serif;
      color: #c12726;
      text-transform: uppercase;
      font-size: 45px;
      letter-spacing: 5px;
      padding: 0;
      margin: 0; }
      @media screen and (max-width: 450px) {
        .template-page-values #values-header .abstract h1, .template-page-values #values-header .abstract .h1 {
          font-size: 30px; } }
    .template-page-values #values-header .abstract .divider {
      width: 75%;
      margin: 40px auto;
      background: #333;
      height: 4px; }
    .template-page-values #values-header .abstract p {
      text-align: left;
      font-family: 'Source Sans Pro', sans-serif;
      font-size: 18px;
      line-height: 1.45;
      color: #333333; }
.template-page-values #values-content {
  font-size: 18px;
  line-height: 1.45;
  color: #767676;
  padding-bottom: 60px;
  padding-top: 10px; }
  .template-page-values #values-content h2, .template-page-values #values-content .h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #333333;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-top: 30px; }
  .template-page-values #values-content img {
    max-width: 100%;
    margin: 30px auto auto auto; }
  .template-page-values #values-content .video_wrapper {
    margin-top: 45px; }
    .template-page-values #values-content .video_wrapper + h2, .template-page-values #values-content .video_wrapper + .h2 {
      margin-top: 40px; }
  .template-page-values #values-content blockquote {
    color: #00646c;
    text-align: center;
    line-height: 1.45; }
    .template-page-values #values-content blockquote .src {
      display: block;
      font-size: 14px;
      line-height: 1.45;
      color: #767676;
      text-transform: none;
      text-decoration: none; }
      .template-page-values #values-content blockquote .src:hover {
        text-decoration: underline; }

/*============================================================================
  #BOLD Compare
==============================================================================*/
.compare_no_products {
  padding: 60px 0; }
  .compare_no_products + p {
    padding-bottom: 60px; }

.prod-image img {
  max-width: 50%; }

.row-product-thumb,
.row-product-details {
  border-top: none;
  background: #fff; }
  .row-product-thumb th,
  .row-product-thumb td,
  .row-product-details th,
  .row-product-details td {
    border: none;
    position: relative; }

.row-product-to-top th,
.row-product-to-top td {
  border: none; }
.row-product-to-top .btn, .row-product-to-top .btn--secondary, .row-product-to-top .iWishAdd,
.row-product-to-top .iWishCartAdd, .row-product-to-top .iwishRemoveBtn, .row-product-to-top .iwishBuyBtn {
  margin: 1.0em 0; }

.thumb-title {
  font-size: 1.25em;
  font-weight: 700; }

.bold_compare_remove {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px; }

.bold_compare_remove span:not(.icon) {
  position: absolute;
  left: -999em; }

.row-product-details .price {
  display: block; }

.row-product-details .btn, .row-product-details .btn--secondary, .row-product-details .iWishAdd,
.row-product-details .iWishCartAdd, .row-product-details .iwishRemoveBtn, .row-product-details .iwishBuyBtn {
  margin: 1.0em 0; }

table.bold_compare_table_alt {
  position: relative; }
  table.bold_compare_table_alt thead {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff; }
    table.bold_compare_table_alt thead tr {
      display: block;
      background: #fff; }
      table.bold_compare_table_alt thead tr:after {
        *zoom: 1; }
        table.bold_compare_table_alt thead tr:after:after {
          content: '';
          display: table;
          clear: both; }
      table.bold_compare_table_alt thead tr th,
      table.bold_compare_table_alt thead tr td {
        width: 50%;
        display: block;
        float: left; }
  table.bold_compare_table_alt tbody tr:nth-of-type(1) td {
    border: none; }
  table.bold_compare_table_alt tbody tr:nth-of-type(2n+3) {
    background: #F4F4F4; }
  table.bold_compare_table_alt tbody td,
  table.bold_compare_table_alt tbody th {
    border-color: #1a1a1a;
    text-align: left; }
  @media screen and (max-width: 767px) {
    table.bold_compare_table_alt {
      display: none; } }

.row-product-availability .swatches.in-stock:before, .row-product-availability .swatches.out-of-stock:before {
  text-transform: none;
  display: block;
  font-weight: 400; }

.bold-compare-mobile-notice {
  display: none; }
  @media screen and (max-width: 767px) {
    .bold-compare-mobile-notice {
      display: block;
      margin-left: 15px;
      margin-right: 15px;
      text-align: center; } }

body .bold-compare-widget {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border: none;
  border-top: 1px solid #000;
  padding: 0.5em 0; }
  body .bold-compare-widget.bold-compare-collapsed .bold-title .title,
  body .bold-compare-widget.bold-compare-collapsed .bold-title .number {
    display: inline-block; }
  body .bold-compare-widget .bold-title {
    background: none;
    color: #fff;
    padding: 0.5em; }
    body .bold-compare-widget .bold-title .title,
    body .bold-compare-widget .bold-title .number {
      display: none; }
    body .bold-compare-widget .bold-title:after {
      right: 10px;
      top: 10px; }
  body .bold-compare-widget .bold-compared-products {
    border: none;
    width: 60%;
    margin-left: 20%;
    float: left; }
    body .bold-compare-widget .bold-compared-products:before {
      content: 'You can select up to three bags at a time for comparison.';
      color: #fff;
      display: block;
      text-align: center;
      padding-bottom: 2.0em; }
    body .bold-compare-widget .bold-compared-products .bold-compare-product {
      width: 31.333%;
      float: left;
      border: none;
      background: #fff;
      margin: 1%; }
      body .bold-compare-widget .bold-compared-products .bold-compare-product a {
        color: #337AB7;
        font-weight: 700; }
      body .bold-compare-widget .bold-compared-products .bold-compare-product img {
        max-width: 100%;
        max-height: 100%; }
  body .bold-compare-widget .bold-compare-remove {
    right: 5px; }
  body .bold-compare-widget .bold-compare-button-row {
    float: right;
    width: 20%; }
    body .bold-compare-widget .bold-compare-button-row .compare_btn {
      margin-top: 4.5em;
      padding: 10px 20px;
      height: auto;
      font-size: 20px;
      background: #000000; }
      body .bold-compare-widget .bold-compare-button-row .compare_btn:after {
        content: "\f04e";
        font-family: "FontAwesome";
        padding-left: 10px;
        font-size: 14px;
        color: #337AB7; }
    body .bold-compare-widget .bold-compare-button-row .compare_btn:hover {
      background: #231F20; }
  body .bold-compare-widget div.error {
    background: red;
    color: #fff; }
  @media screen and (max-width: 767px) {
    body .bold-compare-widget {
      display: none !important; } }

@media screen and (max-width: 767px) {
  .bold_compare_checkbox,
  .bold_compare_button {
    display: none !important; } }

.row-product-specs td {
  position: relative; }

.compare-tooltip-trigger {
  font-size: 18px; }

.compare-tooltip {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 100%;
  background: #333;
  border: 1px solid #333;
  transition: opacity 0.3s ease-in-out;
  width: 280px;
  z-index: -1;
  color: #ccc;
  padding: 15px; }
  .compare-tooltip-trigger:hover + .compare-tooltip {
    opacity: 1;
    z-index: 999; }

/*============================================================================
  #Tawk/Chat Styles
==============================================================================*/
#tawk-footer {
  position: fixed;
  bottom: 75px;
  left: 15px;
  color: #000; }
  #tawk-footer h3, #tawk-footer .h3 {
    line-height: 1;
    font-size: 20px;
    letter-spacing: 1px; }
    #tawk-footer h3 span, #tawk-footer .h3 span {
      display: block;
      font-size: 30px;
      font-weight: 700; }
  #tawk-footer .btn, #tawk-footer .btn--secondary, #tawk-footer .iWishAdd,
  #tawk-footer .iWishCartAdd, #tawk-footer .iwishRemoveBtn, #tawk-footer .iwishBuyBtn {
    background: #6283b0;
    border-radius: 5px;
    min-width: 180px;
    font-weight: 300;
    text-transform: none;
    font-size: 15px; }

.tawk-trigger.admin-setting-auto.time-setting-disabled {
  display: none !important; }
.tawk-trigger.admin-setting-auto.time-setting-enabled {
  display: block !important; }
  .top-bar .tawk-trigger.admin-setting-auto.time-setting-enabled {
    display: inline-block !important; }
.tawk-trigger.admin-setting-disabled {
  display: none !important; }
.tawk-trigger.admin-setting-enabled {
  display: block !important; }
  .top-bar .tawk-trigger.admin-setting-enabled {
    display: inline-block !important; }
@media screen and (max-width: 767px) {
  .tawk-trigger {
    padding-left: 15px; } }
.tawk-trigger img {
  width: 80px; }
body[id$=-checkout] .main-content .tawk-trigger, #checkout .main-content .tawk-trigger {
  position: absolute;
  margin-top: -15px;
  margin-left: -15px; }
  @media screen and (max-width: 767px) {
    body[id$=-checkout] .main-content .tawk-trigger, #checkout .main-content .tawk-trigger {
      margin-left: -25px;
      margin-top: -20px; }
      body[id$=-checkout] .main-content .tawk-trigger img, #checkout .main-content .tawk-trigger img {
        width: 50px; } }
#post_checkout_successA .tawk-trigger {
  position: absolute;
  left: 30px;
  top: 45px; }
  @media screen and (max-width: 767px) {
    #post_checkout_successA .tawk-trigger {
      position: relative;
      top: auto;
      left: auto;
      display: block;
      margin-bottom: 30px; }
      #post_checkout_successA .tawk-trigger img {
        width: 60px; } }

#post_checkout_successA {
  position: relative; }

.bxslider .caption,
.side-by-side .caption {
  padding: 7.5px 15px 15px; }
  .bxslider .caption h2, .bxslider .caption .h2, .bxslider .caption p,
  .side-by-side .caption h2,
  .side-by-side .caption .h2,
  .side-by-side .caption p {
    color: #2f292b; }
  .bxslider .caption h2, .bxslider .caption .h2,
  .side-by-side .caption h2,
  .side-by-side .caption .h2 {
    font-size: 30px; }
  .bxslider .caption p,
  .side-by-side .caption p {
    font-size: 16px; }

@media screen and (min-width: 767px) {
  .bx-wrapper li,
  .side-by-side li {
    padding-bottom: 0 !important; }
  .bx-wrapper .caption,
  .side-by-side .caption {
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    padding: 30px 60px; }
    .bx-wrapper .caption.white,
    .side-by-side .caption.white {
      color: #fff; }
      .bx-wrapper .caption.white h2, .bx-wrapper .caption.white .h2, .bx-wrapper .caption.white p,
      .side-by-side .caption.white h2,
      .side-by-side .caption.white .h2,
      .side-by-side .caption.white p {
        color: #fff !important; }
    .bx-wrapper .caption.black,
    .side-by-side .caption.black {
      color: #000; }
      .bx-wrapper .caption.black h2, .bx-wrapper .caption.black .h2, .bx-wrapper .caption.black p,
      .side-by-side .caption.black h2,
      .side-by-side .caption.black .h2,
      .side-by-side .caption.black p {
        color: #000 !important; }
    .bx-wrapper .caption.top-center,
    .side-by-side .caption.top-center {
      text-align: center;
      width: 50%;
      left: 50%;
      margin-left: -25%; }
    .bx-wrapper .caption.top-right,
    .side-by-side .caption.top-right {
      right: 0;
      text-align: right; }
    .bx-wrapper .caption.bottom-left,
    .side-by-side .caption.bottom-left {
      top: auto;
      bottom: 0; }
    .bx-wrapper .caption.bottom-center,
    .side-by-side .caption.bottom-center {
      text-align: center;
      width: 50%;
      left: 50%;
      margin-left: -25%;
      top: auto;
      bottom: 0; }
    .bx-wrapper .caption.bottom-right,
    .side-by-side .caption.bottom-right {
      right: 0;
      left: auto;
      text-align: right;
      top: auto;
      bottom: 0; }
    .bx-wrapper .caption.center-left,
    .side-by-side .caption.center-left {
      text-align: left;
      top: 50%;
      margin-top: -80px; }
    .bx-wrapper .caption.center-center,
    .side-by-side .caption.center-center {
      text-align: center;
      width: 50%;
      left: 50%;
      margin-left: -25%;
      top: 50%;
      margin-top: -80px; }
    .bx-wrapper .caption.center-right,
    .side-by-side .caption.center-right {
      right: 0;
      left: auto;
      top: 50%;
      margin-top: -80px;
      text-align: right; }
    .bx-wrapper .caption h2, .bx-wrapper .caption .h2, .bx-wrapper .caption p,
    .side-by-side .caption h2,
    .side-by-side .caption .h2,
    .side-by-side .caption p {
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); }
    .bx-wrapper .caption h2, .bx-wrapper .caption .h2,
    .side-by-side .caption h2,
    .side-by-side .caption .h2 {
      font-size: 44px; }
    .bx-wrapper .caption p,
    .side-by-side .caption p {
      font-size: 20px; }
  .bx-wrapper .one-third .caption.center-center,
  .side-by-side .one-third .caption.center-center {
    width: 90%;
    left: 0%;
    margin-left: 5%; } }

@media screen and (min-width: 767px) {
  .side-by-side .grid__item {
    position: relative;
    height: 80vh;
    max-height: 450px; }
    .side-by-side .grid__item h2, .side-by-side .grid__item .h2 {
      line-height: 1;
      margin-bottom: .3em; }
    .side-by-side .grid__item a {
      width: 100%;
      height: 100%;
      display: inline-block; }
    .side-by-side .grid__item img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .side-by-side .grid__item .caption {
      margin-top: 0;
      transform: translateY(-50%); } }
.side-by-side .grid__item.bg-black {
  background-color: #000; }
  .side-by-side .grid__item.bg-black .caption.white h2, .side-by-side .grid__item.bg-black .caption.white .h2, .side-by-side .grid__item.bg-black .caption.white p {
    color: white !important; }
.side-by-side .grid__item.bg-dark {
  background-color: #3f3f3f; }
  .side-by-side .grid__item.bg-dark .caption.white h2, .side-by-side .grid__item.bg-dark .caption.white .h2, .side-by-side .grid__item.bg-dark .caption.white p {
    color: white !important; }
.side-by-side .grid__item.bg-beige {
  background-color: beige; }
.side-by-side .grid__item.bg-white {
  background-color: #fff; }

/*============================================================================
  #Footer Drawer for MC Signup Styles
==============================================================================*/
.template-index #mc_newsletter {
  z-index: 999;
  position: fixed;
  top: 100%;
  bottom: auto;
  left: 0;
  width: 100%;
  background: #3f3f3f;
  padding: 10px;
  box-sizing: border-box;
  transform: translateY(-45px); }
  .template-index #mc_newsletter.hidden {
    display: none; }
  .template-index #mc_newsletter .mc_newsletter_close {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff; }
  .template-index #mc_newsletter.bottom-drawer-open {
    transform: translateY(0px);
    top: auto;
    bottom: 0;
    padding-bottom: 30px;
    padding-top: 30px;
    -webkit-box-shadow: 0px -4px 28px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px -4px 28px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -4px 28px 1px rgba(0, 0, 0, 0.2); }
  .template-index #mc_newsletter .mc_newsletter_trigger {
    font-weight: 300;
    display: block;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin-bottom: 15px;
    color: #fff; }
    .template-index #mc_newsletter .mc_newsletter_trigger:hover {
      transform: translateY(-2px);
      color: #fff; }
  .template-index #mc_newsletter .mc_newsletter_offscreen {
    max-width: 320px;
    position: relative;
    margin: 0px auto;
    margin-bottom: 15px; }
  .template-index #mc_newsletter h3, .template-index #mc_newsletter .h3 {
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: none;
    border: none;
    color: #fff; }
    .template-index #mc_newsletter h3:hover, .template-index #mc_newsletter .h3:hover {
      color: #fff !important; }
    @media screen and (min-width: 1200px) {
      .template-index #mc_newsletter h3, .template-index #mc_newsletter .h3 {
        font-size: 15px;
        line-height: 18px; } }
    @media screen and (max-width: 767px) {
      .template-index #mc_newsletter h3, .template-index #mc_newsletter .h3 {
        text-align: left; } }
  .template-index #mc_newsletter input {
    width: 100%;
    /*max-width: 171px; */
    padding: 6px; }
    .template-index #mc_newsletter input[type="email"] {
      background: #fff; }
    .template-index #mc_newsletter input.btn, .template-index #mc_newsletter input.btn--secondary, .template-index #mc_newsletter input.iWishAdd,
    .template-index #mc_newsletter input.iWishCartAdd, .template-index #mc_newsletter input.iwishRemoveBtn, .template-index #mc_newsletter input.iwishBuyBtn {
      width: auto;
      position: absolute;
      right: 0; }
  .template-index #mc_newsletter div.mce_inline_error,
  .template-index #mc_newsletter #mce-error-response,
  .template-index #mc_newsletter #mce-success-response {
    clear: both;
    padding: 7.5px 0;
    font-size: 12px;
    line-height: 15px;
    font-weight: bold;
    text-align: left; }
  .template-index #mc_newsletter div.mce_inline_error,
  .template-index #mc_newsletter #mce-error-response {
    color: #ed1c24; }
  .template-index #mc_newsletter #mce-success-response {
    color: #fff; }

/* SOME MOBILE THINGS */
@media screen and (max-width: 991px) {
  .site-header__logo {
    padding: 15px 45px 0 45px !important;
    margin-bottom: 15px !important; }
    .site-header__logo img {
      height: 30px;
      width: auto;
      margin: 0px auto; }

  #menu_toggle {
    position: absolute;
    float: none;
    left: 15px;
    background: transparent;
    border: none;
    padding: 4px 0;
    margin: 0;
    margin-top: -46px; }
    #menu_toggle .icon {
      color: #2f292b; }

  #checkout-nav {
    position: absolute;
    float: none;
    right: 15px;
    padding: 0;
    margin-top: 0px; }

  .mobile-nav__search {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    border-bottom: none !important; }
    .mobile-nav__search.show {
      height: 36px;
      transition: height 0.3s ease-in-out; }

  .site-header__search {
    padding-right: 0;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 999;
    transition: left 0.3s ease-in-out;
    max-width: none; }
    .site-header__search.show {
      left: 0; }
    .site-header__search .search-bar .input-group-field {
      padding-left: 40px; }

  .abbr-nav {
    list-style: none;
    background: #333;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center; }
    .abbr-nav li {
      display: inline-block;
      text-align: center;
      padding: 0 10px; }
      .abbr-nav li a {
        display: block;
        color: #fff;
        text-transform: uppercase;
        font-weight: 400;
        font-family: "Source Sans Pro",Arial,sans-serif;
        padding: 10px 5px; }
    .abbr-nav:after {
      content: "";
      clear: both;
      display: block; } }
@media screen and (max-width: 767px) {
  .site-header__logo {
    padding: 15px 45px 0 45px !important;
    margin-bottom: 15px !important; }
    .site-header__logo img {
      height: 30px;
      width: auto; }

  #checkout-nav {
    position: absolute;
    float: none;
    right: 5px;
    padding: 0;
    margin-top: 8px; } }
@media (max-width: 400px) {
  .abbr-nav li a span {
    display: none; } }
@media (max-width: 360px) {
  .site-header__logo img {
    height: 21px;
    margin-top: 2px; }

  .search-trigger {
    /*display:none;*/ } }
.template-list-collections .wrapper {
  padding: 0; }
.template-list-collections #list-of-collections {
  padding: 0;
  list-style: none;
  margin: 0; }
  .template-list-collections #list-of-collections li {
    border-bottom: 1px solid #ccc; }
    .template-list-collections #list-of-collections li a {
      display: block;
      padding: 15px; }
      .template-list-collections #list-of-collections li a:hover {
        background: #efefef; }

/*============================================================================
  #Homepage Featured PRoducts
==============================================================================*/
.featured_products {
  padding: 30px; }
  .featured_products .grid__item {
    padding-left: 0;
    border-top: 1px solid #ddd; }

/*============================================================================
  #In Production Tool Tip - CCRB: 12/07/17
==============================================================================*/
#product-actions-form {
  position: relative; }
  #product-actions-form .swatches.out-of-stock:before {
    padding-right: 20px; }

.trigger-tooltip.trigger-in-production {
  display: block;
  background: #000;
  color: #fff;
  width: 16px;
  line-height: 16px;
  border-radius: 16px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  float: right;
  margin-top: -20px; }
  .trigger-tooltip.trigger-in-production:hover {
    opacity: 0.7; }

.tooltip.in-production {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  width: 90%;
  left: 10%;
  padding: 30px 15px 15px;
  z-index: 1; }
  .tooltip.in-production .close {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-weight: bold;
    text-transform: lowercase;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer; }
    .tooltip.in-production .close:hover {
      opacity: 0.7; }
    .tooltip.in-production .close:before {
      content: 'x';
      color: #fff; }
    .tooltip.in-production .close span {
      position: absolute;
      left: -9999em; }

#live-search {
  padding-bottom: 30px; }
  #live-search label {
    text-transform: uppercase;
    font-weight: 700; }
  #live-search input[type=text] {
    max-width: 100%;
    width: 400px; }

.bold_compare_checkbox {
  padding-top: 15px; }

/************************* RECENT VIEW ***********************/
#xtalon {
  display: none; }
  @media (max-width: 767px) {
    #xtalon {
      display: block; } }

#talon-product-view-area {
  left: auto;
  position: relative;
  z-index: 99999999; }
  #talon-product-view-area.talon-hidden {
    display: none; }
  #talon-product-view-area #talon-section-title {
    cursor: pointer;
    color: #2f292b;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Source Sans Pro",Arial,sans-serif;
    padding-top: 7.5px;
    display: block; }
    #talon-product-view-area #talon-section-title:hover {
      color: #ed1c24; }
    #talon-product-view-area #talon-section-title:after {
      content: " \f0d7 ";
      font-family: "FontAwesome";
      font-size: 90%;
      padding-right: 5px; }
    #talon-product-view-area #talon-section-title.open:after {
      content: " \f0d8 "; }
    #talon-product-view-area #talon-section-title + #talon-product-group-wrapper {
      padding: 7.5px;
      border: 1px solid #2f292b;
      background: #efefef;
      position: absolute;
      left: -999em;
      z-index: 9999;
      text-align: left;
      display: none; }
      #talon-product-view-area #talon-section-title + #talon-product-group-wrapper ul {
        list-style: none;
        margin: 0; }
    #talon-product-view-area #talon-section-title.open + #talon-product-group-wrapper {
      display: block;
      left: auto;
      right: 0; }

.materials-details {
  padding: 30px 30px 0;
  background: #efefef; }
  .materials-details .grid__item {
    padding-bottom: 30px; }

.usa-alt {
  color: #fff;
  font-weight: bold;
  line-height: 1; }
  .usa-alt span {
    font-size: 70%; }

/* GDPR */
#gdpr-optin {
  text-align: left;
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 0.9em; }
  #gdpr-optin input[type=checkbox] {
    position: absolute;
    top: 18px; }
  #gdpr-optin label {
    padding-left: 30px;
    display: block; }

.gdpr-error {
  color: #d02e2e;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding-left: 30px; }
  .gdpr-error.shown {
    display: block;
    opacity: 1; }

/* CCTK: CART */
.template-cart .shipping-notice {
  font-size: 16px;
  padding-top: 14px; }
  .template-cart .shipping-notice p {
    margin: 0;
    padding: 6px 0 0; }
.template-cart .cart-title,
.template-cart .shipping-notice {
  width: auto; }
.template-cart h1, .template-cart .h1,
.template-cart h3.crossselltitle,
.template-cart .crossselltitle.h3 {
  text-align: left;
  font-size: 30px;
  font-family: "Reem Kufi","HelveticaNeue","Helvetica Neue",Helvetica,sans-serif;
  font-weight: 400; }
.template-cart .cross-sell * {
  text-align: left; }
.template-cart #cross-sell {
  clear: both;
  margin-top: 60px;
  margin-bottom: 60px; }
.template-cart #candid_widget3 {
  margin-bottom: 15px; }
  .template-cart #candid_widget3 h1 + a, .template-cart #candid_widget3 .h1 + a {
    text-align: left;
    display: block; }
.template-cart .iWishCartAdd {
  float: none;
  color: #337ab7 !important;
  background: none;
  text-transform: none;
  font-weight: 400;
  padding: 0;
  margin: 0;
  width: auto; }
.template-cart .line-item-price {
  font-size: 16px;
  font-weight: bold; }
.template-cart .cart-summary {
  background: #3f3f3f;
  color: #fff;
  margin: 40px 0 0 15px;
  padding: 15px; }
  .template-cart .cart-summary h2, .template-cart .cart-summary .h2 {
    color: #fff;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
  .template-cart .cart-summary .cart__subtotal-title, .template-cart .cart-summary .cart__subtotal {
    color: #fff; }
  .template-cart .cart-summary input[name="update"], .template-cart .cart-summary input[name="checkout"] {
    width: 100%;
    background: #fff;
    color: #3f3f3f !important;
    margin: 0 0 45px 0;
    font-size: 24px;
    line-height: 1.5; }
  .template-cart .cart-summary label {
    font-size: 16px;
    line-height: 1.5; }
  .template-cart .cart-summary textarea {
    min-height: 214px; }
.template-cart .cart-summary-note {
  padding: 15px;
  line-height: 1.6; }
.template-cart .cart-summary-bottom {
  display: flex;
  flex-direction: column; }
  .template-cart .cart-summary-bottom .cart-summary-notes {
    order: 20; }
  .template-cart .cart-summary-bottom .cart-summary-buttons {
    order: 10; }

.template-product-pre-order .selector-wrapper.nope {
  position: absolute;
  left: -999em; }

/* CCTK ABOUT NEW */
.template-page-about-new #crew h2, .template-page-about-new #crew .h2 {
  text-align: left;
  text-transform: uppercase;
  color: #2f292b;
  font-size: 28px; }
.template-page-about-new .full-width-video .video-wrapper {
  margin-bottom: 0; }
.template-page-about-new .image-text-overlay {
  position: relative; }
  .template-page-about-new .image-text-overlay.opacity-25:before, .template-page-about-new .image-text-overlay.opacity-50:before, .template-page-about-new .image-text-overlay.opacity-75:before, .template-page-about-new .image-text-overlay.opacity-100:before {
    background: rgba(0, 0, 0, 0.25);
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0; }
  .template-page-about-new .image-text-overlay.opacity-50:before {
    background: rgba(0, 0, 0, 0.5); }
  .template-page-about-new .image-text-overlay.opacity-75:before {
    background: rgba(0, 0, 0, 0.75); }
  .template-page-about-new .image-text-overlay.opacity-100:before {
    background: #2f292b; }
  .template-page-about-new .image-text-overlay .grid__item {
    padding: 30px;
    position: relative;
    color: #fff !important; }
    @media screen and (min-width: 992px) {
      .template-page-about-new .image-text-overlay .grid__item {
        padding: 60px 45px; } }
    .template-page-about-new .image-text-overlay .grid__item + .grid__item {
      border-top: 1px solid rgba(0, 0, 0, 0.25); }
      @media screen and (min-width: 992px) {
        .template-page-about-new .image-text-overlay .grid__item + .grid__item {
          border: none; } }
    .template-page-about-new .image-text-overlay .grid__item.blank {
      padding: 0; }
    .template-page-about-new .image-text-overlay .grid__item.text-dark {
      color: #2f292b !important; }
      .template-page-about-new .image-text-overlay .grid__item.text-dark h2, .template-page-about-new .image-text-overlay .grid__item.text-dark .h2 {
        color: #2f292b !important; }
      .template-page-about-new .image-text-overlay .grid__item.text-dark a {
        color: #2f292b !important; }
    .template-page-about-new .image-text-overlay .grid__item h2, .template-page-about-new .image-text-overlay .grid__item .h2 {
      font-size: 40px;
      line-height: 1;
      color: #fff !important;
      margin-bottom: 30px; }
      @media screen and (min-width: 992px) {
        .template-page-about-new .image-text-overlay .grid__item h2, .template-page-about-new .image-text-overlay .grid__item .h2 {
          font-size: 50px;
          line-height: 1.15; } }
    .template-page-about-new .image-text-overlay .grid__item p {
      font-size: 18px;
      line-height: 1.75;
      font-family: "Source Sans Pro",Arial,sans-serif; }
    .template-page-about-new .image-text-overlay .grid__item a {
      color: #fff;
      text-decoration: underline; }

/*============================================================================
  #Wishlist Pages
==============================================================================*/
.iWishAdd,
.iWishCartAdd {
  clear: both;
  float: right;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 12px;
  color: #fff !important;
  text-decoration: none !important;
  margin: 6px 0 20px;
  width: 50%; }
  .iWishAdd:after,
  .iWishCartAdd:after {
    display: none; }

.iwishRemoveBtn {
  width: 100%; }

.iwishBuyBtn {
  width: 100%; }

/*============================================================================
  #Custom Pages
==============================================================================*/
.template-page-custom #pages-nav {
  background: #ebebeb;
  width: 100%;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .template-page-custom #pages-nav {
      text-align: left; } }
  .template-page-custom #pages-nav li {
    display: inline-block;
    text-transform: uppercase;
    margin: 0;
    padding: 0; }
    .template-page-custom #pages-nav li:first-child {
      font-family: 'Reem Kufi', sans-serif;
      color: #00646c;
      text-transform: uppercase;
      padding: 20px 30px;
      font-size: 21px; }
      @media screen and (max-width: 820px) {
        .template-page-custom #pages-nav li:first-child {
          padding-left: 15px;
          padding-right: 15px; } }
      @media screen and (max-width: 767px) {
        .template-page-custom #pages-nav li:first-child {
          width: 100%;
          padding-bottom: 0;
          text-align: left; } }
    .template-page-custom #pages-nav li a {
      display: block;
      padding: 20px 30px;
      font-family: 'Source Sans Pro', sans-serif;
      color: #333333;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-decoration: none; }
      @media screen and (max-width: 820px) {
        .template-page-custom #pages-nav li a {
          padding-left: 15px;
          padding-right: 15px; } }
      @media screen and (max-width: 767px) {
        .template-page-custom #pages-nav li a {
          letter-spacing: 1px;
          font-size: 12px;
          padding: 10px 15px 20px; } }
      @media screen and (max-width: 450px) {
        .template-page-custom #pages-nav li a {
          font-size: 10px;
          letter-spacing: 0; } }
.template-page-custom .single-column {
  font-size: 16px;
  line-height: 1.45;
  color: #808080;
  padding-bottom: 60px;
  padding-top: 10px; }
  .template-page-custom .single-column h2, .template-page-custom .single-column .h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #333333;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-top: 30px; }
  .template-page-custom .single-column h3, .template-page-custom .single-column .h3 {
    font-size: 18px; }
  .template-page-custom .single-column img {
    max-width: 100%;
    margin: 30px auto auto auto; }
  .template-page-custom .single-column .video_wrapper {
    margin-top: 45px; }
    .template-page-custom .single-column .video_wrapper + h2, .template-page-custom .single-column .video_wrapper + .h2 {
      margin-top: 40px; }
  .template-page-custom .single-column blockquote {
    color: #00646c;
    text-align: center;
    line-height: 1.45; }
    .template-page-custom .single-column blockquote .src {
      display: block;
      font-size: 16px;
      line-height: 1.45;
      color: #808080;
      text-transform: none;
      text-decoration: none; }
      .template-page-custom .single-column blockquote .src:hover {
        text-decoration: underline; }
.template-page-custom .dual-column {
  position: relative; }
  .template-page-custom .dual-column.dark:before {
    background: #2f292b;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0; }
  .template-page-custom .dual-column.dark .grid__item {
    color: #fff !important; }
    .template-page-custom .dual-column.dark .grid__item h2, .template-page-custom .dual-column.dark .grid__item .h2 {
      color: #fff !important; }
    .template-page-custom .dual-column.dark .grid__item a {
      color: #fff !important; }
    @media screen and (min-width: 992px) {
      .template-page-custom .dual-column.dark .grid__item {
        border: none; } }
  .template-page-custom .dual-column .grid__item {
    padding: 30px 0;
    position: relative;
    color: #2f292b; }
    @media screen and (min-width: 992px) {
      .template-page-custom .dual-column .grid__item {
        padding: 60px 45px;
        border: none; } }
    @media screen and (min-width: 992px) {
      .template-page-custom .dual-column .grid__item.blank {
        padding-left: 0;
        padding-right: 0; } }
    .template-page-custom .dual-column .grid__item.collage {
      padding-top: 0px; }
      .template-page-custom .dual-column .grid__item.collage img {
        height: 220px;
        margin: auto; }
      .template-page-custom .dual-column .grid__item.collage p {
        padding-bottom: 30px; }
        .template-page-custom .dual-column .grid__item.collage p:last-child {
          padding-bottom: 0px; }
      @media screen and (min-width: 992px) {
        .template-page-custom .dual-column .grid__item.collage p {
          padding: 0px 15% 25px;
          font-weight: 200;
          line-height: 1;
          text-align: center; } }
    .template-page-custom .dual-column .grid__item h2, .template-page-custom .dual-column .grid__item .h2 {
      font-size: 40px;
      line-height: 1;
      margin-bottom: 30px;
      color: #2f292b; }
      @media screen and (min-width: 992px) {
        .template-page-custom .dual-column .grid__item h2, .template-page-custom .dual-column .grid__item .h2 {
          font-size: 50px;
          line-height: 1.15; } }
    .template-page-custom .dual-column .grid__item h3, .template-page-custom .dual-column .grid__item .h3 {
      font-size: 18px; }
    .template-page-custom .dual-column .grid__item p {
      font-size: 16px;
      line-height: 1.75;
      font-family: "Source Sans Pro",Arial,sans-serif; }
    .template-page-custom .dual-column .grid__item a {
      text-decoration: underline;
      color: #2f292b; }
    .template-page-custom .dual-column .grid__item img {
      display: block; }

/*============================================================================
  #Blog
==============================================================================*/
.template-blog #maincontent,
.template-blog-tagged #maincontent,
.template-article #maincontent {
  margin-bottom: 2.0em; }
  .template-blog #maincontent h1, .template-blog #maincontent .h1,
  .template-blog-tagged #maincontent h1,
  .template-blog-tagged #maincontent .h1,
  .template-article #maincontent h1,
  .template-article #maincontent .h1 {
    padding-top: 0;
    font-size: 36px;
    text-transform: none; }
  .template-blog #maincontent .article,
  .template-blog-tagged #maincontent .article,
  .template-article #maincontent .article {
    padding: 1.0em 0;
    margin: 1.0em 0;
    border-top: 1px solid #dadada; }
  .template-blog #maincontent a,
  .template-blog-tagged #maincontent a,
  .template-article #maincontent a {
    color: #333333;
    text-decoration: underline; }
    .template-blog #maincontent a:hover,
    .template-blog-tagged #maincontent a:hover,
    .template-article #maincontent a:hover {
      color: #e01c24;
      text-decoration: none; }
  .template-blog #maincontent #comments > .no-bullets,
  .template-blog-tagged #maincontent #comments > .no-bullets,
  .template-article #maincontent #comments > .no-bullets {
    margin-bottom: 2.285714em; }
  .template-blog #maincontent .comment > span,
  .template-blog-tagged #maincontent .comment > span,
  .template-article #maincontent .comment > span {
    display: block;
    padding: 2.285714em 0 1.5em; }
  .template-blog #maincontent .comment .rte,
  .template-blog-tagged #maincontent .comment .rte,
  .template-article #maincontent .comment .rte {
    border: 1px solid #dadada;
    padding: 1.0em; }
  .template-blog #maincontent aside h2, .template-blog #maincontent aside .h2,
  .template-blog-tagged #maincontent aside h2,
  .template-blog-tagged #maincontent aside .h2,
  .template-article #maincontent aside h2,
  .template-article #maincontent aside .h2 {
    margin-top: 1.5em; }
    .template-blog #maincontent aside h2:first-child, .template-blog #maincontent aside .h2:first-child,
    .template-blog-tagged #maincontent aside h2:first-child,
    .template-blog-tagged #maincontent aside .h2:first-child,
    .template-article #maincontent aside h2:first-child,
    .template-article #maincontent aside .h2:first-child {
      margin-top: 0; }
  .template-blog #maincontent aside .no-bullets,
  .template-blog-tagged #maincontent aside .no-bullets,
  .template-article #maincontent aside .no-bullets {
    text-transform: uppercase; }
    .template-blog #maincontent aside .no-bullets li,
    .template-blog-tagged #maincontent aside .no-bullets li,
    .template-article #maincontent aside .no-bullets li {
      margin: 0.5em 0; }

.template-blog #maincontent .article h3, .template-blog #maincontent .article .h3,
.template-blog-tagged #maincontent .article h3,
.template-blog-tagged #maincontent .article .h3 {
  font-size: 1.285714em; }

.template-blog #maincontent h1 + .article, .template-blog #maincontent .h1 + .article {
  border-top: none; }

.template-article #maincontent img {
  width: auto;
  height: auto;
  max-width: 100%; }
  .template-article #maincontent img.alignright {
    float: right;
    margin: 5px 0 20px 20px; }
  .template-article #maincontent img.alignleft {
    float: left;
    margin: 5px 20px 20px 0; }
  .template-article #maincontent img.aligncenter {
    display: block;
    margin: 5px auto; }

.blog-header {
  background: #dadada;
  line-height: 1.5;
  font-size: 1.07142857em;
  padding: 1.666em 0; }
  .blog-header span {
    display: block;
    font-size: 1.2em; }
  .blog-header #mc_embed_signup {
    display: inline-block;
    position: relative; }
    .blog-header #mc_embed_signup div.mce_inline_error,
    .blog-header #mc_embed_signup #mceblog-error-response,
    .blog-header #mc_embed_signup #mceblog-success-response {
      clear: both;
      padding: 7.5px 0;
      font-size: 12px;
      line-height: 15px;
      font-weight: bold;
      text-align: left;
      position: absolute;
      bottom: -4em;
      left: 0; }
    .blog-header #mc_embed_signup div.mce_inline_error,
    .blog-header #mc_embed_signup #mceblog-error-response {
      color: #ed1c24;
      border-color: #ed1c24;
      background: #fff6f6; }
    .blog-header #mc_embed_signup #mceblog-success-response {
      background: #fff; }
  .blog-header form {
    display: inline-block; }
  .blog-header #mce-EMAIL {
    border: none;
    border-bottom: 1px solid #333333;
    background: none;
    padding: 0;
    font-size: 1.0em;
    line-height: 1.0em;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333333; }
  .blog-header #mc-embedded-subscribe {
    background-image: url(//cdn.shopify.com/s/files/1/1089/8530/t/37/assets/email-icon-dark.png?v=9092678376814920364);
    background-repeat: no-repeat;
    background-size: 1.5em;
    background-position: center center;
    width: 3em;
    height: 1.45em;
    vertical-align: middle;
    display: inline-block;
    margin-left: -5px;
    border-bottom: 1px solid #333333;
    margin-top: -1px; }
  .blog-header a {
    color: #333333;
    text-decoration: underline; }
    .blog-header a:hover {
      text-decoration: none;
      color: #e01c24; }

.blog-nav {
  padding: 0.5em 0;
  margin: 0 0 3.0em;
  background: #000; }
  .blog-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center; }
    .blog-nav ul li {
      display: inline-block;
      margin: 0; }
  .blog-nav a {
    text-transform: uppercase;
    padding: 12px 14px 10px;
    display: block;
    line-height: 1.0;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700; }
    .blog-nav a:hover {
      color: #e01c24 !important;
      text-decoration: underline !important; }
  .blog-nav .search-bar {
    margin: 0; }
    .blog-nav .search-bar .input-group-field {
      padding: 6px 0;
      background: #000;
      color: #fff;
      border-color: #fff; }
      .blog-nav .search-bar .input-group-field::-webkit-input-placeholder {
        color: #fff !important; }
      .blog-nav .search-bar .input-group-field:-moz-placeholder {
        color: #fff !important; }
      .blog-nav .search-bar .input-group-field::-moz-placeholder {
        color: #fff !important; }
      .blog-nav .search-bar .input-group-field:-ms-input-placeholder {
        color: #fff !important; }
    .blog-nav .search-bar .input-group-btn .btn, .blog-nav .search-bar .input-group-btn .btn--secondary, .blog-nav .search-bar .input-group-btn .iWishAdd,
    .blog-nav .search-bar .input-group-btn .iWishCartAdd, .blog-nav .search-bar .input-group-btn .iwishRemoveBtn, .blog-nav .search-bar .input-group-btn .iwishBuyBtn {
      background: #000;
      color: #fff;
      border-color: #fff; }

.article-credits {
  text-transform: uppercase;
  margin: 1.5em 0; }
  .article-credits .inline-list {
    display: inline-block; }
    .article-credits .inline-list:before, .article-credits .inline-list:after {
      content: '|';
      padding: 0 0.25em; }
  .article-credits .more:before {
    content: '|';
    padding: 0 0.25em; }

.author-bio {
  *zoom: 1;
  background: #dadada;
  padding: 30px;
  margin: 0; }
  .author-bio:after {
    content: '';
    display: table;
    clear: both; }
  .author-bio .author-bio-thumb {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    float: left; }
    .author-bio .author-bio-thumb img {
      background: #dadada; }

.article-pagination {
  *zoom: 1;
  margin: 1.5em 0; }
  .article-pagination:after {
    content: '';
    display: table;
    clear: both; }

.review-link .spr-badge {
  display: inline-block; }
  .review-link .spr-badge .spr-badge-caption {
    display: none; }
