/*============================================================================
  Konversion
  Created by Tabarnapp @tabarnapp
  Version: 0.1

  ===============================
  Built on Shopify Timber
  Copyright 2016 Shopify Inc.
  Author Carson Shold @cshold
==============================================================================*/
/*============================================================================
  Table of Contents

  mixins
  normalize
  grid
  helpers
  typography
  basic
  forms
  icons

  =Vendor=
  mmenu
  slick

  =Components=
  drawers
  mobile nav
  slider
  product card

  =Sections=
  header
  slideshow
  separator
  content
  featured collections
  featured collection
  featured products
  featured product


==============================================================================*/
/* usage examples:
  font-size: rem(16px);
  padding: rem($gutter / 2);
  */
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  # General Variables
==============================================================================*/
/*================ Colors ================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("icons_17018895894891647455.eot");
  src: url("icons_17018895894891647455.eot#iefix") format("embedded-opentype"), url("icons_17018895894891647455.woff") format("woff"), url("icons_17018895894891647455.ttf") format("truetype"), url("icons_17018895894891647455-timber-icons.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

html, body {
  padding: 0;
  margin: 0;
  overflow-x: hidden; }

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, .testimonial .testimonial__title {
  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: 767px) {
  /** 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, .template-product .section-footer .section-footer__wrapper.mobile-hidden-product-cart,
  .template-product .section-footer .section-footer__wrapper--bordered.mobile-hidden-product-cart,
  .template-cart .section-footer .section-footer__wrapper.mobile-hidden-product-cart,
  .template-cart .section-footer .section-footer__wrapper--bordered.mobile-hidden-product-cart {
    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: 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: 1023px) {
  /** 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: 1024px) {
  /** 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; } }
@media only screen and (min-width: 1180px) {
  /** Whole */
  .wide--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .grid--uniform .wide--one-half:nth-child(2n+1),
  .grid--uniform .wide--one-third:nth-child(3n+1),
  .grid--uniform .wide--one-quarter:nth-child(4n+1),
  .grid--uniform .wide--one-fifth:nth-child(5n+1),
  .grid--uniform .wide--one-sixth:nth-child(6n+1),
  .grid--uniform .wide--two-sixths:nth-child(3n+1),
  .grid--uniform .wide--three-sixths:nth-child(2n+1),
  .grid--uniform .wide--two-eighths:nth-child(4n+1),
  .grid--uniform .wide--four-eighths:nth-child(2n+1),
  .grid--uniform .wide--five-tenths:nth-child(2n+1),
  .grid--uniform .wide--one-twelfth:nth-child(12n+1),
  .grid--uniform .wide--two-twelfths:nth-child(6n+1),
  .grid--uniform .wide--three-twelfths:nth-child(4n+1),
  .grid--uniform .wide--four-twelfths:nth-child(3n+1),
  .grid--uniform .wide--six-twelfths:nth-child(2n+1) {
    clear: both; } }
.grid--uniform .one-half:nth-child(2n+1),
.grid--uniform .one-third:nth-child(3n+1),
.grid--uniform .one-quarter:nth-child(4n+1),
.grid--uniform .one-fifth:nth-child(5n+1),
.grid--uniform .one-sixth:nth-child(6n+1),
.grid--uniform .two-sixths:nth-child(3n+1),
.grid--uniform .three-sixths:nth-child(2n+1),
.grid--uniform .two-eighths:nth-child(4n+1),
.grid--uniform .four-eighths:nth-child(2n+1),
.grid--uniform .five-tenths:nth-child(2n+1),
.grid--uniform .one-twelfth:nth-child(12n+1),
.grid--uniform .two-twelfths:nth-child(6n+1),
.grid--uniform .three-twelfths:nth-child(4n+1),
.grid--uniform .four-twelfths:nth-child(3n+1),
.grid--uniform .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: 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 (min-width: 1024px) {
  /* 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%; } }
@media only screen and (min-width: 1180px) {
  /* Whole */
  .push--wide--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--wide--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/*============================================================================
  # 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: 1024px) {
  .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; }

.visibility-hidden {
  visibility: hidden; }

.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

.no-js .js {
  display: none; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

@media screen and (min-width: 1024px) {
  .large--pull-left {
    float: left; }

  .large--pull-right {
    float: right; } }
.empty-page-placeholder {
  color: #afafaf;
  height: 180px;
  padding-top: 60px;
  text-align: center;
  width: 100%; }
  .empty-page-placeholder h2, .empty-page-placeholder .h2, .empty-page-placeholder .standard-page__title, .empty-page-placeholder .sidebar .sidebar__title, .sidebar .empty-page-placeholder .sidebar__title, .empty-page-placeholder .contact-page .map__title, .contact-page .empty-page-placeholder .map__title, .empty-page-placeholder .h2, .empty-page-placeholder .standard-page__title, .empty-page-placeholder .page-template h2, .page-template .empty-page-placeholder h2, .empty-page-placeholder .page-sidebar h2, .page-sidebar .empty-page-placeholder h2, .empty-page-placeholder .sidebar .sidebar__title, .sidebar .empty-page-placeholder .sidebar__title, .empty-page-placeholder .contact-page .map__title, .contact-page .empty-page-placeholder .map__title {
    color: #afafaf; }

.accordion {
  margin: 0 0 15px; }
  .accordion dt {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.2rem;
    padding: 10px;
    margin: 0 -10px; }
  .accordion dd {
    margin: 0;
    padding: 10px 0; }
    .accordion dd:last-of-type {
      position: relative;
      top: -1px; }

/*============================================================================
  #Typography
==============================================================================*/
/*
  When setting the primary font stack, apply it to the Pure grid units along
  with `html`, `button`, `input`, `select`, and `textarea`. Pure Grids use
  specific font stacks to ensure the greatest OS/browser compatibility.
*/
html,
body,
button,
input,
select,
textarea,
.pure-g [class*="pure-u"] {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Lato", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #333333;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

/*================ Headings ================*/
h1, .h1,
h2,
.h2,
.standard-page__title,
.page-template h2,
.page-sidebar h2,
.sidebar .sidebar__title,
.contact-page .map__title,
h3,
.h3,
h4,
.h4,
.collection-banner .collection-banner__subtitle p,
.account-template .account-section .account-section__title,
h5,
.h5,
h6,
.h6 {
  color: #333333;
  margin: 0 0 7.5px;
  font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word; }
  h1 a, .h1 a,
  h2 a,
  .h2 a,
  .standard-page__title a,
  .page-template h2 a,
  .page-sidebar h2 a,
  .sidebar .sidebar__title a,
  .contact-page .map__title a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  .collection-banner .collection-banner__subtitle p a,
  .account-template .account-section .account-section__title a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }

h1, .h1 {
  font-size: 2.1875rem;
  text-transform: none;
  letter-spacing: 0; }
  @media screen and (max-width: 767px) {
    h1, .h1 {
      font-size: 1.9375rem; } }

h2, .h2, .standard-page__title, .page-template h2, .page-sidebar h2, .sidebar .sidebar__title, .contact-page .map__title {
  font-size: 2rem;
  text-transform: inherit;
  letter-spacing: 0.1em; }
  @media screen and (max-width: 767px) {
    h2, .h2, .standard-page__title, .page-template h2, .page-sidebar h2, .sidebar .sidebar__title, .contact-page .map__title {
      font-size: 1.8125rem; } }

h3, .h3 {
  font-size: 1.625rem;
  text-transform: none;
  letter-spacing: 0; }
  @media screen and (max-width: 767px) {
    h3, .h3 {
      font-size: 1.4375rem; } }

h4, .h4, .collection-banner .collection-banner__subtitle p, .account-template .account-section .account-section__title {
  font-size: 1.375rem; }
  @media screen and (max-width: 767px) {
    h4, .h4, .collection-banner .collection-banner__subtitle p, .account-template .account-section .account-section__title {
      font-size: 1.1875rem; } }

h5, .h5 {
  font-size: 1.25rem; }
  @media screen and (max-width: 767px) {
    h5, .h5 {
      font-size: 1.125rem; } }

h6, .h6 {
  font-size: 1.125rem; }
  @media screen and (max-width: 767px) {
    h6, .h6 {
      font-size: 1rem; } }

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9rem; }

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

sup {
  top: -0.5rem; }

sub {
  bottom: -0.5rem; }

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

/*================ Code ================*/
code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1rem;
  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 #e0e0e0;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*============================================================================
  # Basic styles
==============================================================================*/
html {
  background-color: white;
  height: 100%; }

body {
  background-color: white;
  min-height: 100%;
  display: flex;
  flex-direction: column; }

select, input {
  outline: none; }

.main-content {
  flex: 1; }

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

.page-width {
  *zoom: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 7.5px; }
  .page-width:after {
    content: '';
    display: table;
    clear: both; }
  @media screen and (min-width: 768px) {
    .page-width {
      padding: 0 30px; } }

@media screen and (min-width: 1024px) {
  .page-width--large {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px; }

  .page-width--large--important, .standard-page, .section-featured-collections, .section-featured-products {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 30px !important; } }
.standard-page {
  padding: 30px; }

.standard-page__title, .page-template h2, .page-template .h2, .page-template .standard-page__title, .page-sidebar h2, .page-sidebar .h2, .page-sidebar .standard-page__title, .sidebar .sidebar__title, .contact-page .map__title {
  font-size: 1.4rem;
  line-height: 2.1rem;
  text-align: center;
  padding-bottom: 10px; }

.page--empty {
  padding: 90px 30px 30px;
  text-align: center; }
  .page--empty p {
    color: #878787; }
  .page--empty .h3 {
    margin-bottom: 30px; }

.text-meta {
  color: #878787; }

/*================ Desktop Version ================*/
@media screen and (min-width: 1024px) {
  .standard-page__title, .page-template h2, .page-template .h2, .page-template .standard-page__title, .page-sidebar h2, .page-sidebar .h2, .page-sidebar .standard-page__title, .sidebar .sidebar__title, .contact-page .map__title {
    text-align: left; }

  .page--empty {
    padding: 150px 30px 30px; }
    .page--empty .h3 {
      margin-bottom: 60px; } }
.normal-section-padding, .section-content .custom__item-content--text, .section-newsletter .section-newsletter-container {
  padding: 0 30px 30px; }

.section-heading, .testimonial .testimonial__title {
  margin-bottom: 20px;
  margin-top: 30px; }
  @media screen and (max-width: 767px) {
    .section-heading, .testimonial .testimonial__title {
      margin-top: 15px; } }

body.fixed-header--all > header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 15; }

@media screen and (max-width: 1023px) {
  body.fixed-header--mobile > header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 15; }

  body.fixed-header--all .main-content,
  body.fixed-header--mobile .main-content {
    padding-top: 55px; } }
@media screen and (min-width: 1024px) {
  body.fixed-header--desktop > header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 15; }

  body.fixed-header--all .drawer,
  body.fixed-header--desktop .drawer {
    position: fixed; }
  body.fixed-header--all .main-content,
  body.fixed-header--desktop .main-content {
    padding-top: 55px; } }
/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte .standard-page__title, .rte .sidebar .sidebar__title, .sidebar .rte .sidebar__title, .rte .contact-page .map__title, .contact-page .rte .map__title, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte .collection-banner .collection-banner__subtitle p, .collection-banner .collection-banner__subtitle .rte p, .rte .account-template .account-section .account-section__title, .account-template .account-section .rte .account-section__title, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte .standard-page__title:first-child, .rte .sidebar .sidebar__title:first-child, .sidebar .rte .sidebar__title:first-child, .rte .contact-page .map__title:first-child, .contact-page .rte .map__title:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte .collection-banner .collection-banner__subtitle p:first-child, .collection-banner .collection-banner__subtitle .rte p:first-child, .rte .account-template .account-section .account-section__title:first-child, .account-template .account-section .rte .account-section__title:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte .standard-page__title a, .rte .sidebar .sidebar__title a, .sidebar .rte .sidebar__title a, .rte .contact-page .map__title a, .contact-page .rte .map__title a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte .collection-banner .collection-banner__subtitle p a, .collection-banner .collection-banner__subtitle .rte p a, .rte .account-template .account-section .account-section__title a, .account-template .account-section .rte .account-section__title a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0.4em; }

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

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

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

button {
  overflow: visible;
  outline: none; }

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

.btn, .btn--secondary,
.rte .btn--secondary, .btn--special,
.rte .btn--special,
.rte .btn,
.rte .btn--secondary,
.rte .btn--special {
  display: inline-block;
  padding: 15px 30px;
  width: auto;
  margin: 0;
  line-height: 1.42;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid #393939;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.2s ease;
  /*================ Set primary button colors - can override later ================*/
  background-color: transparent;
  color: #393939; }
  .btn:hover, .btn--secondary:hover, .btn--special:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .rte .btn--special:hover {
    background-color: transparent;
    color: #393939;
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15); }
  .btn:active, .btn--secondary:active, .btn--special:active, .btn:focus, .btn--secondary:focus, .btn--special:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn--special:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus,
  .rte .btn--special:focus {
    background-color: transparent;
    color: #393939; }
  .btn[disabled], [disabled].btn--secondary, [disabled].btn--special, .btn.disabled, .disabled.btn--secondary, .disabled.btn--special,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte [disabled].btn--special,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary,
  .rte .disabled.btn--special {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6 !important;
    box-shadow: none; }
    .btn[disabled]:hover, [disabled].btn--secondary:hover, [disabled].btn--special:hover, .btn.disabled:hover, .disabled.btn--secondary:hover, .disabled.btn--special:hover,
    .rte .btn[disabled]:hover,
    .rte [disabled].btn--secondary:hover,
    .rte [disabled].btn--special:hover,
    .rte .btn.disabled:hover,
    .rte .disabled.btn--secondary:hover,
    .rte .disabled.btn--special:hover {
      color: #b6b6b6; }

.btn--secondary,
.rte .btn--secondary {
  background-color: white; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #e6e6e6;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #cccccc;
    color: white; }

.btn--special,
.rte .btn--special {
  background-color: #41cd62;
  border-radius: 0;
  border: none;
  color: white; }
  .btn--special:hover,
  .rte .btn--special:hover {
    background-color: #2ead4c;
    color: white; }
  .btn--special:active, .btn--special:focus,
  .rte .btn--special:active,
  .rte .btn--special:focus {
    background-color: #23853a;
    color: white; }

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

.btn--large {
  padding: 12px 30px;
  font-size: 1rem; }

.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, .sidebar .sidebar__linklist, .section-footer .footer-col__linklist {
  list-style: none outside;
  margin-left: 0; }

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

.comma-list {
  margin: 0; }
  .comma-list .comma-list__item:not(:last-child)::after {
    content: ","; }

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

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

@media screen and (max-width: 767px) {
  .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 #e0e0e0; } }
/*============================================================================
  #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%; }

.alert-info {
  border-radius: 3px;
  padding: 1rem;
  text-align: center; }

.social-sharing {
  margin-top: 15px;
  margin-left: 5px; }
  .social-sharing .social-sharing__link {
    padding-right: 10px; }
    .social-sharing .social-sharing__link .social-sharing__icon {
      background-image: url("social-icons-sprite_132x32_17018895894891647455.png");
      background-repeat: no-repeat;
      display: inline-block;
      height: 32px;
      width: 32px; }
      .social-sharing .social-sharing__link .social-sharing__icon.social-sharing__icon--facebook {
        background-position-x: 0; }
      .social-sharing .social-sharing__link .social-sharing__icon.social-sharing__icon--twitter {
        background-position-x: -33px; }
      .social-sharing .social-sharing__link .social-sharing__icon.social-sharing__icon--pinterest {
        background-position-x: -66px; }
      .social-sharing .social-sharing__link .social-sharing__icon.social-sharing__icon--gplus {
        background-position-x: -99px; }

.spr-badge[data-rating="0.0"] {
  visibility: hidden; }

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

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

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

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #e0e0e0;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 3px; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #c7c7c7; }
  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("ico-select_17018895894891647455.svg");
  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: #e64a19;
  color: white; }

label.error {
  color: #d02e2e; }

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

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

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

.form-success {
  background-color: #41cd62;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  color: white;
  padding: 20px 10px;
  margin-bottom: 1rem; }

.errors {
  border: 1px solid #e0e0e0;
  background-color: #e64a19;
  color: white; }
  .errors ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .errors a {
    color: white;
    text-decoration: underline; }

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

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

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

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

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

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

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

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

.icon-chevron-thin-down:before {
  content: "\e90a"; }

.icon-chevron-thin-up:before {
  content: "\e90b"; }

.icon-chevron-thin-right:before {
  content: "\e90e"; }

.icon-chevron-thin-left:before {
  content: "\e90f"; }

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

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

.icon-delete:before {
  content: "\e902"; }

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

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

.icon-dogecoin:before {
  content: "\e904"; }

.icon-dwolla:before {
  content: "\e905"; }

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

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

.icon-forbrugsforeningen:before {
  content: "\e906"; }

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

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

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

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

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

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

.icon-link:before {
  content: "\e910"; }

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

.icon-litecoin:before {
  content: "\e908"; }

.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-refresh:before {
  content: "\e909"; }

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

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

.icon-snapchat:before {
  content: "\e911"; }

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

.icon-trash:before {
  content: "\e907"; }

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

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

.icon-user:before {
  content: "\e90d"; }

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

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

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

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

.icon-zoom-in:before {
  content: "\e903"; }

.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: #fff;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

.social-icons li {
  margin-left: 30px;
  vertical-align: middle; }
  .social-icons li .icon {
    font-size: em(20px); }
  .social-icons li a {
    color: #fff; }
    .social-icons li a:hover {
      color: #e6e6e6; }

.spr-badge {
  color: #868686; }
  .spr-badge .spr-badge-caption {
    color: #868686; }

.loox-rating {
  color: #868686;
  min-height: 25px; }
  .loox-rating span {
    color: #868686; }

.yotpo.bottomLine {
  min-height: 20px; }

/*============================================================================
  # Vendor
==============================================================================*/
.mm-menu, .mm-panels, .mm-panels > .mm-panel {
  margin: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  box-sizing: border-box; }

.mm-btn, .mm-menu {
  box-sizing: border-box; }

.mm-listview a, .mm-listview a:hover, .mm-navbar a, .mm-navbar a:hover {
  text-decoration: none; }

.mm-listview .mm-next:before, .mm-listview > li:not(.mm-divider):after, .mm-next:after, .mm-prev:before {
  content: '';
  bottom: 0; }

.mm-hidden {
  display: none !important; }

.mm-menu, .mm-panels > .mm-panel:not(.mm-hidden) {
  display: block; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu {
  padding: 0;
  position: absolute;
  bottom: 0; }

.mm-panels, .mm-panels > .mm-panel {
  background: inherit;
  border-color: inherit;
  position: absolute;
  bottom: 0; }

.mm-btn, .mm-panel.mm-highest {
  z-index: 1; }

.mm-panels {
  overflow: hidden; }

.mm-panel {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-panel.mm-opened {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-panel.mm-subopened {
  -webkit-transform: translate(-30%, 0);
  -ms-transform: translate(-30%, 0);
  transform: translate(-30%, 0);
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-panels > .mm-panel {
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px; }

.mm-listview .mm-divider, .mm-listview > li > a, .mm-listview > li > span, .mm-navbar .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.mm-panels > .mm-panel.mm-hasnavbar {
  padding-top: 40px; }

.mm-panels > .mm-panel:after, .mm-panels > .mm-panel:before {
  content: '';
  display: block;
  height: 20px; }

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important; }

.mm-listview .mm-vertical .mm-panel, .mm-vertical .mm-listview .mm-panel {
  display: none;
  padding: 10px 0 10px 10px; }

.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after, .mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent; }

.mm-vertical li.mm-opened > .mm-panel, li.mm-vertical.mm-opened > .mm-panel {
  display: block; }

.mm-listview > li.mm-vertical > .mm-next, .mm-vertical .mm-listview > li > .mm-next {
  height: 40px;
  bottom: auto; }

.mm-listview > li.mm-vertical > .mm-next:after, .mm-vertical .mm-listview > li > .mm-next:after {
  top: 16px;
  bottom: auto; }

.mm-listview > li.mm-vertical.mm-opened > .mm-next:after, .mm-vertical .mm-listview > li.mm-opened > .mm-next:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 19px; }

.mm-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0; }

.mm-clear:after, .mm-clear:before, .mm-close:after, .mm-close:before {
  content: '';
  border: 2px solid transparent;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mm-clear:before, .mm-close:before {
  border-right: none;
  border-bottom: none;
  right: 18px; }

.mm-clear:after, .mm-close:after {
  border-left: none;
  border-top: none;
  right: 25px; }

.mm-next:after, .mm-prev:before {
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0; }

.mm-prev:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-next:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.mm-navbar > * {
  display: block;
  padding: 10px 0; }

.mm-navbar .mm-btn:first-child {
  left: 0; }

.mm-navbar .mm-btn:last-child {
  text-align: right;
  right: 0; }

.mm-panel .mm-navbar {
  display: none; }

.mm-panel.mm-hasnavbar .mm-navbar {
  display: block; }

.mm-listview, .mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px; }

.mm-listview > li {
  position: relative; }

.mm-listview > li, .mm-listview > li .mm-next, .mm-listview > li .mm-next:before, .mm-listview > li:after {
  border-color: inherit; }

.mm-listview > li > a, .mm-listview > li > span {
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0; }

.mm-listview > li:not(.mm-divider):after {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  right: 0;
  left: 20px; }

.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2; }

.mm-listview .mm-next:before {
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.mm-listview .mm-next + a, .mm-listview .mm-next + span {
  margin-right: 50px; }

.mm-listview .mm-next.mm-fullsubopen {
  width: 100%; }

.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none; }

.mm-listview .mm-next.mm-fullsubopen + a, .mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0; }

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listview .mm-inset {
  list-style: disc inside;
  padding: 0 10px 15px 40px;
  margin: 0; }

.mm-listview .mm-inset > li {
  padding: 5px 0; }

.mm-listview .mm-divider {
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px; }

.mm-listview .mm-spacer {
  padding-top: 40px; }

.mm-listview .mm-spacer > .mm-next {
  top: 40px; }

.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75); }

.mm-menu .mm-navbar a, .mm-menu .mm-navbar > * {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1); }

.mm-menu .mm-listview > li .mm-next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
  tap-highlight-color: rgba(255, 255, 255, 0.5); }

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5); }

.mm-menu .mm-divider, .mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(0, 0, 0, 0.05); }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: white url(ajax-loader_17018895894891647455.gif) center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick-icons, sans-serif";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\3008"; }
    [dir="rtl"] .slick-prev:before {
      content: "\3009"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\3009"; }
    [dir="rtl"] .slick-next:before {
      content: "\3008"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick-icons, sans-serif";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none; }

.sf-menu li {
  position: relative; }

.sf-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 10005; }

.sf-menu > li {
  float: left; }

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block; }

.sf-menu a {
  display: block;
  position: relative; }

.sf-menu ul ul {
  top: 0;
  left: 100%; }

/*** DEMO SKIN ***/
.sf-menu {
  float: left;
  margin-bottom: 1em; }

.sf-menu ul {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  min-width: 12em;
  /* allow long menu items to determine submenu width */
  *width: 12em;
  /* no auto sub width for IE7, see white-space comment below */ }

.sf-menu a {
  padding: .75em 1em;
  text-decoration: none;
  zoom: 1;
  /* IE7 */ }

.sf-menu a {
  color: #13a; }

.sf-menu li {
  background: #BDD2FF;
  white-space: nowrap;
  /* no need for Supersubs plugin */
  *white-space: normal;
  /* ...unless you support IE7 (let it wrap) */
  -webkit-transition: background .2s;
  transition: background .2s; }

.sf-menu ul li {
  background: #AABDE6; }

.sf-menu ul ul li {
  background: #9AAEDB; }

.sf-menu li:hover,
.sf-menu li.sfHover {
  background: #CFDEFF;
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none; }

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
  padding-right: 2.5em;
  *padding-right: 1em;
  /* no CSS arrows for IE7 (lack pseudo-elements) */ }

/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -3px;
  height: 0;
  width: 0;
  /* order of following 3 rules important for fallbacks to work */
  border: 5px solid transparent;
  border-top-color: #dFeEFF;
  /* edit this to suit design (no rgba in IE8) */
  border-top-color: rgba(255, 255, 255, 0.5); }

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: white;
  /* IE8 fallback colour */ }

/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #dFeEFF;
  /* edit this to suit design (no rgba in IE8) */
  border-left-color: rgba(255, 255, 255, 0.5); }

.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: white; }

/*======================================
  jQuery Selectric
  http://lcdsantos.github.io/jQuery-Selectric/
  Selectric - Square theme
======================================*/
.selectric-wrapper {
  position: relative;
  cursor: pointer; }

.selectric-responsive {
  width: 100%; }

.selectric {
  border: 2px solid #e0e0e0;
  background: white;
  position: relative;
  border-radius: 0; }

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 30px 0 0;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: #333333;
  min-height: 18px; }

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  color: #333333;
  text-align: center;
  font: 0/0 a;
  /* IE Fix */
  *font: 20px/30px Lucida Sans Unicode, Arial Unicode MS, Arial; }

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #333333;
  border-bottom: none; }

.selectric-focus .selectric {
  border-color: #AAA; }

.selectric-hover .selectric {
  border-color: #CCC; }

.selectric-hover .selectric .button {
  color: #888; }

.selectric-hover .selectric .button:after {
  border-top-color: #888; }

.selectric-open {
  z-index: 9999; }

.selectric-open .selectric {
  border-color: #e0e0e0;
  background: white;
  border-bottom-width: 0;
  padding-bottom: 2px; }

.selectric-open .selectric-items {
  display: block; }

.selectric-open.selectric-above .selectric {
  border-top-width: 0;
  border-bottom-width: 2px; }

.selectric-open.selectric-above .selectric-items {
  border-bottom-width: 0;
  border-top-width: 2px; }

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }

.selectric-hide-select select {
  position: absolute;
  left: -100%; }

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10; }

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0; }

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important; }

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 2px solid #e0e0e0;
  border-top-width: 0;
  z-index: -1;
  padding: 0; }

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto; }

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%; }

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px; }

.selectric-items li {
  display: block;
  padding: 10px 20px;
  color: #333333;
  cursor: pointer; }

.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444; }

.selectric-items li.selected {
  background: #DDD;
  color: #444; }

.selectric-items li:hover {
  background: #e6e6e6;
  color: #444; }

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444; }

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1; }

.selectric-items .selectric-group li {
  padding-left: 25px; }

.notifyjs-metro-base {
  position: relative;
  min-height: 52px;
  color: #444; }

.notifyjs-metro-base .image {
  display: table;
  position: absolute;
  height: auto;
  width: auto;
  left: 25px;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.notifyjs-metro-base .text-wrapper {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin: 10px 10px 10px 52px;
  clear: both; }

.notifyjs-metro-base .title {
  font-size: 15px;
  font-weight: bold; }

.notifyjs-metro-base .text {
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle; }

.notifyjs-metro-error {
  background-color: #e64a19 !important; }

.notifyjs-metro-success {
  background-color: #4caf50 !important;
  color: #ffffff; }

.notifyjs-metro-base .text-wrapper {
  margin: 10px 30px; }

/*
 * qTip2 - Pretty powerful tooltips - v3.0.3
 * http://qtip2.com
 *
 * Copyright (c) 2017 
 * Released under the MIT licenses
 * http://jquery.org/license
 *
 * Date: Wed Jan 4 2017 06:45 EST-0500
 * Plugins: None
 * Styles: core basic
 */
.qtip {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  max-width: 280px;
  min-width: 50px;
  font-size: 1rem;
  line-height: 1.2rem;
  direction: ltr;
  box-shadow: none;
  padding: 0;
  margin-top: 5px; }

.qtip-content {
  position: relative;
  padding: 5px 9px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word; }

.qtip-titlebar {
  position: relative;
  padding: 5px 35px 5px 10px;
  overflow: hidden;
  border-width: 0 0 1px;
  font-weight: bold; }

.qtip-titlebar + .qtip-content {
  border-top-width: 0 !important; }

/* Default close button class */
.qtip-close {
  position: absolute;
  right: -9px;
  top: -9px;
  z-index: 11;
  /* Overlap .qtip-tip */
  cursor: pointer;
  outline: medium none;
  border: 1px solid transparent; }

.qtip-titlebar .qtip-close {
  right: 4px;
  top: 50%;
  margin-top: -9px; }

* html .qtip-titlebar .qtip-close {
  top: 16px; }

/* IE fix */
.qtip-titlebar .ui-icon,
.qtip-icon .ui-icon {
  display: block;
  text-indent: -1000em;
  direction: ltr; }

.qtip-icon, .qtip-icon .ui-icon {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none; }

.qtip-icon .ui-icon {
  width: 18px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  text-indent: 0;
  font: normal bold 10px/13px Tahoma,sans-serif;
  color: inherit;
  background: transparent none no-repeat -100em -100em; }

/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
/* Default tooltip style */
.qtip-default {
  border: 1px solid #F1D031;
  background-color: #FFFFA3;
  color: #555; }

.qtip-default .qtip-titlebar {
  background-color: #FFEF93; }

.qtip-default .qtip-icon {
  border-color: #CCC;
  background: #F1F1F1;
  color: #777; }

.qtip-default .qtip-titlebar .qtip-close {
  border-color: #AAA;
  color: #111; }

/*! Light tooltip style */
.qtip-light {
  background-color: white;
  border-color: #E2E2E2;
  color: #454545; }

.qtip-light .qtip-titlebar {
  background-color: #f1f1f1; }

/*! Dark tooltip style */
.qtip-dark {
  background-color: #505050;
  border-color: #303030;
  color: #f3f3f3; }

.qtip-dark .qtip-titlebar {
  background-color: #404040; }

.qtip-dark .qtip-icon {
  border-color: #444; }

.qtip-dark .qtip-titlebar .ui-state-hover {
  border-color: #303030; }

/*! Cream tooltip style */
.qtip-cream {
  background-color: #FBF7AA;
  border-color: #F9E98E;
  color: #A27D35; }

.qtip-cream .qtip-titlebar {
  background-color: #F0DE7D; }

.qtip-cream .qtip-close .qtip-icon {
  background-position: -82px 0; }

/*! Red tooltip style */
.qtip-red {
  background-color: #F78B83;
  border-color: #D95252;
  color: #912323; }

.qtip-red .qtip-titlebar {
  background-color: #F06D65; }

.qtip-red .qtip-close .qtip-icon {
  background-position: -102px 0; }

.qtip-red .qtip-icon {
  border-color: #D95252; }

.qtip-red .qtip-titlebar .ui-state-hover {
  border-color: #D95252; }

/*! Green tooltip style */
.qtip-green {
  background-color: #CAED9E;
  border-color: #90D93F;
  color: #3F6219; }

.qtip-green .qtip-titlebar {
  background-color: #B0DE78; }

.qtip-green .qtip-close .qtip-icon {
  background-position: -42px 0; }

/*! Blue tooltip style */
.qtip-blue {
  background-color: #E5F6FE;
  border-color: #ADD9ED;
  color: #5E99BD; }

.qtip-blue .qtip-titlebar {
  background-color: #D0E9F5; }

.qtip-blue .qtip-close .qtip-icon {
  background-position: -2px 0; }

/*! Blue tooltip style */
.qtip-konversion {
  background-color: #41cd62;
  border-color: #e0e0e0;
  color: white; }

.qtip-green .qtip-titlebar {
  background-color: #B0DE78; }

.qtip-green .qtip-close .qtip-icon {
  background-position: -42px 0; }

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

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

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

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

.drawer--right {
  width: 767px;
  right: -767px;
  border-left: 1px solid #f2f2f2; }
  .drawer--right .icon-link {
    font-size: 1.2rem;
    margin-left: 5px; }
  .js-drawer-open-right .drawer--right {
    display: block;
    -ms-transform: translateX(-767px);
    -webkit-transform: translateX(-767px);
    transform: translateX(-767px); }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

#page_container {
  overflow: hidden; }

.is-moved-by-drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  /* Disable moving content when drawer opens
  transition: $drawer-transition;

  .js-drawer-open-left & {
    @include transform(translateX($drawer-nav-width));
  }

  .js-drawer-open-right & {
    @include transform(translateX(-$drawer-cart-width));
  }
  */ }

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

.drawer__footer {
  background-color: #090909;
  bottom: 0;
  margin-left: -15px;
  position: absolute;
  text-align: center;
  width: 100%; }

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

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center;
  font-size: em(18px); }

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

/*================ Desktop Version ================*/
@media screen and (min-width: 1024px) {
  .js-drawer-open {
    overflow: auto; }

  .drawer {
    position: absolute; }

  .drawer--right {
    width: 360px;
    right: -360px;
    max-height: auto;
    top: 40px;
    bottom: initial; }
    .js-drawer-open-right .drawer--right {
      -ms-transform: translateX(-360px);
      -webkit-transform: translateX(-360px);
      transform: translateX(-360px); } }
/*================ Mobile Nav: mmenu overrides  ================*/
.drawer .drawer__search {
  position: relative;
  height: 55px;
  margin: 0 -15px 0; }
  .drawer .drawer__search .drawer__search-input {
    position: relative;
    height: 100%;
    padding: 0 10px 0 42px;
    width: 100%; }
  .drawer .drawer__search .drawer__search-icon {
    color: silver;
    position: absolute;
    top: 16px;
    left: 20px;
    z-index: 21; }
.drawer .social-icons {
  margin: 0;
  padding-top: 7px;
  float: none !important; }
  .drawer .social-icons li {
    margin-left: 15px; }
.drawer .currency-picker__wrapper {
  float: right; }
  .drawer .currency-picker__wrapper .currency-picker {
    background-image: url("ico-select-alt_17018895894891647455.svg");
    border: none;
    color: white; }

.mm-menu {
  background: white;
  border-color: #f2f2f2;
  color: #333333;
  margin-top: 125px;
  margin-bottom: 40px; }
  .mm-menu .mm-panels > .mm-panel {
    padding: 0; }
    .mm-menu .mm-panels > .mm-panel > .mm-listview {
      margin: 20px 0 0 0; }
  .mm-menu .mm-panels .mm-navbar {
    background-color: #f6f6f6; }
  .mm-menu .mm-listview li {
    height: 55px; }
    .mm-menu .mm-listview li:not(.mm-divider):after {
      left: 15px;
      right: 15px; }
    .mm-menu .mm-listview li a, .mm-menu .mm-listview li span {
      font-size: 16px;
      font-weight: bold;
      padding: 15px 10px 10px 20px; }

/*================ Desktop Version ================*/
@media screen and (min-width: 1024px) {
  .mm-menu {
    margin-top: 70px;
    margin-bottom: 0; } }
/* styling for text menu */
.sf-menu {
  margin-bottom: 0;
  height: 100%;
  z-index: 9999; }
  .sf-menu a {
    color: #393939;
    padding-top: .9rem; }
  .sf-menu > li.current, .sf-menu > li:hover, .sf-menu > li.sfHover {
    border-bottom: 5px solid #41cd62;
    box-sizing: border-box; }
  .sf-menu > li > a {
    text-transform: uppercase; }
  .sf-menu > li > ul {
    margin-top: 5px; }
    .sf-menu > li > ul li {
      float: left;
      width: 250px;
      border-left: 1px solid rgba(0, 0, 0, 0.05);
      overflow: initial; }
  .sf-menu li {
    background: white; }
    .sf-menu li:hover, .sf-menu li.sfHover {
      background: white; }
  .sf-menu ul {
    background: white; }
    .sf-menu ul li {
      background: white; }
      .sf-menu ul li:hover, .sf-menu ul li.sfHover {
        background: white; }
      .sf-menu ul li a {
        color: #393939; }
    .sf-menu ul ul li {
      background: white; }
      .sf-menu ul ul li a {
        color: #393939; }
  @media screen and (max-width: 1450px) {
    .sf-menu.sf-menu-shrink li > a {
      padding: 0.90em 0.4em;
      font-size: 15px;
      height: 50px; }
      .sf-menu.sf-menu-shrink li > a.sf-with-ul {
        padding-right: 15px; }
      .sf-menu.sf-menu-shrink li > a.sf-with-ul:after {
        right: 0.2em; } }
  @media screen and (max-width: 1450px) {
    .sf-menu.sf-menu-shrink-2x li > a {
      padding: 1.2em 0.4em;
      font-size: 13px;
      height: 50px; }
      .sf-menu.sf-menu-shrink-2x li > a.sf-with-ul:after {
        display: none; } }

.sf-arrows .sf-with-ul {
  padding-right: 1.9em; }

.sf-arrows .sf-with-ul:after {
  border-top-color: #393939;
  opacity: 0.7;
  margin-top: -1px !important; }

.sf-arrows ul .sf-with-ul:after {
  border-left-color: #393939;
  opacity: 0.7; }

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #060606;
  /* IE8 fallback colour */ }

.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: #060606; }

/* ---------- styling for product menu ---------- */
#cbp-hsmenu-wrapper {
  position: relative; }

#cbp-hsmenu-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0 auto; }

#cbp-hsmenu-wrapper .cbp-hsmenu {
  float: left;
  height: 100%; }
  @media screen and (max-width: 1450px) {
    #cbp-hsmenu-wrapper .cbp-hsmenu.sf-menu-shrink > li > a {
      padding: 0.90em 0.4em;
      font-size: 15px;
      height: 50px; }
      #cbp-hsmenu-wrapper .cbp-hsmenu.sf-menu-shrink > li > a:not(:only-child) {
        padding-right: 15px; }
      #cbp-hsmenu-wrapper .cbp-hsmenu.sf-menu-shrink > li > a:not(:only-child):after {
        right: 0.2em; } }
  @media screen and (max-width: 1450px) {
    #cbp-hsmenu-wrapper .cbp-hsmenu.sf-menu-shrink-2x > li > a {
      padding: 1.2em 0.4em;
      font-size: 13px;
      height: 50px; }
      #cbp-hsmenu-wrapper .cbp-hsmenu.sf-menu-shrink-2x > li > a:not(:only-child):after {
        display: none; } }

.cbp-hsmenu .sf-with-ul {
  padding-right: 1.9em; }

.cbp-hsmenu > li {
  float: left;
  margin: 0;
  padding: 0; }

.cbp-hsmenu > li:first-child {
  margin-left: 0; }

.cbp-hsmenu > li.current,
.cbp-hsmenu > li:hover {
  border-bottom: 5px solid #41cd62;
  box-sizing: border-box; }

.cbp-hsmenu > li > a {
  color: #393939;
  padding: .9rem 1em .75em;
  display: inline-block;
  position: relative;
  z-index: 10000;
  outline: none;
  text-transform: uppercase; }

.cbp-hsmenu > li > a:not(:only-child) {
  padding-right: 2.0em; }

.cbp-hsmenu > li > a:not(:only-child):after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.9em;
  /*margin-top: -3px;*/
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #393939; }

.cbp-hsmenu > li.cbp-hsitem-open > a:not(:only-child):after {
  top: 40%;
  border-top-color: transparent;
  border-bottom-color: #393939; }

.cbp-hssubmenu {
  position: absolute;
  top: 100%;
  width: 100vw;
  z-index: 0;
  text-align: center;
  /* for aligning the sub items */
  visibility: hidden; }

.cbp-hssubmenu:before,
.cbp-hssubmenu:after {
  content: " ";
  display: table; }

.cbp-hssubmenu:after {
  clear: both; }

.cbp-hssubmenu > li {
  width: 16.2%;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  -webkit-transition: opacity 0.1s 0s;
  -moz-transition: opacity 0.1s 0s;
  transition: opacity 0.1s 0s; }

.cbp-hssubmenu > li a {
  display: block;
  text-align: center;
  color: #393939;
  outline: none;
  padding: 2em 1em 1em 1em; }
  .cbp-hssubmenu > li a .content-img {
    height: 155px;
    line-height: 155px;
    text-align: center; }

.no-touch .cbp-hssubmenu > li a:hover,
.no-touch .cbp-hssubmenu > li a:focus {
  color: #888; }

.cbp-hssubmenu > li a .content-img img {
  border: none;
  outline: none;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  max-height: 100%; }

.no-touch .cbp-hssubmenu > li a:hover img {
  opacity: 0.5; }

.cbp-hssubmenu > li a span:not(.money) {
  display: block;
  min-height: 3em;
  margin-top: 0.4em; }

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
  z-index: 1000;
  visibility: visible; }

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu > li {
  opacity: 1;
  -webkit-transition: opacity 0.5s 0.1s;
  -moz-transition: opacity 0.5s 0.1s;
  transition: opacity 0.5s 0.1s; }

.cbp-hsmenubg {
  background: white;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
  height: 0px; }

.no-touch .cbp-hsmenubg {
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s; }

.product-menu__item .product-menu__item-info .product-price__sale {
  color: #41cd62; }
.product-menu__item .product-menu__item-info .product-price__old {
  padding-right: 5px; }

/*================ Slick slider overrides ================*/
.slick-dotted.slick-slider {
  margin-bottom: 0; }

/*================ Slick dots and prev/next pagination ================*/
.slick-slider .slick-dots {
  margin: 0;
  width: auto; }
  .slick-slider .slick-dots li {
    margin: 0;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin-left: 6px; }
    .slick-slider .slick-dots li:first-of-type {
      margin-left: 0; }
    @media screen and (min-width: 768px) {
      .slick-slider .slick-dots li {
        width: 12px;
        height: 12px;
        margin-left: 8px; } }
    .slick-slider .slick-dots li button {
      position: relative;
      padding: 0;
      width: 10px;
      height: 10px; }
      @media screen and (min-width: 768px) {
        .slick-slider .slick-dots li button {
          width: 12px;
          height: 12px; } }
    .slick-slider .slick-dots li button::before {
      text-indent: -9999px;
      background-color: transparent;
      border-radius: 100%;
      background-color: currentColor;
      width: 10px;
      height: 10px;
      opacity: 0.4;
      transition: all 0.2s; }
      @media screen and (min-width: 768px) {
        .slick-slider .slick-dots li button::before {
          width: 12px;
          height: 12px; } }
    .slick-slider .slick-dots li.slick-active button::before {
      opacity: 1; }
    .slick-slider .slick-dots li button:active::before {
      opacity: 0.7; }

.slick-prev,
.slick-next {
  top: 35%; }
  .slick-prev:before,
  .slick-next:before {
    color: #393939; }

@media screen and (max-width: 767px) {
  .slick-prev {
    left: 15px; }

  .slick-next {
    right: 15px; }

  .slick-prev,
  .slick-next,
  .slick-prev:hover,
  .slick-next:hover,
  .slick-prev:focus,
  .slick-next:focus {
    background-color: #090909;
    border-radius: 50%;
    cursor: pointer;
    height: 30px;
    opacity: 0.3;
    top: 35%;
    width: 30px;
    z-index: 4; }
    .slick-prev:before,
    .slick-next:before,
    .slick-prev:hover:before,
    .slick-next:hover:before,
    .slick-prev:focus:before,
    .slick-next:focus:before {
      color: white;
      position: absolute;
      top: 20%; }

  .slick-prev:before,
  .slick-prev:hover:before,
  .slick-prev:focus:before {
    right: 40%; }

  .slick-next:before,
  .slick-next:hover:before,
  .slick-next:focus:before {
    left: 40%; } }
.swatches .swatches__options {
  *zoom: 1;
  display: inline-block;
  text-align: center; }
  .swatches .swatches__options:after {
    content: '';
    display: table;
    clear: both; }
.swatches label {
  *zoom: 1; }
  .swatches label:after {
    content: '';
    display: table;
    clear: both; }
.swatches .swatches__option {
  border: 1px solid #e0e0e0;
  cursor: pointer;
  float: left;
  height: 40px;
  margin: 5px 10px 10px 0;
  padding: 5px;
  text-align: center;
  min-width: 40px; }
  .swatches .swatches__option input {
    display: none; }
.swatches:not(.swatches--color) .swatches__option--selected {
  background: #41cd62;
  color: white; }
.swatches.swatches--color .swatches__option--selected {
  border: none;
  border-bottom: 6px solid #41cd62;
  border-color: #41cd62;
  border-right: solid 1px #e0e0e0;
  border-top: solid 1px #e0e0e0;
  border-left: solid 1px #e0e0e0; }

/*================ Product Card ================*/
.product-list .product-list__item {
  border-radius: 3px; }
  .product-list .product-list__item p {
    margin-top: 10px; }
    .product-list .product-list__item p a {
      font-size: 18.4px; }

.product-card {
  position: relative;
  text-align: center;
  /*================ Desktop Version ================*/ }
  .product-card .product-card__title--1_row {
    position: relative;
    white-space: nowrap;
    overflow-x: hidden; }
    .product-card .product-card__title--1_row .dimmer {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 50px;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
      background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(56%, white), color-stop(100%, white));
      background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      background: linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      content: ""; }
  .product-card .product-card__title--2_rows {
    position: relative;
    height: 3.2rem;
    overflow-y: hidden; }
    .product-card .product-card__title--2_rows .dimmer {
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      height: 1rem;
      width: 100%;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
      background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 56%, white 100%);
      content: ""; }
  .product-card .product-card__image {
    display: block;
    height: 255px;
    line-height: 255px;
    text-align: center; }
    .product-card .product-card__image img {
      vertical-align: middle;
      display: inline-block;
      width: auto;
      max-height: 100%; }
  .product-card .product-card__info {
    padding: 0 3px; }
  .product-card .product-card__price {
    text-align: center;
    overflow: hidden; }
  .product-card .product-form__variants {
    background-color: #41cd62;
    border: none;
    border-radius: 0;
    color: white;
    padding: 13px 10px;
    background-image: url("ico-select-alt_17018895894891647455.svg");
    line-height: 1.42;
    text-transform: uppercase; }
    .product-card .product-form__variants option:disabled {
      color: white; }
  .product-card .selectric {
    background-color: #41cd62;
    text-align: center;
    border: none; }
    .product-card .selectric:hover, .product-card .selectric:active, .product-card .selectric:focus {
      background-color: #2ead4c; }
    .product-card .selectric .label {
      color: white;
      text-transform: uppercase;
      padding: 17px 0;
      margin: 0 21px 0 10px; }
    .product-card .selectric .button {
      height: 100%;
      width: 21px; }
      .product-card .selectric .button:after {
        border-top-color: white;
        right: initial; }
  .product-card .product-card__button, .product-card .product-card__button span {
    text-transform: uppercase;
    padding-left: 5px;
    padding-right: 5px; }
  .product-card .spr-badge {
    font-size: 0.75rem; }
    .product-card .spr-badge .spr-badge-caption {
      display: none; }
  @media screen and (min-width: 1024px) {
    .product-card .product-form {
      height: 52px; }
    .product-card.product-card--hoverable .product-form {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      height: 0;
      overflow: hidden;
      margin: -45px auto 0px auto;
      width: 85%;
      transition: height 0.1s;
      z-index: 5; }
      .product-card.product-card--hoverable .product-form .product-form__variants {
        border-radius: 0;
        width: 100%; }
    .product-card.product-card--hoverable:hover .product-form {
      border: none;
      overflow: visible; }
    .product-card.product-card--hoverable:hover .product-card__image {
      position: relative; }
      .product-card.product-card--hoverable:hover .product-card__image::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: black;
        opacity: 0.1;
        z-index: 3; }
      .product-card.product-card--hoverable:hover .product-card__image:before {
        cursor: pointer; } }

.product-price {
  white-space: nowrap; }
  .product-price .product-price__old {
    color: #4d4d4d;
    font-size: 0.8rem; }
  .product-price .product-price__price {
    color: #41cd62;
    font-weight: bold; }

.ribbon {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  right: -3px;
  z-index: 4; }
  .ribbon > div {
    font: bold 15px Sans-Serif;
    color: #333;
    text-align: center;
    text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 2px 0;
    left: -5px;
    top: 15px;
    width: 120px;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3); }
  .ribbon > div:before, .ribbon > div:after {
    content: "";
    border-top: 3px solid #6e8900;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    position: absolute;
    bottom: -3px; }
  .ribbon > div:before {
    left: 0; }
  .ribbon > div:after {
    right: 0; }
  .ribbon .ribbon--green {
    background-color: #bfdc7a;
    background-image: -webkit-gradient(radial, from(#bfdc7a), to(#95be32));
    background-image: -webkit-radial-gradient(#bfdc7a, #95be32);
    background-image: -moz-radial-gradient(#bfdc7a, #95be32);
    background-image: -ms-radial-gradient(#bfdc7a, #95be32);
    background-image: -o-radial-gradient(#bfdc7a, #95be32);
    color: #6a6340; }
  .ribbon .ribbon--red {
    background-color: #f53333;
    background-image: -webkit-gradient(radial, from(#f53333), to(#b90909));
    background-image: -webkit-radial-gradient(#f53333, #b90909);
    background-image: -moz-radial-gradient(#f53333, #b90909);
    background-image: -ms-radial-gradient(#f53333, #b90909);
    background-image: -o-radial-gradient(#f53333, #b90909);
    color: #fff; }

.etabs {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e0e0e0; }

.tab {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-bottom: -1px; }
  .tab a {
    font-size: 1.2rem;
    color: #878787;
    display: block;
    padding: 0 10px;
    outline: none;
    transition: all 0.2s ease; }
    .tab a:hover {
      color: #333333; }
    .tab a.active {
      border-bottom: 2px solid #41cd62;
      color: #41cd62; }

.tab-container .panel-container {
  background: #fff;
  padding: 10px; }

.collection-card {
  position: relative;
  /*================ Desktop Version ================*/ }
  .collection-card .collection-card__title {
    text-align: center; }
    .collection-card .collection-card__title.collection-card__title--overlay {
      position: absolute;
      z-index: 7;
      background: transparent;
      text-align: center;
      width: 100%;
      top: 25%;
      left: 0;
      font-size: 1.5rem;
      -webkit-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
      -o-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
      transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1); }
      .collection-card .collection-card__title.collection-card__title--overlay a {
        color: #fff; }
  .collection-card .grid__image {
    display: block;
    height: 255px;
    line-height: 255px;
    text-align: center; }
    .collection-card .grid__image img {
      vertical-align: middle;
      display: inline-block;
      width: auto;
      max-height: 100%; }
  .collection-card.collection-card--overlay .grid__image {
    height: auto;
    min-height: inherit;
    line-height: inherit;
    z-index: 6; }
    .collection-card.collection-card--overlay .grid__image::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: black;
      opacity: 0.3;
      z-index: 5; }
    .collection-card.collection-card--overlay .grid__image::after {
      content: "";
      display: block;
      padding-bottom: 100%; }
    .collection-card.collection-card--overlay .grid__image img {
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateY(-50%) translateX(-50%);
      border: none;
      border-radius: 0; }
  .collection-card.collection-card--overlay.hover-effect:hover .collection-card__title {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3); }
  .collection-card.hover-effect {
    -webkit-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
    -o-transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1);
    transition: all 2.75s cubic-bezier(0, 0.83, 0.17, 1); }
    .collection-card.hover-effect:hover {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
      .collection-card.hover-effect:hover img {
        border: none;
        border-radius: 0; }
  @media screen and (min-width: 1024px) {
    .collection-card {
      margin-bottom: 30px; }
      .collection-card .collection-card__title.collection-card__title--overlay {
        top: 40%; } }

/* The Modal (background) */
.konversion-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 25;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  text-align: center;
  /* Modal Content/Box */
  /* Modal Header */
  /* Modal Body */
  /* Modal Footer */
  /*================ Desktop Version ================*/ }
  .konversion-modal .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 0 auto;
    /* 15% from the top and centered */
    padding: 0px;
    width: 100%;
    /* Could be more or less, depending on screen size */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    display: inline-block;
    text-align: left;
    vertical-align: middle; }
  .konversion-modal .modal-header {
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0; }
    .konversion-modal .modal-header .modal__close {
      float: right;
      margin-top: 5px;
      height: 50px;
      width: 40px;
      text-align: right; }
  .konversion-modal.konversion-modal--splash .modal-header {
    padding: 0;
    border-bottom: none; }
    .konversion-modal.konversion-modal--splash .modal-header .modal__close {
      position: absolute;
      right: 10px;
      top: 10px;
      margin: 0;
      padding: 0; }
  .konversion-modal .modal-body {
    padding: 2px 1rem; }
    .konversion-modal .modal-body .alert-info {
      margin: 60px auto; }
  .konversion-modal .modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white; }
  @media screen and (min-width: 1024px) {
    .konversion-modal .modal-content {
      margin: 30px auto;
      /* 15% from the top and centered */
      padding: 10px;
      width: 540px; } }

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

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0; }

  to {
    top: 0;
    opacity: 1; } }

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0; }

  to {
    top: 0;
    opacity: 1; } }

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold; }

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer; }

/*================ Newsletter modal ================*/
.modal_newsletter .modal-content {
  padding: 0;
  margin: 0;
  width: 800px;
  max-width: 100%; }
  .modal_newsletter .modal-content .modal-body {
    display: table;
    padding: 0; }
  .modal_newsletter .modal-content.with-border {
    border: 0px solid #000; }
.modal_newsletter .content-image {
  display: none;
  width: 100%;
  float: left; }
  .modal_newsletter .content-image img {
    width: 100%; }
.modal_newsletter .content-newsletter-form {
  width: 100%;
  padding: 30px 40px;
  display: block;
  float: left; }
  .modal_newsletter .content-newsletter-form.text-align-left {
    text-align: left; }
  .modal_newsletter .content-newsletter-form.text-align-right {
    text-align: right; }
  .modal_newsletter .content-newsletter-form.text-align-center {
    text-align: center; }
.modal_newsletter .newsletter-form__input {
  width: 100%;
  margin-right: 10px;
  padding: 10px 10px;
  margin-bottom: 10px; }
.modal_newsletter .newsletter-form__btn {
  width: 100%;
  padding: 10px 0px;
  vertical-align: inherit; }
.modal_newsletter .newsletter-form__text {
  margin-bottom: 40px; }

/*================ Desktop Version ================*/
@media screen and (min-width: 1024px) {
  .modal_newsletter .content-image {
    display: table-cell;
    vertical-align: middle;
    float: inherit;
    width: inherit; }
    .modal_newsletter .content-image img {
      float: left; }
  .modal_newsletter .content-newsletter-form {
    width: 60%;
    float: inherit;
    padding: 30px 30px;
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    max-width: 600px; }
  .modal_newsletter .newsletter-form__input {
    width: 60%;
    margin-right: 10px;
    padding: 10px 10px; }
  .modal_newsletter .newsletter-form__btn {
    width: 36%;
    padding: 10px 0px;
    vertical-align: inherit; } }
/*================ Newsletter modal ================*/
.modal_product_announcement .modal-content {
  padding: 0;
  margin: 0;
  width: 700px;
  max-width: 100%; }
  .modal_product_announcement .modal-content .modal-body {
    display: table;
    padding: 0;
    width: 100%; }
  .modal_product_announcement .modal-content.with-border {
    border: 0px solid #000; }
.modal_product_announcement .content-image {
  display: none;
  width: 100%;
  float: left; }
  .modal_product_announcement .content-image img {
    width: 100%; }
.modal_product_announcement .content-product-info {
  width: 100%;
  padding: 30px 30px;
  display: block;
  float: left; }
  .modal_product_announcement .content-product-info.text-align-left {
    text-align: left; }
  .modal_product_announcement .content-product-info.text-align-right {
    text-align: right; }
  .modal_product_announcement .content-product-info.text-align-center {
    text-align: center; }
.modal_product_announcement .go-to-product-btn {
  margin-top: 20px; }

/*================ Desktop Version ================*/
@media screen and (min-width: 1024px) {
  .modal_product_announcement .content-image {
    display: table-cell;
    vertical-align: middle;
    float: inherit;
    width: inherit; }
    .modal_product_announcement .content-image img {
      float: left; }
  .modal_product_announcement .content-newsletter-form {
    width: 60%;
    float: inherit;
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    max-width: 600px; }
  .modal_product_announcement .newsletter-form__input {
    width: 60%; }
  .modal_product_announcement .newsletter-form__btn {
    width: 36%;
    padding: 10px 0px; } }
.facebook-buttons__wrapper {
  display: -webkit-inline-box;
  float: left;
  height: 40px;
  padding: 5px 10px 0px 10px; }
  .facebook-buttons__wrapper .fake-like-button {
    width: 92px;
    height: 29px;
    margin: 5px 0px 0px 4px;
    background-repeat: no-repeat;
    background-image: url("fake-like-btn.png");
    cursor: pointer; }
  .facebook-buttons__wrapper .fake-share-button {
    width: 87px;
    height: 29px;
    margin: 5px 0px 0px 0px;
    background-repeat: no-repeat;
    background-image: url("fake-share-btn.png");
    cursor: pointer; }

.content-deal-of-the-day {
  height: 100%;
  float: right;
  padding: 0px 12px;
  overflow: hidden;
  position: relative;
  border-left: solid 1px rgba(0, 0, 0, 0.2);
  border-right: solid 1px rgba(0, 0, 0, 0.2);
  height: 55px;
  /*================ Desktop Version ================*/ }
  @media screen and (max-width: 1024px) {
    .content-deal-of-the-day.desktop {
      height: 0;
      width: 0;
      visibility: hidden; } }
  @media screen and (max-width: 1300px) {
    .content-deal-of-the-day.desktop .content-countdown {
      display: none; } }
  .content-deal-of-the-day.mobile-small {
    text-align: center;
    width: 100%;
    visibility: hidden;
    border: none;
    height: 0;
    margin: 0; }
    .content-deal-of-the-day.mobile-small .wrapper {
      overflow: hidden;
      margin: auto;
      display: table; }
      .content-deal-of-the-day.mobile-small .wrapper .content-product-img img {
        margin-top: 2px; }
    @media screen and (max-width: 768px) {
      .content-deal-of-the-day.mobile-small {
        height: auto;
        visibility: visible;
        margin-top: 105px;
        margin-bottom: -55px; } }
  .content-deal-of-the-day.mobile-medium {
    position: absolute;
    right: 0;
    top: 0px;
    width: 100px;
    border: none !important;
    z-index: 0;
    padding: 0;
    margin: 0;
    border-left: solid 1px rgba(0, 0, 0, 0.2);
    height: 0;
    visibility: hidden;
    text-align: center; }
    @media screen and (max-width: 1023px) {
      .content-deal-of-the-day.mobile-medium {
        height: 55px;
        visibility: visible; } }
    @media screen and (max-width: 768px) {
      .content-deal-of-the-day.mobile-medium {
        height: 0;
        width: 0;
        visibility: hidden; } }
    .content-deal-of-the-day.mobile-medium .content-product-img {
      margin: auto;
      height: 100%;
      display: table;
      float: none;
      position: relative; }
      .content-deal-of-the-day.mobile-medium .content-product-img .product-image {
        height: 39px;
        margin-top: 2px; }
    .content-deal-of-the-day.mobile-medium .countdown {
      color: #41cd62;
      position: absolute;
      right: 15px;
      font-weight: 900;
      font-size: 17px;
      top: 30px; }
    .content-deal-of-the-day.mobile-medium .discount-percentage {
      font-weight: 900;
      font-size: 12px;
      position: absolute;
      right: 14px;
      z-index: 1; }
  .content-deal-of-the-day h2, .content-deal-of-the-day .h2, .content-deal-of-the-day .standard-page__title, .content-deal-of-the-day .sidebar .sidebar__title, .sidebar .content-deal-of-the-day .sidebar__title, .content-deal-of-the-day .contact-page .map__title, .contact-page .content-deal-of-the-day .map__title, .content-deal-of-the-day p {
    line-height: 18px;
    letter-spacing: -1px;
    margin: 0;
    font-weight: 600;
    text-align: left; }
  .content-deal-of-the-day .content-countdown {
    height: 100%;
    float: left;
    padding: 10px 0px;
    display: block; }
    .content-deal-of-the-day .content-countdown .countdown {
      color: #41cd62; }
    .content-deal-of-the-day .content-countdown h2, .content-deal-of-the-day .content-countdown .h2, .content-deal-of-the-day .content-countdown .standard-page__title, .content-deal-of-the-day .content-countdown .sidebar .sidebar__title, .sidebar .content-deal-of-the-day .content-countdown .sidebar__title, .content-deal-of-the-day .content-countdown .contact-page .map__title, .contact-page .content-deal-of-the-day .content-countdown .map__title {
      font-size: 15px; }
  .content-deal-of-the-day .content-product-img {
    height: 100%;
    float: left;
    position: relative; }
    .content-deal-of-the-day .content-product-img img {
      height: 55px; }
    .content-deal-of-the-day .content-product-img .discount-percentage {
      font-weight: 900;
      font-size: 13px;
      top: 2px;
      position: absolute;
      right: 14px; }
  .content-deal-of-the-day .content-price {
    text-align: left;
    height: 100%;
    float: left;
    padding: 10px 0px; }
    .content-deal-of-the-day .content-price p {
      font-size: 17px; }
    .content-deal-of-the-day .content-price .compared_at {
      text-decoration: line-through; }
    .content-deal-of-the-day .content-price .price {
      color: #41cd62; }
  @media screen and (min-width: 1024px) {
    .content-deal-of-the-day .content-countdown h2, .content-deal-of-the-day .content-countdown .h2, .content-deal-of-the-day .content-countdown .standard-page__title, .content-deal-of-the-day .content-countdown .sidebar .sidebar__title, .sidebar .content-deal-of-the-day .content-countdown .sidebar__title, .content-deal-of-the-day .content-countdown .contact-page .map__title, .contact-page .content-deal-of-the-day .content-countdown .map__title {
      color: #393939; }
    .content-deal-of-the-day .content-price .compared_at {
      color: #393939; } }

/**
 * Top fixed add to cart bar
 **/
.product-add-to-cart-bar {
  position: fixed;
  background: #fff;
  height: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  color: #000;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 55px;
  border-top: 1px rgba(0, 0, 0, 0.11) solid; }
  .product-add-to-cart-bar.shown {
    height: 60px;
    visibility: visible;
    opacity: 1; }
  .product-add-to-cart-bar .product-title {
    font-size: 18px;
    font-weight: 400;
    float: left;
    text-align: left;
    padding: 15px 0px;
    margin: 0; }
  .product-add-to-cart-bar .product-price {
    font-size: 21px;
    font-weight: 600;
    float: right;
    text-align: right;
    padding: 13px 15px;
    color: #3e3e3e; }
  .product-add-to-cart-bar .btn--add-to-cart {
    float: right;
    height: 60px;
    text-transform: uppercase;
    padding: 0px 50px; }
  .product-add-to-cart-bar .content-inputs {
    margin-top: 12px; }
  .product-add-to-cart-bar .product-quantity {
    border: 1px solid #efefef;
    text-align: center;
    width: 125px;
    float: right; }
    .product-add-to-cart-bar .product-quantity .js-qty__num {
      margin: 2px 7px;
      width: 50px;
      border: 1px solid #efefef;
      border-top: none;
      border-bottom: none;
      border-radius: 0;
      box-sizing: border-box;
      height: 30px;
      text-align: center; }
    .product-add-to-cart-bar .product-quantity button {
      outline: none; }
  .product-add-to-cart-bar .product-variants {
    float: right; }
    .product-add-to-cart-bar .product-variants .variant {
      margin-right: 5px;
      float: right; }
      .product-add-to-cart-bar .product-variants .variant .product-options__selector {
        padding: 5px 25px 5px 8px; }

/*============================================================================
  # Shop Pages
==============================================================================*/
.article-template {
  /*================ Desktop Version ================*/ }
  .article-template .article__author,
  .article-template .article__date {
    color: #afafaf; }
  .article-template .article__body {
    margin-top: 30px; }

.blog-template {
  /*================ Desktop Version ================*/ }
  .blog-template .blog-filter {
    width: 100%; }
    .blog-template .blog-filter select {
      border-radius: 0;
      color: #333333;
      margin-bottom: 15px;
      padding: 1rem;
      width: 100%; }
  .blog-template .blog-list .blog-list__post {
    margin-bottom: 30px; }
  .blog-template .blog-list .blog-list__image img {
    width: 100%; }
  .blog-template .blog-list .blog-list__author,
  .blog-template .blog-list .blog-list__date {
    color: #afafaf; }
  .blog-template .blog-list .blog-list__excerpt {
    padding-top: 1rem; }
  .blog-template .blog-list .blog-list__links a {
    color: #41cd62;
    transition: all 0.3s; }
    .blog-template .blog-list .blog-list__links a:hover {
      color: #23853a; }
  .blog-template .blog-list .blog-list__links > li:not(:first-child):before {
    content: " | "; }
  @media screen and (min-width: 1024px) {
    .blog-template .blog-filter {
      float: right;
      margin-top: -70px;
      width: 250px; } }

/*================ Common page elements ================*/
.page-header {
  padding: 1rem 0 0.5rem;
  font-size: 1.1rem; }
  .page-header h2, .page-header .h2, .page-header .standard-page__title, .page-header .sidebar .sidebar__title, .sidebar .page-header .sidebar__title, .page-header .contact-page .map__title, .contact-page .page-header .map__title {
    text-align: center; }
  @media screen and (min-width: 1024px) {
    .page-header {
      padding: 0 0 0 30px;
      border-bottom: 1px solid #e0e0e0; } }

body.template-collection .page-header {
  border: none; }

.breadcrumb {
  text-align: center; }
  .breadcrumb > span:last-child {
    color: #41cd62; }
  @media screen and (min-width: 1024px) {
    .breadcrumb {
      padding: 5px 0;
      text-align: left; } }

.pagination {
  margin-bottom: 1em;
  text-align: center; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
    .pagination > span.current {
      border-bottom: 2px solid #41cd62; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }

/*================ Collection Template ================*/
.collection-template {
  /*================ Desktop Version ================*/ }
  .collection-template .collection-controls select {
    border-radius: 0;
    color: #333333;
    margin-bottom: 15px;
    padding: 1rem;
    width: 100%; }
    .collection-template .collection-controls select:not(#SortBy) {
      border-left: none;
      border-right: none; }
    .collection-template .collection-controls select#SortBy {
      border-right: none; }
  @media screen and (max-width: 1023px) {
    .collection-template .product-list.grid--uniform {
      margin-left: -5px; }
    .collection-template .product-list > .grid__item {
      padding-left: 5px;
      margin-bottom: 7.5px; }
    .collection-template .product-list.product-list--1-col.grid--uniform {
      margin-left: 0; }
    .collection-template .product-list.product-list--1-col > .grid__item {
      padding-left: 30px;
      padding-right: 30px; } }
  @media screen and (min-width: 1024px) {
    .collection-template .product-list > .grid__item {
      padding-left: 15px;
      margin-bottom: 30px; } }
  @media screen and (min-width: 1024px) {
    .collection-template.top-filter {
      padding: 0 30px; }
      .collection-template.top-filter .collection-controls {
        margin-top: 20px;
        float: right; }
        .collection-template.top-filter .collection-controls .grid__item {
          width: 200px; }
        .collection-template.top-filter .collection-controls select {
          border-left: 1px solid #e0e0e0 !important; }
        .collection-template.top-filter .collection-controls .grid__item:last-of-type select {
          border-right: 1px solid #e0e0e0 !important; }
    .collection-template .collection-filter {
      margin-bottom: 30px;
      visibility: hidden; }
      .collection-template .collection-filter .collection-filter__items--tags {
        padding-left: 15px; }
      .collection-template .collection-filter .collection-filter__title {
        color: #afafaf;
        font-size: 1.15rem;
        font-weight: normal; }
      .collection-template .collection-filter .collection-filter__subtitle {
        font-size: 1rem;
        font-weight: bold; }
        .collection-template .collection-filter .collection-filter__subtitle .collection-filter__toggle {
          float: right;
          font-size: 0.8rem;
          margin-right: 30px; }
        .collection-template .collection-filter .collection-filter__subtitle.other-tags {
          margin-left: 15px; }
      .collection-template .collection-filter .collapsible-title {
        display: block;
        position: relative;
        cursor: pointer;
        margin: 10px 15px 0px 0px; }
        .collection-template .collection-filter .collapsible-title::after {
          content: "\25c2";
          font-size: 1.3em;
          display: table;
          left: -16px;
          top: -17px;
          line-height: 50px;
          position: absolute;
          text-shadow: 0 -1px #111;
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s;
          -webkit-transform: rotate(-90deg);
          -moz-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
          -o-transform: rotate(-90deg);
          transform: rotate(-90deg); }
        .collection-template .collection-filter .collapsible-title.closed::after {
          -webkit-transform: rotate(-180deg);
          -moz-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
          -o-transform: rotate(-180deg);
          transform: rotate(-180deg); }
      .collection-template .collection-filter .collapsible-content {
        overflow: hidden;
        height: inherit;
        -webkit-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s; }
        .collection-template .collection-filter .collapsible-content.closed {
          height: 0px; }
      .collection-template .collection-filter .collection-filter__reset {
        padding-left: 1.5rem; }
        .collection-template .collection-filter .collection-filter__reset a {
          color: #41cd62;
          border-bottom: 1px dashed #41cd62;
          padding: 0 3px 3px; }
          .collection-template .collection-filter .collection-filter__reset a:hover {
            border-bottom: none; } }
  .collection-template .more-desktop, .collection-template .more-mobile {
    text-align: center; }
    .collection-template .more-desktop a, .collection-template .more-mobile a {
      display: none; }

.collection-banner {
  height: 192px;
  overflow: hidden;
  position: relative;
  width: 100%; }
  .collection-banner.collection-banner--small {
    height: 288px; }
  .collection-banner.collection-banner--medium {
    height: 384px; }
  .collection-banner.collection-banner--large {
    height: 546px; }
  @media screen and (min-width: 768px) {
    .collection-banner {
      height: 240px; }
      .collection-banner.collection-banner--small {
        height: 360px; }
      .collection-banner.collection-banner--medium {
        height: 512px; }
      .collection-banner.collection-banner--large {
        height: 728px; } }
  .collection-banner:after {
    content: "";
    pointer-events: none;
    position: absolute;
    width: 35%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 5; }
  .collection-banner .collection-banner__content {
    position: absolute;
    top: 15%;
    left: 30px;
    right: 30px;
    z-index: 6; }
  .collection-banner .collection-banner__subtitle p {
    font-weight: normal; }

.collection-menu {
  margin-bottom: 30px; }
  .collection-menu .collection-menu__title {
    color: #afafaf;
    font-size: 1.15rem;
    font-weight: normal; }

/*================ Product Template ================*/
@media screen and (max-width: 767px) {
  body.template-product {
    padding-bottom: 70px; } }
.product-template, .section-featured-product {
  /*================ Desktop Version ================*/ }
  .product-template .product-images, .section-featured-product .product-images {
    margin-bottom: 5px; }
    .product-template .product-images ul, .section-featured-product .product-images ul {
      margin-bottom: 0; }
    .product-template .product-images .product-images__thumbs ul, .section-featured-product .product-images .product-images__thumbs ul {
      margin-right: 7.5px; }
      .product-template .product-images .product-images__thumbs ul li, .section-featured-product .product-images .product-images__thumbs ul li {
        margin-bottom: 5px; }
    .product-template .product-images .product-images__thumbs img, .section-featured-product .product-images .product-images__thumbs img {
      margin: 0 auto; }
    .product-template .product-images .product-images__thumbs .slick-slide.slick-current img, .section-featured-product .product-images .product-images__thumbs .slick-slide.slick-current img {
      border: 2px solid #e0e0e0;
      box-sizing: border-box; }
    .product-template .product-images .product-images__thumbs .slick-slide:not(.slick-current) .thumb-overlay, .section-featured-product .product-images .product-images__thumbs .slick-slide:not(.slick-current) .thumb-overlay {
      position: relative; }
      .product-template .product-images .product-images__thumbs .slick-slide:not(.slick-current) .thumb-overlay::before, .section-featured-product .product-images .product-images__thumbs .slick-slide:not(.slick-current) .thumb-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: black;
        opacity: 0.1;
        z-index: 6; }
    .product-template .product-images .product-images__thumbs .slick-slider .slick-arrow, .section-featured-product .product-images .product-images__thumbs .slick-slider .slick-arrow {
      display: block;
      width: 30px;
      height: 30px;
      background-color: rgba(0, 0, 0, 0.25);
      border-radius: 0;
      top: 50%;
      z-index: 10; }
      .product-template .product-images .product-images__thumbs .slick-slider .slick-arrow::before, .section-featured-product .product-images .product-images__thumbs .slick-slider .slick-arrow::before {
        color: #fff; }
    .product-template .product-images .product-images__thumbs .slick-slider .slick-prev, .section-featured-product .product-images .product-images__thumbs .slick-slider .slick-prev {
      top: 5px;
      left: 50%;
      transform: translateX(-50%) rotate(90deg); }
    .product-template .product-images .product-images__thumbs .slick-slider .slick-next, .section-featured-product .product-images .product-images__thumbs .slick-slider .slick-next {
      top: inherit;
      bottom: 10px;
      right: 50%;
      transform: translateX(50%) rotate(90deg); }
    .product-template .product-images .product-images__image, .section-featured-product .product-images .product-images__image {
      text-align: center; }
      .product-template .product-images .product-images__image img, .section-featured-product .product-images .product-images__image img {
        display: block; }
      .product-template .product-images .product-images__image ul:not(.slick-initialized) > li:not(:first-child), .section-featured-product .product-images .product-images__image ul:not(.slick-initialized) > li:not(:first-child) {
        display: none; }
      .product-template .product-images .product-images__image .slick-slide img, .section-featured-product .product-images .product-images__image .slick-slide img {
        margin: 0 auto;
        width: 100%; }
      .product-template .product-images .product-images__image .slick-slider li, .section-featured-product .product-images .product-images__image .slick-slider li {
        margin-bottom: 0; }
      .product-template .product-images .product-images__image .slick-slider .slick-arrow, .section-featured-product .product-images .product-images__image .slick-slider .slick-arrow {
        display: block;
        background-color: rgba(0, 0, 0, 0.25);
        border-radius: 0;
        top: 50%;
        height: 100%;
        width: 30px;
        z-index: 10; }
        .product-template .product-images .product-images__image .slick-slider .slick-arrow::before, .section-featured-product .product-images .product-images__image .slick-slider .slick-arrow::before {
          color: #fff;
          top: 50%; }
      .product-template .product-images .product-images__image .slick-slider .slick-prev, .section-featured-product .product-images .product-images__image .slick-slider .slick-prev {
        left: 0; }
      .product-template .product-images .product-images__image .slick-slider .slick-next, .section-featured-product .product-images .product-images__image .slick-slider .slick-next {
        right: 0; }
  .product-template .product-info .product-info__title, .section-featured-product .product-info .product-info__title {
    font-size: 1.2rem;
    line-height: 1.7rem; }
  .product-template .product-info .product-price, .section-featured-product .product-info .product-price {
    font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    float: right;
    padding-left: 10px;
    text-align: right; }
    .product-template .product-info .product-price .product-price__price, .section-featured-product .product-info .product-price .product-price__price {
      color: #41cd62;
      font-size: 1.8rem;
      line-height: 2rem;
      font-weight: bold; }
    .product-template .product-info .product-price .product-price__percent, .section-featured-product .product-info .product-price .product-price__percent {
      color: #f53333;
      font-size: 1.1rem;
      font-weight: bold; }
    .product-template .product-info .product-price .product-price__old, .section-featured-product .product-info .product-price .product-price__old {
      font-size: 1.1rem;
      color: #afafaf; }
  .product-template .product-info .spr-badge, .section-featured-product .product-info .spr-badge {
    font-size: 1rem;
    margin-bottom: 10px; }
  .product-template .product-info .deal-of-the-day-product, .section-featured-product .product-info .deal-of-the-day-product {
    margin-bottom: 30px; }
    .product-template .product-info .deal-of-the-day-product p, .section-featured-product .product-info .deal-of-the-day-product p {
      letter-spacing: 1px;
      margin: 0;
      font-size: 18px;
      font-weight: 600; }
    .product-template .product-info .deal-of-the-day-product .countdown, .section-featured-product .product-info .deal-of-the-day-product .countdown {
      color: #41cd62; }
    .product-template .product-info .deal-of-the-day-product .progress-bar, .section-featured-product .product-info .deal-of-the-day-product .progress-bar {
      width: 100%;
      position: relative;
      display: block;
      height: 4px;
      background: #e6e6e6; }
      .product-template .product-info .deal-of-the-day-product .progress-bar .bar, .section-featured-product .product-info .deal-of-the-day-product .progress-bar .bar {
        height: 100%;
        width: 10px;
        position: absolute;
        left: 0; }
  .product-template .product-info__description, .section-featured-product .product-info__description {
    position: relative;
    overflow: hidden; }
    .product-template .product-info__description.product-info__description--shrunk:after, .section-featured-product .product-info__description.product-info__description--shrunk:after {
      content: "";
      pointer-events: none;
      position: absolute;
      width: 100%;
      height: 45%;
      bottom: 0;
      right: 0;
      background-image: -webkit-linear-gradient(top, white, rgba(255, 255, 255, 0));
      background-image: -moz-linear-gradient(top, white, rgba(255, 255, 255, 0));
      background-image: -ms-linear-gradient(top, white, rgba(255, 255, 255, 0));
      background-image: -o-linear-gradient(top, white, rgba(255, 255, 255, 0));
      background-image: linear-gradient(to top, white, rgba(255, 255, 255, 0)); }
  .product-template .product-info__more, .section-featured-product .product-info__more {
    text-align: center;
    width: 100%;
    padding-bottom: 1rem; }
    .product-template .product-info__more:focus, .section-featured-product .product-info__more:focus {
      outline: none; }
  .product-template .product-form, .section-featured-product .product-form {
    margin-bottom: 30px; }
  .no-js .product-template .product-form__variants, .no-js .section-featured-product .product-form__variants {
    display: block; }
  .product-template .product-options .selector-wrapper label, .section-featured-product .product-options .selector-wrapper label {
    display: block;
    padding-left: 0.5rem; }
  .product-template .product-options .selector-wrapper .product-form__input, .section-featured-product .product-options .selector-wrapper .product-form__input {
    border-radius: 0;
    color: #333333;
    margin-bottom: 15px;
    padding: 1rem;
    width: 100%; }
  .product-template .product-options .product-form__item--first .product-form__input, .section-featured-product .product-options .product-form__item--first .product-form__input {
    border-left: none;
    border-right: none; }
  .product-template .product-options .product-form__item--last .product-form__input, .section-featured-product .product-options .product-form__item--last .product-form__input {
    border-right: none; }
  .product-template .product-options--swatches .product-form__item--quantity, .section-featured-product .product-options--swatches .product-form__item--quantity {
    margin: 0 10px 10px;
    width: 50%; }
    .product-template .product-options--swatches .product-form__item--quantity .js-qty__num, .section-featured-product .product-options--swatches .product-form__item--quantity .js-qty__num {
      height: 45px;
      margin-bottom: 10px; }
  .product-template .product-options--swatches .swatches, .section-featured-product .product-options--swatches .swatches {
    margin: 0 10px 10px; }
  .product-template .js-qty button, .section-featured-product .js-qty button {
    display: none; }
  .product-template .js-qty .js-qty__num, .section-featured-product .js-qty .js-qty__num {
    border-radius: 0;
    color: #333333;
    margin-bottom: 15px;
    padding: 1rem;
    width: 100%; }
  .product-template .related-products, .section-featured-product .related-products {
    margin: 30px 0 20px; }
    .product-template .related-products .product-list .slick-list, .section-featured-product .related-products .product-list .slick-list {
      margin-left: -5px; }
    .product-template .related-products .product-list__item, .section-featured-product .related-products .product-list__item {
      margin-left: 5px; }
      .product-template .related-products .product-list__item .product-card__form, .section-featured-product .related-products .product-list__item .product-card__form {
        max-width: 300px; }
  .product-template .related-products__title, .product-template .spr-header-title, .section-featured-product .related-products__title, .section-featured-product .spr-header-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    text-align: center; }
  .product-template .product-icons .product-icons__col, .section-featured-product .product-icons .product-icons__col {
    text-align: center;
    font-size: 0.9rem; }
  .product-template .product-icons .variant-qty, .section-featured-product .product-icons .variant-qty {
    color: #d02e2e; }
  .product-template .product-icons .product-icons__icon, .section-featured-product .product-icons .product-icons__icon {
    background-image: url("prod-icons_180x45_17018895894891647455.png");
    background-repeat: no-repeat;
    height: 45px;
    width: 45px;
    margin: 0 auto; }
    .product-template .product-icons .product-icons__icon.product-icons__icon--house, .section-featured-product .product-icons .product-icons__icon.product-icons__icon--house {
      background-position-x: 0; }
    .product-template .product-icons .product-icons__icon.product-icons__icon--plane, .section-featured-product .product-icons .product-icons__icon.product-icons__icon--plane {
      background-position-x: -45px; }
    .product-template .product-icons .product-icons__icon.product-icons__icon--badge, .section-featured-product .product-icons .product-icons__icon.product-icons__icon--badge {
      background-position-x: -90px; }
    .product-template .product-icons .product-icons__icon.product-icons__icon--shield, .section-featured-product .product-icons .product-icons__icon.product-icons__icon--shield {
      background-position-x: -135px; }
  .product-template .product-meta tr, .section-featured-product .product-meta tr {
    border-bottom: 1px solid #e0e0e0; }
    .product-template .product-meta tr:first-child, .section-featured-product .product-meta tr:first-child {
      border-top: 1px solid #e0e0e0; }
    .product-template .product-meta tr th, .product-template .product-meta tr td, .section-featured-product .product-meta tr th, .section-featured-product .product-meta tr td {
      border: none;
      padding: 5px 3px;
      font-size: 0.85rem; }
    .product-template .product-meta tr th, .section-featured-product .product-meta tr th {
      color: #afafaf;
      font-weight: normal; }
    .product-template .product-meta tr td a, .section-featured-product .product-meta tr td a {
      color: #41cd62; }
      .product-template .product-meta tr td a a:hover, .section-featured-product .product-meta tr td a a:hover {
        text-decoration: underline; }
  .product-template .tab-container, .section-featured-product .tab-container {
    margin-top: 1rem; }
    .product-template .tab-container .spr-container, .section-featured-product .tab-container .spr-container {
      border: none; }
    .product-template .tab-container .product-description, .product-template .tab-container .tab__page-content, .section-featured-product .tab-container .product-description, .section-featured-product .tab-container .tab__page-content {
      margin: 0;
      padding: 15px 10px; }
  @media screen and (min-width: 1024px) {
    .product-template .product-images .product-images__image img, .section-featured-product .product-images .product-images__image img {
      display: initial; }
    .product-template .product-images .product-images__image .slick-slider .slick-arrow, .section-featured-product .product-images .product-images__image .slick-slider .slick-arrow {
      transition: width 0.1s;
      width: 0; }
      .product-template .product-images .product-images__image .slick-slider .slick-arrow::before, .section-featured-product .product-images .product-images__image .slick-slider .slick-arrow::before {
        opacity: 0; }
    .product-template .product-images .product-images__image .slick-slider:hover .slick-arrow, .section-featured-product .product-images .product-images__image .slick-slider:hover .slick-arrow {
      width: 30px; }
      .product-template .product-images .product-images__image .slick-slider:hover .slick-arrow::before, .section-featured-product .product-images .product-images__image .slick-slider:hover .slick-arrow::before {
        opacity: 1; }
    .product-template .product-info .product-price, .section-featured-product .product-info .product-price {
      float: none;
      text-align: left;
      padding-left: 0; }
      .product-template .product-info .product-price .product-price__price, .section-featured-product .product-info .product-price .product-price__price {
        color: #333333; }
    .product-template .product-info .product-rating, .section-featured-product .product-info .product-rating {
      float: right; }
    .product-template .product-info .product-short-description, .section-featured-product .product-info .product-short-description {
      color: #878787;
      padding: 10px 0; }
    .product-template .product-form .js-qty, .section-featured-product .product-form .js-qty {
      border: 1px solid #efefef;
      text-align: center;
      width: 130px;
      width: 140px; }
      .product-template .product-form .js-qty .ajaxcart__qty-num, .section-featured-product .product-form .js-qty .ajaxcart__qty-num {
        border: 1px solid #efefef;
        border-top: none;
        border-bottom: none;
        border-radius: 0;
        box-sizing: border-box;
        height: 33px;
        margin: 0;
        text-align: center;
        width: 50px;
        font-size: 12px; }
      .product-template .product-form .js-qty .js-qty__num, .section-featured-product .product-form .js-qty .js-qty__num {
        border: 1px solid #efefef;
        border-top: none;
        border-bottom: none;
        border-radius: 0;
        box-sizing: border-box;
        height: 40px;
        margin: 0;
        text-align: center;
        width: 60px; }
      .product-template .product-form .js-qty button, .section-featured-product .product-form .js-qty button {
        border: none;
        height: 30px;
        width: 30px; }
        .product-template .product-form .js-qty button:focus, .section-featured-product .product-form .js-qty button:focus {
          outline: none; }
      .product-template .product-form .js-qty button, .section-featured-product .product-form .js-qty button {
        display: inline-block; }
      .product-template .product-form .js-qty .js-qty__num, .section-featured-product .product-form .js-qty .js-qty__num {
        width: 63px; }
    .product-template .product-form .product-form__item label, .section-featured-product .product-form .product-form__item label {
      display: block; }
    .product-template .product-form .product-form__item .product-options__selector, .product-template .product-form .product-form__item .js-qty, .section-featured-product .product-form .product-form__item .product-options__selector, .section-featured-product .product-form .product-form__item .js-qty {
      margin: 5px 0 10px; }
    .product-template .product-form .product-options--swatches, .section-featured-product .product-form .product-options--swatches {
      margin-bottom: 20px; }
      .product-template .product-form .product-options--swatches .product-form__item--quantity, .section-featured-product .product-form .product-options--swatches .product-form__item--quantity {
        margin-left: 0;
        margin-bottom: 20px;
        width: auto; }
      .product-template .product-form .product-options--swatches .swatches, .section-featured-product .product-form .product-options--swatches .swatches {
        margin-left: 0; }
    .product-template .product-description, .section-featured-product .product-description {
      margin-top: 1rem; } }

.product-form__cart .product-form__cart-submit {
  text-transform: uppercase;
  font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 20px;
  padding: 16px 30px; }

@media screen and (max-width: 768px) {
  .product-template .product-form__cart {
    margin-left: -7.5px;
    margin-right: -7.5px; }
  .product-form__cart .product-form__cart-submit {
    font-size: 1.5rem;
    line-height: 2.5rem; } }
.product-form__cart--sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
  transition: all 0.5s;
  height: 0;
  z-index: 5; }
  .product-form__cart--sticky.stuck {
    height: 70px; }

@media screen and (max-width: 350px) {
  .product-form__cart.stuck {
    height: 54px; }
  .product-form__cart button {
    font-size: 1rem !important;
    line-height: 1.5rem !important; } }
/*================ Cart Template ================*/
.cart-widget {
  margin-left: -15px;
  margin-right: -15px; }

.overflow-wrapper {
  overflow-y: auto;
  position: relative;
  height: auto; }

.overflow-wrapper.more::after {
  display: none; }

.cart-table tr {
  border-bottom: 1px solid #e0e0e0; }
  .cart-table tr th, .cart-table tr td {
    border: none;
    padding: 0; }
.cart-table .cart-table__image {
  padding: 15px 0 0 15px;
  width: 25%; }
.cart-table .cart-table__details {
  padding: 15px;
  padding-right: 7.5px;
  width: 50%; }
  .cart-table .cart-table__details small, .cart-table .cart-table__details p {
    color: #878787; }
  .cart-table .cart-table__details .cart-table__item-title {
    color: #595959;
    font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: bold; }
  .cart-table .cart-table__details .cart-table__item-controls {
    padding-top: 10px;
    width: 165px; }
    .cart-table .cart-table__details .cart-table__item-controls .cart__remove {
      float: right;
      padding-top: 7px; }
    .cart-table .cart-table__details .cart-table__item-controls .ajaxcart__remove {
      float: left;
      padding: 6px; }
  .cart-table .cart-table__details .js-qty, .cart-table .cart-table__details .ajaxcart__qty {
    float: left;
    border: 1px solid #efefef;
    text-align: center;
    width: 130px; }
    .cart-table .cart-table__details .js-qty .ajaxcart__qty-num, .cart-table .cart-table__details .ajaxcart__qty .ajaxcart__qty-num {
      border: 1px solid #efefef;
      border-top: none;
      border-bottom: none;
      border-radius: 0;
      box-sizing: border-box;
      height: 33px;
      margin: 0;
      text-align: center;
      width: 50px;
      font-size: 12px; }
    .cart-table .cart-table__details .js-qty .js-qty__num, .cart-table .cart-table__details .ajaxcart__qty .js-qty__num {
      border: 1px solid #efefef;
      border-top: none;
      border-bottom: none;
      border-radius: 0;
      box-sizing: border-box;
      height: 40px;
      margin: 0;
      text-align: center;
      width: 60px; }
    .cart-table .cart-table__details .js-qty button, .cart-table .cart-table__details .ajaxcart__qty button {
      border: none;
      height: 30px;
      width: 30px; }
      .cart-table .cart-table__details .js-qty button:focus, .cart-table .cart-table__details .ajaxcart__qty button:focus {
        outline: none; }
    .cart-table .cart-table__details .js-qty .js-qty__num, .cart-table .cart-table__details .js-qty .ajaxcart__qty-num, .cart-table .cart-table__details .ajaxcart__qty .js-qty__num, .cart-table .cart-table__details .ajaxcart__qty .ajaxcart__qty-num {
      color: #878787; }
    .cart-table .cart-table__details .js-qty button, .cart-table .cart-table__details .ajaxcart__qty button {
      color: #878787; }
.cart-table .cart-table__summary {
  text-align: center;
  width: 25%; }
  .cart-table .cart-table__summary .money {
    color: #878787; }

.cart-summary {
  margin: 30px; }
  .cart-summary .grid--full {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 10px; }
  .cart-summary .cart-summary__subtotal-title {
    color: #595959;
    font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif; }
  .cart-summary .cart-summary__subtotal {
    color: #41cd62;
    text-align: right; }
  .cart-summary.cart-summary--desktop {
    display: none; }

.cart-shipping-notice {
  color: #878787;
  text-align: center; }
  @media screen and (max-width: 350px) {
    .cart-shipping-notice {
      font-size: 14px; } }

.cart__update {
  text-align: center; }
  .cart__update button {
    color: #595959; }
    .cart__update button .icon {
      font-size: 0.85rem;
      margin-right: 5px; }

.cart__savings {
  font-size: 1rem;
  color: #595959;
  font-weight: normal;
  padding-top: 5px;
  text-align: right;
  margin: -1rem 30px 2rem; }

.cart__checkout-btn {
  text-transform: uppercase;
  padding: 20px; }

.cart-shipping-notice {
  margin: 0 0 30px; }
  .cart-shipping-notice label {
    color: #878787; }
  .cart-shipping-notice textarea {
    min-height: 3.5rem; }

#shipping-calculator {
  margin: 15px 0; }
  #shipping-calculator h5, #shipping-calculator .h5 {
    border-bottom: 1px solid #e0e0e0;
    color: #595959;
    font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    margin-bottom: 15px;
    padding-bottom: 5px; }
  #shipping-calculator .field label {
    display: block;
    float: left;
    padding: 5px 20px 0;
    text-align: right;
    width: 49%; }
  #shipping-calculator .field input[type="text"],
  #shipping-calculator .field select {
    width: 50%; }
  #shipping-calculator .btn, #shipping-calculator .btn--secondary, #shipping-calculator .btn--special {
    border-color: #595959;
    color: #595959; }

/*================ Desktop Version ================*/
@media screen and (min-width: 1024px) {
  .cart-template table.cart-table.full {
    margin: 0 auto;
    width: 80%; }
  .cart-template .cart-summary__wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    margin: 0 auto 30px;
    padding: 15px;
    width: 75%; }
  .cart-template .cart-summary {
    margin: 0; }
    .cart-template .cart-summary .cart-summary__subtotal-title {
      text-transform: uppercase; }
    .cart-template .cart-summary .cart-summary__subtotal {
      color: #393939;
      margin-bottom: 1rem; }
    .cart-template .cart-summary.cart-summary--desktop {
      display: block; }
    .cart-template .cart-summary.cart-summary--mobile {
      display: none; }
    .cart-template .cart-summary .grid--full {
      padding: 0; }
  .cart-template .cart-shipping-notice {
    margin: 1rem 0; }
  .cart-template .cart--empty {
    padding: 150px 30px 30px; }
    .cart-template .cart--empty .h3 {
      margin-bottom: 60px; }
  .cart-template .cart__update {
    margin: 15px 0; }

  .overflow-wrapper {
    overflow-y: auto;
    position: relative;
    max-height: 370px;
    height: 100%; }

  .overflow-wrapper.more::after, .overflow-wrapper::after {
    -moz-box-shadow: -28px -10px 20px -8px rgba(0, 0, 0, 0.38);
    -webkit-box-shadow: -28px -10px 20px -8px rgba(0, 0, 0, 0.38);
    box-shadow: -28px -10px 20px -8px rgba(0, 0, 0, 0.38);
    position: fixed;
    content: '';
    height: 34px;
    bottom: 156px;
    width: 135%;
    background: #fff;
    display: none; }

  .overflow-wrapper.more::after {
    display: block; } }
/*================ Add to Cart Animation ================*/
@media screen and (min-width: 1024px) {
  div.floating-cart {
    position: absolute;
    top: 0;
    right: 0;
    width: 243px;
    height: 243px;
    background: #fff;
    z-index: 200;
    overflow: hidden;
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    display: none; }
    div.floating-cart.moveToCart {
      right: 75px !important;
      top: 35px !important;
      width: 47px;
      height: 47px;
      -webkit-transition: all 600ms ease-in-out;
      -moz-transition: all 600ms ease-in-out;
      -ms-transition: all 600ms ease-in-out;
      -o-transition: all 600ms ease-in-out;
      transition: all 600ms ease-in-out; }
      body.MakeFloatingCart div.floating-cart.moveToCart {
        right: 90px !important;
        top: 55px !important;
        width: 21px;
        height: 22px;
        box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0);
        -webkit-transition: all 200ms ease-out;
        -moz-transition: all 200ms ease-out;
        -ms-transition: all 200ms ease-out;
        -o-transition: all 200ms ease-out;
        transition: all 200ms ease-out; }
    div.floating-cart.floating-cart--big {
      height: 400px;
      width: 400px; } }
@media screen and (min-width: 1024px) and (max-height: 690px) and (max-height: 1024px) {
  .overflow-wrapper {
    height: 200px;
    overflow-y: auto; }

  .overflow-wrapper::after {
    display: block; } }
.page-template {
  /*================ Desktop Version ================*/ }
  @media screen and (min-width: 1024px) {
    .page-template .page-size--standard,
    .page-template .page-size--narrow,
    .page-template .page-size--narrower {
      margin: 0 auto; }
    .page-template .page-size--standard {
      width: 90%; }
    .page-template .page-size--narrow {
      width: 80%; }
    .page-template .page-size--narrower {
      width: 65%; } }
  @media screen and (min-width: 1180px) {
    .page-template .page-size--standard {
      width: 80%; }
    .page-template .page-size--narrow {
      width: 70%; }
    .page-template .page-size--narrower {
      width: 55%; } }

.sidebar {
  padding: 30px; }
  .sidebar.sidebar--clearfix {
    padding: 0;
    margin: 0;
    *zoom: 1; }
    .sidebar.sidebar--clearfix:after {
      content: '';
      display: table;
      clear: both; }
  .sidebar .sidebar__section {
    margin-bottom: 30px; }
  .sidebar .sidebar__linklist {
    margin-left: 0; }
    .sidebar .sidebar__linklist .sidebar__linklist-item {
      text-transform: uppercase; }

.sidebar--contact .contact-form__submit, .sidebar__section-content--contact .contact-form__submit {
  width: 50%;
  margin: 0 auto; }
.sidebar--contact .contact-form__button-wrapper--left .contact-form__submit, .sidebar__section-content--contact .contact-form__button-wrapper--left .contact-form__submit {
  margin: 0 auto 0 0; }
.sidebar--contact .contact-form__button-wrapper--right .contact-form__submit, .sidebar__section-content--contact .contact-form__button-wrapper--right .contact-form__submit {
  margin: 0 0 0 auto; }

.contact-page {
  /*================ Desktop Version ================*/ }
  .contact-page .contact-form .contact-form__submit {
    margin: 1rem auto; }
  .contact-page .map {
    margin-bottom: 30px; }
    .contact-page .map.map--bottom {
      margin-bottom: -5px; }
    .contact-page .map .map__title, .contact-page .map .map__description {
      padding: 0 30px; }
    .contact-page .map iframe {
      pointer-events: none; }
  @media screen and (min-width: 1024px) {
    .contact-page .product-card.product-card--hoverable .product-form {
      width: 65%; }
    .contact-page .contact-form__wrapper {
      width: 90%;
      margin: 0 auto; }
    .contact-page .contact-promo .product-card {
      border: 1px solid #e0e0e0;
      border-radius: 3px;
      padding: 30px;
      margin: 30px auto;
      width: 70%; }
    .contact-page .map .map__title, .contact-page .map .map__description {
      max-width: 1180px !important;
      margin: 0 auto !important; } }

/*============================================================================
  # Customer templates
==============================================================================*/
.account-template .account-section {
  margin-bottom: 30px; }
  .account-template .account-section .account-section__title {
    margin-bottom: 15px; }
.account-template .account-addresses .account-address:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px; }
.account-template .account-addresses .account-address__title {
  text-decoration: underline; }
@media screen and (max-width: 1023px) {
  .account-template .grid > .account-section:not(:first-child), .account-template .grid--rev > .account-section:not(:first-child), .account-template .grid--full > .account-section:not(:first-child) {
    border-top: 1px dotted #e0e0e0;
    padding-top: 15px; } }

.search-template {
  /*================ Desktop Version ================*/ }
  .search-template .search__form .input-group {
    text-align: center;
    width: 100%; }
    .search-template .search__form .input-group .search__input {
      box-sizing: border-box;
      border-right: none;
      border-radius: 0;
      box-sizing: border-box;
      height: 45px;
      width: 60%;
      outline: none; }
    .search-template .search__form .input-group .search__submit {
      padding: 0 30px;
      height: 45px;
      margin-bottom: 3px;
      outline: none; }
  .search-template .search__no-results {
    text-align: center;
    padding: 60px 0; }
  .search-template .list-view-item {
    display: block;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0; }
    .search-template .list-view-item .list-view-item__price-column {
      text-align: center; }
      .search-template .list-view-item .list-view-item__price-column .product-price {
        font-size: 1.4rem;
        padding: 1rem 0; }
    .search-template .list-view-item .list-view-item__sold-out {
      font-size: 1.4rem;
      color: #878787; }
  @media screen and (min-width: 1024px) {
    .search-template {
      max-width: 900px !important; }
      .search-template .search__form .input-group .search__submit {
        margin-bottom: 5px; }
      .search-template .list-view-item .list-view-item__price-column .product-price {
        padding-top: 0; } }

.template-password {
  height: 100vh;
  text-align: center;
  /*================ Vendor-specific styles ================*/
  /* Magnific Popup CSS */
  /* Main image in popup */
  /* The shadow behind the image */
  /*================ Module | Product Lightbox ================*/ }
  .template-password .password-page__wrapper {
    display: table;
    height: 100%;
    width: 100%;
    background-image: url(password-page-background_17018895894891647455.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff; }
    .template-password .password-page__wrapper a {
      color: inherit; }
    .template-password .password-page__wrapper p, .template-password .password-page__wrapper h1, .template-password .password-page__wrapper .h1, .template-password .password-page__wrapper h2, .template-password .password-page__wrapper .h2, .template-password .password-page__wrapper .standard-page__title, .template-password .password-page__wrapper .sidebar .sidebar__title, .sidebar .template-password .password-page__wrapper .sidebar__title, .template-password .password-page__wrapper .contact-page .map__title, .contact-page .template-password .password-page__wrapper .map__title, .template-password .password-page__wrapper h3, .template-password .password-page__wrapper .h3, .template-password .password-page__wrapper h4, .template-password .password-page__wrapper .h4, .template-password .password-page__wrapper .collection-banner .collection-banner__subtitle p, .collection-banner .collection-banner__subtitle .template-password .password-page__wrapper p, .template-password .password-page__wrapper .account-template .account-section .account-section__title, .account-template .account-section .template-password .password-page__wrapper .account-section__title, .template-password .password-page__wrapper div, .template-password .password-page__wrapper span, .template-password .password-page__wrapper input[type="submit"] {
      color: #ffffff; }
    .template-password .password-page__wrapper hr {
      border-color: inherit; }
    .template-password .password-page__wrapper .social-sharing.clean a {
      color: inherit;
      background: transparent; }
  .template-password .password-header-section {
    display: table-row; }
  .template-password .password-page__header {
    display: table-cell;
    height: 1px; }
  .template-password .password-page__header__inner {
    padding: 15px 30px; }
  .template-password .icon-shopify-logo {
    width: 82.28571px;
    height: 24px;
    vertical-align: middle;
    fill: currentColor; }
  .template-password .password-page__main {
    display: table-row;
    width: 100%;
    height: 100%;
    margin: 0 auto; }
  .template-password .password-page__main__inner {
    display: table-cell;
    vertical-align: middle;
    padding: 15px 30px; }
  .template-password .password-page__message {
    font-style: italic;
    font-size: 120%; }
    .template-password .password-page__message img {
      max-width: 100%; }
  .template-password .password-page__hr {
    margin: 30px auto; }
  .template-password .password-page__message,
  .template-password .password-page__login-form,
  .template-password .password-page__signup-form {
    max-width: 500px;
    margin: 0 auto; }
  .template-password .password-page__login-form {
    text-align: center;
    padding: 30px; }
  @media screen and (min-width: 767px) {
    .template-password .password-page__login-form,
    .template-password .password-page__signup-form {
      padding: 0 30px; } }
  .template-password .password-page__login-form .input-group,
  .template-password .password-page__signup-form .input-group {
    width: 100%; }
  .template-password .password-page__login-form .errors ul,
  .template-password .password-page__signup-form .errors ul {
    list-style-type: none;
    margin-left: 0; }
  .template-password .password-page__signup-form__heading {
    margin-bottom: 0.8em;
    font-weight: 200; }
  .template-password .password-page__social-sharing {
    margin-top: 30px; }
  .template-password .password-page__social-sharing__heading {
    margin-bottom: 0; }
  .template-password .password-login,
  .template-password .admin-login {
    margin-top: 15px; }
    .template-password .password-login a:hover,
    .template-password .admin-login a:hover {
      color: inherit; }
  .template-password hr {
    width: 50px; }
  .template-password .password-page__hero {
    font-family: "Lato", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: 600;
    font-size: 2.625rem;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: 0;
    text-rendering: optimizeLegibility; }
    @media screen and (min-width: 1024px) {
      .template-password .password-page__hero {
        font-size: 4rem; } }
  .template-password .btn, .template-password .btn--secondary, .template-password .btn--special {
    display: inline-block;
    padding: 0 20px;
    width: auto;
    margin: 0;
    line-height: 1.42;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 2px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.2s ease; }
  .template-password .text-right {
    text-align: right !important; }
  .template-password .password-page__logo {
    margin-top: 90px; }
    .template-password .password-page__logo .logo {
      max-width: 100%; }
    .template-password .password-page__logo .logo--inverted {
      display: inline; }
  .template-password .lock-icon-svg {
    width: 12.8px;
    height: 12.8px;
    display: inline-block;
    vertical-align: baseline;
    /* Hiding the SVG logo in IE8 */ }
    .template-password .lock-icon-svg path {
      fill: currentColor; }
    .lt-ie9 .template-password .lock-icon-svg {
      display: none; }
  .template-password .shopify-logo-svg {
    width: 82.28571px;
    height: 24px;
    display: inline-block;
    line-height: 0;
    vertical-align: top;
    /* Hiding the SVG logo in IE8, we show the word 'Shopify' instead */ }
    .template-password .shopify-logo-svg path {
      fill: currentColor; }
    .lt-ie9 .template-password .shopify-logo-svg {
      display: none; }
  .template-password .mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80); }
  .template-password .mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden; }
  .template-password .mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .template-password .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .template-password .mfp-align-top .mfp-container:before {
    display: none; }
  .template-password .mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045; }
  .template-password .mfp-inline-holder .mfp-content, .template-password .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto; }
  .template-password .mfp-ajax-cur {
    cursor: progress; }
  .template-password .mfp-zoom-out-cur, .template-password .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out; }
  .template-password .mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in; }
  .template-password .mfp-auto-cursor .mfp-content {
    cursor: auto; }
  .template-password .mfp-close, .template-password .mfp-arrow, .template-password .mfp-preloader, .template-password .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .template-password .mfp-loading.mfp-figure {
    display: none; }
  .template-password .mfp-hide {
    display: none !important; }
  .template-password .mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044; }
  .template-password .mfp-preloader a {
    color: #CCC; }
  .template-password .mfp-preloader a:hover {
    color: #FFF; }
  .template-password .mfp-s-ready .mfp-preloader {
    display: none; }
  .template-password .mfp-s-error .mfp-content {
    display: none; }
  .template-password button.mfp-close, .template-password button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .template-password button::-moz-focus-inner {
    padding: 0;
    border: 0; }
  .template-password .mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace; }
  .template-password .mfp-close:hover, .template-password .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .template-password .mfp-close:active {
    top: 1px; }
  .template-password .mfp-close-btn-in .mfp-close {
    color: #333; }
  .template-password .mfp-image-holder .mfp-close, .template-password .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%; }
  .template-password .mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap; }
  .template-password .mfp-arrow {
    position: absolute;
    opacity: 0.65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .template-password .mfp-arrow:active {
    margin-top: -54px; }
  .template-password .mfp-arrow:hover, .template-password .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .template-password .mfp-arrow:before, .template-password .mfp-arrow:after, .template-password .mfp-arrow .mfp-b, .template-password .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .template-password .mfp-arrow:after, .template-password .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .template-password .mfp-arrow:before, .template-password .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }
  .template-password .mfp-arrow-left {
    left: 0; }
  .template-password .mfp-arrow-left:after, .template-password .mfp-arrow-left .mfp-a {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .template-password .mfp-arrow-left:before, .template-password .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }
  .template-password .mfp-arrow-right {
    right: 0; }
  .template-password .mfp-arrow-right:after, .template-password .mfp-arrow-right .mfp-a {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .template-password .mfp-arrow-right:before, .template-password .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F; }
  .template-password .mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px; }
  .template-password .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .template-password .mfp-iframe-holder .mfp-close {
    top: -40px; }
  .template-password .mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%; }
  .template-password .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }
  .template-password img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto; }
  .template-password .mfp-figure {
    line-height: 0; }
  .template-password .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .template-password .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .template-password .mfp-figure figure {
    margin: 0; }
  .template-password .mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto; }
  .template-password .mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px; }
  .template-password .mfp-image-holder .mfp-content {
    max-width: 100%; }
  .template-password .mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer; }
  @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    .template-password {
      /**
           * Remove all paddings around the image on small screen
           */ }
      .template-password .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0; }
      .template-password .mfp-img-mobile img.mfp-img {
        padding: 0; }
      .template-password .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0; }
      .template-password .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px; }
      .template-password .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; }
      .template-password .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0; }
      .template-password .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px; }
      .template-password .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0; } }
  @media all and (max-width: 900px) {
    .template-password .mfp-arrow {
      -webkit-transform: scale(0.75);
      transform: scale(0.75); }
    .template-password .mfp-arrow-left {
      -webkit-transform-origin: 0;
      transform-origin: 0; }
    .template-password .mfp-arrow-right {
      -webkit-transform-origin: 100%;
      transform-origin: 100%; }
    .template-password .mfp-container {
      padding-left: 6px;
      padding-right: 6px; } }
  .template-password .mfp-ie7 .mfp-img {
    padding: 0; }
  .template-password .mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px; }
  .template-password .mfp-ie7 .mfp-container {
    padding: 0; }
  .template-password .mfp-ie7 .mfp-content {
    padding-top: 44px; }
  .template-password .mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0; }
  .template-password .mfp-bg {
    background-color: white; }
    .template-password .mfp-bg.mfp-fade {
      -webkit-backface-visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
      .template-password .mfp-bg.mfp-fade.mfp-ready {
        opacity: 1;
        filter: alpha(opacity=100); }
      .template-password .mfp-bg.mfp-fade.mfp-removing {
        -webkit-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        opacity: 0;
        filter: alpha(opacity=0); }
  .template-password .mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .template-password .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1; }
  .template-password .mfp-fade.mfp-wrap.mfp-removing {
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    .template-password .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
      opacity: 0; }
    .template-password .mfp-fade.mfp-wrap.mfp-removing button {
      opacity: 0; }
  .template-password .mfp-counter {
    display: none; }
  .mfp-gallery .mfp-image-holder .template-password .mfp-figure {
    cursor: zoom-out; }
  .template-password .mfp-figure:after {
    box-shadow: none; }
  .template-password .mfp-img {
    background-color: white; }
  .template-password button.mfp-close {
    margin: 30px;
    font-size: em(40px);
    font-weight: 300px;
    opacity: 1;
    filter: alpha(opacity=100);
    color: #333333; }
  .template-password button.mfp-arrow {
    top: 0;
    height: 100%;
    width: 20%;
    margin: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 1045; }
    .template-password button.mfp-arrow:after, .template-password button.mfp-arrow .mfp-a {
      display: none; }
    .template-password button.mfp-arrow:before, .template-password button.mfp-arrow .mfp-b {
      display: none; }
    .template-password button.mfp-arrow:active {
      margin-top: 0; }
  .template-password .mfp-chevron {
    position: absolute;
    pointer-events: none; }
    .template-password .mfp-chevron:before {
      content: '';
      display: inline-block;
      position: relative;
      vertical-align: top;
      height: 25px;
      width: 25px;
      border-style: solid;
      border-width: 4px 4px 0 0;
      -ms-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .template-password .mfp-chevron.mfp-chevron-right {
      right: 55px; }
      .template-password .mfp-chevron.mfp-chevron-right:before {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
    .template-password .mfp-chevron.mfp-chevron-left {
      left: 55px; }
      .template-password .mfp-chevron.mfp-chevron-left:before {
        -ms-transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg); }
  .template-password .lt-ie9 .mfp-chevron:before,
  .template-password .lt-ie9 .mfp-chevron:after {
    content: " ";
    position: absolute;
    display: block;
    border-width: 0;
    width: 0;
    height: 0;
    top: 50%;
    margin-top: -25px;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent; }
  .template-password .lt-ie9 .mfp-chevron:before {
    z-index: 5; }
  .template-password .lt-ie9 .mfp-chevron:after {
    z-index: 2; }
  .template-password .lt-ie9 .mfp-chevron-right:after {
    border-left: 25px solid #333333;
    left: 80%; }
  .template-password .lt-ie9 .mfp-chevron-right:before {
    border-left: 25px solid white;
    left: 80%; }
  .template-password .lt-ie9 .mfp-chevron-left:after {
    border-right: 25px solid #333333;
    right: 80%; }
  .template-password .lt-ie9 .mfp-chevron-left:before {
    border-right: 25px solid white;
    right: 80%; }

/*============================================================================
  # Sections
==============================================================================*/
/*================ Topbar Section ================*/
.section-topbar {
  background-color: #191919;
  height: 40px;
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    .section-topbar {
      height: auto;
      overflow: inherit;
      padding: 5px 10px; } }
  .section-topbar .section-topbar__message {
    color: white;
    font-size: 0.70rem;
    line-height: 1.5rem;
    text-align: center;
    padding: 0.3rem 0; }
    .section-topbar .section-topbar__message .section-topbar__message--phone {
      font-weight: bold;
      font-size: 1rem; }
  .section-topbar .section-topbar__button {
    font-size: 0.65rem;
    padding: 3px 5px;
    margin-left: 3px; }
  .section-topbar .section-topbar__controls {
    text-align: right; }
  .section-topbar .social-icons {
    margin: 0 30px 0 0; }
    @media screen and (max-width: 1300px) {
      .section-topbar .social-icons {
        margin: 0 10px 0 0; } }
    @media screen and (max-width: 1300px) {
      .section-topbar .social-icons li {
        margin-left: 20px; } }
    .section-topbar .social-icons li .icon {
      line-height: 40px; }
  .section-topbar .currency-picker__wrapper {
    color: white;
    display: block;
    float: right;
    height: 40px;
    position: relative; }
    .section-topbar .currency-picker__wrapper:after {
      content: "\25B4";
      font: 2em "Consolas", monospace;
      color: #fff;
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg);
      right: 6px;
      /*Adjust for position however you want*/
      top: 0;
      padding: 0;
      /*left line */
      position: absolute;
      pointer-events: none; }
  .section-topbar .currency-picker {
    color: white;
    font-size: 1rem;
    padding: 7px 24px 0 10px;
    border: none;
    margin: 0; }
    .section-topbar .currency-picker:focus {
      outline: none; }
  @media screen and (min-width: 768px) {
    .section-topbar .section-topbar__message {
      font-size: 0.9rem;
      line-height: 1.7rem;
      white-space: nowrap; }
      .section-topbar .section-topbar__message .section-topbar__message--phone {
        font-size: 1.1rem; }
    .section-topbar .section-topbar__button {
      font-size: 0.9rem;
      padding: 3px 10px;
      margin-left: 5px;
      margin-top: -3px; } }

/*================ Header Section ================*/
.section-header {
  background-color: white;
  height: 55px;
  -moz-box-shadow: 0px 1px 5px 0px #e0e0e0;
  -webkit-box-shadow: 0px 1px 5px 0px #e0e0e0;
  box-shadow: 0px 1px 5px 0px #e0e0e0;
  /*================ Desktop Version ================*/ }
  .section-header > .grid--full > .grid__item {
    height: 55px;
    overflow: hidden; }
    .section-header > .grid--full > .grid__item.menu-cell {
      overflow: visible; }
  .section-header .with-menu-word::before {
    content: 'MENU';
    position: absolute;
    display: block;
    font-size: 11px;
    margin-left: 47px;
    margin-top: 19px; }
  .section-header .section-header__hamburger {
    position: relative;
    margin: 0 auto;
    height: 55px;
    padding: 15px 12px 0;
    cursor: pointer; }
    .section-header .section-header__hamburger * {
      transition: all 0.3s;
      -webkit-transition: all 0.3s;
      box-sizing: border-box; }
  .section-header .hamburger {
    width: 30px; }
  .section-header .hamburger__bar {
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: #393939; }
  .section-header .hamburger__bar--diagonal.part-1 {
    position: relative;
    float: left; }
  .section-header .hamburger__bar--horizontal {
    position: relative;
    float: left;
    margin-top: 7px; }
  .section-header .hamburger__bar--diagonal.part-2 {
    position: relative;
    float: left;
    margin-top: 6px; }
  body.js-drawer-open-left .section-header .hamburger > .hamburger__bar--horizontal {
    opacity: 0; }
  body.js-drawer-open-left .section-header .hamburger > .hamburger__bar--diagonal.part-1 {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-top: 10px; }
  body.js-drawer-open-left .section-header .hamburger > .hamburger__bar--diagonal.part-2 {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: -16px; }
  .section-header .section-header__logo {
    height: 100%; }
    .section-header .section-header__logo img {
      max-height: 100%; }
    @media screen and (max-width: 1300px) {
      .section-header .section-header__logo a {
        font-size: 2vw; } }
    @media screen and (max-width: 1023px) {
      .section-header .section-header__logo a {
        font-size: 1.5rem !important; } }
  .section-header .logo-cell {
    text-align: center;
    position: relative; }
  .section-header h1, .section-header .h1, .section-header .h1 {
    margin: 0.8rem 0;
    padding: 0;
    font-size: 1.5rem;
    color: #393939; }
    .section-header h1.section-header__logo--image, .section-header .section-header__logo--image.h1, .section-header .h1.section-header__logo--image {
      margin: 0; }
  .section-header .header-icon {
    padding: 0;
    color: #393939;
    height: 100%;
    width: 51px; }
    @media (max-width: 1560px) {
      .section-header .header-icon {
        padding: 0.0rem 0 0 0rem; } }
    .section-header .header-icon:focus, .section-header .header-icon:active {
      outline: none; }
  .section-header .header-search__wrapper {
    width: 60px;
    float: left;
    overflow: visible;
    height: 55px;
    background: white; }
  .section-header .header-search {
    border-bottom: none;
    box-sizing: border-box;
    float: left;
    font-size: 1.6rem;
    height: 100%;
    line-height: 2.2rem; }
    .section-header .header-search form {
      float: right;
      height: 100%;
      width: 0;
      transition: all 0.5s; }
      .section-header .header-search form input {
        display: none; }
      .section-header .header-search form .input-group-btn {
        display: none; }
    .section-header .header-search.header-search--active {
      border: 1px solid #e0e0e0;
      border-bottom: none;
      width: 255px; }
      .section-header .header-search.header-search--active form {
        border-right: 1px solid #e0e0e0;
        display: inline-block;
        width: 200px;
        z-index: 11; }
        .section-header .header-search.header-search--active form input {
          border: none;
          height: 100%;
          display: block;
          width: 100%; }
          .section-header .header-search.header-search--active form input:focus {
            outline: none; }
    .section-header .header-search.header-search__position-right {
      float: inherit; }
      .section-header .header-search.header-search__position-right form {
        float: right; }
        .section-header .header-search.header-search__position-right form input {
          float: right; }
  .section-header .menu-cell {
    position: relative; }
  .section-header .user-account {
    background-color: white;
    position: relative;
    height: 100%;
    padding: 0.5rem;
    float: right;
    line-height: 2.2rem; }
    .section-header .user-account .icon {
      font-size: 1.2rem; }
    @media screen and (max-width: 1450px) {
      .section-header .user-account {
        padding: 0.5rem;
        font-size: 14px; }
        .section-header .user-account .icon {
          font-size: 0.9rem; } }
  .section-header .cart-cell {
    text-align: center;
    padding: 0; }
    .section-header .cart-cell .icon-cart {
      font-size: 1.5rem;
      position: relative;
      display: none; }
      .section-header .cart-cell .icon-cart .icon-cart__badge {
        background: white;
        border-radius: 50%;
        color: #666666;
        display: block;
        font-size: 12px;
        height: 20px;
        padding-top: 3px;
        position: absolute;
        right: -10px;
        text-align: center;
        top: -10px;
        width: 20px; }
    @media screen and (min-width: 1024px) {
      .section-header .cart-cell.deal-of-the-day-active {
        width: 100px !important;
        line-height: 1.2; }
        .section-header .cart-cell.deal-of-the-day-active .section-header__cart-count {
          display: none; }
        .section-header .cart-cell.deal-of-the-day-active .section-header__cart-text {
          display: none; }
        .section-header .cart-cell.deal-of-the-day-active .icon-cart {
          display: inline-block; }
        .section-header .cart-cell.deal-of-the-day-active .section-header__cart-link {
          padding: 1.2rem 0; }
        .section-header .cart-cell.deal-of-the-day-active .icon-cart__badge {
          line-height: 15px; } }
    @media screen and (max-width: 1280px) {
      .section-header .cart-cell .section-header__cart-count {
        display: none; }
      .section-header .cart-cell .section-header__cart-text {
        display: none; }
      .section-header .cart-cell .icon-cart {
        display: inline-block; }
      .section-header .cart-cell .section-header__cart-link {
        padding: 1.2rem 0; } }
  .section-header .section-header__cart-link {
    background-color: #41cd62;
    color: white;
    display: block;
    height: 55px;
    margin: 0;
    padding: 1.2rem 0; }
    @media screen and (max-width: 1280px) {
      .section-header .section-header__cart-link span {
        line-height: 1.2; } }
  .section-header .navigation-open-more {
    float: left;
    border: silver solid 1px;
    color: #000;
    border-radius: 3px;
    padding: 3px 5px;
    margin-top: 13px;
    margin-left: 10px;
    font-size: 12px;
    text-transform: uppercase; }
    .section-header .navigation-open-more:hover {
      border: #56ad6a solid 1px; }
  .section-header .right-side__wrapper {
    position: absolute;
    right: 0;
    background: white;
    z-index: 1; }
    @media screen and (max-width: 1024px) {
      .section-header .right-side__wrapper {
        position: relative; } }
  @media screen and (min-width: 1024px) {
    .section-header {
      height: 55px; }
      .section-header > .grid--full > .grid__item {
        height: 55px; }
      .section-header .section-header__hamburger {
        height: 55px; }
      .section-header h1, .section-header .h1, .section-header .h1 {
        margin: 0.5rem 0;
        font-size: 1.6rem;
        line-height: 2.2rem;
        white-space: nowrap; }
      .section-header .logo-cell {
        padding: 0 20px 0 30px;
        text-align: left;
        float: left;
        width: auto; }
      .section-header .cart-cell {
        float: right;
        width: 250px; }
        .section-header .cart-cell .section-header__cart-link {
          font-size: 1.4rem;
          font-weight: 600; }
      .section-header .menu-cell {
        float: left;
        width: auto;
        z-index: 2;
        background: white; }
      .section-header .header-search__wrapper {
        height: 55px; }
      .section-header .section-header__cart-link {
        height: 55px;
        margin: 0;
        padding: 0.5rem 0; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .section-header .cart-cell {
          width: 120px; } }
      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        .section-header .section-header__cart-link {
          padding: 1.2rem 0; } }

/*================ Slideshow Section ================*/
/** Section styles **/
.section-slideshow .slideshow-wrapper {
  position: relative; }

/** Slideshow **/
.slideshow {
  overflow: hidden;
  height: 300px;
  margin-bottom: 0; }
  .slideshow.slideshow--xsmall {
    height: 200px; }
  .slideshow.slideshow--medium {
    height: 390px; }
  .slideshow.slideshow--large {
    height: 585px; }
  @media screen and (min-width: 768px) {
    .slideshow {
      height: 400px; }
      .slideshow.slideshow--xsmall {
        height: 250px; }
      .slideshow.slideshow--medium {
        height: 520px; }
      .slideshow.slideshow--large {
        height: 780px; } }
  @media screen and (max-width: 768px) {
    .slideshow {
      height: 350px; } }
  .slideshow .slideshow__slide,
  .slideshow .slick-list,
  .slideshow .slick-track {
    height: 100%; }
  .slideshow .slick-prev,
  .slideshow .slick-next {
    top: 0;
    height: 100%;
    margin-top: 0;
    width: 40px; }
  .slideshow .slick-prev {
    left: 0; }
  .slideshow .slick-next {
    right: 0; }
  .slideshow .slick-dots {
    bottom: 7.5px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%); }
    .slideshow .slick-dots li button::before {
      color: white; }

.slideshow__slide {
  position: relative;
  overflow: hidden; }

.slideshow__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 0.25;
  z-index: 3; }

/** Image styles **/
.slideshow__image {
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 1; }
  .slick-initialized .slideshow__image, .supports-no-js .slideshow__image {
    opacity: 1; }
  .no-autoplay .slideshow__image {
    opacity: 1; }

/** Text styles **/
.slideshow__text-wrap {
  height: 100%; }
  .slideshow__link .slideshow__text-wrap {
    cursor: inherit; }
  .slideshow__slide--has-background-video .slideshow__text-wrap {
    padding-top: 90px; }
  .video-is-playing .slideshow__text-wrap {
    display: none; }
  .slideshow__slide.video-is-paused .slideshow__text-wrap {
    display: none; }

.slideshow__text-content {
  position: absolute;
  width: 100%;
  top: 50%;
  -ms-transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  transition-delay: 0.3s;
  z-index: 3;
  padding: 0 7.5px; }
  @media screen and (min-width: 768px) {
    .slideshow__text-content {
      padding: 0 15px; } }
  .slideshow__text-content p {
    margin: 0; }
  .slideshow__text-content .slideshow__title {
    font-size: 16px;
    margin-bottom: 1rem;
    font-weight: bold; }
    .slideshow__text-content .slideshow__title.slideshow__title--small {
      font-size: 19.2px; }
    .slideshow__text-content .slideshow__title.slideshow__title--medium {
      font-size: 25.6px; }
    .slideshow__text-content .slideshow__title.slideshow__title--large {
      font-size: 32px; }
    .slideshow__text-content .slideshow__title.slideshow__title--xlarge {
      font-size: 41.6px; }
    .slideshow__text-content .slideshow__title.slideshow__title--gigantic {
      font-size: 51.2px; }
    @media screen and (min-width: 768px) {
      .slideshow__text-content .slideshow__title {
        font-size: 19.2px; }
        .slideshow__text-content .slideshow__title.slideshow__title--small {
          font-size: 22.4px; }
        .slideshow__text-content .slideshow__title.slideshow__title--medium {
          font-size: 32px; }
        .slideshow__text-content .slideshow__title.slideshow__title--large {
          font-size: 41.6px; }
        .slideshow__text-content .slideshow__title.slideshow__title--xlarge {
          font-size: 51.2px; }
        .slideshow__text-content .slideshow__title.slideshow__title--gigantic {
          font-size: 60.8px; } }
  .slideshow__text-content .slideshow__subtitle {
    font-size: 14.4px;
    margin-bottom: 2rem; }
    .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--small {
      font-size: 17.6px; }
    .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--medium {
      font-size: 20.8px; }
    .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--large {
      font-size: 25.6px; }
    .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--xlarge {
      font-size: 32px; }
    .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--gigantic {
      font-size: 38.4px; }
    @media screen and (min-width: 768px) {
      .slideshow__text-content .slideshow__subtitle {
        font-size: 16px; }
        .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--small {
          font-size: 19.2px; }
        .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--medium {
          font-size: 24px; }
        .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--large {
          font-size: 32px; }
        .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--xlarge {
          font-size: 40px; }
        .slideshow__text-content .slideshow__subtitle.slideshow__subtitle--gigantic {
          font-size: 48px; } }
  .slideshow__text-content .slideshow__content {
    font-size: 14.4px;
    margin-bottom: 2rem; }
    .slideshow__text-content .slideshow__content.slideshow__content--small {
      font-size: 17.6px; }
    .slideshow__text-content .slideshow__content.slideshow__content--medium {
      font-size: 20.8px; }
    .slideshow__text-content .slideshow__content.slideshow__content--large {
      font-size: 25.6px; }
    .slideshow__text-content .slideshow__content.slideshow__content--xlarge {
      font-size: 32px; }
    .slideshow__text-content .slideshow__content.slideshow__content--gigantic {
      font-size: 38.4px; }
    @media screen and (min-width: 768px) {
      .slideshow__text-content .slideshow__content {
        font-size: 16px; }
        .slideshow__text-content .slideshow__content.slideshow__content--small {
          font-size: 19.2px; }
        .slideshow__text-content .slideshow__content.slideshow__content--medium {
          font-size: 24px; }
        .slideshow__text-content .slideshow__content.slideshow__content--large {
          font-size: 32px; }
        .slideshow__text-content .slideshow__content.slideshow__content--xlarge {
          font-size: 40px; }
        .slideshow__text-content .slideshow__content.slideshow__content--gigantic {
          font-size: 48px; } }
  .slideshow__text-content .slideshow__button {
    margin: 5px 1rem; }
  .slick-active .slideshow__text-content, .supports-no-js .slideshow__text-content {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1; }
  .slideshow__text-content::after {
    content: '';
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    border: 3px solid black;
    border-top-color: transparent;
    -moz-animation: spin 0.65s infinite linear;
    -o-animation: spin 0.65s infinite linear;
    -webkit-animation: spin 0.65s infinite linear;
    animation: spin 0.65s infinite linear;
    opacity: 1;
    transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
    bottom: -30px;
    left: 50%; }
  .slick-initialized .slideshow__text-content::after, .supports-no-js .slideshow__text-content::after {
    opacity: 0;
    visibility: hidden;
    content: none; }

/*================ Separator Section ================*/
.section-separator .separator-inner {
  margin-bottom: 30px; }

/*================ Content Section ================*/
.section-content .section-content__wrapper {
  margin: 30px; }
.section-content .section-custom-content--alt {
  background-color: #090909; }
  .section-content .section-custom-content--alt .section-heading, .section-content .section-custom-content--alt .testimonial .testimonial__title, .testimonial .section-content .section-custom-content--alt .testimonial__title, .section-content .section-custom-content--alt div, .section-content .section-custom-content--alt p, .section-content .section-custom-content--alt h1, .section-content .section-custom-content--alt .h1, .section-content .section-custom-content--alt h2, .section-content .section-custom-content--alt .h2, .section-content .section-custom-content--alt .standard-page__title, .section-content .section-custom-content--alt .sidebar .sidebar__title, .sidebar .section-content .section-custom-content--alt .sidebar__title, .section-content .section-custom-content--alt .contact-page .map__title, .contact-page .section-content .section-custom-content--alt .map__title, .section-content .section-custom-content--alt h3, .section-content .section-custom-content--alt .h3 {
    color: white; }
.section-content .custom__item-content--text .custom__item-heading,
.section-content .custom__item-content--text .custom__item-text {
  margin-bottom: 30px; }
@media screen and (min-width: 768px) {
  .section-content .custom__item-content--text {
    padding-left: 0;
    padding-right: 0; }
  .section-content .large--one-whole .custom__item-content--text {
    margin-left: 90px;
    margin-right: 90px; } }
.section-content .custom__item-content--image img {
  width: 100%;
  margin-bottom: -6px; }

/*================ Featured Collections Section ================*/
.section-featured-collections {
  margin: 0 10px 30px; }
  @media screen and (min-width: 768px) {
    .section-featured-collections {
      padding: 0 30px 30px; } }
  .section-featured-collections .slick-prev {
    top: 50%; }
  .section-featured-collections .slick-next {
    top: 50%; }

.collection-list .collection-list__item {
  margin: 0 10px; }
  .collection-list .collection-list__item img {
    border: 2px solid #e0e0e0;
    border-radius: 3px; }
  .collection-list .collection-list__item p {
    margin-top: 10px; }
    .collection-list .collection-list__item p a {
      font-size: 18.4px; }

.collection-list-grid .collection-list__item {
  margin: 0; }
  .collection-list-grid .collection-list__item img {
    border: 2px solid #e0e0e0;
    border-radius: 3px; }
  .collection-list-grid .collection-list__item p {
    margin-top: 10px; }
    .collection-list-grid .collection-list__item p a {
      font-size: 18.4px; }

.slider:not(.slick-initialized) .collection-list__item:nth-child(1n+2) {
  display: none; }

/*================ Featured Collection Section ================*/
.section-featured-collection .product-list {
  text-align: center; }
  @media screen and (max-width: 1023px) {
    .section-featured-collection .product-list.grid--uniform {
      margin-left: -5px; }
    .section-featured-collection .product-list > .grid__item {
      padding-left: 5px; }
    .section-featured-collection .product-list.product-list--col-1.grid--uniform {
      margin-left: 0; }
    .section-featured-collection .product-list.product-list--col-1 > .grid__item {
      padding-left: 30px;
      padding-right: 30px; } }
  @media screen and (min-width: 1024px) {
    .section-featured-collection .product-list.grid--uniform {
      margin-left: -15px; }
    .section-featured-collection .product-list > .grid__item {
      padding-left: 15px;
      margin-bottom: 30px; } }
  .section-featured-collection .product-list .grid__item {
    float: none;
    display: inline-block; }
    @media screen and (max-width: 1023px) {
      .section-featured-collection .product-list .grid__item {
        margin-bottom: 15px; }
        .section-featured-collection .product-list .grid__item.medium-down--one-half {
          width: calc(50% - 2px); } }
    @media screen and (min-width: 1024px) {
      .section-featured-collection .product-list .grid__item {
        margin-bottom: 30px; }
        .section-featured-collection .product-list .grid__item.large--one-quarter {
          width: calc(25% - 3px); }
        .section-featured-collection .product-list .grid__item.large--one-third {
          width: calc(33.333% - 3px); }
        .section-featured-collection .product-list .grid__item.large--one-half {
          width: calc(50% - 2px); } }
@media screen and (min-width: 768px) {
  .section-featured-collection {
    padding: 0 30px 30px; } }

/*================ Featured Products Section ================*/
.section-featured-products .product-list .slick-list {
  margin-left: -5px; }
.section-featured-products .product-list__item {
  margin-left: 5px; }
@media screen and (min-width: 768px) {
  .section-featured-products {
    padding: 0 30px 30px; } }

.slider {
  /*================ Desktop Version ================*/ }
  .slider:not(.slick-initialized) .product-list__item:nth-child(1n+2) {
    display: none; }
  @media screen and (min-width: 1024px) {
    .slider .product-list__item {
      margin-left: 30px; } }

@media screen and (max-width: 767px) {
  .no-slider--grid .one-whole .product-card {
    margin: 30px; } }
/*================ Featured Product Section ================*/
.section-featured-product .product-list__item {
  margin: 0 20%; }

/*================ Icon List Section ================*/
.section-icon-list {
  position: relative;
  /*================ Desktop Version ================*/ }
  .section-icon-list .section-icon-list--alt {
    background-color: #090909; }
    .section-icon-list .section-icon-list--alt .section-heading, .section-icon-list .section-icon-list--alt .testimonial .testimonial__title, .testimonial .section-icon-list .section-icon-list--alt .testimonial__title, .section-icon-list .section-icon-list--alt div, .section-icon-list .section-icon-list--alt p, .section-icon-list .section-icon-list--alt h1, .section-icon-list .section-icon-list--alt .h1, .section-icon-list .section-icon-list--alt h2, .section-icon-list .section-icon-list--alt .h2, .section-icon-list .section-icon-list--alt .standard-page__title, .section-icon-list .section-icon-list--alt .sidebar .sidebar__title, .sidebar .section-icon-list .section-icon-list--alt .sidebar__title, .section-icon-list .section-icon-list--alt .contact-page .map__title, .contact-page .section-icon-list .section-icon-list--alt .map__title, .section-icon-list .section-icon-list--alt h3, .section-icon-list .section-icon-list--alt .h3 {
      color: white; }
  .section-icon-list .section-icon-list__wrapper {
    padding: 20px 0; }
  .section-icon-list .icon-list__item {
    padding: 10px 0; }
  .section-icon-list .icon-list__image {
    max-width: 45%; }
  .section-icon-list p {
    font-size: 0.9rem; }
    @media screen and (min-width: 768px) {
      .section-icon-list p {
        font-size: 1rem; } }
    @media screen and (min-width: 1024px) {
      .section-icon-list p {
        font-size: 1.1rem; } }
    @media screen and (min-width: 1180px) {
      .section-icon-list p {
        font-size: 1.2rem; } }
  @media screen and (min-width: 1024px) {
    .section-icon-list .icon-list__item {
      padding: 0 30px; } }
  @media screen and (min-width: 1180px) {
    .section-icon-list .icon-list__item {
      padding: 0; } }

/*================ Logos Section ================*/
.section-logos {
  /*================ Desktop Version ================*/ }
  .section-logos .section-logos__wrapper, .section-logos .invert-section-logos__wrapper {
    padding: 20px 0;
    margin-bottom: 30px; }
  .section-logos .logos-list {
    display: -webkit-flex;
    /* Safari */
    -webkit-align-items: center;
    /* Safari 7.0+ */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; }
  @media screen and (min-width: 1024px) {
    .section-logos .logos-list {
      flex-wrap: nowrap; } }
  .section-logos .logos__item {
    margin: 10px 0 0 10px; }
  .section-logos .invert-section-logos__wrapper {
    background-color: #090909; }
    .section-logos .invert-section-logos__wrapper .section-heading, .section-logos .invert-section-logos__wrapper .testimonial .testimonial__title, .testimonial .section-logos .invert-section-logos__wrapper .testimonial__title, .section-logos .invert-section-logos__wrapper div, .section-logos .invert-section-logos__wrapper p, .section-logos .invert-section-logos__wrapper h1, .section-logos .invert-section-logos__wrapper .h1, .section-logos .invert-section-logos__wrapper h2, .section-logos .invert-section-logos__wrapper .h2, .section-logos .invert-section-logos__wrapper .standard-page__title, .section-logos .invert-section-logos__wrapper .sidebar .sidebar__title, .sidebar .section-logos .invert-section-logos__wrapper .sidebar__title, .section-logos .invert-section-logos__wrapper .contact-page .map__title, .contact-page .section-logos .invert-section-logos__wrapper .map__title, .section-logos .invert-section-logos__wrapper h3, .section-logos .invert-section-logos__wrapper .h3 {
      color: white; }
  @media screen and (min-width: 1024px) {
    .section-logos .logos__item {
      padding: 0 30px; } }
  @media screen and (min-width: 1180px) {
    .section-logos .logos__item {
      padding: 0 10px; } }

/*================ Testimonials Section ================*/
.section-testimonials {
  /*================ Desktop Version ================*/ }
  .section-testimonials .section-testimonials--alt {
    background-color: #090909; }
    .section-testimonials .section-testimonials--alt .section-heading, .section-testimonials .section-testimonials--alt .testimonial .testimonial__title, .testimonial .section-testimonials .section-testimonials--alt .testimonial__title, .section-testimonials .section-testimonials--alt div, .section-testimonials .section-testimonials--alt p, .section-testimonials .section-testimonials--alt h1, .section-testimonials .section-testimonials--alt .h1, .section-testimonials .section-testimonials--alt h2, .section-testimonials .section-testimonials--alt .h2, .section-testimonials .section-testimonials--alt .standard-page__title, .section-testimonials .section-testimonials--alt .sidebar .sidebar__title, .sidebar .section-testimonials .section-testimonials--alt .sidebar__title, .section-testimonials .section-testimonials--alt .contact-page .map__title, .contact-page .section-testimonials .section-testimonials--alt .map__title, .section-testimonials .section-testimonials--alt h3, .section-testimonials .section-testimonials--alt .h3 {
      color: white; }
    .section-testimonials .section-testimonials--alt .slick-slider li button::before {
      color: white; }
    .section-testimonials .section-testimonials--alt .slick-slider button.slick-arrow {
      opacity: 1 !important; }
      .section-testimonials .section-testimonials--alt .slick-slider button.slick-arrow::before {
        color: white;
        opacity: 1 !important; }
  .section-testimonials .grid-wrapper, .section-testimonials .slider-wrapper {
    padding-bottom: 15px; }
  .section-testimonials .slick-slider .slick-dots {
    bottom: -10px;
    margin: 0 auto;
    width: 100%; }
  @media screen and (min-width: 1024px) {
    .section-testimonials .slick-next {
      right: 0;
      z-index: 10; }
    .section-testimonials .slick-prev {
      left: 0;
      z-index: 10; } }

.grid-wrapper {
  padding: 0px 15px; }
  .grid-wrapper .testimonial {
    overflow: hidden;
    margin-bottom: 20px; }
  .grid-wrapper .testimonial__title {
    margin-bottom: 30px;
    margin-left: 30px; }
    @media screen and (max-width: 1024px) {
      .grid-wrapper .testimonial__title {
        margin-top: 20px; } }

.testimonial {
  display: table; }
  .testimonial .inner-content {
    vertical-align: middle;
    display: table-cell; }
  .testimonial .testimonial__text {
    font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    text-align: center;
    margin-bottom: 1rem; }
    @media screen and (max-width: 767px) {
      .testimonial .testimonial__text {
        font-size: 0.9rem; } }
  .testimonial .testimonial__image {
    margin-bottom: 1rem; }
    .testimonial .testimonial__image img {
      display: block;
      border-radius: 50%;
      border: 1px solid #393939;
      margin: 0 auto;
      height: 90px;
      width: 90px; }
  .testimonial .testimonial__sign {
    text-align: center; }
    .testimonial .testimonial__sign, .testimonial .testimonial__sign a {
      color: #797979; }

/*================ Newsletter Section ================*/
.section-newsletter .section-newsletter--alt {
  background-color: #090909; }
  .section-newsletter .section-newsletter--alt .section-heading, .section-newsletter .section-newsletter--alt .testimonial .testimonial__title, .testimonial .section-newsletter .section-newsletter--alt .testimonial__title, .section-newsletter .section-newsletter--alt div, .section-newsletter .section-newsletter--alt p, .section-newsletter .section-newsletter--alt h1, .section-newsletter .section-newsletter--alt .h1, .section-newsletter .section-newsletter--alt h2, .section-newsletter .section-newsletter--alt .h2, .section-newsletter .section-newsletter--alt .standard-page__title, .section-newsletter .section-newsletter--alt .sidebar .sidebar__title, .sidebar .section-newsletter .section-newsletter--alt .sidebar__title, .section-newsletter .section-newsletter--alt .contact-page .map__title, .contact-page .section-newsletter .section-newsletter--alt .map__title, .section-newsletter .section-newsletter--alt h3, .section-newsletter .section-newsletter--alt .h3 {
    color: white; }
.section-newsletter .section-newsletter-container {
  overflow: hidden; }
  .section-newsletter .section-newsletter-container .newsletter-form {
    /*================ Desktop Version ================*/ }
    .section-newsletter .section-newsletter-container .newsletter-form .newsletter-form__text p {
      margin-bottom: 0; }
    .section-newsletter .section-newsletter-container .newsletter-form .newsletter-form__input {
      background-color: #f3f3f3;
      margin: 15px 0 30px 0;
      max-width: 450px;
      width: 90%; }
    .section-newsletter .section-newsletter-container .newsletter-form .newsletter-form__btn .btn, .section-newsletter .section-newsletter-container .newsletter-form .newsletter-form__btn .btn--secondary, .section-newsletter .section-newsletter-container .newsletter-form .newsletter-form__btn .btn--special {
      padding: 15px 45px; }
    @media screen and (min-width: 1024px) {
      .section-newsletter .section-newsletter-container .newsletter-form {
        max-width: 450px;
        margin: 0 auto; }
        .section-newsletter .section-newsletter-container .newsletter-form .newsletter-form__input {
          width: 100%; } }

/*================ Footer Section ================*/
.section-footer {
  /*================ Desktop Version ================*/ }
  .section-footer .section-footer__wrapper--bordered {
    border-top: 1px solid #e0e0e0; }
  .section-footer .section-footer__container {
    max-width: 1024px;
    margin: auto;
    position: relative;
    display: block; }
  .section-footer ul {
    margin-bottom: 0; }
  .section-footer .footer-col {
    padding: 30px 15px 15px; }
    .section-footer .footer-col.footer-col--content p {
      margin-bottom: 5px; }
    .section-footer .footer-col .btn, .section-footer .footer-col .btn--secondary, .section-footer .footer-col .btn--special {
      margin-top: 15px; }
  .section-footer .footer-col__title {
    margin-bottom: 10px;
    border-bottom: 1px solid #fff;
    width: 75%; }
  .section-footer .footer-col__linklist {
    margin-left: 0; }
    .section-footer .footer-col__linklist .footer-col__linklist-item {
      text-transform: none;
      text-decoration: underline;
      font-weight: bold; }
  .section-footer .newsletter-form .newsletter-form__group {
    *zoom: 1; }
    .section-footer .newsletter-form .newsletter-form__group:after {
      content: '';
      display: table;
      clear: both; }
  .section-footer .newsletter-form .newsletter-form__input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    float: left;
    height: 45px;
    margin: 0;
    width: 64%; }
  .section-footer .newsletter-form .newsletter-form__btn {
    border: 1px solid #e0e0e0;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    float: left;
    font-size: 1rem;
    height: 45px;
    margin: 0;
    padding: 0 5px;
    width: 35%; }
  .section-footer .sub-footer {
    text-align: center;
    background-color: #090909;
    color: white;
    font-size: 1.2rem; }
    .section-footer .sub-footer .social-icons {
      min-height: 45px;
      padding: 10px 0;
      float: none; }
      .section-footer .sub-footer .social-icons li {
        margin-left: 20px; }
        .section-footer .sub-footer .social-icons li:first-child {
          margin-left: 0; }
    .section-footer .sub-footer .sub-footer__right {
      text-align: center; }
    .section-footer .sub-footer .copyright-text {
      color: #cccccc;
      font-size: 0.75rem;
      margin: -5px 0 5px 0; }
      .section-footer .sub-footer .copyright-text.copyright-text--with-margin {
        margin: 35px 0 5px 0; }
      .section-footer .sub-footer .copyright-text.copyright-text--with-small-margin {
        margin: 5px 0 5px 0; }
      .section-footer .sub-footer .copyright-text a {
        color: #f2f2f2;
        transition: all 0.3s; }
        .section-footer .sub-footer .copyright-text a:hover {
          color: white; }
  .section-footer .payment-icons img {
    height: 18px; }
  .section-footer .footer-col--menu {
    padding: 30px 15px 0px 15px;
    text-align: center; }
  .section-footer .collapsible-content {
    overflow: hidden; }
  .section-footer .collapsible-content.collapsed {
    height: 0; }
  .section-footer .menu-collapse-btn {
    cursor: pointer; }
  .section-footer .menu-collapse-btn::after, .section-footer .menu-collapse-btn.collapsed::after {
    position: absolute;
    font-size: 22px;
    font-family: 'FontAwesome';
    margin-left: 6px;
    margin-top: -2px; }
  .section-footer .menu-collapse-btn::after {
    content: '\f106'; }
  .section-footer .menu-collapse-btn.collapsed::after {
    content: '\f107'; }
  @media screen and (min-width: 1024px) {
    .section-footer .sub-footer {
      font-size: 1.8rem; }
      .section-footer .sub-footer .social-icons li {
        min-height: 60px;
        margin-left: 30px; }
      .section-footer .sub-footer .sub-footer__right {
        text-align: right;
        padding-right: 30px; } }
  @media screen and (min-width: 767px) {
    .section-footer .footer-collapse::after, .section-footer .menu-collapse-btn::after {
      display: none; }
    .section-footer .collapsible-content.collapsed {
      height: auto; } }
  @media screen and (min-width: 1180px) {
    .section-footer .sub-footer .copyright-text {
      font-size: 0.9rem; }
    .section-footer .payment-icons img {
      height: 24px; } }

.section-instagram_feed h1, .section-instagram_feed .h1 {
  color: red; }

.section-map .map {
  margin-bottom: -6px; }

.empty-section {
  background: #efefef;
  height: 300px;
  padding: 6rem 1rem 0;
  text-align: center; }

.grid--debug .grid__item {
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
  border-right: none; }

/*================ The Hauser Design Group Custom Styles ================*/
a.floating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block; }

.copyright-info, .footer-help-txt {
  color: #fff; }

.yellow-link {
  color: #ffd500;
  text-decoration: underline;
  font-weight: bold; }

.social-icons-footer a {
  color: #fff;
  font-size: 22px; }

.section-footer .footer-col:nth-child(2),
.section-footer .footer-col:nth-child(3) {
  padding-top: 70px; }

.section-footer .footer-col__linklist,
.social-icons-footer {
  padding-top: 40px; }

.social-icons-footer {
  line-height: 0;
  padding-bottom: 10px; }

.section-footer {
  padding-bottom: 45px; }

.section-footer .footer-col__title {
  font-family: "Lato","HelveticaNeue","Helvetica Neue",sans-serif; }

.section-topbar-grid {
  width: 74%;
  margin: 0 auto; }

.st-div {
  height: 80px; }

.logo-cell {
  width: 28%;
  float: left; }

.grid__item {
  min-height: 0px; }

.section-topbar__controls {
  float: right;
  margin-top: 18px;
  width: auto; }

.medium-down--one-whole {
  margin: 17px 20px 0 0;
  float: right;
  width: 100px; }

.bidg-cart {
  margin-top: 21px;
  margin-left: 85px;
  width: 105px;
  float: right; }

.section-header__cart-link {
  color: #fff; }

.section-header__cart-count {
  border-radius: 50%;
  background-color: #00a2d9;
  color: #000;
  font-weight: bold;
  width: 26px;
  height: 26px;
  display: inline-block;
  text-align: center; }

.circle {
  border-radius: 50%;
  border: 2px solid #fff;
  width: 33px;
  height: 33px;
  text-align: center;
  padding: 6px; }

.fa-twitter {
  color: #FFFFFF; }

.fa-instagram {
  color: #FFFFFF; }

.fa-google-plus {
  color: #FFFFFF; }

.fa-pinterest-p {
  color: #fff; }

.fa-facebook {
  color: #FFFFFF; }

.fa-youtube {
  color: #FFFFFF; }

.fa-tumblr {
  color: #FFFFFF; }

.fa-shopping-cart {
  font-size: 1.5em !important; }

.section-header__wrapper {
  width: 75%;
  margin: 0 auto; }

.right-side__wrapper {
  display: none; }

.section-header {
  background-color: #00a2d9; }

.sf-menu a {
  font-weight: bold; }

.sf-menu li {
  background: #00a2d9; }

@media screen and (min-width: 1024px) {
  .section-header .menu-cell {
    background: #00a2d9; } }
@media screen and (max-width: 1023px) {
  .logo-cell {
    width: auto;
    float: none;
    text-align: center; }

  .medium-down--one-whole {
    display: none; }

  .bidg-cart {
    display: none; }

  .main-content {
    padding-top: 0 !important; }

  .section-header__wrapper {
    width: inherit;
    padding: 0 20px; }

  .bidg-cart-mobile {
    display: block !important; }

  .bidg-cart-mobile a {
    background-color: transparent !important;
    color: #000 !important;
    width: 60px;
    float: right;
    padding: 0 !important; }

  .bidg-cart-mobile i {
    font-size: 50px !important;
    font-weight: bold; }

  .section-header__cart-count {
    border: 2px solid #000;
    line-height: 1.4 !important;
    position: fixed;
    margin: 5px 0 0 -10px; } }
.section-header .header-search__wrapper {
  background: #00a2d9; }

.section-footer .footer-col__linklist {
  padding-top: 0; }

.footer-col__title {
  font-size: 15px;
  border-bottom: 0 !important; }

.footer-col__linklist-item a {
  font-size: 13px; }

.footer-col__linklist-item {
  text-decoration: none !important; }

.section-footer .footer-col:nth-child(2) {
  padding-top: 70px; }

.section-footer .footer-col--menu {
  padding-top: 70px; }

.section-footer .footer-col {
  padding-top: 70px; }

.footer-help-txt {
  color: #046c92;
  margin: 0;
  font-size: 13px;
  line-height: 2; }

.footer-col.footer-col--html.grid__item.one-whole.large--one-fifth.hide.small--show {
  text-align: center; }

@media screen and (min-width: 1300px) {
  .subfooter-width {
    width: 1300px; } }
.subfooter-width {
  margin: 0 auto; }

.push--large--one-third {
  float: left;
  margin-top: 18px;
  margin-left: 15px;
  width: auto;
  left: 0; }

.push--large--one-third .circle {
  border: 2px solid #00a2d9; }

.push--large--one-third .fa-twitter {
  color: #00a2d9; }

.push--large--one-third .fa-instagram {
  color: #00a2d9; }

.push--large--one-third .fa-google-plus {
  color: #00a2d9; }

.push--large--one-third .fa-pinterest-p {
  color: #00a2d9; }

.push--large--one-third .fa-facebook {
  color: #00a2d9; }

.push--large--one-third .fa-youtube {
  color: #00a2d9; }

.push--large--one-third .fa-tumblr {
  color: #00a2d9; }

.section-footer .sub-footer {
  font-size: inherit; }

.payment-icons {
  padding-top: 15px; }

.section-footer .sub-footer .sub-footer__right {
  float: right; }

.b-about {
  border-top: 1px solid #055e80; }

.footer-about-text p {
  margin: 20px auto 0 auto;
  text-align: center;
  color: #046c92;
  font-size: 14px; }

.footer-about-text p:last-child {
  margin-top: 10px; }

@media screen and (min-width: 1024px) {
  .footer-about-text p {
    width: 790px; } }
.links-copyright-list {
  text-align: center;
  margin-top: 20px; }

.links-copyright-list ul li {
  display: inline;
  margin-right: 10px;
  color: #00a2d9; }

.links-copyright-list ul li:last-child {
  font-size: 12px;
  text-transform: uppercase; }

.links-copyright-list ul {
  margin: 0; }

.links-copyright-list a {
  text-transform: uppercase;
  font-size: 12px;
  color: #00a2d9; }

@media screen and (max-width: 1023px) {
  .section-footer .grid--full {
    margin: 0 20px; }

  .footer-col:nth-child(1) {
    padding-top: 10px; }

  .footer-col:nth-child(1) img {
    margin: 0 auto;
    display: block; }

  .footer-col:nth-child(2), .footer-col:nth-child(3), .footer-col:nth-child(4), .footer-col:nth-child(5) {
    width: 210px;
    padding: 20px 0 0 0 !important;
    margin-left: 10px; }

  .subfooter-width {
    width: 70%;
    margin: 0 auto 20px auto !important; }

  .subfooter-width div {
    float: none !important;
    margin-left: 0 !important; }

  .footer-about-text {
    width: 80%;
    margin-left: auto;
    margin-right: auto; } }
@media screen and (min-width: 320px) and (max-width: 567px) {
  .footer-col:nth-child(2), .footer-col:nth-child(3), .footer-col:nth-child(4), .footer-col:nth-child(5) {
    width: 230px;
    padding: 20px 0 0 20px !important;
    margin-left: 10px; }

  .section-footer .grid--full {
    margin: 0; }

  .subfooter-width div {
    float: none !important;
    margin-left: 0; }

  .footer-about-text {
    margin: 0 auto; }

  .links-copyright-list {
    text-align: center;
    margin: 20px auto 0 auto;
    width: 80%; } }
@media screen and (min-width: 375px) {
  .links-copyright-list {
    width: 78%;
    margin-left: auto;
    margin-right: auto; } }
@media screen and (min-width: 667px) and (max-width: 920px) {
  .links-copyright-list {
    width: 75%;
    margin-left: auto;
    margin-right: auto; }

  .footer-col:nth-child(2), .footer-col:nth-child(3), .footer-col:nth-child(4), .footer-col:nth-child(5) {
    margin-left: 85px; } }
@media screen and (min-width: 568px) {
  .links-copyright-list {
    width: 82%; } }
.btn--special {
  background-color: #00a2d9; }

.btn--special:hover {
  background-color: #046c92; }

.product-card .selectric {
  background-color: #00a2d9; }

.product-card .selectric:hover {
  background-color: #046c92; }

.comment-form .btn, .comment-form .btn--secondary, .comment-form .btn--special {
  background-color: #00a2d9;
  color: #fff;
  border: none; }

.comment-form .btn:hover, .comment-form .btn--secondary:hover, .comment-form .btn--special:hover {
  background-color: #046c92; }

#shopify-section-1508690527565 .product-price__sale {
  color: #ef1b27; }

#product_112182198295 .product-price__price {
  color: #ef1b27; }

#shopify-section-1508432618171 .product-price__sale {
  color: #ef1b27; }

.s-container {
  float: left; }

.s-content {
  width: 220px;
  background-color: #00a2d9; }

.s-content ul {
  padding: 20px 20px;
  margin: 0; }

.s-content li {
  list-style: none; }

.s-content img {
  float: left;
  padding-bottom: 40px;
  margin-right: 10px; }

.s-content p {
  font-size: 14px; }

.s-content h4, .s-content .h4, .s-content .collection-banner .collection-banner__subtitle p, .collection-banner .collection-banner__subtitle .s-content p, .s-content .account-template .account-section .account-section__title, .account-template .account-section .s-content .account-section__title {
  font-size: 16px; }

#product_112182198295_images {
  padding: 0; }

.six-twelfths {
  width: 45%; }

.four-twelfths {
  width: 25.333%; }

@media screen and (min-width: 1024px) {
  .slideshow__text-content {
    width: 35% !important;
    left: 12%; } }
@media screen and (max-width: 1023px) {
  .slideshow__slide--1508432567454-0 .slideshow__title {
    text-align: center !important; }

  .slideshow__slide--1508432567454-0 .slideshow__subtitle {
    text-align: center !important; }

  .slideshow__slide--1508432567454-0 .slideshow__buttons {
    text-align: center !important; } }
@media screen and (max-width: 767px) {
  .bottom.right.round {
    display: none !important; } }
#shopify-section-1547784233617 {
  background-color: #00a2d9; }

#shopify-section-1547784233617 .btn, #shopify-section-1547784233617 .btn--secondary, #shopify-section-1547784233617 .btn--special {
  background-color: #000;
  color: #fff;
  padding: 10px 10px;
  margin-bottom: 5px; }

@media screen and (min-width: 1280px) {
  #shopify-section-1547784233617 .section-newsletter-container {
    width: 75%;
    margin: 0 auto;
    padding-left: 30px !important;
    padding-right: 30px !important;
    padding-bottom: 10px !important; }

  #shopify-section-1547784233617 .section-newsletter-container h2, #shopify-section-1547784233617 .section-newsletter-container .h2, #shopify-section-1547784233617 .section-newsletter-container .standard-page__title, #shopify-section-1547784233617 .section-newsletter-container .sidebar .sidebar__title, .sidebar #shopify-section-1547784233617 .section-newsletter-container .sidebar__title, #shopify-section-1547784233617 .section-newsletter-container .contact-page .map__title, .contact-page #shopify-section-1547784233617 .section-newsletter-container .map__title {
    float: left; }

  #shopify-section-1547784233617 .newsletter-form {
    max-width: 100%;
    margin: 0 auto; }

  #shopify-section-1547784233617 .newsletter-form__text {
    float: left;
    margin: 36px 0 0 30px; }

  #shopify-section-1547784233617 form {
    padding-top: 28px; }

  #shopify-section-1547784233617 .newsletter-form__input {
    max-width: none;
    width: 340px;
    padding: 10px 0 10px 10px;
    margin-bottom: 10px;
    margin-top: 0;
    margin-left: 10px; }

  #shopify-section-1547784233617 img {
    float: left;
    margin-top: 20px;
    margin-right: 20px; } }
#shopify-section-1548038088127 .section-content__wrapper {
  background-image: url(../../../files/banner.jpg);
  background-repeat: no-repeat; }

#shopify-section-1548038088127 {
  height: 250px; }

#shopify-section-1548038088127 h2, #shopify-section-1548038088127 .h2, #shopify-section-1548038088127 .standard-page__title, #shopify-section-1548038088127 .sidebar .sidebar__title, .sidebar #shopify-section-1548038088127 .sidebar__title, #shopify-section-1548038088127 .contact-page .map__title, .contact-page #shopify-section-1548038088127 .map__title {
  color: #fff; }

#shopify-section-1548038088127 p {
  color: #fff; }

#shopify-section-1548038088127 .btn, #shopify-section-1548038088127 .btn--secondary, #shopify-section-1548038088127 .btn--special {
  background-color: #00a2d9;
  border: 1px solid #046c92; }

@media screen and (min-width: 1280px) {
  #shopify-section-1548038088127 .section-content__wrapper {
    width: 62%;
    margin: 30px auto;
    height: 100%; }

  #shopify-section-1548038088127 h2, #shopify-section-1548038088127 .h2, #shopify-section-1548038088127 .standard-page__title, #shopify-section-1548038088127 .sidebar .sidebar__title, .sidebar #shopify-section-1548038088127 .sidebar__title, #shopify-section-1548038088127 .contact-page .map__title, .contact-page #shopify-section-1548038088127 .map__title {
    float: right;
    margin-top: 30px;
    margin-right: 30px; }

  #shopify-section-1548038088127 .custom__item-content--text {
    margin-right: 300px;
    float: right; } }
@media screen and (max-width: 1279px) {
  #shopify-section-1548038088127 .section-content__wrapper {
    margin: 30px auto;
    background-size: cover; }

  #shopify-section-1548038088127 .text-left {
    text-align: center !important; }

  #shopify-section-1548038088127 h2, #shopify-section-1548038088127 .h2, #shopify-section-1548038088127 .standard-page__title, #shopify-section-1548038088127 .sidebar .sidebar__title, .sidebar #shopify-section-1548038088127 .sidebar__title, #shopify-section-1548038088127 .contact-page .map__title, .contact-page #shopify-section-1548038088127 .map__title {
    text-align: center; } }
@media screen and (min-width: 1024px) {
  .product-add-to-cart-bar {
    top: 135px !important; }

  .template-product .main-content {
    padding-top: 135px !important; } }
@media screen and (min-width: 1024px) {
  #product_112182198295 .large--two-thirds {
    /* width: 100%; */ } }
@media screen and (max-width: 1023px) {
  .template-product .product-add-to-cart-bar {
    top: 134px; }

  .template-product .main-content {
    padding-top: 135px !important; } }
.blog-list__post {
  margin-bottom: 50px !important; }

.template-article .standard-page__title, .template-article .page-template h2, .page-template .template-article h2, .template-article .page-template .h2, .page-template .template-article .h2, .template-article .page-sidebar h2, .page-sidebar .template-article h2, .template-article .page-sidebar .h2, .page-sidebar .template-article .h2, .template-article .sidebar .sidebar__title, .sidebar .template-article .sidebar__title, .template-article .contact-page .map__title, .contact-page .template-article .map__title {
  font-size: 2rem; }

.template-blog .blog-list__image {
  width: 35%;
  float: left;
  margin-right: 20px; }

.template-blog .blog-list__links li:last-child {
  display: none; }

.template-blog .inline-list.blog-list__links, .template-blog .blog-list__links.comma-list {
  margin-top: 30px; }

.blog-list__links .btn, .blog-list__links .btn--secondary, .blog-list__links .btn--special {
  background-color: #00a2d9;
  color: #fff !important;
  border: none; }

.blog-list__links .btn:hover, .blog-list__links .btn--secondary:hover, .blog-list__links .btn--special:hover {
  background-color: #046c92; }

@media screen and (min-width: 1024px) {
  .template-article .main-content {
    padding-top: 135px !important; }

  .template-blog .main-content {
    padding-top: 135px !important; }

  .template-blog .blog-template {
    max-width: 1280px !important; } }
.breadcrumb > span:last-child {
  color: #00a2d9; }

@media screen and (min-width: 1024px) {
  .breadcrumb {
    width: 75%;
    margin: 0 auto;
    font-size: 14px; } }
.comments li {
  list-style: none; }

.comment-avatar {
  float: left;
  width: 5%;
  padding-bottom: 30px;
  margin-right: 10px; }

.user-content {
  width: 90%;
  float: left; }

.comment strong:nth-child(1) {
  width: 100%;
  float: left;
  font-size: 22px;
  margin-bottom: -10px; }

.comment strong:nth-child(2) {
  font-size: 12px;
  font-style: italic;
  width: 100%;
  float: left; }

.comment .rte {
  margin-top: 10px;
  width: 70%;
  margin-bottom: 30px; }

.comment-form label {
  display: none; }

.comment-form .grid__item {
  width: 50%; }

.comment-form .grid__item:last-child {
  width: 100%; }