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

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

	#Breakpoint and Grid Variables
	#General Variables
	#Sass Mixins
	#Normalize
	#Grid Setup
	#Basic Styles
	#Helper Classes
	#Typography
	#Rich Text Editor
	#Links and Buttons
	#Lists
	#Tables
	#Reponsive Tables
	#OOCSS Media Object
	#Images and Iframes
	#Forms
	#Icons
	#Pagination
	#Option for themes
	#Site Header
	#Site Nav and Dropdowns
	#Mega menu
	#Mobile Nav
	#Drawers
	#Site Footer
	#Search Modal
	#Autocomplete search
	#Pop up
	#Index page
	#Sidebar
	#Product and Collection Grids
	#Collection Filters
	#Collection Filters Style 2
	#Breadcrumbs
	#Product Page
	#Blogs Page
	#Notes and Form Feedback
	#Cart Page
	#Wishlist Page
	#Contact Page
	#Ajax Cart Styles
	#Shipping Page
	#theme style
==============================================================================*/
/*============================================================================
	#Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
	#General Variables
==============================================================================*/
/*================ Typography ================*/
/* Book, Bold, Medium, Light */
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/icons.eot?v=9569621082325021121");
  src: url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/icons.eot?v=9569621082325021121#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/icons.woff?v=6574892100248703103") format("woff"), url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/icons.ttf?v=1793966381440680946") format("truetype"), url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/icons.svg?v=2717533203570903889#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

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

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

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

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

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

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
	PULL
		- Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
	#Basic Styles
==============================================================================*/
html {
  background-color: white; }

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

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

.main-content {
  margin-top: 150px;
  display: block; }
  .template-index .main-content, .template-collection .main-content, .template-product .main-content {
    margin-top: 150; }
  @media screen and (max-width: 1200px) {
    .main-content {
      margin-top: 0; }
      .template-index .main-content, .template-collection .main-content, .template-product .main-content {
        margin-top: 0; } }

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

.is-hidden {
  display: none !important;
  visibility: hidden !important; }

.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,
.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: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase; }

.__drop_animation, .site-header__account ul, .utility-item #currencies, .site-nav__dropdown {
  -webkit-animation: 0.25s ease 0s normal forwards 1 running animationmenus;
  -o-animation: 0.25s ease 0s normal forwards 1 running animationmenus;
  animation: 0.25s 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; }

.__boxshadow, .site-header__account ul, .utility-item #currencies, .site-nav__dropdown, .swatch input:checked + label, .latest-posts-body:hover .entry-content, .slider-carousel .slider-text .slider-button .btn--secondary, .template-404 .group-button a {
  -webkit-box-shadow: 0px 2px 4px 0px rgba(168, 172, 185, 0.62);
  -moz-box-shadow: 0px 2px 4px 0px rgba(168, 172, 185, 0.62);
  box-shadow: 0px 2px 4px 0px rgba(168, 172, 185, 0.62); }

.__button, .popup-newletter .popup-form .input-group .input-group-btn input, .slidein-newletter .popup-form .input-group .input-group-btn input, .quickview-product .btn-addToCart, .single-blog .comment-form .btn, .single-blog .comment-form .btn--secondary, .form-vertical .contact-form input.btn, .form-vertical .contact-form input.btn--secondary, .product-add-to-cart a, .product-add-to-cart input, .wishlist-button a, .wishlist-button input {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  text-transform: capitalize;
  color: #fff;
  transition: all ease 300ms;
  background: black;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  position: relative;
  padding: 0 18px;
  border: none;
  z-index: 3;
  letter-spacing: 0;
  margin: 10px 5px; }
  .__button:hover, .popup-newletter .popup-form .input-group .input-group-btn input:hover, .slidein-newletter .popup-form .input-group .input-group-btn input:hover, .quickview-product .btn-addToCart:hover, .single-blog .comment-form .btn:hover, .single-blog .comment-form .btn--secondary:hover, .form-vertical .contact-form input.btn:hover, .form-vertical .contact-form input.btn--secondary:hover, .product-add-to-cart a:hover, .product-add-to-cart input:hover, .wishlist-button a:hover, .wishlist-button input:hover {
    background: #3b3b3b; }

.no-padding {
  padding: 0 !important; }

.no-margin {
  margin: 0 !important; }

.vertical-middle {
  vertical-align: middle; }

.pad_r {
  padding-right: 15px; }

.pos_relative {
  position: relative; }

.pad_t {
  padding-top: 16px; }

.margin_b {
  margin-bottom: 16px; }

.danger {
  padding-top: 15px;
  color: #ff0000;
  font-size: 1.23077em; }

.divider {
  background: #ebebeb;
  height: 1px; }

.hide {
  display: none; }

.display-block {
  display: block; }

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

h1, .h1, h2, .h2, .tab-products .nav-tabs, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.4; }
  h1 a, .h1 a, h2 a, .h2 a, .tab-products .nav-tabs a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

.text-small {
  font-size: 0.76923em; }

.message {
  padding: 20px 0;
  text-align: center; }

.waitlist-message {
  padding: 20px 0 5px 0;
  text-align: center; }

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

h2, .h2, .tab-products .nav-tabs {
  font-size: 1.30769em; }

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

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

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

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

.heading {
  text-transform: none;
  margin: 16px 0; }
  .heading.small {
    font-size: 1.30769em; }

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 #ebebeb; }
  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 #ebebeb;
  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, .tab-products .nav-tabs, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
.section-header {
  margin-bottom: 10px;
  color: #000000; }

.section-header__title {
  text-align: center;
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.53846em;
  color: #1D1D1B;
  letter-spacing: 0.02923em; }

@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,
  .section-header__right .collection-view {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px; }
    .section-header__right .form-horizontal label,
    .section-header__right .collection-view label {
      display: none; }
  @media screen and (min-width: 481px) {
    .section-header__right label + select {
      margin-left: 0;
      padding-left: 0; } }

.collection-view {
  display: inline-block;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  .collection-view button .icon-fallback-text i {
    font-size: 18px;
    line-height: 20px; }
  .collection-view button:first-child {
    position: relative; }
    .collection-view button:first-child:after {
      content: "";
      width: 1px;
      height: 11px;
      position: absolute;
      right: 0;
      top: 14px;
      background: #e1e1e1; }
  .collection-view button:last-child .icon-fallback-text i {
    font-size: 24px; }
  @media screen and (min-width: 769px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  padding: 10px 15px;
  color: #a2a7b5;
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: black; }

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

/*============================================================================
	#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 .tab-products .nav-tabs, .tab-products .rte .nav-tabs, .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 .tab-products .nav-tabs:first-child, .tab-products .rte .nav-tabs: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 .tab-products .nav-tabs a, .tab-products .rte .nav-tabs 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: #1b232d;
  text-decoration: none;
  background: transparent; }

a:hover,
a:focus {
  color: black;
  outline: none;
  text-decoration: 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;
  text-transform: uppercase;
  width: auto;
  margin: 0;
  line-height: 1.42;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  -o-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  /*================ Set primary button colors - can override later ================*/
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: #3C3C3B;
  color: #FFF; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #1D1D1B;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: black;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: #FFF;
  border: 3px solid #3C3C3B;
  color: #3C3C3B; }
  .btn--secondary:hover, .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:hover,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    color: #3C3C3B;
    background-color: rgba(60, 60, 59, 0.12); }

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

.btn--large {
  text-transform: uppercase;
  font-weight: normal;
  line-height: 54px;
  font-size: 13px;
  display: block;
  height: 54px;
  background: #555;
  padding: 0 30px;
  color: #fff;
  transition: 0.3s ease; }
  .btn--large i {
    margin-right: 10px; }
  .btn--large:hover {
    background: #3b3b3b; }

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

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

.table__section {
  position: relative;
  border: 1px solid #eee;
  border-width: 1px 0; }

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

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

.media-img {
  float: left;
  margin-right: 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%;
    height: 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;
  -o-user-select: text;
  -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 #ebebeb;
  padding: 7.5px; }

legend {
  border: 0;
  padding: 0; }

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

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

textarea {
  min-height: 100px; }

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

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

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

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/ico-select.svg?v=6957045571334776625");
  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; }

/*================ Panel Group ================*/
.panel-group .panel {
  border-radius: none;
  border: none; }
.panel-group .panel-default .panel-heading {
  color: #333;
  background: none;
  border-color: #ddd;
  border: none;
  border-bottom: 1px solid #333; }

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

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

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

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

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

/*============================================================================
	#Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports.fontface .icon-fallback-text .icon, .supports-fontface .icon-fallback-text .icon {
    display: inline-block;
    color: #000; }
  .supports.fontface .icon-fallback-text .icon.icon-search, .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: 24px; }

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

.supports.fontface .icon:before,
.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 {
  -o-user-select: none;
  -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; }

.material-icons {
  font-size: 20px; }

/*============================================================================
	#Accordion -- TODO: make this a class
==============================================================================*/
#accordion .panel-heading {
  padding: 0;
  border-bottom: none; }

#accordion .panel-title > a {
  display: block;
  padding: 0;
  outline: none;
  font-family: 'Montserrat';
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px; }

#accordion .panel-title > a.accordion-toggle::before,
#accordion a[data-toggle="collapse"]::before {
  content: "\e5ce";
  float: right;
  font-family: 'Material Icons';
  font-size: 15px;
  line-height: 15px; }

#accordion .panel-title > a.accordion-toggle.collapsed::before,
#accordion a.collapsed[data-toggle="collapse"]::before {
  content: "\e5cf"; }

#accordion .panel {
  background: none;
  box-shadow: none;
  padding: 0 0 30px 0; }

#accordion .panel + .panel {
  margin-top: 0; }

#accordion.panel-group .panel-heading + .panel-collapse > .list-group,
#accordion.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: none;
  padding: 8px 0 0 0; }

/*============================================================================
	#Pagination
==============================================================================*/
.pagination {
  margin-bottom: 1em;
  display: block;
  border-top: 1px solid #ebebeb;
  padding: 8px 0;
  text-align: center; }
  .pagination > span {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    vertical-align: middle; }
  .pagination i {
    vertical-align: middle; }
  .pagination a {
    display: block; }
  .pagination .prev, .pagination .next {
    font-size: 13px; }
  .pagination .prev a {
    padding-left: 0; }
    .pagination .prev a i {
      margin-left: 0; }
  .pagination a,
  .pagination .page.current {
    padding: 3px 4px; }
  .pagination .page.current {
    color: #fff;
    background: black;
    /*@extend .__boxshadow;*/ }

/*============================================================================
	#Option for themes
==============================================================================*/
.section-banner-custom {
  background-image: url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/bg_custom_banner.png?152870");
  background-repeat: no-repeat;
  background-size: 100% auto; }

.section-product-new {
  background-image: url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/bg_new.png?152870");
  background-repeat: no-repeat;
  background-size: 100% auto; }

.section-testimonial {
  /*background-image: url('//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/bg_tes.png?152870');
  background-repeat: repeat;*/
  background-color: #86bde9; }

/*============================================================================
	#Site Header
==============================================================================*/
.site-header {
  position: fixed;
  z-index: 100;
  background: white;
  width: 100%;
  /*margin-bottom: 30px;*/ }
  @media screen and (max-width: 1200px) {
    .site-header {
      position: relative; }
      .site-header .site-header__logo {
        display: block;
        padding: 18px 0 0 0; } }
  @media screen and (min-width: 481px) and (max-width: 768px) {
    .site-header {
      /*.site-header__logo{display: block; padding: 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 {
  background: #fff;
  padding: 20px 0 17px; }
  @media screen and (max-width: 1200px) {
    .topbar-head {
      display: none; } }

.site-header__topbar {
  position: relative;
  color: black; }
  .site-header__topbar a {
    color: #1D1D1B; }
  .site-header__topbar .search-bar {
    position: relative;
    margin: 10px auto; }
    .site-header__topbar .search-bar label {
      z-index: 4;
      font-size: 20px;
      color: #1D1D1B;
      position: absolute;
      top: 8px;
      left: 15px; }
    .site-header__topbar .search-bar:hover input[type="search"] {
      border: 1px solid #1D1D1B;
      transition: all ease 0.3s; }
    .site-header__topbar .search-bar input[type="search"] {
      border: 1px solid #1D1D1B;
      position: relative;
      width: 240px;
      right: 0;
      z-index: 2;
      transition: all ease 0.3s; }
    .site-header__topbar .search-bar button {
      background: none;
      position: relative;
      z-index: 3; }

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

.site-header__logo {
  text-align: left;
  display: inline-block;
  margin: 10px auto;
  max-width: 450px;
  vertical-align: middle;
  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; }

.menu-top,
.nav-mobile {
  display: none; }
  @media screen and (max-width: 1200px) {
    .menu-top,
    .nav-mobile {
      display: block; } }
  .menu-top .site-header__logo,
  .nav-mobile .site-header__logo {
    margin: 0;
    width: auto; }

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

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

.site-header__search .icon-search {
  font-size: 12px; }
.site-header__search .search-bar {
  position: relative; }
.site-header__search .input-group-field {
  padding-left: 40px;
  border: none; }
.site-header__search .input-group-btn {
  position: static; }
.site-header__search .icon-fallback-text {
  left: 40px;
  position: absolute;
  top: 0; }
  .site-header__search .icon-fallback-text:hover {
    background: inherit;
    color: inherit; }

.search-bar {
  width: 100%; }
  .search-bar button {
    /*background: none;*/
    margin-left: -25px !important; }
  @media screen and (max-width: 768px) {
    .search-bar {
      margin-left: auto;
      margin-right: auto; } }

.site-header__account {
  display: inline-block;
  position: relative; }
  .site-header__account .icon-utility {
    color: #1D1D1B; }
  .site-header__account a {
    position: relative;
    text-transform: capitalize; }
  .site-header__account ul {
    padding: 15px 0 20px 25px;
    list-style: none;
    margin: 0;
    display: none;
    background: white;
    width: 190px;
    position: absolute;
    left: 0;
    z-index: 2000;
    top: 100%; }
    .site-header__account ul li {
      margin: 0;
      font-style: normal; }
      .site-header__account ul li a {
        color: #4c4c4c; }
      .site-header__account ul li i {
        color: #4c4c4c;
        margin-right: 5px; }
      .site-header__account ul li:hover a, .site-header__account ul li:hover i {
        color: black; }
  .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 #ebebeb; }
  .site-header__support strong {
    font-style: normal;
    color: #000;
    font-family: Montserrat, sans-serif;
    margin-left: 10px; }

#currencies {
  zoom: 1;
  cursor: pointer; }
  #currencies span {
    display: inline-block;
    zoom: 1;
    padding: 0px 10px;
    float: left; }
  #currencies .selected {
    font-weight: normal; }

.utility-item {
  display: inline-block;
  position: relative;
  padding: 15px;
    /* pipe
	&:after{
		content: "";
		width: 1px;
		height: 11px;
		position:absolute;
		top: 24px;
		right: 0;
		background:#e1e1e1;
	}*/ }
  @media screen and (min-width: 481px) and (max-width: 768px) {
    .utility-item {
      padding: 10px; } }
  @media screen and (max-width: 480px) {
    .utility-item {
      padding: 0; } }
  .utility-item:first-child {
    padding-left: 0; }
  .utility-item:last-child:after {
    display: none; }
  .utility-item .icon-utility {
    font-size: 16px; }
  .utility-item #currencies {
    display: none;
    transition: all 0.2s ease 0s;
    position: absolute;
    margin: 0;
    padding: 20px;
    background: white;
    z-index: 200;
    top: 100%; }
    .utility-item #currencies li {
      *zoom: 1;
      list-style: none; }
      .utility-item #currencies li:after {
        content: '';
        display: table;
        clear: both; }
      .utility-item #currencies li span {
        color: #4c4c4c; }
        .utility-item #currencies li span:hover {
          color: black; }
    .utility-item #currencies .selected {
      background: transparent;
      color: black; }
  .utility-item:hover {
    cursor: pointer; }
    .utility-item:hover #currencies {
      display: block; }

.site-header__search, .header-cart {
  padding: 0; }

.header-cart {
  position: relative;
  padding: 15px 0;
    /* pipe separator
	&:after{
		content: "";
		width: 1px;
		height: 11px;
		position:absolute;
		top: 18px;
		right: 0;
		background:#e1e1e1;
	} */ }
  .header-cart .my-cart {
    color: black;
    font-family: Montserrat, sans-serif; }
    .header-cart .my-cart .cart-text {
      font-family: Montserrat, sans-serif; }
    .header-cart .my-cart #CartCount {
      display: inline-block; }

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

.search_button {
  color: #000; }
  .search_button i {
    margin-right: 6px;
    color: #818796; }

.text-label::after {
  border-color: black transparent transparent;
  border-style: solid;
  border-width: 3px;
  content: "";
  left: 50%;
  margin-left: -3px;
  position: absolute;
  top: 100%; }

.text-label.text-hot {
  background: #e93434; }

.text-label.text-new {
  background: #04adf0; }

.text-label {
  color: #ffffff;
  display: inline-block;
  font-size: 9px;
  line-height: 15px;
  padding: 0 3px;
  position: absolute;
  left: 50%;
  top: 3px;
  margin-left: -13px; }

.text-label.text-hot::after {
  border-top-color: #e93434; }

.text-label.text-new::after {
  border-top-color: #04adf0; }

/*============================================================================
	#Site Nav and Dropdowns
==============================================================================*/
.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-mobile .site-nav__link:hover:after {
  display: none; }

.site-nav, .site-nav--mobile {
  font-size: 1.07692em;
  cursor: default;
  margin: 0 0 0 -7.5px;
  display: inline-block;
  text-align: left; }
  .site-nav li, .site-nav--mobile li {
    margin: 0 0 -10px 0;
    display: block;
    line-height: 50px; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block;
    padding: 0;
    float: left; }
    .site-nav > li a, .site-nav--mobile > li a {
      padding: 0 0 0 8px; }

/*================ Home to hamburger and cart that toggle drawers ================*/
.nav-mobile .utility-item .icon-utility {
  font-size: 18px;
  line-height: 50px;
  padding: 0 10px; }
  .nav-mobile .utility-item .icon-utility i {
    font-size: 24px;
    color: #000; }
.nav-mobile .utility-item ul li {
  text-align: left; }

.site-nav--mobile {
  line-height: 50px;
  padding-top: 8px; }
  .text-right .site-nav--mobile {
    margin: 0 -7.5px 0 0; }
  .site-nav--mobile .icon-hamburger {
    font-size: 25px; }

.site-nav > li:hover > .site-nav__link, .site-nav--mobile > li:hover > .site-nav__link, .site-nav > li:active > .site-nav__link, .site-nav--mobile > li:active > .site-nav__link, .site-nav > li:focus > .site-nav__link, .site-nav--mobile > li:focus > .site-nav__link {
  color: #1D1D1B; }
  .site-nav > li:hover > .site-nav__link:after, .site-nav--mobile > li:hover > .site-nav__link:after, .site-nav > li:active > .site-nav__link:after, .site-nav--mobile > li:active > .site-nav__link:after, .site-nav > li:focus > .site-nav__link:after, .site-nav--mobile > li:focus > .site-nav__link:after {
    width: 41px;
    opacity: 1; }

.site-nav__link {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  color: #1D1D1B;
  text-transform: none;
  position: relative;
  font-weight: normal;
  font-size: 0.92308em;
  font-weight: bold;
  font-family: Montserrat; }
  .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: #555555;
    color: #000; }
    .site-nav--active > .site-nav__link:after {
      width: 41px;
      opacity: 1; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }
  .site-nav__link .material-icons {
    margin-left: -5px; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 1000;
  min-width: 200px;
  top: 100%;
  padding: 5px 0 20px 0;
  background-color: white; }
  .supports.no-touchevents .site-nav--has-dropdown:hover .site-nav__dropdown, .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 > li > a {
    color: #4c4c4c;
    display: block;
    text-transform: none;
    font-weight: normal;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    line-height: 22px;
    padding: 5px 30px 5px 25px; }
    .site-nav__dropdown > li > a:hover, .site-nav__dropdown > li > a:active, .site-nav__dropdown > li > a:focus {
      color: black; }

.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; }
    .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: 40px 30px 60px;
        font-family: Montserrat, 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 {
          color: #000000;
          font-size: 13px;
          font-weight: bold;
          line-height: 30px;
          text-transform: uppercase; }
        .main-menu .site-nav > .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul.super, .main-menu .site-nav--mobile > .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul.super {
          margin: 0; }
          .main-menu .site-nav > .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul.super > li a, .main-menu .site-nav--mobile > .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul.super > li a {
            display: inline-block;
            padding: 4px 0;
            width: 100%;
            color: #4c4c4c; }
            .main-menu .site-nav > .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul.super > li a:hover, .main-menu .site-nav--mobile > .megamenu-dropdown .site-nav__dropdown .awemenu-megamenu-item ul.super > li a:hover {
              color: black; }

/*============================================================================
	#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__search {
  padding: 7.5px; }
  .mobile-nav__search .search-bar {
    margin-bottom: 0; }
    .mobile-nav__search .search-bar .input-group-field {
      background-color: #f2f2f2; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: white; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 7.5px;
    right: 7.5px; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }
  .mobile-nav__item .btn, .mobile-nav__item .btn--secondary {
    height: 37px;
    background-color: #f2f2f2;
    border: 1px solid #ebebeb;
    color: #aaa;
    border-left: none; }
    .mobile-nav__item .btn:hover, .mobile-nav__item .btn--secondary:hover {
      background-color: #f2f2f2; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #333333;
  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: #f2f2f2; }

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

.mobile-nav__link {
  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;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    height: auto;
    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: 15px;
    font-weight: normal; }
  .mobile-nav__sublist .awemenu-megamenu-item {
    margin-left: 15px; }
    .mobile-nav__sublist .awemenu-megamenu-item h3, .mobile-nav__sublist .awemenu-megamenu-item .h3 {
      font-size: 14px;
      font-weight: normal; }
    .mobile-nav__sublist .awemenu-megamenu-item .super li {
      list-style: none; }

/*============================================================================
	#Nav
==============================================================================*/
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  *zoom: 1; }
  .nav:after {
    content: '';
    display: table;
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 20px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border: none;
  margin: 0; }
  .nav-tabs > li {
    display: inline-block;
    margin: 0;
    border: none; }
    .nav-tabs > li > a {
      text-transform: uppercase;
      color: #818796;
      font-size: 13px;
      line-height: 20px;
      font-family: Montserrat, sans-serif;
      font-weight: normal;
      margin: 0;
      padding: 10px 4px;
      border: none; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      cursor: default;
      border: none;
      font-weight: bold;
      color: #000;
      background: transparent; }

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  border: none; }

.nav-tabs > li > a:hover {
  background: transparent; }

/*============================================================================
	#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: 30px 30px 0;
  max-width: 95%;
  z-index: 10;
  color: #333333;
  background-color: white;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .drawer a {
    color: #333333; }
    .drawer a:hover, .drawer a:focus {
      opacity: 0.7; }
  .drawer input,
  .drawer textarea {
    border-color: #f2f2f2; }

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

.drawer--right {
  width: 300px;
  right: -300px;
  border-left: 1px solid #f2f2f2; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -o-transform: translate3d(-300px, 0, 0);
    -moz-transform: translate3d(-300px, 0, 0);
    -ms-transform: translate3d(-300px, 0, 0);
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0); }
    .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 {
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -o-transform: translate3d(300px, 0, 0);
    -moz-transform: translate3d(300px, 0, 0);
    -ms-transform: translate3d(300px, 0, 0);
    -webkit-transform: translate3d(300px, 0, 0);
    transform: translate3d(300px, 0, 0); }
  .js-drawer-open-right .is-moved-by-drawer {
    -o-transform: translate3d(-300px, 0, 0);
    -moz-transform: translate3d(-300px, 0, 0);
    -ms-transform: translate3d(-300px, 0, 0);
    -webkit-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0); }

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

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

.drawer__title {
  width: 100%; }

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

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

/*============================================================================
	#Site Footer
==============================================================================*/
.footer-pitch {
  background: #eee;
  padding: 50px 0; }
  .footer-pitch h1, .footer-pitch .h1 {
    font-weight: 300;
    text-transform: none;
    color: #777;
    font-size: 40px;
    font-family: 'Times New Roman', serif;
    margin-bottom: 15px; }
  .footer-pitch p {
    padding: 0 40px; }

.site-footer {
  display: block;
  background-color: white;
  /*margin-top: 30px;*/
  color: #4c4c4c;
  position: relative;
  line-height: 24px;
  padding: 48px 0 48px;
  /*&:after{
  	content: "";
  	width: 90%;
  	height: 1px;
  	background: $colorBorder;*/
  /*rgba(0, 0, 0, 0) url("before_bg_footer.png") no-repeat scroll center center / 100% 4px;*/
  	/*position:absolute;
  	top: 0;
  	margin-left: 5%;
  }*/ }
  .site-footer a {
    color: #4c4c4c; }
  .site-footer h4, .site-footer .h4 {
    color: #000;
    font-size: 13px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 8px; }
  .site-footer .site-footer__top {
    padding: 20px 0; }
    .site-footer .site-footer__top > div {
      margin-top: 30px; }
  .site-footer .site-footer__main > div > div:nth-of-type(odd) {
    padding: 0 0 0 8px; }
  .site-footer .site-footer__main > div > div:nth-of-type(even) {
    padding: 0 0 0 12px; }
  .site-footer .site-footer__main > div {
    padding-bottom: 10px;
    padding-top: 20px; }
    @media screen and (max-width: 480px) {
      .site-footer .site-footer__main > div {
        padding-top: 15px;
        padding-bottom: 10px; } }
    .site-footer .site-footer__main > div:first-child {
      border-left: none; }
  .site-footer .site-footer__main ul li {
    margin: 0; }
    .site-footer .site-footer__main ul li a {
      display: block;
      font-size: 12px;
      line-height: 24px;
      position: relative;
      transition: all 0.3s ease 0s; }
      .site-footer .site-footer__main ul li a:hover {
        color: black; }
  .site-footer ul {
    list-style: none;
    margin: 0; }
  .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__logo-link {
  display: block;
  line-height: 70px; }

@media screen and (max-width: 480px) {
  .template-index .site-footer {
    display: block; } }

.site-footer2 {
  background: white;
  display: block;
  position: relative;
  line-height: 24px;
  padding: 48px 0 48px; }
  .site-footer2 .site-footer__newsletter {
    float: right; }
    @media screen and (max-width: 480px) {
      .site-footer2 .site-footer__newsletter {
        float: none;
        margin-bottom: 40px; } }
    .site-footer2 .site-footer__newsletter .newsletter-form {
      position: relative; }
      .site-footer2 .site-footer__newsletter .newsletter-form input {
        border: none;
        width: 100%;
        height: 40px; }
        .site-footer2 .site-footer__newsletter .newsletter-form input:first-child {
          /*width: 70%;*/
          border: 1px solid #000; }
      .site-footer2 .site-footer__newsletter .newsletter-form label {
        font-size: 12px;
        text-transform: uppercase;
        margin: 6px 0px 6px 10px;
        line-height: 30px;
        padding-right: 10px;
        font-family: Montserrat, sans-serif;
        color: #000; }
    .site-footer2 .site-footer__newsletter #subscribe {
      position: absolute;
      right: 0;
      top: 0;
      width: 90px;
      text-transform: uppercase;
      background: black;
      z-index: 1;
      transition: 0.3s ease;
      /*@extend .__boxshadow;*/ }
      .site-footer2 .site-footer__newsletter #subscribe:hover {
        background: #3b3b3b; }

@media screen and (min-width: 769px) {
  .payment {
    text-align: right; } }

.copyright_text {
  color: #767676;
  display: inline-block;
  font-size: 11px;
  line-height: 24px;
  text-align: center;
  margin-top: 42px; }

.menu_footer {
  display: inline-block; }
  .menu_footer ul {
    *zoom: 1;
    margin: 0; }
    .menu_footer ul:after {
      content: '';
      display: table;
      clear: both; }
    .menu_footer ul li {
      display: inline-block;
      position: relative;
      float: left;
      padding: 0 15px;
      margin: 0;
      line-height: 24px; }
      .menu_footer ul li a {
        color: #4c4c4c; }
      .menu_footer ul li:after {
        content: "";
        width: 1px;
        height: 11px;
        background: #000;
        position: absolute;
        left: 0;
        top: 7px; }
      .menu_footer ul li:first-child {
        padding-left: 0; }
        .menu_footer ul li:first-child:after {
          display: none; }

.footer_contact {
  line-height: 24px;
  font-size: 12px; }
  .footer_contact b {
    color: #000; }

@media screen and (max-width: 480px) {
  .footer-menu h4, .footer-menu .h4 {
    cursor: pointer; } }

/*============================================================================
	#Search Modal
==============================================================================*/
.modal-dialog .search-bar button {
  background: #000; }
.modal-dialog .modal-body {
  padding: 30px; }
.modal-dialog .input-group .input-group-field {
  height: 40px; }
.modal-dialog .input-group-btn .icon-fallback-text {
  width: 40px;
  height: 40px; }
  .modal-dialog .input-group-btn .icon-fallback-text span {
    font-size: 16px; }

/*============================================================================
	#Autocomplete Search
==============================================================================*/
.search-results {
  position: absolute;
  left: 0px;
  top: 35.4px;
  display: none;
  z-index: 8889;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden; }

.search-results li {
  display: block;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d4d4d4;
  line-height: 44px;
  overflow: hidden; }

.search-results li:first-child {
  border-top: none; }

.search-results .title {
  float: left;
  width: calc(100% - 50px);
  padding-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  /* The text-overflow property is supported in all major browsers. */
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-align: left; }

.search-results .thumbnail {
  float: left;
  display: block;
  width: 39px;
  height: 39px;
  margin: 3px 0 3px 3px;
  padding: 0;
  text-align: center;
  overflow: hidden; }

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

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

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

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

.popup-info {
  margin: 0 auto;
  width: 85%; }

.popup-newletter {
  text-align: center; }
  @media screen and (min-width: 769px) {
    .popup-newletter {
      width: 800px; } }
  .popup-newletter .subtitle {
    font-size: 10px;
    letter-spacing: -1px;
    line-height: 24px;
    margin-top: 92px;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: normal; }
  .popup-newletter .title {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0 16px;
    text-transform: capitalize;
    font-family: Montserrat, sans-serif; }
  .popup-newletter .pnewle-message {
    font-size: 15px;
    letter-spacing: -1px;
    margin-top: 6px;
    text-transform: none;
    font-family: Montserrat, sans-serif;
    font-weight: normal;
    line-height: 22px; }
  .popup-newletter .popup-form {
    margin-bottom: 130px;
    margin-top: 41px; }
    .popup-newletter .popup-form .input-group {
      width: 95%; }
      .popup-newletter .popup-form .input-group .input-group-btn {
        width: auto; }
        .popup-newletter .popup-form .input-group .input-group-btn input {
          margin-top: 10px; }
    .popup-newletter .popup-form .input-group-field {
      color: #999999;
      background: transparent;
      border: none;
      border-bottom: 1px solid #000; }
      @media screen and (min-width: 769px) {
        .popup-newletter .popup-form .input-group-field {
          max-width: 230px; } }

/*============================================================================
	#Menu Bottom
==============================================================================*/
.mobile-menu-slidein-nav {
  z-index: 98;
  background: #eee;
  width: 180px;
  margin: 0;
  padding: 0;
  position: fixed;
  bottom: 60px;
  left: 0;
  transition: all ease-in-out 0.6s;
  -o-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }
  .mobile-menu-slidein-nav.slidein {
    -o-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .mobile-menu-slidein-nav ul {
    list-style: none;
    margin: 0; }
    .mobile-menu-slidein-nav ul li {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      color: #000; }

.menu-bottom {
  z-index: 98;
  background: #eee;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  position: fixed;
  bottom: 0;
  left: 0; }
  .menu-bottom ul.nav-bottom-mobile {
    list-style: none;
    margin: 0; }
    .menu-bottom ul.nav-bottom-mobile li {
      float: left;
      width: 20%;
      height: 100%;
      padding: 8px 4px;
      text-align: center;
      color: #000; }
      .menu-bottom ul.nav-bottom-mobile li a {
        display: block;
        width: 100%;
        height: 100%; }
        .menu-bottom ul.nav-bottom-mobile li a div.icon-wrapper {
          font-size: 16px;
          padding: 0;
          margin: 0; }
        .menu-bottom ul.nav-bottom-mobile li a div.icon-label {
          margin: 0;
          padding: 0;
          line-height: 10px;
          font-size: 10px; }

/*============================================================================
	#SlideIn Upsell
==============================================================================*/
.slidein-upsell {
  background-position: 50% 50%;
  background-image: url(//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/pattern_bg.png?152870);
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: fixed;
  transition: all ease-in-out 0.6s;
  -o-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 100%; }
  @media screen and (max-width: 480px) {
    .slidein-upsell {
      right: 0;
      left: 0;
      margin: 0 auto; } }

.slidein-upsell.slidein {
  -o-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

#PromotionalUpsell {
  padding-top: 15px;
  padding-bottom: -0px; }
  #PromotionalUpsell .subtitle {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 30px;
    margin-top: 10px;
    text-transform: none;
    font-family: Montserrat, sans-serif;
    text-align: center; }

#PromotionalUpsellText {
  position: relative;
  top: 50%;
  transform: translateY(-30%);
  display: inline-block;
  padding-top: 5px;
  padding-left: 10px;
  padding-bottom: 0px;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  color: #777; }

#PromotionalUpsellOptionsContainer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: inline-block; }

.row {
  width: 100%;
  margin: 0 auto; }

.block {
  width: 120px;
  display: inline-block; }

#PromotionalUpsellThumb {
  display: block;
  margin-left: auto;
  margin-right: auto; }

#PromotionalUpsellName {
  padding-top: 0px;
  padding-bottom: 20px; }

#upsell-buttons-container {
  width: 100%;
  text-align: center; }

.upsell-button {
  display: inline-block;
  color: ffffff; }

/*============================================================================
	#SlideIn Upsell Free Gift Options
==============================================================================*/
#PromotionalUpsellOptionsText {
  position: relative;
  top: 50%;
  transform: translateY(-30%);
  display: inline-block;
  padding-top: 5px;
  padding-left: 10px;
  padding-bottom: 0px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif; }

#PromotionalUpsellChoiceText {
  position: relative;
  top: 50%;
  transform: translateY(-30%);
  display: inline-block;
  padding-top: 5px;
  padding-left: 10px;
  padding-bottom: 0px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif; }

.PromotionalUpsellThumb {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.PromotionalUpsellName {
  padding-top: 0px;
  padding-bottom: 20px; }

/*============================================================================
	#SlideIn Newsletter
==============================================================================*/
.slidein-newletter {
  background-size: cover;
  background-position: 50% 50%;
  background-image: url(//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/slidein_newsletter_image.jpg?v=6881692297926903836);
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: fixed;
  transition: all ease-in-out 0.6s;
  -o-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  	/*
    @include at-query($min, $large){
        width: 320px;
    }*/
  /* duplicate of fancybox close found in popup-newsletter
   * should look into creating a mixin
   * - Dusk
   */ }
  @media screen and (max-width: 480px) {
    .slidein-newletter {
      right: 0;
      left: 0;
      margin: 0 auto; } }
  .slidein-newletter .fancybox-close {
    background: black;
    border-radius: 0;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 30px;
    line-height: 30px;
    margin: 0;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 10px;
    width: 30px;
    z-index: 1; }
  .slidein-newletter .fancybox-close::before {
    color: #fff;
    content: "\e014";
    font: 14px/30px Glyphicons Halflings; }
  .slidein-newletter .fancybox-close:hover {
    background: #000 none repeat scroll 0 0; }
  .slidein-newletter .fancybox-close:hover::before {
    color: #fff; }
  .slidein-newletter .subtitle {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 36px;
    margin-top: 10px;
    text-transform: none;
    font-family: Montserrat, sans-serif;
    text-align: center;
    color: #777; }
  .slidein-newletter .title {
    font-size: 48px;
    font-weight: bold;
    margin: 32px 0 8px;
    text-transform: capitalize;
    font-family: Montserrat, sans-serif;
    text-align: center; }
  .slidein-newletter .slnewle-message {
    font-size: 19px;
    letter-spacing: -1px;
    margin-top: 20px;
    text-transform: none;
    font-weight: normal;
    line-height: 22px;
    font-family: Montserrat, sans-serif;
    text-align: center;
    color: #333; }
  .slidein-newletter .popup-info {
    background: rgba(255, 255, 255, 0.9);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding-bottom: 1px; }
  .slidein-newletter .popup-form {
    margin-bottom: 20px;
    margin-top: 5px; }
    .slidein-newletter .popup-form .input-group {
      margin: 0 auto; }
      .slidein-newletter .popup-form .input-group .input-group-btn {
        width: auto; }
        .slidein-newletter .popup-form .input-group .input-group-btn input {
          margin-top: 10px; }
    .slidein-newletter .popup-form .input-group-field {
      color: #777;
      background: transparent;
      height: 40px;
      font-size: 14px;
      margin: 10px auto;
      width: 400px;
      border: 1px solid #000; }
      @media screen and (max-width: 480px) {
        .slidein-newletter .popup-form .input-group-field {
          width: 100%; } }
  .slidein-newletter .disclaimer {
    font-size: 10px;
    color: #333;
    text-align: center;
    padding-bottom: 10px; }
  .slidein-newletter .alert {
    background: none; }

.slidein-newletter.slidein {
  -o-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/*============================================================================
	#Free Gift Selections
==============================================================================*/
.pick6-selector-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  border-style: solid;
  border-width: 1px;
  border-color: #e9e9e9; }
  .pick6-selector-container #pick6-options {
    padding: 16px 0 16px 0;
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: inline-block; }
  .pick6-selector-container .row {
    width: 100%;
    margin: 0 auto; }
  .pick6-selector-container .block {
    vertical-align: top;
    width: 200px;
    display: inline-block; }
  .pick6-selector-container #pick6-selector-header {
    width: 100%;
    padding-top: 19px;
    padding-bottom: 19px;
    background-color: #f5f5f5; }
  .pick6-selector-container #pick6-header-left {
    margin-left: 16px; }
  .pick6-selector-container #pick6-header-right {
    margin-right: 16px; }
  .pick6-selector-container .alignright {
    text-align: right;
    float: right; }
  .pick6-selector-container .check + label .pick6-img-overlay {
    background-size: cover;
    background-position: 50% 50%;
    background-image: url("//cdn.shopify.com/s/files/1/0600/2197/t/480/assets/checkmark-512.png?v=8906035822400784467");
    background-color: rgba(255, 255, 255, 0.6); }

/*============================================================================
	#Index page
==============================================================================*/
h2.title, .title.h2, .tab-products .nav-tabs {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 45px;
  position: relative;
  text-transform: none;
  z-index: 1;
  text-align: center;
  font-family: Montserrat, sans-serif;
    /*
	&:after{
		content: "";
		width: 92px;
		height: 4px;
		background:url('symbol.jpg');
		position:absolute;
		bottom:-22px;
		left:50%;
		transform: translateX(-50%);
	}*/ }
  h2.title.widget__title, .title.widget__title.h2, .tab-products .widget__title.nav-tabs {
    text-align: left; }
  h2.title:before, .title.h2:before, .tab-products .nav-tabs:before {
    content: "";
    border-top: 1px solid #ddd;
    width: 100%;
    position: absolute;
    height: 1px;
    top: 17px;
    left: 0%;
    z-index: -1; }
  h2.title.small, .title.small.h2, .tab-products .small.nav-tabs {
    font-size: 12px;
    margin-bottom: 15px; }
    h2.title.small span, .title.small.h2 span, .tab-products .small.nav-tabs span {
      background: #f6f6f6;
      /* background of cart drawer TODO: put in variable */ }
    h2.title.small:before, .title.small.h2:before, .tab-products .small.nav-tabs:before {
      top: 8px;
      border-color: black; }
  h2.title span, .title.h2 span, .tab-products .nav-tabs span {
    background: #fff;
    padding: 0 10px; }
  @media screen and (max-width: 480px) {
    h2.title, .title.h2, .tab-products .nav-tabs {
      font-size: 14px;
      margin-bottom: 15px; }
      h2.title:before, .title.h2:before, .tab-products .nav-tabs:before {
        top: 9px;
        border-color: #ddd; } }

.slider-carousel {
  overflow: hidden; }
  .slider-carousel.owl-theme .owl-controls {
    margin: 0; }
  .slider-carousel.owl-theme .owl-controls .owl-buttons div.owl-prev {
    display: none;
    left: -50px;
    border-right: none; }
    .slider-carousel.owl-theme .owl-controls .owl-buttons div.owl-prev:before {
      background: rgba(0, 0, 0, 0) url("arrow-left.png") no-repeat;
      content: "";
      display: block;
      height: 60px;
      position: absolute;
      right: 0;
      text-align: center;
      top: 0;
      transition: all 0.35s ease 0s;
      width: 48px;
      z-index: 12; }
  .slider-carousel.owl-theme .owl-controls .owl-page span {
    background: #eee; }
  .slider-carousel.owl-theme .owl-controls .owl-buttons div.owl-next {
    display: none;
    right: 0;
    margin-right: -52px; }
    .slider-carousel.owl-theme .owl-controls .owl-buttons div.owl-next:before {
      background: rgba(0, 0, 0, 0) url("arrow-right.png") no-repeat;
      content: "";
      display: block;
      height: 60px;
      position: absolute;
      right: 0;
      text-align: center;
      top: 0;
      transition: all 0.35s ease 0s;
      width: 48px;
      z-index: 12; }
  .slider-carousel.owl-theme .owl-controls .owl-buttons div {
    background: transparent;
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: -30px;
    visibility: hidden;
    transition: all 300ms ease; }
    .slider-carousel.owl-theme .owl-controls .owl-buttons div:before {
      line-height: 50px; }
  .slider-carousel .text {
    position: absolute;
    text-align: left;
    top: 52%;
    width: 300px;
    font-size: 16px;
    left: 20%;
    color: #000; }
    .slider-carousel .text .btn, .slider-carousel .text .btn--secondary {
      background: transparent;
      margin-top: 20px; }
  .slider-carousel:hover .owl-controls .owl-buttons div {
    visibility: visible; }
  .slider-carousel:hover .owl-controls .owl-buttons div.owl-prev {
    left: 20px; }
  .slider-carousel:hover .owl-controls .owl-buttons div.owl-next {
    right: 70px;
    margin-right: -52px; }

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

.section-seasonal {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 28px; }
  .section-seasonal .grid__item::nth-of-type(odd),
  .section-seasonal .grid__item::nth-of-type(even) {
    padding: 0; }
  @media screen and (min-width: 769px) {
    .section-seasonal .grid__item::nth-of-type(odd) {
      padding: 0 6px 0 0; }
    .section-seasonal .grid__item::nth-of-type(even) {
      padding: 0 0 0 6px; } }
  .section-seasonal img {
    margin: 0 auto;
    display: block;
    width: 100%; }
  .section-seasonal .featured-text {
    margin-top: 30px; }
    .section-seasonal .featured-text .heading {
      font-size: 1.84615em; }
    .section-seasonal .featured-text .text {
      font-family: 'Montserrat', sans-serif;
      margin: 8px auto;
      max-width: 300px; }
    .section-seasonal .featured-text .btn, .section-seasonal .featured-text .btn--secondary {
      margin-top: 22px;
      margin-bottom: 28px; }
  @media only screen and (max-width: 768px) {
    .section-seasonal {
      margin-top: 6px;
      margin-bottom: 22px; }
      .section-seasonal img {
        margin-bottom: 6px; } }

.section-featured .featured-text {
  margin-top: 22px;
  margin-bottom: 28px;
  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%; }

.section-press {
  padding-top: 30px; }
  .section-press .press-logo {
    height: 30px;
    margin: 5px 15px; }

/*============================================================================
	#Sidebar
==============================================================================*/
.sidebar {
  font-family: Montserrat, sans-serif; }
  .sidebar .widget__title {
    border-bottom: 1px solid #ebebeb;
    font-size: 13px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 18px;
    padding-bottom: 14px; }
  .sidebar .widget {
    margin-bottom: 45px; }
  .sidebar ul {
    list-style: none;
    margin: 0; }
  .sidebar ul.menu li {
    margin: 0; }
    .sidebar ul.menu li a {
      display: block;
      line-height: 24px;
      color: #464646; }
      .sidebar ul.menu li a span {
        color: black;
        float: right; }
  .sidebar .widget-blog-recent .article {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 18px;
    padding-bottom: 20px; }
    .sidebar .widget-blog-recent .article:last-child {
      border-bottom: none; }
    .sidebar .widget-blog-recent .article .post-thumbnail {
      width: 70px;
      float: left;
      margin-right: 15px; }
    .sidebar .widget-blog-recent .article .entry-meta {
      width: calc(100% - 85px);
      float: left; }
      .sidebar .widget-blog-recent .article .entry-meta a {
        color: #000000;
        display: block;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: -0.5px;
        line-height: 20px;
        margin-bottom: 5px; }
  .sidebar .widget-category h4.widget__title, .sidebar .widget-category .widget__title.h4 {
    margin-bottom: 10px; }
  .sidebar .widget-blog-tags ul.menu li {
    display: inline-block; }
    .sidebar .widget-blog-tags ul.menu li a {
      background: #f7f7f7;
      border-radius: 20px;
      color: #000;
      display: block;
      line-height: 24px;
      margin-bottom: 5px;
      padding: 4px 15px;
      transition: 0.3s ease; }
      .sidebar .widget-blog-tags ul.menu li a:hover {
        background: #818796;
        color: #fff; }

.widget-product .widget__content .item {
  overflow: hidden;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb; }
  .widget-product .widget__content .item:first-child {
    margin-top: 15px; }
.widget-product .product-image {
  width: 60px;
  float: left;
  margin-right: 25px; }
.widget-product .product-name {
  margin-bottom: 5px;
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  color: #1b232d; }
  .widget-product .product-name:hover {
    color: black; }
.widget-product .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 {
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  margin-bottom: 35px;
  transition: 0.3s ease; }
  .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: 15px; }
  .product-container .product-image {
    position: relative;
    text-align: center; }
  .product-container .product-thumbnail {
    position: relative; }
  .product-container .product-actions {
    text-align: center;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    padding: 0;
    margin-top: 10px; }
    .product-container .product-actions .product-action form {
      display: inline-block;
      width: 100%;
      text-align: center; }
    .product-container .product-actions .product-action .add_to_cart {
      width: 100%; }
  .product-container .back-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #fff;
    border-left: none;
    transition: all ease 300ms; }
  .product-container form.add-to-cart .btn, .product-container form.add-to-cart .btn--secondary {
    border-left: 0; }
  .product-container .product-meta {
    padding: 12px 0 20px 0;
    width: 100%;
    display: inline-block;
    transition: all ease 300ms;
    position: relative; }
    .product-container .product-meta .product-name {
      font-family: 'Montserrat';
      letter-spacing: -0.08px;
      font-size: 13px;
      color: #1D1D1B;
      line-height: 36px;
      text-transform: none;
      font-weight: normal;
      margin-bottom: 4px;
      height: 36px; }
      .product-container .product-meta .product-name span {
        display: inline-block;
        vertical-align: middle;
        line-height: normal; }
    .product-container .product-meta .trademark-label {
      font-family: Montserrat, sans-serif;
      font-size: 11px;
      line-height: 13px;
      color: #999;
      text-transform: capitalize;
      font-weight: normal;
      margin-bottom: 0; }
  .product-container:hover {
    /*@extend .__boxshadow;*/
    z-index: 1; }
    .product-container:hover .back-img {
      visibility: visible;
      opacity: 1;
      transition: all ease 300ms;
      -o-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden; }
    .product-container:hover .product-actions {
      /*opacity: 1;
      visibility: visible;
      bottom: -10px;
      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 {
      visibility: visible;
      opacity: 1;
      transition: all ease 300ms; }
  .product-container .product-vendor {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
    font-weight: bold; }
  .product-container .sale-price {
    color: #a2a7b5;
    font-weight: normal; }
  .product-container .group_label {
    width: 100%;
    position: absolute;
    bottom: 0;
    line-height: 1;
    text-align: center;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; }
  .product-container .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    border-radius: 0;
    display: block;
    min-height: auto;
    z-index: 100;
    padding: 6px;
    line-height: 16px;
    color: #E3679C;
    background: #F5D8DF;
    overflow: hidden;
    white-space: normal; }
  .product-container .add-to-cart {
    visibility: visible;
    opacity: 1; }

.thumbnail-img-wrapper {
  list-style: none;
  padding: 0;
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 2;
  width: 50px;
  height: 50px;
  opacity: 1;
  visibility: visible;
  transition: all ease 300ms; }

.product-price {
  font-weight: 400;
  letter-spacing: -0.08px;
  color: #1D1D1B;
  font-size: 13px;
  line-height: 18px;
  font-family: 'Montserrat', sans-serif;
  margin-top: 4px;
  margin-bottom: 6px; }
  .product-price .amount .old-price {
    color: #999;
    font-family: 'Montserrat', sans-serif; }
  .product-price .amount .discounted-price {
    color: #E3679C;
    font-family: 'Montserrat', sans-serif; }

.product-new {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #E3679C; }

/* override stamped reviews */
.hide-text .stamped-badge .stamped-badge-caption[data-reviews="0"]:after {
  content: '(0)' !important; }

.hide-text .stamped-badge .stamped-badge-caption[data-reviews="0"]:before {
  content: '' !important; }

.stamped-badge[data-rating="0.0"], .stamped-badge[data-rating="0"] {
  display: block; }

.swatch {
  display: inline-block;
  float: left;
  font-size: 1.4rem;
  margin: 5px 0;
  text-transform: uppercase;
  width: 50%; }
  .swatch:last-child {
    float: none; }
  .swatch .crossed-out {
    display: none; }

.swatch .header {
  color: #000000;
  font-size: 16px;
  line-height: 25px;
  margin: 0 0 5px;
  min-width: 65px;
  text-transform: none; }

.swatch input {
  display: none !important; }

.swatch label {
  font-size: 13px;
  font-weight: normal;
  cursor: pointer;
  float: left;
  min-width: 34px !important;
  height: 34px !important;
  margin: 0;
  background-color: #f3f4f4;
  text-align: center;
  line-height: 34px;
  white-space: nowrap;
  text-transform: uppercase; }

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

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

.swatch input:checked + label {
  background: #86bde9;
  color: #FFF; }

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

.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: #333333 !important;
  padding: 1em;
  border-radius: 5px; }

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

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

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

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

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

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

.quickview-product .compare-price span {
  color: #464646; }
.quickview-product .product-actions .product-quantity {
  display: inline-block;
  margin-top: 15px;
  width: 100%; }
.quickview-product .btn-addToCart {
  margin-left: 0; }
.quickview-product .more-views {
  margin-left: -5px;
  margin-right: -5px; }
  .quickview-product .more-views .owl-carousel .item {
    padding: 0 5px; }

.tshopify-popup {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  height: 0;
  width: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }
  .tshopify-popup.wishlist-popup .btn-cart {
    display: none; }
  .tshopify-popup.loading {
    z-index: 999; }
  .tshopify-popup .overlay {
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0; }
  .tshopify-popup .content {
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    background: #fff;
    min-width: 490px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  @media (max-width: 1500px) {
    .tshopify-popup .content {
      max-width: 700px; } }
  @media (max-width: 1300px) {
    .tshopify-popup .content {
      max-width: 650px; } }
  .tshopify-popup.active {
    visibility: visible;
    opacity: 1;
    top: 0;
    height: auto;
    width: auto; }
    .tshopify-popup.active .content {
      max-height: 100%; }
    .tshopify-popup.active .overlay {
      width: 100%;
      height: 100%; }
  .tshopify-popup .close-window {
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: bold;
    color: #fff;
    width: 24px;
    height: 24px;
    text-align: center;
    transition: 0.3s ease;
    background: black; }
    .tshopify-popup .close-window:hover {
      color: #000; }
    .tshopify-popup .close-window i {
      line-height: 24px; }
  .tshopify-popup .success-message:hover:before {
    background: #ffb533;
    color: #fff; }
  .tshopify-popup .success-message:before {
    font-family: Glyphicons Halfings;
    content: "\e013";
    display: inline-block;
    margin-right: 10px;
    font-size: 12px; }
  .tshopify-popup.loading .loader {
    left: 50%;
    position: fixed;
    top: 50%;
    -o-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0); }
  .tshopify-popup .product-name {
    font-weight: 700;
    font-family: Montserrat, Arial, sans-serif; }

.collection_info_container .collection__info {
  text-align: center; }
  .collection_info_container .collection__info .collection_description {
    margin-bottom: 24px; }

.collection__image {
  padding: 0; }

.collection__sort {
  margin-bottom: 15px; }
  .collection__sort #SortBy {
    border: none; }

.collection-section__info {
  margin-bottom: 15px; }
  .collection-section__info iframe {
    display: none; }
  .collection-section__info .collection__image iframe {
    display: block; }

/*============================================================================
	#Collection Filters
==============================================================================*/
/*============================================================================
	#Collection Filters style 2
==============================================================================*/
.collection-filter .nav > li > a:focus {
  background-color: #fff; }
.collection-filter .nav-tabs > li.active > a,
.collection-filter .nav-tabs > li.active > a:hover,
.collection-filter .nav-tabs > li.active > a:focus {
  color: #1D1D1B;
  font-weight: normal; }
.collection-filter .nav-tabs {
  text-align: right;
  border-bottom: 1px solid #EBEBEB; }
  @media screen and (max-width: 480px) {
    .collection-filter .nav-tabs {
      text-align: center; } }
  .collection-filter .nav-tabs li {
    float: none; }
    .collection-filter .nav-tabs li a {
      text-transform: none;
      font-family: 'Montserrat', sans-serif;
      padding: 16px 12px; }
      .collection-filter .nav-tabs li a span {
        display: inline-block;
        vertical-align: middle; }
      .collection-filter .nav-tabs li a i {
        font-size: 1.53846em;
        font-family: "Material Icons";
        display: inline-block;
        vertical-align: middle; }
        .collection-filter .nav-tabs li a i.expand-less {
          display: none; }
    .collection-filter .nav-tabs li.active a i.expand-less {
      display: inline-block; }
    .collection-filter .nav-tabs li.active a i.expand-more {
      display: none; }
.collection-filter .tab-content {
  text-align: right;
  padding: 4px 0 16px; }

.filter-block {
  border-bottom: 1px solid #EBEBEB; }
  @media screen and (max-width: 480px) {
    .filter-block {
      padding: 0 30px; } }
  .filter-block:last-child {
    padding-bottom: 0; }
  .filter-block label {
    font-weight: normal;
    margin: 0; }
  .filter-block ul.box-grid-stype li input {
    display: none; }
  .filter-block .clear {
    float: right;
    line-height: 15px;
    text-transform: none;
    color: red; }
  .filter-block h5, .filter-block .h5 {
    font-size: 13px;
    color: #1d1d1b;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.08px;
    margin: 20px 3px 12px; }
  .filter-block .filter-content ul {
    margin-left: 0;
    margin-bottom: 0;
    list-style-type: none; }
    @media screen and (max-width: 480px) {
      .filter-block .filter-content ul {
        text-align: center; } }
    .filter-block .filter-content ul li {
      margin-bottom: 3px; }
      .filter-block .filter-content ul li .filter-label {
        color: #1D1D1B;
        display: block;
        font-family: 'Montserrat', serif;
        letter-spacing: -0.08px;
        font-size: 13px;
        font-weight: 400;
        height: 18px;
        line-height: 18px;
        margin: 8px auto 0;
        text-transform: none; }
      .filter-block .filter-content ul li input {
        display: none; }
  .filter-block .filter-content .filter-square {
    margin: 12px 4px;
    position: relative;
    display: inline-block;
    width: 96px;
    white-space: nowrap;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .filter-block .filter-content .filter-square {
        width: 76px; } }
  .filter-block .filter-content .filter-square:hover .inner-ring,
  .filter-block .filter-content .filter-square input[type="checkbox"]:checked + a .inner-ring {
    border: 2px solid #3C3C3B; }
  .filter-block .filter-content .filter-square a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    background: none !important;
    padding: 0 !important; }
  .filter-block .filter-content .inner-ring {
    height: 24px;
    width: 24px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    background-size: 120%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border: 1px solid transparent;
    border-radius: 50%; }
  .filter-block .filter-content .pink {
    background-color: #DFABB5; }
  .filter-block .filter-content .blue {
    background-color: #49607C; }
  .filter-block .filter-content .green {
    background-color: #69715E; }
  .filter-block .filter-content .yellow {
    background-color: #EAD99A; }
  .filter-block .filter-content .red {
    background-color: #B14754; }
  .filter-block .filter-content .white {
    background-color: #F5F4F0; }
  .filter-block .filter-content .black {
    background-color: #3B3B3B; }
  .filter-block .filter-content .orange {
    background-color: #FBB365; }
  .filter-block .filter-content .grey {
    background-color: #8C8C8C; }
  .filter-block .filter-content .purple {
    background-color: #BBB9D5; }
  .filter-block .filter-content .brown {
    background-color: #603D30; }

.header-filter {
  margin-bottom: 15px;
  margin-top: 35px; }
  .header-filter .filter-blocks .filter-block {
    border-bottom: 0 none;
    float: left;
    margin-bottom: 15px;
    margin-right: 5%;
    position: relative;
    width: 20%; }
    @media screen and (min-width: 481px) and (max-width: 768px) {
      .header-filter .filter-blocks .filter-block {
        width: 40%;
        margin-right: 10%; }
        .header-filter .filter-blocks .filter-block:nth-child(2n):after {
          display: none; } }
    @media screen and (max-width: 480px) {
      .header-filter .filter-blocks .filter-block {
        width: 100%; }
        .header-filter .filter-blocks .filter-block:after {
          display: none; } }
    .header-filter .filter-blocks .filter-block .clear {
      margin-right: 10px; }
    .header-filter .filter-blocks .filter-block:after {
      background: #ebebeb;
      content: "";
      height: 100%;
      position: absolute;
      right: 0;
      top: 0;
      width: 1px; }
    .header-filter .filter-blocks .filter-block:last-child:after {
      display: none; }
    .header-filter .filter-blocks .filter-block h5.filter-title, .header-filter .filter-blocks .filter-block .filter-title.h5 {
      margin: 0 0 12px; }
    .header-filter .filter-blocks .filter-block .filter-content ul {
      margin-bottom: 3px; }
      .header-filter .filter-blocks .filter-block .filter-content ul .filter-label {
        color: #393939;
        display: block;
        font-size: 13px;
        font-weight: 300;
        height: 18px;
        line-height: 18px;
        margin: 8px auto;
        text-transform: none; }
      .header-filter .filter-blocks .filter-block .filter-content ul li {
        list-style: none;
        float: left;
        margin-bottom: 3px;
        width: 50%; }
        .header-filter .filter-blocks .filter-block .filter-content ul li input {
          display: none; }

/* mobile filter bar */
.collection__info .text-icon {
  font-size: 13px;
  color: #1D1D1B;
  margin-right: 8px;
  position: absolute;
  right: 0;
  margin-top: 3px;
  font-family: 'Montserrat', sans-serif; }
  .collection__info .text-icon i {
    margin-right: 4px; }

/* filter modal */
.modal.modal-fullscreen {
  width: 100%;
  height: 100%;
  z-index: 9999999999; }
  .modal.modal-fullscreen .modal-content {
    height: 100%;
    border-radius: 0; }
  .modal.modal-fullscreen .modal-dialog {
    margin: 0;
    height: 100%; }
    .modal.modal-fullscreen .modal-dialog .modal-body {
      padding: 0; }

/*============================================================================
	#Breadcrumbs
==============================================================================*/
.breadcrumb-wrapper {
  background: #f5f5f5; }

.breadcrumb {
  margin: 0;
  padding: 20px 0;
  *zoom: 1; }
  .breadcrumb:after {
    content: '';
    display: table;
    clear: both; }
  .breadcrumb .custom span {
    font-size: 36px;
    font-family: Montserrat, sans-serif;
    color: #000000;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -1px; }
    .breadcrumb .custom span:after {
      background: url("symbol_breadcrumb.png");
      bottom: 0;
      content: "";
      height: 4px;
      left: 0;
      position: absolute;
      width: 92px; }
  .breadcrumb .inner {
    /*margin-right: 25px;
    margin-top: 25px;*/ }
    .breadcrumb .inner a {
      color: #a2a2a2; }
  .breadcrumb > img {
    position: absolute;
    left: 0;
    max-width: inherit; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    color: #000; }
    .breadcrumb a i,
    .breadcrumb span i {
      color: #818796; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }

/*============================================================================
	#Promotional Ticker, Promotional Banner, & Countdown Timer
==============================================================================*/
.promotional-ticker {
  height: 34px;
  font-size: 13px;
  background: #000;
  color: #fff;
  text-align: center;
  margin: 0;
  position: relative; }
  @media only screen and (max-width: 480px) {
    .promotional-ticker {
      height: 50px; } }
  .promotional-ticker .promotional-ticker-style {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%; }
    @media only screen and (max-width: 480px) {
      .promotional-ticker .promotional-ticker-style {
        width: 80%; } }

#promotional-ticker-text {
  display: inline-block;
  vertical-align: middle; }
  @media screen and (max-width: 480px) {
    #promotional-ticker-text {
      display: block; } }

#promotional-ticker-text, #promotional-ticker-text a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #fff; }

#promotional-ticker-text small {
  color: #ccc; }

#CountdownClock {
  font-family: "Courier", sans-serif;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  vertical-align: middle;
  padding: 0 5px;
  letter-spacing: -0.08px; }
  @media screen and (max-width: 480px) {
    #CountdownClock {
      display: block; } }

#CountdownClock > div {
  display: inline-block; }

#CountdownClock div > span {
  display: inline-block; }

.promotional-banner-wrapper {
  margin-top: 10px;
  margin-bottom: 10px; }
  @media screen and (max-width: 480px) {
    .promotional-banner-wrapper > .wrapper {
      padding: 0; } }

.promotional-banner {
  width: 100%; }

.promotional-banner-wrapper {
  position: relative; }
  .promotional-banner-wrapper .banner-text {
    position: absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    font-size: 17px;
    top: 0;
    margin: 0 auto;
    color: #fff; }
    @media screen and (max-width: 480px) {
      .promotional-banner-wrapper .banner-text {
        width: 80%;
        font-size: 11px;
        left: 10%;
        right: 10%; } }
    .promotional-banner-wrapper .banner-text.text-left {
      margin: auto 0;
      top: 0;
      bottom: 0; }
    .promotional-banner-wrapper .banner-text.text-right {
      margin: auto 0;
      top: 0;
      bottom: 0; }
    .promotional-banner-wrapper .banner-text.text-center {
      margin: auto;
      top: 0;
      bottom: 0; }
    .promotional-banner-wrapper .banner-text .text1 {
      font-size: 20px;
      font-weight: normal;
      font-family: Montserrat;
      position: relative;
      display: inline-block; }
      @media screen and (min-width: 481px) and (max-width: 768px) {
        .promotional-banner-wrapper .banner-text .text1 {
          font-size: 10px;
          line-height: 10px; } }
      @media screen and (max-width: 480px) {
        .promotional-banner-wrapper .banner-text .text1 {
          font-size: 10px;
          line-height: 10px; } }
    .promotional-banner-wrapper .banner-text .text2 {
      font-family: Montserrat;
      font-size: 40px;
      line-height: 40px;
      font-weight: normal;
      font-weight: bold; }
      @media screen and (min-width: 481px) and (max-width: 768px) {
        .promotional-banner-wrapper .banner-text .text2 {
          font-size: 10px;
          line-height: 10px; } }
      @media screen and (max-width: 480px) {
        .promotional-banner-wrapper .banner-text .text2 {
          font-size: 10px;
          line-height: 10px; } }

.template-index .promotional-banner-wrapper {
  display: none; }

/*============================================================================
	#Product Page
==============================================================================*/
.product-special-label {
  font-family: 'Montserrat';
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #464646; }

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

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

.product-single__thumbnails {
  height: 615px;
  margin: 0; }
  .product-single__thumbnails .product__thumbnails {
    margin: 0 auto 7px;
    /*max-width: 70px;*/ }
    @media (min-width: 1024px) {
      .product-single__thumbnails .product__thumbnails {
        width: 80px; } }
    @media screen and (min-width: 480px) {
      .product-single__thumbnails .product__thumbnails {
        min-height: 50px; } }
    @media screen and (max-width: 480px) {
      .product-single__thumbnails .product__thumbnails {
        float: left;
        margin: 0 auto 4px;
        min-height: 30px; } }

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

.product-single__photos img {
  margin-bottom: 15px; }
.product-single__photos video {
  width: 100%;
  margin-bottom: 15px; }

.special-collection .product-single__thumbnails {
  height: auto;
  list-style: none; }

.thumb-link.selected {
  border: 2px solid black;
  overflow: hidden; }

.product-single {
  /*margin-top:42px;*/
  margin-bottom: 30px; }
  .product-single .product-nav {
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb; }
  .product-single .add-to-cart {
    width: 100%; }
  .product-single #AddToCartForm {
    padding-bottom: 2px; }
  .product-single .stamped-main-badge {
    margin-bottom: 12px; }
  .product-single .pre-order-message {
    text-align: left; }
    .product-single .pre-order-message p {
      font-family: 'Montserrat'; }
    .product-single .pre-order-message .pre-order-label {
      font-size: 17px;
      font-weight: 400;
      line-height: 22px;
      color: #008A00;
      letter-spacing: -0.96px;
      margin-bottom: 10px; }
    .product-single .pre-order-message .pre-order-text {
      font-size: 15px;
      font-weight: 400;
      line-height: 20px;
      color: #1D1D1B;
      letter-spacing: -0.24px;
      margin-bottom: 14px; }
  .product-single h1, .product-single .h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.36px;
    line-height: 34px;
    font-family: 'Montserrat';
    text-transform: none; }
  .product-single h2, .product-single .h2, .product-single .tab-products .nav-tabs, .tab-products .product-single .nav-tabs {
    margin-top: 20px; }
  .product-single .right-single-product {
    position: relative;
    padding-left: 15px; }
    @media screen and (max-width: 480px) {
      .product-single .right-single-product {
        padding-left: 30px; } }
  .product-single #ComparePrice {
    display: none; }
  .product-single #ProductPrice {
    display: inline-block;
    margin: 0 0 20px 0; }
    .product-single #ProductPrice .product-price {
      font-size: 17px;
      line-height: 22px;
      letter-spacing: -0.41px;
      font-family: Montserrat, sans-serif;
      font-weight: normal; }
    .product-single #ProductPrice .on-sale {
      color: #ff0000; }
  .product-single .spr-badge {
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    padding: 15px 0; }
    .product-single .spr-badge .spr-badge-caption {
      text-transform: uppercase;
      font-size: 12px;
      color: #a2a7b5;
      position: relative;
      padding-left: 20px;
      margin-left: 10px; }
      .product-single .spr-badge .spr-badge-caption:after {
        content: "";
        width: 1px;
        height: 11px;
        background: #e1e1e1;
        left: 0;
        top: 3px;
        position: absolute; }
    .product-single .spr-badge [class^="spr-icon-"]::before, .product-single .spr-badge [class*=" spr-icon-"]::before {
      font-size: 140%; }
  .product-single input[type="checkbox"] {
    display: none; }
  .product-single input[type="checkbox"] + label {
    background: rgba(0, 0, 0, 0) url("check-box.png") no-repeat scroll 0 center;
    padding-left: 23px;
    color: inherit; }
  .product-single input[type="checkbox"]:checked + label {
    background: rgba(0, 0, 0, 0) url("check-box-checked.png") no-repeat scroll 0 center;
    cursor: pointer;
    color: #000; }

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: 16px;
  color: #a2a2a2;
  font-style: italic;
  line-height: 20px;
  margin-bottom: 24px; }

.quantity_wrap {
  padding: 0 0 16px 0; }

.quantity-selector {
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #1D1D1B;
  text-transform: uppercase; }

.product-compare-price {
  color: #a2a7b5; }
  .product-compare-price span {
    font-size: 24px;
    color: #a2a7b5;
    font-weight: normal;
    text-decoration: none; }

.add-this {
  margin: 15px 0;
  position: relative;
  text-align: right; }
  .add-this label {
    position: absolute;
    left: 0;
    top: 5px;
    font-weight: normal; }
  .add-this .addthis_toolbox {
    display: inline-block; }

.product-tabs {
  margin-bottom: 20px;
  margin-top: 30px; }
  .product-tabs ul.nav-tabs li {
    position: relative; }
    .product-tabs ul.nav-tabs li:after {
      content: "";
      width: 1px;
      height: 11px;
      position: absolute;
      top: 14px;
      right: 0;
      background: #e1e1e1; }
    .product-tabs ul.nav-tabs li:first-child a {
      padding-left: 0; }
    .product-tabs ul.nav-tabs li:last-child:after {
      display: none; }

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

.product-ingredients {
  padding-top: 20px; }

.pre-order .octane-plugin__checkbox {
  display: none; }

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

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

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

#shopify-product-reviews .spr-header-title:before {
  left: 0; }

#shopify-product-reviews .spr-header-title:after {
  right: 0; }

#shopify-product-reviews .spr-summary {
  padding: 6px 0; }

#shopify-product-reviews .spr-summary-caption,
#shopify-product-reviews .spr-summary-actions-togglereviews {
  vertical-align: top; }

#shopify-product-reviews #spr-content-toggler {
  /* expand / collapse review link style goes here*/ }

#shopify-product-reviews .spr-content .spr-reviews {
  max-height: 0px;
  overflow: hidden; }

#shopify-product-reviews .spr-content.__active .spr-reviews {
  max-height: 4000px;
  /* an arbitrary number; max-height allows for height transitions; height: auto wont work */ }

@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; } }
#ProductThumbsContainer, #ProductThumbsContainer > div {
  transform: translate3d(0, 0, 0); }

#ProductThumbsContainer #ProductThumbs {
  margin: 0 auto; }

.right-single-product .product-name {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
  color: #000; }
  .right-single-product .product-name.large--hide {
    margin-top: 24px; }
.right-single-product .newsletter-form input {
  display: inline-block;
  border: 1px solid #333;
  width: 100%;
  vertical-align: top;
  height: 40px; }
.right-single-product .newsletter-form input[type="email"] {
  min-width: 200px; }
.right-single-product .newsletter-form input[type="submit"] {
  background: #eee;
  color: #333; }
.right-single-product #JoinWaitlist .add_to_cart {
  padding: 0;
  box-shadow: none;
  text-transform: uppercase; }
.right-single-product .section-header__left {
  margin: 30px 0;
  text-align: left;
  display: block;
  font-size: 22px; }
.right-single-product .product-description {
  margin-bottom: 30px; }

.availability.in-stock {
  color: #7BBA9B; }
.availability.not-in-stock {
  color: #C45500; }

.section-upsell .product-single__photos {
  width: 140px;
  display: inline-block;
  padding-left: 0;
  vertical-align: top; }
  @media screen and (max-width: 480px) {
    .section-upsell .product-single__photos {
      width: 100%;
      display: block; } }
.section-upsell .right-single-product {
  display: inline-block;
  margin-left: 30px;
  padding: 0;
  vertical-align: top; }
  @media screen and (max-width: 480px) {
    .section-upsell .right-single-product {
      margin-left: 0; } }
.section-upsell .product-title {
  font-size: 1em;
  font-family: Montserrat;
  line-height: 1em;
  margin: 20px 0 0 0;
  color: #1D1D1B;
  text-transform: none; }
  @media screen and (max-width: 480px) {
    .section-upsell .product-title {
      width: 100%;
      padding: 0;
      text-align: center; } }
.section-upsell .product-price {
  font-size: 15px;
  line-height: 15px;
  margin: 6px 0 15px 0; }
  @media screen and (max-width: 480px) {
    .section-upsell .product-price {
      width: 100%;
      text-align: center; } }
  .section-upsell .product-price .current-price {
    color: #E3679C; }
.section-upsell .add_to_cart {
  width: 100%; }

/*============================================================================
	#Blogs page
==============================================================================*/
article .post-thumbnail {
  margin-bottom: 30px; }
  article .post-thumbnail img {
    margin-bottom: 15px; }
article .entry-meta {
  font-style: italic;
  margin-bottom: 30px; }
article .btn, article .btn--secondary,
article .rte .btn--secondary,
.rte article .btn--secondary {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal; }

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

.latest-posts-body {
  position: relative;
  margin-bottom: 30px; }
  .latest-posts-body .entry-meta {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
    width: 100%; }
    .latest-posts-body .entry-meta .entry-content {
      background: #fff none repeat scroll 0 0;
      min-height: 150px;
      padding: 22px 30px 25px;
      text-align: left;
      -o-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      z-index: 200;
      transition: 0.3s ease; }
      .latest-posts-body .entry-meta .entry-content .author {
        font-size: 12px;
        line-height: 20px; }
        .latest-posts-body .entry-meta .entry-content .author span {
          color: #000000;
          letter-spacing: -1px;
          text-transform: capitalize; }
  .latest-posts-body:hover .entry-content {
    -o-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    transition: 0.3s ease; }
  .latest-posts-body .post-thumbnail img {
    display: inline-block; }
  .latest-posts-body .entry-title {
    text-transform: none;
    margin-bottom: 32px;
    height: 50px;
    overflow: hidden; }
    .latest-posts-body .entry-title a {
      font-weight: normal;
      color: inherit; }

.date {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 20px; }
  .date i {
    margin-right: 10px;
    font-size: 14px; }

.list-blog .post-thumbnail {
  margin-right: 30px; }

/*============================================================================
	#Generic Page
==============================================================================*/
.page_full-banner {
  margin: 70px auto 0 auto; }
  .page_full-banner .banner {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    height: 375px;
    width: 100%; }
    .page_full-banner .banner .banner-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      text-align: center; }
      .page_full-banner .banner .banner-content .heading {
        color: #fff;
        margin-top: 75px; }
        @media screen and (max-width: 480px) {
          .page_full-banner .banner .banner-content .heading {
            font-size: 1.69231em; } }
      .page_full-banner .banner .banner-content .text {
        font-size: 1.84615em;
        color: #fff;
        max-width: 760px;
        padding: 30px;
        margin: 0 auto; }
        @media screen and (max-width: 480px) {
          .page_full-banner .banner .banner-content .text {
            font-size: 1.23077em; } }

.page_block {
  margin: 70px auto 0 auto;
  max-width: 640px;
  text-align: center; }
  .page_block .block__item {
    display: inline-block;
    vertical-align: middle; }
    .page_block .block__item .subheading ~ .subheading {
      margin-top: 40px; }
    .page_block .block__item p {
      padding: 0; }
  .page_block p {
    font-size: 1.30769em;
    padding: 10px;
    margin: 0 auto; }
  .page_block .panel-body {
    padding-left: 0;
    padding-right: 0; }
    .page_block .panel-body p {
      padding-left: 0;
      padding-right: 0; }
  .page_block .heading {
    font-size: 2.61538em; }
  .page_block .subheading {
    font-size: 1.69231em; }
  .page_block .panel-title {
    font-size: 1.69231em; }

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

.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; }
  .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 .update-cart {
  padding: 10px 10px; }
  @media screen and (max-width: 480px) {
    .cart .update-cart {
      padding: 10px 0;
      margin: 5px auto;
      display: block;
      width: 100%; } }

.cart-table {
  border: 1px solid #ebebeb;
  border-radius: 2px;
  border-spacing: 0;
  padding: 0 8px;
  border-collapse: separate; }
  .cart-table th {
    font-weight: normal; }
  .cart-table td {
    vertical-align: top;
    padding: 8px 5px 8px 0;
    margin: 0;
    border-left: none;
    border-right: none;
    border-top: none; }
  .cart-table tr:last-of-type td {
    border: none; }
  .cart-table th {
    padding: 0; }
  .cart-table th {
    border: none; }
  .cart-table .label {
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    padding: 0;
    letter-spacing: -0.08px;
    white-space: normal;
    color: #C45500; }
  @media screen and (max-width: 480px) {
    .cart-table {
      border: none; } }

@media screen and (max-width: 480px) {
  #mcart_1 {
    padding: 0 0 0 30px; } }

.mcart_2 {
  width: 170px; }
  @media screen and (max-width: 480px) {
    .mcart_2 {
      width: 140px; } }

@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;
  max-width: 152.25px; }
  .cart__image img {
    display: block;
    max-width: 100%; }
    @media screen and (max-width: 480px) {
      .cart__image img {
        width: 120px; } }

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

.cart__quantity--mobile {
  margin-top: 5px; }
  @media screen and (min-width: 769px) {
    .cart__quantity--mobile {
      display: none; } }

.cart__price {
  text-align: right; }
  @media screen and (max-width: 768px) {
    .cart__price {
      display: none; } }

@media screen and (min-width: 769px) {
  .cart__price--mobile {
    display: none; } }

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

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

.cart__remove {
  display: block; }

.cart-empty-desktop {
  border: 1px solid #ebebeb;
  border-radius: 2px;
  border-spacing: 0px;
  padding: 16px 0 8px 16px;
  margin-bottom: 30px; }

.cart-empty-mobile {
  margin-bottom: 0; }

.cart-empty-message {
  padding-bottom: 40px; }

.cart-empty-button {
  width: 100%; }

.cart__progress .progress {
  border-radius: 3px;
  height: 2px;
  margin: 20px auto;
  max-width: 90%;
  width: 100%; }
.cart__progress .free-shipping-message {
  font-size: 12px;
  font-weight: 300;
  height: 20px;
  line-height: 20px;
  margin: 0; }

.cart__sidebar {
  text-align: center; }
  .cart__sidebar #subtotal {
    font-size: 1.15385em;
    color: #393939;
    margin-bottom: 0; }
  .cart__sidebar #promo-code-message {
    margin: 0;
    font-size: 0.84615em;
    color: #999; }
  .cart__sidebar #account-login-button,
  .cart__sidebar #checkout {
    height: 36px;
    line-height: 36px;
    width: 207px;
    padding: 0;
    margin: 24px 0; }
    @media screen and (max-width: 768px) {
      .cart__sidebar #account-login-button,
      .cart__sidebar #checkout {
        width: 100%; } }

/*=======================================
	# Sweepstakes Page
=========================================*/
#sweepstakes {
  width: 100%; }
  #sweepstakes .main-content {
    margin-top: -20px; }
  #sweepstakes .sweepstakes__info {
    margin: 0 0 40px 0; }
    #sweepstakes .sweepstakes__info iframe {
      display: block; }
    #sweepstakes .sweepstakes__info .sweepstakes__form {
      padding: 0 0 0 0; }
    #sweepstakes .sweepstakes__info .sweepstakes__image {
      padding: 0 0 0 0; }
      #sweepstakes .sweepstakes__info .sweepstakes__image iframe {
        display: block; }
      #sweepstakes .sweepstakes__info .sweepstakes__image .img__sweepstakes {
        z-index: 3;
        margin-left: -1px;
        height: 721px !important; }
    #sweepstakes .sweepstakes__info .sweepstakes__rules {
      margin: auto; }
  @media only screen and (max-width: 768px) and (min-width: 481px) {
    #sweepstakes .wrapper {
      width: 100%; }
    #sweepstakes .main-content {
      width: 100%; }
    #sweepstakes .sweepstakes_container {
      margin: 0 auto; }
    #sweepstakes .sweepstakes__info {
      margin: 0 auto; }
      #sweepstakes .sweepstakes__info iframe {
        display: block; }
      #sweepstakes .sweepstakes__info .sweepstakes__image {
        width: 80%;
        margin: 0 auto; }
      #sweepstakes .sweepstakes__info .sweepstakes__form {
        width: 100%;
        margin: 0 auto;
        padding: 30px 100px 30px 120px; }
    #sweepstakes .sweepstakes__rules {
      margin: 0 auto;
      padding: 0 10px 0 10px; } }
  @media only screen and (max-width: 480px) {
    #sweepstakes .wrapper {
      padding: 0; }
    #sweepstakes .main-content {
      width: 100%; }
    #sweepstakes .sweepstakes__info {
      margin: 0 0 0 0; }
      #sweepstakes .sweepstakes__info iframe {
        display: block; }
      #sweepstakes .sweepstakes__info .sweepstakes__image {
        padding: 0 0 0 -30px; }
        #sweepstakes .sweepstakes__info .sweepstakes__image iframe {
          width: 100%;
          margin: 0 auto;
          display: block; }
      #sweepstakes .sweepstakes__info .sweepstakes__form {
        padding: 0 0 0 0; }
    #sweepstakes .sweepstakes__rules {
      padding: 0 5px 0 5px; } }

/*=======================================
	# Discontinued Product Template
=========================================*/
.discontinued_container {
  width: 100%; }
  .discontinued_container .discontinued__content {
    margin: -20px 0 30px 0; }
  .discontinued_container .discontinued__info {
    padding: 18% 20px 18% 0;
    width: 50%;
    float: left; }
    .discontinued_container .discontinued__info h3, .discontinued_container .discontinued__info .h3 {
      font-size: 22px;
      text-align: left; }
    .discontinued_container .discontinued__info p {
      font-size: 15px;
      text-align: left; }
  .discontinued_container .discontinued__image {
    width: 50%;
    float: right;
    padding: 0 0 0 0; }
  @media only screen and (max-width: 768px) and (min-width: 481px) {
    .discontinued_container .discontinued__content {
      margin: -15px auto 0 auto; }
      .discontinued_container .discontinued__content .discontinued__image {
        padding: 0 0 0 0;
        margin: 0 auto;
        width: 100%;
        display: block; }
      .discontinued_container .discontinued__content .discontinued__info {
        padding: 0 0 0 0;
        width: 100%;
        margin: 10px auto 15px auto;
        display: block; }
        .discontinued_container .discontinued__content .discontinued__info p {
          text-align: center; } }
  @media only screen and (max-width: 480px) {
    .discontinued_container .discontinued__content {
      width: 100%;
      margin-top: -15px; }
      .discontinued_container .discontinued__content .discontinued__image {
        padding: 0 0 0 0;
        margin: 0 auto;
        width: 100%;
        display: block; }
      .discontinued_container .discontinued__content .discontinued__info {
        padding: 0 0 0 0;
        width: 100%;
        margin: 10px auto -20px auto;
        display: block; }
        .discontinued_container .discontinued__content .discontinued__info h3, .discontinued_container .discontinued__content .discontinued__info .h3 {
          font-size: 28px;
          text-align: center; }
        .discontinued_container .discontinued__content .discontinued__info p {
          font-size: 17px;
          text-align: left;
          margin-left: 8px; } }

/*=======================================
	# Gift Ideas Template
=========================================*/
.page-wrapper {
  margin-top: -40px; }

.gift-ideas_container .gift-ideas__content {
  margin: 40px auto 16px;
  text-align: center; }
  .gift-ideas_container .gift-ideas__content h1, .gift-ideas_container .gift-ideas__content .h1 {
    font-size: 34px;
    font-weight: bolder;
    line-height: 41px;
    color: #1D1D1B;
    letter-spacing: 0.39px;
    margin-bottom: 16px; }
  .gift-ideas_container .gift-ideas__content p {
    font-size: 16px;
    line-height: 21px;
    color: #1D1D1B;
    letter-spacing: -0.32px; }

.gift-categories .heading {
  margin: 16px 0 16px;
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: normal;
  line-height: 25px;
  color: #1D1D1B;
  letter-spacing: 0.38px; }
.gift-categories .tagline {
  margin: 0 0 24px;
  font-family: 'Montserrat';
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.07px;
  line-height: 13px;
  color: #1D1D1B;
  text-transform: uppercase;
  height: 13px; }

.gift-ideas_bottom_section .gift-ideas-section__title {
  margin-bottom: 16px;
  font-size: 34px;
  font-weight: bolder;
  line-height: 41px;
  color: #1D1D1B;
  letter-spacing: 0.39px; }
  @media only screen and (max-width: 768px) {
    .gift-ideas_bottom_section .gift-ideas-section__title {
      margin-top: 30px; } }
.gift-ideas_bottom_section .gift-ideas-section__text {
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 21px;
  color: #1D1D1B; }
.gift-ideas_bottom_section .gift-ideas-section__button {
  margin-top: 28px; }
  .gift-ideas_bottom_section .gift-ideas-section__button .heading {
    font-size: 13px; }
  .gift-ideas_bottom_section .gift-ideas-section__button .text {
    font-family: 'Montserrat', sans-serif;
    margin: 8px auto;
    max-width: 300px; }
  .gift-ideas_bottom_section .gift-ideas-section__button .btn, .gift-ideas_bottom_section .gift-ideas-section__button .btn--secondary {
    color: #FFF;
    background-color: #3C3C3B;
    border-radius: 2px;
    height: 54px;
    width: 176px;
    margin-top: 28px;
    display: table-cell;
    vertical-align: middle; }
    .gift-ideas_bottom_section .gift-ideas-section__button .btn a, .gift-ideas_bottom_section .gift-ideas-section__button .btn--secondary a {
      line-height: 18px; }
.gift-ideas_bottom_section .gift-ideas-section__info_desktop {
  margin-left: -45px; }
  .gift-ideas_bottom_section .gift-ideas-section__info_desktop .gift-ideas-section__content_desktop {
    width: 480px;
    margin-top: 65px;
    display: block; }
  .gift-ideas_bottom_section .gift-ideas-section__info_desktop .gift-ideas-section__image_desktop {
    padding-left: 15px;
    margin-right: -30px;
    margin-bottom: 30px;
    float: right;
    display: inline-block; }
    .gift-ideas_bottom_section .gift-ideas-section__info_desktop .gift-ideas-section__image_desktop img {
      height: 360px; }
  .gift-ideas_bottom_section .gift-ideas-section__info_desktop .gift-ideas-section__info_mobile {
    margin-left: -30px;
    margin-bottom: 30px; }
    .gift-ideas_bottom_section .gift-ideas-section__info_desktop .gift-ideas-section__info_mobile .gift-ideas-section__content_mobile {
      display: block; }
    .gift-ideas_bottom_section .gift-ideas-section__info_desktop .gift-ideas-section__info_mobile .gift-ideas-section__image_mobile {
      max-width: 100%; }
      .gift-ideas_bottom_section .gift-ideas-section__info_desktop .gift-ideas-section__info_mobile .gift-ideas-section__image_mobile img {
        width: 100%; }

/*============================================================================
	#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 #ebebeb; }
.contact-box i {
  color: #000;
  font-size: 24px; }

/*============================================================================
	#Ajax Cart Styles (conditionally loaded)
==============================================================================*/
#PopupCartContainer {
  width: 280px;
  border: 1px solid #bbb;
  padding: 0;
  position: fixed;
  top: 48px;
  right: 48px;
  box-shadow: 1px 1px 3px #aaa;
  display: none;
  background: #fff;
  z-index: 100; }

.pu-cart-header {
  height: 40px;
  border-bottom: 1px solid #eee; }
  .pu-cart-header .pu-cart-heading {
    display: inline-block;
    line-height: 40px;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    font-weight: 300;
    padding: 0 10px;
    color: #555; }

.pu-cart-close {
  width: 22px;
  height: 22px;
  padding: 2px;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  text-decoration: none !important; }

.pu-cart-bottom {
  padding: 8px;
  border-bottom: 1px solid #eee; }

.pu-cart-button {
  text-decoration: none !important;
  display: inline-block;
  width: 256px;
  text-align: center;
  font-size: 11px;
  padding: 8px;
  color: #fff !important;
  border-radius: 3px;
  border: 1px solid #f7f7f7;
  text-transform: uppercase; }
  .pu-cart-button.view_cart {
    background: #d0d0d0; }
  .pu-cart-button.checkout {
    background: #000; }

.pu-cart-body .progress {
  border-radius: 0;
  margin-bottom: 0; }

.pu-cart-message {
  text-align: center;
  font-size: 12px;
  margin: 5px 0 0 0;
  padding: 10px 0;
  width: 100%; }

.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);
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

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

.ajaxcart__product-image {
  display: block;
  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; }

.ajaxcart .free-shipping-message span, .ajaxcart .free-shipping-message i {
  display: inline-block;
  vertical-align: middle; }
.ajaxcart .free-shipping-message i {
  font-size: 20px;
  width: 15%;
  padding: 0 6px; }
.ajaxcart .free-shipping-message span {
  font-size: 11px;
  width: 85%; }
.ajaxcart .progress {
  height: 10px; }

/*================ Quantity Selectors ================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  /*margin-bottom: 1em;*/
  width: 68px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    color: #000;
    font-size: 16px; }
  .js-qty .icon-fallback-text .icon, .ajaxcart__qty .icon-fallback-text .icon {
    color: #bbb;
    border-radius: 50%;
    width: 22px;
    line-height: 20px;
    vertical-align: bottom;
    border: 1px solid #ddd; }

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

.js-qty__adjust--plus, .js-qty > span.qtyplus, .ajaxcart__qty > span.qtyplus, .ajaxcart__qty--plus {
  right: 0; }

.js-qty__adjust--minus, .js-qty > span.qtyminus, .ajaxcart__qty > span.qtyminus, .ajaxcart__qty--minus {
  left: 0; }

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

.ajaxcart__qty-num {
  border-color: #f2f2f2;
  color: #333333; }

.ajaxcart__qty-adjust {
  color: #333333; }

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

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

.cart .disclaimer {
  padding: 12px 8px; }

/*============================================================================
	#Shipping Page
==============================================================================*/
.shipping-info {
  margin: 0 auto;
  text-align: center;
  margin-top: 30px; }

.notes--shipping {
  display: none; }

.notes--shipping, .notes--additional {
  text-align: left;
  padding: 0 15px;
  margin: 0; }

.card__shipping-rates {
  padding: 0;
  display: inline-block;
  vertical-align: top; }

.icon-wrapper {
  padding: 35px;
  display: none; }

.icon-wrapper i {
  display: block;
  font-size: 72px;
  color: #a09477;
  text-align: center; }

.shipping-method {
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding: 16px 32px;
  margin: 0; }

.shipping-line {
  text-align: center;
  height: 110px; }

.major {
  font-size: 32px;
  vertical-align: top; }

.minor {
  vertical-align: top;
  font-size: 32px; }

.offer {
  margin-top: 12px; }

.free {
  color: #dd516a;
  text-transform: uppercase; }

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

.sprite:before {
  background-image: url("sprite.png");
  position: absolute;
  content: ""; }

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

.sprite-cart:before {
  width: 18px;
  height: 22px;
  background-position: -23px -20px;
  top: 6px;
  left: 9px; }

.sprite-search:before {
  width: 14px;
  height: 15px;
  background-position: -41px -42px;
  top: 10px;
  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%;
  -o-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-family: Montserrat, sans-serif;
  z-index: 200;
  color: #fff;
  text-align: center; }
  .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: Montserrat, sans-serif;
    margin-top: 5px; }

.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: 5px 0; }
  .collection-list .grid-uniform .grid__item .rte {
    margin: 0; }
  .collection-list .grid-uniform .grid__item .add-to-cart .add_to_cart {
    background: #555 none repeat scroll 0 0;
    color: #a2a7b5;
    font-size: 12px;
    padding: 5px 20px;
    transition: 0.3s ease;
    display: inline-block; }
    .collection-list .grid-uniform .grid__item .add-to-cart .add_to_cart span {
      display: inline-block; }

.arrivals h2.title, .arrivals .title.h2, .arrivals .tab-products .nav-tabs, .tab-products .arrivals .nav-tabs {
  margin-bottom: 40px; }
.arrivals .owl-item .product-container {
  margin: 0 10px; }

.collections-list ul {
  border: 2px solid #000;
  margin: 0; }
  .collections-list ul li {
    padding: 0 20px;
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #000; }
    .collections-list ul li:first-child {
      padding-top: 6px; }
    .collections-list ul li:last-child {
      border-bottom: none;
      padding-bottom: 6px; }
    .collections-list ul li a {
      font-size: 12px;
      line-height: 60px;
      font-family: Montserrat, sans-serif;
      font-weight: normal;
      letter-spacing: 2px;
      text-transform: uppercase; }
    .collections-list ul li img {
      width: 32px;
      margin-right: 15px; }

.product-deal .product-container .product-actions {
  display: none; }
.product-deal .product-container .product-meta {
  min-height: 210px; }
.product-deal .product-container .on-sale {
  display: none; }
.product-deal .product-container .product-name {
  margin-top: 12px; }
.product-deal .product-container .product-price {
  margin-bottom: 20px; }
.product-deal .product-container .add-to-cart {
  margin-bottom: 5px;
  margin-top: 10px; }
.product-deal .product-container .back-img {
  display: none; }
.product-deal .product-container .deal-clock .list-inline li {
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-style: italic;
  position: relative;
  text-align: center;
  width: 25%; }
  .product-deal .product-container .deal-clock .list-inline li b {
    font-size: 22px;
    line-height: 18px;
    font-weight: 300; }
  .product-deal .product-container .deal-clock .list-inline li span {
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: #a2a2a2; }
  .product-deal .product-container .deal-clock .list-inline li:before {
    border: 1px solid #e1e1e1;
    content: "";
    height: 60%;
    position: absolute;
    right: 0;
    top: 7px;
    transform: rotate(15deg);
    width: 1px; }
  .product-deal .product-container .deal-clock .list-inline li:last-child:before {
    display: none; }

.product-single__thumbnails {
  height: 615px; }

.header_social {
  display: inline-block;
  line-height: 28px; }
  .header_social .bo-sicolor a {
    background: transparent !important;
    margin-right: 10px; }
    .header_social .bo-sicolor a i {
      color: #818796 !important;
      font-size: 14px; }

.tab-content {
  padding: 20px 0; }

/*================ #Slider Carousel ================*/
.slider-carousel {
  position: relative; }
  .slider-carousel .owl-pagination {
    bottom: 15px;
    left: 50%;
    position: absolute;
    -o-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0); }
    @media screen and (max-width: 480px) {
      .slider-carousel .owl-pagination {
        bottom: 0; } }
  .slider-carousel.owl-theme .owl-controls .owl-page span {
    width: 12px;
    height: 12px; }
  .slider-carousel .slider_element .slider-image {
    /*min-width: 500px;*/
    width: 100%;
    margin: 0 auto;
    display: block; }
  .slider-carousel .slider-text {
    position: absolute;
    text-align: center;
    height: 65%;
    width: 50%;
    font-size: 14px;
    left: 20%;
    right: 20%;
    color: #fff; }
    @media screen and (max-width: 480px) {
      .slider-carousel .slider-text {
        width: 80%;
        font-size: 14px;
        left: 10%;
        right: 10%; } }
    .slider-carousel .slider-text.text-left {
      margin: auto 0;
      top: 0;
      bottom: 0; }
    .slider-carousel .slider-text.text-right {
      margin: auto 0;
      top: 0;
      bottom: 0; }
    .slider-carousel .slider-text.text-center {
      margin: auto;
      top: 0;
      bottom: 0; }
    .slider-carousel .slider-text .txt1 {
      color: black;
      font-size: 45px;
      font-weight: normal;
      font-family: Montserrat, sans-serif;
      position: relative;
      display: inline-block; }
      @media screen and (max-width: 480px) {
        .slider-carousel .slider-text .txt1 {
          font-size: 14px; } }
    .slider-carousel .slider-text .txt2 {
      font-family: Montserrat, sans-serif;
      font-size: 64px;
      font-weight: normal;
      color: #000000;
      font-weight: bold; }
      @media screen and (min-width: 481px) and (max-width: 768px) {
        .slider-carousel .slider-text .txt2 {
          font-size: 24px; } }
      @media screen and (max-width: 480px) {
        .slider-carousel .slider-text .txt2 {
          font-size: 20px; } }
    .slider-carousel .slider-text .txt3 {
      font-size: 13px;
      line-height: 23px;
      text-transform: uppercase;
      font-weight: 600;
      margin-top: 12px;
      color: #000;
      font-family: Montserrat, sans-serif; }
      @media screen and (max-width: 480px) {
        .slider-carousel .slider-text .txt3 {
          margin-top: 5px;
          line-height: 18px;
          font-size: 12px; } }
      @media screen and (min-width: 481px) and (max-width: 768px) {
        .slider-carousel .slider-text .txt3 {
          margin-top: 5px;
          line-height: 18px; } }
    .slider-carousel .slider-text .slider-button {
      display: inline-block;
      font-size: 13px;
      color: #fff;
      margin-top: 60px;
      background: black;
      border-radius: 3px;
      font-family: Montserrat, sans-serif; }
      @media screen and (max-width: 480px) {
        .slider-carousel .slider-text .slider-button {
          margin-top: 10px; } }
      .slider-carousel .slider-text .slider-button:first-child {
        margin-right: 8px; }
      @media screen and (min-width: 481px) and (max-width: 768px) {
        .slider-carousel .slider-text .slider-button {
          margin-top: 15px; } }
      .slider-carousel .slider-text .slider-button.slider-button-right .btn--secondary {
        color: #000;
        background: #fff; }
        .slider-carousel .slider-text .slider-button.slider-button-right .btn--secondary:hover, .slider-carousel .slider-text .slider-button.slider-button-right .btn--secondary:focus {
          background: #9a9a9a;
          color: #fff; }
      .slider-carousel .slider-text .slider-button .btn--secondary {
        font-family: Montserrat, sans-serif;
        font-size: 13px;
        text-transform: capitalize;
        color: #000;
        border-radius: 3px;
        transition: all ease 300ms;
        background: black;
        display: inline-block;
        height: 40px;
        line-height: 40px;
        position: relative;
        padding: 0 35px;
        border: none;
        z-index: 3;
        letter-spacing: 0; }
        @media screen and (max-width: 480px) {
          .slider-carousel .slider-text .slider-button .btn--secondary {
            height: 30px;
            line-height: 30px;
            padding: 0 15px; } }
        .slider-carousel .slider-text .slider-button .btn--secondary:hover, .slider-carousel .slider-text .slider-button .btn--secondary:focus {
          background: #3b3b3b; }

.custom-top .description {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 43px; }

.section-product-new .owl-theme .owl-controls .owl-buttons div, .related-products .owl-theme .owl-controls .owl-buttons div {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #e1e1e1;
  color: #000;
  height: 40px;
  margin-top: -20px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease 0s;
  width: 40px;
  z-index: 2;
  overflow: hidden; }
  .section-product-new .owl-theme .owl-controls .owl-buttons div:hover, .related-products .owl-theme .owl-controls .owl-buttons div:hover {
    border-color: black;
    transition: all 0.8s ease 0s;
    background: transparent; }
    .section-product-new .owl-theme .owl-controls .owl-buttons div:hover:before, .related-products .owl-theme .owl-controls .owl-buttons div:hover:before {
      color: #fff; }
.section-product-new .owl-theme .owl-controls .owl-buttons div::before, .related-products .owl-theme .owl-controls .owl-buttons div::before {
  font-size: 24px;
  line-height: 36px;
  color: #000; }

.section-content {
  margin-top: 10px; }

.section-testimonial .testimonials {
  cursor: ew-resize; }
.section-testimonial .testimonials-body {
  padding: 55px 0; }
.section-testimonial .testimonials-quote {
  margin: 0 auto; }
  @media screen and (min-width: 769px) {
    .section-testimonial .testimonials-quote {
      width: 70%; } }
  .section-testimonial .testimonials-quote p {
    position: relative;
    color: #fff;
    font-size: 32px;
    line-height: 42px;
    position: relative; }
    .section-testimonial .testimonials-quote p:after {
      content: "";
      width: 31px;
      height: 26px;
      background: url("quote.png");
      position: absolute; }
      @media screen and (min-width: 769px) {
        .section-testimonial .testimonials-quote p:after {
          left: 0;
          top: -4px; } }
      @media screen and (max-width: 769px) {
        .section-testimonial .testimonials-quote p:after {
          left: calc(50% - 15px);
          top: -25px; } }
.section-testimonial .testimonials-profile {
  margin-top: 20px; }
  .section-testimonial .testimonials-profile span {
    color: #fff;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.09);
    font-size: 11px;
    text-transform: uppercase;
    padding: 3px 15px; }

.section-blog {
  padding-top: 100px; }

.effect-special {
  position: relative; }
  .effect-special img {
    transform-origin: right left;
    transition: transform 1s; }
  .effect-special:hover img {
    transform: rotate(5deg); }

.section-custom-services .feature-box {
  margin-bottom: 35px; }
  .section-custom-services .feature-box:first-child {
    margin-top: 70px; }
  .section-custom-services .feature-box .fbox-icon {
    float: left;
    margin: 0  30px 0 0;
    transition: all 0.4s ease 0s;
    width: 40px; }
  .section-custom-services .feature-box .fbox-content {
    float: left;
    width: calc(100% - 70px); }
  .section-custom-services .feature-box h4, .section-custom-services .feature-box .h4 {
    font-size: 15px;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: 15px; }
  .section-custom-services .feature-box .description {
    font-size: 13px;
    line-height: 24px; }

.template-article h1.title, .template-article .title.h1 {
  font-size: 30px;
  font-weight: normal;
  text-transform: none; }
.template-article .author, .template-article .date, .template-article .tags_article {
  display: inline-block;
  margin-right: 10px; }
  .template-article .author i, .template-article .date i, .template-article .tags_article i {
    margin-right: 10px; }
.template-article .author span {
  color: #000000;
  letter-spacing: -1px;
  text-transform: capitalize; }
.template-article .rte {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 92px; }
  .template-article .rte img {
    margin-bottom: 25px; }

.next-prev span {
  padding: 15px;
  font-size: 13px;
  display: inline-block; }
  .next-prev span i {
    font-size: 24px;
    line-height: 24px;
    margin: 0 10px;
    -o-transform: translate3d(0, 4px, 0);
    -moz-transform: translate3d(0, 4px, 0);
    -ms-transform: translate3d(0, 4px, 0);
    -webkit-transform: translate3d(0, 4px, 0);
    transform: translate3d(0, 4px, 0); }
  .next-prev span:hover i {
    color: #999; }

.single-blog {
  margin-bottom: 40px; }
  .single-blog h3, .single-blog .h3 {
    font-size: 30px;
    font-weight: normal;
    text-transform: none; }
  .single-blog .comment .rte {
    margin-bottom: 0; }
  .single-blog .comment strong {
    color: #000;
    font-weight: normal; }

.section-banner-custom {
  padding-top: 90px;
  padding-bottom: 28px; }

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

.section-blog {
  padding-bottom: 53px; }

.section-custom-services {
  padding-bottom: 50px; }

.template-404 .image {
  background: rgba(0, 0, 0, 0) url("404.png");
  display: block;
  height: 146px;
  width: 312px;
  float: left;
  margin-right: 20px; }
.template-404 .page_error {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 50px; }
  .template-404 .page_error .error_content {
    padding-bottom: 50px; }
    .template-404 .page_error .error_content h1, .template-404 .page_error .error_content .h1 {
      font-size: 36px;
      font-weight: normal;
      letter-spacing: -2px;
      text-transform: capitalize; }
.template-404 .group-button {
  margin-bottom: 115px;
  margin-top: 60px;
  text-align: center;
  width: 100%; }
  .template-404 .group-button a {
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    text-transform: capitalize;
    color: #fff;
    border-radius: 3px;
    transition: all ease 300ms;
    background: black;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    padding: 0 35px;
    border: none;
    z-index: 3;
    letter-spacing: 0;
    margin: 10px 5px; }
    .template-404 .group-button a:hover.back-shop {
      background: black;
      color: #fff; }
    .template-404 .group-button a:hover.back-home {
      background: #fff;
      color: #000; }
    .template-404 .group-button a.back-shop {
      background: #fff;
      color: #000; }

.ajaxcart__footer .cart__checkout {
  border: none;
  color: #fff; }
  .ajaxcart__footer .cart__checkout:hover {
    background-color: #3b3b3b; }

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

#cart-free-gift-message {
  text-align: left;
  font-weight: bolder;
  margin-top: 25px;
  margin-bottom: 25px; }
  @media only screen and (max-width: 480px) {
    #cart-free-gift-message {
      text-align: center; } }

.dynamic-content {
  display: none; }

.login-forms-container {
  margin-top: 100px;
  margin-bottom: auto;
  width: 100%; }

.account-info-container {
  margin-bottom: 30px;
  width: 100%; }

.account-privacy-container {
  margin-bottom: 30px;
  width: 100%; }

.account-verify-message {
  font-size: 13px;
  font-weight: normal;
  text-align: center; }

.account-verify-fine-print {
  font-size: 11px;
  font-weight: normal;
  text-align: center; }

.discount-promo {
  color: #ff0000; }

.product-tagline {
  color: #000;
  font-weight: bold; }

.discount-promo-price {
  color: #ff0000; }

/*==============================================
	#Cart Page Shipping Calculator
================================================*/
.shipping-calculator-container {
  margin-top: 20px;
  margin-bottom: 20px; }
  .shipping-calculator-container .shipping-calculator {
    border: 1px solid #ebebeb;
    border-radius: 2px;
    border-spacing: 0px;
    padding: 16px 0 16px 16px; }
    .shipping-calculator-container .shipping-calculator #shipping-calculator .field {
      float: left;
      margin: 0 0.6em 1em 0;
      font-size: 15px; }
    .shipping-calculator-container .shipping-calculator #shipping-calculator .field label {
      display: block;
      margin: 0 0 .3em;
      font-size: 1em; }
    .shipping-calculator-container .shipping-calculator #shipping-calculator .field input[type=text] {
      display: inline-block;
      width: 150px;
      max-width: 100%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      margin: 0;
      padding: .4em .6em;
      font-size: 1em;
      border: 1px solid rgba(0, 0, 0, 0.15);
      outline: 0;
      border-radius: .3125em;
      -webkit-appearance: none; }
    .shipping-calculator-container .shipping-calculator #shipping-calculator .field:last-child:before {
      content: "\00A0";
      display: block;
      margin: 0 0 .3em;
      font-size: 1em; }
    .shipping-calculator-container .shipping-calculator #shipping-calculator #wrapper-response {
      clear: both; }
    @media (max-width: 800px) {
      .shipping-calculator-container .shipping-calculator #shipping-calculator .field {
        float: none; }
      .shipping-calculator-container .shipping-calculator #shipping-calculator .field:last-child:before {
        content: none; } }

/* Page - Attentive Landing */
.page__attentive-landing {
  padding-top: 0px;
  padding-bottom: 0px; }

.page__attentive-landing .attn-landing__container {
  margin-top: -35px;
  padding-left: 0;
  padding-right: 0; }

.page__attentive-landing iframe {
  min-height: 850px;
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0; }

.page__attentive-landing .rte:last-child {
  margin-bottom: -6px; }

@media only screen and (min-width: 750px) {
  .page__attentive-landing {
    padding-top: 0px;
    padding-bottom: 0px; }

  .page__attentive-landing .attn-landing__container {
    margin-top: -155px; }

  .page__attentive-landing iframe {
    min-height: 1200px; } }
