@charset "UTF-8";
/*============================================================================
Haravan Timber
Copyright 2015 Haravan Inc.
Author Carson Shold @cshold
Built with Sass - http://sass-lang.com/

Some things to know about this file:
- Sass is compiled on Haravan'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/Haravan/haravan-css-import
- Helpers variables, mixins, and starter classes are provided. Change as needed.
- The file is prepped with a CSS reset
- The font icons are prepared using https://icomoon.io/app
==============================================================================*/
/*============================================================================
Table of Contents

#Breakpoint and Grid Variables
#General Variables
#Sass Mixins
#Normalize
#Grid Setup
#Basic Styles
#Helper Classes
#Typography
#Rich Text Editor
#Links and Buttons
#Lists
#Tables
#Reponsive Tables
#OOCSS Media Object
#Images and Iframes
#Forms
#Icons
#Pagination
#Site Header
#Site Nav and Dropdowns
#Mega menu
#Mobile Nav
#Drawers
#Site Footer
#Pop up
#Index page
#Sidebar
#Product and Collection Grids
#Collection Filters
#Breadcrumbs
#Product Page
#Blogs Page
#Notes and Form Feedback
#Cart Page
#Wishlist Page
#Contact Page
#Ajax Cart Styles
#theme style
==============================================================================*/
/*============================================================================
#Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
#General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("//theme.hstatic.net/200000099677/1001378681/14/icons.eot?v=146");
  src: url("//theme.hstatic.net/200000099677/1001378681/14/icons.eot?v=146#iefix") format("embedded-opentype"), url("//theme.hstatic.net/200000099677/1001378681/14/icons.woff?v=146") format("woff"), url("//theme.hstatic.net/200000099677/1001378681/14/icons.ttf?v=146") format("truetype"), url("//theme.hstatic.net/200000099677/1001378681/14/icons.svg?v=146#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }
  /* Halves */
  .small--one-half {
    width: 50%; }
  /* Thirds */
  .small--one-third {
    width: 33.333%; }
  .small--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .small--one-quarter {
    width: 25%; }
  .small--two-quarters {
    width: 50%; }
  .small--three-quarters {
    width: 75%; }
  /* Fifths */
  .small--one-fifth {
    width: 20%; }
  .small--two-fifths {
    width: 40%; }
  .small--three-fifths {
    width: 60%; }
  .small--four-fifths {
    width: 80%; }
  /* Sixths */
  .small--one-sixth {
    width: 16.666%; }
  .small--two-sixths {
    width: 33.333%; }
  .small--three-sixths {
    width: 50%; }
  .small--four-sixths {
    width: 66.666%; }
  .small--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }
  .small--two-eighths {
    width: 25%; }
  .small--three-eighths {
    width: 37.5%; }
  .small--four-eighths {
    width: 50%; }
  .small--five-eighths {
    width: 62.5%; }
  .small--six-eighths {
    width: 75%; }
  .small--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small--one-tenth {
    width: 10%; }
  .small--two-tenths {
    width: 20%; }
  .small--three-tenths {
    width: 30%; }
  .small--four-tenths {
    width: 40%; }
  .small--five-tenths {
    width: 50%; }
  .small--six-tenths {
    width: 60%; }
  .small--seven-tenths {
    width: 70%; }
  .small--eight-tenths {
    width: 80%; }
  .small--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }
  .small--two-twelfths {
    width: 16.666%; }
  .small--three-twelfths {
    width: 25%; }
  .small--four-twelfths {
    width: 33.333%; }
  .small--five-twelfths {
    width: 41.666%; }
  .small--six-twelfths {
    width: 50%; }
  .small--seven-twelfths {
    width: 58.333%; }
  .small--eight-twelfths {
    width: 66.666%; }
  .small--nine-twelfths {
    width: 75%; }
  .small--ten-twelfths {
    width: 83.333%; }
  .small--eleven-twelfths {
    width: 91.666%; }
  .small--show {
    display: block !important; }
  .small--hide {
    display: none !important; }
  .small--text-left {
    text-align: left !important; }
  .small--text-right {
    text-align: right !important; }
  .small--text-center {
    text-align: center !important; }
  .small--left {
    float: left !important; }
  .small--right {
    float: right !important; }
  .grid-uniform .small--one-half:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }
  /* Halves */
  .medium--one-half {
    width: 50%; }
  /* Thirds */
  .medium--one-third {
    width: 33.333%; }
  .medium--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .medium--one-quarter {
    width: 25%; }
  .medium--two-quarters {
    width: 50%; }
  .medium--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium--one-fifth {
    width: 20%; }
  .medium--two-fifths {
    width: 40%; }
  .medium--three-fifths {
    width: 60%; }
  .medium--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }
  .medium--two-sixths {
    width: 33.333%; }
  .medium--three-sixths {
    width: 50%; }
  .medium--four-sixths {
    width: 66.666%; }
  .medium--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }
  .medium--two-eighths {
    width: 25%; }
  .medium--three-eighths {
    width: 37.5%; }
  .medium--four-eighths {
    width: 50%; }
  .medium--five-eighths {
    width: 62.5%; }
  .medium--six-eighths {
    width: 75%; }
  .medium--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium--one-tenth {
    width: 10%; }
  .medium--two-tenths {
    width: 20%; }
  .medium--three-tenths {
    width: 30%; }
  .medium--four-tenths {
    width: 40%; }
  .medium--five-tenths {
    width: 50%; }
  .medium--six-tenths {
    width: 60%; }
  .medium--seven-tenths {
    width: 70%; }
  .medium--eight-tenths {
    width: 80%; }
  .medium--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }
  .medium--two-twelfths {
    width: 16.666%; }
  .medium--three-twelfths {
    width: 25%; }
  .medium--four-twelfths {
    width: 33.333%; }
  .medium--five-twelfths {
    width: 41.666%; }
  .medium--six-twelfths {
    width: 50%; }
  .medium--seven-twelfths {
    width: 58.333%; }
  .medium--eight-twelfths {
    width: 66.666%; }
  .medium--nine-twelfths {
    width: 75%; }
  .medium--ten-twelfths {
    width: 83.333%; }
  .medium--eleven-twelfths {
    width: 91.666%; }
  .medium--show {
    display: block !important; }
  .medium--hide {
    display: none !important; }
  .medium--text-left {
    text-align: left !important; }
  .medium--text-right {
    text-align: right !important; }
  .medium--text-center {
    text-align: center !important; }
  .medium--left {
    float: left !important; }
  .medium--right {
    float: right !important; }
  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (max-width: 768px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }
  /* Halves */
  .medium-down--one-half {
    width: 50%; }
  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }
  .medium-down--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .medium-down--one-quarter {
    width: 25%; }
  .medium-down--two-quarters {
    width: 50%; }
  .medium-down--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }
  .medium-down--two-fifths {
    width: 40%; }
  .medium-down--three-fifths {
    width: 60%; }
  .medium-down--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }
  .medium-down--two-sixths {
    width: 33.333%; }
  .medium-down--three-sixths {
    width: 50%; }
  .medium-down--four-sixths {
    width: 66.666%; }
  .medium-down--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }
  .medium-down--two-eighths {
    width: 25%; }
  .medium-down--three-eighths {
    width: 37.5%; }
  .medium-down--four-eighths {
    width: 50%; }
  .medium-down--five-eighths {
    width: 62.5%; }
  .medium-down--six-eighths {
    width: 75%; }
  .medium-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }
  .medium-down--two-tenths {
    width: 20%; }
  .medium-down--three-tenths {
    width: 30%; }
  .medium-down--four-tenths {
    width: 40%; }
  .medium-down--five-tenths {
    width: 50%; }
  .medium-down--six-tenths {
    width: 60%; }
  .medium-down--seven-tenths {
    width: 70%; }
  .medium-down--eight-tenths {
    width: 80%; }
  .medium-down--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }
  .medium-down--two-twelfths {
    width: 16.666%; }
  .medium-down--three-twelfths {
    width: 25%; }
  .medium-down--four-twelfths {
    width: 33.333%; }
  .medium-down--five-twelfths {
    width: 41.666%; }
  .medium-down--six-twelfths {
    width: 50%; }
  .medium-down--seven-twelfths {
    width: 58.333%; }
  .medium-down--eight-twelfths {
    width: 66.666%; }
  .medium-down--nine-twelfths {
    width: 75%; }
  .medium-down--ten-twelfths {
    width: 83.333%; }
  .medium-down--eleven-twelfths {
    width: 91.666%; }
  .medium-down--show {
    display: block !important; }
  .medium-down--hide {
    display: none !important; }
  .medium-down--text-left {
    text-align: left !important; }
  .medium-down--text-right {
    text-align: right !important; }
  .medium-down--text-center {
    text-align: center !important; }
  .medium-down--left {
    float: left !important; }
  .medium-down--right {
    float: right !important; }
  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 769px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }
  /* Halves */
  .large--one-half {
    width: 50%; }
  /* Thirds */
  .large--one-third {
    width: 33.333%; }
  .large--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .large--one-quarter {
    width: 25%; }
  .large--two-quarters {
    width: 50%; }
  .large--three-quarters {
    width: 75%; }
  /* Fifths */
  .large--one-fifth {
    width: 20%; }
  .large--two-fifths {
    width: 40%; }
  .large--three-fifths {
    width: 60%; }
  .large--four-fifths {
    width: 80%; }
  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }
  .large--two-sixths {
    width: 33.333%; }
  .large--three-sixths {
    width: 50%; }
  .large--four-sixths {
    width: 66.666%; }
  .large--five-sixths {
    width: 83.333%; }
  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }
  .large--two-eighths {
    width: 25%; }
  .large--three-eighths {
    width: 37.5%; }
  .large--four-eighths {
    width: 50%; }
  .large--five-eighths {
    width: 62.5%; }
  .large--six-eighths {
    width: 75%; }
  .large--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large--one-tenth {
    width: 10%; }
  .large--two-tenths {
    width: 20%; }
  .large--three-tenths {
    width: 30%; }
  .large--four-tenths {
    width: 40%; }
  .large--five-tenths {
    width: 50%; }
  .large--six-tenths {
    width: 60%; }
  .large--seven-tenths {
    width: 70%; }
  .large--eight-tenths {
    width: 80%; }
  .large--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }
  .large--two-twelfths {
    width: 16.666%; }
  .large--three-twelfths {
    width: 25%; }
  .large--four-twelfths {
    width: 33.333%; }
  .large--five-twelfths {
    width: 41.666%; }
  .large--six-twelfths {
    width: 50%; }
  .large--seven-twelfths {
    width: 58.333%; }
  .large--eight-twelfths {
    width: 66.666%; }
  .large--nine-twelfths {
    width: 75%; }
  .large--ten-twelfths {
    width: 83.333%; }
  .large--eleven-twelfths {
    width: 91.666%; }
  .large--show {
    display: block !important; }
  .large--hide {
    display: none !important; }
  .large--text-left {
    text-align: left !important; }
  .large--text-right {
    text-align: right !important; }
  .large--text-center {
    text-align: center !important; }
  .large--left {
    float: left !important; }
  .large--right {
    float: right !important; }
  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }

/*============================================================================
PUSH
- Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium--one-half {
    left: 50%; }
  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }
  .push--medium--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }
  .push--medium--two-quarters {
    left: 50%; }
  .push--medium--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }
  .push--medium--two-fifths {
    left: 40%; }
  .push--medium--three-fifths {
    left: 60%; }
  .push--medium--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }
  .push--medium--two-sixths {
    left: 33.333%; }
  .push--medium--three-sixths {
    left: 50%; }
  .push--medium--four-sixths {
    left: 66.666%; }
  .push--medium--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }
  .push--medium--two-eighths {
    left: 25%; }
  .push--medium--three-eighths {
    left: 37.5%; }
  .push--medium--four-eighths {
    left: 50%; }
  .push--medium--five-eighths {
    left: 62.5%; }
  .push--medium--six-eighths {
    left: 75%; }
  .push--medium--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }
  .push--medium--two-tenths {
    left: 20%; }
  .push--medium--three-tenths {
    left: 30%; }
  .push--medium--four-tenths {
    left: 40%; }
  .push--medium--five-tenths {
    left: 50%; }
  .push--medium--six-tenths {
    left: 60%; }
  .push--medium--seven-tenths {
    left: 70%; }
  .push--medium--eight-tenths {
    left: 80%; }
  .push--medium--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }
  .push--medium--two-twelfths {
    left: 16.666%; }
  .push--medium--three-twelfths {
    left: 25%; }
  .push--medium--four-twelfths {
    left: 33.333%; }
  .push--medium--five-twelfths {
    left: 41.666%; }
  .push--medium--six-twelfths {
    left: 50%; }
  .push--medium--seven-twelfths {
    left: 58.333%; }
  .push--medium--eight-twelfths {
    left: 66.666%; }
  .push--medium--nine-twelfths {
    left: 75%; }
  .push--medium--ten-twelfths {
    left: 83.333%; }
  .push--medium--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (max-width: 768px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }
  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }
  .push--medium-down--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }
  .push--medium-down--two-quarters {
    left: 50%; }
  .push--medium-down--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }
  .push--medium-down--two-fifths {
    left: 40%; }
  .push--medium-down--three-fifths {
    left: 60%; }
  .push--medium-down--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }
  .push--medium-down--two-sixths {
    left: 33.333%; }
  .push--medium-down--three-sixths {
    left: 50%; }
  .push--medium-down--four-sixths {
    left: 66.666%; }
  .push--medium-down--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }
  .push--medium-down--two-eighths {
    left: 25%; }
  .push--medium-down--three-eighths {
    left: 37.5%; }
  .push--medium-down--four-eighths {
    left: 50%; }
  .push--medium-down--five-eighths {
    left: 62.5%; }
  .push--medium-down--six-eighths {
    left: 75%; }
  .push--medium-down--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }
  .push--medium-down--two-tenths {
    left: 20%; }
  .push--medium-down--three-tenths {
    left: 30%; }
  .push--medium-down--four-tenths {
    left: 40%; }
  .push--medium-down--five-tenths {
    left: 50%; }
  .push--medium-down--six-tenths {
    left: 60%; }
  .push--medium-down--seven-tenths {
    left: 70%; }
  .push--medium-down--eight-tenths {
    left: 80%; }
  .push--medium-down--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }
  .push--medium-down--two-twelfths {
    left: 16.666%; }
  .push--medium-down--three-twelfths {
    left: 25%; }
  .push--medium-down--four-twelfths {
    left: 33.333%; }
  .push--medium-down--five-twelfths {
    left: 41.666%; }
  .push--medium-down--six-twelfths {
    left: 50%; }
  .push--medium-down--seven-twelfths {
    left: 58.333%; }
  .push--medium-down--eight-twelfths {
    left: 66.666%; }
  .push--medium-down--nine-twelfths {
    left: 75%; }
  .push--medium-down--ten-twelfths {
    left: 83.333%; }
  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (min-width: 769px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }
  /* Halves */
  .push--large--one-half {
    left: 50%; }
  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }
  .push--large--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }
  .push--large--two-quarters {
    left: 50%; }
  .push--large--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }
  .push--large--two-fifths {
    left: 40%; }
  .push--large--three-fifths {
    left: 60%; }
  .push--large--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }
  .push--large--two-sixths {
    left: 33.333%; }
  .push--large--three-sixths {
    left: 50%; }
  .push--large--four-sixths {
    left: 66.666%; }
  .push--large--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }
  .push--large--two-eighths {
    left: 25%; }
  .push--large--three-eighths {
    left: 37.5%; }
  .push--large--four-eighths {
    left: 50%; }
  .push--large--five-eighths {
    left: 62.5%; }
  .push--large--six-eighths {
    left: 75%; }
  .push--large--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }
  .push--large--two-tenths {
    left: 20%; }
  .push--large--three-tenths {
    left: 30%; }
  .push--large--four-tenths {
    left: 40%; }
  .push--large--five-tenths {
    left: 50%; }
  .push--large--six-tenths {
    left: 60%; }
  .push--large--seven-tenths {
    left: 70%; }
  .push--large--eight-tenths {
    left: 80%; }
  .push--large--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }
  .push--large--two-twelfths {
    left: 16.666%; }
  .push--large--three-twelfths {
    left: 25%; }
  .push--large--four-twelfths {
    left: 33.333%; }
  .push--large--five-twelfths {
    left: 41.666%; }
  .push--large--six-twelfths {
    left: 50%; }
  .push--large--seven-twelfths {
    left: 58.333%; }
  .push--large--eight-twelfths {
    left: 66.666%; }
  .push--large--nine-twelfths {
    left: 75%; }
  .push--large--ten-twelfths {
    left: 83.333%; }
  .push--large--eleven-twelfths {
    left: 91.666%; } }

/*============================================================================
PULL
- Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
#Basic Styles
==============================================================================*/
html {
  background-color: #ffffff; }

body {
  background-color: #ffffff; }

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

.wrapper {
  *zoom: 1;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px; }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }

.main-content {
  display: block;
  margin-bottom: 50px; }
  .template-index .main-content {
    margin-top: 0; }

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

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

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

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

.visually-hidden, .supports-fontface .icon-fallback-text .fallback-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.__titleh4, .widget-product .product-name {
  color: white;
  font-family: Arial, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-transform: lowercase; }

.__drop_animation, .site-header__account ul, .site-nav__dropdown, .site-nav__dropdownx {
  -webkit-animation: 0.5s ease 0s normal forwards 1 running animationmenus;
  -o-animation: 0.5s ease 0s normal forwards 1 running animationmenus;
  animation: 0.5s ease 0s normal forwards 1 running animationmenus;
  -webkit-transform-origin: 50% 50% 0;
  -moz-transform-origin: 50% 50% 0;
  -ms-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0; }

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

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

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

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

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

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

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

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

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

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

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

pre {
  overflow: auto;
  padding: 7.5px;
  margin: 0 0 15px; }

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

/*================ Section Headers ================*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
.section-header {
  margin-bottom: 10px;
  color: #333333; }

@media screen and (min-width: 769px) {
  .section-header {
    display: table;
    width: 100%; }
  .section-header__title {
    margin-bottom: 6px; }
  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
  .section-header__right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 335px; } }
  @media screen and (min-width: 769px) and (max-width: 768px) {
    .section-header__right {
      margin-bottom: 15px; } }

.section-header__right {
  *zoom: 1; }
  .section-header__right:after {
    content: '';
    display: table;
    clear: both; }
  .section-header__right .form-horizontal {
    display: inline-block; }
    .section-header__right .form-horizontal label {
      font-weight: 500;
      font-size: 14px;
      text-transform: uppercase; }
  @media screen and (min-width: 481px) {
    .section-header__right label + select {
      margin-left: 7.5px; } }

.collection-view {
  display: inline-block;
  /*================ Only show on larger screens ================*/ }
  .collection-view label {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase; }
  .collection-view button {
    height: 35px;
    width: 35px; }
    .collection-view button:first-child {
      border-right: 1px solid #e1e1e1; }
  @media screen and (min-width: 769px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  background: none;
  border: 1px solid #ebebeb;
  padding: 10px 8px;
  color: #e1e1e1;
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: #ffffff; }

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

/*============================================================================
#Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 7.5px;
  margin-top: 7.5px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 7.5px; }
  .rte li {
    margin-bottom: 0.4em; }

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

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

a:hover,
a:focus {
  color: #000;
  outline: none; }

button {
  overflow: visible; }

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

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn, .rte .btn--secondary {
  display: inline-block;
  padding: 8px 10px;
  width: auto;
  margin: 0;
  line-height: 1.42;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  font-family: Arial;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  /*================ Set primary button colors - can override later ================*/
  background-color: #ffffff;
  color: #000; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover, .rte .btn--secondary:hover {
    color: #fff; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active, .rte .btn--secondary:active,
  .rte .btn:focus, .rte .btn--secondary:focus {
    color: #fff; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled], .rte [disabled].btn--secondary,
  .rte .btn.disabled, .rte .disabled.btn--secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn--secondary,
.rte .btn--secondary {
  color: #000; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    border-color: #999999;
    color: #999999; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #f5a623;
    border-color: #999999;
    color: #999999; }

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

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

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

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold; }

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

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

@media screen and (max-width: 480px) {
  .table--small-hide {
    display: none !important; }
  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #e1e1e1; } }

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

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

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

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

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

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

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

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

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

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 768px) {
  input,
  textarea {
    font-size: 16px; } }

input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

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

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

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

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

fieldset {
  border: 1px solid #e1e1e1;
  padding: 7.5px; }

legend {
  border: 0;
  padding: 0; }

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

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

textarea {
  min-height: 100px; }

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

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

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

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//theme.hstatic.net/200000099677/1001378681/14/ico-select.svg?v=146");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select,
  .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

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

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

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

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }

.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }

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

label.error {
  color: #d02e2e; }

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

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

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

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

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

/*============================================================================
#Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    display: inline-block;
    color: #000; }
  .supports-fontface .icon-fallback-text .icon.icon-search {
    color: #fff; }
  .site-header__topbar .icon-fallback-text .icon.icon-search {
    color: #000; }

.icon-fallback-text i {
  font-size: 14px;
  margin-right: 10px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-icons li {
  margin: 0 7.5px 7.5px;
  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: #bbbbbb; }
    .social-icons li a:hover {
      color: #a2a2a2; }

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

/*============================================================================
#Site Header
==============================================================================*/
.site-header {
  background: #fff; }
  @media screen and (max-width: 769px) {
    .site-header .site-header__logo {
      display: block;
      padding: 10px 0; } }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }

.topbar-head {
  padding-top: 19px;
  padding-bottom: 14px; }

.site-header__topbar {
  position: relative;
  color: #000000; }
  .site-header__topbar a {
    color: #000000; }
  .site-header__topbar .search-bar {
    position: inherit;
    margin-top: -7px; }
    .site-header__topbar .search-bar:hover input[type="search"] {
      width: 250px;
      visibility: visible;
      transition: all ease 0.3s; }
    .site-header__topbar .search-bar input[type="search"] {
      border-color: #e1e1e1;
      background: #ffffff;
      position: absolute;
      width: 37px;
      right: 0;
      z-index: 2;
      visibility: hidden;
      transition: all ease 0.3s; }
    .site-header__topbar .search-bar button {
      background: none;
      position: relative;
      z-index: 3; }

.search-bar button {
  background: #ffd740;
  margin-left: -37px !important; }

.site-header__social ul.inline-list {
  display: inline-block; }

.site-header__social li {
  margin: 0 5px; }

.site-header__social a {
  color: #bbbbbb; }
  .site-header__social a:hover {
    color: #999999; }

.site-header__logo {
  text-align: center;
  margin: 0px auto;
  max-width: 450px;
  vertical-align: middle;
  width: 200px;
  position: relative;
  z-index: 1; }
  @media screen and (min-width: 769px) {
    .site-header__logo {
      text-align: left; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0 auto; }

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

.site-header__cart-toggle {
  display: inline-block;
  line-height: 36px;
  margin-right: 35px;
  position: relative;
  margin-top: 5px; }
  .site-header__cart-toggle .sprite-cart {
    position: relative;
    padding: 0 15px;
    color: #333; }
    .site-header__cart-toggle .sprite-cart:before {
      content: "\f101";
      font-family: "Flaticon";
      position: absolute;
      line-height: 36px;
      font-size: 20px;
      left: 11px;
      top: -8px; }
  .site-header__cart-toggle #CartCount {
    background: #ffd740 none repeat scroll 0 0;
    border-radius: 100%;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    height: 19px;
    line-height: 17px;
    position: absolute;
    right: -8px;
    text-align: center;
    top: -7px;
    width: 20px; }

.site-header__search {
  width: 70%;
  position: relative; }
  .site-header__search .search-bar:hover input[type="search"] {
    width: 250px;
    visibility: visible;
    transition: all ease 0.3s; }
  .site-header__search .search-bar input[type="search"] {
    border: 1px solid #eaeaea;
    position: absolute;
    width: 37px;
    right: 0;
    top: -10px;
    z-index: 2;
    visibility: hidden;
    font-family: Arial, sans-serif;
    background-color: transparent;
    transition: all ease 0.3s; }
  .site-header__search .search-bar button {
    background: transparent;
    padding: 7px 10px;
    top: -10px;
    color: #333; }

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

.site-header__account {
  margin-top: 20px;
  display: inline-block;
  position: relative; }
  .site-header__account .lnr {
    margin-right: 10px; }
  .site-header__account a {
    position: relative;
    text-transform: capitalize; }
  .site-header__account i {
    width: 18px;
    color: #000; }
  .site-header__account > span {
    padding: 6px 15px 20px; }
    .site-header__account > span i {
      color: #000; }
  .site-header__account ul {
    padding: 20px;
    list-style: none;
    margin: 0;
    display: none;
    background: #363636;
    width: 200px;
    position: absolute;
    left: 0;
    z-index: 2;
    top: 37px; }
    .site-header__account ul li {
      margin: 0;
      font-style: normal; }
      .site-header__account ul li a {
        color: #999999;
        font-style: italic; }
      .site-header__account ul li i {
        color: #999999; }
      .site-header__account ul li:hover a, .site-header__account ul li:hover i {
        color: #fff; }
  .site-header__account:hover ul {
    display: block;
    transition: all ease 0.3s; }

.site-header__support {
  margin: 0 10px;
  padding-right: 10px;
  border-right: 1px solid #e1e1e1; }
  .site-header__support strong {
    font-style: normal;
    color: #000;
    font-family: Arial, serif;
    margin-left: 10px; }

.ultility-item {
  position: position; }
  .ultility-item span.icon-ultility {
    font-size: 24px;
    display: block;
    color: #666666;
    cursor: pointer; }
  .ultility-item ul {
    list-style: none;
    margin: 0;
    visibility: hidden;
    background: #363636;
    width: 200px;
    position: absolute;
    top: 34px;
    box-shadow: 0px 3px 5px 0px;
    padding: 20px;
    z-index: 2; }
    .ultility-item ul li {
      border-bottom: 1px solid #54544c; }
      .ultility-item ul li:last-child {
        border-bottom: none; }
      .ultility-item ul li i {
        padding-right: 5px; }
    .ultility-item ul a, .ultility-item ul span {
      font-size: 11px;
      position: relative;
      text-transform: uppercase;
      color: #666666; }
      .ultility-item ul a:hover, .ultility-item ul span:hover {
        color: #fff; }
  .ultility-item:hover ul {
    visibility: visible;
    transition: all ease 0.3s; }

#currencies {
  cursor: pointer; }
  #currencies span {
    padding-right: 15px; }
  #currencies .selected {
    color: #ffffff; }

.lnr-chevron-down-circle {
  font-size: 10px;
  margin: 0; }

.header-cart .lnr {
  font-size: 25px;
  padding-top: 20px;
  padding-right: 22px; }

.header-cart .my-cart {
  color: #000000;
  font-size: 15px;
  font-style: normal;
  position: relative;
  font-family: Arial, serif;
  font-weight: normal; }
  .header-cart .my-cart:after {
    height: 45px;
    width: 1px;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    background: #e1e1e1;
    top: 9px; }
  .header-cart .my-cart .cart-text {
    border-bottom: 1px solid #e1e1e1;
    display: block;
    font-size: 16px;
    font-style: italic;
    line-height: 30px;
    padding: 0 20px;
    font-weight: 300;
    font-family: Arial, sans-serif; }
  .header-cart .my-cart #CartCount {
    display: inline-block;
    font-family: Arial, serif;
    font-weight: normal;
    line-height: 30px;
    padding: 0 0 0 20px; }

.main-menu {
  border-top: 1px solid #eaeaea; }

/*============================================================================
#Site Nav and Dropdowns
==============================================================================*/
.nav-bar .label-sale {
  display: none; }

.nav-bar .label-hot {
  display: none; }

.nav-bar .site-nav--has-dropdown .icon-plus {
  font-size: 6px;
  position: absolute;
  left: 0;
  line-height: 23px;
  margin-right: 3px; }

.nav-bar .site-nav--has-dropdown .site-nav__link {
  letter-spacing: 0; }

.nav-bar .site-nav__link:hover {
  color: #ffd740; }

.site-nav, .site-nav--mobile {
  font-size: 0.875em;
  cursor: default;
  margin: 0 0 0 -7.5px;
  display: inline-block;
  text-align: left; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block;
    padding: 17px 15px 9px;
    float: left; }
    @media (max-width: 1200px) {
      .site-nav > li, .site-nav--mobile > li {
        padding: 17px 5px 9px; } }

/*================ Home to hamburger and cart that toggle drawers ================*/
.site-nav--mobile .icon-fallback-text .lnr {
  font-size: 18px;
  line-height: 32px; }

.text-right .site-nav--mobile {
  margin: 0 -7.5px 0 0; }

.site-nav--mobile .icon-hamburger {
  font-size: 25px;
  margin-left: 10px; }

.site-nav__link {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  color: #333333;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  font-size: 14px;
  font-family: Arial; }
  .site-nav--has-dropdown .site-nav__link {
    padding-left: 10px; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #333333; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    padding-left: 3.75px; }
  .site-nav--active > .site-nav__link {
    border-color: #333333; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  padding: 20px;
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 1000;
  min-width: 200px;
  top: 48px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #ffffff; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown,
  .site-nav--has-dropdown.nav-hover .site-nav__dropdown,
  .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown a {
    color: #666;
    display: block;
    text-transform: none;
    font-weight: 400;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 22px;
    font-style: none; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      color: #ffd740; }

.site-nav__dropdown .col-1 {
  float: left;
  width: 60%; }

.site-nav__dropdown .col-2 {
  float: left;
  width: 40%; }

.site-nav__dropdown .col-1 .inner {
  float: left;
  width: 33.3%;
  padding-right: 3%; }

.site-nav__dropdown .col-1 .inner > a {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 0;
  margin-bottom: 5px; }

.site-nav__dropdown .col-1 .inner .dropdown {
  margin-bottom: 38px; }

.site-nav__dropdown .col-1 .inner > a {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 0;
  margin-bottom: 5px; }

.site-nav__dropdown .col-1 ul.dropdown {
  display: block;
  position: static;
  padding: 0; }

.site-nav__dropdown .col-1 ul.dropdown li a {
  display: inline-block;
  padding: 5px 0; }

.site-nav__dropdown .col-2 {
  padding: 0 3% 0 0; }

.site-nav li.site-nav--has-dropdown > .dropdown:hover > .site-nav__dropdown, .site-nav--mobile li.site-nav--has-dropdown > .dropdown:hover > .site-nav__dropdown,
.site-nav li.site-nav--has-dropdown > .dropdown.open > .site-nav__dropdown, .site-nav--mobile li.site-nav--has-dropdown > .dropdown.open > .site-nav__dropdown {
  display: block; }

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

/*============================================================================
#Mega Menu
==============================================================================*/
.main-menu {
  position: relative; }
  .main-menu .site-nav .megamenu-dropdown, .main-menu .site-nav--mobile .megamenu-dropdown {
    position: static !important; }
    .main-menu .site-nav .megamenu-dropdown .site-nav__dropdown, .main-menu .site-nav--mobile .megamenu-dropdown .site-nav__dropdown {
      width: 100%;
      padding: 0; }
      .main-menu .site-nav .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item, .main-menu .site-nav--mobile .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item {
        padding: 28px 45px;
        font-family: Arial, sans-serif; }
        .main-menu .site-nav .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item h3, .main-menu .site-nav--mobile .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item h3, .main-menu .site-nav .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item .h3, .main-menu .site-nav--mobile .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item .h3 {
          font-size: 16px;
          line-height: 30px;
          font-weight: 500;
          color: #333333;
          text-transform: uppercase;
          letter-spacing: 2px; }
        .main-menu .site-nav .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul, .main-menu .site-nav--mobile .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul {
          padding-left: 17px;
          margin: 0; }
          .main-menu .site-nav .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul li a, .main-menu .site-nav--mobile .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul li a {
            font-size: 13px;
            font-weight: 400;
            line-height: 5px;
            color: #666;
            letter-spacing: 1px; }
            .main-menu .site-nav .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul li a:hover, .main-menu .site-nav--mobile .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul li a:hover {
              color: #ffd740; }
    .main-menu .site-nav .megamenu-dropdown .grid__item.large--one-quarter, .main-menu .site-nav--mobile .megamenu-dropdown .grid__item.large--one-quarter {
      border-left: 1px solid #ededed; }
      .main-menu .site-nav .megamenu-dropdown .grid__item.large--one-quarter:first-child, .main-menu .site-nav--mobile .megamenu-dropdown .grid__item.large--one-quarter:first-child {
        border-left: none; }
    .main-menu .site-nav .megamenu-dropdown .fa-long-arrow-right::before, .main-menu .site-nav--mobile .megamenu-dropdown .fa-long-arrow-right::before {
      left: -21px;
      position: relative;
      top: 13px; }

/*============================================================================
#Mobile Nav
- List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: -7.5px -7.5px 0 -7.5px; }
  .mobile-nav li {
    margin-bottom: 0; }
  .mobile-nav ul.super {
    list-style: none; }
  .mobile-nav h3, .mobile-nav .h3 {
    padding-left: 15px;
    font-size: 14px; }

.mobile-nav__search {
  padding: 7.5px; }
  .mobile-nav__search .search-bar {
    margin-bottom: 0; }
    .mobile-nav__search .search-bar input {
      border-radius: 30px !important; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: #f6f6f6; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 7.5px;
    right: 7.5px;
    border-bottom: 1px solid #e9e9e9; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #333;
  padding: 7.5px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: #0d0d0d; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: #e9e9e9; }
  .mobile-nav__item a .icon,
  .mobile-nav__toggle button .icon {
    color: #ffd740 !important; }

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

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

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

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

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

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

/*============================================================================
#Section Collection 
==============================================================================*/
.section-group-1 {
  background: #fff;
  position: relative;
  text-align: center; }

.section-group-1 a {
  position: relative;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 15px; }

.section-group-1 a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  left: 0; }

.section-group-1 a:hover:before {
  opacity: 0.7;
  transition: all ease 0.3s;
  background-color: #fdc41b; }

.section-group-1 a:hover .actions span.count {
  display: block;
  color: #fff;
  font-size: 12px;
  margin-bottom: 20px; }

.section-group-1 a:hover .actions h3, .section-group-1 a:hover .actions .h3,
.section-group-1 a:hover .actions .h3 {
  color: #fff; }

.section-group-1 a:hover .actions span.btn--primary {
  background: #000;
  color: #fff;
  visibility: visible; }

.section-group-1 .actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; }

.section-group-1 .actions span.btn--primary {
  visibility: hidden; }

.section-group-1 .actions span.count {
  display: block;
  color: #000;
  font-size: 12px;
  margin-bottom: 20px; }

.section-group-1 .actions h6, .section-group-1 .actions .h6,
.section-group-1 .actions .h6 {
  font-size: 20px;
  color: #222;
  margin: 0 0 10px; }

@media screen and (max-width: 769px) {
  .section-group-1 .actions span.count {
    margin-bottom: 5px; }
  .section-group-1 .actions h3, .section-group-1 .actions .h3,
  .section-group-1 .actions .h3 {
    font-size: 15px;
    margin-bottom: 5px; } }

/*============================================================================
#Drawers
==============================================================================*/
.js-drawer-open {
  overflow: hidden;
  height: 100%; }
  .js-drawer-open #PageContainer:before {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    bottom: 0;
    content: "" !important;
    display: inline-block !important;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99999; }

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

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

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

#PageContainer {
  overflow: hidden; }

.drawer--is-loading:before {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  bottom: 0;
  content: "" !important;
  display: inline-block !important;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99999; }

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

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

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

.drawer__title {
  width: 100%; }

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

.drawer__close button {
  position: relative;
  right: -20px;
  height: 100%;
  padding: 0 20px;
  color: inherit; }
  .drawer__close button:active, .drawer__close button:focus {
    background-color: #e9e9e9; }

/*============================================================================
#Site Footer
==============================================================================*/
.site-footer-top {
  background-image: url("newsletter_bg_img.jpg"); }
  .site-footer-top .widget-newsletter {
    color: #b6b6b6;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 50px 22% 70px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .site-footer-top .widget-newsletter {
        padding: 50px 0 70px; } }
    .site-footer-top .widget-newsletter p {
      color: #666666; }
    .site-footer-top .widget-newsletter h3.title, .site-footer-top .widget-newsletter .title.h3 {
      margin-bottom: 15px; }
    .site-footer-top .widget-newsletter .input-group {
      padding-top: 33px; }
      .site-footer-top .widget-newsletter .input-group .input-group-btn {
        padding-left: 5px; }
        .site-footer-top .widget-newsletter .input-group .input-group-btn .input {
          margin-left: 20px;
          font-size: 12px;
          font-family: Arial, serif;
          letter-spacing: 2px; }
      .site-footer-top .widget-newsletter .input-group .input-group-field {
        border: none; }
    .site-footer-top .widget-newsletter #subscribe {
      background-color: #ffd740;
      color: #333333; }

.site-footer {
  color: #666666;
  border-bottom: 1px solid #272727;
  line-height: 24px; }
  .site-footer a {
    color: #666666; }
  .site-footer h4, .site-footer .h4 {
    color: #d3d3d3;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 2px; }
  .site-footer .site-footer__main .title-footer_image h4, .site-footer .site-footer__main .title-footer_image .h4 {
    position: relative; }
    .site-footer .site-footer__main .title-footer_image h4:after, .site-footer .site-footer__main .title-footer_image .h4:after {
      content: "";
      position: absolute;
      background: transparent url("aaa.png") no-repeat scroll left center;
      height: 18px;
      position: absolute;
      top: 7px;
      width: 63px;
      margin-left: 26px; }
  .site-footer .site-footer__main .title-footer_about h4, .site-footer .site-footer__main .title-footer_about .h4 {
    position: relative; }
    .site-footer .site-footer__main .title-footer_about h4:after, .site-footer .site-footer__main .title-footer_about .h4:after {
      content: "";
      position: absolute;
      background: transparent url("aaa.png") no-repeat scroll left center;
      height: 18px;
      position: absolute;
      top: 7px;
      width: 63px;
      margin-left: 26px; }
  .site-footer .site-footer__main .box-custom {
    margin-bottom: 60px;
    margin-top: 25px; }
    .site-footer .site-footer__main .box-custom i {
      color: white;
      border-radius: 2px;
      height: 28px;
      line-height: 24px;
      margin-right: 10px;
      text-align: center;
      width: 28px; }
  .site-footer .site-footer__main .site-footer__social {
    padding: 0 80px 0 0; }
    .site-footer .site-footer__main .site-footer__social a {
      border: 1px solid #222222;
      border-radius: 2px;
      color: #808080;
      display: inline-block;
      height: 30px;
      line-height: 30px;
      margin: 0 2px 5px 0;
      text-align: center;
      width: 30px; }
    .site-footer .site-footer__main .site-footer__social p {
      font-size: 15px;
      font-weight: 400; }
  .site-footer .site-footer__main > div {
    padding-top: 52px;
    padding-bottom: 50px; }
    .site-footer .site-footer__main > div:first-child {
      border-left: none; }
  .site-footer .site-footer__main ul.imageshow {
    margin-top: 27px; }
    .site-footer .site-footer__main ul.imageshow li {
      float: left;
      margin: 0 4px 4px 0; }
      .site-footer .site-footer__main ul.imageshow li img {
        height: 108px;
        width: 108px;
        opacity: 0.5;
        filter: alpha(opacity=50); }
        .site-footer .site-footer__main ul.imageshow li img:hover {
          opacity: 1.0;
          filter: alpha(opacity=100); }
  .site-footer .site-footer__main .space-top-20 p {
    font-size: 14px;
    font-weight: 400; }
  .site-footer ul {
    list-style: none;
    margin: 0; }
  .site-footer .site-footer__copyright {
    padding-bottom: 40px; }
  .site-footer .bo-sicolor {
    padding-top: 5px; }
    .site-footer .bo-sicolor a {
      height: 25px;
      width: 25px;
      color: #ffffff;
      display: inline-block;
      line-height: 28px;
      overflow: hidden;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s ease-out 0s;
      vertical-align: top;
      margin-bottom: 5px; }
      .site-footer .bo-sicolor a .icon {
        line-height: 30px;
        padding: 5px; }
  .site-footer .site-footer__logo-link {
    display: inline-block;
    padding-top: 10px;
    margin-bottom: 3px; }

.site-footer2 {
  padding: 28px 0 34px;
  background: #1a1a1a; }

.copyright_text {
  font-style: none;
  color: #b0b0b0;
  font-weight: 500; }

/*============================================================================
#Pop up
==============================================================================*/
.fancybox-skin .fancybox-close {
  background: #000 none repeat scroll 0 0;
  border-radius: 0;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 30px;
  line-height: 30px;
  margin: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 30px;
  z-index: 1; }

.fancybox-skin .fancybox-close::before {
  color: #fff;
  content: "\f00d";
  font: 14px/30px Fontawesome; }

.fancybox-skin .fancybox-close:hover {
  background: #000 none repeat scroll 0 0; }

.fancybox-skin .fancybox-close:hover::before {
  color: #fff; }

.popup-newletter {
  text-align: center;
  width: 800px; }
  .popup-newletter .subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    margin-top: 70px;
    text-transform: uppercase;
    font-family: Arial, serif;
    font-weight: normal; }
  .popup-newletter .title {
    font-size: 50px;
    font-weight: 400;
    line-height: 80px;
    margin: 0; }
  .popup-newletter .pnewle-message {
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 6px;
    text-transform: uppercase;
    font-family: Arial, serif;
    font-weight: normal;
    line-height: 18px; }
  .popup-newletter .popup-form {
    margin-top: 55px;
    margin-bottom: 75px; }
    .popup-newletter .popup-form .input-group {
      margin: 0 auto; }
      .popup-newletter .popup-form .input-group .input-group-btn {
        display: block;
        width: auto; }
        .popup-newletter .popup-form .input-group .input-group-btn input {
          height: 42px;
          letter-spacing: 0;
          margin-top: 20px;
          padding: 5px 30px; }
    .popup-newletter .popup-form .input-group-field {
      width: 380px;
      background: transparent none repeat scroll 0 0;
      border: 1px solid #cececf;
      height: 42px;
      text-align: center;
      font-style: italic;
      color: #999999; }

/*============================================================================
#Index page
==============================================================================*/
h2.title, .title.h2 {
  position: relative;
  font-size: 36px;
  z-index: 1;
  letter-spacing: 0;
  font-weight: 300;
  padding-left: 10px;
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    h2.title, .title.h2 {
      font-size: 28px;
      padding: 0;
      text-align: center; }
      h2.title:after, .title.h2:after {
        display: none;
        content: ''; } }
  h2.title.widget__title, .title.widget__title.h2 {
    text-align: left; }

h3.title, .title.h3 {
  display: inline-block;
  font-size: 37px;
  font-weight: 300;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase; }
  @media screen and (max-width: 769px) {
    h3.title title, .title.h3 title {
      text-align: center; } }
  h3.title:before, .title.h3:before {
    content: "";
    position: absolute;
    background: transparent url("title_left.png") no-repeat scroll left center;
    height: 18px;
    left: -89px;
    position: absolute;
    top: 16px;
    width: 80px; }
  h3.title:after, .title.h3:after {
    content: "";
    position: absolute;
    background: transparent url("title_right.png") no-repeat scroll left center;
    height: 18px;
    position: absolute;
    right: -100px;
    top: 16px;
    width: 81px; }

.tab-products, .tab_categories {
  text-align: center; }
  .tab-products a, .tab_categories a {
    position: relative;
    display: block; }
    @media screen and (max-width: 480px) {
      .tab-products a img, .tab_categories a img {
        width: 100%; } }

.title_product h3, .title_product .h3 {
  margin-bottom: 16px; }

.related-products .title_top {
  padding-left: 10px;
  display: none; }

.related-products h2.title:after, .related-products .title.h2:after {
  background: transparent url("title_right.png") no-repeat scroll left center;
  content: "";
  height: 18px;
  position: absolute;
  top: 16px;
  width: 81px; }

.slider-carousel .slider-text {
  position: absolute;
  text-align: center;
  height: 30%;
  width: 100%;
  font-size: 14px;
  color: #fff; }
  .slider-carousel .slider-text.text-left {
    margin: auto 0;
    top: 0;
    bottom: 0; }
    .slider-carousel .slider-text.text-left .line-class:after {
      left: 0; }
  .slider-carousel .slider-text.text-right {
    margin: auto 0;
    top: 0;
    bottom: 0; }
    .slider-carousel .slider-text.text-right .line-class:after {
      right: 0; }
  .slider-carousel .slider-text.text-center {
    margin: auto;
    top: 0;
    bottom: 0; }
    .slider-carousel .slider-text.text-center .line-class:after {
      left: 50%;
      transform: translateX(-50%); }
  .slider-carousel .slider-text .txt1 {
    font-size: 110px;
    text-transform: uppercase;
    line-height: 1;
    font-family: "Lovelo-LineLight";
    position: relative;
    margin-bottom: 20px; }
  .slider-carousel .slider-text .txt2 {
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-transform: capitalize; }
  @media screen and (max-width: 769px) {
    .slider-carousel .slider-text .txt1 {
      font-size: 15px; } }
  @media screen and (min-width: 481px) and (max-width: 768px) {
    .slider-carousel .slider-text .txt1 {
      font-size: 47px;
      padding-bottom: 0px;
      margin-bottom: 0px; }
    .slider-carousel .slider-text .txt2 {
      font-size: 13px;
      line-height: 18px;
      margin-bottom: 13px; } }

@media screen and (max-width: 769px) {
  .slider-carousel .slider-text {
    position: absolute;
    text-align: center;
    height: 95%;
    width: 60%;
    left: 20%;
    right: 20%;
    color: #fff; } }

.products.owl-theme .owl-controls .owl-buttons div {
  top: -45px; }

.section-brand .owl-buttons {
  display: none; }

.section-brand:hover .owl-buttons {
  display: block; }

.section-brand .owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: -30px; }

.section-brand .owl-theme .owl-controls .owl-buttons div.owl-next {
  right: -30px; }

.section-brand img {
  border: 1px solid transparent; }
  .section-brand img:hover {
    border: 1px solid #e1e1e1; }

.section-services {
  padding: 20px 0; }
  .section-services h5, .section-services .h5 {
    font-size: 18px;
    font-weight: 400;
    transition: all ease 0.3s;
    margin-top: 12px;
    margin-bottom: 7px; }
  .section-services .grid__item:hover h5, .section-services .grid__item:hover .h5 {
    letter-spacing: 1px;
    transition: all ease 0.3s; }
  .section-services p {
    color: #999;
    margin-bottom: 17px;
    font-size: 16px; }
  .section-services .box-service {
    margin-top: 22px;
    margin-bottom: 2px; }
    .section-services .box-service .box-icon {
      float: left;
      padding-right: 20px;
      padding-bottom: 20px; }
    .section-services .box-service .box-body {
      text-align: left; }
  .section-services .box-service {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start; }
  @media (max-width: 767px) {
    .section-services .box-service {
      flex-direction: column;
      align-items: center; }
      .section-services .box-service .box-icon {
        padding-right: 0; }
      .section-services .box-service .sv-item {
        display: flex;
        flex-direction: column;
        align-items: center; }
      .section-services .box-service .box-body {
        text-align: center; } }

@media screen and (max-width: 480px) {
  .section-custom-top img {
    width: 100%; } }

@media screen and (min-width: 769px) {
  .section-custom-top {
    margin-top: -100px !important; } }

.section-custom-center {
  position: relative;
  min-height: 650px; }
  @media screen and (max-width: 480px) {
    .section-custom-center img {
      display: none; } }
  .section-custom-center .custom-content {
    padding-left: 50px;
    line-height: 30px; }
  .section-custom-center img {
    top: 0;
    position: absolute;
    left: 0;
    max-width: 50%; }

/*============================================================================
#Sidebar
==============================================================================*/
.sidebar {
  font-family: Arial, serif; }
  .sidebar h4.widget__title, .sidebar .widget__title.h4 {
    position: relative;
    font-size: 24px;
    z-index: 1;
    letter-spacing: 1px;
    font-weight: 300;
    padding-bottom: 20px; }
  .sidebar .title-widget-category {
    position: relative; }
    .sidebar .title-widget-category h4.widget__title:after, .sidebar .title-widget-category .widget__title.h4:after {
      content: "";
      position: absolute;
      background: transparent url("title_right.png") no-repeat scroll left center;
      height: 33px;
      width: 55px; }
  .sidebar .title-widget-videos {
    position: relative; }
    .sidebar .title-widget-videos h4.widget__title, .sidebar .title-widget-videos .widget__title.h4 {
      padding-top: 30px; }
      .sidebar .title-widget-videos h4.widget__title:after, .sidebar .title-widget-videos .widget__title.h4:after {
        content: "";
        position: absolute;
        background: transparent url("title_right.png") no-repeat scroll left center;
        height: 36px;
        width: 55px; }
  .sidebar .title-widget-blog-recent {
    position: relative; }
    .sidebar .title-widget-blog-recent h4.widget__title, .sidebar .title-widget-blog-recent .widget__title.h4 {
      padding-top: 30px; }
      .sidebar .title-widget-blog-recent h4.widget__title:after, .sidebar .title-widget-blog-recent .widget__title.h4:after {
        content: "";
        position: absolute;
        background: transparent url("title_right.png") no-repeat scroll left center;
        height: 33px;
        width: 55px; }
  .sidebar .title-filter-blocks {
    position: relative; }
    .sidebar .title-filter-blocks h4.widget__title, .sidebar .title-filter-blocks .widget__title.h4 {
      padding-top: 30px; }
      .sidebar .title-filter-blocks h4.widget__title:after, .sidebar .title-filter-blocks .widget__title.h4:after {
        content: "";
        position: absolute;
        background: transparent url("title_right.png") no-repeat scroll left center;
        height: 33px;
        width: 55px; }
  .sidebar .title-widget-product {
    position: relative; }
    .sidebar .title-widget-product h4.widget__title, .sidebar .title-widget-product .widget__title.h4 {
      padding-top: 30px; }
      .sidebar .title-widget-product h4.widget__title:after, .sidebar .title-widget-product .widget__title.h4:after {
        content: "";
        position: absolute;
        background: transparent url("title_right.png") no-repeat scroll left center;
        height: 33px;
        width: 55px; }
  .sidebar .title-widget-cms {
    position: relative; }
    .sidebar .title-widget-cms h4.widget__title, .sidebar .title-widget-cms .widget__title.h4 {
      padding-top: 30px; }
      .sidebar .title-widget-cms h4.widget__title:after, .sidebar .title-widget-cms .widget__title.h4:after {
        content: "";
        position: absolute;
        background: transparent url("title_right.png") no-repeat scroll left center;
        height: 33px;
        width: 55px; }
  .sidebar .title-widget-brands {
    position: relative; }
    .sidebar .title-widget-brands h4.widget__title, .sidebar .title-widget-brands .widget__title.h4 {
      padding-top: 30px; }
      .sidebar .title-widget-brands h4.widget__title:after, .sidebar .title-widget-brands .widget__title.h4:after {
        content: "";
        position: absolute;
        background: transparent url("title_right.png") no-repeat scroll left center;
        height: 33px;
        width: 55px; }
  .sidebar .title-widget-tags {
    position: relative; }
    .sidebar .title-widget-tags h4.widget__title, .sidebar .title-widget-tags .widget__title.h4 {
      padding-top: 30px; }
      .sidebar .title-widget-tags h4.widget__title:after, .sidebar .title-widget-tags .widget__title.h4:after {
        content: "";
        position: absolute;
        background: transparent url("title_right.png") no-repeat scroll left center;
        height: 33px;
        width: 55px; }
  .sidebar .widget__content .menu li {
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400; }
  .sidebar .widget {
    margin-bottom: 10px; }
    .sidebar .widget .search-bar {
      border: 1px solid #eeeeee;
      width: 100%; }
      .sidebar .widget .search-bar .input-group-btn .btn, .sidebar .widget .search-bar .input-group-btn .btn--secondary {
        background-color: #ffd740;
        color: #fff; }
        .sidebar .widget .search-bar .input-group-btn .btn .sprite-search:before, .sidebar .widget .search-bar .input-group-btn .btn--secondary .sprite-search:before {
          width: 14px;
          height: 15px;
          background-position: -41px -42px;
          top: 18px;
          left: 0; }
  .sidebar ul {
    list-style: none;
    margin: 0; }
  .sidebar ul.menu li a {
    display: inline-block;
    padding: 7px 20px; }
    .sidebar ul.menu li a span {
      color: #333; }

.widget-product .widget__content .item {
  overflow: hidden;
  padding-bottom: 15px; }
  .widget-product .widget__content .item:first-child {
    margin-top: 15px; }
  .widget-product .widget__content .item .product-meta {
    position: relative; }
    .widget-product .widget__content .item .product-meta a:before {
      background: #999 none repeat scroll 0 0;
      content: "";
      height: 1px;
      left: 80px;
      position: absolute;
      top: 26px;
      width: 76px; }

.widget-product .product-image {
  width: 70px;
  float: left;
  margin-right: 10px; }

.widget-product .product-name {
  display: inline-block;
  color: #000000; }
  .widget-product .product-name:hover {
    color: #ffd740; }

.spr-badge-caption {
  display: none; }

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

.product-container {
  text-align: left;
  position: relative; }
  .product-container .swatch {
    left: 12px;
    margin: 0;
    position: absolute;
    text-align: left;
    top: 12px; }
  .product-container .swatch .swatch-element {
    float: none;
    margin-bottom: 3px; }
  .product-container .swatch label {
    text-indent: -9999em;
    border-radius: 100%;
    min-width: 20px !important;
    height: 20px !important; }
  .owl-item .product-container {
    margin: 10px; }
  .product-container .product-image {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-bottom: 12px; }
  .product-container .product-thumbnail {
    position: relative; }
  .product-container .product-actions {
    background: #fcfcfc;
    padding: 6px 0;
    text-align: center;
    -webkit-box-shadow: 2px 4px 5px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 2px 4px 5px 0px rgba(0, 0, 0, 0.09);
    position: absolute;
    width: 100%;
    bottom: -10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    .product-container .product-actions .wishlist {
      position: relative; }
      .product-container .product-actions .wishlist:after {
        color: #939391;
        font-size: 18px;
        font-weight: 300;
        position: absolute;
        right: 0;
        top: 0;
        width: 0; }
    .product-container .product-actions i {
      border-radius: 3px;
      padding: 10px;
      display: inline-block;
      line-height: 12px; }
      .product-container .product-actions i:hover {
        background: #ffd740;
        color: #fff; }
  .product-container .back-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease 300ms; }
  .product-container .btn, .product-container .btn--secondary {
    background: transparent;
    border: transparent;
    padding: 0 10px;
    display: inline-block;
    color: #999;
    line-height: 12px; }
    .product-container .btn:hover, .product-container .btn--secondary:hover {
      color: #999999; }
    .product-container .btn.wishlist span, .product-container .wishlist.btn--secondary span {
      display: none; }
  .product-container form {
    display: inline-block; }
    .product-container form.add-to-cart .btn, .product-container form.add-to-cart-action .btn, .product-container form.add-to-cart .btn--secondary, .product-container form.add-to-cart-action .btn--secondary {
      border-left: 0; }
  .product-container .product-meta {
    width: 100%;
    display: inline-block;
    transition: all ease 300ms;
    min-height: 124px; }
    .product-container .product-meta h4, .product-container .product-meta .h4 {
      font-family: Arial, serif;
      font-size: 16px;
      color: #ffd740;
      text-transform: capitalize;
      font-weight: 500;
      display: inline-block;
      line-height: 18px;
      margin-bottom: 0;
      height: 30px; }
      .product-container .product-meta h4 a, .product-container .product-meta .h4 a {
        position: relative;
        padding-bottom: 10px; }
        .product-container .product-meta h4 a:hover, .product-container .product-meta .h4 a:hover {
          color: #ffd740; }
        .product-container .product-meta h4 a:before, .product-container .product-meta .h4 a:before {
          background: #999 none repeat scroll 0 0;
          content: "";
          height: 1px;
          left: 0;
          position: absolute;
          bottom: 0;
          width: 76px; }
  .product-container:hover .back-img {
    visibility: visible;
    opacity: 1;
    transition: all ease 300ms;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .product-container:hover .product-actions {
    opacity: 1;
    visibility: visible;
    bottom: 0px;
    transition: all ease 300ms; }
  .product-container:hover .product-meta h4:before, .product-container:hover .product-meta .h4:before {
    width: 100%;
    transition: width ease 0.3s; }
  .product-container:hover .add-to-cart, .product-container:hover .add-to-cart-action {
    visibility: visible;
    opacity: 1;
    transition: all ease 300ms; }
  .product-container .sale-price {
    color: #999;
    font-weight: normal; }
  .product-container .label {
    background: transparent none repeat scroll 0 0;
    border-bottom: 2px solid #ef2840;
    color: #ef2840;
    display: inline-block;
    font-family: Arial, serif;
    font-size: 16px;
    padding: 0 30px 5px 10px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 20px;
    border-radius: 0; }
    .product-container .label.new {
      background: #17c187;
      left: 20px; }

.add-to-cart, .add-to-cart-action {
  transition: all ease 300ms; }
  .add-to-cart .add_to_cart, .add-to-cart-action .add_to_cart {
    font-family: Arial, serif;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    font-weight: bold;
    padding: 0;
    border-radius: 3px;
    transition: all ease 300ms; }
    .add-to-cart .add_to_cart:hover, .add-to-cart-action .add_to_cart:hover {
      background: #ffd740;
      color: #fff; }

.add-to-cart-action .add_to_cart {
  background: #ffd740;
  padding: 5px 10px;
  color: #000; }

#AddToCartForm #AddToCart1 {
  color: #999;
  background: #fff;
  border-radius: 3px;
  height: 43px;
  margin-left: 10px; }
  #AddToCartForm #AddToCart1:hover {
    background: #ffd740;
    color: #fff; }
  #AddToCartForm #AddToCart1 #AddToCartText1 {
    padding: 18px 11px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase; }
    #AddToCartForm #AddToCart1 #AddToCartText1 i {
      padding-right: 5px; }

.product-price {
  font-weight: bold;
  color: #000000;
  font-size: 18px;
  font-family: Arial, sans-serif;
  margin-bottom: 7px;
  padding-top: 7px; }

.swatch {
  margin: 26px 0;
  text-transform: uppercase;
  font-size: 1.4rem; }
  .swatch .crossed-out {
    display: none; }

.swatch .header {
  margin: 0 5px 0 0;
  float: left;
  min-width: 65px;
  color: #212121;
  line-height: 25px;
  font-style: italic; }

.swatch input {
  display: none !important; }

.swatch label {
  cursor: pointer;
  float: left;
  min-width: 20px !important;
  height: 20px !important;
  margin: 0;
  background-color: #eee;
  text-align: center;
  line-height: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  border: 1px solid #ebebeb; }

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

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

.swatch input:checked + label {
  font-weight: 700;
  background: #ffa200;
  color: #FFF;
  line-height: 20px !important; }

.swatch [class*="color"] input:checked + label {
  border: 2px solid #31373d; }

.swatch .swatch-element {
  float: left;
  -webkit-transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  margin: 0px 10px 0 0;
  position: relative; }

.swatch .swatch-element.color label {
  position: relative; }

.swatch .swatch-element.color label:before {
  content: url();
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  line-height: 40px; }

.swatch .swatch-element.color input:checked + label:before {
  opacity: 1;
  visibility: visible; }

.swatch .swatch-element.color.white label {
  -webkit-box-shadow: inset 0 0 0 1px #eee;
  box-shadow: inset 0 0 0 1px #eee; }

.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

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

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

.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6; }

.swatch .tooltip {
  display: none; }

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

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

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

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

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

.quickview-product .selector-wrapper {
  display: none; }

.quickview-product .total-price {
  margin-bottom: 15px; }

.collection__image {
  margin-bottom: 20px; }

.collection__sort {
  margin-bottom: 30px; }
  .collection__sort #SortBy {
    border: 1px solid #ebebeb; }

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

/*============================================================================
#Breadcrumbs
==============================================================================*/
.breadcrumb-wrapper .breadcrumb {
  padding-bottom: 70px; }
  .breadcrumb-wrapper .breadcrumb:before {
    background: transparent url("breadcrumb-bg.jpg") no-repeat scroll center bottom;
    content: "";
    height: 100px;
    left: 0;
    position: absolute;
    width: 100%; }
  .breadcrumb-wrapper .breadcrumb .inner {
    position: relative;
    color: #fff;
    padding-top: 35px;
    font-style: none; }
    .breadcrumb-wrapper .breadcrumb .inner h1, .breadcrumb-wrapper .breadcrumb .inner .h1 {
      float: right;
      color: #ffd740; }
    @media screen and (max-width: 769px) {
      .breadcrumb-wrapper .breadcrumb .inner {
        padding-top: 15px; } }
  .breadcrumb-wrapper .breadcrumb > img {
    position: absolute;
    left: 0;
    max-width: inherit; }
  .breadcrumb-wrapper .breadcrumb a, .breadcrumb-wrapper .breadcrumb i,
  .breadcrumb-wrapper .breadcrumb span {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    padding: 0 7px 0 0;
    color: #ffffff; }
    .breadcrumb-wrapper .breadcrumb a:first-child, .breadcrumb-wrapper .breadcrumb i:first-child,
    .breadcrumb-wrapper .breadcrumb span:first-child {
      padding-left: 0; }

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

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

ul#ProductThumbs {
  margin: 0 -5px; }

.product-single__thumbnails {
  margin: 0; }
  .product-single__thumbnails .product__thumbnails {
    min-height: 80px;
    margin: 0;
    padding: 0 5px; }
    @media screen and (max-width: 480px) {
      .product-single__thumbnails .product__thumbnails {
        float: left;
        margin-right: 4px; } }

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

.product-single__photos li,
.product-single__thumbnails li {
  margin-bottom: 15px; }

@media screen and (max-width: 480px) {
  .product-single__thumbnails img {
    margin: 0 !important; } }

.product-single .add-to-cart, .product-single .add-to-cart-action {
  height: 43px; }
  .product-single .add-to-cart .add_to_cart, .product-single .add-to-cart-action .add_to_cart {
    padding: 12px 40px 11px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 34px;
    font-size: 12px; }
  .product-single .add-to-cart:hover .add_to_cart, .product-single .add-to-cart-action:hover .add_to_cart {
    background: #000;
    color: #fff;
    border-color: #000; }

.product-single .wishlist {
  background: #fff;
  color: #999;
  border-radius: 3px; }
  .product-single .wishlist:hover {
    color: #f5a623;
    background: #ffd740; }

.product-single h1, .product-single .h1 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 44px; }

.product-single .spr-badge-caption {
  display: none; }

.product-single .right-single-product {
  position: relative; }
  .product-single .right-single-product h2:before, .product-single .right-single-product .h2:before {
    background: #999;
    content: "";
    position: absolute;
    height: 1px;
    width: 76px; }
  .product-single .right-single-product .product-extra {
    border-top: 1px dotted #dfdfdf;
    border-bottom: 1px dotted #dfdfdf;
    padding-top: 10px;
    padding-bottom: 20px; }

.product-single #ProductPrice {
  display: inline-block; }
  .product-single #ProductPrice .product-price {
    font-size: 28px;
    line-height: 48px;
    font-family: Arial, sans-serif;
    font-weight: bold; }

.product-single .spr-badge {
  right: 0;
  display: inline-block; }

h3.page_name, .page_name.h3 {
  display: none;
  position: relative;
  z-index: 3;
  color: #fff;
  top: -150px;
  height: 0;
  margin: 0;
  padding: 0;
  font-size: 24px; }

.des-short {
  font-size: 15px;
  color: #666;
  font-style: none;
  line-height: 24px;
  font-weight: 300; }

.quantity-selector {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase; }

.add-this {
  position: relative;
  text-align: right;
  margin: 30px 0;
  margin: 20px 0;
  padding: 25px 0 18px;
  text-align: right; }
  .add-this label {
    position: absolute;
    left: 0;
    font-weight: normal;
    font-style: italic; }
  .add-this .addthis_toolbox {
    display: inline-block; }

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

.selector-wrapper {
  display: none; }
  .selector-wrapper label[for] {
    float: left;
    min-width: 60px;
    line-height: 39px; }

.spr-icon {
  font-size: 9px !important; }

.spr-review-header-title,
.spr-header-title {
  font-size: 14px !important; }

.spr-container {
  padding: 0 !important;
  border: none !important; }

.spr-badge-starrating {
  color: #ffd740; }

@media screen and (min-width: 769px) {
  .cloud-zoom-big {
    overflow: hidden; }
  .cloud-zoom-lens {
    background-color: #fff;
    cursor: move; }
  .cloud-zoom-wrap {
    top: 0;
    z-index: 9999;
    position: relative; }
  .cloud-zoom-loading {
    color: white;
    background: #222;
    padding: 3px; }
  .product-single__photos {
    text-align: center;
    position: relative;
    z-index: 40; }
  .product-single__photos img {
    width: 100%; }
  .product-single__photos a {
    display: block;
    text-align: center; } }

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

/*============================================================================
#Blogs page
==============================================================================*/
.article .post-thumbnail {
  margin-bottom: 30px; }
  .article .post-thumbnail img {
    margin-bottom: 15px;
    width: 100%; }

.article .entry-meta {
  font-style: none;
  margin-bottom: 30px;
  font-size: 14px; }
  .article .entry-meta .entry-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    text-align: left !important;
    text-transform: uppercase; }

.article .btn, .article .btn--secondary {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal; }

.article em {
  font-family: Arial, sans-serif; }

.latest-posts-body .entry-meta {
  padding: 20px 30px; }

.latest-posts-body .post-thumbnail img {
  display: inline-block; }

.latest-posts-body .entry-title {
  text-transform: none;
  margin: 15px 0; }
  .latest-posts-body .entry-title a {
    color: #000; }

.latest-posts-body em {
  color: #b9b9b9; }

.latest-posts-v1 h2, .latest-posts-v1 .h2 {
  font-size: 30px;
  text-align: left;
  margin-top: 16px; }

.latest-posts-v1 .latest-posts-body {
  border-top: 1px solid #e1e1e1; }
  .latest-posts-v1 .latest-posts-body:first-child {
    border-top: none; }
  .latest-posts-v1 .latest-posts-body img {
    border-radius: 100%; }

.latest-posts-v1 .post-thumbnail {
  width: 110px;
  float: left;
  height: 150px;
  margin-top: 35px;
  margin-right: 20px; }

.latest-posts-v1:before {
  background: #f9f9f9 !important; }

.latest-posts-v1 > div {
  position: relative; }

.latest-posts-v1 .banner {
  position: absolute;
  top: -90px; }

.list-blog .post {
  padding-bottom: 30px; }

.list-blog .post-thumbnail {
  position: relative; }

.list-blog h4, .list-blog .h4 {
  font-size: 22px;
  font-weight: 500; }

.list-blog .created-date {
  background: #fff none repeat scroll 0 0;
  color: #999;
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  padding: 8px 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  bottom: 0;
  width: 80px; }
  .list-blog .created-date .day {
    font-size: 38px;
    display: block;
    color: #ffd740;
    float: left;
    font-weight: bold;
    margin-top: 7px; }

.header-blog {
  text-align: center;
  padding-bottom: 25px; }
  .header-blog .header-blog-body {
    overflow: hidden;
    position: relative; }
    .header-blog .header-blog-body .post-thumbnail {
      overflow: hidden;
      position: relative; }
      @media screen and (max-width: 769px) {
        .header-blog .header-blog-body .post-thumbnail {
          width: 100%; } }
    .header-blog .header-blog-body .entry-meta {
      padding: 10px;
      position: relative; }
      @media screen and (max-width: 769px) {
        .header-blog .header-blog-body .entry-meta {
          width: 100%;
          padding: 10px; } }
      .header-blog .header-blog-body .entry-meta h4, .header-blog .header-blog-body .entry-meta .h4 {
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        text-align: left;
        color: #333;
        text-transform: uppercase; }
      .header-blog .header-blog-body .entry-meta .des {
        font-size: 15.9px;
        text-align: left; }
    .header-blog .header-blog-body .created-date {
      background: #fff none repeat scroll 0 0;
      color: #999;
      font-size: 11px;
      font-weight: 500;
      height: 45px;
      line-height: 15px;
      padding: 8px 0;
      position: absolute;
      left: 0;
      text-align: center;
      text-transform: uppercase;
      bottom: 0;
      width: 80px; }
      .header-blog .header-blog-body .created-date .day {
        font-size: 38px;
        display: block;
        color: #ffd740;
        float: left;
        font-weight: bold;
        margin-top: 7px; }

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

.note {
  border-color: #e1e1e1; }

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

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

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

/*============================================================================
#Cart Page
==============================================================================*/
.cart__row {
  position: relative;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e1e1e1; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }
  .cart__row.cart__header-labels {
    border-top: none;
    font-size: 16px;
    color: #000; }

.cart-table th {
  font-weight: normal; }

.cart-table td,
.cart-table th {
  padding: 30px 15px;
  border: none; }

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

.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 90px; }

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

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

.cart__remove {
  display: block; }

/*============================================================================
#Wishlist Page
==============================================================================*/
.wishlist-table td.product-name img {
  margin-right: 10px;
  max-width: 90px; }

/*============================================================================
#Contact Page
==============================================================================*/
.contact-box .inner {
  height: 190px;
  vertical-align: middle;
  overflow: hidden;
  padding: 50px 0;
  margin: 50px 0 70px;
  line-height: 25px;
  border: 1px solid #e1e1e1; }

.contact-box i {
  color: #000;
  font-size: 24px; }

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

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

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

.ajaxcart__row {
  padding-bottom: 7.5px;
  margin-bottom: 7.5px;
  border-bottom: 1px solid #e9e9e9; }

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

.ajaxcart__product-name,
.ajaxcart__product-meta {
  display: block; }

.ajaxcart__product-name + .ajaxcart__product-meta {
  padding-top: 3px; }

/*================ Quantity Selectors ================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 90px;
  min-width: 90px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    background: transparent none repeat scroll 0 0;
    border-right: medium none;
    display: block;
    height: 43px;
    padding: 0;
    text-align: center;
    width: 60px;
    border-radius: 0; }

.quantity-selector {
  text-transform: uppercase;
  line-height: 43px;
  padding-right: 10px; }

.js-qty__adjust, .ajaxcart__qty-adjust {
  bottom: 0;
  cursor: pointer;
  display: block;
  font-size: 7px;
  font-weight: bold;
  height: 24px;
  overflow: hidden;
  padding: 0 8px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 19px;
  width: 32px;
  background: transparent none repeat scroll 0 0;
  border: 1px solid #999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .js-qty__adjust:hover, .ajaxcart__qty-adjust:hover, .js-qty__adjust:focus, .ajaxcart__qty-adjust:focus {
    color: #ffffff; }

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

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  border-top: medium none; }

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

.ajaxcart__qty-num {
  border-color: #e9e9e9;
  color: #333; }

.ajaxcart__qty-adjust {
  color: #333; }

.ajaxcart__qty--plus {
  border-color: #e9e9e9; }

.ajaxcart__qty--minus {
  border-color: #e9e9e9; }

/***********
#FAQ's
***********/
.s4com-articles a h4, .s4com-articles a .h4 {
  font-size: 12px !important; }

.s4com-helpcenter h2, .s4com-helpcenter .h2 {
  display: block;
  position: relative;
  z-index: 3;
  color: #fff;
  top: -150px;
  height: 0;
  margin: 0;
  padding: 0;
  font-size: 24px;
  border: none; }

.s4com-articles {
  padding-left: 20px; }

.s4com-sub-heading {
  padding-left: 0; }

/* theme style */
.sprite-cart {
  width: 36px;
  height: 36px;
  position: relative;
  float: left; }

.sprite-add-to-cart:before {
  width: 23px;
  height: 20px;
  background-position: 0 0;
  left: 0; }

.sprite-search:before {
  width: 14px;
  height: 15px;
  background-position: -41px -42px;
  top: 14px;
  left: 0; }

.sprite-title {
  width: 100px;
  height: 9px;
  background-position: -103px -69px; }

.bgFull {
  position: relative;
  padding: 50px 0; }

.bgFull:before {
  content: "";
  position: absolute;
  height: 100%;
  background: transparent;
  width: 100%;
  padding: 0 200%;
  margin-left: -150%;
  top: 0; }

@media screen and (max-width: 480px) {
  .space-15-phone {
    margin-bottom: 15px; } }

.custom-top a {
  position: relative;
  display: block; }
  @media screen and (max-width: 480px) {
    .custom-top a img {
      width: 100%; } }

.custom-top .title-col {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Arial, serif;
  z-index: 200;
  color: #fff;
  text-align: left; }
  .custom-top .title-col .count-col {
    display: block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    text-transform: none;
    font-style: italic;
    letter-spacing: 0;
    font-family: Arial, sans-serif;
    margin-top: 5px; }

.tab_categories .space-15-phone .title-col {
  left: 23%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Arial, serif;
  z-index: 200;
  color: #000;
  text-align: left; }
  .tab_categories .space-15-phone .title-col .count-col {
    display: block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    text-transform: none;
    font-style: italic;
    letter-spacing: 0;
    font-family: Arial, sans-serif;
    margin-top: 5px; }

.tab_categories .space-30 .title-col {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Arial, serif;
  z-index: 200;
  color: #fff;
  text-align: left; }
  .tab_categories .space-30 .title-col .count-col {
    display: block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    text-transform: none;
    font-style: italic;
    letter-spacing: 0;
    font-family: Arial, sans-serif;
    margin-top: 5px; }

.section-slider .col-1 .title-col {
  color: #000; }

.section-slider .col-2 .title-col {
  color: #fff; }

.section-slider .col-3 .title-col {
  color: #000; }

.collection-list .grid-uniform .grid__item {
  margin-bottom: 20px; }
  .collection-list .grid-uniform .grid__item .spr-badge-caption {
    display: none; }
  .collection-list .grid-uniform .grid__item .product-title {
    margin: 0; }
  .collection-list .grid-uniform .grid__item .product-price {
    margin: 0; }
  .collection-list .grid-uniform .grid__item .rte {
    margin: 0; }

.template-product .breadcrumb {
  margin-bottom: 60px; }

.arrivals h2.title, .arrivals .title.h2 {
  margin-bottom: 38px; }

.arrivals .owl-item .product-container {
  margin: 0 10px; }

.product-deal {
  text-align: center; }
  .product-deal a {
    position: relative;
    display: block; }
    @media screen and (max-width: 480px) {
      .product-deal a img {
        width: 100%; } }
  .product-deal .product-container .product-image {
    width: 48%;
    float: left;
    margin-right: 2%; }
    @media screen and (max-width: 769px) {
      .product-deal .product-container .product-image {
        width: 100%;
        text-align: center; } }
  .product-deal .product-container .product-actions {
    display: none; }
  .product-deal .product-container .product-meta {
    width: 45%;
    float: left;
    margin-left: 10px;
    text-align: left; }
    @media screen and (max-width: 769px) {
      .product-deal .product-container .product-meta {
        width: 100%;
        text-align: center; } }
    .product-deal .product-container .product-meta .product-actions-deal {
      border-top: 1px dashed #999;
      padding-top: 10px; }
      .product-deal .product-container .product-meta .product-actions-deal i {
        border-radius: 3px;
        padding: 10px;
        display: inline-block;
        line-height: 12px; }
        .product-deal .product-container .product-meta .product-actions-deal i:hover {
          background: #ffd740;
          color: #fff; }
  .product-deal .product-container .on-sale {
    display: none; }
  .product-deal .product-container .product-name h4, .product-deal .product-container .product-name .h4 {
    margin-top: 12px; }
  .product-deal .product-container .add-to-cart, .product-deal .product-container .add-to-cart-action {
    margin-bottom: 5px; }
  .product-deal .product-container .deal-clock .list-inline {
    padding-bottom: 10px; }
    .product-deal .product-container .deal-clock .list-inline li {
      background: #fff none repeat scroll 0 0;
      border: 2px solid #efefef;
      border-radius: 3px;
      box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.07);
      cursor: pointer;
      display: inline-block;
      height: 36px;
      line-height: 15px;
      margin-right: 6px;
      position: relative;
      text-align: center;
      width: 45px; }
      .product-deal .product-container .deal-clock .list-inline li b {
        color: #ef4a42;
        font-size: 16px;
        font-weight: bold; }
      .product-deal .product-container .deal-clock .list-inline li span {
        color: #999;
        font-size: 10px;
        font-weight: 600;
        line-height: 18px;
        text-align: center; }

.testimonials .testimonials-quote {
  font-style: none;
  color: #eceded;
  font-size: 26px;
  font-weight: 500; }

.testimonials .testimonials-body {
  display: inline-block;
  max-width: 750px;
  position: relative; }

.testimonials .testimonials-profile h3, .testimonials .testimonials-profile .h3 {
  color: #ffd740;
  text-align: left;
  text-transform: capitalize;
  font-size: 20px;
  margin: 10px 0 10px;
  font-weight: bold;
  letter-spacing: 3px; }

.testimonials .testimonials-profile h4, .testimonials .testimonials-profile .h4 {
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
  text-align: left;
  text-transform: capitalize; }
  .testimonials .testimonials-profile h4:before, .testimonials .testimonials-profile .h4:before {
    background-color: #ffffff;
    content: "";
    position: absolute;
    width: 60px;
    height: 1px; }

.testimonials .testimonials-meta {
  overflow: hidden; }
  .testimonials .testimonials-meta p {
    text-align: left; }
  .testimonials .testimonials-meta img {
    border-radius: 50%;
    border: 1px solid #6d7071;
    border-radius: 50%;
    padding: 7px; }

.testimonials .owl-theme .owl-controls .owl-buttons div.owl-next {
  right: -30px; }

.testimonials .owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: -30px; }

.list-inline li span {
  display: block; }

.copyright_text a {
  color: #f1f1f1; }
  .copyright_text a:hover {
    color: #ffd740; }

.section-product-tab .nav {
  background: #fff;
  padding: 7px 0; }

.section-product-tab .nav li {
  display: inline-block;
  margin-bottom: 0; }

.section-product-tab .nav li a {
  border: none;
  background: transparent;
  color: #000; }

.section-product-tab .nav-tabs > li.active > a,
.section-product-tab .nav-tabs > li.active > a, .section-product-tab .nav-tabs > li.active > a:hover,
.section-product-tab .nav-tabs > li.active > a:focus {
  background: #ffd740; }

.header-blog2 {
  text-align: center;
  margin-top: 40px; }

.header-blog2 .post-thumbnail img {
  width: 100%; }

.rte div {
  max-width: 100% !important; }

.header-blog2 .post-thumbnail i {
  position: absolute;
  left: 50%;
  top: 50%;
  color: red;
  transform: translate(-50%, -50%);
  font-size: 55px; }

.header-blog2 .post-thumbnail i:hover {
  font-size: 60px; }

.header-blog2 h4, .header-blog2 .h4 {
  margin-top: 10px; }

.kechay .inforow a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 30px 0;
  font-weight: bold;
  text-transform: uppercase; }

.kechay2 {
  text-align: center;
  margin-top: 30px; }

.bocbanchay {
  background: #f4f4f4;
  padding: 30px 0; }

.kechay2 .inforow {
  position: relative; }
  @media (max-width: 767px) {
    .kechay2 .inforow {
      margin: 0; } }

@media (min-width: 768px) {
  .kechay2 .inforow:before {
    position: absolute;
    content: " ";
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px solid #ddd; } }

.kechay2 .col-md-3:first-child .inforow:before {
  display: none; }

.footes {
  padding: 30px 0; }

.footes h4, .footes .h4 {
  font-size: 18px;
  color: #000;
  font-weight: bold; }

.zazatora > div {
  margin-bottom: 15px; }

.zazatora > div img {
  width: 100%; }

.ziczo {
  font-size: 14px;
  color: #000;
  text-transform: initial;
  text-align: center; }

.ziaaa {
  margin-bottom: 30px; }

.menu-sticky {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  animation: stuckMoveDown .6s;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15); }

.is-moved-by-drawer {
  transform: none;
  will-change: unset; }

.menu-scroll {
  background: #fff; }

.site-nav__dropdown a {
  font-size: 15px;
  padding: 10px 20px !important;
  transition: all .3s; }

.site-nav__dropdown {
  padding: 0; }

.site-nav__dropdown li:hover > a {
  background-color: rgba(0, 0, 0, 0.03); }

.nav-tabs > li > a {
  font-size: 18px; }

.slider_element .btn--secondary {
  display: none; }

.site-nav__link {
  font-size: 16px; }

@media (min-width: 769px) {
  .list-congtrinh > div:nth-child(3n+1) {
    clear: both; } }

@media (max-width: 768px) {
  .list-congtrinh > div:nth-child(2n+1) {
    clear: both; } }

.list-blog:after {
  clear: both;
  content: ""; }

.list-blog + .pagination {
  float: left;
  width: 100%;
  text-align: center; }

.nav-tabs > li > a {
  font-size: 13px !important; }

.slider-blog .swiper-button-next, .slider-blog .swiper-button-prev {
  color: #fff;
  top: 35%; }
  .slider-blog .swiper-button-next:after, .slider-blog .swiper-button-prev:after {
    font-size: 30px; }

.list-congtrinh .entry-meta a {
  font-weight: 500; }

.header-blog2 .header-blog-body h4 a, .header-blog2 .header-blog-body .h4 a {
  font-size: 16px;
  font-weight: 500; }

.header-blog2 .post-thumbnail {
  position: relative; }

@media (max-width: 767px) {
  .bor-bottom {
    border-bottom: 1px solid #ccc; }
  .kechay2-item {
    display: flex;
    align-items: center;
    min-height: 50px;
    max-height: 50px;
    justify-content: center; }
  .kechay2 > .row > div:nth-child(2):before, .kechay2 > .row > div:nth-child(4):before {
    position: absolute;
    content: " ";
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px solid #ddd; } }

.custom-top a.effect-v3 {
  margin-bottom: 10px; }

.inforow {
  margin-bottom: 10px; }

@media (min-width: 992px) {
  .list-blog .nlfs:nth-child(4n+1) {
    clear: both; } }

.header-blog .header-blog-body .entry-meta h4, .header-blog .header-blog-body .entry-meta .h4, .header-blog .header-blog-body .entry-meta p {
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box; }

.site-nav__dropdownx {
  display: none;
  position: absolute;
  left: 99%;
  margin: 0;
  z-index: 1000;
  min-width: 200px;
  top: 80px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #ffffff; }
  .site-nav__dropdownx a {
    color: #666;
    display: block;
    text-transform: none;
    font-weight: 400;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-style: none; }
    .site-nav__dropdownx a:hover, .site-nav__dropdownx a:active, .site-nav__dropdownx a:focus {
      color: #ffd740; }

.supports-no-touch .site-nav--has-dropdown .site-nav__dropdown li:hover .site-nav__dropdownx {
  opacity: 1;
  display: block; }

.post-thumbnail.al-1 .video-wrapper iframe {
  height: 100%; }

@media (min-width: 991px) {
  .post-thumbnail.al-1 {
    min-height: auto;
    height: auto;
    overflow: hidden;
    padding: 0; }
  .post-thumbnail.al-1:nth-child(2) {
    padding: 10px 0; }
  .post-thumbnail.al-1 .video-wrapper {
    padding: 26% 0;
    height: 100px;
    height: initial; } }

@media (max-width: 767px) {
  .post-thumbnail.al-1 {
    min-height: 100px;
    height: 100%;
    overflow: hidden;
    padding: 0; }
  .post-thumbnail.al-1:nth-child(2) {
    padding: 10px 0; }
  .post-thumbnail.al-1 .video-wrapper {
    padding: 30.25%;
    height: 100px;
    height: initial; }
  .header-blog-body {
    margin-bottom: 10px; } }

.mobile-nav--expanded + .mobile-nav__sublist.s-law-q {
  margin-left: 15px; }

@media (min-width: 991px) {
  .header-blog2 .video-wrapper {
    padding-bottom: 70%; } }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .header-blog2 .post-thumbnail {
    padding: 10px 0; }
  .header-blog2 .post-thumbnail .video-wrapper {
    padding-bottom: 45% !important; } }

ul#ProductThumbs {
  margin-bottom: 10px;
  list-style: none; }

@media only screen and (max-width: 481px) {
  h3.title, .title.h3, .title.h3 {
    font-size: 20px; }
    h3.title:after, .title.h3:after, h3.title:before, .title.h3:before, .title.h3:after, .title.h3:before {
      top: 6px; }
  /*
	h3.title.title-sm, .title.title-sm.h3{
		font-size: 20px;
		&:after, &:before {
			top: 6px;
		}
	}
	*/ }

ul#ProductThumbs .owl-pagination, .title_top {
  display: none; }

@media (min-width: 768px) {
  .list-blog .grid__item:nth-child(3n+1) {
    clear: both; } }

@media (max-width: 991px) {
  .section-banner-1-col .custom-top .grid, .section-banner-1-col .custom-top .grid--rev, .section-banner-1-col .custom-top .grid--full {
    margin: 0; }
  .section-banner-1-col .custom-top .grid__item {
    padding-left: 0; } }

@media (min-width: 992px) {
  .make_auto_cateloai .wrapper {
    max-width: calc(100% - 70px); }
  section[data-handle="section-commit"] > .wrapper {
    max-width: calc(100% - 70px); }
  section[data-handle="section-commit"] .inner .wrapper {
    max-width: 100%;
    padding: 0; }
  section[data-handle="section-slider-2"] > .wrapper {
    max-width: calc(100% - 70px); }
  section[data-handle="section-slider-2"] .inner .wrapper {
    max-width: 100%;
    padding: 0; }
  section[data-handle="section-tiktok"] > .wrapper {
    max-width: calc(100% - 70px); }
  section[data-handle="section-tiktok"] .inner .wrapper {
    max-width: 100%;
    padding: 0; }
  section[data-handle="section-blog"] > .wrapper {
    max-width: calc(100% - 70px); } }

.product-container .label {
  display: none !important; }

/* Table of Contents Article */
.table-of-contents {
  background: #F3F3F3;
  border: 2px solid rgba(51, 51, 51, 0.95);
  border-radius: 6px;
  display: block;
  padding: 8px 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  position: relative;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 100%;
  display: table; }

.table-of-contents .table-title {
  font-weight: 700;
  font-size: 15px;
  margin: 0;
  padding: 10px 0; }

.table-of-contents .table-title .toc_toggle {
  font-size: 13px;
  color: #bcbdc1;
  display: inline-block;
  vertical-align: 2px;
  margin-left: 8px; }

.table-of-contents .table-title .toc_toggle a {
  color: #333;
  padding: 0 1px; }

.table-of-contents ul {
  font-size: 14px;
  list-style-type: none;
  margin: 0 0 0 16px; }

.table-of-contents ul li {
  list-style-position: outside;
  margin: 8px 0 0; }

.table-of-contents ul li::marker {
  color: #333; }

.table-of-contents ul li a {
  text-decoration: none;
  color: #333333; }

.table-of-contents > ul {
  padding-bottom: 10px; }

.table-of-contents ul li a:hover,
.table-of-contents ul li a:focus {
  color: var(--shop-color-hover); }

.table-content-button {
  width: 35px;
  height: 35px;
  display: block;
  position: fixed;
  left: 10px;
  z-index: 10;
  opacity: 0;
  top: 45%;
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }

.table-content-button .btn-icolist {
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  outline: none;
  float: left;
  background: #fcfcfc;
  border: 1px solid #eeeeee;
  border-radius: 4px; }

.table-content-button .btn-icolist svg {
  width: 20px;
  height: 35px;
  vertical-align: initial; }

.table-content-fixed {
  position: fixed;
  left: 10px;
  right: 0;
  z-index: 999;
  max-width: 250px;
  top: 45%;
  background: #F3F3F3;
  border: 1px solid;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  -webkit-transform-origin: 0 top;
  transform-origin: 0 top;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); }

.table-content-fixed .table-of-header {
  position: relative;
  padding: 10px 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee; }

.table-content-fixed .table-of-header .hTitle {
  max-width: calc(100% - 50px);
  margin-left: 0;
  font-weight: 600;
  font-size: 14px; }

.table-content-fixed .table-of-header .hClose {
  position: absolute;
  right: 5px;
  top: 2px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  text-align: center; }

.table-content-fixed .table-of-header .hClose svg {
  width: 32px;
  height: 32px;
  width: 14px; }

.table-content-fixed .table-of-contents {
  border: 0;
  background: #ffffff;
  margin: 0;
  padding: 5px 12px;
  box-shadow: none;
  display: block;
  overflow: hidden;
  overflow-y: auto;
  max-height: 70vh;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
  overscroll-behavior: none; }

.table-content-fixed .table-of-contents .table-title {
  display: none; }

.table-content-fixed .table-of-contents ul {
  font-size: 13px; }

.table-content-button.active {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1); }

.table-content-fixed.active {
  transform: scale(1) translateY(-45%);
  -webkit-transform: scale(1) translateY(-45%);
  -moz-transform: scale(1) translateY(-45%);
  -ms-transform: scale(1) translateY(-45%);
  -o-transform: scale(1) translateY(-45%); }

.toc-expand-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 15px;
  cursor: pointer;
  background: #e0dede;
  border-radius: 2px;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  color: #666;
  transition: all 0.3s ease; }

.toc-expand-btn:hover {
  background: #ddd;
  color: #333; }

.toc-expand-btn.expanded {
  background: #007cba;
  color: white; }

.expand-icon {
  font-style: normal;
  font-weight: bold; }

/* Ẩn/hiện heading con với animation */
.table-of-contents ul ul {
  transition: all 0.3s ease;
  overflow: hidden; }

.table-of-contents ul ul.toc-hidden {
  max-height: 0;
  opacity: 0; }

.table-of-contents li {
  position: relative;
  margin: 2px 0; }

.table-of-contents ul {
  margin-left: 15px; }

.table-of-contents a {
  display: inline-block;
  margin-left: 3px; }

.table-of-contents ul.toc-level-2 > li > a {
  font-size: 18px;
  font-weight: bold; }

.table-of-contents ul.toc-level-3 > li > a {
  font-weight: bold; }

.table-content-fixed .table-of-contents ul.toc-level-2 > li {
  padding-right: 0; }

.table-content-fixed .table-of-contents ul.toc-level-3 > li {
  padding-right: 30px; }

.table-content-fixed .table-of-contents ul li {
  position: relative; }
  .table-content-fixed .table-of-contents ul li .toc-expand-btn {
    position: absolute;
    right: 0;
    top: 0; }
