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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: #ffffff;
  overflow-x: hidden; }
  body.template-index .site-footer {
    margin-top: 0; }

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

.wrapper {
  *zoom: 1;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  /* @include at-query ($min, $small) {
	padding: 0 $gutter;
} */ }
  .wrapper:after {
    content: '';
    display: table;
    clear: both; }

.main-content {
  display: block;
  /* 	margin-top: $gutter; */ }
  .template-index .main-content {
    margin-top: 0; }

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

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

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

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

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

/*============================================================================
#Typography
==============================================================================*/
body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #424242;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

input,
textarea,
button,
select {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Arial", sans-serif;
  color: #696969;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

.product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Giới hạn số dòng ở đây, ví dụ là 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*text-overflow: ellipsis;
    height: 2.8em; /* Điều chỉnh chiều cao phù hợp với số dòng và kích thước font */ }
  .product-name a {
    color: #000;
    /* hoặc giá trị bạn muốn */ }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .product-tabs .nav-tabs {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  margin: 0 0 0.5em;
  line-height: 1.4;
  text-transform: unset;
  letter-spacing: 1px; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a, .product-tabs .nav-tabs a {
    text-decoration: none;
    font-weight: italic; }

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

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

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

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

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

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

p {
  margin: 0 0 15px 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 30px;
  padding: 15px 30px;
  border-left: 1px solid #ebebeb; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: '\2014 \0020'; }

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

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

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

/*================ Section Headers ================*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .product-tabs .nav-tabs,
.section-header {
  margin-bottom: 20px;
  color: #474747; }

@media screen and (min-width: 769px) {
  .section-header {
    /* display: table;
		width: 100%; */ }
  .section-header__title {
    margin-bottom: 12px; }
  .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: 30px; } }

.section-header__right .form-horizontal,
.section-header__right .collection-view {
  display: inline-block;
  vertical-align: middle; }

@media screen and (min-width: 481px) {
  .section-header__right label + select {
    margin-left: 15px; } }

.collection-view {
  display: inline-block;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  .collection-view button {
    height: 35px; }
  @media screen and (min-width: 769px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  margin: 3px 0 0 10px;
  padding: 8px 10px;
  color: #ebebeb;
  line-height: 1;
  border: 1px solid #ebebeb; }
  .change-view:hover, .change-view:focus {
    color: #000; }

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

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

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

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

a:hover,
a:focus {
  color: #20385A; }

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: 10px 20px;
  width: auto;
  margin: 0;
  line-height: 0.42;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
  text-transform: unset;
  font-size: 13px;
  /*================ Set primary button colors - can override later ================*/
  background-color: #ec576B;
  color: #fff; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover, .rte .btn--secondary:hover {
    background-color: #e42d46;
    color: #fff; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active, .rte .btn--secondary:active,
  .rte .btn:focus, .rte .btn--secondary:focus {
    background-color: #e42d46;
    color: #fff; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled], .rte [disabled].btn--secondary,
  .rte .btn.disabled, .rte .disabled.btn--secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

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

.btn-default {
  background-color: #000;
  border: none; }
  .btn-default:hover {
    background-color: #00a4e0; }

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

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

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

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

/*============================================================================
#Lists
==============================================================================*/
ul, ol {
  margin: 0 0 15px 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: 15px;
  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: 12px;
    padding-right: 10px; }
  .table--responsive.cart-table img {
    margin: 0 auto; }
  .table--responsive.cart-table .js-qty, .table--responsive.cart-table .ajaxcart__qty {
    float: right; } }

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

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

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

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

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

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

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

img,
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: 15px; }

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

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

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

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

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

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

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

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #e7eaeb;
  /* max-width: 100%; */
  padding: 10px;
  border-radius: 0;
  background: #f2f5f7; }
  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.hstatic.net/themes/1000153276/1001507262/14/ico-select.svg?v=358");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select,
  .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

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

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

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

label[for] {
  cursor: pointer; }

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

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

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

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group
  .rte .input-group-btn:first-child > .btn--secondary,
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary,
  .input-group
  .rte input[type="hidden"]:first-child + .input-group-btn > .btn--secondary {
    border-radius: 0 0 0 0; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary,
  .input-group
  .rte .input-group-btn:last-child > .btn--secondary {
    border-radius: 0 0 0 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: 42px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-icons li {
  margin: 0 15px 15px;
  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: #3d3d3d; }
    .social-icons li a:hover {
      color: #242424; }

/*============================================================================
#Pagination
==============================================================================*/
.pagination {
  border: 1px dashed #ebebeb;
  display: block;
  font-size: 12px;
  margin: 0 0 30px;
  padding: 15px;
  text-transform: unset; }
  .pagination > span {
    display: inline-block;
    line-height: 1;
    padding: 10px 13px; }
  .pagination a {
    display: block;
    color: #000; }
  .pagination .page.current {
    background: #00a4e0;
    color: #fff; }

/*============================================================================
#Site Header
==============================================================================*/
.site-header {
  background: #fff; }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }

.site-header__topbar {
  /* font-size: 12px;
	color:$colorTopBarText;
	font-weight: 300; */
  /* a{
	color:#000;
	&:hover{
	color:$colorPrimary;
}
} */ }

.site-header__bottom {
  background: #834453;
  color: #696969;
  height: 55px; }

.site-header__logo {
  margin: 0;
  /* 	margin: 18px;
	margin-left: 80px;
	@include at-query ($min, $large) {
	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: -4px auto 0 15px; }

.line-style {
  position: relative;
  padding: 0 10px; }
  .line-style:before {
    background: #e4e4e4;
    content: "";
    height: 10px;
    position: absolute;
    right: 0;
    top: 7px;
    width: 1px; }

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

.site-header__cart-toggle {
  color: #666;
  padding-left: 30px;
  position: relative; }
  .site-header__cart-toggle #CartCost {
    display: none; }
  .site-header__cart-toggle #CartCount {
    background: #00a4e0;
    color: #666;
    display: inline-block;
    border-radius: 3px;
    font-size: 11px;
    position: absolute;
    left: -20px;
    text-align: center;
    top: -22px;
    width: 29px;
    height: 21px;
    line-height: 21px; }
    .site-header__cart-toggle #CartCount:before {
      content: "";
      right: -4px;
      border-left: 4px solid #b7c7d0;
      position: absolute;
      top: 7px;
      border-bottom: 4px solid transparent;
      border-top: 4px solid transparent; }

.site-header__search {
  width: 70px;
  position: relative; }
  .site-header__search .search-bar {
    position: italic;
    width: 100%; }
    @media screen and (max-width: 768px) {
      .site-header__search .search-bar {
        margin-left: auto;
        margin-right: auto; } }
    .site-header__search .search-bar:hover input[type="search"] {
      width: 250px;
      visibility: visible;
      transition: all ease 0.3s; }
    .site-header__search .search-bar input[type="search"] {
      border: 1px solid #ebebeb;
      position: absolute;
      width: 37px;
      right: 0;
      top: -8px;
      z-index: 2;
      visibility: hidden;
      -webkit-transition: all ease 0.3s;
      -moz-transition: all ease 0.3s;
      -ms-transition: all ease 0.3s;
      -o-transition: all ease 0.3s;
      transition: all ease 0.3s;
      border-radius: 0;
      height: 35px; }
    .site-header__search .search-bar button {
      background: transparent;
      height: auto;
      padding: 7px 10px;
      top: -4px; }

/* box service */
/*  @include keyframes(hover-imagecategory) {  0%{transform: perspective(200px) rotate3d(0,1,0,-90deg) translateX(-100%);
}
100% {
transform:perspective(200px) rotate3d(0,1,0,0deg) translateX(0px);
}
} */
.box-service h5, .box-service .h5 {
  font-size: 22px;
  color: #000;
  margin-bottom: 5px;
  text-transform: capitalize; }

.box-service .body {
  overflow: hidden; }

.box-service .left {
  margin-right: 15px;
  margin-top: 10px; }

.box-service:hover .left {
  animation: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s normal none 1 running hover-imagecategory; }

.brands-carousel {
  margin-left: 200px; }
  .brands-carousel .owl-theme .owl-controls {
    position: relative; }
    .brands-carousel .owl-theme .owl-controls .owl-buttons div {
      margin-top: -45px; }
      .brands-carousel .owl-theme .owl-controls .owl-buttons div.owl-prev {
        left: -100px; }
      .brands-carousel .owl-theme .owl-controls .owl-buttons div.owl-next {
        left: -58px; }
  .brands-carousel .owl-theme .owl-controls {
    margin: 0; }
  .brands-carousel a img {
    margin: 0 auto;
    text-align: center;
    transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform-style: preserve-3d;
    -webkit-transition: all 600ms ease-in-out 0s;
    -o-transition: all 600ms ease-in-out 0s;
    transition: all 600ms ease-in-out 0s; }
  .brands-carousel a:hover img {
    transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg); }

.custom-bottom {
  z-index: 1;
  position: relative;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: unset;
  font-weight: bold;
  color: #fff; }
  .custom-bottom h3, .custom-bottom .h3 {
    color: white;
    font-family: "Kaushan Script", cursive;
    font-size: 36px;
    font-weight: normal;
    position: relative;
    margin-bottom: 10px; }
    .custom-bottom h3:before, .custom-bottom .h3:before {
      background: #fff;
      bottom: -5px;
      content: "";
      height: 2px;
      left: 50%;
      margin-left: -180px;
      position: absolute;
      text-align: center;
      width: 365px; }
  .custom-bottom h2, .custom-bottom .h2 {
    color: #eadd4b;
    font-family: 'Lato', sans-serif;
    font-size: 72px;
    font-weight: 900;
    text-transform: unset;
    margin-bottom: 0; }
  .custom-bottom .des-1 {
    font-size: 18px;
    color: #0eba9e;
    position: relative;
    margin-bottom: 40px; }
    .custom-bottom .des-1:before {
      background: #fff;
      bottom: -20px;
      content: "";
      height: 2px;
      left: 50%;
      margin-left: -180px;
      position: absolute;
      text-align: center;
      width: 365px; }

.ultility-item {
  position: relative; }
  .ultility-item span.icon-ultility {
    font-size: 14px;
    display: block;
    color: #666;
    cursor: pointer; }
  .ultility-item ul {
    list-style: none;
    margin: 0;
    visibility: hidden;
    background: #fff;
    width: 200px;
    position: absolute;
    right: 0;
    box-shadow: 0px 3px 5px 0px;
    padding: 20px;
    z-index: 2; }
    .ultility-item ul li {
      margin: 0;
      padding: 7px 0;
      border-bottom: 1px solid #ebebeb;
      font-style: normal; }
      .ultility-item ul li:last-child {
        border-bottom: none; }
      .ultility-item ul li i {
        padding-right: 5px; }
    .ultility-item ul a, .ultility-item ul span {
      font-size: 12px;
      position: relative;
      text-transform: unset;
      color: #696969; }
      .ultility-item ul a:hover, .ultility-item ul span:hover {
        color: #00a4e0; }
  .ultility-item:hover ul {
    visibility: visible;
    transition: all ease 0.3s; }

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

/*============================================================================
#Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  position: relative; }
  .nav-bar .medium-down--hide {
    background-color: #834453; }
  .nav-bar .border {
    border-color: #f3f3f3; }

.site-nav, .site-nav--mobile {
  font-size: 1em;
  cursor: default;
  margin: 0;
  display: inline-block;
  text-align: left; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block; }

.verticalmenu {
  position: relative; }
  .verticalmenu .vertical-icon {
    background: #00a4e0;
    color: #666;
    cursor: pointer;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 50px; }

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

.site-nav__link {
  display: block;
  text-decoration: none;
  padding: 8px 0;
  padding-right: 25px;
  color: #696969;
  text-transform: unset;
  font-size: 14px;
  font-weight: 600; }
  .site-nav__link .fa {
    line-height: 18px;
    margin-left: 3px; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #696969; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    font-size: 10px;
    padding-left: 7.5px; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

.icon-menu {
  border: 1px solid #ebebeb;
  display: inline-block;
  font-size: 15px;
  padding: 5px 15px;
  text-align: center; }

/*================ Dropdowns ================*/
.main-menu {
  position: relative; }

.site-nav__dropdown {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  translate: 0px, 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  visibility: hidden;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 9999;
  min-width: 200px;
  top: 110%;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  -webkit-animation: 0.5s ease 0s normal forwards 1 running animationmenus;
  -o-animation: 0.5s ease 0s normal forwards 1 running animationmenus;
  animation: 0.5s ease 0s normal forwards 1 running animationmenus;
  -webkit-transform-origin: 50% 50% 0;
  -moz-transform-origin: 50% 50% 0;
  -ms-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  list-style: none; }
  .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 {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    top: 173%; }
  .site-nav__dropdown h3, .site-nav__dropdown .h3 {
    text-transform: unset;
    font-size: 16px; }
  .site-nav__dropdown ul.super {
    margin: 0 0 40px; }
    .site-nav__dropdown ul.super li a:hover {
      color: #00a4e0; }
    .site-nav__dropdown ul.super:first-child a {
      border-top: none; }
  .site-nav__dropdown a {
    color: #474747;
    display: block;
    text-transform: none;
    padding-bottom: 10px; }

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

.megamenu-dropdown {
  position: static !important; }
  .megamenu-dropdown .site-nav__dropdown {
    width: 100%;
    padding: 30px; }
    .megamenu-dropdown .site-nav__dropdown h3, .megamenu-dropdown .site-nav__dropdown .h3 {
      font-size: 14px;
      color: #00a4e0; }
    .megamenu-dropdown .site-nav__dropdown ul {
      margin-left: 0; }
      .megamenu-dropdown .site-nav__dropdown ul a {
        padding-left: 0 !important; }
  .megamenu-dropdown .grid__item.large--one-fifth {
    border-left: 1px solid #ebebeb;
    min-height: 250px; }
    .megamenu-dropdown .grid__item.large--one-fifth:first-child {
      border-left: none; }

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

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

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

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav__item ul li:after {
    border-bottom: 1px dashed #ccc;
    bottom: 0;
    content: "";
    left: 30px;
    position: absolute;
    right: 15px;
    width: 70%; }
  .mobile-nav__item ul a {
    padding: 10px 15px; }
  .mobile-nav > .mobile-nav__item {
    background-color: #fff; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #f2f2f2; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #333;
  padding: 15px;
  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__has-sublist {
  display: table;
  width: 100%; }
  .mobile-nav__has-sublist .mobile-nav__link {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

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

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

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

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav__sublist img {
    margin-bottom: 15px; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: italic;
    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: 30px;
    font-weight: normal; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.mobile-nav__sublist img {
  margin-bottom: 15px; }

.mobile-nav--expanded + .mobile-nav__sublist {
  visibility: visible;
  max-height: inherit;
  transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }

.mobile-nav__sublist .mobile-nav__item:after {
  top: 0;
  bottom: auto; }

.mobile-nav__sublist .mobile-nav__link {
  padding-left: 30px;
  font-weight: normal; }

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

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

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

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

#PageContainer {
  overflow: hidden; }

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

.is-moved-by-drawer {
  /* @include promote-layer(); */
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }

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

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

.drawer__title {
  width: 100%; }

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

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

/*============================================================================
#Site Footer
==============================================================================*/
.site-footer {
  margin-top: 80px;
  /* 	.site-footer__links{
	ul.links{   
	padding:20px 0;
	display: inline-block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	li{
	display: inline-block;
	a{
	color: #fff;
	//@include transition(all 0.35s);
	text-transform: unset;
	font-size: 12px;
	padding:0 10px;
	&:hover{
	text-shadow: -2px -2px 1px #666, -1px -1px 1px #666, 1px 1px 1px #666, 2px 3px 1px rgba(28, 67, 103, 0.498), 3px -1px 6px #111;
}
}
}
}    
} */ }
  .site-footer h4, .site-footer .h4 {
    color: #f5f5f5;
    font-size: 14px; }
  .site-footer .site-footer__newsletter .newsletter-form {
    display: inline-block;
    width: 480px;
    border: 1px solid #ebebeb;
    text-align: left;
    vertical-align: middle; }
    @media screen and (max-width: 480px) {
      .site-footer .site-footer__newsletter .newsletter-form {
        width: 200px; }
        .site-footer .site-footer__newsletter .newsletter-form input {
          width: 200px; }
        .site-footer .site-footer__newsletter .newsletter-form label {
          display: none; } }
    .site-footer .site-footer__newsletter .newsletter-form input {
      border: none;
      width: 333px;
      background: #00a4e0; }
    .site-footer .site-footer__newsletter .newsletter-form label {
      font-size: 18px;
      text-transform: unset;
      margin: 6px 0px 6px 10px;
      line-height: 30px;
      padding-right: 10px;
      border-right: 1px solid #ebebeb; }
  .site-footer #mail {
    border: none;
    background: #f7f7f7;
    box-shadow: none;
    height: 40px;
    border-radius: 0; }
  .site-footer .input-group-addon {
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px; }
  .site-footer #subscribe {
    padding: 10px 18px;
    color: #fff;
    height: 40px;
    font-size: 14px;
    font-family: 'fontawesome'; }
  .site-footer .site-footer__main {
    background: #00a4e0;
    padding: 55px 0; }
    .site-footer .site-footer__main .wrapper {
      overflow: hidden; }
    .site-footer .site-footer__main ul li {
      margin-bottom: 5px; }
      .site-footer .site-footer__main ul li a {
        color: #f5f5f5; }
        .site-footer .site-footer__main ul li a:hover {
          color: #a9c9f6; }
    .site-footer .site-footer__main .social li {
      padding: 0;
      margin: 0; }
      .site-footer .site-footer__main .social li a {
        /* 	border: 1px solid #313131;
					border-radius: 10%;
					cursor: pointer;
					height: 30px;
					line-height: 30px;
					margin-right: 5px;
					text-align: center;
					text-decoration: none;
					width: 30px;
					font-size: 14px;
					color: #999; */
        padding-right: 15px;
        /* &.fa-facebook:hover {
					border: 1px solid #346da6;
					color: #346da6;
				}
					&.fa-twitter:hover {
					border: 1px solid #5cadfd;
					color: #5cadfd;
				}
					&.fa-google-plus:hover {
					border: 1px solid #c9242d;
					color: #c9242d;
				}
					&.fa-pinterest:hover {
					border: 1px solid #fb9e3a;
					color: #fb9e3a;
				}
					&.fa-rss:hover {
					border: 1px solid #f05423;
					color: #f05423;
				} */ }
    .site-footer .site-footer__main .column {
      position: relative; }
      .site-footer .site-footer__main .column:before {
        border-right: 1px solid #ebebeb;
        content: "";
        height: 300%;
        position: absolute;
        right: 0;
        top: 0;
        width: 1px; }
      .site-footer .site-footer__main .column.last:before {
        right: -15px; }
  .site-footer ul {
    list-style: none;
    margin: 0; }
  .site-footer .site-footer__copyright .wrapper {
    padding: 25px 0 55px;
    color: #474747;
    border-top: 1px solid #ebebeb; }
    .site-footer .site-footer__copyright .wrapper a {
      text-transform: unset;
      font-weight: 900; }
      .site-footer .site-footer__copyright .wrapper a:hover {
        color: #00a4e0; }
    .site-footer .site-footer__copyright .wrapper ul {
      margin-bottom: 10px; }
      .site-footer .site-footer__copyright .wrapper ul li {
        position: relative;
        padding: 0 10px; }
        .site-footer .site-footer__copyright .wrapper ul li:before {
          background: #6f6f6f;
          content: "";
          height: 10px;
          position: absolute;
          right: 0;
          top: 7px;
          width: 1px; }
  .site-footer address span {
    padding-left: 30px;
    position: relative; }

/*============================================================================
#Index page
==============================================================================*/
h2.title, .title.h2 {
  color: #474747;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-transform: unset;
  padding-bottom: 20px;
  margin-bottom: 20px; }

.heading-left {
  text-align: left;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  margin-top: 0; }

.tab-products .tab-title {
  border: 1px dashed #ebebeb;
  margin-bottom: 30px; }

.tab-products h2.title, .tab-products .title.h2 {
  border: none;
  float: left;
  margin: 0; }

.tab-products .nav-tabs {
  float: left;
  margin: 0; }
  .tab-products .nav-tabs li:first-child a:before {
    content: none; }
  .tab-products .nav-tabs a {
    color: #ababab;
    font-size: 11px;
    font-weight: 900;
    text-transform: unset; }

/*================ #Slider Carousel ================*/
.slider-carousel {
  overflow: hidden; }
  .slider-carousel.owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: -50px;
    border-right: none; }
  .slider-carousel.owl-theme .owl-controls .owl-buttons div.owl-next {
    right: 0;
    margin-right: -52px; }
  .slider-carousel.owl-theme .owl-controls .owl-buttons div {
    margin-top: 0;
    transform: translate(0, -50%);
    background-color: #00a4e0;
    border: none; }
    .slider-carousel.owl-theme .owl-controls .owl-buttons div:before {
      color: #fff; }
  .slider-carousel.owl-theme .owl-controls .owl-buttons div:hover::before {
    color: #fff; }
  .slider-carousel.owl-theme .owl-controls {
    margin-top: 0; }
  .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; }

.slider-carousel {
  position: relative; }
  .slider-carousel .owl-pagination {
    bottom: 15px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%); }
  .slider-carousel.owl-theme .owl-controls .owl-page span {
    width: 12px;
    height: 12px; }
  .slider-carousel .slider-text {
    position: absolute;
    text-align: center;
    height: 25%;
    width: 50%;
    font-size: 18px;
    left: 20%;
    right: 20%;
    color: #000; }
    .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 {
      font-size: 60px;
      line-height: 60px;
      font-style: medium 500;
      position: relative;
      color: #fff; }
    .slider-carousel .slider-text .txt2 {
      font-size: 40px;
      line-height: 60px;
      font-style: light 300;
      position: relative;
      color: #fff; }
    .slider-carousel .slider-text .txt3 {
      font-style: italic; }
    .slider-carousel .slider-text .slider-button {
      display: inline-block;
      margin-top: 30px;
      background: #00a4e0;
      position: relative; }
      @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:before {
        background-color: transparent;
        border-radius: 0 0 2px 2px;
        bottom: 0;
        content: "";
        height: 3px;
        left: 0;
        position: absolute;
        transition: all 0.3s ease-in-out 0s;
        width: 100%;
        z-index: 9; }
      .slider-carousel .slider-text .slider-button:hover:before {
        border-radius: 1px;
        height: 100%;
        width: 100%;
        z-index: 1;
        background-color: #9db8c8; }
      .slider-carousel .slider-text .slider-button .btn--secondary {
        font-size: 12px;
        color: #fff;
        transition: all ease 300ms;
        background: transparent;
        border-radius: 3px;
        display: inline-block;
        height: 35px;
        line-height: 35px;
        position: relative;
        padding: 0 40px;
        border: none;
        z-index: 3;
        letter-spacing: 2px; }

/*============================================================================
#Sidebar
==============================================================================*/
.sidebar h2.title, .sidebar .title.h2 {
  text-align: left;
  background-position: left bottom;
  position: relative;
  overflow: hidden; }
  .sidebar h2.title:before, .sidebar .title.h2:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #00a4e0;
    left: 79px;
    bottom: 4px;
    position: absolute; }

.sidebar .widget__content {
  padding: 15px 0; }

.sidebar .widget {
  margin-bottom: 30px; }
  .sidebar .widget.widget-category ul li a {
    text-transform: unset;
    font-weight: 900;
    letter-spacing: 1px;
    color: #00a4e0;
    padding-bottom: 12px; }
    .sidebar .widget.widget-category ul li a:hover {
      color: #1281AA; }

.sidebar ul {
  list-style: none;
  margin: 0; }

.sidebar ul li a {
  display: block;
  color: #696969; }

.sidebar .product-meta a {
  color: #696969; }
  .sidebar .product-meta a:hover {
    color: #00a4e0; }

.sidebar .widget-blog-recent .article {
  border-bottom: 1px dashed #ebebeb;
  padding: 20px 0; }
  .sidebar .widget-blog-recent .article:first-child {
    padding-top: 0; }
  .sidebar .widget-blog-recent .article:last-child {
    border: none;
    padding-bottom: 0; }

.widget-blog-tags .widget__content {
  padding: 20px; }
  .widget-blog-tags .widget__content li a {
    font-size: 12px; }

.widget-tags li {
  border: 1px solid #eeeeee;
  display: inline-block;
  padding: 5px 15px; }

.widget-product .item {
  overflow: hidden;
  padding-bottom: 30px;
  /*  &:first-child{
		padding-top: 30px;
	} */ }
  .widget-product .item .product-price {
    margin: 0; }

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

/*============================================================================
#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 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  /*  width: 100%; */ }
  .product-container .name-price {
    height: 100px;
    text-align: center;
    overflow: hidden; }
  .product-container .swatch {
    position: absolute;
    margin: 0;
    text-align: center;
    width: 10px;
    left: -100px;
    bottom: 0; }
  .product-container .swatch .swatch-element {
    display: inline-block;
    float: none;
    margin-right: 3px; }
  .product-container .swatch label {
    text-indent: -9999em;
    border-radius: 100%;
    min-width: 13px !important;
    height: 13px !important;
    border: none;
    margin-bottom: 3px !important; }
  .product-container .product-actions {
    transition: all 400ms ease 0s; }
  .owl-item .product-container {
    margin-left: 15px;
    margin-right: 15px; }
  .product-container .product-image {
    position: relative;
    text-align: center;
    overflow: hidden; }
  .product-container .product-thumbnail {
    position: relative; }
  .product-container .back-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease 300ms; }
  .product-container .btn, .product-container .btn--secondary {
    background: #ec576B;
    color: #fff;
    border-color: #fcfcfc;
    border: none;
    font-size: 15px;
    border-radius: 0;
    padding: 10px 5px;
    opacity: 0.9;
    position: relative; }
    .product-container .btn span, .product-container .btn--secondary span {
      border: solid 0px #fff;
      padding: 5px 10px;
      font-weight: 600; }
    .product-container .btn.cart:before, .product-container .cart.btn--secondary:before {
      content: none; }
    .product-container .btn:hover, .product-container .btn--secondary:hover {
      color: #fff; }
  .product-container form {
    display: inline-block; }
    .product-container form.add-to-cart .btn, .product-container form.add-to-cart .btn--secondary {
      border-left: 0;
      padding: 0; }
      .product-container form.add-to-cart .btn span, .product-container form.add-to-cart .btn--secondary span {
        color: #000;
        font-size: 12px;
        padding: 0; }
      .product-container form.add-to-cart .btn i, .product-container form.add-to-cart .btn--secondary i {
        font-size: 10px;
        font-weight: 900;
        padding-right: 5px; }
  .product-container .product-meta {
    padding: 20px 0 0; }
    .product-container .product-meta h4, .product-container .product-meta .h4 {
      font-size: 14px;
      text-transform: capitalize;
      font-weight: 400;
      margin: 0;
      line-height: 20px;
      /*max-height: 60px;*/
      overflow: hidden; }
    .product-container .product-meta a {
      color: #696969; }
    .product-container .product-meta .product-price {
      line-height: 20px; }
  .product-container:hover .back-img {
    visibility: visible;
    opacity: 1;
    transition: all ease 300ms;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .product-container .label {
    background-color: #ec576b;
    font-size: 14px;
    padding: 3px 12px;
    text-transform: unset;
    color: white;
    font-weight: 600;
    left: 20px;
    position: absolute;
    text-align: center;
    z-index: 3;
    height: 20px;
    line-height: 16px;
    top: 20px;
    border-radius: 3px; }
    .product-container .label.new {
      background: #17c187;
      left: 20px; }
    .product-container .label.sold-out {
      top: 42px; }

.product-countdown {
  text-align: center; }
  .product-countdown > span {
    font-size: 14px; }
  .product-countdown > div {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: red; }
    .product-countdown > div.countdown-hrs > div, .product-countdown > div.countdown-mins > div {
      display: inline-block; }
    .product-countdown > div.countdown-hrs:after, .product-countdown > div.countdown-mins:after {
      content: ':'; }

.product-price {
  font-size: 13px;
  font-weight: 900;
  color: #20385A; }

.collection__image {
  margin-bottom: 30px; }

.collection__sort {
  padding: 10px 20px;
  border: 1px solid #ebebeb; }
  .collection__sort label {
    text-transform: unset;
    font-size: 12px; }
  .collection__sort #SortBy {
    border: 1px solid #ddd;
    border-radius: 0;
    padding-bottom: 5px;
    padding-top: 5px; }

.collection__list {
  border: 1px solid #ebebeb; }

.product-list .product-name {
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400; }
  .product-list .product-name a {
    color: #696969; }

.product-list .wapper {
  border-top: 1px dashed #ebebeb;
  padding-top: 30px; }

.product-list .grid__item:first-child .wapper {
  border: none;
  padding-top: 0; }

/* product tabs */
.product-tabs {
  margin: 30px 0 40px; }
  .product-tabs .nav-tabs {
    border: 1px solid #ebebeb;
    margin: 0; }
    .product-tabs .nav-tabs li a {
      color: #ccc;
      font-size: 11px;
      padding: 10px 20px;
      text-transform: unset; }
  .product-tabs .tab-content {
    padding: 20px 0 0; }

/*============================================================================
#Collection Filters
==============================================================================*/
.filter--active {
  color: #00a4e0; }

.filter-block .clear {
  border: 1px solid #f00;
  border-radius: 50%;
  color: #000;
  float: right;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  height: 20px;
  line-height: 15px;
  padding: 0;
  text-align: center;
  text-transform: none;
  width: 20px; }

/*============================================================================
#Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin: 0 0 30px;
  text-align: center; }
  .breadcrumb.bgFull:before {
    background: #eaebed; }
  .breadcrumb .inner {
    position: relative; }
  .breadcrumb > img {
    position: absolute;
    left: 0;
    max-width: italic; }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    color: #999;
    font-size: 13px; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }
  .breadcrumb span:last-child {
    color: #474747; }

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

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

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

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

.spr-icon-star-empty {
  color: #696969; }

.spr-icon-star {
  color: #ffb80c; }

.cloud-zoom-big {
  overflow: hidden; }

.cloud-zoom-lens {
  background-color: rgba(0, 0, 0, 0.2);
  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; }

.product-single__photos img {
  width: 100%; }

.product-single__photos a {
  display: block;
  text-align: center; }

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

.product-single__thumbnails {
  max-height: 615px;
  overflow: hidden;
  margin: 0; }
  .product-single__thumbnails .product__thumbnails {
    width: 80px;
    margin: 0 10px 0 0;
    border: 1px solid #ebebeb;
    display: inline-block; }
    @media screen and (max-width: 480px) {
      .product-single__thumbnails .product__thumbnails {
        float: left;
        margin-right: 4px; } }

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

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

.product-single .product-countdown {
  text-align: left !important; }

.product-single #AddToCart i {
  font-size: 14px; }

.product-single .product-price {
  font-size: 22px; }

.product-single .wishlist {
  float: left; }

.wishlist-product {
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 0 5px;
  text-transform: unset; }
  .wishlist-product i {
    font-size: 9px; }

/*============================================================================
#Blogs page
==============================================================================*/
article .entry-meta {
  font-style: italic; }

article .btn, article .btn--secondary, article
.rte .btn--secondary,
.rte article .btn--secondary {
  text-transform: unset;
  font-weight: normal; }

article a {
  color: #000; }

article .btn, article .btn--secondary, article
.rte .btn--secondary,
.rte article .btn--secondary {
  font-size: 11px; }

.article a {
  color: #000; }

.list-blog .des {
  overflow: hidden; }

.latest-posts {
  padding: 50px 0; }
  .latest-posts .entry-content {
    padding: 20px 0; }
  .latest-posts .readmore {
    color: #f7948f;
    font-size: 11px;
    text-transform: unset;
    font-family: "Roboto", sans-serif; }
    .latest-posts .readmore:hover {
      text-decoration: underline; }
  .latest-posts .post-thumbnail {
    position: relative;
    overflow: hidden; }
    .latest-posts .post-thumbnail a {
      display: block;
      transition: all 0.4s ease-in-out 0s; }
  .latest-posts .latest-posts-body {
    overflow: hidden;
    position: relative; }
    .latest-posts .latest-posts-body:hover .post-thumbnail a {
      transition: all 0.5s ease-in-out 0s;
      transform: scale(1.1); }
  .latest-posts .created-date {
    background: #eadd4b none repeat scroll 0 0;
    color: black;
    font-size: 10px;
    height: 50px;
    line-height: 20px;
    padding: 8px 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: unset;
    top: 0;
    width: 50px; }
    .latest-posts .created-date .day {
      font-size: 24px;
      display: block; }
  .latest-posts .entry-title {
    font-size: 14px; }
    .latest-posts .entry-title a {
      color: #000; }
      .latest-posts .entry-title a:hover {
        color: #00a4e0; }

/* quickview product */
.quickview-product .owl-carousel-play {
  margin-left: 0;
  margin-top: 10px; }

/*============================================================================
#Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 0;
  padding: 6px 12px;
  margin-bottom: 15px;
  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: 30px;
  padding-top: 30px;
  border-top: 1px solid #ebebeb; }
  .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-table th {
  text-transform: unset;
  color: #000; }

.cart-table td,
.cart-table th {
  padding: 20px 0;
  border: none; }

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

.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 100%; }

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

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

.cart__remove {
  display: block; }

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

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

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

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

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

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

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

/*================ Quantity Selectors ================*/
#AddToCartForm {
  margin: 0;
  line-height: 32px; }

.js-qty, .ajaxcart__qty {
  position: relative;
  max-width: 90px;
  min-width: 90px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    background: transparent none repeat scroll 0 0;
    border-right: medium none;
    display: block;
    height: 36px;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 60px; }

.quantity-selector {
  font-size: 16px;
  font-weight: 300;
  padding-right: 10px;
  margin: 0; }

.js-qty__adjust, .ajaxcart__qty-adjust {
  bottom: 0;
  cursor: pointer;
  display: block;
  font-size: 6px;
  color: #fff;
  font-weight: bold;
  height: 17px;
  overflow: hidden;
  padding: 0 8px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 19px;
  width: 32px;
  background: #ec576b;
  border: 1px solid #d7d7d7;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

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

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

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

.ajaxcart__qty-num {
  color: #333; }

/* theme style */
/* .sprite:before { background-image: url('sprites.png'); position: absolute; content: "";} */
/* .sprite-cart { width: 30px; height: 36px; position: relative; float: left;} */
/* .sprite-cart:before { width: 18px; height: 22px; top: 0; left:0;background: url('icon-cart.png'); position: absolute; content: ""; } */
.sprite-cart {
  position: relative; }
  .sprite-cart:before {
    background: url(//cdn.hstatic.net/themes/1000153276/1001507262/14/icon-carts.png?v=358) no-repeat center bottom;
    content: "";
    height: 29px;
    position: absolute;
    width: 29px;
    top: -10px;
    right: 0; }

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

/* site deal */
.product-deal {
  padding: 50px 0; }
  .product-deal .deal-clock {
    background-color: #303030;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -3px; }
    .product-deal .deal-clock ul {
      display: block;
      list-style: outside none none;
      margin: 0;
      padding: 0;
      white-space: nowrap;
      width: 100%; }
      .product-deal .deal-clock ul li {
        border-left: 1px solid #454545;
        font-size: 10px;
        padding: 12px 32px;
        line-height: 15px; }
        .product-deal .deal-clock ul li b {
          font-size: 12px;
          font-weight: 900;
          color: #eadd4b; }
        .product-deal .deal-clock ul li:first-child {
          border-left: none; }
  .product-deal h2.title, .product-deal .title.h2 {
    color: #eadd4b; }
    .product-deal h2.title:before, .product-deal .title.h2:before {
      border-color: #eadd4b;
      content: "\f02c";
      color: #eadd4b; }
    .product-deal h2.title:after, .product-deal .title.h2:after {
      background: url("hot.png") no-repeat scroll 0 0;
      content: "";
      height: 154px;
      left: 0;
      margin: 0 auto;
      pointer-events: none;
      position: absolute;
      right: 0;
      top: -80px;
      width: 154px;
      z-index: 99; }
  .product-deal .product-container {
    border: none; }
    .product-deal .product-container .btn, .product-deal .product-container .btn--secondary {
      font-size: 10px;
      padding: 8px;
      background-color: dimgrey;
      color: #fff;
      border-radius: 4px;
      opacity: 1;
      border-color: transparent; }
      .product-deal .product-container .btn:hover, .product-deal .product-container .btn--secondary:hover {
        background-color: #00a4e0; }
    .product-deal .product-container .product-price {
      height: 60px;
      margin-top: 60px; }
    .product-deal .product-container .sale-price {
      display: block; }
    .product-deal .product-container .product-image {
      float: left;
      width: 66%; }
    .product-deal .product-container .product-meta {
      float: left;
      position: relative;
      padding: 20px;
      width: 34%; }

.testimonials {
  padding: 50px 0;
  border-color: #f3f3f3;
  position: relative; }
  .testimonials:before {
    background: url("quote-icon.png");
    position: absolute;
    content: "";
    left: 42px;
    top: -25px;
    width: 120px;
    height: 85px; }
  .testimonials .testimonials-quote {
    font-size: 20px;
    color: #666;
    font-weight: 300;
    font-style: italic; }
  .testimonials .testimonials-body {
    padding: 0 35px; }
  .testimonials .testimonials-profile h4, .testimonials .testimonials-profile .h4 {
    font-size: 14px;
    margin: 15px 0 10px;
    font-weight: normal;
    text-transform: unset; }
  .testimonials .testimonials-profile em {
    color: #00a4e0;
    text-transform: unset;
    font-family: 'Oswald', sans-serif;
    font-weight: 300; }
  .testimonials .testimonials-meta {
    overflow: hidden;
    padding-left: 30px; }
  .testimonials .testimonials-carousel {
    position: relative; }
    .testimonials .testimonials-carousel:before {
      background: #ebebeb;
      content: "";
      height: 200px;
      left: 50%;
      position: absolute;
      width: 1px; }
  .testimonials .owl-theme .owl-controls .owl-buttons div.owl-next {
    right: 30px; }
  .testimonials .owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: 30px; }

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

/* sidebar menu */
.sidebar-static-left {
  background: #3d4045;
  color: #999999;
  height: 100%;
  left: -300px;
  position: fixed;
  transition: all 0.25s ease-out 0s;
  width: 300px;
  z-index: 9999; }
  .sidebar-static-left .sidebar-menu {
    position: absolute;
    height: 100%;
    width: 100%; }
  .sidebar-static-left .logo-sidebar {
    padding: 50px 0 30px; }
  .sidebar-static-left .staticbar-action {
    background: #1d1d1d none repeat scroll 0 0;
    cursor: pointer;
    height: 60px;
    position: absolute;
    right: -60px;
    top: 0; }
    .sidebar-static-left .staticbar-action:before {
      color: #fff;
      content: "\f0c9";
      display: block;
      font-family: "FontAwesome";
      font-size: 14px;
      height: 60px;
      line-height: 60px;
      text-align: center;
      transition: all 0.25s ease-out 0s;
      width: 60px; }
  .sidebar-static-left.active {
    left: 0;
    transition: all 0.25s ease-out 0s; }
    .sidebar-static-left.active .staticbar-action:before {
      content: "\f00d"; }
  .sidebar-static-left .site-menu h4, .sidebar-static-left .site-menu .h4 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    margin: 20px 0;
    padding: 15px 30px;
    text-transform: unset; }
  .sidebar-static-left .site-menu ul {
    margin: 0;
    padding: 0; }
    .sidebar-static-left .site-menu ul li {
      display: block;
      padding: 5px 30px; }
      .sidebar-static-left .site-menu ul li:hover {
        background-color: #44474b; }
      .sidebar-static-left .site-menu ul li a {
        color: #999;
        font-size: 12px;
        text-transform: unset;
        font-weight: bold; }

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

/* page contact */
.title-small {
  font-size: 30px;
  text-transform: unset; }

.site_contact_page {
  border-color: #ebebeb; }
  .site_contact_page #ContactFormMessage {
    height: 150px; }

.width-20p {
  width: 20px;
  color: #ccc; }

.contact-box:before {
  background: #f7f7f7; }

.contact-box .inner {
  position: relative; }
  .contact-box .inner h3, .contact-box .inner .h3 {
    font-size: 20px;
    margin-top: 30px; }
  .contact-box .inner i {
    font-size: 48px; }

/* page about us */
@media screen and (min-width: 769px) {
  .product-deal .product-container .product-actions {
    bottom: 25px;
    transform: scale(0, 0); }
  .product-deal .product-container:hover .product-actions {
    bottom: 25px;
    transform: scale(1, 1); }
  .product-container .product-actions {
    opacity: 0;
    position: absolute;
    transition-duration: 0.4s;
    width: 100%;
    z-index: 1;
    left: 0; }
  .product-container .product-thumbnail a:before {
    /*  background: rgba(183, 199, 208, 0.85) none repeat scroll 0 0;
					content: "";
					height: 100%;
					opacity: 0;
					position: absolute;
					transition: all 0.3s ease 0s;
					width: 0;
					z-index: 1; 
					background: rgba(183, 199, 208, 0.85) none repeat scroll 0 0;*/
    content: "";
    height: 0;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transition: all 300ms ease-in-out 0s;
    width: 0;
    z-index: 1; }
  .product-container .swatch {
    bottom: 5px;
    display: block;
    left: 10px;
    opacity: 0;
    position: absolute;
    transform: scale(0, 0);
    transition: all 0.4s ease 0s;
    z-index: 5; }
  .product-container:hover .product-actions {
    top: 40%;
    opacity: 1;
    transition-duration: 0.4s; }
  .product-container:hover .product-thumbnail a:before {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    transition: all 0.4s ease 0s; }
  .product-container:hover .swatch {
    opacity: 1;
    transform: scale(1, 1);
    transition: all 0.4s ease 0s; } }

@media screen and (min-width: 1300px) {
  .site-header__cart-toggle #CartCount {
    right: -33px;
    top: -15px;
    left: auto; }
    .site-header__cart-toggle #CartCount:before {
      left: -4px;
      border-right: 4px solid #b7c7d0;
      border-left: 0;
      right: auto; } }

@media screen and (max-width: 1170px) {
  .slider-carousel .slider-text .txt2 {
    font-size: 60px; }
  .product-deal .product-container .product-image {
    width: 64%; }
  .product-deal .product-container .product-meta {
    padding: 20px 20px 0;
    width: 36%; }
    .product-deal .product-container .product-meta h4, .product-deal .product-container .product-meta .h4 {
      padding: 0 0 20px; }
  .product-deal .product-container .product-price {
    margin-top: 0; }
  .product-deal .product-container:hover .product-actions {
    bottom: 5px; }
  .product-deal .deal-clock ul li {
    padding: 12px 25px; } }

@media screen and (max-width: 768px) {
  .site-header__logo {
    text-align: center; }
  .latest-posts .post-thumbnail {
    text-align: center; }
    .latest-posts .post-thumbnail img {
      display: inline-block; }
  .latest-posts .des {
    min-height: 70px; }
  .slider-carousel .slider-text .txt1 {
    font-size: 18px;
    line-height: 20px; }
  .slider-carousel .slider-text .txt2 {
    font-size: 16px;
    line-height: 18px; }
  .product-container .btn, .product-container .btn--secondary {
    background-color: #00a4e0;
    color: #fff; }
    .product-container .btn:hover, .product-container .btn--secondary:hover {
      color: #fff; }
    .product-container .btn.cart, .product-container .cart.btn--secondary {
      background-color: transparent;
      color: #696969; }
  .product-container .product-actions {
    margin-top: 10px; }
  .product-container .product-meta {
    margin-bottom: 40px; }
  .site-footer .site-footer__main .column::before {
    content: none; }
  .product-single #AddToCart {
    margin-top: 10px; }
  .product-single .wishlist {
    margin-top: 10px; } }

@media screen and (max-width: 481px) {
  .tab-products .nav-tabs a {
    padding: 10px; }
  .space-50 {
    margin-bottom: 10px !important; }
  .site-footer .site-footer__main .column {
    margin-bottom: 20px; }
  .brands-carousel {
    margin-left: 0; } }

@media screen and (min-width: 760px) {
  .product-single__photos {
    float: right;
    width: calc(100% - 100px); }
  .product-single__thumbnails {
    float: left;
    max-width: 100px;
    max-height: 9999px; } }

@media screen and (min-width: 481px) {
  .site-header.sticky-header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0px !important; }
  .header {
    padding-top: 20px; }
  .juno-search {
    width: 415px;
    margin-left: 75px; }
  .juno-search form {
    width: 100%;
    padding-right: 38px;
    position: relative; }
  .juno-search input {
    width: 100%;
    line-height: 34px;
    padding: 0 15px; }
  .gid-search-btn {
    width: 38px;
    height: 36px;
    background: #d43a3a;
    font-size: 22px;
    line-height: 42px;
    color: #fff;
    position: absolute;
    top: 0px;
    right: 0px; }
  .juno-cart {
    line-height: 50px; }
  .hotline-top {
    font-size: 14px;
    line-height: 36px; }
  .hotline-top i {
    color: #bbb;
    font-size: 14px;
    margin-right: 5px;
    padding: 5px 7px;
    border: solid 1px #ccc;
    border-radius: 50%; }
  .hotline-top span {
    font-size: 14px;
    font-weight: bold; }
  .juno-menu {
    background: #00a4e0; }
  .site-nav__link {
    color: #fff; }
  .site-nav__link:hover {
    color: #fff; }
  .site-nav--has-dropdown.nav-hover .site-nav__dropdown {
    top: 100% !important; }
  .home-button {
    font-size: 22px;
    padding-top: 0px;
    padding-bottom: 0px; } }

@media only screen and (max-width: 768px) {
  .juno-search {
    width: 210px;
    margin-left: 15px; } }

@media screen and (max-width: 480px) {
  .gid-cart {
    position: absolute;
    right: 0;
    top: 25px; } }

.swatch .header {
  padding: 0px;
  font-weight: bold; }

.quickview-product .color label {
  line-height: 30px;
  height: 30px !important;
  padding-left: 35px !important;
  padding-right: 5px !important;
  background-color: #ffa200;
  background-size: 26px;
  border: solid 2px #ccc;
  background-repeat: no-repeat; }

.juno-menu {
  position: relative; }

.gid-li {
  position: initial !important; }

.gid-li ul {
  position: absolute;
  width: 100%; }

.gid-li ul li {
  text-align: center;
  display: inline-block;
  padding: 0 15px; }

.quickview-product .color label {
  border: solid 1px #ccc;
  background-color: #fff; }

.quickview-product .swatch input:checked + label img.img-check {
  display: block; }

.swatch .swatch-element.color label .img-check {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0; }

.site-nav__dropdown {
  padding: 0px; }

.product-meta .haravan-product-reviews-badge .hrv-product-reviews-star {
  float: left; }
  .product-meta .haravan-product-reviews-badge .hrv-product-reviews-star .cancel-on-png, .product-meta .haravan-product-reviews-badge .hrv-product-reviews-star .cancel-off-png, .product-meta .haravan-product-reviews-badge .hrv-product-reviews-star .star-on-png, .product-meta .haravan-product-reviews-badge .hrv-product-reviews-star .star-off-png, .product-meta .haravan-product-reviews-badge .hrv-product-reviews-star .star-half-png {
    font-size: 1em; }

.product-meta .haravan-product-reviews-badge p, .product-meta .haravan-product-reviews-badge > span:nth-child(2) {
  float: right; }

/*===== APP COMBO - BUY X TANG Y ============================================*/
.modal-productApp {
  text-align: center;
  padding: 0 !important;
  font-size: 0;
  background: rgba(3, 17, 27, 0.7);
  -webkit-transition: opacity .35s linear;
  -o-transition: opacity .35s linear;
  transition: opacity .35s linear; }

.modal-productApp:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px; }

.modal-productApp .modal-dialog-centered {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  font-size: 14px; }

.modal-productApp.fade .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-productApp .modal-dialog-centered .modal-content {
  width: 100%; }

.modal-productApp.fade .modal-dialog-centered {
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  transition: all .2s; }

.modal-productApp.fade.in .modal-dialog-centered {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.modal-productApp .modal-footer {
  padding: 15px;
  text-align: center; }

.modal-productApp .modal-footer .button {
  margin: 0 5px; }

.modal-productApp .modal-header {
  padding: 15px 20px; }

.modal-productApp .modal-header .name-combo,
.modal-productApp .modal-header .modal-title {
  margin: 0;
  font-weight: bold;
  font-size: 22px;
  padding: 0px 30px 0px 0px; }

.modal-productApp .modal-header .combo-title {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: bold; }

.modal-productApp .modal-header .close-modal-app {
  display: inline-block;
  position: absolute;
  background-color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #333;
  right: 13px;
  top: 9px;
  z-index: 9;
  opacity: 1;
  margin: 0; }

.modal-productApp .modal-header .close-modal-app svg {
  display: inline-block;
  fill: currentColor;
  position: relative;
  width: 12px;
  line-height: 30px;
  margin-top: -2px; }

#combo-program {
  max-height: 400px;
  overflow: auto; }

#combo-program .combo-title b {
  color: #ff0707; }

#combo-program .combo-w {
  border: 0;
  margin-bottom: 0px;
  padding: 0px 10px 0px 40px;
  position: relative; }

#combo-program .combo-w:after {
  content: '\2714\fe0e';
  font-size: 16px;
  position: absolute;
  top: calc(50% - 11px);
  left: 11px;
  color: #d61c1f;
  opacity: 0; }

#combo-program .combo-w:before {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  position: absolute;
  top: calc(50% - 10px);
  left: 7px; }

#combo-program .combo-w.checked:after {
  opacity: 1; }

#combo-program .combo-w.checked:before {
  border: 1px solid #d61c1f; }

#combo-program table tr {
  margin-bottom: 3px; }

#combo-program table tr:first-child td {
  border-top: 0; }

#combo-program table label {
  font-weight: normal;
  font-size: 13px;
  display: block;
  border: none;
  padding: 2px 5px;
  cursor: pointer; }

#combo-program table label:after {
  content: "";
  display: table;
  clear: both; }

#combo-program table label img {
  display: inline-block;
  width: 85px;
  float: left; }

#combo-program table label p {
  display: inline-block;
  width: calc(100% - 85px);
  float: left;
  margin-bottom: 0px;
  padding-left: 15px; }

#combo-program table label .discount-promotion-price b {
  color: #fa0303; }

#combo-program table label .discount-promotion-price del {
  margin-left: 5px; }

#combo-program table input {
  display: none; }

#combo-program table input:checked + label {
  color: #000;
  background: #fff8f8; }

#buyxgety-program {
  margin: 20px 0;
  border: 2px dotted #d61c1f;
  padding: 10px;
  position: relative;
  min-height: 100px;
  z-index: 0; }

#buyxgety-program .buyxgety-heading {
  padding: 5px 10px;
  position: relative; }

#buyxgety-program .buyxgety-heading h3, #buyxgety-program .buyxgety-heading .h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px; }

/*#buyxgety-program .buyxgety-heading:after {
	content: "";
	position: absolute;width:35px;height:35px;right: 10px;	top:6px;
	background-image: url(//cdn.hstatic.net/themes/1000153276/1001507262/14/appbuyxgety-icon.png?v=358);
	background-repeat: no-repeat;background-size: contain;
}*/
#buyxgety-program .modal-body {
  padding: 15px 30px; }

.buyxgety_item {
  display: -webkit-flex;
  display: flex;
  padding: 5px 10px 10px; }

.buyxgety_item .buyxgety_checkbox {
  width: 35px;
  float: left;
  padding-top: 7px; }

.buyxgety_item .buyxgety_image {
  width: 60px;
  float: right; }

.buyxgety_item .buyxgety_item_title {
  width: calc(100% - 95px);
  float: right;
  padding-left: 15px; }

.buyxgety_item .buyxgety_list_variant select {
  font-size: 94%;
  font-style: italic;
  min-width: 110px;
  outline: none;
  padding: 1px 15px 2px;
  margin: 2px 0 5px; }

.buyxgety_item .buyxgety_checkbox input[type=radio] {
  cursor: pointer;
  width: 15px;
  height: 15px; }

/* edit +++  
.pro-loop .product-img .sold-out == bottom:10 
.qty-click input.item-quantity 
table.table-cart tr td.item h3
.selector-actions
*/
.pro-loop .product-img .product_gift_label {
  width: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1; }

.product-loop-special .product-col-left {
  position: relative; }

.product-loop-special .product-col-left .product_gift_label {
  position: absolute;
  width: 50px;
  top: 15px;
  z-index: 2;
  left: 20px; }

button.btn-product-gift {
  width: 100%;
  padding: 14px 35px;
  font-size: 16px; }

table.table-cart tr td.item .ico-gift {
  display: inline-block;
  width: 16px;
  vertical-align: text-bottom;
  margin-left: 10px; }

@media (max-width: 767px) {
  .modal-productApp .modal-dialog-centered {
    margin: 30px 10px 50px; }
  .modal-productApp .modal-header {
    padding-left: 15px; }
  .modal-productApp .modal-header .name-combo,
  .modal-productApp .modal-header .modal-title {
    font-size: 18px; }
  .modal-productApp .modal-footer .button {
    width: 100%;
    margin: 0; }
  .modal-productApp .modal-footer .button + .button {
    margin-top: 15px; } }
