/* CSS Document */
/*============================================================================
  Shopify Timber
  Copyright 2015 Shopify Inc.
  Author Carson Shold @cshold
  Built with Sass - http://sass-lang.com/

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

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Reponsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/* for mobile set 1 row or 2 row */
div#progressBar_back {
  position: relative;
  margin-top: -31px;
  z-index: -1; }

div#progressBar {
  position: relative;
  width: 100%;
  padding-right: 70%; }

div#progressBar {
  border-radius: 7px 0px 0px 7px !important; }

.flip-clock-wrapper {
  margin-top: 30px; }

/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/2282/5219/t/6/assets/icons.eot?v=9569621082325021121");
  src: url("//cdn.shopify.com/s/files/1/2282/5219/t/6/assets/icons.eot?v=9569621082325021121#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/2282/5219/t/6/assets/icons.woff?v=6574892100248703103") format("woff"), url("//cdn.shopify.com/s/files/1/2282/5219/t/6/assets/icons.ttf?v=1793966381440680946") format("truetype"), url("//cdn.shopify.com/s/files/1/2282/5219/t/6/assets/icons.svg?v=8790591914291354894#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

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

button:focus {
  outline: 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; }

/*============================================================================
  #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
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
html {
  background-color: white; }

.site-footer.small--text-center.foot_above, body {
  background-color: white !important; }

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

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

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

table#timertwohour tr td {
  /* font-size: 19px; */
  text-transform: uppercase; }

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

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

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

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

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

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

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

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

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

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 20px;
  padding: 10px 20px;
  border-left: 1px solid #e5e5e5; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 10px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

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

pre {
  overflow: auto;
  padding: 10px;
  margin: 0 0 20px; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #e5e5e5;
  border-width: 1px 0 0;
  margin: 20px 0;
  height: 0; }
  hr.hr--small {
    margin: 10px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

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

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

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

  .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: 20px; } }

.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: 10px; } }

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

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

.change-view--active {
  cursor: default;
  color: #514f4f; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.product-description {
  width: 100%; }

.rte {
  margin-bottom: 10px; }
  .rte a {
    text-decoration: none; }
  .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: 10px; }
  .rte li {
    margin-bottom: 0.4em; }

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

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

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

button {
  overflow: visible; }

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

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary {
  display: inline-block;
  padding: 8px 10px;
  width: auto;
  margin: 0;
  line-height: 1.42;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 6px;
  /*================ Set primary button colors - can override later ================*/
  background-color: #514f4f;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #373636;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: #1d1d1d;
    color: white; }
  .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: #b6b6b6;
    background-color: #f6f6f6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #bbbbbb; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #a2a2a2;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #888888;
    color: white; }

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

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

.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 10px 20px;
  padding: 0; }

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold; }

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

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

@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;
      border-bottom: 1px solid #e5e5e5; } }
/*============================================================================
  #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: 20px; }

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

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

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

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

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

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 768px) {
  input,
  textarea {
    font-size: 16px; } }
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

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 {
  border: 1px solid #e5e5e5;
  padding: 10px; }

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #e5e5e5;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 6px; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #cccccc; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }
  input.input-full,
  textarea.input-full,
  select.input-full {
    width: 100%; }

textarea {
  min-height: 100px; }

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

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

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

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/2282/5219/t/6/assets/ico-select.svg?v=12037499109010566249");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

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

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

.modal.in .modal-dialog {
  z-index: 9999; }

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

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical 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: 6px 0 0 6px; }
  .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 6px 6px 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; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer__social li a {
  color: #ffffff !important; }

a.continuous_shopping.checkout_btn.btn, a.continuous_shopping.checkout_btn.btn--secondary {
  float: inherit;
  font-size: 16px;
  padding: 14px 14px; }

/*============================================================================
  #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 {
  padding: 10px 0; }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }

.site-header__logo {
  text-align: center;
  margin: 0 auto;
  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: block; }
  .site-header__logo img {
    margin: 0 auto; }

.site-header__logo-link {
  max-width: 300px;
  margin: 0 auto; }

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

.site-header__search {
  margin-top: 10px; }

.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: $colorNav;*/ }

.site-nav, .site-nav--mobile {
  font-size: 15px;
  cursor: default;
  margin: 0 0 0 -10px; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block; }

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

.site-nav__link {
  display: block;
  text-decoration: none;
  padding: 10px;
  white-space: nowrap;
  color: #323232; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #0d0d0d;
    cursor: pointer; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    padding-left: 5px; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 5; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown a {
   /*   background-color: $colorNav;
  */ }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      /*background-color: darken($colorNav, 10%);
      */ }

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

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

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

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: #f6f6f6; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    border-bottom: 1px solid #e9e9e9; }
  .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;
  padding: 10px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: #0d0d0d; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: #e9e9e9; }

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

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

.mobile-nav__toggle {
  display: table-cell;
  vertical-align: middle;
  width: 1%; }

.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);
  -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 {
    padding-left: 20px;
    font-weight: normal; }

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

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

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

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

#PageContainer {
  overflow: hidden; }

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

.drawer__header {
  display: table;
  height: 70px;
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 1px solid #e9e9e9; }

.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, .drawer__close button:focus {
    background-color: #e9e9e9; }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: white;
  padding: 30px 0;
  padding-bottom: 0px !important;
  color: black; }
  @media screen and (min-width: 769px) {
    .site-footer {
      padding: 40px 0; } }

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

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

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin-bottom: 20px; }
  .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; }

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

.product-single__photos {
  margin-bottom: 20px; }

.product-single__photos a, .product-single__photos img,
.product-single__thumbnails a,
.product-single__thumbnails img {
  display: block;
  margin: 0 auto; }
.product-single__photos li,
.product-single__thumbnails li {
  margin-bottom: 20px; }

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

.note {
  border-color: #e5e5e5; }

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

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

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

/*============================================================================
  #Cart Page
==============================================================================*/
input.checkout_btn.btn, input.checkout_btn.btn--secondary {
  white-space: pre-line; }

.cart_boxS {
  margin-bottom: 0px !important;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px; }

.product-single .product_img {
  text-align: center; }

.product-single .social-sharing {
  text-align: center; }

.cart__row {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty {
    margin: 0 auto; }

.cart-table th {
  font-weight: normal; }
.cart-table td,
.cart-table th {
  padding: 10px 10px;
  border: none; }

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

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

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

.cart__remove {
  display: block; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
@media (max-width: 768px) {
  .home_prod_info .title {
    font-size: 14px; }

  .top-hedr {
    float: none !important; }

  .nav-bar.desktop_nav {
    display: none !important; }

  .clear {
    clear: both; }

  #bottom_blocks .bottom-block .block-logo {
    width: 14%; }

  #bottom_blocks .block-content {
    width: 80%; }

  .more_load {
    font-size: 20px !important; }

  .product_title_size {
    font-size: 28 px !important; }

  h5, .h5, .h5 {
    font-size: 28 px !important; } }
@media (min-width: 769px) {
  .product_title_size {
    font-size: 28px !important; }

  h5, .h5, .h5 {
    font-size: 18px !important; }

  .nav-bar.mobile_nav {
    display: none !important; }

  .clear {
    display: none; }

  .block-content {
    float: right;
    width: 83%; }

  .site-footer {
    padding: 20px 0; } }
@media (min-width: 640px) and (max-width: 768px) {
  .item.large--one-quarter {
    float: left;
    padding: 15px;
    width: 50%; }

  .section-header {
    text-align: center; } }
@media (max-width: 639px) {
  .item.large--one-quarter {
    float: left;
    padding: 15px;
    width: 50%; }

  .h_pod {
    margin: auto;
    text-align: center; }

  .first_product_disposition .h_pod {
    min-height: 112px;
    max-height: 112px;
    display: inline-block;
    overflow: hidden; }

  .first_product_disposition .h_pod a {
    display: inline-block;
    width: 100%;
    height: 112px; }

  .first_product_disposition .home_prod_info h5.title a, .first_product_disposition .home_prod_info .title.h5 a {
    font-size: 16px; }

  p.sale_wheel-four:before {
    top: -32px !important;
    height: 49px !important;
    width: 60px !important;
    left: -28px !important; }

  p.sale_wheel-four {
    width: 33px !important;
    height: 33px !important;
    font-size: 8px !important; } }
.template-index .header_main {
  left: 0;
  margin: auto;
  /* position: fixed;*/
  right: 0;
  z-index: 9; }

.hr {
  border-top: 1px solid #000;
  margin: 20px 0; }

#AddToCart > span {
  font-size: 30px;
  white-space: pre-line; }

#AddToCartZero span {
  font-size: 28px; }

#AddToCart {
  background: none repeat scroll 0 0 #52a819;
  color: #ffffff;
  width: 100%; }
  #AddToCart:hover, #AddToCart:focus {
    background: none repeat scroll 0 0 #756b6b; }

#AddToCartZero {
  background: none repeat scroll 0 0 #ded200;
  color: #ffffff;
  width: 100%; }
  #AddToCartZero:hover, #AddToCartZero:focus {
    background: none repeat scroll 0 0 #6e6d6d; }

.buy_button {
  background: none repeat scroll 0 0 #00e31c; }

.progressbar_text {
  color: #d80c0c; }

.more_load {
  color: #52a819;
  padding: 0px 10px;
  display: block;
  text-align: center;
  line-height: 33px;
  font-size: 25px;
  border: 2px solid;
  text-transform: capitalize;
  clear: both;
  width: 100% !important;
  margin: 0 auto;
  border-radius: 6px; }

.site-header {
  background: #fffefd; }

div#progress_bar_text p {
  text-transform: capitalize;
  margin-top: 8px;
  text-align: center; }

.product_quantity {
  float: none; }

.product_quantity input {
  width: 80px;
  float: left; }

.progress-bar-success {
  background: #52a819 !important; }

.item_main .image {
  margin: auto;
  padding-top: 10px;
  width: 90%; }

.item_main {
  border-radius: 5px; }

.item_main .home_prod_info {
  padding-left: 10px;
  padding-right: 10px;
  min-height: 50px;
  text-align: center; }

.single-option-selector {
  width: 100%; }

.inline-list > li {
  width: 100%; }

ul.social_footer li a {
  border: 2px solid #9c9c9c;
  border-radius: 50%;
  color: #9c9c9c;
  display: inline-block;
  height: 20px;
  padding: 15px !important;
  text-align: center;
  vertical-align: top;
  width: 20px; }

.social_footer > li {
  float: left;
  list-style: outside none none;
  margin-right: 10px; }

.social_footer .icon {
  position: absolute;
  right: 8px;
  top: 8px; }

.icon-fallback-text {
  position: relative; }

/* footer above code */
#bottom_blocks .bottom-block {
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  float: left;
  margin-bottom: 10px;
  padding: 15px 10px;
  width: 100%; }

#bottom_blocks .bottom-block .block-logo {
  float: left;
  height: 49px;
  margin-right: 15px;
  width: 49px; }

#bottom_blocks .bottom-block .block-content .block-caption {
  color: #676767;
  font-size: 14px;
  font-weight: 600; }

.block-heading {
  color: #000000;
  font-size: 24px;
  line-height: 20px;
  margin-bottom: 5px; }

@media (min-width: 900px) {
  #bottom_blocks .large--two-fifths {
    float: left;
    /*   margin-right: 2%;*/
    width: 49%; }

  #bottom_blocks .large--two-fifths:first-child {
    margin-right: 2%; } }
@media (max-width: 899px) {
  #bottom_blocks .large--two-fifths {
    float: left;
    /*   margin-right: 2%;*/
    width: 100%; } }
@media (min-width: 992px) {
  .nav-bar.desktop_nav.featured-box--image {
    min-height: 150px;
    max-height: 150px;
    text-align: center; }

  .nav-bar.desktop_nav.featured-box--image img {
    width: auto;
    max-height: 150px; }

  .item.large--one-quarter .h_pod a img {
    width: auto;
    max-height: 200px; }

  .item.large--one-quarter .h_pod {
    min-height: 200px;
    max-height: 200px;
    text-align: center; } }
@media (min-width: 768px) and (max-width: 991px) {
  .nav-bar.desktop_nav.featured-box--image img {
    width: auto;
    max-height: 100px; }

  .nav-bar.desktop_nav.featured-box--image {
    max-height: 100px;
    min-height: 100px; }

  .nav-bar.mobile_nav.featured-box--image {
    min-height: 150px;
    max-height: 150px; }

  .nav-bar.mobile_nav.featured-box--image img {
    width: auto !important;
    max-height: 150px; }

  .item.large--one-quarter .h_pod {
    min-height: 150px;
    max-height: 150px;
    text-align: center; }

  .item.large--one-quarter .h_pod img {
    width: auto;
    max-height: 150px; }

  a.grid__image {
    min-height: 200px;
    max-height: 200px;
    text-align: center; }

  a.grid__image img {
    width: auto;
    max-height: 200px; }

  .footer__linklist li {
    -webkit-column-break-inside: auto; }

  footer.site-footer.small--text-center {
    text-align: center; } }
@media (min-width: 481px) and (max-width: 640px) {
  .cart__image img {
    display: block;
    max-width: 60px; }

  .grid--rev > .grid__item .grid-uniform .grid__item.large--one-third.medium--one-half {
    width: 46%;
    margin: 0px !important; } }
@media (min-width: 411px) and (max-width: 500px) {
  .nav-bar.mobile_nav.h5 a {
    min-height: 50px;
    display: block; }

  .nav-bar.mobile_nav.featured-box--image {
    min-height: 150px;
    max-height: 150px; }

  .nav-bar.mobile_nav.featured-box--image img {
    width: auto;
    max-height: 150px; }

  a.grid__image {
    min-height: 150px;
    max-height: 150px; }

  a.grid__image img {
    width: auto;
    max-height: 150px; }

  .fourth_product_disposition .h_pod {
    min-height: 150px;
    max-height: 150px; }

  .item.large--one-quarter .h_pod {
    min-height: 150px;
    max-height: 150px; }

  .item.large--one-quarter .h_pod img {
    width: auto;
    max-height: 150px; }

  .second_product_disposition .item.large--one-half {
    min-height: 150px !important;
    max-height: 150px !important; } }
@media (min-width: 501px) and (max-width: 750px) {
  p.sale_wheel-four {
    width: 33px !important;
    height: 33px !important;
    font-size: 8px !important; }

  .nav-bar.mobile_nav.featured-box--image {
    min-height: 200px;
    max-height: 200px; }

  .nav-bar.mobile_nav.featured-box--image img {
    width: auto;
    max-height: 200px; }

  a.grid__image {
    min-height: 200px;
    max-height: 200px; }

  a.grid__image img {
    width: auto;
    max-height: 200px; }

  .item.large--one-quarter .h_pod {
    min-height: 200px;
    max-height: 200px;
    text-align: center; }

  .h_pod a img {
    width: auto;
    max-height: 200px; }

  .home_prod_info .box_left {
    width: 70% !important;
    text-align: left;
    float: left; }

  .box_right {
    width: 30% !important;
    float: left;
    text-align: right;
    padding-top: 25px; }

  .item.large--one-quarter .h_pod img {
    width: auto;
    max-height: 200px; } }
@media (min-width: 361px) and (max-width: 410px) {
  .nav-bar.mobile_nav.featured-box--image {
    min-height: 136px;
    max-height: 136px; }

  .nav-bar.mobile_nav.featured-box--image img {
    width: auto;
    max-height: 136px; }

  .grid__item.large--one-third.medium--one-half a.grid__image {
    min-height: 136px;
    max-height: 136px; }

  .grid__item.large--one-third.medium--one-half a.grid__image img {
    width: auto;
    max-height: 136px; }

  .fourth_product_disposition .h_pod {
    min-height: 136px;
    max-height: 136px; }

  .item.large--one-quarter .h_pod {
    min-height: 136px;
    max-height: 136px; }

  .item.large--one-quarter .h_pod img {
    width: auto;
    max-height: 136px; }

  .second_product_disposition .item.large--one-half {
    min-height: 136px !important;
    max-height: 136px !important; } }
@media (min-width: 361px) and (max-width: 480px) {
  span.sale_blank {
    min-height: 70px;
    display: block; }

  .cd-half-width {
    top: 37% !important; }

  .cd-btn {
    font-size: 16px !important;
    margin-top: 0 !important;
    padding: 20px !important; }

  .cd-half-width > p {
    margin-bottom: 20px !important; }

  .cd-half-width > h2, .cd-half-width > .h2 {
    margin-bottom: 20px !important; }

  .flexslider.test {
    margin-bottom: -20px; }

  .flex-control-nav {
    bottom: 5px !important; } }
@media (min-width: 320px) and (max-width: 360px) {
  span.sale_blank {
    min-height: 116px;
    display: block; }

  .nav-bar.mobile_nav.featured-box--image {
    min-height: 112px;
    max-height: 112px; }

  .nav-bar.mobile_nav.featured-box--image img {
    width: auto;
    max-height: 112px; }

  a.grid__image {
    min-height: 112px;
    max-height: 112px; }

  .grid__image img {
    max-height: 112px;
    width: auto; }

  .h_pod {
    min-height: 112px;
    max-height: 112px; }

  .h_pod img {
    width: auto;
    max-height: 112px; }

  .second_product_disposition .item.large--one-half {
    min-height: 112px !important;
    max-height: 112px !important; }

  .cd-half-width {
    top: 37% !important; }

  .cd-btn {
    font-size: 12px !important;
    margin-top: 0 !important;
    padding: 5px !important; }

  .cd-half-width > p {
    margin-bottom: 5px !important; }

  .cd-half-width > h2, .cd-half-width > .h2 {
    margin-bottom: 5px !important; }

  .flexslider.test {
    margin-bottom: -20px; }

  .flex-control-nav {
    bottom: 15px !important; }

  .swatch .header {
    width: 22%;
    float: left; } }
#bottom_blocks {
  margin-bottom: 20px;
  min-height: 100px; }

.social_footer {
  margin: auto; }

.misnary {
  margin-bottom: 10px;
  width: 100%; }

.template-collection .grid-uniform .grid__item {
  text-align: center; }

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

.overlay:hover {
  color: #fff; }

.item {
  padding: 0 13px; }

.item_main {
  background: none repeat scroll 0 0 #fff;
  /* border:2px solid #dddddd; */
  padding: 0 0;
  /* display: inline-block; */
  margin-bottom: 26px; }

.home_prod_info h5, .home_prod_info .h5 {
  margin: 10px 5px 5px; }

.home_prod_info .description {
  margin: 0 5px 5px; }

@media (min-width: 768px) {
  .non_carousel li {
    margin-bottom: 18px !important; }

  .non_carousel .flex-viewport {
    width: 100%;
    border: none;
    box-shadow: none; }

  .non_carousel .flex-viewport ul#ProductThumbs {
    width: 100% !important; }

  .non_carousel .flex-viewport ul#ProductThumbs li {
    width: 23.1% !important;
    margin-right: 1.5% !important;
    min-height: 104px;
    max-height: 104px; }

  /*
    .non_carousel .flex-viewport ul#ProductThumbs li:nth-child(4) {
      margin-right: 0px !important;
  }
    
    .non_carousel .flex-viewport ul#ProductThumbs li:nth-child(8) {
      margin-right: 0px !important;
  }
    */
  .non_carousel .flex-direction-nav {
    display: none; } }
span.featured-box--title {
  padding: 4px 5px;
  text-align: center;
  font-weight: 600;
  /* border: 1px solid #aa0303; */
  color: #514f4f;
  border-radius: 0px 0px 5px 5px;
  /* border-bottom: 4px solid #aa0303; */
  width: 100%;
  display: block; }

@media (min-width: 320px) and (max-width: 768px) {
  .grid.product-single > .grid__item.large--one-half > h1, .product-single.grid--rev > .grid__item.large--one-half > h1, .product-single.grid--full > .grid__item.large--one-half > h1, .grid.product-single > .grid__item.large--one-half > .h1, .product-single.grid--rev > .grid__item.large--one-half > .h1, .product-single.grid--full > .grid__item.large--one-half > .h1 {
    font-size: 26px;
    line-height: 30px !important; }

  #ProductPrice {
    font-size: 1.5em !important;
    font-weight: bold;
    float: left;
    width: 100%; }

  ul.mobile-nav__sublist li.mobile-nav__item:after {
    border: none; }

  ul.mobile-nav__sublist li.mobile-nav__item a {
    color: #fff;
    padding: 5px 26px;
    border: none;
    font-size: 13px; }

  .grid__item.large--one-half.text-right.secure-shopping {
    text-align: left !important; }

  .grid__item.large--one-half.text-right.secure-shopping p {
    margin-bottom: 0; }

  .grid__item.large--one-half.checkout-logos {
    text-align: left !important; }

  .grid__item.large--one-half.checkout-logos p {
    margin-bottom: -1px; }

  .cart__row {
    padding-top: 0px;
    margin-left: 0px;
    border: none; }

  .mobile-nav__sublist .awemenu-megamenu-item h3, .mobile-nav__sublist .awemenu-megamenu-item .h3, .mobile-nav__sublist .awemenu-megamenu-item .h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 0;
    padding: 10px 15px;
    background-color: #888888;
    margin-bottom: 0; }

  .mobile-nav__sublist .awemenu-megamenu-item ul.super {
    background-color: #252525;
    margin: 0;
    padding: 10px 15px; }

  .mobile-nav__sublist .awemenu-megamenu-item ul.super li {
    border-bottom: 1px solid #4a4a4a; }

  .mobile-nav__sublist .awemenu-megamenu-item ul.super li:last-child {
    border-bottom: none; }

  .mobile-nav__sublist .awemenu-megamenu-item ul.super {
    /* margin-left: 0px; */ }

  .mobile-nav__sublist .awemenu-megamenu-item ul.super li a {
    color: #fff;
    font-size: 13px;
    padding: 3px 15px; }

  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 1700px;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    background-color: #252525;
    max-height: 300px !important;
    overflow: scroll; }

  .mobile-nav li {
    margin-bottom: 0;
    border-bottom: 1px solid #4a4a4a; }

  .grid__item.collage-grid__row > .item {
    float: left;
    width: 100%; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--two-thirds a .h_pod {
    height: auto !important;
    width: 100%;
    display: table;
    line-height: normal; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--one-third a .h_pod {
    height: 100%; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--one-third a .h_pod img {
    height: auto;
    display: block;
    margin: 0 auto; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--two-thirds a .h_pod img {
    max-width: 250px !important;
    width: 100% !important; }

  .fourth_product_disposition p.sale_wheel {
    left: 30% !important; }

  .second_product_disposition .item.large--one-half {
    width: 100%; }

  .clock-item {
    margin: 8px !important;
    width: 22% !important; }

  .text .val {
    font-size: 20px !important;
    margin-top: 33px !important;
    color: #3c3c3c;
    text-shadow: none; }

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

  .text .type-time {
    font-size: 12px !important;
    margin-top: 50px !important;
    color: #3c3c3c;
    text-shadow: none; } }
@media (min-width: 768px) and (max-width: 991px) {
  .flexslider .slides img {
    height: auto;
    -moz-user-select: none;
    min-height: 74px; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--two-thirds a .h_pod {
    height: 402px;
    width: 100%;
    display: table;
    line-height: 340px; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--one-third a .h_pod {
    height: 161px; }

  .fourth_product_disposition p.sale_wheel {
    left: 30% !important; }

  .swatch .header {
    width: 15% !important;
    float: left; } }
@media (min-width: 992px) {
  .flexslider .slides img {
    height: auto;
    -moz-user-select: none;
    min-height: 104px; } }
@media (min-width: 768px) and (max-width: 890px) {
  #ProductPhotoImg {
    width: 320px !important; }

  .large--one-half {
    width: 50%; } }
@media (min-width: 640px) and (max-width: 767px) {
  .nav-bar.mobile_nav.featured-box--image {
    min-height: 250px !important;
    max-height: 250px !important; }

  .nav-bar.mobile_nav.featured-box--image img {
    max-height: 250px !important;
    width: auto; }

  .h_pod {
    min-height: 250px !important;
    max-height: 250px !important; }

  .h_pod img {
    max-height: 250px !important;
    width: auto; }

  .grid--rev > .grid__item .grid-uniform .grid__item.large--one-third.medium--one-half {
    width: 46%;
    margin: 0px; }

  .fourth_product_disposition p.sale_wheel {
    left: 21% !important; }

  .clock.row {
    float: left;
    width: 100%;
    padding-left: 0px; }

  #ProductPhotoImg {
    width: 320px !important; } }
@media (min-width: 550px) and (max-width: 639px) {
  .fourth_product_disposition p.sale_wheel {
    left: 42% !important; }

  .clock.row {
    float: left;
    width: 100%;
    padding-left: 0px; }

  .clock-item {
    margin: 8px !important;
    width: 21% !important; }

  #ProductPhotoImg {
    width: 300px !important; }

  .swatch .header {
    width: 15% !important;
    float: left; } }
@media (min-width: 320px) and (max-width: 549px) {
  .fourth_product_disposition p.sale_wheel {
    left: 36% !important; }

  .counter_box table#timertwohour.model3 span {
    font-family: Segment7Standard !important;
    font-size: 50px !important;
    padding-right: 3px;
    padding-left: 2px; }

  .counter_box table#timertwohour.model3 td {
    font-size: 14px !important;
    font-weight: 100;
    text-transform: uppercase;
    padding-right: 25px !important; }

  .clock.row {
    float: left;
    width: 100%;
    padding-left: 0px; }

  .clock-item {
    margin: 8px !important;
    width: 19% !important; }

  #mc-embedded-subscribe-form .input-group-btn {
    float: left;
    width: 100%; }

  .social_footer {
    margin: 0 auto;
    display: inline-block;
    width: auto; }

  #ProductPhotoImg {
    width: 100% !important; }

  .swatch .header {
    width: 22% !important;
    float: left; } }
.purchase {
  display: inline-block;
  width: 100%; }

.cd-btn {
  background: #e65555 !important; }

.flex-direction-nav {
  display: block; }

.site-footer.small--text-center.foot_above {
  background: none repeat scroll 0 0 #fff;
  padding-bottom: 10px;
  padding-top: 10px; }

.template-product .progress {
  background-color: #eae9e9;
  height: 11px !important;
  border-radius: 7px; }

.progress-bar.progress-bar-success {
  border-radius: 7px !important;
  background-image: none !important; }

.nav-bar.mobile_nav .icon-fallback-text.site-nav__link.js-drawer-open-left {
  font-size: 26px;
  padding: 0px;
  color: #fff; }

.nav-bar.mobile_nav {
  line-height: 0; }

.nav-bar.mobile_nav .icon-fallback-text {
  font-size: 26px; }

.site-header .wrapper a {
  color: #323232; }

.not_index .site-header .wrapper a {
  color: #1c1c1c; }

.not_index .site-nav__link {
  color: #1c1c1c; }

.inline-list.payment-icons > li {
  width: 50px; }

#subscribe {
  background: none repeat scroll 0 0 #737373; }

#mc-embedded-subscribe-form .input-group-btn {
  float: left;
  width: 150px; }

#mail {
  border-radius: 2px;
  color: #000; }

form#mc-embedded-subscribe-form {
  width: 100%; }

footer.site-footer .owner, footer.site-footer .owner a {
  color: black; }

footer ul.inline-list a {
  color: black; }

.owner, .owner a {
  color: #000; }

.item.large--one-quarter {
  float: left;
  padding: 15px;
  text-align: center; }

.account {
  padding: 0 15px; }

.clear_both {
  clear: both; }

.home_prod_info {
  text-align: center; }

.sale strong {
  color: red; }

.template-collection .grid__item .h6 a {
  color: #000 !important; }

.sale s {
  color: #d75154; }

.second_product_disposition .item.large--one-half {
  position: relative;
  float: left;
  margin-bottom: 20px; }

.second_product_disposition .item.large--one-half:hover .home_prod_info {
  opacity: 1; }

.second_product_disposition .item.large--one-half .home_prod_info {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 7%;
  background-color: rgba(255, 255, 255, 0.87);
  opacity: 0;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease; }

.third_product_disposition .grid__item.collage-grid__row:nth-child(odd) .item {
  float: left; }

.third_product_disposition .grid__item.collage-grid__row:nth-child(even) .item.large--two-thirds {
  float: right; }

.third_product_disposition .grid__item.collage-grid__row .item {
  float: left; }

.home_prod_info-act h5, .home_prod_info-act .h5, .home_prod_info-act p {
  display: inline; }

.home_prod_info-act {
  float: left;
  width: 100%;
  text-align: center;
  padding: 18px; }

.third_product_disposition .grid__item.collage-grid__row .item a .h_pod {
  padding: 20px;
  background-color: #f7f7f7; }

.third_product_disposition .grid__item.collage-grid__row .item.large--one-third a .h_pod {
  height: 230px; }

.third_product_disposition .grid__item.collage-grid__row .item.large--one-third a .h_pod img {
  height: 100%;
  display: block;
  margin: 0 auto; }

.third_product_disposition .grid__item.collage-grid__row .item.large--two-thirds a .h_pod {
  height: 520px;
  width: 100%;
  display: table;
  line-height: 500px; }

.third_product_disposition .grid__item.collage-grid__row .item.large--two-thirds a .h_pod img {
  width: 100%;
  margin: 0 auto;
  vertical-align: middle;
  height: auto;
  display: table; }

p.sale_wheel strong {
  line-height: normal;
  vertical-align: middle;
  display: table-cell; }

p.sale_wheel {
  position: absolute;
  border: 1px solid #94c047;
  padding: 0px 0px;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  text-align: center;
  text-transform: uppercase;
  color: #94c047;
  line-height: normal;
  display: table; }

p.sale_wheel-two strong {
  display: table-cell;
  vertical-align: middle; }

p.sale_wheel-two {
  position: absolute;
  border: 1px solid #94c047;
  padding: 0px;
  border-radius: 0px 0px 97% 0px;
  width: 62px;
  height: 62px;
  text-align: left;
  text-transform: uppercase;
  color: white;
  line-height: normal;
  background-color: #94c047;
  padding-left: 2px;
  display: table; }

p.sale_wheel-three strong {
  display: table-cell;
  vertical-align: middle; }

p.sale_wheel-three {
  position: absolute;
  border: 1px solid #ffffff;
  padding: 0px;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  line-height: normal;
  box-shadow: 0px 0px 0px 5px #94c047;
  background-color: #94c047;
  border-style: dashed;
  display: table; }

p.sale_wheel-four strong {
  display: table-cell;
  vertical-align: middle; }

p.sale_wheel-four {
  position: absolute;
  border: 1px solid #fff;
  padding: 9px 0px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  line-height: normal;
  box-shadow: 0px 0px 0px 5px #94c047;
  background-color: #94c047;
  border-style: dashed;
  margin-top: 12px;
  font-size: 12px;
  display: table; }

p.sale_wheel-four:before {
  content: "";
  position: absolute;
  top: -31px;
  height: 55px;
  width: 80px;
  background-image: url(https://cdn.shopify.com/s/files/1/1475/3640/t/2/assets/christmas_sale.png?14210346024537749440);
  background-size: 100% 100%;
  left: -28px; }

.third_product_disposition a, .text-link {
  color: #2d2626; }

hr, .hr--small, .hr--medium, .hr--large {
  border-width: 1px 0 0 0;
  margin: 20px auto !important;
  border-top: 1px solid #e6e6e6 !important; }

.box_right {
  width: 39%;
  float: left;
  text-align: right;
  padding-top: 25px; }

.box_left {
  width: 60%;
  text-align: left;
  float: left; }

a.buy_button {
  padding: 6px 11px;
  border-radius: 4px; }

.fourth_product_disposition .h_pod img.image {
  max-height: auto; }

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

.fourth_product_disposition p.sale_wheel {
  position: absolute;
  border: 1px solid #bf0000;
  padding: 12px 0px;
  border-radius: 50%;
  width: 82px;
  height: 82px;
  text-align: center;
  text-transform: uppercase;
  color: #f5f3f3;
  line-height: 52px;
  left: 36%;
  top: 50px;
  font-size: 13px;
  background: #d14141;
  filter: alpha(opacity=84);
  opacity: 0.84; }

form#AddToCartForm label.quantity-selector {
  float: left;
  margin-bottom: 5px;
  margin-top: 10px;
  margin-right: 0;
  width: 20%; }

form#AddToCartForm .product_quantity {
  float: left;
  text-align: center; }

form#AddToCartForm .selector-wrapper {
  float: left;
  width: 100%; }

form#AddToCartForm .selector-wrapper label {
  float: left;
  width: 20%;
  margin-top: 9px; }

form#AddToCartForm .selector-wrapper select.single-option-selector {
  float: left;
  width: 75%; }

h1.product_title_size, .product_title_size.h1 {
  margin-top: -9px; }

button.close {
  font-size: 26px; }

form#AddToCartForm .product_quantity input#Quantity {
  text-align: center;
  width: 65px;
  float: left;
  border-radius: 0px; }

.fourth_product_disposition .item.large--one-quarter:hover .sale_wheel {
  opacity: 1; }

.fourth_product_disposition .item.large--one-quarter {
  position: relative; }

.fourth_product_disposition p.sale_wheel {
  opacity: 0;
  /* text-align: center; */
  -webkit-transition: opacity 50ms ease-in-out;
  -moz-transition: opacity 50ms ease-in-out;
  -ms-transition: opacity 50ms ease-in-out;
  -o-transition: opacity 50ms ease-in-out;
  transition: opacity 50ms ease-in-out;
  z-index: 5; }

.first_product_disposition .item.large--one-quarter .home_prod_info p.sale s {
  color: #d75154;
  margin-right: 10px; }

.first_product_disposition .item.large--one-quarter .home_prod_info p.sale {
  font-weight: 700;
  font-size: 16px; }

.first_product_disposition .item.large--one-quarter .home_prod_info p.sale sup {
  font-weight: 800; }

.second_product_disposition .item.large--one-half a .h_pod {
  text-align: center; }

.alert-header-strip a.close {
  color: white;
  float: right;
  margin-right: 6px; }

.alert.alert-header-strip {
  text-align: center;
  background: #ff0a00;
  color: white; }

.ajaxcart__qty {
  min-width: 130px;
  float: left; }

.ajaxcart__qty button {
  float: left;
  line-height: 40px;
  border: 1px solid #e9e9e9; }

.ajaxcart__qty input.ajaxcart__qty-num {
  float: left;
  width: 60px;
  text-align: center;
  padding: 0;
  line-height: 40px; }

div#myModal .modal-dialog .modal-content {
  background-color: Transparent; }

div#myModal .modal-dialog .modal-content .modal-header button.close {
  opacity: 1;
  color: #fff;
  text-shadow: none; }

div#myModal .modal-dialog .modal-content .modal-header {
  BORDER: NONE; }

h3#no_button_text, #no_button_text.h3 {
  text-align: center;
  margin-top: 12px; }

/* font family style start*/
.site-header .wrapper a, .mobile-nav__item a {
  font-family: Arial !important; }

.product-description.rte, .rte {
  font-family: Arial !important; }

h1, .h1, .h1, h2, .h2, .h2, h3, .h3, .h3, h4, .h4, .h4, h5, .h5, .h5, h6, .h6, .h6 {
  font-family: Arial !important; }

.btn, .btn--secondary,
.rte .btn--secondary, .btn--secondary, .rte .btn--secondary, .rte .btn,
.rte .btn--secondary, .rte .btn--secondary {
  font-family: Arial !important; }

body, input, textarea, select {
  font-family: Arial; }

/*font family end*/
nav.nav-bar.desktop_nav {
  text-align: right; }

a.site-header__cart-toggle.js-drawer-open-right {
  color: #fff; }

.site-header__search {
  margin-top: 0px;
  width: 150px;
  float: right;
  margin-right: 15px; }

.large--right {
  float: left !important;
  width: 150px; }

label.currency-picker__wrapper {
  float: right;
  margin-top: 15px;
  margin-right: 15px; }

a.site-header__cart-toggle.js-drawer-open-right {
  color: #ffffff !important; }

.site-header_cart {
  background: #64b52e;
  padding: 7px 10px 7px 10px;
  text-align: left;
  border-radius: 4px;
  /* width: 47%; */
  float: right;
  margin-top: 15px; }

span.icon.icon-search {
  color: #64b52e; }

#search-field {
  width: 100%;
  padding-left: 24px;
  border-radius: 4px;
  float: left; }

.icon-fallback-text_site {
  position: relative;
  left: 8px;
  float: left;
  top: 28px; }

.account {
  padding: 0 15px;
  width: 90%;
  text-align: right;
  float: right; }

.checkout_btn {
  background: none repeat scroll 0 0 #12ad20;
  width: 250px;
  text-transform: uppercase;
  font-size: 26px;
  margin: 10px auto; }

.timer_box samp {
  color: #ff0000;
  font-weight: bold;
  font-size: 16px; }

.grid__item.large--one-half.checkout-logos p, .grid__item.large--one-half.secure-shopping p {
  font-weight: bold; }

.product-description.rte {
  padding-top: 15px; }

#ComparePrice {
  font-size: 18px;
  float: left;
  margin-top: 10px;
  margin-right: 10px;
  text-decoration: line-through; }

span#salePrice {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  padding: 0 8px;
  border-radius: 3px;
  vertical-align: text-bottom;
  color: #547e06;
  border: 2px solid #547e06; }

.sale-price_coll {
  color: #547e06; }

#ProductPrice {
  font-size: 2em;
  font-weight: bold; }

@media (max-width: 767px) {
  .item.large--one-quarter {
    text-align: center; }

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

  .grid, .grid--rev, .grid--full, .grid--rev, .grid--full, .grid-uniform {
    margin-left: 0px; }

  button#yes_button_text {
    background-color: #ff8806;
    text-align: center;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    white-space: normal; }

  a.js-drawer-open-right.site-nav__link {
    float: right;
    margin-top: -58px; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--two-thirds a .h_pod img {
    width: auto;
    margin: 0 auto;
    vertical-align: middle;
    height: auto !important;
    display: table; }

  /*hide bottom poup on mobile */
  .zoomContainer {
    display: none !important; }

  /* end css done by amit*/ }
@media (min-width: 767px) {
  .second_product_disposition .item.large--one-half a .h_pod img {
    max-height: 400px; } }
table.model6 {
  float: left;
  width: 100%; }

.footer_four {
  text-align: center;
  color: #312e2e;
  margin-bottom: -18px; }

input.btn--secondary.update-cart {
  background: none;
  color: #080808;
  border: 1px solid #596b8c;
  padding: 16px; }

p.fake_counter_p {
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 600; }

p.fake_counter_p span.fake_counter_b {
  padding: 5px;
  background-color: #52a819;
  border-radius: 5px;
  margin-right: 5px;
  margin-left: 5px;
  font-size: 22px;
  font-weight: 600;
  color: #fffcfc;
  position: relative;
  font-family: Segment7Standard; }

p.fake_counter_p span.fake_counter_b strong {
  font-size: 15px; }

.misnary a.buy_button:hover {
  color: #fff !important; }

.misnary a.buy_button {
  color: #f20000; }

table.model3 {
  position: relative;
  float: left; }

.clock-item {
  margin-top: -30px; }

#model4 {
  min-height: 115px !important; }

.product-description.rte h2, .product-description.rte .h2 {
  color: #524f4f; }

@media (width: 768px) {
  .item.large--two-thirds {
    width: 66.66%; }

  .item.large--one-third {
    width: 33.33%; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--two-thirds a .h_pod img {
    width: auto;
    margin: 0 auto;
    vertical-align: middle;
    height: auto;
    display: inline; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--one-third a .h_pod {
    height: 230px;
    line-height: 187px; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--one-third a .h_pod img {
    height: auto;
    display: inline;
    margin: 0 auto;
    vertical-align: middle; }

  .third_product_disposition .grid__item.collage-grid__row .item.large--two-thirds a .h_pod {
    height: 520px;
    width: 100%;
    display: table;
    line-height: 480px; } }
.loading {
  min-height: 300px;
  background: url("https://cdn.shopify.com/s/files/1/1620/0633/files/loader.gif") no-repeat center center; }

.flex-caption {
  width: 96%;
  padding: 2%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  font-size: 14px;
  line-height: 18px; }

div#ProductPhoto div:first-child {
  margin: 0 auto; }

.flex-viewport {
  border: 1px solid rgba(99, 93, 93, 0.14);
  box-shadow: 0px 4px 14px -5px rgba(88, 82, 82, 0.48); }

/*.zoomContainer {
    margin-top: -40px;
}*/
.flexslider .flex-direction-nav a.flex-next {
  right: 0;
  width: 34px;
  padding: 5px;
  background-color: rgba(79, 79, 79, 0.43);
  background-position: -265px 0; }

.flexslider .flex-direction-nav a.flex-prev {
  left: 0;
  width: 34px;
  padding: 5px;
  background-color: rgba(79, 79, 79, 0.43); }

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 0 !important; }

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 0px !important; }

p.section-header__left a {
  font-weight: 700;
  font-size: 1.893em;
  color: #000;
  text-transform: capitalize; }

.video_title {
  color: #0aa106; }

@media screen and (min-width: 320px) and (max-width: 767px) {
  table.cart-table.full tr.cart__row td:first-child:before {
    display: none; }

  .zoomImg {
    display: none !important; } }
.mobile-nav > .mobile-nav__item a {
  font-weight: 100;
  text-transform: uppercase;
  font-size: 16px; }

.mobile-nav > .mobile-nav__item {
  background-color: #f6f6f6;
  border-bottom: 1px solid #7b7b7b; }

.mobile-nav__item a, .mobile-nav__toggle button {
  font-weight: 600; }

.top-hedr p {
  margin-bottom: 0;
  font-size: 12px;
  margin-top: 5px;
  margin-left: 10px;
  font-weight: bold; }

.top-hedr {
  float: left; }

.mng-header {
  float: right;
  margin-top: 10px; }

.mng-header ul {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 0;
  margin: 0px;
  float: left; }

.mng-header ul li {
  float: left;
  padding: 0px;
  border-right: 1px solid #969696;
  line-height: 10px; }

.mng-header ul li a {
  font-size: 12px;
  padding: 2px 7px;
  color: white !important; }

.mng-header ul li ul li {
  border: none; }

.mng-header ul li:last-child {
  border: none; }

.alert.alert-header-strip {
  text-align: center;
  float: left;
  width: 100%; }

.mng-header ul li ul {
  margin: 0px 5px; }

.mng-header ul li a:hover {
  color: #fff;
  cursor: pointer; }

.mng-header ul li ul li a {
  padding: 3px;
  cursor: pointer; }

.text_cart_box {
  width: 65px;
  float: left;
  text-align: center;
  line-height: 22px;
  border-radius: 0px; }

/**********************************
           Start css 
***********************************/
p.ajaxified-cart-feedback.success {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important; }

p.currency_info {
  padding-top: 15px;
  margin-bottom: 0px; }

/* New footer Style */
.footer {
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  background: #282828;
  color: #6f6f6f;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center; }

.template-index .footer {
  margin-top: 0; }

.footer__row {
  display: table;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #dcdcdc !important;
  padding-bottom: 21px;
  border-top: 1px solid #dcdcdc !important;
  padding-top: 16px; }

.footer__module--centered {
  text-align: center;
  vertical-align: middle; }

.footer__module {
  padding: 20px;
  padding: 1.25rem;
  border-right: 1px solid #505050; }

@media (min-width: 75em) {
  .footer__module {
    padding: 30px;
    padding: 1.875rem; } }
.footer__module + .footer__module, .footer__row + .footer__row .footer__module:first-child {
  border-top: none; }

.footer__module:last-child {
  border-right: none; }

.footer__title {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #000000;
  text-transform: uppercase;
  float: left;
  width: 100%;
  text-align: left;
  margin-top: 17px; }

.footer p {
  margin-bottom: 0;
  float: left;
  width: 100%;
  text-align: left;
  font-size: 12p; }

.footer__linklist {
  margin-bottom: -8px;
  margin-bottom: -0.5rem;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px; }

.footer__linklist li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  /* padding-bottom: 8px; */
  /* padding-bottom: 0.5rem; */
  margin-bottom: 0; }

.list--unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
  width: 100%; }

.footer__social .social__item:not(:last-child) {
  margin-right: 10px;
  margin-right: 0.625rem; }

.footer__social .social__item {
  display: inline-block; }

.footer__social svg {
  height: 15px;
  height: 0.9375rem;
  width: 15px;
  width: 0.9375rem; }

.footer__social li a {
  background: #838383;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  padding: 5px 9px;
  color: #fff;
  font-size: 18px;
  float: left;
  text-align: center;
  line-height: 26px; }

ul.footer__linklist.list--unstyled {
  display: grid !important; }

.footer__logo {
  text-align: center;
  vertical-align: middle;
  max-width: 200px;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  will-change: opacity; }

.footer__form {
  position: relative;
  float: left;
  width: 100%; }

.footer__copyright a {
  color: #000000; }

.footer__input {
  border: none;
  background: #6f6f6f;
  background: rgba(111, 111, 111, 0.2);
  float: left;
  width: 100%;
  color: #ddd; }

.footer__submit {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  background: none;
  border: none;
  text-align: right;
  transition: color 0.25s ease-in-out;
  z-index: 99;
  -webkit-appearance: button;
  cursor: pointer;
  color: #989898; }

section.footer__module a {
  color: #ffffff; }

.footer__input, .footer__submit {
  padding: 12px 15px;
  padding: 0.75rem 0.9375rem; }

.footer__misc {
  /*  margin-top: 30px;*/
  margin-top: 15px; }

.footer__misc ul {
  float: right; }

.footer__misc p {
  float: left; }

input#mail:focus {
  outline: none;
  border: none; }

.footer__misc ul {
  margin: 0 0 6px 20px; }

footer.site-footer .wrapper .footer__row:first-child {
  border-bottom: navajowhite; }

section.footer__module p {
  font-size: 12px;
  letter-spacing: 0.1px;
  margin-bottom: 0px;
  float: left;
  width: 100%; }

.footer__module + .footer__module {
  border-top: none; }

.cart_quantity {
  float: right;
  width: 125px; }

.cart_quantity a.plus-minus {
  display: block;
  float: left;
  height: 40px;
  line-height: 38px;
  color: #808080;
  padding: 0;
  border: 1px solid #e4e4e4;
  margin-top: 0px;
  cursor: pointer !important; }

.cart_quantity a.plus-minus i.iconsh.cart_plus {
  background-position: -64px -112px; }

.cart_quantity a.plus-minus i.iconsh.cart_minus {
  background-position: -64px -127px; }

.cart_quantity a.plus-minus i.iconsh {
  display: inline-block;
  line-height: 0;
  vertical-align: top;
  text-indent: 999em;
  white-space: nowrap;
  overflow: hidden;
  background: url(https://cdn.shopify.com/s/files/1/1712/5595/t/2/assets/ico-sprite-small.png?14161394713507193432); }

.cart_quantity a.plus-minus i.iconsh {
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  margin: 12px 5px; }

.zoom img {
  display: block; }

.zoom {
  display: inline-block;
  position: relative;
  width: 100%; }

.cart_quantity.not_click_btn a.plus-minus {
  cursor: default !important;
  background-color: #eaeaea; }

.cart_quantity a.plus-minus:hover {
  background-color: #f3f3f3; }

.drawer__close button:active, .drawer__close button:focus {
  background-color: transparent;
  outline: none; }

@media (min-width: 320px) and (max-width: 768px) {
  .checkout_btn {
    width: 100%; }

  input.btn--secondary.update-cart {
    width: 100%;
    margin: 15px 0px; }

  form#AddToCartForm .product_quantity a.plus-minus {
    line-height: 43px;
    height: 43px; }

  .collection-view button.change-view {
    padding: 6px 5px; }

  .flexslider .slides img {
    height: auto;
    -moz-user-select: none;
    min-height: 81px; }

  .mng-srch a span#CartCount {
    position: absolute;
    /* margin-left: 20px; */
    padding: 3px;
    background-color: #040404;
    line-height: 16px;
    top: 5px;
    border-radius: 50%;
    text-align: center;
    width: 22px;
    left: 57%; }

  span.featured-box--title {
    font-size: 18px; }

  .home_prod_info h5.title a, .home_prod_info .title.h5 a {
    font-size: 18px; }

  .nav-bar.mobile_nav .icon-fallback-text.site-nav__link.js-drawer-open-left {
    font-size: 26px;
    padding: 0px;
    color: #fff;
    display: table;
    margin: 0 auto;
    width: 100%;
    text-align: center; }

  .large--one-half {
    width: 100%; }

  .footer__module {
    display: block;
    margin-right: 15px;
    margin-right: 0.9375rem;
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
    border-width: 0 1px 0 0;
    float: left;
    width: 100%;
    border-bottom: 1px solid #505050;
    text-align: center; }

  .footer__title {
    text-align: center;
    font-size: 12px; }

  .footer__misc {
    margin-top: 30px;
    margin-top: 1.875rem;
    text-align: center; }

  .footer__misc ul {
    float: none; }

  .footer__misc p {
    float: none; }

  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    max-width: 100%;
    left: 0%;
    z-index: 99; }

  .drawer--left {
    width: 100%;
    left: -100%;
    border-right: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none; }

  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: none;
    transform: none; }

  nav.nav-bar.mobile_nav .wrapper {
    padding: 0; }

  nav.nav-bar.mobile_nav .wrapper .medium-down--show .grid__item.grid--full {
    padding-left: 0px; }

  .mng-srch {
    float: left;
    width: 25%;
    text-align: center;
    border: 1px solid #ccc;
    min-height: 55px;
    max-height: 55px;
    background-color: #ffffff;
    border-right: none;
    border-bottom: none;
    position: relative; }

  .grid__item.one-half.text-right.for-nav-menu {
    display: none; }

  .site-header {
    background: #ffffff;
    max-height: 100px;
    min-height: 100px; }

  nav.nav-bar.mobile_nav .wrapper {
    padding: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd; }

  .mng-srch a {
    padding: 15px;
    display: block; }

  .site-nav--mobile .site-nav__link {
    display: inline-block;
    padding: 15px !important; }

  div#NavDrawer {
    background-color: transparent; }

  .drawer__header {
    display: table;
    height: 55px;
    width: 25%;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9e9e9;
    background-color: #f6f6f6; }

  .drawer__title.h3 {
    display: none; }

  .drawer__close button {
    position: relative;
    right: 0px;
    height: 42px;
    padding: 12px;
    color: inherit;
    text-align: center; }

  div#NavDrawer {
    background-color: rgba(0, 0, 0, 0.76);
    padding: 0px;
    margin: 0px;
    top: 18.6%; }

  .supports-fontface .icon-fallback-text .icon {
    display: inline-block;
    font-size: 20px; }

  .ajaxcart__qty .icon-fallback-text .icon {
    display: inline-block;
    font-size: 12px; }

  button.icon-fallback-text.mobile-nav__toggle-open span.icon.icon-plus {
    font-size: 18px; }

  .mobile-nav {
    margin: -15px -15px 0 -15px;
    padding: 15px;
    padding-top: 0; }

  li.mobile-nav__item.mobile-nav__search {
    display: none; }

  div#panel button.btn.icon-fallback-text, div#panel button.icon-fallback-text.btn--secondary {
    line-height: 0; }

  div#panel span.icon.icon-search {
    font-size: 20px;
    padding: 0; } }
@media (min-width: 75em) {
  .footer__linklist {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px; } }
@media (min-width: 48em) {
  .footer__module {
    display: table-cell;
    margin-right: 15px;
    margin-right: 0.9375rem;
    padding: 20px 30px;
    padding: 8px 1.875rem 15px;
    border-width: 0 1px 0 0; } }
@media (width: 768px) {
  .mobile-nav__sublist .awemenu-megamenu-item {
    margin-left: 0px !important;
    list-style: none; }

  .nav-bar.mobile_nav.featured-box--image img {
    width: 100%;
    margin-bottom: 5px; }

  .grid, .grid--rev, .grid--full, .grid--rev, .grid--full, .grid-uniform {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 0; }

  .main-content .grid--rev .grid-uniform .grid__item.large--one-third.medium--one-half {
    width: 50%;
    padding: 3%; }

  .related aside.grid .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half, .related aside.grid--rev .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half, .related aside.grid--full .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half {
    width: 50%;
    padding: 2%;
    text-align: center; } }
@media (min-width: 641px) and (max-width: 767px) {
  .related aside.grid .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half, .related aside.grid--rev .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half, .related aside.grid--full .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half {
    width: 50%;
    padding: 2%;
    text-align: center; }

  .cart__image img {
    display: block;
    max-width: 60px; } }
@media (max-width: 480px) {
  .product_sale_box {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px; }

  .product_sale_box #ProductPrice {
    width: 100% !important; }

  .product_sale_box #ComparePrice {
    margin-top: 0px !important;
    margin-left: 0px !important; }

  .section-header__right .collection-view {
    margin-top: 0px; }

  ul.no-bullets li {
    text-align: center; }

  ul.no-bullets h3, ul.no-bullets .h3 {
    text-align: center; }

  .collection_view .grid__item {
    margin-bottom: 20px; }

  .fourth_product_disposition .home_prod_info .box_left {
    width: 100%; }

  .fourth_product_disposition .home_prod_info .box_right {
    padding-top: 0px;
    width: auto; }

  .first_product_disposition .h_pod {
    min-height: 112px;
    max-height: 112px;
    display: inline-block;
    overflow: hidden; }

  .first_product_disposition .h_pod a {
    height: 112px; }

  table.cart-table tr.cart__row.table__section a.cart__remove {
    position: absolute;
    top: -14px;
    right: 0;
    background-color: #ff1d1d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 29px;
    color: #fff;
    z-index: 99; }

  table.cart-table tr.cart__row.table__section {
    position: relative;
    margin-bottom: 15px;
    border-top: none;
    padding-top: 0px;
    border-bottom: 1px solid #ddd; }

  table.cart-table tr.cart__row.table__section td span.h5 {
    margin-bottom: 0; }

  .cart__image {
    display: block;
    margin-top: -9px; }

  table.cart-table tr.cart__row.table__section td.text-right:before {
    display: none; }

  table.cart-table tr.cart__row.table__section td.text-right {
    padding: 0; } }
@media (min-width: 320px) and (max-width: 640px) {
  p.currency_info {
    text-align: left; }

  .product_sale_box #ProductPrice {
    display: inline-block;
    width: auto; }

  .product_sale_box #ComparePrice {
    margin-top: 2px;
    margin-left: 10px; }

  #bottom_blocks .bottom-block .block-logo {
    float: none;
    height: 49px;
    margin-right: 0px;
    width: 49px;
    text-align: center;
    display: table;
    margin: 0 auto; }

  #bottom_blocks .block-content {
    width: 100%;
    float: left;
    text-align: center; }

  .block-heading {
    color: #000000;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 5px;
    margin-top: 10px;
    float: left;
    width: 100%; }

  .related aside.grid .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half, .related aside.grid--rev .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half, .related aside.grid--full .grid__item .grid-uniform .grid__item.large--one-quarter.medium--one-third.small--one-half {
    width: 100%;
    text-align: center; } }
@media (min-width: 768px) {
  li.site-nav--has-dropdown.megamenu-dropdown {
    position: inherit; }

  .template-collection .grid-uniform .grid__item {
    text-align: center;
    margin-bottom: 16px; } }
/**********************************
                end css
**********************************/
@media (min-width: 769) and (max-width: 1019px) {
  .site-header_cart {
    padding: 10px 5px 10px 5px;
    width: 107px !important;
    font-size: 13px; }

  .grid__item .account {
    padding-right: 0; }

  label.currency-picker__wrapper {
    float: right;
    margin-top: 15px;
    margin-right: 6px; }

  .site-header__search {
    margin-top: -1px;
    width: 103px !important;
    margin-right: 8px; } }
.top_div_counter div#progress_bar1 {
  float: left;
  width: 100%; }

.top_div_counter div#progressBar {
  float: left;
  width: 100%;
  margin-top: 5px; }

.top_div_counter div#progressBar_back {
  float: left;
  width: 100%; }

.top_div_counter .counter_box {
  float: left;
  width: 100%; }

.top_div_counter div#progress_bar_text {
  float: left;
  width: 100%; }

.grid.product-single > .grid__item.large--one-half > h1, .product-single.grid--rev > .grid__item.large--one-half > h1, .product-single.grid--full > .grid__item.large--one-half > h1, .grid.product-single > .grid__item.large--one-half > .h1, .product-single.grid--rev > .grid__item.large--one-half > .h1, .product-single.grid--full > .grid__item.large--one-half > .h1 {
  line-height: 40px;
  margin-bottom: 10px; }

.grid.product-single section.slider .flexslider, .product-single.grid--rev section.slider .flexslider, .product-single.grid--full section.slider .flexslider {
  margin: 0 0 20px; }

/* 16-02-2017 */
div#OfferCartpopup .modal-content {
  float: left;
  width: 100%;
  border: 2px solid #ffffff;
  background-color: #94c047;
  border-radius: 3px;
  overflow: hidden;
  font-family: sans-serif; }

.popp-msg span, .popp-msg-dtl span {
  color: #def9af !important; }

.body-right span b {
  color: #ffffff !important; }

div#OfferCartpopup .modal-header {
  float: left;
  width: 100%;
  border: none;
  padding: 5px; }

div#OfferCartpopup .modal-body {
  float: left;
  width: 100%; }

div#OfferCartpopup .modal-footer {
  float: left;
  width: 100%;
  border: none; }

.body-left {
  float: left;
  width: 20%; }

.body-right {
  float: left;
  width: 75%;
  text-align: left;
  margin-left: 5%; }

.body-right span.title {
  color: #ffffff !important; }

.body-right span {
  font-weight: 100;
  font-size: 3em; }

.popp-msg {
  float: left;
  width: 100%; }

.popp-msg span {
  color: #fff;
  float: left;
  width: 100%;
  font-size: 1.8em;
  font-weight: 100;
  line-height: 30px; }

.body-right h1, .body-right .h1 {
  color: #fff;
  font-weight: 100; }

div#OfferCartpopup .modal-header button.close {
  opacity: 1;
  color: #fff;
  text-shadow: none; }

.popp-msg-dtl {
  float: left;
  width: 100%;
  margin-top: 13px; }

.popp-msg-dtl span {
  font-size: 16px;
  color: #fff; }

.popp-msg span b {
  color: #fff; }

.popp-msg-dtl span b {
  color: #fff; }

div#OfferCartpopup .modal-footer a {
  display: table;
  margin: 0 auto;
  background-color: #ffffff;
  color: #94c047;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 600; }

.grid_new_align {
  direction: ltr;
  text-align: left;
  float: left !important; }

/* 7 march */
.third_product_disposition .item.large--two-thirds img.image {
  height: auto;
  padding: 5px 0; }

.third_product_disposition_mobile span.money {
  line-height: 26px; }

@media (min-width: 320px) and (max-width: 767px) {
  footer.site-footer.small--text-center .footer__row .grid__item {
    padding-left: 0px;
    text-align: center; }

  div#mycarousel ol.carousel-indicators {
    display: none; }

  .second_product_disposition p.sale_wheel-four:before {
    top: -30px !important;
    height: 40px !important;
    width: 46px !important;
    left: -20px !important; }

  .grid__item.large--one-third.medium--one-half {
    width: 50% !important;
    padding: 15px !important;
    float: left; }

  .second_product_disposition .item.large--one-half {
    width: 50% !important;
    float: left; }

  .second_product_disposition .item.large--one-half {
    padding: 0 5px; }

  .second_product_disposition .home_prod_info .title {
    font-size: 12px; }

  .third_product_disposition_mobile h5.title, .third_product_disposition_mobile .title.h5 {
    font-size: 13px; }

  .third_product_disposition_mobile .home_prod_info-act {
    padding: 0px; }

  .third_product_disposition_mobile p.sale {
    line-height: 24px; }

  p.sale_wheel-two {
    position: absolute;
    border: 1px solid #94c047;
    padding: 0px;
    border-radius: 0px 0px 97% 0px;
    width: 50px;
    height: 40px;
    text-align: left;
    text-transform: uppercase;
    color: white;
    line-height: normal;
    background-color: #94c047;
    padding-left: 2px;
    display: table; }

  p.sale_wheel-two strong {
    display: table-cell;
    vertical-align: middle;
    font-size: 12px; }

  p.sale_wheel {
    position: absolute;
    padding: 0px 0px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    line-height: normal;
    display: table; }

  p.sale_wheel strong {
    line-height: normal;
    vertical-align: middle;
    display: table-cell;
    font-size: 12px; }

  p.sale_wheel-three {
    position: absolute;
    border: 1px solid #ffffff;
    padding: 0px;
    border-radius: 50%;
    width: 40px;
    height: 40px; }

  p.sale_wheel-three strong {
    display: table-cell;
    vertical-align: middle;
    font-size: 12px; }

  .inline-list.payment-icons > li {
    width: 30px; } }
.nav-bar.mobile_nav.title {
  line-height: 20px; }

span.icon.icon-discover {
  margin-left: -43px; }

.nav-bar.mobile_nav.h5 {
  line-height: inherit; }

.second_product_disposition .item.large--one-half {
  min-height: 230px;
  max-height: 230px; }

.carousel-inner .item.left {
  float: none !important; }

@media (min-width: 992px) {
  a.grid__image {
    min-height: 200px;
    max-height: 200px;
    text-align: center; }

  a.grid__image img {
    width: auto;
    max-height: 200px; } }
@media (min-width: 751px) and (max-width: 767px) {
  a.grid__image {
    min-height: 200px;
    max-height: 200px;
    text-align: center; }

  a.grid__image img {
    width: auto;
    max-height: 200px; } }
.items-count p {
  font-weight: 700; }

footer.site-footer.small--text-center .footer__row .grid__item {
  padding-left: 0px; }

/* 
   Swatches Styles
*/
.swatch {
  margin: 1em 0; }

/* Label */
.swatch .header {
  margin: 0.5em 0; }

/* Hide radio buttons.*/
.swatch input {
  display: none !important; }

.swatch label {
  /* Rounded corners */
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  /* To give width and height */
  float: left;
  /* Color swatches contain no text so they need to have a width. */
  min-width: 50px !important;
  height: 35px !important;
  /* No extra spacing between them */
  margin: 0;
  /* The border when the button is not selected */
  border: #ccc 1px solid;
  /* Background color */
  background-color: #ddd;
  /* Styling text */
  font-size: 13px;
  text-align: center;
  line-height: 35px;
  white-space: nowrap;
  text-transform: uppercase; }

.swatch-element label {
  padding: 0 10px; }

.color.swatch-element label {
  padding: 0; }

/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8);
  border-color: transparent; }

.swatch .swatch-element {
  float: left;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  /* Spacing between buttons */
  margin: 0px 10px 10px 0;
  /* To position the sold out graphic and tooltip */
  position: relative; }

/* Image with the cross in it */
.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

.swatch .swatch-element .crossed-out {
  display: none; }

.swatch .swatch-element.soldout .crossed-out {
  display: block; }

.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60);
  /* internet explorer */
  -khtml-opacity: 0.6;
  /* khtml, old safari */
  -moz-opacity: 0.6;
  /* mozilla, netscape */
  opacity: 0.6;
  /* fx, safari, opera */ }

/* Tooltips */
.swatch .tooltip {
  text-align: center;
  background: gray;
  color: #fff;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  left: -23px;
  margin-bottom: 15px;
  /* Make it invisible by default */
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.swatch .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%; }

/* CSS triangle */
.swatch .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid gray 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0; }

.swatch .swatch-element:hover .tooltip {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); }

.swatch.error {
  background-color: #e8d2d2 !important;
  color: #333333 !important;
  padding: 1em;
  border-radius: 5px; }

.swatch.error p {
  margin: 0.7em 0; }

.swatch.error p:first-child {
  margin-top: 0; }

.swatch.error p:last-child {
  margin-bottom: 0; }

.swatch.error code {
  font-family: monospace; }

.template-index .main_Product_grid .hidesale {
  display: none; }

.visticounter {
  width: 100%;
  float: left; }

a.more_load {
  margin-bottom: 15px; }

div#progress_bar1 {
  margin-top: 15px; }

body {
  height: auto !important; }

.popup-container .input-group {
  margin-top: 20px;
  float: left; }

.popup-container input.input-group-field {
  float: left;
  width: 70%; }

.popup-container span.input-group-btn {
  float: left;
  width: 30%;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: left; }

.popup-container .input-group {
  margin-top: 20px;
  float: left;
  width: 100%; }

.popup-container span.input-group-btn input#subscribe {
  background: #000;
  color: #fff; }

#OfferCartpopup .modal-footer {
  margin-top: 0; }

@media (min-width: 320px) and (max-width: 359px) {
  .body-left {
    float: none;
    width: auto;
    margin: 0 auto;
    display: table; }

  .body-right {
    float: left;
    width: 100%;
    margin-left: 0%;
    text-align: center; }

  .popp-msg {
    float: left;
    width: 100%;
    font-size: 13px; } }
@media (min-width: 360px) and (max-width: 383px) {
  .body-left {
    float: none;
    width: auto;
    margin: 0 auto;
    display: table; }

  .body-right {
    float: left;
    width: 100%;
    margin-left: 0%;
    text-align: center; }

  .popp-msg {
    float: left;
    width: 100%;
    font-size: 13px; } }
@media (min-width: 384px) and (max-width: 478px) {
  .body-left {
    float: none;
    width: auto;
    margin: 0 auto;
    display: table; }

  .body-right {
    float: left;
    width: 100%;
    margin-left: 0%;
    text-align: center; }

  .popp-msg {
    float: left;
    width: 100%;
    font-size: 13px; } }
@media (min-width: 768px) and (max-width: 955px) {
  .footer__linklist li {
    text-align: left; }

  .grid__item.six-twelfths {
    text-align: left; } }
.hitactive {
  color: #ffffff !important;
  background-color: #52a819 !important; }

.swatch .header {
  width: 15%;
  float: left; }

.swatch-element label {
  width: 100%; }

.swatch-element {
  min-width: 55px; }

.swatch {
  margin: 0.5em 0; }
