/*============================================================================
  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
  #Sass Mixins
  #General Variables
  #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
  #Announcement Bar
  #Site Header
  #Site Nav and Dropdowns
  #Drawers
  #Site Footer
  #Product Grid and List Views
  #Collection Filters
  #Collection Page
  #Product Page
  #Blogs and Comments
  #Search Results
  #Notes and Form Feedback
  #Cart Page
  #Password Page
  #Demo Styles - for empty store state
  #Flexslider
  #Magnific Popup
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: "";
    display: table;
    clear: both; }

/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
/*============================================================================
  Get font-families from theme settings
==============================================================================*/
@font-face {
  font-family: 'icons';
  src: url("icons_v-2246283889784347773.eot");
  src: url("icons_v-2246283889784347773.eot#iefix") format("embedded-opentype"), url("icons_v-9161989209420131048.woff") format("woff"), url("icons_v-13887685440757170070.ttf") format("truetype"), url("icons_v-11614860747476194831-timber-icons.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

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

.grid-item {
  float: left;
  min-height: 1px;
  padding-left: 30px;
  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 {
  width: 50%; }

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Styles
==============================================================================*/
.site-footer {
  padding: 0 0 30px; }

.placeholder-svg, .icon--placeholder {
  display: block;
  fill: rgba(89, 88, 88, 0.35);
  background-color: rgba(89, 88, 88, 0.05);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(89, 88, 88, 0.15); }

.collection-grid .placeholder-svg {
  max-height: 515px;
  max-width: 515px;
  margin: 0 auto; }

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

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

.image-bar__content .placeholder-image {
  position: absolute;
  top: 0;
  left: 0; }

@media screen and (min-width: 1025px) {
  .flexslider .placeholder-svg {
    height: 402px; } }

.grid-link__image-centered .placeholder-svg {
  height: initial;
  max-height: initial; }

/*================ Module-specific styles ================*/
.collection__grid-image-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto; }

.collection__grid-image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }
  .collection__grid-image:not(.lazyloaded) {
    opacity: 0; }

.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media screen and (max-width: 1024px) {
    .feature-row {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-align: stretch;
      -webkit-align-items: stretch;
      -moz-align-items: stretch;
      -ms-align-items: stretch;
      -o-align-items: stretch;
      align-items: stretch; } }

.feature-row__item {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%; }
  @media screen and (max-width: 1024px) {
    .feature-row__item {
      -webkit-flex: 1 1 auto;
      -moz-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      max-width: 100%; } }

.feature-row__image-wrapper {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  position: relative; }
  @media screen and (max-width: 1024px) {
    .feature-row__image-wrapper {
      order: 1; } }

.feature-row__image {
  display: block;
  margin: 0 auto;
  max-width: 100%; }
  .js .feature-row__image {
    width: 100%;
    position: absolute;
    top: 0; }
  .feature-row__image.lazyload {
    opacity: 0; }

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media screen and (max-width: 1024px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media screen and (min-width: 1025px) {
  .feature-row__text--left {
    padding-left: 35px; }

  .feature-row__text--right {
    padding-right: 35px; } }
@media screen and (min-width: 1025px) {
  .featured-row__subtext {
    font-size: 1.125em; } }
.article__featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block; }

.article__featured-image-wrapper {
  position: relative;
  margin-bottom: 30px; }
  .no-js .article__featured-image-wrapper {
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px; }

.featured-blog__post {
  margin-bottom: 30px; }
  .featured-blog__post .rte {
    margin-top: 18px; }
  .featured-blog__post .read-more {
    font-size: 0.8em; }
  .featured-blog__post .meta {
    line-height: 1.3; }

.article__featured-image-wrapper-nojs {
  margin-bottom: 30px; }

.helper .article__featured-link {
  margin-bottom: 30px; }

.page-content__item:not(:first-child) {
  margin-top: 30px; }

.newsletter-section {
  padding: 50px 0; }
  @media screen and (max-width: 1024px) {
    .newsletter-section {
      padding: 50px 15px; } }
  .newsletter-section .section-header__title {
    margin-top: -10px; }
  .newsletter-section form {
    max-width: 350px;
    margin: 0 auto; }
  .newsletter-section .errors {
    text-align: left; }

.map-section__wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .ie9 .map-section__wrapper {
    display: block;
    position: relative; }

.map-section__content {
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 50%;
  overflow: hidden;
  position: relative; }
  @media screen and (max-width: 1024px) {
    .map-section__content {
      -webkit-flex: 0 1 100%;
      -moz-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      max-width: 100%; } }
  @media screen and (min-width: 1025px) {
    .ie9 .map-section__content {
      width: 50%; } }

.map-section__image {
  height: 100%;
  background-size: cover;
  background-position: center;
  padding-top: 50%; }
  @media screen and (max-width: 1024px) {
    .map-section__image {
      order: 1; } }
  @media screen and (min-width: 1025px) {
    .map-section__image {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; } }
  .map-section--display-map .map-section__image {
    display: none !important; }

.icon-pin {
  height: 12.8px;
  position: relative;
  top: 1px; }

@media screen and (min-width: 1025px) {
  .ie9 .map-section__background-wrapper {
    left: 50%;
    height: 100%;
    top: 0;
    position: absolute; } }

.map-section__placeholder {
  height: 100%; }
  @media screen and (min-width: 1025px) {
    .map-section__placeholder {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; } }
  .map-section--display-map .map-section__placeholder {
    display: none !important; }

.map-section__text {
  padding: 30px;
  background-color: #f9f9f9; }
  @media screen and (max-width: 1024px) {
    .map-section__text {
      order: 0; } }

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

@media screen and (min-width: 1025px) {
  .map-section--load-error {
    width: 50%;
    margin: 0 auto; } }
.map-section--load-error .errors {
  width: 100%; }

.rich-text__heading--large {
  font-size: 2em; }

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

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

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

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

.main-content {
  display: block;
  margin-top: 30px; }

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
  *zoom: 1; }
  .wrapper:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 480px) {
    .wrapper {
      padding: 0 30px; } }
  @media screen and (min-width: 1025px) {
    .wrapper {
      padding: 0 60px; }
      .site-header .wrapper {
        padding: 0 20px; } }

/*============================================================================
  #Helper Classes
==============================================================================*/
.hide {
  display: none !important; }

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

.table-contain {
  display: table;
  height: 100%;
  width: 100%; }

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

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  border-radius: 0;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

input,
textarea,
button,
select {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: #262525;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 0.5em; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    font-weight: inherit; }

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

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

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

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

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

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

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.5em;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 0; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: "\2014 \0020"; }
  @media screen and (min-width: 1025px) {
    blockquote {
      font-size: 1.5em;
      line-height: 1.875em;
      margin-left: -20%;
      width: 140%;
      text-align: center; } }

/*================ 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: 15px;
  margin: 0 0 30px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #e7e7e7;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    border-width: 1px 0 0;
    margin: 15px auto;
    width: 20px; }
  hr.hr--clear {
    margin-top: 0;
    border: 0; }
  @media screen and (min-width: 1025px) {
    hr {
      margin: 60px 0; } }

/*================ Section Headers ================*/
.section-header {
  margin-bottom: 20px; }
  .section-header .form-horizontal {
    display: inline-block;
    vertical-align: middle; }

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

  .section-header__title {
    margin-bottom: 12px; } }
/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #595858; }
  .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: 1em;
    text-align: center;
    color: #262525; }
    .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 h3, .rte .h3 {
    font-size: 1.125em; }
  .rte > div {
    margin-bottom: 15px; }
  .rte ul, .rte ol {
    margin-left: 35px; }
  .rte.text-center ul, .rte.text-center ol, .text-center .rte ul, .text-center .rte ol {
    margin-left: 0;
    list-style-position: inside; }
  .rte.small {
    font-size: 0.75em; }
  .rte.large {
    font-size: 1.25em; }
  .rte ul ul {
    list-style-type: circle; }
  .rte li {
    margin-bottom: 0.4em; }
  .rte img {
    max-width: 100%;
    height: auto; }
  @media screen and (min-width: 1025px) {
    .rte .banner-img {
      width: 120%;
      max-width: 120%;
      margin-left: -10%;
      margin-right: -10%; }
    .rte img:not([style]) {
      display: block;
      margin: 0 auto; } }
  .rte table {
    table-layout: fixed; }

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

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

a:hover,
a:focus {
  color: #595858;
  text-decoration: underline; }

button {
  overflow: visible; }

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

.btn, .btn--secondary,
input.btn--secondary, .shopify-payment-button .shopify-payment-button__button--unbranded, input[type="submit"] {
  background-color: #fcd90c;
  color: #080808;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  line-height: 1.42;
  margin: 0;
  padding: 7.5px 15px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .btn:hover, .btn--secondary:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover, input[type="submit"]:hover {
    background-color: #d2b403;
    color: #080808; }
  .btn:active:not(.btn--no-focus), .btn--secondary:active:not(.btn--no-focus), .shopify-payment-button .shopify-payment-button__button--unbranded:active:not(.btn--no-focus), input[type="submit"]:active:not(.btn--no-focus), .btn:focus:not(.btn--no-focus), .btn--secondary:focus:not(.btn--no-focus), .shopify-payment-button .shopify-payment-button__button--unbranded:focus:not(.btn--no-focus), input[type="submit"]:focus:not(.btn--no-focus) {
    background-color: #d2b403;
    color: #080808; }
  .btn[disabled], [disabled].btn--secondary, .shopify-payment-button [disabled].shopify-payment-button__button--unbranded, input[disabled][type="submit"], .btn.disabled, .disabled.btn--secondary, .shopify-payment-button .disabled.shopify-payment-button__button--unbranded, input.disabled[type="submit"] {
    cursor: default;
    color: #717171;
    background-color: #f6f6f6; }
    .btn[disabled]:active:not(.btn--no-focus), [disabled].btn--secondary:active:not(.btn--no-focus), .shopify-payment-button [disabled].shopify-payment-button__button--unbranded:active:not(.btn--no-focus), input[disabled][type="submit"]:active:not(.btn--no-focus), .btn[disabled]:focus:not(.btn--no-focus), [disabled].btn--secondary:focus:not(.btn--no-focus), .shopify-payment-button [disabled].shopify-payment-button__button--unbranded:focus:not(.btn--no-focus), input[disabled][type="submit"]:focus:not(.btn--no-focus), .btn.disabled:active:not(.btn--no-focus), .disabled.btn--secondary:active:not(.btn--no-focus), .shopify-payment-button .disabled.shopify-payment-button__button--unbranded:active:not(.btn--no-focus), input.disabled[type="submit"]:active:not(.btn--no-focus), .btn.disabled:focus:not(.btn--no-focus), .disabled.btn--secondary:focus:not(.btn--no-focus), .shopify-payment-button .disabled.shopify-payment-button__button--unbranded:focus:not(.btn--no-focus), input.disabled[type="submit"]:focus:not(.btn--no-focus) {
      color: #717171;
      background-color: #f6f6f6 !important; }

.btn--secondary,
input.btn--secondary {
  background-color: transparent;
  color: #fcd90c;
  border-color: #fcd90c; }
  .btn--secondary:hover,
  input.btn--secondary:hover {
    background-color: transparent;
    color: #d2b403;
    border-color: #d2b403; }
  .btn--secondary:active:not(.btn--no-focus), .btn--secondary:focus:not(.btn--no-focus),
  input.btn--secondary:active:not(.btn--no-focus),
  input.btn--secondary:focus:not(.btn--no-focus) {
    background-color: transparent !important;
    background-color: #d2b403;
    color: #d2b403; }
  .btn--secondary[disabled], .btn--secondary.disabled,
  input.btn--secondary[disabled],
  input.btn--secondary.disabled {
    color: #717171;
    background-color: #f6f6f6;
    border-color: #f6f6f6; }

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

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

.btn--full {
  width: 100%;
  white-space: normal; }

/*================ Smart Payment Buttons ================*/
.shopify-payment-btn {
  margin-top: 15px; }
  @media screen and (max-width: 1024px) {
    .product-single__shopify-payment-btn .shopify-payment-btn {
      width: calc(50% - 10px);
      float: left; } }
  @media screen and (max-width: 768px) {
    .product-single__shopify-payment-btn .shopify-payment-btn {
      width: 100%; } }

.shopify-payment-button {
  margin-top: 15px; }
  @media screen and (max-width: 1024px) {
    .shopify-payment-button {
      width: calc(50% - 10px);
      float: right; } }
  @media screen and (max-width: 768px) {
    .shopify-payment-button {
      width: 100%; } }
  .shopify-payment-button .shopify-payment-button__button--unbranded {
    padding: 12px 15px;
    font-size: 1em;
    width: 100%;
    white-space: normal;
    border-radius: 0; }
    .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
      background-color: #d2b403 !important; }
  .shopify-payment-button .shopify-payment-button__button--branded {
    min-height: 48px; }
  .shopify-payment-button .shopify-payment-button__more-options {
    font-size: 0.875em;
    color: #595858;
    background: transparent;
    text-decoration: none; }
    .shopify-payment-button .shopify-payment-button__more-options:hover, .shopify-payment-button .shopify-payment-button__more-options:focus {
      text-decoration: none !important;
      color: #595858; }

/*================ 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 30px;
  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, .rte ul ul ul, ul.disc, .rte ul {
  margin-left: 20px; }

ul.square, .rte ul ul ul {
  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: 1px solid #e7e7e7;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }
  table p {
    margin-bottom: 0; }

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

th {
  font-weight: bold; }

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

/*============================================================================
  #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
==============================================================================*/
::-webkit-input-placeholder {
  color: #595858;
  opacity: 0.6; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #595858;
  opacity: 0.6; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #595858;
  opacity: 0.6; }

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

::-ms-input-placeholder {
  /* Edge 12+ */
  color: #595858;
  opacity: 1; }

form {
  margin: 0 0 15px; }

select {
  font-size: 0.75em; }

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

button#update, button#checkout {
  margin-bottom: 3px; }

button#update {
  margin-right: 3px; }

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

input,
select,
textarea {
  padding: 15px 13.5px;
  line-height: 1.42; }

input {
  padding: 10px 13.5px; }

fieldset {
  border: 1px solid #e7e7e7;
  padding: 15px; }

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 {
  background-color: white;
  color: #595858;
  border: 1px solid #e7e7e7;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 1em; }
  .input-group input[type="text"], .input-group
  input[type="search"], .input-group
  input[type="password"], .input-group
  input[type="email"], .input-group
  input[type="file"], .input-group
  input[type="number"], .input-group
  input[type="tel"], .input-group
  textarea, .input-group
  select {
    border: 0;
    border-right: 1px solid #e7e7e7; }
  input[type="text"]:focus,
  input[type="search"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="file"]:focus,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  textarea:focus,
  select:focus {
    border: inherit solid #cecece; }
  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: #717171; }

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("ico-select_v-17256351143885405836.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 6px;
  background-color: white;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    background-image: none;
    padding-right: 10px; }

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

/*================ Form labels ================*/
label,
legend {
  color: #595858;
  display: block;
  margin-bottom: 2px;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  font-weight: bold; }
  label.inline,
  legend.inline {
    display: inline; }

/*================ Accessible labels ====================*/
.visuallyhidden {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

/*================ Off-screen labels with placeholder ================*/
.form-label--hidden {
  display: inline; }
  .ie9 .form-label--hidden .visuallyhidden, .lt-ie9 .form-label--hidden .visuallyhidden {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

/*================ 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: #dc0000;
  background-color: #fff6f6;
  color: #dc0000; }

label.error {
  color: #dc0000; }

/*================ Input Group ================*/
.input-group {
  border: 1px solid #e7e7e7;
  border-collapse: separate;
  display: table;
  position: relative; }
  .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 .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .input-group .shopify-payment-button__button--unbranded, .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 .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .input-group-btn .shopify-payment-button__button--unbranded, .input-group-btn input[type="submit"] {
    background-color: transparent; }
    .input-group-btn .btn .icon, .input-group-btn .btn--secondary .icon, .input-group-btn .shopify-payment-button .shopify-payment-button__button--unbranded .icon, .shopify-payment-button .input-group-btn .shopify-payment-button__button--unbranded .icon, .input-group-btn input[type="submit"] .icon {
      color: #595858;
      position: relative;
      top: 1px; }

/*============================================================================
  #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";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

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

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

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

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

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

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

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

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

.icon-comment:before {
  content: "\e60b"; }

.icon-cross:before {
  content: "\e60d"; }

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

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

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

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

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

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

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

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

.icon-google_pay:before {
  content: "\e90d"; }

.icon-google_plus:before {
  content: "\e902"; }

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

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

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

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

.icon-klarna:before {
  content: "\e90a"; }

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

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

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

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

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

.icon-pin:before {
  content: "\e90c"; }

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

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

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

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

.icon-shopify_pay:before {
  content: "\e90b"; }

.icon-snapchat:before {
  content: "\e909"; }

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

.icon-tag:before {
  content: "\e60c"; }

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

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

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

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

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

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

.payment-icons {
  cursor: default;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }
  .payment-icons li {
    margin: 0 0 0 7.5px;
    color: dimgrey;
    cursor: default; }
  .payment-icons li:first-child {
    margin: 0; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }
  .payment-icons .icon-shopify_pay {
    font-size: 25px;
    line-height: 25px; }

.social-icons {
  margin: 0; }

.social-icons li {
  margin: 0 0 0 10px;
  vertical-align: middle; }
  .social-icons li:first-child {
    margin: 0; }
  .social-icons li .icon {
    font-size: 24px;
    line-height: 26px; }
  .social-icons li a {
    color: dimgrey; }
    .social-icons li a:hover {
      color: #4f4f4f; }

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

.pagination-custom {
  display: inline-block;
  margin: 30px 0 30px;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  padding-left: 0; }

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

.pagination-custom > li > a,
.pagination-custom > li > span {
  float: left;
  line-height: 1.42;
  margin-left: -1px;
  padding: 5px 10px;
  position: relative; }

.pagination-custom > li:first-child > a,
.pagination-custom > li:first-child > span {
  margin-left: 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 {
  color: #595858;
  cursor: default;
  z-index: 2; }

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

.pagination-custom-lg > li > a,
.pagination-custom-lg > li > span {
  font-size: 1.125em;
  padding: 10px 16px; }

.pagination-custom-sm > li > a,
.pagination-custom-sm > li > span {
  padding: 5px 10px;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em; }

/*============================================================================
  #Announcement Bar
==============================================================================*/
.announcement-bar {
  display: block;
  text-align: center;
  width: 100%;
  z-index: 10; }
  @media screen and (min-width: 1025px) {
    .announcement-bar {
      position: absolute; } }

.announcement-bar__message {
  font-weight: 400;
  margin-bottom: 0;
  padding: 8px 30px; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  background-color: white;
  overflow-y: visible;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  -webkit-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -moz-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -ms-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -o-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }
  .site-header .hr--small {
    border-color: #e6e6e6; }
  .supports-csstransforms .site-header {
    -webkit-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -ms-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -o-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }
  @media screen and (min-width: 1025px) {
    .site-header {
      height: 100%;
      overflow-y: auto;
      left: 0;
      padding: 90px 0 0;
      position: fixed; }
      .site-header .hr--small {
        margin: 15px auto 30px; }
      .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; } }

.header-logo {
  text-align: center;
  font-size: 1.5em;
  margin: 0 auto;
  word-wrap: break-word;
  line-height: 1; }
  @media screen and (min-width: 1025px) {
    .header-logo {
      margin-top: 5px;
      margin-bottom: 60px;
      font-size: 2em;
      line-height: 1.25em; } }
  .header-logo a, .header-logo img {
    color: #030303;
    display: block; }
  .header-logo img {
    margin: 0 auto;
    max-width: 100%;
    width: auto; }
  @media screen and (min-width: 1025px) {
    .header-logo img {
      max-height: none; } }
  .header-logo .logo {
    display: block;
    margin: 0 auto;
    max-width: 100%; }
    .js .header-logo .logo {
      width: 100%;
      position: absolute;
      top: 0; }
    .header-logo .logo.lazyload {
      opacity: 0; }
  .header-logo .logo-wrapper {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    position: relative; }

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

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

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.page-move--nav .nav-bar {
  height: 100%; }
.nav-bar .grid-item {
  height: 100%; }
.nav-bar .icon {
  color: #030303; }
.nav-bar .wrapper {
  padding: 0; }
@media screen and (min-width: 1025px) {
  .lt-ie9 .nav-bar {
    margin-top: -30px; } }

.site-nav {
  cursor: default;
  font-size: 0.9375em;
  margin: 0;
  width: 100%; }
  .site-nav li {
    border-top: 1px solid #e6e6e6;
    margin: 0; }
  .site-nav li:first-child {
    border-top: 0; }
  .site-nav li:last-child {
    border-bottom: 1px solid #e6e6e6; }
  @media screen and (min-width: 1025px) {
    .site-nav {
      text-align: center; }
      .site-nav li,
      .site-nav li:last-child {
        border: 0; } }
  .site-nav .grid-item {
    position: relative; }

@media screen and (min-width: 1025px) {
  .lt-ie9 .site-nav {
    display: inline-table; }
    .lt-ie9 .site-nav ul {
      margin: 0; }
    .lt-ie9 .site-nav li {
      border: 0;
      display: inline; } }
.site-nav__link, .site-nav__linkdrop {
  color: #030303;
  display: inline-block;
  font-weight: 300;
  padding: 15px;
  white-space: normal;
  max-width: 160px;
  width: 100%;
  -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; }
  .site-nav__link:active, .site-nav__linkdrop:active, .site-nav__link:hover, .site-nav__linkdrop:hover, .site-nav__link:focus, .site-nav__linkdrop:focus {
    color: #1c1c1c; }
  .site-nav__child-link--active .site-nav__link, .site-nav__child-link--active .site-nav__linkdrop {
    opacity: 1;
    color: black; }
  @media screen and (max-width: 1024px) {
    .site-nav__link, .site-nav__linkdrop {
      min-width: 250px; }
      .site-nav__link.site-nav__linknodrop, .site-nav__linknodrop.site-nav__linkdrop {
        padding-left: 15px; } }
  @media screen and (min-width: 1025px) {
    .site-nav__link, .site-nav__linkdrop {
      padding: 0 0 15px; }
      .site-nav__link:active, .site-nav__linkdrop:active, .site-nav__link:hover, .site-nav__linkdrop:hover, .site-nav__link:focus, .site-nav__linkdrop:focus {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none; } }

.site-nav__link--grandchild {
  font-size: 0.75em; }
  @media screen and (max-width: 1024px) {
    .site-nav__link--grandchild {
      padding-left: 35px; } }

@media screen and (max-width: 1025px) {
  .site-nav__linkdrop {
    width: auto;
    min-width: 0;
    padding-right: 7.5px; } }

.site-nav__linkdroparrow {
  padding-left: 7.5px; }

.site-nav__dropdown {
  background-color: #e6e6e6;
  display: none; }
  .site-nav__dropdown a {
    text-transform: none;
    opacity: 0.7;
    max-width: 160px;
    white-space: normal; }
  .site-nav__dropdown li {
    border-top: 1px solid #cccccc; }
  .site-nav__dropdown li:first-child {
    border-top: 1px solid #cccccc; }
  .site-nav__dropdown li:last-child {
    border-bottom: 0; }
  .site-nav--open-dropdown > .site-nav__dropdown {
    display: block; }
  @media screen and (max-width: 1025px) {
    .site-nav__dropdown {
      margin: 0; } }
  @media screen and (min-width: 1025px) {
    .site-nav__dropdown {
      margin: -10px 0 20px;
      background-color: transparent; }
      .site-nav__dropdown a {
        padding: 0; }
      .site-nav__dropdown li,
      .site-nav__dropdown li:first-child {
        border: 0; } }

@media screen and (min-width: 1025px) {
  .site-nav__dropdown--inner {
    margin: 0 10px 10px; } }

.site-nav--active,
.site-nav--active a {
  opacity: 1;
  color: black; }

.site-nav__dropdown-toggle {
  font-size: 1.0625em;
  float: right;
  background-color: transparent;
  color: #595858; }
  .site-nav__dropdown-toggle:hover {
    background-color: transparent;
    color: #8c8b8b; }
  @media screen and (min-width: 1025px) {
    .site-nav__dropdown-toggle {
      display: inline-block;
      float: none;
      padding: 0;
      margin-bottom: -1px;
      width: auto;
      position: absolute;
      bottom: calc(50% - 6px); } }
  @media screen and (max-width: 1025px) {
    .site-nav__dropdown-toggle {
      padding-top: 20px;
      padding-bottom: 12px;
      position: absolute; } }

@media screen and (min-width: 1025px) {
  .site-nav__dropdown-toggle--third-level {
    bottom: calc(50% - 14px); } }

@media screen and (min-width: 1025px) {
  .site-nav__label {
    display: inline-block;
    padding: 0 0 15px;
    width: auto;
    white-space: normal;
    max-width: 130px; } }

/*================ Mobile Nav ================*/
.cart-toggle,
.nav-toggle {
  color: #030303;
  display: inline-block;
  text-align: center;
  width: 100%; }
  .cart-toggle:active, .cart-toggle:hover, .cart-toggle:focus,
  .nav-toggle:active,
  .nav-toggle:hover,
  .nav-toggle:focus {
    color: #1c1c1c; }

.cart-toggle {
  font-size: 1.125em; }

.nav-toggle {
  font-size: 1.375em; }

@media screen and (min-width: 1025px) {
  .cart-toggle {
    font-size: 15px;
    height: auto;
    margin: 0;
    width: auto; } }
.hidden-count {
  display: none; }

.nav-mobile {
  position: absolute;
  background-color: white;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  height: 100%;
  top: 0;
  left: 0;
  height: 100%;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -moz-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -ms-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -o-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }
  .supports-csstransforms .nav-mobile {
    -webkit-transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -moz-transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -ms-transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -o-transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }
  @media screen and (min-width: 1025px) {
    .nav-mobile {
      display: none; } }
  .nav-mobile .page-move--nav {
    position: absolute; }
  .mobile-drawer--open .nav-mobile {
    overflow: auto;
    -webkit-overflow-scrolling: touch; }

.page-wrapper {
  background-color: white;
  min-height: 100%; }

.page-element.activated {
  -webkit-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -moz-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -ms-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -o-transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  transition: left 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }

.page-element {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; }
  @media screen and (max-width: 1025px) {
    .page-element {
      width: 100%; } }
  .page-move--nav .page-element, .page-move--cart .page-element {
    overflow: hidden; }
  .supports-csstransforms .page-element {
    -webkit-transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -moz-transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -ms-transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -o-transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    transition: all 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }

/*============================================================================
  #Drawers
==============================================================================*/
.page-move--nav,
.page-move--cart,
.page-move--toggled {
  overflow: hidden; }

.page-move--nav .page-element {
  box-shadow: 0 10px 15px #cccccc; }
.page-move--cart .page-element {
  box-shadow: 0 10px 15px #cccccc;
  left: -85%; }
  @media screen and (min-width: 1025px) {
    .page-move--cart .page-element {
      left: -50%; } }
  .supports-csstransforms .page-move--cart .page-element {
    left: 0;
    -webkit-transform: translateX(-85%);
    -moz-transform: translateX(-85%);
    -ms-transform: translateX(-85%);
    -o-transform: translateX(-85%);
    transform: translateX(-85%); }
    @media screen and (min-width: 1025px) {
      .supports-csstransforms .page-move--cart .page-element {
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%); } }

/*================ Move individual elements ================*/
.supports-csstransforms .page-move--nav .ajaxify-drawer {
  right: 0; }

@media screen and (min-width: 1025px) {
  .page-move--cart .site-header {
    left: -100%; }
    .supports-csstransforms .page-move--cart .site-header {
      left: 0;
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); } }
.page-move--cart .nav-mobile {
  left: -85%; }
  @media screen and (min-width: 1025px) {
    .page-move--cart .nav-mobile {
      left: -50%; } }
  .supports-csstransforms .page-move--cart .nav-mobile {
    left: 0;
    -webkit-transform: translateX(-85%);
    -moz-transform: translateX(-85%);
    -ms-transform: translateX(-85%);
    -o-transform: translateX(-85%);
    transform: translateX(-85%); }
    @media screen and (min-width: 1025px) {
      .supports-csstransforms .page-move--cart .nav-mobile {
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%); } }

/*================ Search bar =================*/
@media screen and (max-width: 1024px) {
  .nav-search {
    margin: 0 0 15px; } }

/*================ Secondary nav ================*/
.nav-secondary {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  margin: 0 0 15px; }
  .nav-secondary a {
    color: #262525; }
    .nav-secondary a:hover {
      color: #595858; }
  .nav-secondary li {
    margin: 0 0 0 15px; }
  .nav-secondary li:first-child {
    margin: 0; }

/*================ Page nav ====================*/
.article-pagination,
.product-pagination {
  border: 1px solid #e7e7e7;
  border-width: 1px 0;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  margin: 30px 0;
  padding: 30px 0; }
  .article-pagination.last,
  .product-pagination.last {
    border-bottom: 0;
    padding-bottom: 0; }
  .article-pagination p,
  .product-pagination p {
    margin: 0; }
  .article-pagination .article-pagination__sep,
  .article-pagination .product-pagination__sep,
  .product-pagination .article-pagination__sep,
  .product-pagination .product-pagination__sep {
    padding: 0 7.5px; }
  @media screen and (min-width: 1025px) {
    .article-pagination,
    .product-pagination {
      margin: 60px 0; } }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: white;
  color: #595858; }
  @media screen and (max-width: 1025px) {
    .site-footer small {
      display: block;
      padding-top: 30px; } }
  .site-footer a {
    color: #262525; }
  .site-footer hr {
    border-color: #e7e7e7; }
  .site-footer input[type="text"],
  .site-footer input[type="search"],
  .site-footer input[type="password"],
  .site-footer input[type="email"],
  .site-footer input[type="file"],
  .site-footer input[type="number"],
  .site-footer input[type="tel"],
  .site-footer textarea,
  .site-footer select {
    border-color: #e7e7e7;
    color: #595858; }
  .site-footer .input-group {
    border-color: #e7e7e7; }
    .site-footer .input-group .icon {
      color: #595858; }
  .site-footer .onboarding-header {
    margin-bottom: 15px; }
  .site-footer .rte h1, .site-footer .rte .h1, .site-footer .rte h2, .site-footer .rte .h2, .site-footer .rte h3, .site-footer .rte .h3, .site-footer .rte h4, .site-footer .rte .h4, .site-footer .rte h5, .site-footer .rte .h5, .site-footer .rte h6, .site-footer .rte .h6 {
    text-align: left; }
    @media screen and (max-width: 1025px) {
      .site-footer .rte h1, .site-footer .rte .h1, .site-footer .rte h2, .site-footer .rte .h2, .site-footer .rte h3, .site-footer .rte .h3, .site-footer .rte h4, .site-footer .rte .h4, .site-footer .rte h5, .site-footer .rte .h5, .site-footer .rte h6, .site-footer .rte .h6 {
        text-align: center; } }
  @media screen and (max-width: 1025px) {
    .site-footer .rte ul, .site-footer .rte ol {
      margin-left: 0;
      list-style-position: inside; } }

/*============================================================================
  #Index sections
==============================================================================*/
.index-section {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media screen and (min-width: 1024px) {
    .index-section {
      padding-top: 55px;
      padding-bottom: 55px; } }
  .index-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .index-section:last-child {
    padding-bottom: 0; }

.index-section--flush + .index-section--flush {
  margin-top: -70px; }
  @media screen and (min-width: 1024px) {
    .index-section--flush + .index-section--flush {
      margin-top: -110px; } }

.index-section--flush:first-child {
  margin-top: -35px; }
  @media screen and (min-width: 1024px) {
    .index-section--flush:first-child {
      margin-top: -55px; } }

.index-section--flush:last-child {
  margin-bottom: -35px; }
  @media screen and (min-width: 1024px) {
    .index-section--flush:last-child {
      margin-bottom: -55px; } }

@media screen and (max-width: 1024px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }
/*============================================================================
  #Blank states - placeholder images
==============================================================================*/
.placeholder-svg {
  display: block;
  fill: rgba(89, 88, 88, 0.35);
  background-color: rgba(89, 88, 88, 0.05);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(89, 88, 88, 0.15); }

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

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

.image-bar__content .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0; }

/*============================================================================
  #Product Grid and List Views
==============================================================================*/
.product {
  display: block;
  margin-bottom: 30px; }
  @media screen and (min-width: 1025px) {
    .product {
      position: relative; } }

.product-wrapper {
  position: relative; }

/*================ This hacks all the grid-items in IE8 and below ================*/
.lt-ie9 .product-grid .grid-item {
  display: inline-block;
  float: none;
  margin-bottom: 30px;
  margin-left: -3px;
  padding: 0; }
  .lt-ie9 .product-grid .grid-item .product {
    margin-bottom: 0; }
.lt-ie9 .product-wrapper {
  margin: 0 15px; }

@media screen and (min-width: 1025px) {
  .product:hover .product__cover,
  .product:hover .product__details {
    opacity: 1; }
  .product:hover .product__cover,
  .product:hover .product__img {
    -webkit-transform: scale(1.03, 1.03);
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -o-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
    /*================ Remove hover in IE8 and below ================*/ }
    .lt-ie9 .product:hover .product__cover, .lt-ie9
    .product:hover .product__img {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; } }

.product__img-wrapper {
  width: 100%;
  margin: 0 auto; }
  .product__img-wrapper.js {
    position: relative; }

.product__img {
  display: block;
  margin: 0 auto; }
  .product__img-wrapper.js .product__img {
    position: absolute;
    top: 0;
    width: 100%; }
  .product__img.lazyload {
    opacity: 0; }
  @media screen and (min-width: 1025px) {
    .product__img {
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
      -o-backface-visibility: hidden;
      backface-visibility: hidden; } }

.product__details {
  -webkit-transition: opacity 0.75s;
  -moz-transition: opacity 0.75s;
  -ms-transition: opacity 0.75s;
  -o-transition: opacity 0.75s;
  transition: opacity 0.75s; }

.product__cover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  @media screen and (min-width: 1025px) {
    .product__cover {
      background-color: rgba(255, 255, 255, 0.9); } }
  .product__cover .lt-ie9 .product__cover {
    display: none; }

.product__price {
  font-size: 16px; }

.product__title {
  font-size: 1.0625em;
  margin: 15px 0 0 0;
  line-height: 1.5; }
  @media screen and (min-width: 480px) and (max-width: 1025px) {
    .large--one-quarter .product__title {
      font-size: 0.75em; } }

.tag {
  background-color: #f6f6f6;
  color: #717171;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  padding: 5px 15px; }
  .on-sale-tag .tag {
    background-color: #595858;
    color: white; }

.sold-out-tag,
.on-sale-tag {
  margin: 0 0 15px;
  position: absolute;
  top: 15px;
  right: 15px; }

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

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

.filter-dropdown {
  height: 60px;
  margin: 0 auto;
  max-width: 250px;
  position: relative; }

@media screen and (min-width: 1024px) {
  .filter-dropdown__wrapper {
    display: inline-block;
    width: 225px; }

  .sorting-filters--enabled .collection-tags {
    margin-right: 25px; } }
.supports-pointerevents .filter-dropdown__select {
  position: absolute;
  text-indent: -999px; }
.supports-pointerevents .filter-dropdown__label {
  background-color: white;
  color: #595858;
  cursor: pointer;
  display: block;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  font-weight: normal;
  margin: 13px;
  max-width: 220px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1; }
  @media screen and (min-width: 1024px) {
    .supports-pointerevents .filter-dropdown__label {
      max-width: 195px; } }

/*============================================================================
  #Collection Page
==============================================================================*/
.collection-grid {
  margin-bottom: -30px; }

a.featured-box {
  border: 1px solid #e7e7e7;
  color: #595858;
  display: block;
  margin-bottom: 30px; }
  a.featured-box:hover {
    color: #8c8b8b; }

.featured-box__body {
  border-top: 0;
  margin-top: -15px;
  padding: 15px 10px; }
  .featured-box__body .btn--large {
    background-color: #fcd90c;
    color: #080808;
    font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-size: 0.75em;
    margin: 0;
    padding: 7.5px 0; }
  .featured-box__body .hr--small {
    position: relative;
    top: -5px; }
  @media screen and (min-width: 1025px) {
    .featured-box__body {
      padding: 30px 0; } }

.featured-box__title {
  margin: 0; }

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .medium--one-third .featured-box__title,
  .one-third .featured-box__title {
    font-size: 1.25em; } }
@media screen and (min-width: 1025px) {
  .large--one-third .featured-box__title,
  .one-third .featured-box__title {
    font-size: 1.25em; } }
/*============================================================================
  #Product Page
==============================================================================*/
.product-single {
  margin-bottom: 30px; }
  @media screen and (min-width: 1025px) {
    .product-single {
      margin-bottom: 60px; } }

.product-single__addtocart .add,
.product-single__addtocart .minus {
  color: #595858;
  font-size: 1.5em;
  position: relative; }
.product-single__addtocart .js-qty {
  margin-bottom: 15px;
  max-width: none; }
  .product-single__addtocart .js-qty input[type="text"] {
    background-color: white;
    padding: 14px 25px; }
.product-single__addtocart .js--qty-adjuster {
  width: 50px; }

.product-single__desc {
  margin: 30px 0; }
  @media screen and (min-width: 1025px) {
    .product-single__desc {
      margin: 60px 0; } }
  .product-single__desc h3, .product-single__desc .h3 {
    text-align: left; }

.product-single__header {
  margin-bottom: 30px; }
  @media screen and (min-width: 1025px) {
    .product-single__header {
      margin-bottom: 60px; } }

.product-single__photos {
  margin-bottom: 30px; }
  .product-single__photos noscript img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: auto; }

.product-single__image-wrapper {
  margin: 0 auto;
  position: relative;
  width: 100%; }

.product-single__image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }
  .product-single__image.lazyload {
    opacity: 0; }

.product-single__thumbs a,
.product-single__thumbs img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto; }
.product-single__thumbs li {
  margin-bottom: 30px;
  display: inline-block;
  float: none; }

.product-single__price {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }

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

.product-single__vendor {
  font-style: italic; }

.product-single__title.wvendor {
  margin: 0; }

.selector-wrapper {
  margin-bottom: 15px; }

.full-details {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer; }

.social-sharing a {
  color: #595858;
  display: inline-block;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  margin-bottom: 7.5px;
  margin-right: 7.5px;
  padding: 5px 10px;
  padding-left: 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; }
.social-sharing a:hover {
  color: #595858; }

.item-social-sharing {
  margin-top: 30px; }
  @media screen and (min-width: 1025px) {
    .item-social-sharing {
      margin-top: 60px; } }

/*============================================================================
  #Blogs and Comments
==============================================================================*/
.blog__name,
.collection-title {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  margin-bottom: 15px; }

.blog-post-single .meta,
.blog-post .meta {
  color: #595858;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em; }
  .blog-post-single .meta .meta__dot,
  .blog-post .meta .meta__dot {
    margin: 0 8px; }
    .blog-post-single .meta .meta__dot:before,
    .blog-post .meta .meta__dot:before {
      content: "\00B7";
      font-size: 20px;
      line-height: 0.9;
      vertical-align: bottom; }
.blog-post-single .rte a,
.blog-post .rte a {
  text-decoration: underline;
  color: #000 !important; }

.blog-meta {
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.5; }
  .blog-meta .meta {
    display: inline-block; }
  .blog-meta p {
    margin-bottom: 0px; }
  .blog-meta a {
    color: #595858; }
    .blog-meta a:hover, .blog-meta a:active {
      color: #333232; }

.blog-post .page-header {
  margin-bottom: 45px; }
.blog-post .icon {
  color: #595858; }
.blog-post .icon-comment {
  position: relative;
  top: 1px; }

.blog-post__full-image-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto; }

.blog-post__full-image {
  display: block;
  margin-bottom: 15px; }
  .blog-post__full-image img {
    display: block;
    margin: 0 auto; }
    .blog-post__full-image-wrapper .blog-post__full-image img {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      .blog-post__full-image-wrapper .blog-post__full-image img:not(.lazyloaded) {
        opacity: 0; }

.comments__title {
  margin: 15px 0 30px; }

.comments-form__title {
  margin: 50px 0 60px; }

@media screen and (min-width: 1025px) {
  .comments-form__author {
    padding-right: 5px; }

  .comments-form__email {
    padding-left: 5px; } }
.comments {
  margin-top: 40px; }
  .comments form {
    margin-top: 30px; }
  @media screen and (min-width: 1025px) {
    .comments form {
      margin-top: 60px; } }

.comment {
  margin-bottom: 30px; }
  .comment + .comment {
    padding-top: 30px; }

/*============================================================================
  #Search Results
==============================================================================*/
.search-results {
  margin-top: 30px; }
  .search-results a {
    color: #595858; }
  @media screen and (min-width: 1025px) {
    .search-results {
      margin-top: 60px; } }

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  padding: 15px 19.8px;
  margin-bottom: 15px;
  border: 1px solid transparent; }
  .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: #e7e7e7; }

.errors ul {
  list-style: disc inside; }

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

.form-error,
.errors {
  color: #dc0000;
  background-color: #fff6f6;
  border-color: #dc0000; }

/*============================================================================
  #Cart Page
==============================================================================*/
@media screen and (min-width: 1025px) {
  .template-cart .cart-wrapper {
    max-width: 75%;
    margin: 0 auto; } }
.cart__row {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid #e7e7e7; }
  @media screen and (max-width: 480px) {
    .cart__row {
      margin: 30px 0;
      padding-bottom: 0; }
      .cart__row:first-of-type {
        margin-top: 0; } }
  .cart__row .js-qty {
    margin: 0 auto; }
  .cart__row input[name="goto_pp"] {
    padding: 10px 0px 0px; }
  .cart__row .amazon-payments-pay-button {
    margin: 0;
    vertial-align: top; }

.cart__instructions {
  margin-bottom: 30px; }

.cart__image-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto 10px; }

.cart__image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }
  .cart__image:not(.lazyloaded) {
    opacity: 0; }

.cart__subtotal {
  display: inline;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 1.875em;
  margin: 0 0 0 10px; }

.cart__mini-labels {
  display: block;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  margin: 15px 0 0; }
  @media screen and (min-width: 1025px) {
    .cart__mini-labels {
      margin-top: 30px; } }

.cart__product {
  line-height: 1.625em;
  margin: 0; }

.cart__remove {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
  margin: 0 0 15px; }
  @media screen and (min-width: 1025px) {
    .cart__remove {
      margin-bottom: 0; } }

.cart-item__discount {
  display: block; }

.cart__additional_checkout_buttons > *:not(script) {
  padding: 3px 0 0 3px;
  vertical-align: top;
  line-height: 1; }
  .cart__additional_checkout_buttons > *:not(script):first-child, .cart__additional_checkout_buttons > *:not(script):empty {
    padding-left: 0px; }

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

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

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

/*============================================================================
  #Customer Account Page
==============================================================================*/
.customer-orders {
  overflow: auto; }

/*============================================================================
  Ajaxify.scss.liquid overrides
  - Make the drawer come from the right
==============================================================================*/
.ajaxify-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  width: 85%;
  overflow: hidden;
  -webkit-transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -moz-transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -ms-transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  -o-transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
  transition: right 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }
  @media screen and (min-width: 1025px) {
    .ajaxify-drawer {
      width: 50%; } }
  .ajaxify-drawer .ajaxifyCart--content {
    background-color: transparent;
    opacity: 1;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none; }
  .supports-csstransforms .ajaxify-drawer {
    -webkit-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -ms-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    -o-transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1);
    transition: transform 0.5s cubic-bezier(0.75, 0.03, 0.52, 1); }
  .page-move--cart .ajaxify-drawer, .page-move--nav .ajaxify-drawer {
    position: fixed;
    overflow: auto; }

/*================ Ajaxify color overrides ================*/
.ajaxify-drawer {
  color: #030303; }
  .ajaxify-drawer a {
    color: #1c1c1c;
    -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; }
    .ajaxify-drawer a:hover {
      color: #363636; }
  .ajaxify-drawer h1, .ajaxify-drawer .h1 {
    font-size: 1.5em; }
    @media screen and (min-width: 1025px) {
      .ajaxify-drawer h1, .ajaxify-drawer .h1 {
        margin-bottom: 30px; } }
  .ajaxify-drawer h1, .ajaxify-drawer .h1, .ajaxify-drawer h2, .ajaxify-drawer .h2, .ajaxify-drawer h3, .ajaxify-drawer .h3, .ajaxify-drawer h4, .ajaxify-drawer .h4, .ajaxify-drawer h5, .ajaxify-drawer .h5, .ajaxify-drawer h6, .ajaxify-drawer .h6,
  .ajaxify-drawer input[type="text"] {
    color: #030303; }
  .ajaxify-drawer label,
  .ajaxify-drawer .cart__mini-labels {
    color: #363636; }
  .ajaxify-drawer label {
    margin-bottom: 7.5px; }
  .ajaxify-drawer textarea {
    background-color: white;
    border-color: #d9d9d9;
    color: #030303; }
  .ajaxify-drawer .cart__product a {
    color: black; }
    .ajaxify-drawer .cart__product a:hover {
      color: black; }
  .ajaxify-drawer .cart__row,
  .ajaxify-drawer .ajaxifyCart--num,
  .ajaxify-drawer .ajaxifyCart--add,
  .ajaxify-drawer .ajaxifyCart--minus {
    border-color: #d9d9d9; }
  .ajaxify-drawer .js--qty-adjuster:hover,
  .ajaxify-drawer .ajaxifyCart--qty-adjuster:hover,
  .ajaxify-drawer .js--qty-adjuster:active,
  .ajaxify-drawer .ajaxifyCart--qty-adjuster:active {
    background-color: #bfbfbf; }

.ajaxifyCart--add .add,
.ajaxifyCart--add .minus,
.ajaxifyCart--minus .add,
.ajaxifyCart--minus .minus {
  color: #030303; }
.js--qty-adjuster:hover .ajaxifyCart--add,
.ajaxifyCart--add .ajaxifyCart--qty-adjuster:hover, .js--qty-adjuster:hover
.ajaxifyCart--minus,
.ajaxifyCart--minus .ajaxifyCart--qty-adjuster:hover {
  color: red; }

/*============================================================================
  #Password Page
==============================================================================*/
.template-password {
  height: 100vh;
  text-align: center;
  padding: 0; }

.password-page__wrapper {
  display: table;
  height: 100%;
  width: 100%;
  background-color: white;
  background-image: url("password-page-background_v-12987344696580752000.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff; }
  .password-page__wrapper a {
    color: inherit; }
    .password-page__wrapper a:hover {
      color: inherit; }
  .password-page__wrapper .social-sharing a {
    color: #ffffff; }
  .password-page__wrapper .social-sharing a:hover {
    color: #ffffff; }
  .password-page__wrapper h1, .password-page__wrapper .h1, .password-page__wrapper h2, .password-page__wrapper .h2, .password-page__wrapper h3, .password-page__wrapper .h3, .password-page__wrapper h4, .password-page__wrapper .h4, .password-page__wrapper h5, .password-page__wrapper .h5, .password-page__wrapper h6, .password-page__wrapper .h6,
  .password-page__wrapper .h1, .password-page__wrapper .h2, .password-page__wrapper .h3, .password-page__wrapper .h4, .password-page__wrapper .h5, .password-page__wrapper .h6 {
    color: inherit; }
  .password-page__wrapper .input-group-btn .icon {
    color: inherit; }

.password-header-section {
  display: table-row; }

.password-page__header {
  display: table-cell;
  height: 1px; }

.password-page__header__inner {
  padding: 15px 30px; }

.password-page__logo {
  margin-top: 75px; }
  .password-page__logo .logo {
    max-width: 100%; }

.password-page__main {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.password-page__main__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 30px; }

.password-page__hero {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 2.375em;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: optimizeLegibility; }
  @media screen and (min-width: 481px) {
    .password-page__hero {
      font-size: 3.75em; } }
  @media screen and (min-width: 1025px) {
    .password-page__hero {
      font-size: 4em; } }

.password-page__message {
  font-style: italic;
  font-size: 120%;
  line-height: 1.6; }
  .password-page__message img {
    max-width: 100%; }

.password-page__message,
.password-page__login-form,
.password-page__signup-form {
  max-width: 500px;
  margin: 0 auto; }

.password-page__login-form {
  text-align: center;
  padding: 30px; }

.password-page__signup-form .input-group-field {
  background-color: transparent;
  color: #ffffff; }

@media screen and (min-width: 480px) {
  .password-page__login-form,
  .password-page__signup-form {
    padding: 0 30px; } }
.password-page__login-form .input-group,
.password-page__signup-form .input-group {
  width: 100%; }
.password-page__login-form .errors ul,
.password-page__signup-form .errors ul {
  list-style-type: none;
  margin-left: 0; }

.storefront-password-form {
  margin-bottom: 15px; }

.password-page__social-sharing {
  margin-top: 30px; }
  .password-page__social-sharing .social-sharing {
    padding-top: 0; }

.password-login,
.admin-login {
  margin-top: 15px; }
  .password-login a:hover,
  .admin-login a:hover {
    color: inherit; }

.password-login {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 0.7em;
  line-height: 11.2px; }

.lock-icon-svg {
  width: 11.2px;
  height: 11.2px;
  display: inline-block;
  vertical-align: baseline;
  /* Hiding the SVG logo in IE8 */ }
  .lock-icon-svg path {
    fill: currentColor; }
  .lt-ie9 .lock-icon-svg {
    display: none; }

.admin-login {
  font-size: 95%; }

.password-page__footer {
  display: table-row;
  height: 1px; }

.password-page__footer_inner {
  display: table-cell;
  vertical-align: bottom;
  padding: 30px;
  line-height: 24px;
  font-size: 95%; }

.shopify-link {
  color: inherit; }
  .shopify-link:hover {
    color: inherit; }

.shopify-logo-svg {
  width: 82.28571px;
  height: 24px;
  display: inline-block;
  line-height: 0;
  vertical-align: top;
  /* Hiding the SVG logo in IE8, we show the word 'Shopify' instead */ }
  .shopify-logo-svg path {
    fill: currentColor; }
  .lt-ie9 .shopify-logo-svg {
    display: none; }

.modern .shopify-name,
.modern .hidden-label {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

/*============================================================================
  #Demo Styles - for empty store state
==============================================================================*/
.demo-image {
  background: url("../../../../../../0383/9765/t/1/assets/blankslate-producticon_4.png") no-repeat center center #eeeeee;
  display: block;
  text-align: center;
  padding: 100px 0;
  color: #aaa;
  font-size: 0.75em; }

/*============================================================================
  #FlexSlider
    - jQuery FlexSlider v2.2.2 | http://www.woothemes.com/flexslider/
    - Contributing author: Tyler Smith (@mbmufffin)
==============================================================================*/
.flexslider {
  margin: 5px 0;
  padding: 0; }

.flexslider li {
  margin: 0; }

.flexslider .slides > li {
  display: none;
  /* Hide the slides before the JS is loaded. Avoids image jumping */
  margin: 0;
  position: relative;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }

.flexslider .slides img {
  max-width: 100%;
  margin: 0 auto;
  display: block; }

.slides {
  *zoom: 1; }
  .slides:after {
    content: "";
    display: table;
    clear: both; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/*================ No JS Fallback ================*/
.no-js .slides > li:first-child {
  display: block; }

.flexslider {
  position: relative;
  zoom: 1; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

.carousel li {
  margin-right: 5px; }

/*================ Direction Nav ================*/
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

.flex-direction-nav {
  *height: 0; }

.flex-direction-nav a {
  display: block;
  width: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  -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; }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-direction-nav a {
  text-indent: -9999px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 20px auto;
  /*================ Hide SVG arrows in oldIE ================*/ }
  .lte-ie9 .flex-direction-nav a {
    display: none; }
  .flex-direction-nav a.flex-prev {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjIuM3B4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCAyMi4zIDQwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyMi4zIDQwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNEM0QzRDMiIGQ9Ik0xOC43LDBMMCwxOS43TDE4LjcsNDBjMCwwLDUuMi0xLDMuMS0zLjFTNS43LDE5LjcsNS43LDE5LjdzMTQtMTQuNSwxNi4xLTE2LjZTMTguNywwLDE4LjcsMHoiLz4NCjwvc3ZnPg0K");
    background-position: center left; }
  .flex-direction-nav a.flex-next {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjIuM3B4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCAyMi4zIDQwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyMi4zIDQwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNEM0QzRDMiIGQ9Ik0wLjUsMy4xYzIuMSwyLjEsMTYuMSwxNi42LDE2LjEsMTYuNlMyLjYsMzQuOCwwLjUsMzYuOVMzLjYsNDAsMy42LDQwbDE4LjctMjAuM0wzLjYsMEMzLjYsMC0xLjYsMSwwLjUsMy4xDQoJeiIvPg0KPC9zdmc+DQo=");
    background-position: center right; }

/*================ Control Nav ================*/
.flex-control-nav {
  position: absolute;
  bottom: -30px;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none; }
  .flex-control-nav li {
    margin: 0 4px;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle; }

.flex-control-paging li a {
  width: 12px;
  height: 12px;
  display: block;
  background-color: #e7e7e7;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  border: 2px solid white;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }
  .flex-control-paging li a:hover {
    background-color: #cecece; }
  .flex-control-paging li a.flex-active {
    background-color: white;
    border-color: #e7e7e7;
    cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

@media screen and (max-width: 1024px) {
  .flex-direction-nav a {
    opacity: 1;
    width: 25px; }

  .flex-direction-nav a.flex-prev {
    left: 0;
    background-position: center right; }

  .flex-direction-nav a.flex-next {
    right: 0;
    background-position: center left; } }
@media screen and (min-width: 1025px) {
  .flex-direction-nav .flex-prev {
    left: 10px; }

  .flex-direction-nav .flex-next {
    right: 10px; }

  .flexslider:hover .flex-prev {
    opacity: 1;
    left: -25px; }

  .flexslider:hover .flex-next {
    opacity: 1;
    right: -25px; } }
@media screen and (min-width: 1180px) {
  .flex-direction-nav .flex-prev {
    left: 20px; }

  .flex-direction-nav .flex-next {
    right: 20px; }

  .flexslider:hover .flex-prev {
    opacity: 1;
    left: -40px; }

  .flexslider:hover .flex-next {
    opacity: 1;
    right: -40px; } }
/*================ Custom Flexslider Styles ================*/
.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.slide-link {
  display: block; }
  .slide-link img {
    display: block; }

/*============================================================================
  #Magnific Popup
    - http://dimsemenov.com/plugins/magnific-popup/
==============================================================================*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 1;
  filter: alpha(opacity=100);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 0.65;
  filter: alpha(opacity=65); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/*======================== Magnific Popup custom styles ===================== */
.mfp-container {
  background-color: white; }

.mfp-close {
  color: inherit; }

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

/* Added by Ruairi M. | Theme Specialist - October 10 2018 */
.cart__row button#update, .cart__row button#checkout {
  margin-bottom: 0px; }

/*===========================CALENDAR ============================== */
.calendar__item_container {
  display: flex;
  flex-direction: row;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #d5d5d5;
  margin-top: 20px; }
  @media screen and (max-width: 480px) {
    .calendar__item_container {
      display: block; } }

.calendar__item_container:first-child {
  margin-top: 0;
  padding-top: 0; }

.calendar__col {
  flex-basis: 50%;
  max-width: 50%; }
  @media screen and (max-width: 480px) {
    .calendar__col {
      max-width: 100%;
      width: 100%; } }

.calendar__right {
  padding-left: 20px; }

/*===========================WCAG ============================== */
.shg-c {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }