/*============================================================================
  Shopify Timber v1.4.0
  Copyright 2014 Shopify Inc.
  Author Carson Shold @cshold
  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
==============================================================================*/
/*============================================================================
  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
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Site Footer
  #Product Grid and List Views
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Blogs and Comments
  #Notes and Form Feedback
  #Cart Page
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("https://everflush.com/cdn/shop/t/2/assets/icons.eot?v=116632864209456931881417289133");
  src: url("https://everflush.com/cdn/shop/t/2/assets/icons.eot?v=116632864209456931881417289133#iefix") format("embedded-opentype"), url("https://everflush.com/cdn/shop/t/2/assets/icons.woff?v=2555512151075777111417289133") format("woff"), url("https://everflush.com/cdn/shop/t/2/assets/icons.ttf?v=38401741172385969231417289133") format("truetype"), url("https://everflush.com/cdn/shop/t/2/assets/icons.svg?v=167286453819589656851417289133#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

/*============================================================================
  Dependency-free breakpoint mixin
    - http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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 and a fixed gutter size
    - 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: -24px; }

.grid-item {
  float: left;
  min-height: 1px;
  padding-left: 24px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*============================================================================
  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 ================*/
/*============================================================================
  HELPERS
==============================================================================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/* Thirds */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/* Quarters */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

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

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

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

.five-sixths, .ten-twelfths {
  width: 83.333%; }

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

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

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

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

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

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

  /* Halves */
  .small--one-half, .small--two-quarters, .small--three-sixths, .small--four-eighths, .small--five-tenths, .small--six-twelfths {
    width: 50%; }

  /* Thirds */
  .small--one-third, .small--two-sixths, .small--four-twelfths {
    width: 33.333%; }

  .small--two-thirds, .small--four-sixths, .small--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .small--one-quarter, .small--two-eighths, .small--three-twelfths {
    width: 25%; }

  .small--three-quarters, .small--six-eighths, .small--nine-twelfths {
    width: 75%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .medium--one-half, .medium--two-quarters, .medium--three-sixths, .medium--four-eighths, .medium--five-tenths, .medium--six-twelfths {
    width: 50%; }

  /* Thirds */
  .medium--one-third, .medium--two-sixths, .medium--four-twelfths {
    width: 33.333%; }

  .medium--two-thirds, .medium--four-sixths, .medium--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .medium--one-quarter, .medium--two-eighths, .medium--three-twelfths {
    width: 25%; }

  .medium--three-quarters, .medium--six-eighths, .medium--nine-twelfths {
    width: 75%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .medium-down--one-half, .medium-down--two-quarters, .medium-down--three-sixths, .medium-down--four-eighths, .medium-down--five-tenths, .medium-down--six-twelfths {
    width: 50%; }

  /* Thirds */
  .medium-down--one-third, .medium-down--two-sixths, .medium-down--four-twelfths {
    width: 33.333%; }

  .medium-down--two-thirds, .medium-down--four-sixths, .medium-down--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .medium-down--one-quarter, .medium-down--two-eighths, .medium-down--three-twelfths {
    width: 25%; }

  .medium-down--three-quarters, .medium-down--six-eighths, .medium-down--nine-twelfths {
    width: 75%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1), .grid-uniform .medium-down--three-sixths:nth-child(2n+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--six-twelfths:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--two-tenths:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-twelfths: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: 769px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

  /* Halves */
  .large--one-half, .large--two-quarters, .large--three-sixths, .large--four-eighths, .large--five-tenths, .large--six-twelfths {
    width: 50%; }

  /* Thirds */
  .large--one-third, .large--two-sixths, .large--four-twelfths {
    width: 33.333%; }

  .large--two-thirds, .large--four-sixths, .large--eight-twelfths {
    width: 66.666%; }

  /* Quarters */
  .large--one-quarter, .large--two-eighths, .large--three-twelfths {
    width: 25%; }

  .large--three-quarters, .large--six-eighths, .large--nine-twelfths {
    width: 75%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large--seven-twelfths {
    width: 58.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--two-quarters:nth-child(2n+1), .grid-uniform .large--three-sixths:nth-child(2n+1), .grid-uniform .large--four-eighths:nth-child(2n+1), .grid-uniform .large--five-tenths:nth-child(2n+1), .grid-uniform .large--six-twelfths:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--two-tenths:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-twelfths: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, .push--two-quarters, .push--three-sixths, .push--four-eighths, .push--five-tenths, .push--six-twelfths {
  left: 50%; }

/* Thirds */
.push--one-third, .push--two-sixths, .push--four-twelfths {
  left: 33.333%; }

.push--two-thirds, .push--four-sixths, .push--eight-twelfths {
  left: 66.666%; }

/* Quarters */
.push--one-quarter, .push--two-eighths, .push--three-twelfths {
  left: 25%; }

.push--three-quarters, .push--six-eighths, .push--nine-twelfths {
  left: 75%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .push--medium--one-half, .push--medium--two-quarters, .push--medium--three-sixths, .push--medium--four-eighths, .push--medium--five-tenths, .push--medium--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--medium--one-third, .push--medium--two-sixths, .push--medium--four-twelfths {
    left: 33.333%; }

  .push--medium--two-thirds, .push--medium--four-sixths, .push--medium--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--medium--one-quarter, .push--medium--two-eighths, .push--medium--three-twelfths {
    left: 25%; }

  .push--medium--three-quarters, .push--medium--six-eighths, .push--medium--nine-twelfths {
    left: 75%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .push--medium-down--one-half, .push--medium-down--two-quarters, .push--medium-down--three-sixths, .push--medium-down--four-eighths, .push--medium-down--five-tenths, .push--medium-down--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--medium-down--one-third, .push--medium-down--two-sixths, .push--medium-down--four-twelfths {
    left: 33.333%; }

  .push--medium-down--two-thirds, .push--medium-down--four-sixths, .push--medium-down--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--medium-down--one-quarter, .push--medium-down--two-eighths, .push--medium-down--three-twelfths {
    left: 25%; }

  .push--medium-down--three-quarters, .push--medium-down--six-eighths, .push--medium-down--nine-twelfths {
    left: 75%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Halves */
  .push--large--one-half, .push--large--two-quarters, .push--large--three-sixths, .push--large--four-eighths, .push--large--five-tenths, .push--large--six-twelfths {
    left: 50%; }

  /* Thirds */
  .push--large--one-third, .push--large--two-sixths, .push--large--four-twelfths {
    left: 33.333%; }

  .push--large--two-thirds, .push--large--four-sixths, .push--large--eight-twelfths {
    left: 66.666%; }

  /* Quarters */
  .push--large--one-quarter, .push--large--two-eighths, .push--large--three-twelfths {
    left: 25%; }

  .push--large--three-quarters, .push--large--six-eighths, .push--large--nine-twelfths {
    left: 75%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--seven-twelfths {
    left: 58.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, body {
  padding: 0;
  margin: 0; }

html {
  background-color: white; }

body {
  background-color: white; }

.wrapper {
  *zoom: 1;
  max-width: 955px;
  margin: 0 auto;
  padding: 0 25px; }
  .wrapper:after {
    content: "";
    display: table;
    clear: both; }

.main-content {
  display: block;
  margin-top: 80px; }
  .attached-slider .main-content {
    margin-top: 0; }

/*============================================================================
  #Helper Classes
==============================================================================*/
.left {
  float: left; }

.right {
  float: right; }

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

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

.hidden {
  display: none; }

@media screen and (min-width: 480px) {
  .visible--small {
    display: none; } }
.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: 769px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 15px;
  line-height: 1.6;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: dimgrey;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #403f3f;
  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 {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }
    h1 a:hover, .h1 a:hover, h1 a:active, .h1 a:active, h1 a:focus, .h1 a:focus, h2 a:hover, .h2 a:hover, h2 a:active, .h2 a:active, h2 a:focus, .h2 a:focus, h3 a:hover, .h3 a:hover, h3 a:active, .h3 a:active, h3 a:focus, .h3 a:focus, h4 a:hover, .h4 a:hover, h4 a:active, .h4 a:active, h4 a:focus, .h4 a:focus, h5 a:hover, .h5 a:hover, h5 a:active, .h5 a:active, h5 a:focus, .h5 a:focus, h6 a:hover, .h6 a:hover, h6 a:active, .h6 a:active, h6 a:focus, .h6 a:focus {
      color: inherit; }

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

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

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

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

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

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

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 80%; }

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

sup {
  top: -0.2em; }

sub {
  bottom: -0.2em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.53333em;
  line-height: 1.45;
  margin: 0;
  padding: 12.5px 0;
  text-align: center; }
  blockquote:before, blockquote:after {
    content: '';
    display: block;
    margin: 25px auto;
    width: 70%;
    border-top: 1px solid #ebebeb; }
  blockquote:before {
    margin-top: 0; }
  blockquote p {
    margin-bottom: 0;
    color: #403f3f;
    font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif; }
    blockquote p + cite {
      margin-top: 12.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: 12.5px;
  margin: 0 0 25px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #ebebeb;
  border-width: 1px 0 0;
  margin: 50px 0;
  height: 0; }
  hr.hr--small {
    margin: 12.5px 0; }
  hr.hr--clear {
    border-top-color: transparent; }
  hr.hr--large {
    margin-top: 50px; }
  hr.hr--narrow {
    width: 70%;
    margin: 50px auto;
    max-width: 360px; }
  hr.hr--header {
    margin: 0; }

/*================ Section Headers ================*/
.section-header {
  margin-bottom: 50px;
  text-align: center; }

.section-header--sub {
  margin-top: 50px;
  margin-bottom: 0px; }

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

  .section-header--title {
    margin-bottom: 10px; }

  .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: 769px) and (max-width: 768px) {
    .section-header--right {
      margin-bottom: 25px; } }

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

.collection-view {
  display: inline-block;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  padding: 11px;
  height: 37px;
  /*================ We use SVG icons, so simply hide this in oldIE ================*/
  /*================ Only show on larger screens ================*/ }
  .lt-ie9 .collection-view {
    display: none; }
  @media screen and (min-width: 769px) {
    .collection-view {
      display: inline-block; } }
  .collection-view a {
    display: block;
    float: left;
    opacity: 0.7;
    cursor: pointer; }
    .collection-view a + a {
      margin-left: 10px; }
    .collection-view a.collection-view--active {
      opacity: 1;
      cursor: default; }
  .collection-view img {
    display: block;
    opacity: inherit; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 12.5px;
  /*================ Small Breakpoint ================*/
  /*================ Medium and Up Breakpoint ================*/ }
  .rte > div {
    margin-bottom: 12.5px; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em;
    text-align: center; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
  .rte h4, .rte .h4 {
    text-transform: uppercase;
    font-size: 0.93333em;
    color: #a1a1a1;
    margin-bottom: -3em;
    margin-top: 3em;
    letter-spacing: 2px; }
  .rte h2, .rte .h2 {
    margin-top: 70px;
    margin-bottom: 35px; }
  .rte h3, .rte .h3 {
    margin-bottom: 35px; }
  .rte ul,
  .rte ol {
    margin-left: 55px; }
  .rte li {
    margin-bottom: 0.4em; }
  .rte p {
    margin-bottom: 25px; }
  .rte blockquote p {
    margin: 0 -25px; }
  .feature-homepage-content .rte {
    margin-bottom: 50px; }
  @media screen and (max-width: 480px) {
    .rte blockquote p {
      margin: 0; } }
  @media screen and (min-width: 480px) {
    .rte table {
      width: 110%;
      margin-left: -25px; }
    .rte td:first-child,
    .rte th:first-child {
      padding-left: 23px; }
    .rte img:not([style]) {
      max-width: 110%;
      margin: 0 -25px; }
    .rte img[style="float: right;"] {
      margin: 0 -30px 30px 30px; }
    .rte img[style="float: left;"] {
      margin: 0 30px 30px -30px; } }

.rte--header {
  margin: 25px 0; }

/*============================================================================
  #Links and Buttons
==============================================================================*/
a {
  color: #62b2a7;
  text-decoration: none;
  background: transparent; }

a:hover,
a:focus {
  color: #95cbc4; }

button {
  overflow: visible; }

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

.btn, .btn-secondary,
input.btn-secondary, input[type="submit"] {
  display: inline-block;
  padding: 10px 20px;
  margin: 0;
  line-height: 1.42;
  font-weight: bold;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 13px;
  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;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 3px;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  text-transform: uppercase;
  /*================ Set primary button colors - can override later ================*/
  background-color: #0033cc;
  color: white; }
  .btn.btn--small, .btn--small.btn-secondary, input.btn--small[type="submit"] {
    padding: 4px 5px;
    font-size: 13px; }
  .btn.btn--full, .btn--full.btn-secondary, input.btn--full[type="submit"] {
    width: 100%; }
  .btn:hover, .btn-secondary:hover, input[type="submit"]:hover {
    background-color: #002699;
    color: white;
    -webkit-transition: background-color 0.05s ease-in;
    -moz-transition: background-color 0.05s ease-in;
    -ms-transition: background-color 0.05s ease-in;
    -o-transition: background-color 0.05s ease-in;
    transition: background-color 0.05s ease-in; }
  .btn:active, .btn-secondary:active, input[type="submit"]:active, .btn:focus, .btn-secondary:focus, input[type="submit"]:focus {
    background-color: #001966;
    color: white; }
  .btn[disabled], [disabled].btn-secondary, input[disabled][type="submit"], .btn.disabled, .disabled.btn-secondary, input.disabled[type="submit"] {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn-link {
  background: none;
  border: none;
  margin: 0;
  padding: 0; }

.btn-secondary,
input.btn-secondary {
  background-color: #f0f0f0;
  color: dimgrey; }
  .btn-secondary:hover,
  input.btn-secondary:hover {
    background-color: #d6d6d6;
    color: dimgrey; }
  .btn-secondary:active, .btn-secondary:focus,
  input.btn-secondary:active,
  input.btn-secondary:focus {
    background-color: #bdbdbd;
    color: dimgrey; }

/*================ 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 25px;
  padding: 0; }

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

ol, ul.square, ul.disc, .rte ul {
  margin-left: 50px; }

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

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

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

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

/*============================================================================
  #Tables
==============================================================================*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 25px 0; }

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

th,
.table-header {
  color: #403f3f;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase; }

th, td {
  text-align: left;
  padding: 12.5px;
  border: 1px solid #ebebeb; }

/*============================================================================
  #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: 25px; }

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

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

/*============================================================================
  #Images and Iframes
==============================================================================*/
img {
  border: 0 none; }

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

img.auto,
.grid-item img,
.grid-item iframe {
  max-width: 100%; }

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

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

input,
textarea,
button,
select {
  font-size: 1em; }

button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

input,
textarea,
select,
fieldset {
  border-radius: 3px;
  max-width: 100%; }
  input.input-full,
  textarea.input-full,
  select.input-full,
  fieldset.input-full {
    width: 100%; }

input,
select,
textarea {
  padding: 9px 12px;
  line-height: 1.42; }

fieldset {
  border: 1px solid #ebebeb;
  padding: 12.5px; }

legend {
  border: 0;
  padding: 0; }

optgroup {
  font-weight: bold; }

input {
  display: inline-block;
  width: auto; }

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

/*================ Input width and border ================*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
  border: 1px solid #ebebeb;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 2.4em;
  background-color: transparent;
  -webkit-transition: border-color 0.2s ease-out;
  -moz-transition: border-color 0.2s ease-out;
  -ms-transition: border-color 0.2s ease-out;
  -o-transition: border-color 0.2s ease-out;
  transition: border-color 0.2s ease-out; }
  input[type="text"]:focus, input[type="text"]:hover,
  input[type="search"]:focus,
  input[type="search"]:hover,
  input[type="password"]:focus,
  input[type="password"]:hover,
  input[type="email"]:focus,
  input[type="email"]:hover,
  input[type="file"]:focus,
  input[type="file"]:hover,
  input[type="number"]:focus,
  input[type="number"]:hover,
  input[type="tel"]:focus,
  input[type="tel"]:hover,
  textarea:focus,
  textarea:hover,
  select:focus,
  select:hover {
    border: 1px solid #c5c5c5;
    -webkit-transition: border-color 0.05s ease-in;
    -moz-transition: border-color 0.05s ease-in;
    -ms-transition: border-color 0.05s ease-in;
    -o-transition: border-color 0.05s ease-in;
    transition: border-color 0.05s ease-in; }
  input[type="text"][disabled], input[type="text"].disabled,
  input[type="search"][disabled],
  input[type="search"].disabled,
  input[type="password"][disabled],
  input[type="password"].disabled,
  input[type="email"][disabled],
  input[type="email"].disabled,
  input[type="file"][disabled],
  input[type="file"].disabled,
  input[type="number"][disabled],
  input[type="number"].disabled,
  input[type="tel"][disabled],
  input[type="tel"].disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }

textarea {
  min-height: 100px; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0;
  padding: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iNy43cHgiIGhlaWdodD0iNC4zcHgiIHZpZXdCb3g9IjAgMCA3LjcgNC4zIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA3LjcgNC4zIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiM5OTk5OTkiIGQ9Ik03LjEsMC4xQzYuNywwLjUsMy45LDMuMiwzLjksMy4yUzEsMC41LDAuNiwwLjFTMCwwLjcsMCwwLjdsMy45LDMuNmwzLjgtMy42QzcuNywwLjcsNy41LTAuMyw3LjEsMC4xeiIvPg0KPC9zdmc+DQo=");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

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

/*================ Form labels ================*/
label,
legend,
.label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #403f3f; }
  label.inline,
  legend.inline,
  .label.inline {
    display: inline; }
  .form-horizontal label.hidden-label, label.hidden-label, .form-horizontal
  legend.hidden-label,
  legend.hidden-label, .form-horizontal
  .label.hidden-label,
  .label.hidden-label {
    height: 0;
    width: 0;
    margin-bottom: 0;
    overflow: hidden; }
    .ie9 .form-horizontal label.hidden-label, .lt-ie9 .form-horizontal label.hidden-label, .ie9 label.hidden-label, .lt-ie9 label.hidden-label, .ie9 .form-horizontal
    legend.hidden-label, .lt-ie9 .form-horizontal
    legend.hidden-label, .ie9
    legend.hidden-label, .lt-ie9
    legend.hidden-label, .ie9 .form-horizontal
    .label.hidden-label, .lt-ie9 .form-horizontal
    .label.hidden-label, .ie9
    .label.hidden-label, .lt-ie9
    .label.hidden-label {
      height: auto;
      margin-bottom: 2px;
      overflow: visible; }

/*================ We don't want the same label treatment for checkboxes/radios ================*/
input[type="checkbox"] + label,
input[type="radio"] + label {
  font-weight: normal; }

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

/*================ Horizontal Form ================*/
form.form-horizontal,
.form-horizontal {
  margin-bottom: 0; }
  form.form-horizontal input[type="text"],
  form.form-horizontal input[type="search"],
  form.form-horizontal input[type="password"],
  form.form-horizontal input[type="email"],
  form.form-horizontal input[type="file"],
  form.form-horizontal input[type="number"],
  form.form-horizontal input[type="tel"],
  form.form-horizontal textarea,
  form.form-horizontal select,
  form.form-horizontal label,
  .form-horizontal input[type="text"],
  .form-horizontal input[type="search"],
  .form-horizontal input[type="password"],
  .form-horizontal input[type="email"],
  .form-horizontal input[type="file"],
  .form-horizontal input[type="number"],
  .form-horizontal input[type="tel"],
  .form-horizontal textarea,
  .form-horizontal select,
  .form-horizontal label {
    display: inline-block;
    margin-bottom: 0;
    width: auto; }

/*================ Error styles ================*/
input[type="text"].error,
input[type="search"].error,
input[type="password"].error,
input[type="email"].error,
input[type="file"].error,
input[type="number"].error,
input[type="tel"].error,
textarea.error {
  border-color: #c14949;
  background-color: white;
  color: #c14949; }

label.error {
  color: #c14949; }

/*================ 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 > input[type="submit"],
  .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 > input[type="submit"] {
    border-radius: 3px 0 0 3px; }
  .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 > input[type="submit"] {
    border-radius: 0 3px 3px 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 input[type="submit"],
.input-group .input-group-field {
  height: 37px; }

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

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }
  .input-group-btn .btn, .input-group-btn .btn-secondary, .input-group-btn input[type="submit"] {
    padding: 8px 10px; }

.form-spacer {
  margin: 0 12.5px; }

/*============================================================================
  #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)
==============================================================================*/
.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.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-american_express:before {
  content: "\41"; }

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

.icon-arrow-left:before {
  content: "\65"; }

.icon-arrow-long-left:before {
  content: "\e601"; }

.icon-arrow-long-right:before {
  content: "\e602"; }

.icon-arrow-right:before {
  content: "\62"; }

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

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

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

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

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

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

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

.icon-error:before {
  content: "\e608"; }

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

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

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

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

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

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

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

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

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

.icon-menu:before {
  content: "\e609"; }

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

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

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

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

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

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

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

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

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

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

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

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

.icon-error:before {
  content: "\e608"; }

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

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

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

.social-icons li {
  margin: 0 10px 12px;
  vertical-align: middle; }
  @media screen and (min-width: 481px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    font-size: 30px;
    line-height: 26px; }
  .social-icons li a {
    color: #0033cc;
    -webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    -ms-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    .social-icons li a:hover {
      color: #002699;
      -webkit-transition: color 0.05s ease-in;
      -moz-transition: color 0.05s ease-in;
      -ms-transition: color 0.05s ease-in;
      -o-transition: color 0.05s ease-in;
      transition: color 0.05s ease-in; }

/*================ Social share buttons ================*/
.item-social-sharing {
  padding-top: 30px; }

.social-sharing {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-top: 12.5px;
  /*================ Social Share Icon Colors ================*/ }
  .social-sharing a {
    display: inline-block;
    color: dimgrey;
    border-radius: 4px;
    margin: 0 10px 10px 0;
    line-height: 22px;
    text-decoration: none;
    border: 1px #ebebeb solid; }
    .social-sharing a:hover, .social-sharing a:focus {
      color: #4f4f4f; }
  .social-sharing span {
    display: inline-block;
    vertical-align: top;
    height: 22px;
    line-height: 22px; }
  .social-sharing .icon {
    padding: 0 5px 0 10px; }
    .social-sharing .icon:before {
      line-height: 22px; }
  .social-sharing .icon-facebook {
    color: #3b5998; }
    .social-sharing .icon-facebook:hover {
      color: #2d4373; }
  .social-sharing .icon-twitter {
    color: #00aced; }
    .social-sharing .icon-twitter:hover {
      color: #0087ba; }
  .social-sharing .icon-pinterest {
    color: #cb2027; }
    .social-sharing .icon-pinterest:hover {
      color: #9f191f; }
  .social-sharing .icon-fancy {
    color: #4999dc; }
    .social-sharing .icon-fancy:hover {
      color: #2780cb; }
  .social-sharing .icon-google {
    color: #dd4b39; }
    .social-sharing .icon-google:hover {
      color: #c23321; }

.share-title {
  font-weight: 300;
  font-size: 0.8em;
  padding-right: 10px; }

.share-product {
  border: 1px solid #ebebeb;
  border-radius: 3px; }

.share-count {
  position: relative;
  padding: 0 8px;
  margin-right: -2px;
  font-size: 0.93333em;
  line-height: 20px;
  color: dimgrey;
  border-left: 1px solid #ebebeb;
  border-radius: 0 2px 2px 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in; }
  .share-count.is-loaded {
    opacity: 1; }
  .share-count:before, .share-count:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid; }
  .share-count:before {
    left: -6px;
    border-right-color: #ebebeb; }
  .share-count:after {
    left: -5px;
    border-right-color: white; }
  a:hover .share-count, a:focus .share-count {
    background-color: whitesmoke; }
    a:hover .share-count:after, a:focus .share-count:after {
      border-right-color: whitesmoke; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin-bottom: 1em; }

/*================ Custom Pagination ================*/
.pagination-custom {
  display: inline-block;
  padding-left: 0;
  margin: 50px 0 25px;
  border-radius: 3px; }
  .pagination-custom.pagination-custom--blog {
    margin-top: 20px; }

.pagination-custom > li {
  display: inline; }

.pagination-custom > li > a,
.pagination-custom > li > span {
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: dimgrey;
  font-size: 0.86667em;
  position: relative;
  float: left;
  margin: 5px 25px 0 0;
  line-height: 1.42;
  text-decoration: none; }

.pagination-custom > li:first-child > span,
.pagination-custom > li:first-child > a,
.pagination-custom > li:last-child > span,
.pagination-custom > li:last-child > a {
  padding: 0px;
  margin-top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: #0033cc;
  color: white;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out; }
  .pagination-custom > li:first-child > span:hover,
  .pagination-custom > li:first-child > a:hover,
  .pagination-custom > li:last-child > span:hover,
  .pagination-custom > li:last-child > a:hover {
    background-color: #002699;
    -webkit-transition: background-color 0.05s ease-in;
    -moz-transition: background-color 0.05s ease-in;
    -ms-transition: background-color 0.05s ease-in;
    -o-transition: background-color 0.05s ease-in;
    transition: background-color 0.05s ease-in; }
.pagination-custom > li:first-child .icon,
.pagination-custom > li:last-child .icon {
  padding-top: 2px; }
.pagination-custom > li:first-child.disabled > span, .pagination-custom > li:first-child.disabled > a,
.pagination-custom > li:last-child.disabled > span,
.pagination-custom > li:last-child.disabled > a {
  background-color: transparent;
  border: 1px solid #f0f0f0;
  color: #f0f0f0; }

.pagination-custom > li:last-child > span,
.pagination-custom > li:last-child > a {
  margin-right: 0; }

.pagination-custom > .active > a,
.pagination-custom > .active > span,
.pagination-custom > .active > a:hover,
.pagination-custom > .active > span:hover,
.pagination-custom > .active > a:focus,
.pagination-custom > .active > span:focus {
  z-index: 2;
  cursor: default;
  color: #a1a1a1; }

.pagination-custom > .disabled > span,
.pagination-custom > .disabled > a,
.pagination-custom > .disabled > a:hover,
.pagination-custom > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed; }

.pagination-custom-sm > li > a,
.pagination-custom-sm > li > span {
  padding: 5px 10px;
  font-size: 0.8em; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  padding: 12.5px 0;
  color: #403f3f; }
  .site-header a,
  .site-header .btn-link {
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
    text-decoration: none;
    color: #403f3f;
    font-size: 13px;
    text-transform: uppercase; }
    .site-header a:hover, .site-header a:focus,
    .site-header .btn-link:hover,
    .site-header .btn-link:focus {
      opacity: 0.7; }
  .site-header .grid-item {
    padding-left: 0px; }
  .site-header .wrapper {
    padding: 0 20px; }
    @media screen and (max-width: 480px) {
      .site-header .wrapper {
        margin: 0 auto; } }

.header-logo {
  text-align: center;
  margin: 0 auto 12.5px;
  max-width: 250px; }
  @media screen and (min-width: 769px) {
    .header-logo {
      margin-bottom: 0; } }
  .header-logo a {
    font-size: 37px;
    font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: 700;
    text-transform: none; }
  .header-logo a,
  .header-logo a:hover,
  .header-logo a:focus {
    text-decoration: none; }
  .header-logo a,
  .header-logo img {
    display: block; }
  .header-logo img {
    margin: 0 auto; }

.site-header--text-links {
  margin-bottom: 0; }

.header-cart-wrapper {
  text-align: right; }

.cart-icon-wrapper {
  position: relative;
  margin-right: 7px; }

.cart-count {
  background-color: #0033cc;
  color: white;
  width: 16px;
  height: 16px;
  font-size: 0.66667em;
  text-align: center;
  border-radius: 8px;
  position: absolute;
  left: 9px;
  top: -10px;
  line-height: 16px; }
  .cart-count.hidden-count {
    display: none; }

.header-login-wrapper .icon {
  padding-left: 5px;
  color: #403f3f;
  font-size: 13px; }

/*================ Small-Up Site Header ================*/
@media screen and (min-width: 480px) {
  .site-header {
    padding: 25px 0; }
    .site-header .grid, .site-header .grid--rev, .site-header .grid--full {
      display: table;
      table-layout: fixed;
      width: 100%; }
      .site-header .grid > .grid-item, .site-header .grid--rev > .grid-item, .site-header .grid--full > .grid-item {
        float: none;
        display: table-cell;
        vertical-align: middle; } }
/*================ Small Site Header ================*/
@media screen and (max-width: 480px) {
  .site-header {
    position: relative;
    padding-top: 0; }
    .site-header hr {
      margin: 0; }
    .site-header .wrapper {
      padding: 0px; }
    .site-header .mobile-nav-bar__link {
      font-size: 1em; }
    .site-header .mobile-nav__item {
      border-top: 5px solid #0033cc;
      padding: 12px 17px; }
    .site-header .icon-cart,
    .site-header .icon-menu {
      position: relative;
      top: 1px;
      font-size: 1.13333em;
      margin: 0 3px; }

  .cart-count {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    left: 17px;
    line-height: 20px; }

  .mobile-nav--sticky {
    overflow: hidden;
    padding: 0; }
    .mobile-nav--sticky.sticky, .mobile-nav--sticky.unsticky {
      background: white;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); }
      .mobile-nav--sticky.sticky ~ .header-logo-wrapper, .mobile-nav--sticky.unsticky ~ .header-logo-wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        padding-bottom: 12px; }
    .mobile-nav--sticky.sticky {
      height: 58px;
      -webkit-transform: translate3d(0px, 0, 0);
      -moz-transform: translate3d(0px, 0, 0);
      -ms-transform: translate3d(0px, 0, 0);
      -o-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .mobile-nav--sticky.unsticky {
      height: 0;
      -webkit-transform: translate3d(0px, -58px, 0);
      -moz-transform: translate3d(0px, -58px, 0);
      -ms-transform: translate3d(0px, -58px, 0);
      -o-transform: translate3d(0px, -58px, 0);
      transform: translate3d(0px, -58px, 0);
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; } }
.search-bar {
  max-width: 50%;
  min-width: 250px;
  margin: 0 auto; }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  top: 110%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0033cc;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
  text-transform: uppercase; }
  .nav-bar a {
    color: white; }
  .nav-bar li {
    margin: 0; }

.site-nav {
  margin: 0;
  font-size: 13px;
  cursor: default;
  text-align: center; }
  .site-nav li {
    margin: 0;
    display: block; }
  .site-nav > li {
    position: relative;
    display: inline-block; }
  .site-nav a {
    display: block;
    text-decoration: none;
    padding: 0 16px;
    line-height: 53px;
    white-space: nowrap; }
  .site-nav .customer-navlink {
    color: white;
    background-color: #1a53ff;
    border-bottom: 0;
    border-top: 1px solid #0039e6;
    margin-top: -1px; }

/*================ Small screen nav styles ================*/
@media screen and (max-width: 480px) {
  .nav-bar {
    background-color: #333;
    margin: 0 auto;
    position: fixed;
    z-index: 2000;
    -webkit-transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
    -moz-transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
    -ms-transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
    -o-transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
    transition: all 600ms cubic-bezier(0.47, 0.5, 0, 0.95); }
    .show-nav .nav-bar {
      bottom: 0;
      top: 58px;
      max-height: 100%;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch;
      -webkit-transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95);
      -moz-transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95);
      -ms-transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95);
      -o-transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95);
      transition: all 450ms cubic-bezier(0.47, 0, 0, 0.95); }
    .nav-bar .wrapper {
      padding: 12.5px 0 0; }
    .nav-bar .search-bar {
      margin: 0 12.5px 12.5px;
      width: auto; }

  /*================ Menu items ================*/
  .site-nav {
    padding: 15px 0;
    text-align: left; }
    .site-nav a {
      padding: 0 20px;
      color: #fff; }
    .site-nav li {
      display: block;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2); }
    .site-nav .customer-navlink {
      border-top: none;
      background-color: #333;
      color: #595959; }
      .site-nav .customer-navlink a {
        color: #bbb; } }
/*================ Medium screen size only ================*/
@media screen and (min-width: 481px) and (max-width: 768px) {
  .show-nav .nav-bar {
    top: 58px;
    bottom: 0; } }
/*================ Large screen bar navigation ================*/
@media screen and (min-width: 769px) {
  .nav-bar {
    margin: 0 auto;
    border-radius: 3px; }
    .attached-slider .nav-bar {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }

  .site-nav {
    text-align: center;
    white-space: nowrap;
    margin-left: -12.5px; }
    .site-nav > li {
      position: relative;
      display: inline-block; }
    .site-nav a {
      white-space: nowrap; } }
/*================ Dropdowns ================*/
.site-nav--dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  margin: -5px 0 0;
  z-index: 5;
  background-color: white;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }
  .site-nav--dropdown li:hover {
    background-color: #d9d9d9; }
  .site-nav--dropdown li:first-child {
    padding-top: 13px; }
    .site-nav--dropdown li:first-child:before, .site-nav--dropdown li:first-child:after {
      content: "";
      position: absolute;
      height: 0;
      width: 0;
      right: 46%;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent; }
    .site-nav--dropdown li:first-child:before {
      top: -8px;
      border-bottom: 8px solid #ebebeb; }
    .site-nav--dropdown li:first-child:after {
      top: -7px;
      border-bottom: 8px solid white; }
    .site-nav--dropdown li:first-child:hover:after {
      border-bottom: 8px solid #d9d9d9; }
  .site-nav--dropdown li:last-child {
    padding-bottom: 13px; }
  .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 {
    visibility: visible;
    opacity: 1; }
  .site-nav--dropdown a {
    color: dimgrey;
    line-height: 1;
    padding: 13px 35px; }
  .js-more-menu .site-nav--dropdown {
    left: auto;
    right: 0; }
    .js-more-menu .site-nav--dropdown li:first-child:before,
    .js-more-menu .site-nav--dropdown li:first-child:after {
      right: 15px; }

.site-nav--dropdown .site-nav--has-dropdown .site-nav--dropdown {
  display: none; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav--dropdown .site-nav--has-dropdown .site-nav--dropdown, .site-nav--has-dropdown.nav-hover .site-nav--dropdown .site-nav--has-dropdown .site-nav--dropdown, .nav-focus + .site-nav--dropdown .site-nav--has-dropdown .site-nav--dropdown {
    display: none; }

/*================ Search bar in header ================*/
.nav-search {
  position: relative;
  padding: 7px 0; }
  @media screen and (max-width: 768px) {
    .nav-search {
      padding: 0 0 12.5px;
      margin: 0 auto;
      text-align: center; } }
  .nav-search .input-group,
  .nav-search .input-group-field {
    margin-bottom: 0; }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  padding-bottom: 25px;
  color: dimgrey;
  /*================ Large Breakpoint ONLY ================*/
  /*================ Small & Medium Breakpoint ================*/ }
  .site-footer .footer-heading {
    color: #403f3f;
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase; }
  .site-footer .wrapper-footer-body p,
  .site-footer .wrapper-footer-body ul,
  .site-footer .wrapper-footer-body .custom-content {
    font-size: 0.93333em; }
  .site-footer .wrapper-footer-legal hr {
    margin-bottom: 30px; }
  .site-footer form {
    margin-bottom: 0px; }
  .site-footer .footer-quick-links a {
    text-decoration: none;
    color: dimgrey; }
  .site-footer .footer-quick-links:hover, .site-footer .footer-quick-links:focus {
    opacity: 90%; }
  .site-footer .social-icons {
    padding-top: 2px; }
  .site-footer .form-newsletter-signup .icon-check {
    font-size: 8px; }
  .site-footer .form-newsletter-signup .input-group-btn {
    vertical-align: bottom; }
  .site-footer .form-newsletter-signup .input-group-field {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px; }
  .site-footer .form-newsletter-signup label {
    font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: normal;
    color: dimgrey;
    font-size: 0.93333em; }
  @media screen and (min-width: 769px) {
    .site-footer {
      padding-bottom: 50px; } }
  @media screen and (max-width: 768px) {
    .site-footer {
      text-align: center; }
      .site-footer .form-newsletter-signup {
        max-width: 250px;
        margin: 0 auto; }
      .site-footer .custom-content {
        margin-bottom: 24px; } }

/*============================================================================
  #Legal & Payment Types
==============================================================================*/
.payment-icons {
  text-align: right;
  /*================ Small & Mediume Breakpoint ================*/ }
  @media screen and (max-width: 768px) {
    .payment-icons {
      text-align: center; } }

.wrapper-legal a {
  color: dimgrey;
  text-decoration: none; }
.wrapper-legal small {
  font-size: 0.86667em;
  display: inline-block; }

/*============================================================================
  #Product Grid and List Views
==============================================================================*/
.fluid-grid-item {
  display: inline-block;
  text-decoration: none;
  margin: 25px 0;
  width: 32%;
  vertical-align: top; }
  @media screen and (max-width: 480px) {
    .fluid-grid-item {
      width: 49%; } }
  .fluid-grid-item img {
    max-width: 100%; }

.product-item {
  position: relative;
  text-align: center; }

.product-item__sold-out {
  text-align: center;
  position: absolute;
  height: 40px;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
  opacity: 1; }
  .product-item__sold-out .sold-out-text {
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-size: 0.86667em;
    border-radius: 3px;
    text-transform: uppercase;
    background: #403f3f;
    color: white;
    height: 40px;
    line-height: 40px;
    padding: 5px 10px; }

.product-item__on-sale {
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.86667em;
  border-radius: 3px;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: default;
  padding: 2px 10px;
  background-color: #0033cc;
  color: white;
  z-index: 1; }

.product-item__vendor {
  font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #a1a1a1;
  font-size: 0.8em;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase; }

.product-item__name, .collection-item__title {
  margin-bottom: 0;
  padding: 0 8%; }
  .product-item__name a, .collection-item__title a {
    font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-size: 1.13333em;
    color: #403f3f; }

.product-item__price {
  color: #a1a1a1;
  font-size: 1.06667em;
  margin-bottom: 0; }

.product-item__price--old {
  color: #a1a1a1;
  text-decoration: line-through;
  padding-right: 10px; }

.product-item__price--from {
  font-style: italic;
  padding-right: 5px; }

/*============================================================================
  #Grid Images
==============================================================================*/
.grid-image {
  display: table;
  table-layout: fixed;
  margin: 0 auto 12.5px;
  position: relative;
  padding: 0 8%;
  width: 100%; }
  .grid-image img {
    display: block;
    margin: 0 auto;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden; }
    .grid-image img:hover {
      opacity: 0.9;
      -webkit-transition: opacity 0.05s ease-out;
      -moz-transition: opacity 0.05s ease-out;
      -ms-transition: opacity 0.05s ease-out;
      -o-transition: opacity 0.05s ease-out;
      transition: opacity 0.05s ease-out; }
  .is-sold-out .grid-image img {
    opacity: 0.5;
    position: relative; }
    .is-sold-out .grid-image img:hover {
      opacity: 0.6;
      -webkit-transition: opacity 0.05s ease-out;
      -moz-transition: opacity 0.05s ease-out;
      -ms-transition: opacity 0.05s ease-out;
      -o-transition: opacity 0.05s ease-out;
      transition: opacity 0.05s ease-out; }

.grid-image--centered {
  display: table-cell;
  vertical-align: middle; }

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

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

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

@media screen and (min-width: 769px) {
  .selector-wrapper select,
  .product-variants select {
    max-width: 40%; } }
.selector-wrapper {
  padding-right: 25px; }

/*================ Product Title ================*/
.item-product-title {
  padding: 0 0 40px 24px; }
  .item-product-title h1, .item-product-title .h1 {
    text-align: center;
    margin-bottom: 10px; }
  .item-product-title h2, .item-product-title .h2,
  .item-product-title .h2 {
    font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-size: 13px;
    color: #a1a1a1;
    text-transform: uppercase; }
  .item-product-title .collection-title {
    font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
    color: #a1a1a1;
    font-size: 0.93333em;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase; }
    .item-product-title .collection-title:hover, .item-product-title .collection-title:active, .item-product-title .collection-title:focus {
      color: #403f3f; }

/*================ Product Description ================*/
.item-product-description {
  margin-bottom: 0; }
  .item-product-description ul,
  .item-product-description ol {
    margin-left: 0;
    list-style-position: inside; }

/*================ Product Images ================*/
@media screen and (max-width: 480px) {
  .item-product-photo {
    left: 0; } }
@media screen and (max-width: 480px) {
  .item-product-thumbnails {
    left: 0; }

  .product-photo-thumbs {
    text-align: center; }
    .product-photo-thumbs li {
      padding-right: 10px;
      display: inline-block; } }
.product-photo-container {
  margin-bottom: 25px; }

.product-photo-container img,
.product-photo-thumbs img {
  display: block;
  margin: 0 auto; }
.product-photo-container li,
.product-photo-thumbs li {
  margin-bottom: 25px; }

.product-photo-thumb {
  opacity: 0.4;
  max-width: 70px;
  margin-right: 0;
  margin-left: auto;
  display: block;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }
  .product-photo-thumb img {
    max-width: 60px; }
  .product-photo-thumb:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.05s ease-in;
    -moz-transition: opacity 0.05s ease-in;
    -ms-transition: opacity 0.05s ease-in;
    -o-transition: opacity 0.05s ease-in;
    transition: opacity 0.05s ease-in; }
  .product-photo-thumb.active, .product-photo-thumb:active {
    opacity: 1;
    -webkit-transition: opacity 0.05s ease-in;
    -moz-transition: opacity 0.05s ease-in;
    -ms-transition: opacity 0.05s ease-in;
    -o-transition: opacity 0.05s ease-in;
    transition: opacity 0.05s ease-in; }

/*================ Add To Cart Form ================*/
.form-add-to-cart {
  text-align: center; }
  .form-add-to-cart > div {
    display: inline-block;
    margin-top: 15px; }
  @media screen and (max-width: 769px) {
    .form-add-to-cart .selector-wrapper {
      display: block; } }
  @media screen and (max-width: 480px) {
    .form-add-to-cart > div {
      display: block; } }
  .form-add-to-cart .js-qty {
    display: inline-block; }
  .form-add-to-cart .single-option-selector {
    min-width: 155px;
    max-width: 205px; }
  @media screen and (min-width: 480px) {
    .form-add-to-cart .price-container {
      margin-right: 25px;
      margin-left: 40px; } }
  .form-add-to-cart .price-container .compare-price {
    display: inline-block;
    color: #a1a1a1;
    text-decoration: line-through;
    font-size: 1.33333em;
    margin-right: 10px; }
  .form-add-to-cart .product-price {
    color: #403f3f;
    font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-size: 1.73333em;
    display: inline-block; }
  .form-add-to-cart label {
    padding: 0 20px 0 10px; }
  .form-add-to-cart .form-item-container {
    font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif; }

.add-to-cart-container {
  position: relative; }

.btn-add-to-cart {
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
  margin-top: -2px;
  text-transform: uppercase; }
  .btn-add-to-cart .out-of-stock-icon-wrapper {
    display: none; }
  .btn-add-to-cart.disabled {
    background-color: #c14949;
    color: #fff; }
    .btn-add-to-cart.disabled .out-of-stock-icon-wrapper {
      display: inline-block;
      position: relative; }
    .btn-add-to-cart.disabled .icon-error {
      display: inline-block;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      line-height: 10px;
      font-size: 1em;
      margin-right: 5px;
      margin-left: -2px; }

.qty-container input[type="number"] {
  max-width: 60px;
  text-align: center;
  margin: 0 auto; }

.low-stock-container {
  position: absolute;
  font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #c14949;
  width: 100%;
  text-align: center;
  padding-top: 5px;
  font-size: 0.8em; }
  .low-stock-container img {
    margin-bottom: -2px; }

/*============================================================================
  #Carousel Pagination
==============================================================================*/
.owl-dots {
  text-align: center; }

.owl-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #ebebeb;
  margin: 7px; }
  .owl-dot.active {
    background-color: transparent;
    width: 10px;
    height: 10px;
    border: 2px solid #0033cc;
    border-radius: 5px;
    margin-bottom: 6px; }

/*============================================================================
  #Related Product Carousel
==============================================================================*/
.carousel {
  position: relative;
  margin: 0 -12px; }
  .carousel .owl-nav {
    width: 100%;
    position: absolute;
    top: 30%;
    z-index: 1; }
  .carousel:hover .carousel__nav-control {
    opacity: 0.5;
    -webkit-transition: opacity 0.05s ease-in;
    -moz-transition: opacity 0.05s ease-in;
    -ms-transition: opacity 0.05s ease-in;
    -o-transition: opacity 0.05s ease-in;
    transition: opacity 0.05s ease-in; }
  .carousel .owl-carousel {
    display: block; }
    .carousel .owl-carousel .owl-item {
      -webkit-backface-visibility: visible; }
  @media screen and (min-width: 480px) {
    .carousel {
      padding: 0 120px;
      margin: 0; } }
  @media screen and (max-width: 480px) {
    .carousel {
      margin: 0 -25px; }
      .carousel .owl-item {
        opacity: 0.6; }
        .carousel .owl-item .product-item__name, .carousel .owl-item .collection-item__title,
        .carousel .owl-item .product-item__price {
          visibility: hidden; }
        .carousel .owl-item.active {
          opacity: 1; }
          .carousel .owl-item.active .product-item__name, .carousel .owl-item.active .collection-item__title,
          .carousel .owl-item.active .product-item__price {
            visibility: visible; } }

.carousel__title {
  font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 1.66667em;
  color: #403f3f; }

.carousel__items {
  margin-left: 0;
  margin-top: 50px; }
  .carousel__items .grid-item {
    padding-left: 0px; }

.carousel__nav-control {
  width: 35px;
  height: 35px;
  position: absolute;
  padding: 5px;
  background-color: #403f3f;
  color: white;
  opacity: 0.15;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }
  .carousel__nav-control:hover, .carousel__nav-control:active {
    background-color: #403f3f;
    color: white;
    opacity: 0.8;
    -webkit-transition: opacity 0.05s ease-in;
    -moz-transition: opacity 0.05s ease-in;
    -ms-transition: opacity 0.05s ease-in;
    -o-transition: opacity 0.05s ease-in;
    transition: opacity 0.05s ease-in; }

.carousel__nav-control--next {
  right: -95px; }

.carousel__nav-control--prev {
  left: -95px; }

/*============================================================================
  # Homepage Slider
==============================================================================*/
.homepage-slider {
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: 25px; }
  .homepage-slider .owl-nav {
    display: none; }

/*============================================================================
  #Filter Dropdowns
==============================================================================*/
.filter-dropdown {
  position: relative;
  max-width: 250px;
  height: 60px;
  margin: 0 auto; }

.supports-pointerevents .filter-dropdown__select {
  position: absolute; }
.supports-pointerevents .filter-dropdown__label {
  font-size: 15px;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: dimgrey;
  background-color: white;
  font-weight: normal;
  display: block;
  text-align: left;
  position: absolute;
  top: 3px;
  left: 8px;
  margin: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  pointer-events: none;
  z-index: 1; }

/*============================================================================
  #Blogs and Comments
==============================================================================*/
.blog__name {
  font-size: 0.93333em;
  text-transform: uppercase;
  color: #a1a1a1;
  font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px; }
  .blog__name:hover, .blog__name:active, .blog__name:focus {
    color: #403f3f; }

.blog__details,
.blog-list__details {
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #a1a1a1;
  padding-top: 0px;
  margin-top: -10px;
  text-transform: uppercase; }
  .blog__details .bullet,
  .blog-list__details .bullet {
    margin: 0 10px; }

/*================ Blog List Styles ================*/
.blog-list {
  text-align: center; }

.blog-list__filters {
  font-size: 15px; }

.blog-list__title {
  margin-bottom: 22px; }

.blog-list__excerpt {
  margin-top: 14px; }
  .blog-list__excerpt p:last-child {
    margin-bottom: 0; }

.blog-list__btn-read-more {
  margin-bottom: 55px;
  text-transform: uppercase; }

.blog-list__read-more {
  margin-top: 15px;
  text-transform: uppercase; }

/*================ Article ================*/
.blog-article__content {
  margin-top: -22px; }

/*================ Comments ================*/
.blog-comments h3, .blog-comments .h3,
.blog-comments .h3 {
  text-align: center;
  margin: 55px 0 35px; }

.comment {
  width: 100%; }
  .comment .comment__content {
    padding-left: 25px;
    word-wrap: break-word; }

.comment__details p {
  text-align: right;
  margin: 0px; }

.comment__author {
  font-size: 1em;
  font-family: "Merriweather", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #403f3f;
  text-transform: capitalize;
  padding-top: 2px; }

.comment__date {
  font-size: 0.86667em;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #a1a1a1;
  text-transform: uppercase; }

.comment-form__errors {
  margin-top: 25px; }

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

.note {
  border-color: #ebebeb; }

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

.form-success {
  color: #0a942a;
  background-color: #ecfef0;
  border-color: #0a942a; }

.form-error {
  color: #c14949; }
  .form-error.inline {
    display: inline-block; }

.errors {
  color: #c14949;
  background-color: white;
  border-color: #c14949; }

/*============================================================================
  #Cart Page
==============================================================================*/
@media screen and (min-width: 769px) {
  .template-cart .cart-wrapper {
    max-width: 85%;
    margin: 0 auto 50px; } }
.cart-row {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ebebeb; }
  .cart-row:first-child {
    margin-top: 0; }
  .cart-row:first-child {
    padding-top: 0;
    border-top: 0 none; }
  .cart-row .js-qty,
  .cart-row .ajaxifyCart--qty {
    display: inline-block;
    margin: 0; }

.cart__additional-checkout-buttons {
  margin-top: 10px; }

.cart-item__remove {
  display: block; }

@media screen and (min-width: 769px) {
  .cart-row__table-layout {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart-row__table-layout .grid, .cart-row__table-layout .grid--rev, .cart-row__table-layout .grid--full {
      display: table; }
    .cart-row__table-layout .grid-item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart-image {
  display: block;
  margin: 0 auto;
  max-width: 150px; }
  .cart-image img {
    display: block;
    margin: 0 auto; }

.cart-subtotal__label {
  display: inline; }

.cart-subtotal__price {
  margin: 0 0 0 50px;
  display: inline-block; }

.cart-subtotal__note {
  padding: 25px 0;
  margin-bottom: 0; }

.cart-mini-labels {
  display: block;
  margin: 8.33333px 0;
  font-size: 0.8em; }
  @media screen and (min-width: 769px) {
    .cart-mini-labels {
      display: none; } }

.cart__note-add.is-hidden {
  display: none; }

.cart__note {
  display: none; }
  .cart__note.is-active {
    display: block; }

.cart-row .update-cart {
  margin-right: 10px; }

.cart-subtotal {
  text-align: right; }

@media screen and (max-width: 480px) {
  .cart-wrapper .input-full {
    margin-bottom: 0px; }
  .cart-wrapper input[type="submit"] {
    display: block;
    margin: 10px auto; }

  .cart-summary {
    text-align: center; }

  .cart-subtotal {
    text-align: center; }

  .cart__note-wrapper {
    margin-bottom: 25px; } }
/*============================================================================
  #Collection List Page
==============================================================================*/
.collection-list .section-header,
.collection-list h1,
.collection-list .h1 {
  margin-bottom: -10px; }

.collection-list__header {
  padding-bottom: 30px; }

.collection-item {
  position: relative;
  display: inline-block;
  width: 49%;
  margin-top: 60px; }

.collection-item__image {
  display: block;
  margin: 0 auto; }

.collection-sorting {
  margin-top: 25px;
  /*================ Medium Up Breakpoint ================*/ }
  @media screen and (min-width: 480px) {
    .collection-sorting {
      margin: 25px 60px 0 60px; }
      .collection-sorting .grid-item {
        padding: 0 15px; } }

/*============================================================================
  # Login and Account
==============================================================================*/
.account__header {
  margin-bottom: 1.2em; }
  .account__header h1, .account__header .h1 {
    margin-bottom: 0; }

/*============================================================================
  #Contact Page
==============================================================================*/
.contact-form__title {
  margin: 50px 0 30px; }

.contact-form__errors {
  margin-top: 25px; }