@charset "UTF-8";
/*============================================================================
  Beocode Qrack extended Shopify Timber v1.4.0 (Copyright 2014 Shopify Inc., author Carson Shold @cshold)
  Copyright 2015 BeoCode DOO
  Author BeoCode
  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.
==============================================================================*/
/*============================================================================
  Table of Contents

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #OOCSS Media Object
  #Images and iFrames
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav Bar
  #Home Main Slider
  #Home Top Banners
  #Featured Rows
  #Home Centered Full Width Blocks
  #Home Parallax
  #Home Carousel Collections
  #Home Bottom Banners with Icons
  #Home Latest Blog Posts
  #Site Footer
  #Product Grid and List Views
  #Tooltips
  #Collections Page
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Blogs and Comments
  #Notes and Form Feedback
  #Cart Page
  #Demo Styles - for empty store state
  #Product Reviews
  #Customer Account Pages
  #Contact Page
  #FAQ Page

/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/* $colorBorder: lighten($colorBoxWrapper, 10%); */
/*================ Typography ================*/
/*============================================================================
  Get font-families from theme settings
==============================================================================*/
@font-face {
  font-family: "icons";
  src: url(' https://assets3.insales.ru/assets/1/2327/1444119/1592994192/icons.eot ');
  src: url(' https://assets3.insales.ru/assets/1/2327/1444119/1592994192/icons.eot?#iefix ') format("embedded-opentype"), url(' https://assets3.insales.ru/assets/1/2327/1444119/1592994192/icons.woff ') format("woff"), url(' https://assets3.insales.ru/assets/1/2327/1444119/1592994192/icons.ttf ') format("truetype"), url(' https://assets3.insales.ru/assets/1/2327/1444119/1592994192/icons.svg#timber-icons ') format("svg");
  font-weight: normal;
  font-style: normal; }
/*============================================================================
  #Vertical align
==============================================================================*/
.slide-text, .banner-text-wrap, .parallax-text, div.blog-post-image span, ul#sm-icons li a i, .product-list-item .additional-text i, .rating {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
.rating { 
margin-top: 19px;
} 
.wrapper  {
font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
}
/*============================================================================
  #Sass Mixins
==============================================================================*/
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

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

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

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

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

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

/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns and a fixed gutter size
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid-items
==============================================================================*/
/* Force clearfix on grids */
.grid: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: -20px; }

.grid-item {
  float: left;
  padding-left: 20px;
  padding-bottom: 20px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

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

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

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

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }
.js-owl .small--one-half {
    width: 100%;
}
/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
.hidden_mobile {
    display: none;
}
.hidden_desctop {
    display: block;
}

  /** Whole */
  .small--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  #Basic Styles
==============================================================================*/
html, body {
  padding: 0;
  margin: 0;
  overflow-x: hidden; }

.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px; }
  .wrapper:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 481px) {
.hidden_mobile {
    display: block;
}
.hidden_desctop {
    display: none;
}
    .wrapper {
      padding: 0; } }

#main-wrapper {
  background: #fff; }

#main-wrapper.boxed {
  margin: 0 auto;
  width: 1200px; }

.template-index-boxed .slider-wrapper {
  margin: 0 auto;
  box-shadow: none;
  max-width: 1200px;
  overflow: hidden;
  padding: 15px 0; }

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

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

.grid-border > .grid-item {
  padding-top: 30px; }

@media screen and (min-width: 769px) {
  .grid-border--right {
    border-right: 1px solid #d8d8d8; }

  .grid-border--left {
    border-left: 1px solid #d8d8d8; } }
/*============================================================================
  #Helper Classes
==============================================================================*/
.left {
  float: left; }

.right {
  float: right; }

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

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

.hidden {
  display: none; }

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

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

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

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

h1, .h1, #shopify-product-reviews .spr-header-title, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  margin: 0 0 0.5em;
  line-height: 1.4;
  font-weight: normal;
  color: #585858; }
  h1 a, .h1 a, #shopify-product-reviews .spr-header-title 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; }

/*================ Pixel to EM conversion tool - http://pxtoem.com/ ================*/
h1, .h1, #shopify-product-reviews .spr-header-title {
  font-size: 1.733em;
  margin-bottom: 30px; }

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

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

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

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

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

.main-content h1, .main-content .h1, .main-content #shopify-product-reviews .spr-header-title, #shopify-product-reviews .main-content .spr-header-title, .main-content h2, .main-content .h2, .main-content h3, .main-content .h3, .main-content h4, .main-content .h4, .main-content h5, .main-content .h5 {
  color: #585858; }

.sidebar {
  padding-right: 30px;
  margin-top: 10px; }
  .sidebar h2, .sidebar .h2, .sidebar h3, .sidebar .h3, .sidebar h4, .sidebar .h4, .sidebar h5, .sidebar .h5 {
    margin-top: 4px; }

.sidebar-right {
  padding-left: 30px; }

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none; }

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #d8d8d8; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: "\2014 \0020"; }

/*================ 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: 0.5em;
  margin: 0 0 1em; }

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #d8d8d8;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--clear {
    border-top-color: transparent; }
  footer hr {
   /*  border-top-color: 
	darken($colorFooterBg, 10%); */
    /* if you are using dark footer background use this instead */
    border-top-color: #fcfcfc; }
  @media screen and (min-width: 769px) {
    hr.hr--offset-left {
      margin-left: -30px; } }

/*================ Section Headers ================*/
.section-header {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  text-transform: uppercase; }
  .section-header .h1,
  .section-header h1,
  .section-header .h1,
  .section-header #shopify-product-reviews .spr-header-title,
  #shopify-product-reviews .section-header .spr-header-title {
    display: inline-block;
    border-bottom: 1px solid #373738;
    margin: 0;
    color: #585858; }
  .section-header h3, .section-header .h3 {
    margin-bottom: 30px;
    border: none;
    color: #585858; }

.section-header--title {
  margin-bottom: 0; }

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

  .section-header--left {
    display: table-cell;
    vertical-align: middle;
    text-align: left; }
    .section-header--left h1, .section-header--left .h1, .section-header--left #shopify-product-reviews .spr-header-title, #shopify-product-reviews .section-header--left .spr-header-title, .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: 365px; } }
  @media screen and (min-width: 769px) and (max-width: 768px) {
    .section-header--right {
      margin-bottom: 30px; } }

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

.form-horizontal select, .collection-view {
  background-color: white; }

.medium--show {
  display: none; }

/*================ Hide on smaller screens ================*/
@media screen and (max-width: 768px) {
  .medium--hide {
    display: none; } }
@media screen and (max-width: 480px) {
  .small--hide {
    display: none; } }
@media screen and (max-width: 980px) {
  .xlarge--hide {
    display: none; } }
/*================ Show on smaller screens ================*/
@media screen and (max-width: 768px) {
  .medium--show {
    display: block; } }
.collection-view {
  display: none;
  background: transparent;
  vertical-align: middle;
  /*================ We use SVG icons, so simply hide this in oldIE ================*/
  /*================ Only show on larger screens ================*/ }
  .collection-view i {
    font-size: 25px;
    color: #989898; }
  .collection-view i:hover {
    font-size: 25px;
    color: #727272; }
  .lt-ie9 .collection-view {
    display: none; }
  @media screen and (min-width: 769px) {
    .collection-view {
      display: inline-block; } }
  .collection-view a {
    display: block;
    float: left;
    opacity: 0.7;
    cursor: pointer;
    -webkit-transition: opacity 0.15s ease-out;
    -moz-transition: opacity 0.15s ease-out;
    -ms-transition: opacity 0.15s ease-out;
    -o-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out; }
    .collection-view a + a {
      margin-left: 10px; }
    .collection-view a:hover {
      opacity: 0.9;
      -webkit-transition: opacity 0.05s ease-in;
      -moz-transition: opacity 0.05s ease-in;
      -ms-transition: opacity 0.05s ease-in;
      -o-transition: opacity 0.05s ease-in;
      transition: opacity 0.05s ease-in; }
    .collection-view a.collection-view--active {
      opacity: 1;
      cursor: default; }
  .collection-view img {
    display: block;
    opacity: inherit; }

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte h1, .rte .h1, .rte #shopify-product-reviews .spr-header-title, #shopify-product-reviews .rte .spr-header-title, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 0.5em; }
    .rte h1:first-child, .rte .h1:first-child, .rte #shopify-product-reviews .spr-header-title:first-child, #shopify-product-reviews .rte .spr-header-title: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 > div {
    margin-bottom: 15px; }
  .rte ul, .rte ol {
    margin-left: 35px; }
  .rte li {
    /* margin-bottom: 0.4em; */ }

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

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

a:hover,
a:focus {
  color: #5d5d5f; }

button {
  overflow: visible; }

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

.btn, .btn-secondary,
input.btn-secondary, input[type="submit"], .header-cart-btn, #shopify-product-reviews .spr-summary-actions-newreview {
  display: inline-block;
  padding: 12px 14px 9px;
  margin: 0;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 2px;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  /*================ Set primary button colors - can override later ================*/
  background-color: #373738;
  color: #ffffff; }
  .btn.btn--small, .btn--small.btn-secondary, input.btn--small[type="submit"], .btn--small.header-cart-btn, #shopify-product-reviews .btn--small.spr-summary-actions-newreview {
    padding: 8px 14px;
    font-size: 12; }
  .btn.btn--full, .btn--full.btn-secondary, input.btn--full[type="submit"], .btn--full.header-cart-btn, #shopify-product-reviews .btn--full.spr-summary-actions-newreview {
    width: 100%; }
  .btn:hover, .btn-secondary:hover, input[type="submit"]:hover, .header-cart-btn:hover, #shopify-product-reviews .spr-summary-actions-newreview:hover {
    background-color: #2a2a2b;
    color: #ffffff;
    -webkit-transition: background-color 0.05s ease-in;
    -moz-transition: background-color 0.05s ease-in;
    -ms-transition: background-color 0.05s ease-in;
    -o-transition: background-color 0.05s ease-in;
    transition: background-color 0.05s ease-in; }
  .btn:active, .btn-secondary:active, input[type="submit"]:active, .header-cart-btn:active, #shopify-product-reviews .spr-summary-actions-newreview:active {
    background-color: #1e1e1e;
    color: #ffffff; }
  .btn[disabled], [disabled].btn-secondary, input[disabled][type="submit"], [disabled].header-cart-btn, #shopify-product-reviews [disabled].spr-summary-actions-newreview, .btn.disabled, .disabled.btn-secondary, input.disabled[type="submit"], .disabled.header-cart-btn, #shopify-product-reviews .disabled.spr-summary-actions-newreview {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn-secondary,
input.btn-secondary {
  background-color: #a3a0a0;
  color: #ffffff; }
  .btn-secondary:hover, .btn-secondary:active, .btn-secondary:visited,
  input.btn-secondary:hover,
  input.btn-secondary:active,
  input.btn-secondary:visited {
    background-color: #969393;
    color: white; }

.white-btn {
  background: transparent;
  border: 1px solid #a3a0a0;
  color: #a3a0a0; }
  .white-btn:hover, .white-btn:active, .white-btn:focus {
    background: #969393;
    border: 1px solid #969393;
    color: white; }

.btn-secondary i {
  margin-right: 5px; }

span.btn-secondary {
  cursor: auto; }

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

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

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

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

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

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

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

/* li { margin-bottom: 0.25em; } */
.inline-list li {
  display: inline-block;
  margin-bottom: 0; }

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

table.full {
  width: 100%;
  margin-bottom: 15px; }
  table.full thead {
    background-color: white; }
  table.full thead tr th {
    text-transform: uppercase;
    font-size: 80%; }
  table.full .note {
    margin-top: 5px;
    background-color: white; }

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

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

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

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

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

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

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

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

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

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

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

input,
select,
textarea {
  font-size: 1em;
  padding: 8px 10px;
  line-height: 1.42; }

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

legend {
  border: 0;
  padding: 0; }

optgroup {
  font-weight: bold; }

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

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

/*================ Input width and border ================*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
  border: 1px solid #d8d8d8;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 20px;
  background-color: white; }
  input[type="text"]:focus,
  input[type="search"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="file"]:focus,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #bfbfbf; }
  input[type="text"][disabled], input[type="text"].disabled,
  input[type="search"][disabled],
  input[type="search"].disabled,
  input[type="password"][disabled],
  input[type="password"].disabled,
  input[type="email"][disabled],
  input[type="email"].disabled,
  input[type="file"][disabled],
  input[type="file"].disabled,
  input[type="number"][disabled],
  input[type="number"].disabled,
  input[type="tel"][disabled],
  input[type="tel"].disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #f6f6f6;
    border-color: #b6b6b6; }

textarea {
  min-height: 100px; }

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

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

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

/*================ Form labels ================*/
label,
legend {
  display: block;
  margin-bottom: 6px;
  font-size: 15px; }
  label.inline,
  legend.inline {
    display: inline; }
  .form-horizontal label.hidden-label, label.hidden-label, .form-horizontal
  legend.hidden-label,
  legend.hidden-label {
    height: 0;
    width: 0;
    margin-bottom: 0;
    overflow: hidden; }
    .ie9 .form-horizontal label.hidden-label, .lt-ie9 .form-horizontal label.hidden-label, .ie9 label.hidden-label, .lt-ie9 label.hidden-label, .ie9 .form-horizontal
    legend.hidden-label, .lt-ie9 .form-horizontal
    legend.hidden-label, .ie9
    legend.hidden-label, .lt-ie9
    legend.hidden-label {
      height: auto;
      margin-bottom: 2px;
      overflow: visible; }

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

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

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

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

label.error {
  color: #dc0000; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn-secondary,
  .input-group .input-group-btn:first-child > input[type="submit"],
  .input-group .input-group-btn:first-child > .header-cart-btn,
  .input-group #shopify-product-reviews .input-group-btn:first-child > .spr-summary-actions-newreview,
  #shopify-product-reviews .input-group .input-group-btn:first-child > .spr-summary-actions-newreview,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn-secondary,
  .input-group input[type="hidden"]:first-child + .input-group-btn > input[type="submit"],
  .input-group input[type="hidden"]:first-child + .input-group-btn > .header-cart-btn,
  .input-group #shopify-product-reviews input[type="hidden"]:first-child + .input-group-btn > .spr-summary-actions-newreview,
  #shopify-product-reviews .input-group input[type="hidden"]:first-child + .input-group-btn > .spr-summary-actions-newreview {
    border-radius: 2px 0 0 2px;
    border-right: none; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn-secondary,
  .input-group .input-group-btn:last-child > input[type="submit"],
  .input-group .input-group-btn:last-child > .header-cart-btn,
  .input-group #shopify-product-reviews .input-group-btn:last-child > .spr-summary-actions-newreview,
  #shopify-product-reviews .input-group .input-group-btn:last-child > .spr-summary-actions-newreview {
    border-radius: 0 2px 2px 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

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

.input-group .btn, .input-group .btn-secondary, .input-group input[type="submit"], .input-group .header-cart-btn, .input-group #shopify-product-reviews .spr-summary-actions-newreview, #shopify-product-reviews .input-group .spr-summary-actions-newreview,
.input-group .input-group-field {
  height: 42px; }

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

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

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

/*============================================================================
  #Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block;
    margin-top: 5px;
    color: #585858; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.icon:before {
  display: none; }

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

/*================ Button icons ================*/
.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
  margin: 0; }
  .payment-icons li {
    margin: 0 7.5px 7.5px;
    color: #444444;
    cursor: default; }
  .payment-icons .li i {
    font-size: 25px;
    line-height: 25px; }
  .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: #373738;
    -webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    -ms-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out; }
    .social-icons li a:hover {
      color: #111111;
      -webkit-transition: color 0.05s ease-in;
      -moz-transition: color 0.05s ease-in;
      -ms-transition: color 0.05s ease-in;
      -o-transition: color 0.05s ease-in;
      transition: color 0.05s ease-in; }

/*================ Social share buttons ================*/
.social-sharing {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*================ Large Buttons ================*/ }
  .social-sharing a {
    display: inline-block;
    color: #fff;
    border-radius: 2px;
    margin: 0 10px 10px 0;
    height: 22px;
    line-height: 22px;
    text-decoration: none;
    font-weight: normal; }
    .social-sharing a:hover {
      color: #fff; }
  .social-sharing span {
    display: inline-block;
    vertical-align: top;
    height: 22px;
    line-height: 22px;
    font-size: 12px; }
  .social-sharing .icon {
    padding: 0 5px 0 10px; }
    .social-sharing .icon:before {
      line-height: 22px; }
  .social-sharing.is-large a {
    height: 44px;
    line-height: 44px; }
    .social-sharing.is-large a span {
      height: 44px;
      line-height: 44px;
      font-size: 18px; }
    .social-sharing.is-large a .icon {
      padding: 0 10px 0 18px; }
      .social-sharing.is-large a .icon:before {
        line-height: 44px; }

.share-title {
  font-weight: 900;
  font-size: 12px;
  padding-right: 10px; }
  .is-large .share-title {
    padding-right: 16px; }

.share-facebook {
  background-color: #3b5998; }
  .share-facebook:hover {
    background-color: #2d4373; }

.share-twitter {
  background-color: #00aced; }
  .share-twitter:hover {
    background-color: #0087ba; }

.share-pinterest {
  background-color: #cb2027; }
  .share-pinterest:hover {
    background-color: #9f191f; }

.share-fancy {
  background-color: #4999dc; }
  .share-fancy:hover {
    background-color: #2780cb; }

.share-google {
  background-color: #dd4b39; }
  .share-google:hover {
    background-color: #c23321; }

.share-twitter, .share-facebook, .share-pinterest, .share-fancy, .share-google {
  background-color: #373738;
  color: #ffffff; }

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

/*================ Clean Buttons ================*/
.social-sharing.is-clean a {
  background-color: #fff;
  border: 1px solid #ececec;
  color: #333;
  height: 30px;
  line-height: 30px; }
  .social-sharing.is-clean a span {
    height: 30px;
    line-height: 30px;
    font-size: 13px; }
  .social-sharing.is-clean a:hover {
    background-color: #f9f9f9; }
  .social-sharing.is-clean a:hover .share-count {
    background-color: #fff; }
    .social-sharing.is-clean a:hover .share-count:after {
      border-right-color: #fff; }
  .social-sharing.is-clean a .share-title {
    font-weight: normal; }
.social-sharing.is-clean .share-count {
  top: -1px; }
.social-sharing.is-clean .icon-facebook {
  color: #3b5998; }
.social-sharing.is-clean .icon-twitter {
  color: #00aced; }
.social-sharing.is-clean .icon-pinterest {
  color: #cb2027; }
.social-sharing.is-clean .icon-fancy {
  color: #4999dc; }
.social-sharing.is-clean .icon-google {
  color: #dd4b39; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination-border-top {
  padding: 10px 0;
  border-top: 1px solid #d8d8d8;
  clear: both; }
  .pagination-border-top .section-header--left {
    display: table;
    padding-top: 5px;
    font-size: 90%; }

/*================ Custom Pagination ================*/
.pagination-custom {
  display: inline-block;
  padding-left: 0;
  margin: 0;
  background-color: white; }

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

.pagination-custom > li > a,
.pagination-custom > li > span {
  position: relative;
  float: left;
  padding: 5px 10px;
  margin-left: -1px;
  line-height: 1.42;
  text-decoration: none;
  border: 1px solid #d8d8d8; }

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

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

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

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

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

/*============================================================================
  #Top Bar
==============================================================================*/
#top-bar {
  padding: 8.57143px 0;
  background-color: #373738;
  color: #f2f2f2;
  border-bottom: 3px solid #32abe2; }
  #top-bar a {
    color: #ffffff; }
  @media screen and (max-width: 768px) {
    #top-bar {
      text-align: center; } }
  @media screen and (min-width: 768px) {
    #top-bar ul li {
      float: left;
      margin-left: 30px; } }
  #top-bar ul li i.fa {
    margin-right: 5px; }
  #top-bar ul li:first-child {
    margin-left: 0; }

/*============================================================================
  #Site Header
==============================================================================*/
.site-header {
  padding: 7.5px 0;
  color: #6c6c6c; }
  .site-header .site-header--text-link {
    line-height: 1; }
  .site-header a {
    color: #6c6c6c; }
    .site-header a:hover {
      opacity: 0.9; }
  .site-header a.quick-btn {
    color: #ffffff; }
  @media screen and (min-width: 769px) {
    .site-header .grid, .site-header .grid--rev, .site-header .grid--full {
      display: table;
      table-layout: fixed;
      width: 100%; }
      .site-header .grid > .grid-item, .site-header .grid--rev > .grid-item, .site-header .grid--full > .grid-item {
        float: none;
        display: table-cell;
        vertical-align: middle; } }

.header-logo {
  margin: 30px auto;
  max-width: 305px;
  max-height: 50px; }
  @media screen and (min-width: 769px) {
    .header-logo {
      margin: 15px 0; } }
  .header-logo a,
  .header-logo a:hover,
  .header-logo a:focus {
    text-decoration: none;
    color: #6c6c6c; }
  .header-logo a, .header-logo img {
    display: block; }
  .header-logo img {
    margin: 0 auto;
    max-height: 50px;
    width: auto; }

.site-header--text-links {
  font-size: 0.85em;
  padding: 0; }
  .site-header--text-links a {
    font-weight: bold; }

.site-header--meta-links {
  display: inline-block;
  margin-left: 15px; }

.site-header--spacer {
  padding: 0 5px; }

.header-cart-btn {
  position: relative;
  padding-bottom: 10px;
  border: 0 none;
  margin-left: 15px;
  vertical-align: top;
  background: #ffffff;
  color: #585858; }
  @media screen and (max-width: 768px) {
    .header-cart-btn {
      display: none; } }
  .header-cart-btn:hover, .header-cart-btn:focus {
    color: #585858;
    background: #f2f2f2; }

/*
#cartCount {
  display: block;
  position: absolute;
  top: -5px;
  right: -5px;
  text-align: center;
  background-color: $colorAccent;
  color: $headerBackground;
  font: {
    weight: 700;
    size: 13px;
  };
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 20px;

  &.hidden-count {
    display: none;
  }
}
*/
#cartCount {
  font-weight: 700;
  font-size: 13px; }
  #cartCount.hidden-count {
    display: none; }

.search-bar {
  position: relative;
  max-width: 60%;
  margin: 0 auto 30px; }
  .site-header .search-bar {
    width: 35%; }
  .site-header .search-middle .search-bar {
    width: 100%; }
  .search-bar .icon-search {
    font-size: 18px; }
  @media screen and (max-width: 768px) {
    .search-bar {
      display: block;
      max-width: 100%;
      width: 100%;
      margin-bottom: 15px; } }
  .search-bar input[type="text"],
  .search-bar input[type="search"] {
    width: 100%;
    margin-bottom: 0;
    line-height: 1.2;
    padding: 15px 45px 10px 10px;
    height: 44px;
    font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1; }
  .search-bar input[type="submit"],
  .search-bar .search-bar--submit {
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 0;
    width: 45px;
    margin: 0;
    border: 0 none;
    background: none;
    text-align: center;
    cursor: pointer; }
    .site-header .search-bar input[type="submit"], .site-header
    .search-bar .search-bar--submit {
      color: #6c6c6c; }
  .search-bar input[type="submit"] {
    text-indent: -9999px; }
  .site-header .search-bar {
    display: none;
    margin-bottom: 0; }
    @media screen and (min-width: 769px) {
      .site-header .search-bar {
        display: inline-block; } }
    .site-header .search-bar input[type="text"],
    .site-header .search-bar input[type="search"] {
      border: 0 none;
      background-color: #ffffff;
      color: #585858;
      -webkit-transition: background-color 0.2s ease-out;
      -moz-transition: background-color 0.2s ease-out;
      -ms-transition: background-color 0.2s ease-out;
      -o-transition: background-color 0.2s ease-out;
      transition: background-color 0.2s ease-out; }
      .site-header .search-bar input[type="text"]:hover, .site-header .search-bar input[type="text"]:focus,
      .site-header .search-bar input[type="search"]:hover,
      .site-header .search-bar input[type="search"]:focus {
        background-color: #f2f2f2;
        -webkit-transition: background-color 0.05s ease-in;
        -moz-transition: background-color 0.05s ease-in;
        -ms-transition: background-color 0.05s ease-in;
        -o-transition: background-color 0.05s ease-in;
        transition: background-color 0.05s ease-in; }
      .site-header .search-bar input[type="text"]:focus,
      .site-header .search-bar input[type="search"]:focus {
        outline: 0; }

.site-header input::-webkit-input-placeholder {
  color: #585858; }

.site-header input::-moz-placeholder {
  color: #585858; }

/*================ QRACK Theme Site Header Additional ================*/
header.site-header .grid-item {
  padding-bottom: 0; }

.header-cart-btn, .site-header .search-bar {
  border: 1px solid #f0f0f0;
  border-radius: 2px; }

.header-cart-btn {
  padding: 0;
  line-height: 0;
  color: #333333; }
  .header-cart-btn span {
    border-left: 1px solid #f0f0f0;
    display: table-cell;
    padding: 17px 13px 14px; }
    .header-cart-btn span:first-child {
      border-left: 0; }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.navbar {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #d8d8d8;
  box-shadow: 0 3px 3px #e5e5e5; }
  @media screen and (min-width: 768px) {
    .navbar[style] {
      display: block !important; } }
  @media screen and (max-width: 768px) {
    .navbar {
      display: none; } }
  .navbar .header-cart-btn {
    display: none; }
  .navbar .search-bar {
    margin: 0 15px 15px;
    width: auto; }

@media screen and (max-width: 768px) {
  body.move-nav .navbar {
    top: 50px;
    padding-bottom: 50px;
    position: fixed;
    width: 100%;
    z-index: 5000;
    border: 0;
    max-height: 100%;
    overflow-y: scroll; }
    body.move-nav .navbar .wrapper {
      padding: 0; }

  .move-nav {
    margin-top: 50px; } }
@media screen and (max-width: 480px) {
  body {
    margin-top: 50px; } }
.sticky {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  border-top: 0;
  box-shadow: 0 -2px 8px #000 !important; }

@media screen and (min-width: 768px) {
  .navbar.sticky .wrapper {
    position: relative; }
  .navbar.sticky .header-cart-btn {
    display: block;
    position: absolute;
    right: 30px;
    top: 0;
    height: 100%;
    border-radius: 0;
    border-top: 0;
    border-bottom: 0;
    overflow: hidden;
    border-color: #d8d8d8;
    background: transparent;
    color: #333333; }
    .navbar.sticky .header-cart-btn span {
      padding: 22px 13px 30px;
      border-color: #d8d8d8; }
    .navbar.sticky .header-cart-btn span.cart-count {
      color: #333333; }
    .navbar.sticky .header-cart-btn a {
      color: #333333; } }
/* Main Navigation Functionality (it's not recommended editing this)
===============================================================*/
.sm, .sm ul, .sm li {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: normal;
  direction: ltr; }

/* ul.sm ul{position:absolute;top:-999999px;width:100px;} */
ul.sm li {
  position: relative;
  float: left; }

ul.sm > li:first-child {
  margin-left: -20px; }

ul.sm a {
  position: relative;
  display: block;
  white-space: nowrap; }

ul.sm a.disabled {
  cursor: default; }

.sm-rtl, .sm-rtl ul, .sm-rtl li {
  direction: rtl; }

ul.sm-rtl li {
  float: right; }

ul.sm ul li, ul.sm-vertical li {
  float: none; }

ul.sm ul a, ul.sm-vertical a {
  white-space: normal; }

ul.sm ul.sm-nowrap > li > a {
  white-space: nowrap; }

ul.sm:after {
  content: "\00a0";
  display: block;
  height: 0;
  font: 0/0 serif;
  clear: both;
  visibility: hidden;
  overflow: hidden; }

ul.sm, ul.sm *, ul.sm *:before, ul.sm *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

ul.sm {
  -webkit-tap-highlight-color: transparent; }

/* Main settings
===================*/
.sm-simple, .sm-simple ul {
  background-color: #ffffff; }

.sm-simple ul, .sm-simple ul ul {
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05); }

/* Menu items
===================*/
.sm-simple a {
  padding: 20px;
  color: #333333;
  font-size: 14px;
  line-height: 1;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  /* current items - add the class manually to some item or check the "markCurrentItem" script option */ }
  .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    background: #f2f2f2;
    color: black; }
  .sm-simple a.current, .sm-simple a.current:hover, .sm-simple a.current:focus, .sm-simple a.current:active {
    background: #555;
    color: #ffffff; }
  .sm-simple a.has-submenu {
    padding-right: 32px; }

.sm-simple .has-dropdown > a {
  padding: 20px 36px 20px 20px; }

.sm-simple ul li a, .sm-simple ul ul li a {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  text-transform: none;
  padding: 15px; }

.sm-simple ul a.has-submenu,
.sm-simple-vertical a.has-submenu {
  padding-right: 23px; }

/* Sub menu indicators
===================*/
.sm-simple a span.sub-arrow {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  line-height: 16px; }

.sm-simple ul a span.sub-arrow,
.sm-simple-vertical a span.sub-arrow {
  right: 5px; }

/* Items separators
===================*/
.sm-simple ul li,
.sm-simple-vertical li {
  padding-left: 20px;
  padding-right: 20px; }

.sm-simple ul li a,
.sm-simple-vertical li a {
  border-top: 1px solid #f2f2f2;
  padding-left: 0;
  padding-right: 0; }
  .sm-simple ul li a:hover, .sm-simple ul li a:focus, .sm-simple ul li a:active, .sm-simple ul li a.highlighted,
  .sm-simple-vertical li a:hover,
  .sm-simple-vertical li a:focus,
  .sm-simple-vertical li a:active,
  .sm-simple-vertical li a.highlighted {
    background: transparent; }

.sm-simple ul li:first-child a,
.sm-simple-vertical li:first-child a {
  border-top: 0; }

/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/
.sm-simple span.scroll-up, .sm-simple span.scroll-down {
  position: absolute;
  display: none;
  visibility: hidden;
  overflow: hidden;
  border: solid #bbb;
  border-width: 1px 0;
  background: #ffffff;
  height: 22px;
  /* width and position will be automatically set by the script */ }

.sm-simple span.scroll-up-arrow, .sm-simple span.scroll-down-arrow {
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: -8px;
  /* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 8px;
  /* tweak size of the arrow */
  border-style: dashed dashed solid dashed;
  border-color: transparent transparent #555 transparent; }

.sm-simple span.scroll-down-arrow {
  top: 6px;
  border-style: solid dashed dashed dashed;
  border-color: #555 transparent transparent transparent; }

/*
---------------------------------------------------------------
  Responsiveness
  These will make the sub menus collapsible when the screen width is too small.
---------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  /* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
  ul.sm-simple {
    width: auto !important; }

  ul.sm-simple ul {
    display: none;
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important; }

  ul.sm-simple > li {
    float: none; }

  ul.sm-simple > li > a, ul.sm-simple ul.sm-nowrap > li > a {
    white-space: normal; }

  ul.sm-simple iframe {
    display: none; }

  ul.sm > li:first-child {
    margin-left: 0; }

  /* Uncomment this rule to disable completely the sub menus for small screen devices */
  /*.sm-simple ul, .sm-simple span.sub-arrow, .sm-simple iframe {
  	display:none !important;
  }*/
  /* Menu box
  ===================*/
  .sm-simple ul {
    border: 0;
    /* darken the background of the sub menus */
    background: rgba(100, 100, 100, 0.1);
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none; }

  /* Menu items
  ===================*/
  .sm-simple a {
    background: transparent !important;
    color: #333333 !important; }

  .sm-simple a.has-submenu {
    padding-right: 23px; }

  /* add some text indentation for the 2+ level sub menu items */
  .sm-simple ul a {
    border-left: 8px solid transparent; }

  .sm-simple ul ul a {
    border-left: 16px solid transparent; }

  .sm-simple ul ul ul a {
    border-left: 24px solid transparent; }

  .sm-simple ul ul ul ul a {
    border-left: 32px solid transparent; }

  .sm-simple ul ul ul ul ul a {
    border-left: 40px solid transparent; }

  /* Sub menu indicators
  ===================*/
  .sm-simple a span.sub-arrow {
    right: 5px; }

  /* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
  .sm-simple a.highlighted span.sub-arrow {
    display: none !important; }

  /* Items separators
  ===================*/
  .sm-simple li {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important; }

  .sm-simple li:first-child {
    border-top: 0 !important; } }
/*============================================================================
  #Mobile Nav Bar
==============================================================================*/
#mobileNavBar {
  display: none;
  width: 100%;
  background-color: #ffffff;
  /*================ Small mobile nav bar ================*/
  /*================ Medium-down mobile nav bar ================*/ }
  #mobileNavBar:after {
    content: "";
    display: table;
    clear: both; }
  #mobileNavBar .display-table-cell {
    padding: 0 15px; }
  #mobileNavBar .cart-mobile {
    text-align: right; }
  #mobileNavBar .cart-count {
    padding: 0; }
  @media screen and (max-width: 480px) {
    #mobileNavBar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0; } }
  body.move-nav #mobileNavBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; }
  @media screen and (max-width: 768px) {
    #mobileNavBar {
      display: table;
      height: 50px;
      z-index: 7000; }
      .show-nav #mobileNavBar {
        position: fixed;
        left: 0;
        top: 0; } }

.mobileNavBar-link {
  display: block;
  padding: 10px 0;
  color: #333333;
  cursor: pointer; }
  .mobileNavBar-link:hover, .mobileNavBar-link:focus {
    color: #333333; }

/*============================================================================
  #Home Main Slider
==============================================================================*/
#slider {
  text-align: center;
  font-weight: normal; }

.full-width-block.marg-pad-clear {
  margin: 0;
  padding: 0;
  background-color: #ffffff; }

.vert-slider {
  background: white; }

#slider .slide-image-wrapper {
  position: relative; }

#slider .slide-bg-image {
  background-repeat: no-repeat;
  background-position: center center;
 /* background-size: auto 100%;*/
  width: 100%;
  position: absolute;
  display: block;
  height: 600px;
  }
  @media screen and (max-width: 980px) {
    #slider .slide-bg-image {
      height: 500px; } }
  @media screen and (max-width: 768px) {
    #slider .slide-bg-image {
      height: 400px; } }
  @media screen and (max-width: 480px) {
    #slider .slide-bg-image {
      height: 300px; } }

.slide-1, .slide-2, .slide-3, .slide-4, .slide-5 {
  display: block;
  overflow: hidden; }

 

  @media screen and (min-width: 0\0) {
    #slider .slide-1:hover .slide-bg-image,
    #slider .slide-2:hover .slide-bg-image,
    #slider .slide-3:hover .slide-bg-image,
    #slider .slide-4:hover .slide-bg-image,
    #slider .slide-5:hover .slide-bg-image {
      transform: none; } }
 
#slider .wrapper {
  position: relative;
  height: 600px; }
  @media screen and (max-width: 980px) {
    #slider .wrapper {
      height: 500px; } }
  @media screen and (max-width: 768px) {
    #slider .wrapper {
      height: 400px; } }
  @media screen and (max-width: 480px) {
    #slider .wrapper {
      height: 300px; } }

.slide-text {
  text-align: center;
  max-width: 85%;
  margin: 0 auto;
  color: #ffffff; }

#slider .wrapper p {
  margin: 0 auto 7.5px; }

#slider .wrapper p.ltext {
  margin-top: 7.5px; }

.slide-text h2, .slide-text .h2 {
  border: 0;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-left: 0;
  border-right: 0;
  padding: 15px 0;
  display: inline-block;
  font-weight: normal;
  line-height: 1em;
  margin: 0;
  text-transform: none;
  text-transform: uppercase;
  font-size: 7em; }
  @media screen and (max-width: 980px) {
    .slide-text h2, .slide-text .h2 {
      font-size: 4em;
      padding: 10px 0; } }
  @media screen and (max-width: 480px) {
    .slide-text h2, .slide-text .h2 {
      font-size: 2em; } }

span.slide-btn {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 10px;
  color: #ffffff;
  font-size: 16px;
  margin-top: 15px; }
  span.slide-btn:hover {
    background: transparent;
    opacity: 0.8; }

.slide-1 .slide-text {
  color: #000000; }
  .slide-1 .slide-text h2, .slide-1 .slide-text .h2 {
    border-color: #000000;
    color: #000000; }
  .slide-1 .slide-text span.slide-btn {
    color: #000000;
    border-color: #000000; }

.slide-2 .slide-text {
  color: #ffffff; }
  .slide-2 .slide-text h2, .slide-2 .slide-text .h2 {
    border-color: #ffffff;
    color: #ffffff; }
  .slide-2 .slide-text span.slide-btn {
    color: #ffffff;
    border-color: #ffffff; }

.slide-3 .slide-text {
  color: #000000; }
  .slide-3 .slide-text h2, .slide-3 .slide-text .h2 {
    border-color: #000000;
    color: #000000; }
  .slide-3 .slide-text span.slide-btn {
    color: #000000;
    border-color: #000000; }

.slide-4 .slide-text {
  color: #ffffff; }
  .slide-4 .slide-text h2, .slide-4 .slide-text .h2 {
    border-color: #ffffff;
    color: #ffffff; }
  .slide-4 .slide-text span.slide-btn {
    color: #ffffff;
    border-color: #ffffff; }

.owl-theme .owl-controls {
  margin: 0; }

#slider p {
  font-weight: normal;
  line-height: 1.5;
  font-size: 19px; }
  @media screen and (max-width: 768px) {
    #slider p {
      font-size: 16px;
      max-width: 100%; } }
  @media screen and (max-width: 480px) {
    #slider p {
      font-size: 13px; } }
#slider p small {
  text-transform: uppercase;
  font-size: 21px; }
  @media screen and (max-width: 768px) {
    #slider p small {
      font-size: 18px; } }
  @media screen and (max-width: 480px) {
    #slider p small {
      font-size: 15px; } }
#slider div.owl-nav {
  background: transparent;
  display: table; }
#slider .owl-theme {
  position: relative; }
  @media screen and (max-width: 768px) {
    #slider .owl-theme .owl-controls {
      position: absolute;
      width: 100%;
      bottom: 10px; } }
  #slider .owl-theme .owl-controls .owl-nav [class*=owl-] {
    margin: 0 7.5px;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 45%;
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    opacity: 0.4; }
    #slider .owl-theme .owl-controls .owl-nav [class*=owl-]:after {
      top: 3px; }
    #slider .owl-theme .owl-controls .owl-nav [class*=owl-]:hover, #slider .owl-theme .owl-controls .owl-nav [class*=owl-]:focus {
      opacity: 1; }
  @media screen and (max-width: 768px) {
    #slider .owl-theme .owl-controls .owl-nav {
      display: none; } }
  #slider .owl-theme .owl-controls .owl-nav .owl-left {
    left: 0; }
  #slider .owl-theme .owl-controls .owl-nav .owl-next {
    padding-left: 6px;
    right: 0; }
#slider div.owl-nav .owl-prev:after,
#slider div.owl-nav .owl-next:after {
  font-size: 30px; }

/* if only first slide used uncomment this
#slider div.owl-controls{display:none;}
*/
/*============================================================================
  #Home Top Banners
==============================================================================*/
.banners .grid-item {
  padding-left: 20px; }

.banner-image-wrapper {
  position: relative; }

.banner-image {
  width: 100%;
  height: 300px;
  position: absolute;
  display: block;
  overflow: hidden;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat; }

.banner-wrap {
  height: 300px;
  position: relative;
  overflow: hidden;
  padding: 5px; }

.banner-border {
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 100%; }

.banner-text-wrap {
  width: 100%;
  text-align: center; }
 
 

.banners .home-banner-3 .banner-image {
  opacity: 0.8; }

.banners .home-banner-1:hover .banner-image,
.banners .home-banner-2:hover .banner-image,
.banners .home-banner-3:hover .banner-image {
  opacity: 1; }
.banners .home-banner-1:hover .banner-message-1-small,
.banners .home-banner-1:hover .banner-message-2-small,
.banners .home-banner-1:hover .banner-message-3-small,
.banners .home-banner-1:hover .banner-message-1,
.banners .home-banner-1:hover .banner-message-2,
.banners .home-banner-1:hover .banner-message-3,
.banners .home-banner-2:hover .banner-message-1-small,
.banners .home-banner-2:hover .banner-message-2-small,
.banners .home-banner-2:hover .banner-message-3-small,
.banners .home-banner-2:hover .banner-message-1,
.banners .home-banner-2:hover .banner-message-2,
.banners .home-banner-2:hover .banner-message-3,
.banners .home-banner-3:hover .banner-message-1-small,
.banners .home-banner-3:hover .banner-message-2-small,
.banners .home-banner-3:hover .banner-message-3-small,
.banners .home-banner-3:hover .banner-message-1,
.banners .home-banner-3:hover .banner-message-2,
.banners .home-banner-3:hover .banner-message-3 {
  /* background:rgba(0, 0, 0, 0.2); */
  text-shadow: 1px 0 5px rgba(0, 0, 0, 0.2); }

.banners .home-banner-1 .banner-color,
.banners .home-banner-2 .banner-color,
.banners .home-banner-3 .banner-color {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.4); }

.banners .home-banner-1 .banner-message-1,
.banners .home-banner-2 .banner-message-2,
.banners .home-banner-3 .banner-message-3 {
  font-size: 1.2em;
  line-height: 1.1;
  margin-bottom: 5px;
  display: block;
  padding: 6px 10px; }

.banners .home-banner-1 .banner-message-1-small,
.banners .home-banner-2 .banner-message-2-small,
.banners .home-banner-3 .banner-message-3-small {
  font-size: 3em;
  display: block;
  line-height: 1;
  padding: 0 10px; }

.banners .home-banner-1 .banner-message-1 {
  color: #ffffff; }

.banners .home-banner-1 .banner-message-1-small {
  color: #ffffff; }

.banners .home-banner-2 .banner-message-2 {
  color: #ffffff; }

.banners .home-banner-2 .banner-message-2-small {
  color: #ffffff; }

.banners .home-banner-3 .banner-message-3 {
  color: #ffffff; }

.banners .home-banner-3 .banner-message-3-small {
  color: #fffbc4; }

/*============================================================================
  #Featured Rows
==============================================================================*/
.home-blocks-top {
  padding-top: 30px; }
  .home-blocks-top .section-header.clear-title {
    margin-bottom: 10px; }
.home-blocks-top .owl-carousel.owl-loaded {
margin-bottom: 50px; 
}
/*============================================================================
  #Home Centered Full Width Blocks
==============================================================================*/
.full-width-block {
  clear: both;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  margin: 0 0 20px 0;
  padding: 45px 0;
  background: white;
  border-top: none;
  border-bottom: none; }

.full-width-block .section-header .h1 {
  border: none; }

.clear-bot-marg {
  margin-bottom: 0; }

.clear-top-pad {
  padding-top: 0 !important; }

.centered-block {
  text-align: center;
  border: none;
  margin: 0; }

.centered-block h3, .centered-block .h3 {
  font-size: 2em; }

.full-width-block .section-header {
  width: 100%; }

.full-width-block .row-negative-bottom {
  margin-bottom: 0; }

.btn-center {
  margin: 0 auto;
  display: table; }

/*============================================================================
  #Home Parallax
==============================================================================*/
#home-parallax {
  text-align: center;
  background: #373738;
  overflow: hidden;
  background: no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 400px;
  margin-top: 30px;
  margin-bottom: 20px; }

#parallax-image-wrapper {
  position: relative; }

#parallax-image {
  background: #373738;
  opacity: 0.5;
  width: 100%;
  height: 400px;
  position: absolute;
  display: block; }

#home-parallax .wrapper {
  position: relative;
  height: 400px; }

.parallax-text {
  text-align: center;
  color: #ffffff;
  z-index: 2; }

.parallax-text h2, .parallax-text .h2 {
  color: #ffffff;
  line-height: 1;
  font-size: 50px; }
  @media screen and (max-width: 480px) {
    .parallax-text h2, .parallax-text .h2 {
      font-size: 30px; } }

.parallax-text p {
  line-height: 1.5;
  max-width: 980px;
  margin: 0 auto;
  font-size: 18px; }
  @media screen and (max-width: 480px) {
    .parallax-text p {
      font-size: 15px; } }

.parallax-text a {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 10px;
  color: #ffffff;
  font-size: 16px;
  margin-top: 30px; }

.parallax-text a:hover {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #373738; }

/*============================================================================
  #Home Carousel Collections
==============================================================================*/
.home-small-products .item {
  width: 100%; }

.home-small-products .small-pic-wrapper {
  height: 150px;
  display: table;
  table-layout: fixed;
  overflow: hidden;
  float: left;
  margin-right: 15px;
  width: 40%;
  /* if you want to add backgrund color
  background:$thumbnailBackground;
  */ }

.home-small-products .pic-block-small {
  text-align: center;
  position: relative;
  display: table-cell;
  vertical-align: middle; }

.home-small-products .pic-block-small a img {
  width: 100%;
  height: auto; }

.home-small-products .small-products-text {
  float: left;
  width: 40%; }

@media screen and (max-width: 768px) {
  .home-small-products .item {
    clear: none;
    float: left; } }
/* if you need to hide arrows
.number_small_1.owl-theme .owl-controls{
   display:none;
}
*/
/* if you need to hide arrows
.number_small_2.owl-theme .owl-controls{
   display:none;
}
*/
/*============================================================================
  #Home Bottom Banners with Icons
==============================================================================*/
.clean-banners .home-banner-1,
.clean-banners .home-banner-2,
.clean-banners .home-banner-3 {
  background: transparent;
  box-shadow: none;
  border: 1px solid #d8d8d8;
  padding: 20px 20px 5px;
  display: table; }
.clean-banners p {
  display: table; }
.clean-banners i {
  float: left;
  display: block;
  margin: 0 10px 0 0;
  width: 15%;
  color: #32abe2; }
  @media screen and (max-width: 980px) {
    .clean-banners i {
      font-size: 35px; } }
.clean-banners span {
  float: left;
  width: 78%; }
.clean-banners h4, .clean-banners .h4 {
  margin: 0;
  font-weight: bold;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #585858; }

/*============================================================================
  #Home Latest Blog Posts
==============================================================================*/
.home-blog-post {
  padding-bottom: 30px; }

.blog-home-block h4, .blog-home-block .h4,
.blog-home-block h2, .blog-home-block .h2 {
  font-size: 1.25em;
  line-height: 1.2em;
  clear: both;
  padding-top: 20px; }

p.posted {
  text-transform: uppercase;
  display: table;
  width: 100%;
  border: 1px solid #d8d8d8;
  /* if you have a dark layout use this:
  border:1px solid lighten($colorBorder, 10%);
  */
  border-top: none;
  margin: 0; }
  p.posted span.date {
    background-color: rgba(0, 0, 0, 0.03);
    font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    color: #585858;
    text-align: center;
    line-height: 1;
    padding: 15px 0 12px;
    font-size: 80%; }
  p.posted span.comment-icon {
    text-transform: none;
    color: #373738;
    text-align: center;
    border-left: 1px solid #d8d8d8;
    /* if you have a dark layout use this:
    border-left:1px solid lighten($colorBorder, 10%);
    */
    line-height: 1;
    padding: 0;
    font-size: 90%; }
  p.posted span.comment-icon a {
    padding: 15px 0 12px;
    display: block;
    font-size: 90%;
    font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }

p.posted-free {
  font-size: 13px;
  border-bottom: 1px solid #d8d8d8;
  display: table;
  width: 100%;
  /* if no blog thumbnails
   .date{
   padding-left:0;
   }
   
   .date-home{
   padding-left:0;
   }
    */ }
  p.posted-free span {
    padding-bottom: 5px; }
  .blog-regular p.posted-free {
    padding-bottom: 10px; }
    .blog-regular p.posted-free span {
      margin-right: 10px; }
  p.posted-free .date-remove {
    padding-left: 20px; }

div.blog-post-image {
  height: 250px;
  background: rgba(0, 0, 0, 0.03);
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  div.blog-post-image a {
    display: block;
    width: 100%;
    height: 100%; }
  div.blog-post-image span {
    color: #727272;
    text-transform: uppercase; }

/*============================================================================
  #Site Footer
==============================================================================*/
/* Social ribbon  */
#social-ribbon {
  background: #3D3D3D;
  border-top: 3px solid #32abe2;
  padding: 15px 0;
  text-align: center; }

#social-ribbon ul {
  margin: 0 auto;
  padding: 0;
  position: relative;
  float: left;
  display: block;
  left: 50%; }

#social-ribbon ul li {
  float: left;
  margin-right: 30px;
  list-style: none;
  position: relative;
  display: block;
  right: 50%;
  font-size: 21px; }

#social-ribbon ul li:last-child {
  margin-right: 0 !important; }

#social-ribbon ul li.social-large-icon a span {
  display: none; }

ul#sm-icons {
  float: left;
  margin: 0; }

ul#sm-icons li {
  margin-right: 60px;
  float: left;
  list-style: none;
  text-align: center; }
  @media screen and (max-width: 768px) {
    ul#sm-icons li {
      margin: 7.5px 30px 7.5px 0; } }

ul#sm-icons li a {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  font-family: "FontAwesome";
  font-weight: normal;
  background-color: #F6F6F6;
  color: #373738;
  line-height: 0; }

ul#sm-icons li a:hover {
  opacity: 0.8; }

ul#sm-icons li a span {
  display: none; }

/* end ribbon */
.site-footer {
  background-color: #6d6d6d;
  padding: 30px 0 10px;
  color: #444444; }
  @media screen and (min-width: 769px) {
    .site-footer {
      padding: 60px 0 6px; } }
  .site-footer h3, .site-footer .h3 {
    margin: 0 0 15px 0;
    color: #fff;
    border-bottom: 3px solid #fcfcfc;
    /* 3px solid darken($colorFooterBg, 10%); */
    /* if you have a dark layout use this */
    display: inline-block;
    padding-bottom: 5px;
    font-size: 110%; }
    @media screen and (max-width: 768px) {
      .site-footer h3, .site-footer .h3 {
        font-size: 120%; } }
  .site-footer a,
.site-footer p {
    color: #fff; }
    .site-footer a:hover {
      color: #111111; }
  .site-footer .btn-secondary {
    background-color: #32abe2;
    color: #FFFFFF; }
    .site-footer .btn-secondary:hover, .site-footer .btn-secondary:active, .site-footer .btn-secondary:focus {
      background-color: #c23057; }
  .supports-fontface .site-footer .icon-fallback-text .icon {
    color: #444444; }

.legal-links {
  margin-bottom: 0; }
  .legal-links + .legal-links {
    margin-bottom: 15px; }
  .legal-links li {
    padding: 0 15px 0 0;
    font-size: 13px;
    line-height: 30px; }
  .legal-links.copyright, .legal-links.copyright a {
    color: #2b2b2b; }

.footer-link-marg {
  margin-top: 30px;
  /*
   .footer-first-column &{
   margin-top:0;
   }
   */ }

/* Twitter Widget */
div#twitter-load {
  font-size: 90%;
  padding-right: 10px; }
  div#twitter-load ul li {
    border-bottom: 1px solid #fcfcfc;
    /* 1px solid darken($colorFooterBg, 10%); */
   /* if you have a dark footer layout use this:
  1px solid lighten($colorFooterBg, 10%);
  */
    margin-bottom: 4px;
    position: relative; }
  div#twitter-load ul li p.tweet {
    margin-bottom: 10px;
    overflow: hidden; }
  div#twitter-load ul li p.timePosted {
    text-transform: uppercase;
    font-size: 11px;
    color: #848484;
    /*  darken($colorFooterText, 25%); */
   /* if you have a dark footer layout use this:
   lighten($colorFooterText, 25%);
  */
    position: absolute;
    top: 4px;
    right: 0; }

div.user {
  margin: 10px 0 5px;
  line-height: 1.2em; }
  div.user a img {
    width: 25px;
    height: 25px; }
  div.user a span {
    margin-top: -10px;
    display: table;
    margin-left: 35px; }
  div.user span span {
    display: none; }

/*============================================================================
  #Product Grid and List Views
==============================================================================*/
@media screen and (max-width: 769px) {
  .owl-theme .owl-controls .owl-nav {
    display: none; } }
.owl-theme .owl-controls .owl-nav [class*=owl-] {
  background: #373738;
  color: #ffffff;
  width: 25px;
  height: 25px;
  margin: 5px 0 5px 10px;
  padding: 0;
  border-radius: 2px; }
  .owl-theme .owl-controls .owl-nav [class*=owl-]:after {
    position: relative;
    top: -3px; }
    @media screen and (min-width: 0\0) {
      .owl-theme .owl-controls .owl-nav [class*=owl-]:after {
        top: 1px; } }
  .owl-theme .owl-controls .owl-nav [class*=owl-]:hover, .owl-theme .owl-controls .owl-nav [class*=owl-]:active, .owl-theme .owl-controls .owl-nav [class*=owl-]:focus {
    background: #2a2a2b;
    color: #ffffff; }
.owl-theme .owl-controls .owl-nav .owl-prev:after {
  left: 0; }
.owl-theme .owl-next:after {
  left: 1px; }
.owl-theme .owl-dots .owl-dot {
  margin: 10px 0; }
.owl-theme .owl-dots .owl-dot span {
  background: #d5d4d4; }
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #a3a0a0; }
@media screen and (min-width: 768px) {
  .owl-theme .owl-dots .owl-dot {
    display: none; } }
@media screen and (max-width: 768px) {
  .owl-theme .owl-dots .owl-dot {
    margin-bottom: 0; } }

.grid-uniform .product-grid-item p,
.grid-item-wrapper div.product-item--price,
.grid-uniform .product-grid-item .tools,
.owl-carousel .grid-item p,
.owl-carousel .grid-item div.product-item--price,
.owl-carousel .grid-item .tools {
  padding: 0; }

.grid-item-wrapper div.product-item--price .h1, .grid-uniform .product-grid-item h1, .grid-uniform .product-grid-item .h1, .grid-uniform .product-grid-item #shopify-product-reviews .spr-header-title, #shopify-product-reviews .grid-uniform .product-grid-item .spr-header-title {
  color: #585858;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }

.row-negative-bottom {
  margin-bottom: 30px; }

.sold-out .product-grid-image {
  position: relative; }
  .sold-out .product-grid-image img {
    opacity: 0.7; }

.badge {
  display: none;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -15px;
  text-align: center;
  z-index: 5; }

.badge-label {
  display: inline-block;
  margin: 0 auto;
  padding: 5px;
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  background-color: #585858;
  text-transform: uppercase;
  border-radius: 2px; }

.sold-out .badge--sold-out {
  display: block; }

.product-grid-item .spr-badge {
  margin-bottom: 5px;
  display: block; }

.product-grid-item .spr-badge-caption, .small-products-text .spr-badge-caption {
  display: none; }

.even {
  background: rgba(0, 0, 0, 0.02); }

.clear-bot-padding {
  padding-bottom: 0; }

@media screen and (max-width: 768px) {
  .product-list-item .spr-badge {
    clear: both; } }
.product-list-item {
  border-bottom: 1px solid #d8d8d8;
  padding: 20px; }
  .product-list-item p, .product-list-item .rte {
    margin-bottom: 0; }
  .product-list-item:hover {
    background: rgba(0, 0, 0, 0.02); }

.preload {
  visibility: hidden; }

@media screen and (min-width: 769px) {
  .product-list-item .grid, .product-list-item .grid--rev, .product-list-item .grid--full {
    display: table;
    table-layout: fixed;
    width: 100%; }
  .product-list-item .grid-item {
    display: table-cell; } }
.product-grid-image, .product-list-image {
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin: 0 auto 12px;
  position: relative;
  overflow: hidden;
  height: 336px;
  /* if you want to show thumbnail background
  background-color:$thumbnailBackground;
  */ }
  .product-grid-image img, .product-list-image img {
    display: block;
    margin: 0 auto; }

.product-list-image {
  margin-bottom: 0; }

.product-grid-image--centered {
  display: table-cell;
  vertical-align: middle;
    border: 1px solid #eaeaea;
}

.custom-grid-image {
  /* if you want to show thumbnail background
   background-color:$thumbnailBackground;
   */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 auto 12px;
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: block;
  text-align: center; }

a.product-grid-item,
.product-grid-item {
  display: block;
  color: #585858; }
  @media screen and (min-width: 769px) {
    .template-list-collections a.product-grid-item, .template-list-collections
    .product-grid-item {
      margin-bottom: 0; } }

@media screen and (min-width: 768px) {
  .line-item-text {
    padding: 0 30px; } }
@media screen and (max-width: 480px) {
  .line-item-text {
    padding-top: 30px; } }

.product-line-item p {
  padding: 0;
  height: auto; }

div.product-item--price, .best-prices {
  padding: 5px 0;
  margin-bottom: 5px; }

.best-prices {
  margin-bottom: 0; }

del {
  font-size: 95%; }

.product-item--price span del,
.best-prices del {
  color: #32abe2;
  margin-left: 5px;
  font-size: 90%; }

.home-small-products .product-item--price span del {
  display: block;
  margin-left: 0px; }

.section-header {
  position: relative; }

.more-link {
  position: absolute;
  right: 16px;
  bottom: -14px; }
  @media screen and (max-width: 768px) {
    .more-link {
      display: none; } }
  .more-link a {
    background: #a3a0a0;
    color: #ffffff;
    display: block;
    padding: 4px 7px 4px 9px;
    border-radius: 2px;
    outline: #F2F2F2 solid 8px; }
  .more-link a:hover,
  .more-link a:active,
  .more-link a:focus {
    background: #969393; }

.more-link-on-small {
  clear: both;
  margin: 30px auto; }
  @media screen and (min-width: 768px) {
    .more-link-on-small {
      display: none; } }

@media screen and (max-width: 768px) {
  .featured-row {
    margin-bottom: 0; } }
.featured-row .grid-item {
  padding-bottom: 0;
  padding-top: 20px; }

/*================ Owl Carousel Grid Styling ================*/
.owl-carousel .grid-item {
  padding-left: 0;
  padding-bottom: 0; }

.wrapper .owl-nav {
  position: absolute;
  top: -53px;
  right: 15px;
  padding-right: 8px;
  padding-top: 4px;
  background-color: #F2F2F2;
  border-radius: 2px; }

.owl-nav .disabled {
  pointer-events: none;
  opacity: 0.5; }

.owl-nav .owl-prev, .owl-nav .owl-next {
  background: transparent;
  width: 18px;
  height: 18px;
  padding: 4px 0 5px 10px;
  display: block;
  float: right; }

.owl-nav .owl-prev {
  margin-right: 10px;
  padding: 4px 0 5px 8px;
  float: left; }

/* Owl end*/
.product-item--price:after {
  content: "";
  display: table;
  clear: both; }

.show-quickview {
    padding: 3px;
    margin-bottom: 15px;
    display: block;
    border: 1px solid #efeeee;
    text-align: center;
    border-radius: 3px;
      color: gainsboro;
}
.show-quickview:hover {
border: 1px solid #000;
   color: #000;
}

.product-item--price .h1 {
  margin-bottom: 5px;
  color: #585858;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 20px;
  color: #585858; }
.product-item--price span {
  line-height: 22px; }

.sale-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  padding: 6px 10px;
  vertical-align: text-bottom;
  background: #32abe2;
  color: white;
  opacity: 0.9;
  position: absolute;
  bottom: 10px;
  right: 0;
  z-index: 1; }
  .sale-tag sup {
    display: none; }
  .sale-tag.large {
    font-size: 16px;
    padding: 0 12px; }
  .product-meta .sale-tag {
    position: relative;
    top: 2px; }
  .sale-tag.has-reviews {
    margin-bottom: 0; }

.featured-box {
  position: relative;
  display: block;
  padding: 15px 0;
  /* border around promo images
  border: 1px solid $colorBorder;
  */
  margin-bottom: 30px; }
  .featured-box:hover {
    background-color: rgba(0, 0, 0, 0.02); }
  .featured-box:hover .featured-box--title {
    color: #323232; }
  .featured-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* featured collection images bg
       background-color: rgba(0,0,0,.03);
      //  if dark layout use this:
       background-color: rgba(255,255,255,.03);
    */
    z-index: 5;
    border-radius: 2px; }
  .featured-box img {
    padding: 0 15px; }

.featured-box--inner {
  display: table;
  margin: 0 auto; }

.featured-box--image {
  display: table-cell;
  vertical-align: middle; }
  .featured-box--image img {
    width: 100%; }

.featured-box--title,.set-title {
  position: relative;
  display: block;
  color: #585858;
  text-transform: uppercase;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  padding-top: 15px;
  line-height: 1;
  z-index: 10; }

.list-title {
  overflow: hidden;
  padding: 0;
  margin-bottom: 5px;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  line-height: 1.3; }
  .list-title a {
    color: #585858; }
    .list-title a:hover, .list-title a:active, .list-title a:focus {
      color: #727272; }

.small-products-text p {
  font-size: 90%; }

/*================ Animated Buttons ================*/
ul.tools {
  width: 100%;
  display: table; }

ul.tools form {
  margin: 0;
  padding: 0; }

ul.tools li {
  float: left;
  margin-left: 5px; }

ul.tools li:first-child {
  margin-left: 0; }

@media screen and (max-width: 1149px) {
  ul.tools li .btn, ul.tools li .btn-secondary, ul.tools li input[type="submit"], ul.tools li .header-cart-btn, ul.tools li #shopify-product-reviews .spr-summary-actions-newreview, #shopify-product-reviews ul.tools li .spr-summary-actions-newreview {
    padding: 11px 8px 10px; } }

.button-list {
  text-align: center;
  display: block;
  position: relative;
  text-decoration: none;
  border: 1px solid;
  border-color: #373738;
  background: transparent;
  color: #373738;
  white-space: nowrap;
  padding: 11px 8px 10px; }

.button-list:hover {
  border-color: #373738;
  background: #373738;
  color: #ffffff; }

ul.tools i.fa {
  font-size: 1.0em;
  margin-right: 5px;
  line-height: 0;
  margin: 0.4em 0 0.5em; }

@media screen and (min-width: 1150px) {
  ul.tools .hide-tool {
    display: none; } }

@media screen and (max-width: 1149px) {
  ul.tools li .btn span, ul.tools li .btn-secondary span, ul.tools li input[type="submit"] span, ul.tools li .header-cart-btn span, ul.tools li #shopify-product-reviews .spr-summary-actions-newreview span, #shopify-product-reviews ul.tools li .spr-summary-actions-newreview span {
    display: none; } }

@media screen and (min-width: 1149px) {
  .product-grid-item .anim-btn,
  .product-grid-item .anim-btn-delay,
  .product-list-item .anim-btn,
  .product-list-item .anim-btn-delay {
    opacity: 0;
    /*visibility: hidden;*/
    -webkit-animation: fadeOutRight 1s;
    -moz-animation: fadeOutRight 1s;
    animation: fadeOutRight 1s; }

  .product-grid-item .anim-btn-delay,
  .product-list-item .anim-btn-delay {
    opacity: 0;
    /*visibility: hidden;*/
    -webkit-animation: fadeOutRight 0.5s;
    -moz-animation: fadeOutRight 0.5s;
    animation: fadeOutRight 0.5s; }

  .product-grid-item:hover .anim-btn,
  .product-grid-item:hover .anim-btn-delay,
  .product-list-item:hover .anim-btn,
  .product-list-item:hover .anim-btn-delay {
    -webkit-animation: fadeInRight 0.5s;
    /* Chrome, Safari, Opera */
    -moz-animation: fadeInRight 0.5s;
    opacity: 1;
    visibility: visible; }

  .product-grid-item:hover .anim-btn-delay
  .product-list-item:hover .anim-btn-delay {
    -webkit-animation: fadeInRight 1s;
    /* Chrome, Safari, Opera */
    -moz-animation: fadeInRight 1s;
    visibility: visible; } }
.small-products-text ul.tools li .btn span, .small-products-text ul.tools li .btn-secondary span, .small-products-text ul.tools li input[type="submit"] span, .small-products-text ul.tools li .header-cart-btn span, .small-products-text ul.tools li #shopify-product-reviews .spr-summary-actions-newreview span, #shopify-product-reviews .small-products-text ul.tools li .spr-summary-actions-newreview span {
  display: none; }

.small-products-text ul.tools .hide-tool {
  display: inline-block; }

.small-products-text ul.tools li .btn, .small-products-text ul.tools li .btn-secondary, .small-products-text ul.tools li input[type="submit"], .small-products-text ul.tools li .header-cart-btn, .small-products-text ul.tools li #shopify-product-reviews .spr-summary-actions-newreview, #shopify-product-reviews .small-products-text ul.tools li .spr-summary-actions-newreview {
  padding: 13px 8px 10px;
  width: 30px; }

.product-list-item .tools,
.small-products-text .tools {
  margin-top: 12px; }

/*================ Animated Image Cover ================*/
.additional-text {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  color: #ffffff;
  padding: 10px;
  width: 100%;
  height: 100%;
  -webkit-animation: fancyFadeOut 1s;
  -moz-animation: fancyFadeOut 1s;
  -ms-animation: fancyFadeOut 1s;
  -o-animation: fancyFadeOut 1s;
  animation: fancyFadeOut 1s;
  background-color: #373738;
  border: 6px solid #5d5d5f;
  opacity: 0;
  visibility: none;
  text-align: center; }

.additional-text p {
  line-height: 1.3; }

@media screen and (min-width: 980px) {
   }
.grid-item-wrapper .grid-item {
  padding-bottom: 0; }
.grid-item-wrapper img.product-pic {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

@media screen and (min-width: 980px) {
  .grid-item-wrapper:hover img.product-pic {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5); } }
.additional-text i {
  font-size: 30px;
  margin-bottom: 12px; }

.rating p {
  text-transform: none; }

/*============================================================================
  #Tooltips
==============================================================================*/
@media screen and (min-width: 768px) {
  /* Base styles for the element that has a tooltip */
  [data-tooltip],
  .tooltip {
    position: relative;
    cursor: pointer; }

  /* Base styles for the entire tooltip */
  [data-tooltip]:before,
  [data-tooltip]:after,
  .tooltip:before,
  .tooltip:after {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: none; }

  /* Show the entire tooltip on hover and focus */
  [data-tooltip]:hover:before,
  [data-tooltip]:hover:after,
  [data-tooltip]:focus:before,
  [data-tooltip]:focus:after,
  .tooltip:hover:before,
  .tooltip:hover:after,
  .tooltip:focus:before,
  .tooltip:focus:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 1; }

  /* Base styles for the tooltip's directional arrow */
  .tooltip:before,
  [data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: transparent;
    content: ""; }

  /* Base styles for the tooltip's content area */
  .tooltip:after,
  [data-tooltip]:after {
    z-index: 1000;
    padding: 8px;
    width: 100%;
    display: table;
    background-color: #585858;
    color: #F2F2F2;
    content: attr(data-tooltip);
    font-size: 10px !important;
    line-height: 1.2; }

  /* Directions */
  /* Top (default) */
  [data-tooltip]:before,
  [data-tooltip]:after,
  .tooltip:before,
  .tooltip:after {
    bottom: 100%;
    left: 50%; }

  [data-tooltip]:before,
  .tooltip:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: #585858; }

  /* Horizontally align top/bottom tooltips */
  [data-tooltip]:after,
  .tooltip:after {
    margin-left: -140%; }

  [data-tooltip]:hover:before,
  [data-tooltip]:hover:after,
  [data-tooltip]:focus:before,
  [data-tooltip]:focus:after,
  .tooltip:hover:before,
  .tooltip:hover:after,
  .tooltip:focus:before,
  .tooltip:focus:after {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    transform: translateY(-12px); } }
/*============================================================================
  #Collections Page
==============================================================================*/
.col-sidebar h3, .col-sidebar .h3 {
  text-transform: uppercase;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 1px;
  clear: both;  }
.col-sidebar ul {
  margin-bottom: 30px; }
.col-sidebar h4, .col-sidebar .h4 {
 font-size: 17px;
}
.col-sidebar ul li {
  display: table;
  width: 100%; }
.col-sidebar ul.advanced-filters li a {
  color: #585858; }
.col-sidebar ul.advanced-filters li a:hover {
  color: #323232; }
.col-sidebar ul li {
  border-bottom: 1px solid #e5e5e5;
  padding: 4px 0 5px; }
.col-sidebar ul li.article-list {
  border-bottom: 1px solid #e5e5e5; }
.col-sidebar ul.article-list p.best-prices, .col-sidebar em.text-light {
  font-size: 90%;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #585858; }
.col-sidebar ul.article-list p.best-prices {
  margin-bottom: 0; }
.col-sidebar ul.active-layered li {
  background: white;
  padding-left: 15px; }
.col-sidebar p {
  line-height: 1.3; }
.col-sidebar .blog-post-image {
  float: left;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 10px 10px 0; }

em.text-light {
  color: #989898; }

#cart-block {
  margin-bottom: 30px; }
  #cart-block ul {
    margin-bottom: 0; }
  #cart-block ul li {
    border-top: 1px solid #d8d8d8;
    padding: 7px 0 3px; }
  #cart-block ul li:first-child {
    border: none;
    padding-top: 0; }
  #cart-block img {
    max-height: 50px; }
  #cart-block a.quick-img {
    display: block;
    width: 40px;
    overflow: hidden;
    float: left; }
  #cart-block a.quick-txt {
    float: left;
    width: 65%;
    margin-left: 7px;
    line-height: 1.3;
    padding-right: 15px; }
  #cart-block .cart-total-price {
    background: #d8d8d8;
    color: #585858;
    padding: 12px;
    text-align: center; }
  #cart-block .item-qty {
    font-size: 11px; }
  #cart-block .chk-btn {
    width: 100%; }

@media screen and (max-width: 768px) {
  .filter {
    margin-bottom: 15px; } }
/* Wishlist */
#wishlist-message-link,
#wishlist-message-signin {
  display: none; }

.mfp-wrap #wishlist-message-link,
.mfp-wrap #wishlist-message-signin {
  display: block; }

#number-in-wishlist {
  display: none;
  font-style: normal; }

span#load-wishlist {
  padding: 0;
  border: 0;
  margin: 0; }

#load-wishlist #number-in-wishlist {
  display: table-cell;
  padding: 23px 13px 21px;
  border-left: 1px solid #f0f0f0; }

@media screen and (max-width: 480px) {
  .price-mobile {
    margin-left: 20px; } }
/*============================================================================
  #Collection Filters
==============================================================================*/
.mfp-wrap {
  z-index: 5000; }
  .mfp-wrap .white-popup {
    position: relative;
    background: #F2F2F2;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto; }
  .mfp-wrap .white-popup.quick-view {
    max-width: 950px;
    overflow: auto;
    padding: 30px; }
  .mfp-wrap .quick-description {
    max-height: 200px;
    overflow-x: auto; }

.collection-filters .mfp-hide {
  display: table !important; }

@media screen and (max-width: 768px) {
  .collection-filters {
    display: none; } }
@media screen and (min-width: 769px) {
  .toggle-filters {
    display: none; } }
.advanced-filters-wrapper {
 margin: 30px 0;
    clear: both;
    padding: 10px;
    border: 1px solid #e6e6e6;
  
}
.advanced-filters-wrapper h3 {text-align:center;
    margin-bottom: 27px;
}

.advanced-filters {
  margin-bottom: 15px; }

.advanced-filters a {
  display: block;
  position: relative;
  padding-left: 20px; }
  .advanced-filters a:before, .advanced-filters a:after {
    content: '';
    display: block;
    position: absolute; }
  .advanced-filters a:before {
    top: 6px;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: white;
    border: 1px solid #d8d8d8; }
  .advanced-filters a:after {
    top: 9px;
    left: 3px;
    width: 6px;
    height: 6px;
    background-color: transparent; }
  .advanced-filters a:hover:after {
    background-color: #d8d8d8; }

.advanced-filter.active-filter a:after {
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  color: #373738;
  font-size: 8px;
  text-align: center;
  line-height: 12px; }
.advanced-filter.active-filter a:hover:after {
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #373738;
  font-size: 8px;
  text-align: center;
  color: #ffffff;
  line-height: 12px; }

ul.selected-filters .advanced-filter.active-filter a:after {
  color: #ffffff;
  background: transparent;
  font-size: 10px;
  text-align: center;
  margin-left: 5px;
  padding: 2px; }
ul.selected-filters .advanced-filter.active-filter a:hover:after {
  color: #373738; }

ul.advanced-filters {
  margin-bottom: 15px; }

ul.selected-filters {
  padding-bottom: 30px; }

ul.selected-filters li {
  float: left;
  width: auto;
  border: 0;
  margin: 0 5px 0 0; }
ul.selected-filters li a {
  display: block;
  padding: 2px 5px 3px 8px;
  background: #373738;
  color: #ffffff;
  border-radius: 2px; }
ul.selected-filters li a:hover {
  background: #ffffff;
  color: #373738; }

.sorting-filters {
  padding: 10px 0;
  border-top: 1px solid #d8d8d8;
  margin-top: 30px;
  text-align: left; }

.sorting-filters span {
  margin-right: 15px; }

.hr-top-margin {
  margin-top: -30px; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  font-size: 13px;
  margin-bottom: 10px;
  margin-top: 15px;
  height: 52px;
  opacity: 0.8; }
  @media screen and (min-width: 769px) {
    .template-page .breadcrumb, .template-product .breadcrumb {
      margin-bottom: 30px; } }
  @media screen and (max-width: 768px) {
    .breadcrumb {
      height: auto; } }
  .breadcrumb a {
    color: #585858; }
    .breadcrumb a:hover {
      color: #585858; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    margin-right: 7px;
    overflow: hidden; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }
  .breadcrumb + .grid-border {
    margin-top: -30px; }

.breadcrumb--truncate {
  width: 250px;
  white-space: nowrap;
  text-overflow: ellipsis; }

/*============================================================================
  #Product Page
==============================================================================*/
.product-page .section-header h1.section-header--title, .product-page .section-header .section-header--title.h1, .product-page .section-header #shopify-product-reviews .section-header--title.spr-header-title, #shopify-product-reviews .product-page .section-header .section-header--title.spr-header-title {
  max-width: 70%; }
@media screen and (max-width: 768px) {
  .product-page .large-three-fifths, .product-page .large-two-fifths {
    padding-left: 0; } }
.product-page .btn i, .product-page .btn-secondary i, .product-page input[type="submit"] i, .product-page .header-cart-btn i, .product-page #shopify-product-reviews .spr-summary-actions-newreview i, #shopify-product-reviews .product-page .spr-summary-actions-newreview i {
  margin-right: 5px; }

#product-paginate.owl-nav {
  bottom: -17px;
  top: inherit;
  left: 0;
  padding: 0 15px;
  background: transparent;
  width: 100%; }
  @media screen and (max-width: 480px) {
    #product-paginate.owl-nav {
      display: none; } }
  #product-paginate.owl-nav .owl-prev {
    left: 0; }
  #product-paginate.owl-nav .owl-prev,
  #product-paginate.owl-nav .owl-next {
    background: #373738;
    color: #ffffff;
    width: 25px;
    height: 25px;
    display: block;
    margin: 5px;
    padding: 4px 7px 4px 9px;
    border-radius: 2px;
    outline: #F2F2F2 solid 8px; }
    #product-paginate.owl-nav .owl-prev:hover, #product-paginate.owl-nav .owl-prev:active, #product-paginate.owl-nav .owl-prev:focus,
    #product-paginate.owl-nav .owl-next:hover,
    #product-paginate.owl-nav .owl-next:active,
    #product-paginate.owl-nav .owl-next:focus {
      background: #2a2a2b;
      color: #ffffff; }
  #product-paginate.owl-nav .owl-prev:after {
    right: 1px;
    top: -7px;
    position: relative; }
  #product-paginate.owl-nav .owl-next:after {
    right: 0;
    top: -7px;
    position: relative; }

#owl-featured-thumbs, #owl-featured-thumbs-1 {
  margin-left: 0; }
  #owl-featured-thumbs .owl-nav, #owl-featured-thumbs-1 .owl-nav {
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    padding: 0;
    left: 0;
    background: none;
    -webkit-animation: fadeIn 0.5s;
    /* Chrome, Safari, Opera */
    -moz-animation: fadeIn 0.5s;
    -ms-animation: fadeIn 0.5s;
    -o-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
    opacity: 0;
    display: none; }
    #owl-featured-thumbs .owl-nav .owl-prev,
    #owl-featured-thumbs .owl-nav .owl-next, #owl-featured-thumbs-1 .owl-nav .owl-prev,
    #owl-featured-thumbs-1 .owl-nav .owl-next {
      outline: 0;
      margin: 0;
      position: absolute;
      top: 32%; }
    #owl-featured-thumbs .owl-nav .owl-prev, #owl-featured-thumbs-1 .owl-nav .owl-prev {
      left: -12px; }
    #owl-featured-thumbs .owl-nav .owl-next, #owl-featured-thumbs-1 .owl-nav .owl-next {
      right: -12px; }
  #owl-featured-thumbs:hover .owl-nav, #owl-featured-thumbs-1:hover .owl-nav {
    -webkit-animation: fadeIn 0.5s;
    /* Chrome, Safari, Opera */
    -moz-animation: fadeIn 0.5s;
    -ms-animation: fadeIn 0.5s;
    -o-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
    opacity: 1;
    display: block; }
    @media screen and (max-width: 768px) {
      #owl-featured-thumbs:hover .owl-nav, #owl-featured-thumbs-1:hover .owl-nav {
        display: none; } }

h2.product-title, .product-title.h2 {
  font-size: 1.733em; }

span#productPrice {
  color: #585858; }

.flip-back {
  background-color: #32abe2;
  color: white; }
  .flip-back:hover, .flip-back:active, .flip-back:focus {
    background-color: #c23057; }

/*================ Select fields ================*/
.product-variants {
  display: none; }
  .no-js .product-variants {
    display: block; }

.selector-wrapper select,
.product-variants select {
  background-color: white; }

.selector-wrapper label, label.quantity-selector, input#quantity {
  float: left;
  display: block;
  padding-top: 8px;
  min-width: 95px;
  margin-right: 5px; }

label.quantity-selector {
  padding-top: 3px; }

.js-qty {
  float: left; }

#addToCart,
#addToCartPop {
  display: table;
  clear: both; }
  @media screen and (min-width: 480px) {
   }
  #addToCart i,
  #addToCartPop i {
    margin-right: 5px; }

@media screen and (min-width: 480px) {
  select.single-option-selector {
    margin-left: 100px; } }

.js-qty, .ajaxifyCart--qty {
  backface-visibility: hidden;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible;
  position: relative; }

.js-qty {
  min-width: 90px; }

.ajaxifyCart--qty {
  margin-bottom: 0; }

.js-qty input[type="text"], .ajaxifyCart--qty input[type="text"] {
  background-color: white; }

@media screen and (min-width: 769px) {
  .selector-wrapper select,
  .product-variants select {
    max-width: 40%; } }
#addToCartForm {
  margin-bottom: 0 0 15px 0; }

@media screen and (min-width: 481px) {
  #addToCartForm select {
    max-width: 50%; } }
/* quantity */
input.qty {
  width: 60px;
  height: 35px;
  text-align: center;
  float: left;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 0; }
  .js-qty input.qty {
    width: 40px; }

.qtyplus, .qtyminus {
  width: 25px;
  float: left;
  height: 35px;
  background-color: white;
  border: 1px solid #d8d8d8;
  cursor: pointer;
  padding: 0; }
  .qtyplus .qty_value, .qtyminus .qty_value {
    color: #585858;
    display: block;
    padding: 4px 0;
    text-align: center; }

.qtyminus {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.qtyplus {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

/*================ Product details ================*/
#productPrice {
  font-size: 32px;
  margin-bottom: 0; }

.vendor-meta {  }

.vendor-meta span {
  margin-right: 7px; }

.product-meta {
  margin-bottom: 5px; }
  .product-meta .product-meta--review {
    display: block; }
  @media screen and (min-width: 481px) {
    .product-meta {
      display: table; }
      .product-meta li,
      .product-meta .product-meta--review {
        display: table-cell;
        vertical-align: middle;
        padding-right: 15px; } }

.product-description {
  margin-bottom: 60px;
  clear: both; }

/*================ Notice of < 10 items left ================*/
.variant-quantity {
  display: none;
  position: relative;
  top: 5px;
  color: #373738;
  line-height: 34px; }
  @media screen and (min-width: 480px) {
    .variant-quantity {
      margin-left: 100px; } }

/*================ Product photos ================*/
.product-photo-container {
  margin-bottom: 30px;
  max-width: 100%;
  position: relative; }
  .product-photo-container div {
    top: 0; }

.product-photo-container a, .product-photo-container img,
.product-photo-thumbs a,
.product-photo-thumbs img {
  display: block;
  margin: 0 auto; }
.product-photo-container li:first-child,
.product-photo-thumbs li:first-child {
  padding-left: 0; }
.product-photo-container li,
.product-photo-thumbs li {
  margin-bottom: 30px; }

.image-zoom {
  display: inline-block;
  cursor: move; }

/*================ Product tabs ================*/
.r-tabs h5, .r-tabs .h5 {
  text-transform: uppercase;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }

/* Tabs container */
.r-tabs {
  position: relative; }

/* Tab nav */
.r-tabs .r-tabs-nav {
  border-bottom: 1px solid #d8d8d8; }

/* Tab element */
.r-tabs .r-tabs-nav .r-tabs-tab {
  position: relative;
  border: 1px solid #F2F2F2; }

.r-tabs .r-tabs-nav .r-tabs-tab:first-child {
  border-left: 1px solid #d8d8d8; }

/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
  display: inline-block;
  padding: 14px 12px 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  color: white; }

/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
  opacity: 0.5; }

/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active {
  border: 1px solid #d8d8d8;
  border-bottom: none;
  margin-right: 1px;
  background-color: white; }

.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  color: #d8d8d8;
  text-shadow: none; }

/* Tab panel */
.r-tabs .r-tabs-panel {
  background-color: white;
  border: 1px solid #d8d8d8;
  border-top: none; }
  .r-tabs .r-tabs-panel th, .r-tabs .r-tabs-panel td {
    border-color: #f2f2f2; }

/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  display: block;
  padding: 14px 12px 7px;
  background-color: #cccccc;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #F2F2F2;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px; }

.r-tabs .r-tabs-accordion-title .r-tabs-anchor:first-child {
  border-top: 1px solid #d8d8d8; }

/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  background-color: white;
  color: #d8d8d8;
  border-bottom: none;
  border-top: none; }

.r-tabs-accordion-title.r-tabs-state-active {
  border-top: 1px solid #d8d8d8; }

/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
  opacity: 0.5; }

.r-tabs .r-tabs-nav {
  margin: 0;
  padding: 0; }

.r-tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  list-style: none; }

.r-tabs .r-tabs-panel {
  padding: 20px;
  display: none; }

.r-tabs .r-tabs-accordion-title {
  display: none; }

.r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block; }

/* Accordion responsive breakpoint */
@media screen and (max-width: 980px) {
  .r-tabs .r-tabs-nav {
    display: none; }

  .r-tabs .r-tabs-accordion-title {
    display: block; } }
/*============================================================================
  #Blogs and Comments
==============================================================================*/
.right-sidebar-blog {
  padding-left: 0;
  padding-right: 30px; }

.comments-header {
  padding-top: 30px; }

.comment {
  padding: 15px;
  margin: 0; }
  .comment + .comment {
    border-top: 1px solid #d8d8d8; }

div.blog-page-image {
  height: 300px; }

.blog-end {
  margin-bottom: 60px; }

.blog-grid {
  text-align: center;
  padding-bottom: 30px; }
  .blog-grid h2, .blog-grid .h2 {
    font-size: 1.25em;
    line-height: 1.2em;
    clear: both;
    padding-top: 15px; }
  @media screen and (max-width: 768px) {
    .blog-grid:nth-child(2n+3) {
      clear: both; } }
  @media screen and (min-width: 769px) {
    .blog-grid:nth-child(2n+3) {
      clear: none; }
   /* .blog-grid:nth-child(4n+5) {
      clear: both; } */
  
  }

.blog-regular h2, .blog-regular .h2 {
  margin-top: 15px;
  font-size: 1.75em; }

ul.blog-tags {
  display: table; }
  ul.blog-tags li {
    float: left;
    margin: 0 10px 8.57143px 0;
    width: inherit;
    display: block;
    border: none; }
    ul.blog-tags li a {
      background-color: white;
      border-radius: 2px;
      padding: 7.5px 10px; }
      ul.blog-tags li a:hover {
        background-color: #e5e5e5; }
    ul.blog-tags li.current {
      background-color: #b2b2b2;
      color: white;
      border-radius: 2px;
      padding-left: 10px;
      padding-right: 10px; }

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

.note {
  border-color: #d8d8d8; }

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

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

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

/*============================================================================
  #Cart Page
==============================================================================*/
.cart-wrapper {
  border: 1px solid #d8d8d8;
  padding: 0; }

.cart-header {
  background-color: white;
  margin-left: 0;
  text-transform: uppercase;
  font-size: 90%;
  font-weight: bold; }

.header-pad {
  padding: 15px 0; }

.cart-row {
  padding: 15px;
  border-top: 1px solid #d8d8d8; }
  .cart-row:first-child {
    border-top: none; }
  .cart-row:hover {
    background: rgba(0, 0, 0, 0.02); }
  .cart-row .grid, .cart-row .grid--rev, .cart-row .grid--full {
    margin-left: 0; }
  .cart-row span.h2 {
    font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    color: #585858; }
  .cart-row a {
    text-transform: uppercase; }
    .cart-row a:hover {
      color: #373738; }
    .cart-row a.btn, .cart-row a.btn-secondary, .cart-row a.header-cart-btn, .cart-row #shopify-product-reviews a.spr-summary-actions-newreview, #shopify-product-reviews .cart-row a.spr-summary-actions-newreview {
      color: #ffffff; }
  .cart-row small {
    display: block; }

input.btn-to-link {
  background: transparent;
  color: #373738;
  padding: 9px; }

input.btn-to-link:hover {
  background: transparent;
  color: #5d5d5f; }

.cart-image,
.cart-image img {
  display: block;
  width: auto;
  max-height: 100px; }

.cart-subtotal--price {
  font-size: 1.733em;
  color: #585858; }

.btn.full-btn, .full-btn.btn-secondary, input.full-btn[type="submit"], .full-btn.header-cart-btn, #shopify-product-reviews .full-btn.spr-summary-actions-newreview {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-size: 100%;
  margin-bottom: 15px; }
  .btn.full-btn span, .full-btn.btn-secondary span, input.full-btn[type="submit"] span, .full-btn.header-cart-btn span, #shopify-product-reviews .full-btn.spr-summary-actions-newreview span {
    margin-left: 10px; }

@media screen and (max-width: 768px) {
  .cart-image {
    margin-bottom: 15px; } }
@media screen and (min-width: 768px) {
  .remove-pad {
    padding-bottom: 0; } }
.fa-close {
  margin: 5px; }

.calculator {
  padding-top: 30px;
  clear: both; }

#quick-cart {
  position: relative; }


.quick-show, .quick-show-modal {
  display: none; }

.quick-hide-modal {
  display: block; }

/*================ Ajaxify cart ================*/
.ajaxifyCart--content {
  position: relative;
  background-color: #F2F2F2;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  -ms-perspective: 1000px;
  -o-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -moz-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -ms-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -o-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden; }
  .is-visible .ajaxifyCart--content {
    -webkit-transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -moz-transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -ms-transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -o-transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    transition: all 550ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .ajaxifyCart--content form {
    margin-bottom: 0; }
  @media screen and (max-width: 768px) {
    .ajaxifyCart--content {
      padding-top: 15px;
      padding-bottom: 15px; } }

.ajaxifyCart--products {
  /* padding: 10px 10px 0; */
  /*margin-bottom: 20px;*/ }

.ajaxifyCart--product {
  position: relative;
  padding: 10px;
  /* &:first-child {
    padding-top: 0;
  } */ }

.ajaxifyCart--product,
.cart-row {
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -moz-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -ms-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -o-transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  max-height: 500px;
  visibility: visible; }
  .ajaxifyCart--product.is-removed,
  .cart-row.is-removed {
    overflow: hidden;
    opacity: 0;
    padding: 0;
    margin: -30px 0 0;
    visibility: hidden;
    -webkit-transform: rotateX(-92deg);
    -moz-transform: rotateX(-92deg);
    -ms-transform: rotateX(-92deg);
    -o-transform: rotateX(-92deg);
    transform: rotateX(-92deg);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -moz-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -ms-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -o-transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    max-height: 0; }

.ajaxifyCart--row {
  clear: both; }
  .ajaxifyCart--row:after {
    content: "";
    display: table;
    clear: both; }
  .ajaxifyCart--row a.quick-btn {
    display: block; }

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

/*================ QUICK CART ajaxify ================*/
#ajaxifyDrawer {
  display: none;
  position: absolute;
  top: 43px;
  right: -1px;
  z-index: 1000;
  color: #6c6c6c; }
#ajaxifyDrawer.sticky {top:54px;width:300px;box-shadow: none !important;left: auto;position: fixed;}
  #ajaxifyDrawer .empty-cart {
    padding: 15px 15px 20px;
    display: block;
    width: 100%;
    height: 100%; }
    #ajaxifyDrawer .empty-cart span {
      display: block;
      border-left: none;
      padding: 10px 0 0 0;
      text-transform: none; }
    #ajaxifyDrawer .empty-cart a {
      color: #373738; }
      #ajaxifyDrawer .empty-cart a:hover, #ajaxifyDrawer .empty-cart a:active, #ajaxifyDrawer .empty-cart a:focus {
        color: #5d5d5f; }
  #ajaxifyDrawer span {
    border: none; }
  #ajaxifyDrawer .quick-move {
    margin-top: 7px; }
    #ajaxifyDrawer .quick-move .center-third {
      padding: 0;
      text-align: center; }
  #ajaxifyDrawer .view-btn {
    width: 100%;
    text-align: right; }
  #ajaxifyDrawer .quick-btn {
    width: 95%;
    margin: 0 auto 10px; }
  #ajaxifyDrawer .h3, #ajaxifyDrawer h4, #ajaxifyDrawer .h4 {
    font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }
  #ajaxifyDrawer .total-price {
    color: #6c6c6c;
    padding: 17px 13px 14px;
    display: table-cell;
    line-height: 1.4;
    font-size: 1.133em; }
  #ajaxifyDrawer span.money {
    padding: 0;
    display: inline-block; }

.is-visible + .ajaxifyDrawer-caret > span {
  display: none; }

.ajaxify-drawer.is-visible {
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
  position: relative; }

.ajaxify-drawer.is-visible .ajaxifyCart--content {
  padding: 15px;
  padding: 0;
  width: 300px; }

.ajaxifyCart--qty input[type="text"] {
  font-size: 12px; }

#ajaxifyModal .quick-hide-modal {
  display: none; }
#ajaxifyModal .quick-show-modal {
  display: block; }

.ajaxifyCart--content {
  background-color: white; }

.ajaxifyCart--product {
  border-bottom: 1px solid #f0f0f0; }
  .ajaxifyCart--product:nth-child(2n+2) {
    background: rgba(0, 0, 0, 0.02); }
  .ajaxifyCart--product a.remove {
    color: #ffffff;
    position: absolute;
    right: 10px;
    top: 6px; }

.remove-pad {
  padding: 0; }

.orspan {
  margin-left: 10px;
  margin-right: 10px; }

.ajaxifyAddedToCart .btn-view-cart {
  background: #32abe2; }
.ajaxifyAddedToCart i {
  margin-right: 10px; }
.ajaxifyAddedToCart h2, .ajaxifyAddedToCart .h2 {
  margin: 15px 0 10px;
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }
.ajaxifyAddedToCart p {
  background: #defadf;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #7ed082;
  color: #3ea143; }

.site-header .ajaxifyCart--product .grid .grid-item, .site-header .ajaxifyCart--product .grid--rev .grid-item, .site-header .ajaxifyCart--product .grid--full .grid-item {
  text-align: left;
  padding-top: 0;
  white-space: initial;
  line-height: 1.3;
  vertical-align: top !important; }

/*================ Remove from cart icon ================*/
a.remove {
  background: #c9c7c7;
  opacity: 0.7;
  display: inline-block;
  margin-top: 7px;
  height: 19px;
  line-height: 19px;
  padding: 0 5px;
  border-radius: 19px;
  font-size: 9px;
  text-align: center;
  border: 0 none; }
  .supports-fontface a.remove {
    padding: 0;
    width: 19px; }

#ajaxifyDrawer .ajaxifyCart--content a.remove {
  color: #ffffff; }

/*============================================================================
  #Demo Styles - for empty store state
==============================================================================*/
.demo-image {
  background: url("//cdn.shopify.com/s/files/1/0383/9765/t/1/assets/blankslate-producticon.png?4") no-repeat center center #eee;
  display: block;
  text-align: center;
  padding: 100px 0;
  color: #aaa;
  font-size: 0.875em;
  text-decoration: none; }

/*============================================================================
  #Product Reviews - Free Shopify App
    - https://apps.shopify.com/product-reviews
==============================================================================*/
#shopify-product-reviews {
  margin: 0 !important;
  /*================ Summary Rating ================*/
  /*================ Content ================*/
  /*================ Individual Ratings ================*/
  /*================ Review Form ================*/ }
  #shopify-product-reviews .spr-container {
    padding: 0;
    border: 0 none;
    display: table; }
  #shopify-product-reviews .spr-form {
    display: none; }
    #shopify-product-reviews .spr-form fieldset {
      border: 0;
      padding: 0; }
  #shopify-product-reviews .spr-summary {
    border: none;
    padding-bottom: 15px;
    margin-bottom: 30px; }
    @media screen and (min-width: 769px) {
      #shopify-product-reviews .spr-summary {
        float: left;
        width: 20%; }
        #shopify-product-reviews .spr-summary .spr-summary-starrating {
          display: block;
          margin: 0; } }
  #shopify-product-reviews .spr-summary-caption {
    font-size: 14px; }
    @media screen and (min-width: 769px) {
      #shopify-product-reviews .spr-summary-caption {
        display: block;
        margin-bottom: 10px;
        padding-bottom: 10px; } }
  #shopify-product-reviews .spr-summary-actions-newreview:after {
    content: ' \203A';
    clear: none;
    display: inline; }
  @media screen and (min-width: 769px) {
    #shopify-product-reviews .spr-summary-actions-newreview {
      float: none; } }
  #shopify-product-reviews .spr-header:after {
    clear: none; }
  @media screen and (min-width: 769px) {
    #shopify-product-reviews .spr-content {
      float: left;
      width: 80%;
      padding-left: 30px; } }
  #shopify-product-reviews .spr-reviews {
    margin: 0; }
  #shopify-product-reviews .spr-review {
    padding: 0;
    padding-top: 30px;
    margin: 0;
    border: 0 none;
    border-top: 1px solid #e5e5e5; }
    #shopify-product-reviews .spr-review:first-child {
      border-top: none;
      padding-top: 0; }
    #shopify-product-reviews .spr-review + .spr-review {
      margin-top: 15px; }
    #shopify-product-reviews .spr-review .spr-review-reply {
      background: rgba(0, 0, 0, 0.02); }
  #shopify-product-reviews .spr-review-content-body {
    font-size: inherit; }
    #shopify-product-reviews .spr-review-content-body br {
      content: '';
      display: block;
      overflow: hidden;
      height: 1px; }
  #shopify-product-reviews .spr-review-header {
    margin-bottom: 0; }
    #shopify-product-reviews .spr-review-header:after {
      content: "";
      display: table;
      clear: both; }
  #shopify-product-reviews .spr-review-header-title {
    margin-right: 15px;
    font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 20px;
    position: relative;
    top: 2px; }
  @media screen and (min-width: 769px) {
    #shopify-product-reviews .spr-review-header-starratings,
    #shopify-product-reviews .spr-review-header-title {
      display: inline; } }
  #shopify-product-reviews .spr-review-header-starratings {
    position: relative;
    top: 0;
    margin: 0 15px 10px 0; }
  #shopify-product-reviews .spr-review-reportreview {
    display: none; }
  #shopify-product-reviews .spr-form {
    border: 0 none;
    margin: 0 0 30px;
    padding: 0 0 30px; }

/*================ Star Icons ================*/
.spr-badge-starrating,
.spr-icon {
  color: #ED7E1D;
  font-size: inherit; }
  .spr-badge-starrating:hover, .spr-badge-starrating:active, .spr-badge-starrating:focus,
  .spr-icon:hover,
  .spr-icon:active,
  .spr-icon:focus {
    color: #ED7E1D; }

/*================ Review count ================*/
.spr-badge-caption {
  display: inline-block;
  font-size: 13px; }

/*============================================================================
  #Customer Account Pages
==============================================================================*/
.center-rte {
  text-align: center;
  padding-bottom: 30px; }

.cust_account {
  text-transform: uppercase;
  border-bottom: 3px solid #d8d8d8;
  padding-bottom: 1px;
  clear: both;
  display: inline-block; }

/*============================================================================
  #Contact Page
==============================================================================*/
#map-embed {
  margin-top: -29px;
  margin-bottom: 20px; }
  #map-embed iframe {
    width: 100%; }

/*============================================================================
  #FAQ Page
==============================================================================*/
#faq-page h3, #faq-page .h3 {
  padding: 15px;
  border: 1px solid #d8d8d8;
  background-color: white; }
  #faq-page h3:hover, #faq-page .h3:hover {
    cursor: pointer; }
  #faq-page h3:before, #faq-page .h3:before {
    color: #32abe2; }
#faq-page p {
  padding: 15px;
  border: 1px solid #d8d8d8; }
  #faq-page p:before {
    color: #32abe2; }

/*============================================================================
  #popup-animation
==============================================================================*/
.mfp-zoom-out {
  /* start state */
  /* animate in */
  /* animate out */ }
  .mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3); }
  .mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out; }
  .mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1); }
  .mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8; }
  .mfp-zoom-out.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0; }
  .mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0; }

.spr-icon-star-half-alt::before {
  content: "\f123"; }

.acidjs-rating-stars,
.acidjs-rating-stars label::before {
  display: inline-block; }

.acidjs-rating-stars label:hover,
.acidjs-rating-stars label:hover ~ label {
  color: #ED7E1D; }

.acidjs-rating-stars * {
  margin: 0;
  padding: 0; }

.acidjs-rating-stars {
  unicode-bidi: bidi-override;
  direction: rtl; }
  .acidjs-rating-stars input {
    display: none; }
    .acidjs-rating-stars input:checked ~ label:before {
      color: #ED7E1D;
      content: "\f005"; }
  .acidjs-rating-stars label {
    color: #ccc;
    display: inline-block; }
    .acidjs-rating-stars label:before {
      content: "\f006";
      font-family: "FontAwesome";
      width: 18px;
      line-height: 18px;
      text-align: center;
      font-size: 18px;
      cursor: pointer;
      margin-right: 6px; }

.acidjs-rating-disabled {
  opacity: .50;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

#main-menu ul {
  margin: 120px 0 0 0;
  _margin: 0;
  /*IE6 only*/
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 52px;
  left: 0;
  z-index: 10000;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out; }

#main-menu .has-dropdown > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: normal;
  position: absolute;
  right: 17px;
  top: 21px; }

#main-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  margin: 0; }

#main-menu ul ul {
  top: 0;
  left: 100%;
  margin: 0 0 0 80px;
  _margin: 0;
  /*IE6 only*/ }

#main-menu ul li {
  float: none;
  display: block;
  border: 0;
  _line-height: 0;
  /*IE6 only*/ }

#main-menu ul a {
  padding: 15px;
  /* width: 130px; */
  _height: 10px;
  /*IE6 only*/
  display: block;
  white-space: nowrap;
  float: none;
  text-transform: none; }
  #main-menu ul a:before {
    content: "";
    font-family: "FontAwesome";
    font-weight: normal;
    margin-right: 10px;
    left: -3px;
    position: absolute;
    transform: translate(-3px);
    -webkit-transform: translate(-3px);
    -moz-transform: translate(-3px);
    -o-transform: translate(-3px);
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s; }
#main-menu .has-dropdown.active ul a {
  padding: 22px 10px; }

#main-menu ul a:hover:before {
  transform: translate(5px);
  -webkit-transform: translate(5px);
  -moz-transform: translate(5px);
  -o-transform: translate(5px); }

#main-menu ul .has-dropdown-2:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: normal;
  position: absolute;
  right: 10px;
  top: 14px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s; }

#main-menu ul .has-dropdown-2:hover:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg); }

#main-menu .has-dropdown .fa.fa-angle-down, #main-menu .has-dropdown-2 .fa.fa-angle-down, #main-menu .has-dropdown-2 .fa.fa-angle-right {
  display: none; }

@media screen and (max-width: 769px) {
  body.move-nav .navbar {
    padding-bottom: 0;
    box-shadow: none; }

  ul.sm-simple .has-dropdown.active ul {
    display: block; }
    ul.sm-simple .has-dropdown.active ul ul {
      background: rgba(100, 100, 100, 0.035) none repeat scroll 0 0; }
      ul.sm-simple .has-dropdown.active ul ul li {
        padding-left: 10px;
        border-top: 0px !important; }
        ul.sm-simple .has-dropdown.active ul ul li a {
          border-top: 0px !important; }

  .sm-simple li.has-dropdown.bottom {
    background: #333333 none repeat scroll 0 0;
    border-top: 1px solid #787373 !important; }
    .sm-simple li.has-dropdown.bottom a {
      color: #ffffff !important; }

  #main-menu .has-dropdown.active ul {
    visibility: visible;
    opacity: 1; }

  #main-menu .has-dropdown > a:after, #main-menu ul .has-dropdown-2:after {
    content: ""; }

  #main-menu .has-dropdown .fa.fa-angle-down, #main-menu .has-dropdown-2 .fa.fa-angle-right {
    display: block;
    position: absolute;
    right: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 40px;
    line-height: 1.4;
    padding: 0 0 0 16px;
    top: 0;
    cursor: pointer; }

  #main-menu .has-dropdown-2 .fa.fa-angle-right {
    padding-left: 24px;
    right: 19px; }

  #main-menu .has-dropdown-2.active .fa.fa-angle-right {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    border-left: 0 none;
    padding-left: 16px;
    right: 11px; }

  #main-menu .has-dropdown.active .has-dropdown-2 ul {
    display: none; }

  #main-menu .has-dropdown.active .has-dropdown-2.active ul {
    display: block; } }
/*vertical navigation*/
.left-menu h3, .left-menu .h3 {
  margin-left: 0;
  /* margin-top: 10px; */ }

.left-menu h3, .left-menu .h3, .left-menu .h3 {
  border-bottom: 3px solid #d8d8d8;
  color: #333333;
  display: inline-block;
  text-transform: uppercase; }

.vertical-nav {
  position: relative; }
  .vertical-nav ul {
    top: auto;
    left: 100%;
    margin: -43px 0 0 80px;
    _margin: 0;
    /*IE6 only*/
    background-color: #fff;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 10000;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out; }
    .vertical-nav ul li {
      float: none;
      display: block;
      border: 0;
      _line-height: 0;
      /*IE6 only*/ }
  .vertical-nav li:hover { 
  
  }
    .vertical-nav li:hover > ul {
      opacity: 1;
      visibility: visible;
      margin: -43px 0 0 -25px;
    }
    .vertical-nav li:hover > a {
      color: #373738;
      opacity: 0.65; }
  .vertical-nav ul a {
    padding: 15px;
    /* width: 130px; */
    _height: 10px;
    /*IE6 only*/
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: uppercase;
    color: #373738; }
    .vertical-nav ul a:before {
      content: "";
      font-family: "FontAwesome";
      font-weight: normal;
      margin-right: 10px;
      left: 10px;
      position: absolute;
      transform: translate(0px);
      -webkit-transform: translate(0px);
      -moz-transform: translate(0px);
      -o-transform: translate(0px);
      transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s; }
    .vertical-nav ul a:hover:before {
      transform: translate(5px);
      -webkit-transform: translate(5px);
      -moz-transform: translate(5px);
      -o-transform: translate(5px); }
    .vertical-nav ul a li:hover ul li {
      color: #373738; }

/*  #slider {
   margin-top: 15px;
 } */
.slider-wrapper #slider .wrapper {
  height: 400px; }
.slider-wrapper .grid-item {
  padding-bottom: 0px; }

@media screen and (max-width: 768px) {
  .slider-wrapper #slider .wrapper {
    height: 300px; } }
.template-index-boxed #slider {
  /* margin-top: 15px; */ }
  .template-index-boxed #slider .slide-text h2, .template-index-boxed #slider .slide-text .h2, .template-index-boxed #slider .slide-text .h2 {
    font-size: 3em; }

.vertical-nav li a {
  font-family: "PT Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 14px;
  padding: 10px 20px 10px 0;
  display: block;
  text-transform: uppercase; }

.vertical-nav li:first-child a {
  border-top: 0px; }

.vertical-nav li.no-sub a {
  padding-left: 8px;
  padding-right: 10px; }

.vertical-nav li.no-sub:first-child a {
  border-top: 0px; }

.vertical-nav li.has-dropdown-2 > a:after {
  content: "";
  font-family: "FontAwesome";
  font-weight: normal;
  margin-right: 10px;
  right: 4px;
  position: absolute;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out; }
.vertical-nav li.has-dropdown-2 > a:hover:after {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg); }

#main-box-wrapper .navbar {
  background-color: #ffffff;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  border-left: 0px;
  border-right: 0px;
  box-shadow: none;
  color: #333333; }

#top-bar select.currency-picker {
  font-size: 11px;
  margin: 0 0 0 5px;
  padding: 1px 16px 1px 5px;
  background-position: right 7px center; }
#top-bar .site-header--no-padding {
  padding-bottom: 0 !important; }
  #top-bar .site-header--no-padding span {
    margin-top: 1px; }
#top-bar .site-header--no-padding span p {margin-bottom: 0;display:inline;}

.header-cart-btn span.money {
  padding: 0; }

@media screen and (max-width: 769px) {
  .left-menu {
    display: none; }

  .checkout .grid-item {
    padding-left: 0; } }
.grid-item .no-padding {
  padding-left: 0; }
  .grid-item .no-padding select {
    line-height: 1.3; }

.currency-picker__label {
  font-size: 0.85em; }

.check-shipp a, .new-account a {
  display: inline-block;
  height: 15px;
  position: relative;
  width: 15px;
  background-color: white;
  border: 1px solid #d8d8d8; }

.new-account a {
  margin-right: 5px;
  top: 2px;
  width: 15px; }

.check-shipp a.checked:after,
.new-account a.checked:after {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 9px;
  font-weight: normal;
  left: 2px;
  position: absolute;
  top: 0px; }

.grid-item.checkout {
  float: right;
  text-align: right; }

.grid-item.hr {
  border-top: 1px solid #d8d8d8; }

span.label {
  float: left;
  margin: 10px 0; }

.ajaxifyCart--products > div#nothing-in-cart {
  margin-top: 30px;
  min-height: 30px; }

.form_cart > #nothing-in-cart {
  text-align: center; }
  .form_cart > #nothing-in-cart h2, .form_cart > #nothing-in-cart .h2 {
    text-transform: uppercase; }

@media screen and (max-width: 480px) {
  .checkout .grid, .checkout .grid--rev, .checkout .grid--full {
    margin-left: 0; }

  #home-parallax {
    background-attachment: scroll; } }
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) {
  #home-parallax {
    background-attachment: scroll; } }
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) {
  #home-parallax {
    background-attachment: scroll; } }
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #home-parallax {
    background-attachment: scroll; } }

/*# sourceMappingURL=timber.css.map */
.clear {
    clear: both;
}
/* add product notification */
#add_product_notification {
 padding: 10px;
	border-radius: 5px 5px 5px 5px;
	    -moz-border-radius: 5px 5px 5px 5px;
	    -webkit-border-top-left-radius: 5px; 
	    -webkit-border-top-right-radius: 5px; 
	    -webkit-border-bottom-right-radius: 5px; 
	    -webkit-border-bottom-left-radius: 5px;
	    background: #fff;
	    border: 1px solid #ddd;
	    -webkit-box-shadow: 1px 0px 5px #cccccc;
	    -moz-box-shadow: 1px 0px 5px #cccccc;
	     box-shadow: 1px 0px 5px #cccccc;
	margin-bottom: 13px;
	overflow: hidden;
  font-size: 14px;
}
#own_preloader {
  z-index: 6000;
  text-align: center;
  vertical-align: middle;
  width: 390px;
  height: 106px;
}

.buy_button {
    background: #32abe2;
    padding: 12px 32px;
    font-weight: bold;
}

.ribbons {
    width: 98px;
    height: 98px;
    position: absolute;
  z-index: 10;
    top: 0px;
  
  left: -10px;
  
}
.prod_block, .prod_block_prod_page {position:relative;}
.prod_block_prod_page { margin-left: -12px;
  width: 98%; }

.percent {
background: ;
  font-size: px;
    padding: 8px;
    color: ;
    border-radius: 3px;
    position: absolute;
    top: px;
}

.variants {
  
  display: block !important;
}

.selector-wrapper {
  overflow: hidden;
  margin-bottom: 10px;
}

.selector-wrapper span {
    display: inline-block;
    border: 1px solid #d8d8d8;
   cursor: pointer;
  
    height: 35px;
    line-height: 35px;
    margin: 0 5px 0 0;
    padding: 0 8px;
    text-align: center;

}

.variant-span--active, .variants .select-wrapper span.active {
   
    background: #EAEAEB;
}









