/*============================================================================
  
  This theme is built with ...

  Shopify Timber
  Copyright 2016 Shopify Inc.
  Author Carson Shold @cshold
  Built with Sass - http://sass-lang.com/

==============================================================================*/
/* Icons */
[data-icon]:before {
  font-family: "custom-icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="custom-icon-"]:before,
[class*=" custom-icon-"]:before {
  font-family: "custom-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

.custom-icon-play-button:before {
  content: "\6c"; }

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

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

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

.custom-icon-google-plus:before {
  content: "\75"; }

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

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

.custom-icon-facebook-2:before {
  content: "\61"; }

.custom-icon-google-plus-2:before {
  content: "\64"; }

.custom-icon-pinterest-2:before {
  content: "\65"; }

.custom-icon-twitter-2:before {
  content: "\66"; }

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

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

.custom-icon-long-arrow:before {
  content: "\6d"; }

.custom-icon-stroke-circle:before {
  content: "\6a"; }

.custom-icon-filled-circle:before {
  content: "\68"; }

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

.custom-icon-hamburger:before {
  content: "\6b"; }

/*============================================================================
  Timber Table of Contents

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
  
  
 Table of Contents

  #index.liquid
    -Hero
    -Product Features
    -Feautured Content
    -Featured Collection
    -Featured Image
    -Testimonials
    -Newsletter
  #collection.liquid
  #product-form.liqiud
  #featured-product.liquid
  #product-grid-item.liquid
  #product.liquid
  #product-tag.liquid
  #social-sharing.liquid
  #Auxillary Pages
  #Accounts
  #Blog and Article Pages
  #404 Page
  #Cart Page
  #Page Template
  #Footer
  #Media Queries
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*============================================================================
  #Font Size Incrementor Mixin
==============================================================================*/
/*============================================================================
  #Typography
==============================================================================*/
@font-face {
  font-family: 'icons';
  src: url("icons_v-95696210823250211211478377937.eot");
  src: url("icons_v-95696210823250211211478377937.eot#iefix") format("embedded-opentype"), url("icons_v-65748921002487031031478377938.woff") format("woff"), url("icons_v-17939663814406809461478377938.ttf") format("truetype"), url("icons_v-87905919142913548941478377938-timber-icons.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'custom-icons';
  src: url("custom-icons_v-83822092265950147501478377934.eot");
  src: url("https://cdn.shopify.com/s/files/1/1585/0229/t/2/assets/custom-icons.eot?%23iefix&v=83822092265950147501478377934") format("embedded-opentype"), url("custom-icons_v-2199633711643880951478377935.woff") format("woff"), url("custom-icons_v-131636916097940030231478377935.ttf") format("truetype"), url("custom-icons_v-20843888008460086221478377934.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

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

input {
  background: none; }

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

.helper-note {
  z-index: 500 !important; }

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

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

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

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

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

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

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 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: 768px) {
  /** 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: 768px) {
  /** 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: 769px) {
  /** 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: 768px) {
  /* 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: 768px) {
  /* 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: 769px) {
  /* 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
==============================================================================*/
/*============================================================================
  #Invert Color Based on Parameter Color
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
html {
  background-color: #fafafa; }

body {
  background-color: white; }

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

.wrapper {
  *zoom: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px; }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 480px) {
    .wrapper {
      padding: 0 50px; } }

.main-content {
  display: block;
  padding-top: 100px;
  padding-bottom: 100px; }

.template-collection .main-content, .template-list-collections .main-content {
  padding-top: 0px; }

.template-collection, .template-list-collections {
  background-color: white; }
  .template-collection .main-content, .template-list-collections .main-content {
    padding-bottom: 50px; }

.template-index .main-content {
  padding: 0px; }

.section {
  padding-top: 50px;
  padding-bottom: 50px; }

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

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

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

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

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

.hide {
  display: none; }

.template-product .mfp-zoom-in-cur {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

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

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

/*All font weights shall be normal*/
h1, .h1 {
  font-weight: normal; }

h2, .h2 {
  font-weight: normal; }

h3, .h3 {
  font-weight: normal; }

h4, .h4 {
  font-weight: normal; }

h5, .h5 {
  font-weight: normal; }

h6, .h6 {
  font-weight: normal; }

.block-body {
  position: absolute;
  height: 100%;
  width: 100%;
  background: white;
  z-index: 1000; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 36px;
  color: #333333; }

h2, .h2 {
  font-size: 28px;
  color: #333333; }

h3, .h3 {
  font-size: 22px;
  color: #333333; }

h4, .h4 {
  font-size: 20px;
  color: #333333; }

h5, .h5 {
  font-size: 16px;
  color: #333333; }

h6, .h6 {
  font-size: 14px;
  color: #333333; }

p img {
  margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 12px; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

.light-gray {
  color: #333333; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 15px;
  line-height: 20px;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 50px;
  padding: 25px 50px; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 25px; }
  blockquote cite {
    display: block;
    font-size: 11px; }
    blockquote cite:before {
      content: '\2014 \0020'; }

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

pre {
  overflow: auto;
  padding: 25px;
  margin: 0 0 50px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #434487;
  border-width: 2px 0 0;
  margin: 50px 0;
  height: 0; }
  hr.hr--small {
    margin: 25px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*================ Section Headers ================*/
.main-heading {
  font-size: 48px;
  margin-bottom: 0px;
  color: #333333; }

.main-subheading {
  color: black;
  display: block;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 21px; }

.buttons-wrapper {
  padding-top: 10px; }

.section-header {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center; }

.notransition * {
  transition: none !important; }

.site-header {
  background: white none repeat scroll 0 0;
  position: relative;
  width: 100%;
  z-index: 800 !important;
  -webkit-overflow-scrolling: touch; }
  .template-list-collections .site-header {
    background: #fafafa none repeat scroll 0 0; }
  .template-collection .site-header {
    background: #fafafa none repeat scroll 0 0; }

.section-header div {
  padding: 0 6px; }

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

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

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

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

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

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 28px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em; }
    .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 h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 25px; }
  .rte li {
    margin-bottom: 0.4em; }

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

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

h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  color: #333333 !important; }

a:hover,
a:focus {
  color: black; }

button {
  overflow: visible; }

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

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary {
  background: #434487;
  color: white;
  font-size: 14px;
  padding: 15px 30px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 2px;
  border: 2px solid rgba(0, 0, 0, 0);
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  transition: all 0.2s ease;
  line-height: 1.5;
  /*================ Set primary button colors ================*/ }
  .btn:hover, .btn--secondary:hover, .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background: #323365;
    border: 2px solid rgba(0, 0, 0, 0);
    color: #e6e6e6; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary {
    cursor: default;
    color: white;
    background-color: transparent;
    margin-top: 25px; }

button.btn, button.btn--secondary,
.rte button.btn--secondary {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.btn--small {
  padding: 7px 10px;
  font-size: 14px;
  background: #434487;
  color: white;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 2px;
  border: 2px solid rgba(0, 0, 0, 0);
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  transition: all 0.2s ease;
  line-height: 1.5;
  /*================ Set primary button colors ================*/ }
  .btn--small:hover, .btn--small:active, .btn--small:focus {
    background: #323365;
    border: 2px solid rgba(0, 0, 0, 0);
    color: #e6e6e6; }

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

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th, td {
  text-align: left;
  padding: 20px;
  font-weight: inherit !important; }

/*============================================================================
  Responsive tables, defined with .table--responsive on table element.
  Only defined for IE9+
==============================================================================*/
@media screen and (min-width: 0px) and (max-width: 991px) {
  .table--responsive .cart__row {
    padding-top: 0px; }
  .table--responsive th {
    padding: 10px 10px 0px 10px; }
  .table--responsive .cart__row:first-child {
    border: none; }
  .table--responsive h2, .table--responsive .h2, .table--responsive h3, .table--responsive .h3 {
    text-align: center; }
  .table--responsive .cart__subtotal {
    margin-left: 0px !important; }
  .table--responsive thead {
    display: none; }
  .table--responsive tr {
    display: block; }
  .table--responsive tr,
  .table--responsive td {
    float: left;
    clear: both;
    width: 100%; }
  .table--responsive th,
  .table--responsive td {
    display: block;
    text-align: right;
    padding: 15px; }
  .table--responsive td:before {
    content: attr(data-label);
    float: left;
    font-size: 12px;
    position: absolute;
    left: 0; }
  .table--responsive .product-name-label {
    color: transparent; }
  .table--responsive.cart-table img {
    margin: 0 auto; } }

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

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px; } }
/*============================================================================
  #OOCSS Media Object
    - http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
==============================================================================*/
.media,
.media-flex {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

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

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

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

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

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

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

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

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

/*================ Prevent zoom on touch devices in active inputs ================*/
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

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

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

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

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

fieldset {
  padding: 25px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 2px solid #434487;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 0px; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #c3c3c3; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

.product-form input,
.product-form textarea,
.product-form select, #collection-sorting input,
#collection-sorting textarea,
#collection-sorting select {
  border: 1px solid #434487; }

textarea {
  background: none; }

.ajaxcart__row
textarea {
  min-height: 90px;
  background-color: white; }

.drawer textarea {
  background-color: white; }

.search-input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #333333;
  width: 100%;
  font-size: 24px; }

.search-input:focus {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #333333; }

.search-input::-webkit-input-placeholder {
  font-size: 24px; }

.search-input:-moz-placeholder {
  /* older Firefox*/
  font-size: 24px; }

.search-input::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 24px; }

.search-input:-ms-input-placeholder {
  font-size: 24px; }

.desktop-search {
  font-size: 24px;
  color: #434487; }

.no-outlines *:focus {
  outline: 0; }

.additional-checkout-button + .additional-checkout-button {
  margin-left: 0px !important; }

.cart__checkout {
  margin-bottom: 10px; }

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

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

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

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  background-size: 12px;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

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

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

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

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

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

label.error {
  color: #d02e2e; }

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

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

.input-group .btn, .input-group .btn--secondary,
.input-group .input-group-field {
  height: 37px; }

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

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

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset; }

input {
  -webkit-appearance: none;
  border-radius: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-icons li {
  margin: 0 25px 25px;
  vertical-align: middle; }
  @media screen and (min-width: 481px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    font-size: 30px;
    line-height: 26px; }

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

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  opacity: 1;
  position: relative;
  background-color: white;
  z-index: 800; }
  .site-header .grid--table {
    display: inline-table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }
      .site-header .grid--table > .grid__item .logo {
        display: table-cell;
        vertical-align: middle;
        line-height: 1;
        padding-left: 10px; }

.site-header-wrapper {
  padding: 15px 50px 15px 50px; }

.site-header__logo {
  text-align: left;
  margin: 0 auto;
  max-width: 100%; }
  @media screen and (min-width: 769px) {
    .site-header__logo {
      text-align: left; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: inline-block;
    font-size: 25px;
    color: #333333;
    font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: normal;
    text-transform: capitalize; }
  .site-header__logo img {
    margin: 0 auto; }

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

/*

How to Enable Retina Logo Images
................................

In the Theme Editor upload a header and footer logo image that is 2x your original image size:
For example if your original logo image is 50x50, upload a 100x100 image.

To use a retina logos just delete all // in the code block below.
Don't worry about removing these instructions :)

*/
.no-js body {
  display: block !important; }

.site-header__cart-toggle {
  display: inline-block;
  position: relative;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: black;
  font-size: 14px; }

.site-header__search {
  display: inline-block;
  max-width: 400px;
  margin-top: 25px;
  width: 100%; }

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

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  background-color: black; }

.site-nav, .site-nav--mobile {
  font-size: 16px;
  cursor: default;
  margin: 0 0 0 -25px;
  list-style: none; }

.site-nav__item {
  position: relative;
  display: inline-block;
  margin: 0; }
  .site-nav__item li {
    display: block; }

.custom-icon-cart {
  display: inline-block;
  font-size: 32px;
  color: black;
  vertical-align: middle; }

#CartCount {
  bottom: 3px;
  position: absolute;
  right: -7px;
  display: block;
  text-align: center;
  font-style: normal;
  color: white;
  font-weight: bold;
  text-transform: none;
  text-transform: none;
  background: #434487;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  display: inline-block;
  vertical-align: top; }

.drawer-nav__toggle {
  padding: 10px; }

.drawer-nav__toggle .custom-icon-down-arrow {
  color: black; }
.drawer-nav__toggle .custom-icon-down-arrow:before {
  vertical-align: bottom; }

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

.site-nav__link:active {
  text-decoration: underline; }

.site-nav__link {
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  padding: 15px 25px;
  white-space: nowrap;
  color: black;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: black; }

.site-header__logo img {
  width: px;
  margin-right: 10px;
  max-width: 100%; }

.custom-icon-hamburger {
  font-size: 22px;
  margin-bottom: -8px;
  float: right;
  color: #333333; }
  @media screen and (min-width: 991px) {
    .custom-icon-hamburger {
      color: black; } }

.nav-header {
  padding-left: 110px; }

.site-header__logo a {
  display: inline-block; }

.site-header h1, .site-header .h1 {
  line-height: 100%; }

.site-header__logo {
  line-height: 100%; }

.template-collection .header-offset, .template-list-collections .header-offset {
  background-color: #fafafa !important;
  visibility: visible !important;
  display: block; }

.header-offset {
  display: none; }

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

.cssmenu ul ul li:last-child {
  border-bottom: none; }

.site-nav__dropdown a {
  padding: 8px 15px; }

.site-nav__dropdown {
  border: 1px solid #434487;
  text-align: left; }

.site-nav--compress .site-nav__expanded-item {
  display: none; }

.site-nav--compress__menu {
  display: none; }
  .site-nav--compress .site-nav--compress__menu {
    display: inline-block; }

.site-header__cart-toggle {
  font-size: 14px;
  margin: 0 0 0 10px; }

.drawer-nav__has-sublist {
  display: inline-block;
  margin-right: -20px; }

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

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: -25px -25px 0 -25px; }

.mobile-nav__search {
  padding: 25px; }
  .mobile-nav__search .search-bar {
    margin-bottom: 0; }

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

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #333333;
  text-decoration: none; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: #fcfcfc; }

.mobile-nav__item--active {
  font-weight: inherit; }

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

.mobile-nav__link h3, .mobile-nav__link .h3 {
  line-height: 1;
  margin-top: 10px; }

.mobile-nav__link {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px; }

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%;
  padding-right: 50px;
  color: #333333; }

.mobile-nav--expanded .mobile-nav__toggle-open {
  display: none; }

.mobile-nav__toggle-close {
  display: none; }
  .mobile-nav--expanded .mobile-nav__toggle-close {
    display: block; }

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

.js-drawer-close .custom-icon-x {
  color: #333333; }

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

.drawer {
  /*   -webkit-transform: translateZ(0); // translateZ hack */
  will-change: transform;
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 25px 25px;
  max-width: 95%;
  z-index: 10;
  color: #333333;
  background-color: white;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .drawer a, .drawer h3, .drawer .h3 {
    color: #333333; }
    .drawer a:hover, .drawer a:focus, .drawer a:active, .drawer h3:hover, .drawer .h3:hover, .drawer h3:focus, .drawer .h3:focus, .drawer h3:active, .drawer .h3:active {
      transition: all 0.2s ease;
      color: black; }
  .drawer input {
    border: none; }
  .drawer textarea {
    border-color: #434487; }

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

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

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

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

.drawer__header {
  display: table;
  height: 70px;
  width: 100%; }

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

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center;
  font-size: 1.28571em; }

.drawer__close button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit; }
  .drawer__close button:active .custom-icon-x, .drawer__close button:focus .custom-icon-x {
    color: #666666 !important; }
  .drawer__close button .custom-icon-x {
    font-size: 20px;
    vertical-align: bottom; }

.cart-drawer-spacer-line {
  border-bottom: 2px solid #434487;
  clear: both;
  display: block;
  width: 100%;
  margin-bottom: 25px; }

.drawer-button {
  margin-top: 20px; }

#NavDrawer button {
  float: right;
  z-index: 1000; }

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

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

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

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 0px;
  padding: 6px 12px;
  margin-bottom: 25px;
  border: 1px solid transparent;
  font-size: 12px;
  text-align: center; }
  .note ul,
  .note ol,
  .errors ul,
  .errors ol {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none outside; }
  .note li:last-child,
  .errors li:last-child {
    margin-bottom: 0; }
  .note p,
  .errors p {
    margin-bottom: 0; }

.errors {
  background-color: white; }
  .errors ul {
    list-style: none outside;
    margin-left: 20px; }

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

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

.js-qty__num {
  border: none !important; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
.ajaxcart__inner {
  margin-bottom: 50px; }

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

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

.ajaxcart__row {
  padding-bottom: 25px;
  margin-bottom: 25px; }
  .ajaxcart__row p {
    margin-bottom: 0px; }

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

.ajaxcart__product-name {
  display: block;
  color: #333333 !important;
  font-size: 16px; }
  .ajaxcart__product-name:hover, .ajaxcart__product-name:focus, .ajaxcart__product-name:active {
    color: black !important; }

.ajaxcart__product-meta {
  color: #333333; }

.ajaxcart_product-price {
  display: block; }

#CartContainer {
  color: black; }

#CartDrawer .custom-icon-x {
  color: #333333 !important; }

/*============================================================================
  #Quantity Selectors
==============================================================================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 5px 25px;
    margin: 0;
    color: black; }

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

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0; }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0; }

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

.ajaxcart__qty-num {
  color: colorTextBody !important; }

.site-nav, .site-nav--mobile {
  display: inline-block; }

#CartContainer .price {
  margin-bottom: 0px; }

#CartDrawer {
  z-index: 900; }

/*============================================================================
  #index.liquid
==============================================================================*/
.supports-js .wow {
  visibility: hidden; }

/*================ Hero ================*/
.secondary-call-to-action {
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
  color: #333333;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }
  .secondary-call-to-action:hover, .secondary-call-to-action:focus, .secondary-call-to-action:active {
    transition: all 0.2s ease;
    color: #1a1a1a; }

.hero-photo {
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("hero_v-108432127566061888931481059042.jpeg"); }

.hero-section {
  opacity: 1; }

.no-js #video {
  opacity: 1; }
.no-js .hero-video-fallback-image {
  display: block; }

.header-wrapper {
  padding-top: 25px; }

.video-wrapper-bg {
  padding-left: 50px;
  padding-right: 50px; }

#iframe-wrapper {
  pointer-events: none; }

.video-wrapper-padding {
  padding-bottom: 50px; }

.centered-content {
  text-align: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block; }

.filter {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: 1;
  display: none; }

.call-to-action {
  margin-right: 15px; }

.call-to-action-circle {
  position: relative;
  font-size: 30px;
  vertical-align: middle;
  top: 4px; }

.call-to-action-triangle {
  font-size: 14px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 15px;
  margin-top: -11px;
  margin-left: -12px; }

/* Fade image in after load */
.supports-js .lazyload,
.supports-js .lazyloading {
  opacity: 0; }
.supports-js .lazyloaded {
  opacity: 1;
  transition: opacity 200ms; }

/*================ Product Features ================*/
.product-features-section {
  background-color: white;
  padding-bottom: 50px; }

.product-features-wrapper {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: block; }

.product-feature-header {
  font-size: 24px;
  line-height: 36px; }

.spacer-line, .featured-content-spacer-line {
  border-bottom: 2px solid #434487;
  clear: both;
  display: block;
  width: 75px !important;
  padding-top: 10px; }

/* Feature 1 */
.feature-1-images {
  position: relative;
  top: -75px;
  float: left;
  display: inline-block;
  width: 50%; }

.feature-1-text {
  max-width: 400px; }
  @media screen and (min-width: 991px) and (max-width: 1200px) {
    .feature-1-text {
      margin-left: 50px; } }

.overlap .feature-1-text {
  padding-top: 25px; }

.send-right {
  float: right; }

.send-left {
  float: left; }

.feature-1-image-1 img {
  max-height: 400px;
  max-width: 500px; }

.feature-1-image-1 {
  margin-left: 48px; }

.feature-1-image-1 img {
  border-top: 2px solid white;
  border-right: 2px solid white;
  border-left: 2px solid white; }
  @media screen and (min-width: 991px) and (max-width: 1200px) {
    .feature-1-image-1 img {
      max-width: 450px; } }

.feature-1-image-2 {
  position: absolute;
  top: 50%; }

.feature-1-image-2 img {
  border: 2px solid white;
  border-left: 0;
  max-width: 200px; }

/* Feature 2 */
.feature-2-images {
  position: relative;
  display: inline-block;
  float: right;
  width: 50%; }

.feature-2-wrapper {
  position: relative; }
  .feature-2-wrapper .spacer-line, .feature-2-wrapper .featured-content-spacer-line, .feature-2-wrapper .product-feature-description {
    clear: both; }

.feature-2-text {
  position: relative;
  display: inline-block;
  max-width: 400px;
  float: right; }
  @media screen and (min-width: 991px) and (max-width: 1200px) {
    .feature-2-text {
      margin-right: 50px; } }

.feature-2-text > div {
  margin: 0 0 0 auto; }

.feature-2-text > div {
  margin: 0 0 0 auto;
  width: 69%; }

.feature-2-image-1-wrapper {
  position: relative;
  float: right;
  display: inline-block; }

.feature-2-image-1-wrapper > img {
  position: relative;
  margin-right: 50px;
  float: right;
  max-width: 500px; }
  @media screen and (min-width: 991px) and (max-width: 1200px) {
    .feature-2-image-1-wrapper > img {
      max-width: 450px; } }

.feature-2-image-2 {
  float: right;
  right: -50px;
  bottom: 50%;
  text-align: right;
  right: 0px;
  position: absolute; }

.feature-2-image-2 img {
  border: 2px solid white;
  border-right: 0;
  right: 0px;
  max-width: 200px; }

.supports-js .feature-2-text {
  visibility: hidden; }
.supports-js .feature-1-text {
  visibility: hidden; }

/*================ Featured Content ================*/
.featured-content-no-image {
  padding-top: 50px;
  padding-bottom: 50px; }

.featured-content-wrapper.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .featured-content-wrapper.grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle; }
  @media screen and (max-width: 1023px) {
    .featured-content-wrapper.grid--table {
      display: block; }
      .featured-content-wrapper.grid--table > .grid__item {
        display: block; } }

.video-image-parent {
  line-height: 0px;
  position: relative;
  z-index: 300; }
  @media screen and (max-width: 1023px) {
    .video-image-parent {
      position: relative;
      width: 100%; } }

@media screen and (max-width: 1023px) {
  .video-image-wrapper img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative; } }

.filled-circle {
  color: white;
  font-size: 125px;
  display: block;
  width: 125px;
  height: 125px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.stroke-circle {
  color: white;
  font-size: 150px;
  display: block;
  width: 150px;
  height: 150px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.triangle {
  color: #434487;
  font-size: 48px;
  display: block;
  width: 36px;
  height: 48px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.video-text-col {
  position: relative;
  right: 10%;
  z-index: 500;
  width: 500px; }
  @media screen and (max-width: 1023px) {
    .video-text-col {
      width: 100%;
      right: 0;
      margin: 0 auto;
      padding-left: 50px !important;
      padding-right: 50px;
      padding-top: 50px; } }
  @media screen and (min-width: 1600px) {
    .video-text-col {
      right: 25%; } }

.featured-content-overlay {
  left: 5%;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: linear-gradient(right, #fafafa, #fafafa 70%, transparent 70%, transparent 100%);
  background-image: -webkit-linear-gradient(right, #fafafa, #fafafa 70%, transparent 70%, transparent 100%);
  background-image: -moz-linear-gradient(right, #fafafa, #fafafa 70%, transparent 70%, transparent 100%);
  background-image: -ms-linear-gradient(right, #fafafa, #fafafa 70%, transparent 70%, transparent 100%); }
  @media screen and (max-width: 1023px) {
    .featured-content-overlay {
      padding-top: 0px;
      background: none;
      left: 0%;
      width: 100%; } }

.ie9 .featured-content-wrapper {
  background: #fafafa !important; }

.hero-video-wrapper {
  background: white none repeat scroll 0 0;
  text-align: center;
  z-index: 200; }

#video {
  overflow: hidden;
  opacity: 0; }

#iframe-wrapper {
  z-index: 0; }

#video {
  background-image: url("poster-image_v-136777702962786788361481059042.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

iframe {
  position: relative; }

.hero-video-fallback-image {
  display: none;
  z-index: 200;
  position: relative; }

.featured-content-spacer-line {
  display: none; }
  @media screen and (max-width: 1023px) {
    .featured-content-spacer-line {
      display: block;
      margin-left: auto !important;
      margin-right: auto !important;
      margin-top: 25px; } }

.hero-video-fallback-image {
  background-image: url("poster-image_v-136777702962786788361481059042.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px; }

.hero-text {
  padding-right: 50px;
  padding-left: 50px;
  padding-bottom: 50px; }

.hero {
  margin-left: 50px;
  margin-right: 50px; }

#video iframe {
  display: none; }

.hero-content-wrapper {
  padding-top: 50px;
  padding-bottom: 50px; }

.play-button {
  display: block;
  width: 150px;
  height: 150px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.featured-content-padding {
  display: none;
  width: 33%;
  height: 100%;
  left: 0px;
  background-color: white;
  z-index: 100;
  position: absolute; }
  @media screen and (max-width: 1023px) {
    .featured-content-padding {
      display: none; } }

.featured-content-wrapper {
  position: relative; }
  @media screen and (max-width: 1023px) {
    .featured-content-wrapper {
      width: 100%;
      left: 0px; } }

.featured-content-section {
  padding-bottom: 50px;
  padding-top: 50px; }
  @media screen and (max-width: 1023px) {
    .featured-content-section {
      padding-top: 0px;
      padding-bottom: 0px; } }

.featured-content-section td {
  vertical-align: top;
  padding-top: 0px;
  width: 50%; }
  @media screen and (max-width: 479px) {
    .featured-content-section td {
      width: 100%;
      text-align: center; } }
.featured-content-section .video-wrapper {
  padding: 50px;
  text-align: center;
  background-color: white;
  color: black; }
  .featured-content-section .video-wrapper h1, .featured-content-section .video-wrapper .h1, .featured-content-section .video-wrapper h2, .featured-content-section .video-wrapper .h2, .featured-content-section .video-wrapper h3, .featured-content-section .video-wrapper .h3, .featured-content-section .video-wrapper h4, .featured-content-section .video-wrapper .h4, .featured-content-section .video-wrapper h5, .featured-content-section .video-wrapper .h5, .featured-content-section .video-wrapper h6, .featured-content-section .video-wrapper .h6 {
    color: #333333; }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0; }

  8% {
    -webkit-transform: scale(0);
    opacity: 0; }

  15% {
    -webkit-transform: scale(0.1);
    opacity: 1; }

  30% {
    -webkit-transform: scale(0.5);
    opacity: 1; }

  100% {
    opacity: 0;
    -webkit-transform: scale(1); } }

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(0);
    opacity: 0; }

  8% {
    -moz-transform: scale(0);
    opacity: 0; }

  15% {
    -moz-transform: scale(0.1);
    opacity: 1; }

  30% {
    -moz-transform: scale(0.5);
    opacity: 1; }

  100% {
    opacity: 0;
    -moz-transform: scale(1); } }

.pulsate {
  -webkit-animation: pulse 2s linear infinite;
  -moz-animation: pulse 2s linear infinite;
  border-image: initial;
  background: transparent; }

/*================ Featured Collection ================*/
.discounted {
  color: #333333; }

.featured-collection-section {
  padding-top: 50px;
  padding-bottom: 50px; }

.featured-collection {
  text-align: center;
  background: white; }

/*================ Featured Image ================*/
.featured-image-section {
  background-image: url("featured-image_v-158561365276575426231478377935.jpg");
  background-attachment: fixed;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* Preserve aspet ratio */
  min-width: 100%;
  min-height: 100%; }

/*================ Testimonials Section ================*/
/* Testimonials */
#testimonials {
  padding-top: 50px;
  padding-bottom: 50px; }

.vertical-spacer {
  border-right: 2px solid #434487;
  display: block;
  height: 36px;
  margin: 0 auto;
  text-align: center;
  width: 0;
  z-index: 500; }

.testimonial-text {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-color: #333333;
  padding: 12px 0; }

.user-profile {
  margin-top: 15px;
  color: #333333;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px; }

.testimonials-table {
  width: 100%; }

.testimonial-cell {
  text-align: center;
  vertical-align: middle;
  border: none; }

.user-image {
  top: 0px;
  padding-right: 15px;
  position: relative;
  vertical-align: middle;
  display: block; }

.user-image img {
  max-width: 50px; }

.user-name {
  clear: right;
  display: inline-block; }

.testimonial-text {
  color: black;
  font-size: 14px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  position: relative; }

.testimonial-text::before {
  color: #434487;
  content: open-quote;
  float: left;
  font-size: 36px;
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }

.testimonial-text::after {
  color: #434487;
  content: close-quote;
  float: right;
  font-size: 36px;
  position: relative;
  top: 20px;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }

.just-testimonials {
  padding-top: 50px; }

/* Instagram/Testimonial Image */
#instafeed {
  margin-top: 50px; }

.testimonials-wrapper {
  display: table; }

.testimonial-column {
  display: table-cell;
  float: none;
  vertical-align: middle !important; }

.animation {
  display: inline-block;
  vertical-align: top;
  position: relative; }

.instagram-photo {
  padding-right: 5px; }

.animation:hover .insta-comment {
  opacity: 1 !important; }

.insta-comment {
  background: rgba(67, 68, 135, 0.95) none repeat scroll 0 0;
  color: white;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  opacity: 0;
  text-align: center;
  transition: all 0.2s ease;
  top: 0;
  padding: 20px;
  width: 200px;
  display: table-cell;
  vertical-align: middle; }

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

.instaimg {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden; }

.insta-wrapper {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

.testimonial-cell {
  padding: 0px; }

.insta-comment i {
  font-size: 22px; }

.just-one-testimonial {
  padding-top: 0px; }
  @media screen and (max-width: 991px) {
    .just-one-testimonial {
      left: 0; } }

.just-two-testimonials {
  padding-top: 0px; }

.testimonial-image-wrapper img {
  max-height: 500px; }

.single-testimonial {
  padding-top: 50px; }

.testimonials-header {
  margin-top: 12px; }

/*================ Newsletter Section ================*/
.newsletter-section {
  background-color: white; }

.newsletter {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 400px;
  margin-left: auto;
  margin-right: auto; }

#subscribe {
  background: #434487 no-repeat scroll center center;
  height: 50px;
  width: 44px;
  background-size: 28px;
  border: none;
  border-top: 2px solid #434487;
  border-bottom: 2px solid #434487;
  border-right: 2px solid #434487; }

.custom-icon-long-arrow {
  color: white;
  font-size: 24px;
  line-height: 0;
  margin: auto;
  position: relative;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  height: 26px;
  width: 100%; }

#subscribe:hover {
  transition: all 0.2s ease;
  background: white no-repeat scroll center center; }
  #subscribe:hover .custom-icon-long-arrow {
    transition: all 0.2s ease;
    color: #434487; }

#mail {
  border: 2px solid #434487;
  height: 50px;
  border-radius: 0;
  background-color: white; }

.mailer-response {
  display: none; }

#mc-embedded-subscribe-form input:focus, #mc-embedded-subscribe-form input:hover {
  background-color: none; }

/*============================================================================
  #collection.liquid
==============================================================================*/
.collection-header {
  padding-bottom: 50px;
  padding-top: 35px;
  background: #fafafa none repeat scroll 0 0;
  z-index: 500;
  margin-bottom: 50px; }

.collection-title {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 60px;
  margin-bottom: 10px;
  color: #333333;
  z-index: 500; }

.split-collection .collection-title {
  font-size: 48px; }
.split-collection .collection-header {
  padding-bottom: 0px; }

.collection-description {
  padding-bottom: 20px;
  color: black;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  z-index: 500;
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 50%; }

.split-collection {
  background-color: #fafafa; }

.split-collection-text {
  padding-left: 50px;
  padding-right: 50px; }
  .split-collection-text .collection-description {
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
    padding-top: 20px; }

.split-collection-image {
  min-height: 300px; }

#ListCollections .spacer-line, #ListCollections .featured-content-spacer-line {
  margin-left: auto;
  margin-right: auto; }

#collection-sorting {
  margin-top: 50px;
  margin-bottom: 25px; }

.supports-js #collection-sorting {
  visibility: hidden; }

.helper-product {
  text-align: center;
  margin-bottom: 50px; }

/*============================================================================
  #product-form.liquid
==============================================================================*/
.quantity-input {
  display: inline-block !important;
  margin-left: 10px;
  padding: 7px;
  text-align: center;
  width: 35px; }

.qtydiv {
  display: inline-block;
  padding-right: 15px;
  padding-top: 10px; }

.selector-wrapper {
  position: relative;
  display: inline-block;
  padding-right: 15px;
  z-index: 99; }

.product-form .selector-wrapper:after, .product-form .address-selector-wrapper:after {
  font-family: "custom-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\63";
  margin-top: -10px;
  position: absolute;
  right: 25px;
  top: 54%;
  z-index: -1;
  font-size: 12px;
  display: block;
  color: black; }

.selector-wrapper:after, .address-selector-wrapper:after {
  font-family: "custom-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\63";
  margin-top: -10px;
  position: absolute;
  right: 15px;
  top: 54%;
  z-index: -1;
  font-size: 12px;
  display: block;
  color: black; }

.template-collection .selector-wrapper:after, .template-collection .address-selector-wrapper:after, .template-list-collections .selector-wrapper:after, .template-list-collections .address-selector-wrapper:after {
  right: 25px; }

.single-option-selector {
  display: inline-block !important;
  margin-left: 10px;
  z-index: 10; }

.product-form {
  position: relative; }

.supports-js .product-form {
  visibility: hidden; }

/*============================================================================
  #featured-product.liquid
==============================================================================*/
.featured-product-section {
  background-color: white; }

.product-title {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 48px;
  margin-bottom: 0; }

#ProductPrice {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: normal;
  margin-bottom: 25px; }

/* This style used in a lot of files */
.product-description.rte {
  color: black;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 28px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: auto;
  width: 75%;
  display: block; }

.template-index .product-description {
  width: 50%; }

.price {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 25px; }

.featured-image {
  max-height: 400px !important; }

.featured-product-price {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 28px;
  margin-top: -10px;
  color: #333333; }

.featured-product-title {
  font-size: 60px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 10px; }

.reduced-price {
  color: #333333;
  display: inline-block;
  margin-right: 10px; }

.featured-product-image {
  max-width: 33%; }

.template-index .thumbnail-wrapper:hover {
  opacity: 1;
  transition: opacity 200ms; }
.template-index .alt-image {
  max-width: 60px;
  max-height: 60px;
  margin-bottom: 20px; }

.template-product {
  background: white; }
  .template-product .alt-image {
    margin-bottom: 23px; }

.active-thumbnail {
  opacity: 1 !important; }

.featured-product-section {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative; }

.featured-product-social-wrapper {
  line-height: 1;
  padding-top: 20px; }

.template-index #AddToCart {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.product-page-frame {
  position: relative; }

.fake-product img {
  max-width: 350px; }

/*============================================================================
  #product-grid-item.liquid
==============================================================================*/
.tag, .tag-fp {
  background-color: #434487;
  color: white;
  text-align: center;
  font-size: 12px;
  position: absolute;
  z-index: 500;
  margin: 0;
  letter-spacing: 1px;
  font-weight: bold;
  line-height: 1;
  display: table;
  visibility: hidden; }
  .tag span, .tag-fp span {
    vertical-align: middle;
    display: table-cell; }

.product-item-parent {
  position: relative;
  padding-bottom: 25px;
  padding-top: 25px; }

.collection-product {
  display: block;
  position: relative;
  text-decoration: none;
  padding-left: 10px;
  margin-bottom: 10px;
  -webkit-tap-highlight-color: rgba(240, 240, 240, 0.2); }

.table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 245px;
  margin-left: auto;
  margin-right: auto; }

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

.cell img {
  max-width: 90%;
  padding: 0;
  margin: 0 auto; }

#AddToCart {
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto; }

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

.product-single__photos,
.product-single__thumbnails {
  margin-left: auto;
  margin-right: auto;
  display: block; }

.product-page-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  border-right: none !important; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: none !important; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: none !important; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: none !important; }

.mfp-chevron.mfp-chevron-left:before {
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.mfp-chevron.mfp-chevron-right:before {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.mfp-chevron:before {
  content: '';
  display: inline-block;
  position: relative;
  vertical-align: top;
  height: 25px;
  width: 25px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: black; }

.template-product .mfp-bg {
  background-color: white !important;
  opacity: 1 !important; }
.template-product .mfp-close {
  margin: 30px; }

.mfp-icon-x {
  font-size: 30px;
  color: black !important;
  position: relative;
  z-index: -1; }

.mfp-preloader {
  color: #333333 !important; }

.p-title {
  height: 30px;
  overflow: hidden; }

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: white;
  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: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

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

.mfp-preloader a:hover {
  color: white; }

.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: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1; }

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

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

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

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

.mfp-arrow {
  position: absolute;
  opacity: 0.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; }

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

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

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  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 white;
  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%;
  background: black; }

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

.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) {
  /**
       * Remove all paddings around the image on small screen
       */
  .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 {
    /* The shadow behind the image */ }

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

/*============================================================================
  #product-tag.liquid
==============================================================================*/
.tagtile, .coll-filter {
  display: inline-block; }

.browse-by, .sortby {
  display: inline-block; }

/*============================================================================
  #social-sharing.liquid
==============================================================================*/
.social-circle {
  display: inline-block;
  text-align: center;
  font-size: 40px;
  margin-right: 10px; }

.facebook {
  color: #3b5998 !important; }

.twitter {
  color: #4099ff !important; }

.pinterest {
  color: #c92228 !important; }

.google-plus {
  color: #dd4b39 !important; }

/*============================================================================
  #Accounts
==============================================================================*/
#customer_login > p {
  float: left; }

.return a {
  color: #333333; }

.accounts-header {
  margin-bottom: -10px; }

.no-padding {
  padding: 0px; }

.address-return {
  display: block; }

.address-title {
  display: block; }

.order-wrapper {
  padding-left: 30px; }

#account th, #account td {
  background-color: #434487;
  border: 2px solid white;
  padding: 20px 15px 20px 15px;
  color: white; }
  #account th a, #account td a {
    color: white; }

.account-details {
  padding-left: 100px; }

.template-customers-order th,
.template-customers-order td {
  background-color: #434487;
  border: 2px solid white;
  padding: 20px 15px 20px 15px;
  color: white; }
  .template-customers-order th a,
  .template-customers-order td a {
    color: white; }

.template-customers-order .note {
  padding: 0px;
  color: #333333; }
.template-customers-order table {
  overflow: scroll; }

.responsive-order th {
  display: none; }

.template-customers-account .table-wrap {
  margin-top: 25px; }

.account-header {
  display: inline-block;
  margin-right: 20px; }

.post-comment {
  margin-top: 10px; }

.template-customers-order ::-webkit-scrollbar, .template-customers-account ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 2px; }
.template-customers-order ::-webkit-scrollbar-thumb, .template-customers-account ::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5); }

.address-selector-wrapper {
  position: relative;
  display: block;
  padding-right: 0px;
  z-index: 99; }

.template-customers-addresses label {
  color: #333333; }

/*============================================================================
  #Password Page
==============================================================================*/
.password-page__wrapper {
  background-image: url("password-page-background_v-23745120394138158331478377939.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: table;
  height: 100%;
  width: 100%;
  position: absolute; }

.password-page__signup-form {
  width: 50%; }

.password-page__signup-form {
  margin: 0 auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle; }

.toggle-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  padding-bottom: 50px; }

.password-page__signup-form h1, .password-page__signup-form .h1, .password-page__signup-form h3, .password-page__signup-form .h3, .password-page__signup-form p, .password-page__signup-form small, .password-page__signup-form i, .password-page__signup-form a {
  color: white !important; }
.password-page__signup-form h1, .password-page__signup-form .h1 {
  margin-bottom: 0px; }

#CustomerSignup, #AdminLogin {
  padding-bottom: 20px; }

.customer-signup-button, .password-login-button {
  vertical-align: top; }

.signup-input, .password-input {
  background-color: white; }

.customer-signup-button {
  border: 2px solid rgba(0, 0, 0, 0);
  border-width: 2px !important; }

.customer-signup-button:hover {
  border: 2px solid rgba(0, 0, 0, 0); }

.signup-input, .password-input {
  border: none; }

.signup-input:hover, .password-input:hover {
  border: none; }

.password-logo {
  max-width: 200px; }

.template-password .btn--small {
  color: white;
  background-color: #434487; }

/*============================================================================
  #Blog/Article Pages
==============================================================================*/
.article-title {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif !important; }

.article-image {
  margin-bottom: 50px; }

.article-preview-image {
  padding-top: 10px;
  padding-bottom: 50px; }

.extra-header-padding {
  position: relative; }

.icon-rss {
  font-size: 22px; }

.blog-spacer-line {
  border-bottom: 2px solid #434487;
  clear: both;
  display: block;
  width: 75px !important;
  padding-top: 10px;
  margin-bottom: 50px; }

.custom-icon-comment {
  display: inline-block;
  margin-top: 2px; }

.custom-icon-tag {
  display: inline-block; }

.mfp-counter {
  display: none; }

.custom-icon-tag {
  display: inline-block;
  float: left;
  margin-right: 5px;
  color: #434487; }

.custom-icon-comment {
  float: left;
  margin-right: 5px;
  color: #434487; }

.blog-tag {
  padding: 5px;
  border: 1px solid #434487;
  margin-bottom: 5px !important; }

.blog-tag-wrapper {
  margin-bottom: 50px; }

.blog-tag:hover {
  border: 1px solid #434487; }

.blog-page .page-title {
  padding-bottom: 10px; }

.blog-comments-link {
  margin-right: 10px; }

#comment_form {
  padding-top: 20px; }

.template-article .section-header {
  padding-top: 0px; }

.template-blog h2, .template-blog .h2 {
  line-height: 1;
  margin-bottom: 5px; }

.template-blog .rte {
  margin-bottom: 10px; }

.article-image-wrapper {
  text-align: center; }

/*============================================================================
  #404 Page
==============================================================================*/
.error-page-header {
  font-size: 72px;
  text-align: center; }

.error-page-message {
  font-size: 24px; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart__row {
  position: relative;
  padding-top: 50px; }
  .cart__row:first-child {
    margin-top: 50px; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }

.cart-table {
  color: #333333; }
  .cart-table th {
    font-weight: normal; }
  .cart-table td,
  .cart-table th {
    padding: 40px 20px 40px 20px;
    border: none;
    font-size: 14px; }

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

.cart__subtotal {
  display: inline-block;
  font-size: 28px; }

.cart__subtotal {
  margin-bottom: -10px;
  display: inline-block; }

.cart__subtotal span {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 24px;
  margin-left: 15px; }

.cart__mini-labels {
  display: block;
  margin: 16.66667px 0;
  font-size: 12px; }
  @media screen and (min-width: 769px) {
    .cart__mini-labels {
      display: none; } }

.cart__remove {
  display: block; }

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

.cart-title {
  font-size: 48px; }

.cart__row textarea {
  border: 2px solid #434487; }

.template-cart .custom-icon-x {
  color: black;
  -webkit-text-stroke: .5px; }

.shipping-note {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px; }

.cart__header-labels {
  border-bottom: 2px solid #434487; }

#currencies {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  color: #bbbbbb;
  font-size: 0;
  /* to eliminate space between buttons */
  line-height: 1.5;
  cursor: pointer; }

#currencies span {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 5px 10px;
  border: 1px solid #D6D6D6;
  background: none #F6F6F6;
  font-size: 13px; }

#currencies .left {
  -webkit-border-top-left-radius: 7px;
  -webkit-border-bottom-left-radius: 7px;
  -moz-border-radius-topleft: 7px;
  -moz-border-radius-bottomleft: 7px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px; }

#currencies .right {
  -webkit-border-top-right-radius: 7px;
  -webkit-border-bottom-right-radius: 7px;
  -moz-border-radius-topright: 7px;
  -moz-border-radius-bottomright: 7px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  border-left: none; }

#currencies .selected {
  font-weight: normal;
  color: #666666;
  background: none #eeeeee; }

.currency-picker {
  display: inline-block;
  position: relative;
  margin: 0 0 0 20px !important;
  vertical-align: bottom;
  top: -2px;
  border-width: 1px; }

.mobile-nav__item .currency-picker {
  display: none; }

.currency-picker:after {
  font-family: "custom-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\63";
  margin-top: -7px;
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
  font-size: 12px;
  display: block;
  color: black; }

.template-cart h3, .template-cart .h3 {
  margin-bottom: 0px; }

/*============================================================================
  #Page Template
==============================================================================*/
.template-page p {
  line-height: 2; }

.page-title {
  padding-bottom: 25px; }

.contact-form input, textarea {
  border-width: 1px; }

/*============================================================================
  #Footer
==============================================================================*/
.site-footer {
  background-color: #fafafa;
  color: black;
  padding-top: 100px;
  padding-bottom: 100px;
  clear: both; }

.footer-logo {
  color: #333333;
  display: inline-block;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: normal;
  float: left;
  margin-top: 6px; }

.footer-logo img {
  width: 500px;
  vertical-align: top;
  max-width: 100%; }

.footer-logo a {
  color: #333333; }

.footer-logo-wrapper {
  display: inline-block;
  float: left; }

.footer-image {
  display: inline-block;
  float: left; }

.footer-links {
  padding-bottom: 25px; }

.footer-link {
  font-size: 14px;
  padding-right: 20px;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400;
  overflow-wrap: break-word; }

.shopify-link {
  padding-top: 10px; }

.shopify-link a {
  color: #333333; }

.payment-icon-list > li {
  display: inline-block;
  font-size: 22px;
  list-style: outside none none;
  margin: 5px 5px 0; }

.payment-icon-list {
  margin: 0;
  color: #333333; }

.payment-icon-list > li:first-child {
  margin-left: 0; }

.footer-social-icons > li {
  list-style: outside none none;
  margin-bottom: 10px; }

.footer-social-icons i {
  vertical-align: middle; }

.footer-social-icons {
  margin-left: auto;
  margin-right: auto;
  display: block; }

.footer-social-icon {
  color: #333333;
  padding-right: 10px;
  float: left; }

.footer-social-icons a {
  font-size: 14px; }

.blog {
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 18px; }

.article-title {
  font-size: 14px;
  text-transform: capitalize; }

.article-excerpt {
  margin-top: 0px; }

.article-excerpt a {
  font-size: 12px;
  color: #333333; }

.comment .rte {
  margin-top: -10px; }

.address {
  padding-bottom: 25px;
  position: relative; }

.address-name {
  margin-bottom: -20px; }

.light-gray a {
  color: #333333; }

.edit-address {
  padding-top: 25px; }

.footer-links-wrapper {
  margin-left: -10px; }

.footer-spacer-line {
  border-bottom: 2px solid #434487;
  clear: both;
  display: block;
  width: 75px !important;
  padding-top: 40px;
  margin-left: auto;
  margin-right: auto; }

.social-on-side {
  margin-top: 0px !important; }

.shopify-link a {
  color: #333333;
  font-size: 12px; }

.footer-col p {
  margin-top: 0px; }

.footer-col-logo {
  padding-left: 0px; }

.social-sharing-wrapper i {
  font-size: 22px;
  color: #333333;
  padding-right: 20px; }

.site-footer p {
  color: black; }

.shopify-link a {
  color: #333333; }

.shopify-link span {
  color: black; }

.payment-icon-list {
  color: #333333; }

.article-excerpt {
  color: #333333; }

.footer-link {
  color: black; }

/*============================================================================
  #Top bar
==============================================================================*/
.top-bar {
  background-color: #fafafa;
  display: table;
  position: relative;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px; }

.top-bar p {
  display: table-cell;
  text-align: center;
  color: black; }

/*============================================================================
  #Popup
==============================================================================*/
.popup .newsletter {
  margin-top: 25px; }
.popup .input-group-btn {
  display: table-cell;
  vertical-align: top; }
.popup #mail {
  display: table-cell; }
.popup #subscribe {
  float: left; }
.popup .input-group {
  display: block; }
.popup #mc-embedded-subscribe-form {
  display: table;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 25px; }

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

.popup {
  border: 1px solid #434487 !important; }
  .popup .newsletter {
    padding-top: 0px;
    padding-bottom: 0px; }
  .popup #subscribe:hover {
    background: white no-repeat scroll center center; }

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.3);
  text-align: center; }

.blocker::after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em; }

.popup {
  background-color: white;
  vertical-align: middle;
  position: relative;
  z-index: 9999 !important;
  width: 500px;
  padding: 75px 35px; }

.close-modal {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 25px; }

.close-modal::before {
  font-family: 'custom-icons' !important;
  content: "\69";
  text-decoration: none;
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  font-size: 20px;
  color: #333333; }

@media screen and (max-width: 767px) {
  .popup {
    width: 100%;
    padding: 50px 25px; }
    .popup .newsletter {
      max-width: 75%; } }
@media screen and (max-width: 479px) {
  .popup {
    width: 100%;
    padding: 50px 10px; }
    .popup .newsletter {
      max-width: auto; } }
/*============================================================================
  #Animation Delays
==============================================================================*/
._1 {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s; }

._2 {
  -webkit-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s; }

._3 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s; }

._4 {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s; }

._5 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -ms-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s; }

._6 {
  -webkit-animation-delay: 2.4000000000000004s;
  -moz-animation-delay: 2.4000000000000004s;
  -ms-animation-delay: 2.4000000000000004s;
  -o-animation-delay: 2.4000000000000004s;
  animation-delay: 2.4000000000000004s; }

._7 {
  -webkit-animation-delay: 2.8000000000000003s;
  -moz-animation-delay: 2.8000000000000003s;
  -ms-animation-delay: 2.8000000000000003s;
  -o-animation-delay: 2.8000000000000003s;
  animation-delay: 2.8000000000000003s; }

._8 {
  -webkit-animation-delay: 3.2s;
  -moz-animation-delay: 3.2s;
  -ms-animation-delay: 3.2s;
  -o-animation-delay: 3.2s;
  animation-delay: 3.2s; }

._9 {
  -webkit-animation-delay: 3.6s;
  -moz-animation-delay: 3.6s;
  -ms-animation-delay: 3.6s;
  -o-animation-delay: 3.6s;
  animation-delay: 3.6s; }

._10 {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  -ms-animation-delay: 4s;
  -o-animation-delay: 4s;
  animation-delay: 4s; }

/*============================================================================
  #Media Queries
==============================================================================*/
@media screen and (min-width: 1599px) {
  .hero-photo {
    min-height: 750px; }

  .featured-image-section {
    height: 750px; }

  .not-ie .featured-content-section .grid--full {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    position: relative; }
  .not-ie .video-text-col {
    width: 75%;
    right: 10%; }

  .site-footer .grid--full {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative; } }
@media screen and (max-width: 1023px) {
  .featured-content-overlay {
    left: 0% !important; }

  .video-text-col {
    right: 0% !important; } }
/* Tablet */
@media screen and (max-width: 991px) {
  .featured-content-overlay {
    left: 0% !important; }

  .video-text-col {
    right: 0% !important; }

  .no-blog-footer {
    width: 100% !important;
    left: 0 !important; }

  .feature-1-image-1 img {
    float: none !important; }

  .feature-2-image-1 img {
    float: none !important; }

  .video-text-col {
    padding-left: 50px !important; }

  .product-features-section .no-overlap {
    padding-top: 0px; }

  .hero-content-wrapper, .featured-product-section, .featured-collection-section {
    padding-top: 50px;
    padding-bottom: 50px; }

  .product-features-section {
    padding-top: 0px;
    padding-bottom: 25px; }

  .hero-section {
    padding-bottom: 50px; }

  .featured-image-section {
    height: 400px;
    background-attachment: scroll; }

  .featured-content-section {
    padding-top: 0px;
    padding-bottom: 0px; }

  .video-text-col {
    padding-top: 50px; }

  .no-overlap {
    padding-top: 0px; }

  .footer-col-logo {
    padding-left: 30px; }

  .site-header__cart-toggle:hover, .site-header__cart-toggle:active, .site-header__cart-toggle:focus {
    color: #1a1a1a; }

  .custom-icon-hamburger {
    color: #333333; }

  .send-right, .send-left {
    float: none; }

  .feature-1-images {
    width: 100%;
    text-align: center; }

  .featured-text-wrapper {
    display: block;
    max-width: 100%; }

  .feature-2-images {
    width: 100%; }

  .feature-1-image-1 {
    float: none; }

  .feature-1-image-2 {
    margin-top: 0px !important; }

  .no-overlap {
    padding-bottom: 0px; }

  .custom-icon-cart {
    display: none; }

  #CartCount {
    display: none; }

  .just-one-testimonial {
    padding-top: 0px; }

  .just-two-testimonials {
    padding-top: 0px; }

  .centered-content {
    width: 75%; }

  .feature-2-images {
    max-width: 100%;
    width: 100%;
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto; }

  .cart-table td, .cart-table th {
    padding: 10px; }

  .cart-title {
    text-align: center;
    padding-bottom: 0px; }

  #collection-sorting {
    padding-top: 50px; }

  .featured-product-button {
    margin-bottom: 5px; }

  .template-index .product-description {
    width: 75%; }

  h1, .h1 {
    font-size: 28px; }

  h2, .h2 {
    font-size: 22px; }

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

  h4, .h4 {
    font-size: 20px; }

  h5, .h5 {
    font-size: 16px; }

  h6, .h6 {
    font-size: 14px; }

  .featured-product-title {
    font-size: 36px; }

  .feature-2-wrapper {
    padding-top: 50px !important; }

  .feature-2-image-2 {
    margin-top: -50px !important; }

  .footer-link-wrapper {
    width: 33%; }

  .testimonials-wrapper {
    display: block; }

  .testimonial-column {
    display: block;
    float: inherit !important; }

  .split-collection-text .collection-description {
    margin-right: auto;
    margin-left: auto; }

  .split-collection-parent {
    width: 100%; }

  .split-collection-text {
    width: 50% !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px; }

  .footer-logo img {
    padding-bottom: 25px; }

  .js-drawer-open .site-header {
    visibility: hidden; }

  .template-blog hr {
    display: none; }

  .single-testimonial {
    width: 400px;
    margin-left: auto;
    margin-right: auto; }

  .left-testimonial-wrapper {
    padding-top: 50px; }

  #testimonials {
    padding: 50px 0 50px 0px; }

  .testimonial-column {
    width: 100%; }

  .testimonial-column {
    float: left; }

  .template-product .product-images {
    width: 100%;
    max-height: 100%; }

  .footer-links-wrapper {
    padding-bottom: 30px; }

  .collection-description {
    width: 75%; }

  .account-details {
    padding-left: 30px; }

  .footer-logo {
    margin-left: auto;
    margin-right: auto; }

  .featured-collection {
    padding-top: 50px;
    padding-bottom: 50px; }

  .footer-col {
    width: 100%; }

  #ProductThumbs {
    padding-bottom: 25px; }

  .wrapper-product-page {
    padding-left: 0px; }

  .product-description-wrapper {
    width: 100%; }

  .product-description.rte {
    width: 100%; }

  .main-heading {
    font-size: 35px; }

  .testimonial-text {
    width: auto;
    font-size: 14px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    padding-bottom: 20px; }

  .site-nav__link {
    padding: 15px 20px; }

  .site-header__logo {
    position: relative; }

  .collproductlist {
    margin-bottom: 45px; }

  .otherpagelogo {
    font-size: 20px; }

  .product-item-parent {
    padding-bottom: 25px;
    padding-top: 25px; }

  .footer-social-icon {
    float: none; }

  .testimonial-text::before {
    left: 0px; }

  .user-profile {
    padding-left: 0px;
    padding-right: 0px; }

  .insta-comment {
    visibility: hidden; }

  .product-features-wrapper {
    padding: 0 50px; }

  .feature-1-wrapper {
    margin-bottom: 0px !important; }

  .feature-1-images {
    position: relative;
    top: 0px;
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block; }

  .feature-1-text, .feature-2-text {
    text-align: center;
    float: none;
    width: 100% !important;
    visibility: visible !important;
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px; }

  .feature-1-text {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px;
    float: none !important;
    max-width: 100%;
    padding-bottom: 25px; }

  .feature-2-text {
    max-width: 100%;
    float: none !important;
    left: 0 !important;
    margin-top: 0px !important;
    padding-top: 50px; }

  .feature-1-image-1 {
    position: relative;
    max-width: 100%;
    max-height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block; }

  .feature-1-image-1 > img {
    border: none;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: block;
    max-width: 100%;
    max-height: 400px; }

  .feature-1-image-2 {
    position: relative;
    top: 0px;
    float: none;
    left: 0px;
    margin-left: auto;
    margin-right: auto;
    display: table;
    padding-left: 0px; }

  .mobile-image-2-right {
    display: none;
    max-width: 50% !important;
    width: 50%;
    padding-left: 0px !important; }

  .mobile-image-2-left {
    display: none;
    max-width: 50% !important;
    width: 50%; }

  .mobile-image-2-left > img {
    float: right !important; }

  .mobile-image-2-right > img {
    float: left !important; }

  .feature-1-image-2 > img {
    border: none;
    display: table-cell;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    max-height: 400px; }

  .feature-2-image-2 {
    top: 0px;
    visibility: visible;
    position: relative; }

  .feature-2-image-1-wrapper {
    width: 100%;
    float: none;
    margin-right: 0px;
    float: none; }

  .feature-2-image-1 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    right: auto;
    padding-top: 25px; }

  .feature-2-image-1-wrapper > img {
    position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: none;
    max-height: 400px; }

  .feature-2-image-2 > img {
    margin-left: auto;
    margin-right: auto;
    border: none;
    display: block;
    max-width: 100% !important;
    max-height: 400px;
    float: none; }

  .feature-2-image-2 {
    right: 0px;
    bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    float: inherit; }

  .feature-2-wrapper {
    padding-top: 0px;
    margin-top: inherit; }

  .feature-2-wrapper:after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

  .spacer-line, .featured-content-spacer-line {
    margin-left: auto !important;
    margin-right: auto !important; }

  #FeaturedContent {
    text-align: center; }

  .left {
    float: none !important; }

  .articles-wrapper {
    width: 100%; }

  .nav-header {
    padding-left: 0px; }

  .footer-links-wrapper {
    margin-left: 0px; }

  .split-collection-text {
    width: 100%;
    text-align: center; }

  .split-collection-image {
    width: 100%; }

  .featured-collection {
    padding-top: 0px;
    padding-bottom: 50px; }

  .footer-links {
    text-align: left; }

  .section {
    padding-bottom: 50px;
    padding-top: 50px; } }
/* Phone Landscape */
@media screen and (max-width: 767px) {
  .site-header__cart-toggle {
    color: #333333; }

  .site-header__cart-toggle {
    bottom: 3px; }

  .buttons-wrapper {
    padding-bottom: 25px;
    margin-bottom: 0px; }

  .featured-content-overlay {
    padding-bottom: 0px; }

  .featured-content-section .video-wrapper {
    padding: 25px; }

  .video-text-col {
    padding-top: 25px;
    padding-bottom: 25px; }

  .product-features-section .no-overlap {
    padding-top: 0px; }

  .featured-product-section, .featured-collection-section {
    padding-top: 25px;
    padding-bottom: 25px; }

  .product-features-section {
    padding-bottom: 25px; }

  .hero-section {
    padding-bottom: 25px; }

  .featured-image-section {
    height: 300px; }

  .hero-content-wrapper {
    padding-left: 25px;
    padding-right: 25px; }

  .video-wrapper-bg {
    padding: 0px; }

  .hero-video-fallback-image {
    margin-left: 25px;
    margin-right: 25px; }

  .hero-video-wrapper {
    display: none; }

  #iframe-wrapper, #vimeo_player {
    display: none !important; }

  .centered-content, .hero-text {
    position: relative;
    z-index: 100;
    padding-bottom: 25px !important; }

  .header-wrapper {
    padding-left: 0px; }

  .video-wrapper-padding {
    padding-bottom: 0px; }

  .top-bar {
    display: none; }

  .site-header__cart-toggle {
    color: #333333; }

  #video {
    background: none; }

  .site-header__logo a {
    font-size: 22px; }

  .mobile-toggle-menu .currency-picker {
    display: none; }

  .mobile-nav__item .currency-picker {
    display: inline-block;
    margin-left: 10px !important; }

  .currency-picker {
    margin-left: 10px !important;
    top: 0px !important; }

  .newsletter {
    width: 75%; }

  .just-one-testimonial {
    padding-top: 0px; }

  .featured-content-section td {
    width: 100%;
    text-align: center; }

  .template-index .product-description.rte {
    width: 100%; }

  .just-testimonials {
    padding-top: 0px; }

  #video {
    opacity: 1;
    height: auto !important; }

  .hero-video-fallback-image {
    display: block !important; }

  #iframe-wrapper {
    display: none; }

  #iframe-wrapper {
    pointer-events: auto; }

  .centered-content {
    width: 100%; }

  .site-header-wrapper {
    padding: 10px 25px 10px 25px; }

  #account th, #account td {
    background: none !important; }

  .template-customers-order th, .template-customers-order td {
    background: none !important;
    padding-left: 0px; }

  .currency-picker {
    margin-left: 0px !important; }

  .currency-picker:after {
    margin-top: -3px;
    z-index: 1; }

  #collection-sorting {
    padding-top: 25px;
    padding-bottom: 25px; }

  .main-content {
    padding-top: 50px;
    padding-bottom: 50px; }

  .collection-header {
    margin-bottom: 25px; }

  .featured-collection {
    padding-bottom: 0px;
    padding-top: 0px; }

  .mfp-zoom-in-cur {
    cursor: default; }

  .footer-link-wrapper {
    width: 50%; }

  .address-return {
    display: block;
    margin-top: -20px;
    margin-bottom: 10px; }

  .split-collection-image {
    min-height: 200px; }

  .cell img {
    max-height: 400px; }

  .split-collection-parent {
    width: 100%; }

  .split-collection-sibling {
    width: 100%; }

  .split-collection-text {
    padding: 0px; }

  .mobile-toggle-menu > * {
    padding: 10px;
    color: #333333; }

  .template-customers-account .table-wrap {
    margin-left: 0px;
    margin-top: 0px; }

  .template-customers-order th, td {
    display: block;
    width: 100%; }

  .responsive-order th, .responsive-order td {
    width: 50%;
    display: inline-block; }

  .order-title {
    padding-top: 50px !important; }

  .desktop-order {
    display: none !important; }

  .split-collection-text {
    padding-bottom: 25px; }

  #testimonials {
    padding: 50px 25px 25px 25px; }

  .toggle-wrapper {
    position: relative;
    text-align: center;
    right: 0px;
    margin-bottom: 25px; }

  .password-page__signup-form {
    padding-bottom: 25px; }

  .btn--checkout {
    margin-bottom: 10px; }

  .extra-header-padding {
    padding-top: 0px; }

  .collection-description {
    width: 100%; }

  .template-customers-account th, .template-customers-account td {
    padding: 5px 5px 5px 0px;
    vertical-align: top; }

  .account-header {
    padding-left: 0px; }

  .new-address {
    float: left;
    margin-left: -5px;
    margin-bottom: 50px;
    margin-top: 0px; }

  .password-input, .signup-input {
    margin-bottom: 10px; }

  .left-testimonial-wrapper {
    padding-left: 0px; }

  .split-collection-text {
    width: 100% !important;
    padding-left: 25px;
    padding-right: 25px; }

  .blog-page {
    padding-top: 50px; }

  .filter {
    display: block; }

  .main-subheading, .secondary-call-to-action, .main-heading {
    color: white !important; }

  .spacer-line, .featured-content-spacer-line {
    margin-left: auto !important;
    margin-right: auto !important; }

  .header-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 0px; }

  .header-wrapper {
    background: url("hero_v-108432127566061888931481059042.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 300px; }

  .feature-1-images {
    padding-top: 25px; }

  .hero-text {
    z-index: 200;
    position: relative;
    color: white !important; }

  .main-heading, .main-subheading {
    color: white !important; }

  .hero-photo {
    display: none; }

  .hero {
    padding-top: 0px; }

  .grid--full.grid__item {
    display: block !important; }

  .left-testimonial-wrapper {
    padding-left: 0px; }

  .testimonial-text::before {
    left: 0px; }

  .user-profile {
    padding-left: 0px; }

  .right-testimonial-wrapper {
    padding-right: 0px; }

  .newsletter {
    padding-left: 25px;
    padding-right: 25px; }

  .popup .newsletter {
    padding-left: 0px;
    padding-right: 0px; }

  .secondary-call-to-action {
    display: inline-block;
    margin-top: 25px;
    left: 0px; } }
/* Phone Portrait */
@media screen and (max-width: 479px) {
  .video-text-col {
    padding-left: 25px !important;
    padding-right: 25px !important; }

  .single-testimonial {
    padding-top: 25px; }

  .hero-video-fallback-image {
    min-height: 300px; }

  .secondary-call-to-action {
    display: block; }

  .site-header__logo a {
    font-size: 18px; }

  .newsletter {
    width: 100%; }

  .template-index .product-description {
    width: 100%; }

  .video-wrapper {
    padding: 0 25px 0 25px; }

  .filled-circle {
    font-size: 125px; }

  .play-button {
    width: 125px;
    height: 125px; }

  .stroke-circle {
    width: 125px;
    height: 125px;
    font-size: 125px; }

  .filled-circle {
    width: 100px;
    height: 100px;
    font-size: 100px; }

  .featured-product-button {
    margin-bottom: 10px; }

  .product-features-wrapper {
    padding: 0 25px; }

  .first-insta-of-three {
    width: 100% !important; }

  .browse-by label {
    display: block;
    margin-bottom: 10px; }

  .form-horizontal label {
    display: block;
    margin-bottom: 10px; }

  .cell img {
    max-height: 300px; }

  .insta-wrapper {
    width: 100%; }

  .insta-comment-table {
    display: block;
    height: auto; }

  .instaimg {
    width: 50%;
    height: 200px; }

  .single-testimonial {
    width: 100%;
    margin-left: auto;
    margin-right: auto; }

  .site-footer {
    padding-top: 25px;
    padding-bottom: 25px; }

  .main-heading {
    font-size: 28px; }

  .main-subheading {
    margin-top: 5px; }

  .vertical-spacer {
    height: 26px; }

  .footer-links {
    margin-top: 10px; }

  .featured-content-wrapper {
    background: none; }

  .site-nav__link {
    padding: 0; }

  .product-title {
    font-size: 36px; }

  .collection-title {
    font-size: 45px; }

  .browse-by {
    margin: 20px 10px 0 0; }

  .footer-link {
    padding: 0; } }
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }

  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }

  to {
    opacity: 0; } }