/*============================================================================

  Flow Shopify Theme
  by WeTheme
  http://www.wetheme.com

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

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

  #Breakpoint and Grid Variables
  #General Variables
  #Sass Mixins
  #Normalize
  #Grid Setup
  #Basic Styles
  #Helper Classes
  #Typography
  #Rich Text Editor
  #Links and Buttons
  #Lists
  #Tables
  #Responsive Tables
  #OOCSS Media Object
  #Images and Iframes
  #Forms
  #Icons
  #Pagination
  #Site Header
  #Site Nav and Dropdowns
  #Mobile Nav
  #Drawers
  #Site Footer
  #Product and Collection Grids
  #Collection Filters
  #Breadcrumbs
  #Product Page
  #Notes and Form Feedback
  #Cart Page
  #Ajax Cart Styles

  Theme Specific

  #Homepage
  #Product Page
  #Collection Page
  #Cart Page
  #Quickshop
  #Page
  #Slideshow Sections
  #Collection list/Featured collections
  #Featured Products
  #Footer
  #Account Pages
  #Order Pages
  #Plyr

==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  src: url("../../../../../../../../../roboto/roboto_n7.51ede27d5b58491d9cf07ad184108da52fef80b4.woff") format("woff2"), url("../../../../../../../../../roboto/roboto_n7.1babbb6a27f91b14216bafa40bf222e08f6999f4_h1-bmljb2xhaWxpbGluLml0-hmac-b26608e3652724c1047bc98c3952743f1387f77828cb1e759f25bb08bd886ffc.woff") format("woff"); }

@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url("../../../../../../../../../roboto/roboto_n4.da808834c2315f31dd3910e2ae6b1a895d7f73f5.woff") format("woff2"), url("../../../../../../../../../roboto/roboto_n4.a512c7b68cd7f12c72e1a5fd58e7f7315c552e93_h1-bmljb2xhaWxpbGluLml0-hmac-d34a516b906ceb767543c758bf97712a8cff8d4838653ea3f47ff4c20762aa70.woff") format("woff"); }

@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  src: url("../../../../../../../../../roboto/roboto_n7.51ede27d5b58491d9cf07ad184108da52fef80b4.woff") format("woff2"), url("../../../../../../../../../roboto/roboto_n7.1babbb6a27f91b14216bafa40bf222e08f6999f4_h1-bmljb2xhaWxpbGluLml0-hmac-b26608e3652724c1047bc98c3952743f1387f77828cb1e759f25bb08bd886ffc.woff") format("woff"); }

@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  src: url("../../../../../../../../../roboto/roboto_n7.51ede27d5b58491d9cf07ad184108da52fef80b4.woff") format("woff2"), url("../../../../../../../../../roboto/roboto_n7.1babbb6a27f91b14216bafa40bf222e08f6999f4_h1-bmljb2xhaWxpbGluLml0-hmac-b26608e3652724c1047bc98c3952743f1387f77828cb1e759f25bb08bd886ffc.woff") format("woff"); }

@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: italic;
  src: url("../../../../../../../../../roboto/roboto_i4.f98951b4b9b6e1096fc799cd05debd098bd422ac.woff") format("woff2"), url("../../../../../../../../../roboto/roboto_i4.688a26691d45bc4053b6ae24a196cabdeedbc25c_h1-bmljb2xhaWxpbGluLml0-hmac-7d69ce8599ca0c8544192a6b8652eda9fdca87d638ea44ce896ddbffaf5fe172.woff") format("woff"); }

@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: italic;
  src: url("../../../../../../../../../roboto/roboto_i7.9c922c35bb84952cfb17e8c1d42e440e75aa8ccf.woff") format("woff2"), url("../../../../../../../../../roboto/roboto_i7.c50b5683f5731edb8040ff2110a54947108434de_h1-bmljb2xhaWxpbGluLml0-hmac-79a1581e7d93f3c80316656f4e87c14ce4da20ab1c7509887636beeb7ba8133c.woff") format("woff"); }

@font-face {
  font-family: 'icons';
  src: url("icons_v-1282853167238755370.eot");
  src: url("icons_v-1282853167238755370.eot#iefix") format("embedded-opentype"), url("icons_v-10710159224347271237.woff") format("woff"), url("icons_v-10972512194721268217.ttf") format("truetype"), url("icons_v-13458459411483348863-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; }

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

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center; }
  .grid--center > .grid__item {
    text-align: left; }

@media screen and (min-width: 767px) {
  .grid.grid--center, .grid--center.grid--rev, .grid--center.grid--full {
    margin-left: 0; } }

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 768px) {
  /* 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: 1200px) {
  /* Whole */
  .push--extra-large--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: white; }

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

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

.main-content {
  display: block;
  /*
  padding-top: $gridSpacing;
  */
  padding-bottom: 50px; }

svg.icon.icon--placeholder {
  background: dimgrey;
  fill: #838383; }

.lazyload[data-blur="true"] {
  filter: blur(4px); }

.ls-blur-up-img {
  filter: blur(4px);
  opacity: 1;
  transition: opacity 800ms, filter 400ms;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  font-family: "object-fit: contain, object-position: center"; }
  .ls-blur-up-img.product-main-image {
    transition: opacity 200ms, filter 100ms; }
  .lazyload-blur-wrapper-center .ls-blur-up-img {
    left: 50%;
    transform: translateX(-50%); }

.ls-blur-up-img.ls-inview.ls-original-loaded {
  opacity: 0;
  filter: blur(0px); }

/*============================================================================
  #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: 768px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

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

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

/*============================================================================
  #Responsive fonts
==============================================================================*/
/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .header-font, .custom-font {
  display: block;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 0.5em;
  line-height: 1.4; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a, .header-font a, .custom-font a {
    text-decoration: none;
    font-weight: inherit; }

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

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

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

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

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

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

p {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin: 0 0 15px 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

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

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

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

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid rgba(51, 51, 51, 0.5);
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0; }
  hr.hr--small {
    margin: 15px 0; }
  hr.hr--clear {
    border-top-color: transparent; }

/*================ Section Headers ================*/
.section-header {
  margin-bottom: 20px; }

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

  .section-header__title {
    margin-bottom: 12px; }

  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__left h1, .section-header__left .h1, .section-header__left h2, .section-header__left .h2, .section-header__left h3, .section-header__left .h3, .section-header__left h4, .section-header__left .h4,
    .section-header__left .h1, .section-header__left .h2, .section-header__left .h3, .section-header__left .h4 {
      margin-bottom: 0; }

  .section-header__right {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 335px; } }
  @media screen and (min-width: 768px) and (max-width: 767px) {
    .section-header__right {
      margin-bottom: 30px; } }

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

.collection-view {
  display: inline-block;
  border: 1px solid rgba(51, 51, 51, 0.5);
  border-radius: 0px;
  padding: 0 5px;
  height: 37px;
  overflow: hidden;
  /*================ Only show on larger screens ================*/ }
  @media screen and (min-width: 768px) {
    .collection-view {
      display: inline-block; } }

.change-view {
  display: block;
  background: none;
  border: 0 none;
  float: left;
  padding: 10px 8px;
  color: rgba(51, 51, 51, 0.5);
  line-height: 1; }
  .change-view:hover, .change-view:focus {
    color: #333333; }

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

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte a {
    border-bottom: 1px solid;
    padding-bottom: 2px;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out; }
    .rte a:hover, .rte a:focus {
      padding-bottom: 4px; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 1em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte .h1 a, .rte h2 a, .rte .h2 a, .rte h3 a, .rte .h3 a, .rte h4 a, .rte .h4 a, .rte h5 a, .rte .h5 a, .rte h6 a, .rte .h6 a {
      text-decoration: none; }
  .rte > div {
    margin-bottom: 15px; }
  .rte li {
    margin-bottom: 0.4em; }

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

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

button {
  overflow: visible; }

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

.btn, .btn--secondary,
.rte .btn--secondary,
.rte .btn,
.rte .btn--secondary,
.spr-button {
  display: inline-block;
  padding: 8px 10px;
  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: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  transition: background-color 0.3s ease-in;
  /*================ Set primary button colors - can override later ================*/
  background-color: black;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover,
  .spr-button:hover {
    background-color: #9f9f9f;
    color: #eeeeee; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus,
  .spr-button:active,
  .spr-button:focus {
    background-color: black;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary,
  .spr-button[disabled],
  .spr-button.disabled {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

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

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

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

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

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 15px;
  border: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5); }

/*============================================================================
  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, .table--responsive.cart-table .ajaxcart__qty {
    float: right; } }

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

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px; } }
/*============================================================================
	Sections
==============================================================================*/
.shopify-section .homepage-sections-wrapper {
  padding: 50px 0; }

.shopify-section .homepage-sections-wrapper--white {
  padding: 30.30303px 0; }

.flow-homepage .shopify-section:first-child .homepage-sections-wrapper--slideshow {
  padding: 0;
  margin-bottom: 30px; }

.shopify-section .homepage-sections-wrapper.homepage-sections-wrapper--no-padding {
  padding: 0; }

.map-section-wrapper a.homepage-featured-box-btn,
.image-with-text-wrapper a.homepage-featured-box-btn,
.homepage-featured-content-wrapper a.homepage-featured-box-btn {
  color: white; }

@media screen and (max-width: 768px) {
  .featured-product--grid-item {
    padding-left: 15px; } }
.homepage-sections-wrapper--light {
  background-color: #f1f2f3;
  color: #414141; }

.homepage-sections-wrapper--light a {
  color: #414141; }

.homepage-sections-wrapper--light .homepage-video-play-button-inner {
  border-color: transparent transparent transparent #414141; }

.homepage-sections-wrapper--light .homepage-featured-content-box,
.homepage-sections-wrapper--light .homepage-map-content-box {
  background: #414141;
  color: #f1f2f3; }

.homepage-sections-wrapper--accent {
  background: #c1c1c2;
  color: #414141; }

.homepage-sections-wrapper--accent a {
  color: #414141; }

.image-with-text-wrapper .homepage-sections-wrapper--accent .homepage-featured-content-box,
.map-section-wrapper .homepage-sections-wrapper--accent .homepage-map-content-box {
  background: #414141;
  color: #c1c1c2; }

.homepage-sections-wrapper--dark {
  background: #242424;
  color: white; }

.homepage-sections-wrapper--dark a {
  color: white; }

.image-with-text-wrapper .homepage-sections-wrapper--dark .homepage-featured-content-box,
.map-section-wrapper .homepage-sections-wrapper--dark .homepage-map-content-box {
  background: white;
  color: #242424; }

.homepage-sections-wrapper.text-advert-section {
  padding: 0; }

.image-with-text-wrapper .homepage-sections-wrapper--dark .homepage-featured-content-box,
.map-section-wrapper .homepage-sections-wrapper--dark .homepage-map-content-box {
  background: white;
  color: #242424; }

.template-index #shopify-section-footer {
  margin-top: 0; }

.homepage-collections-background .section-header {
  margin-bottom: 0; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.notification-bar {
  text-align: center;
  padding: 10px 0;
  min-height: 41px;
  align-items: center;
  justify-content: center; }
  @media screen and (min-width: 767px) {
    .notification-bar {
      display: flex; } }
  .notification-bar p {
    margin: 5px 0 5px 0;
    font-size: 12px;
    letter-spacing: 0px;
    text-transform: none;
    font-weight: 400; }
    @media screen and (min-width: 767px) {
      .notification-bar p {
        margin: 0; } }
  @media screen and (min-width: 767px) {
    .notification-bar .notification-bar__message {
      width: 80%;
      order: 1;
      padding-left: 20%;
      padding-right: 0;
      display: block; } }
  .notification-bar.no-icons .notification-bar__message {
    padding-left: 0;
    width: 100%; }
  .notification-bar #sharing {
    text-align: center;
    padding: 0;
    width: auto;
    margin: -2px auto 0 auto;
    opacity: 1; }
    @media screen and (min-width: 767px) {
      .notification-bar #sharing {
        max-width: 20%;
        order: 2;
        text-align: right;
        padding-right: 30px;
        margin-right: 0; } }
    .notification-bar #sharing #sm-icons {
      margin: 5px 0 0 0; }
      @media screen and (min-width: 767px) {
        .notification-bar #sharing #sm-icons {
          margin: 0; } }
      .notification-bar #sharing #sm-icons svg {
        transition: all 0.15s ease-in-out 0s;
        width: 15px;
        height: 19px;
        margin-bottom: -3px; }
    .notification-bar #sharing.is-clean a {
      background: transparent !important;
      border: none !important; }
    .notification-bar #sharing .fa-2x {
      font-size: 1.5em !important; }
    .notification-bar #sharing li {
      margin: 5px 0 0 10px;
      display: inline-block; }
      @media screen and (max-width: 767px) {
        .notification-bar #sharing li {
          margin: 5px 16px 0 16px; } }

@media screen and (max-width: 767px) {
  .notification-bar div:nth-child(2) {
    margin-top: 20px; } }
.notification-bar .custom-font {
  margin: 0; }

.image-gallery-wrapper .icon--placeholder {
  min-height: 200px;
  border: none; }

.image-bar--title {
  text-align: center;
  padding-top: 10px;
  font-size: 28px;
  width: 100%;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-bottom: -30px;
  letter-spacing: 0px;
  text-transform: normal; }

.image-bar--description p {
  text-align: center; }

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

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

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

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

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

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

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

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

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

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

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 767px) {
  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 rgba(51, 51, 51, 0.5);
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

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

input {
  border: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  padding: 10px 10px 10px 0; }

textarea,
select {
  border: 1px solid rgba(51, 51, 51, 0.5);
  padding: 10px 10px; }

input,
textarea,
select {
  background: transparent;
  max-width: 100%;
  border-radius: 0px; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid rgba(26, 26, 26, 0.5); }
  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%; }
  input::placeholder,
  textarea::placeholder,
  select::placeholder {
    color: rgba(51, 51, 51, 0.8); }

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;
  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: #333333;
  background-color: rgba(51, 51, 51, 0.1); }

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

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

label[for] {
  cursor: pointer; }

/*================ Horizontal Form ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  margin-bottom: 10px; }
.form-vertical input[type="radio"],
.form-vertical input[type="checkbox"] {
  display: inline-block; }

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

label.error {
  color: #d02e2e; }

.qty-error {
  margin-top: 10px; }

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

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

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

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

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

/*============================================================================
  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-bitcoin:before {
  content: "\42"; }

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

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

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

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

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

.icon-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-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-laser:before {
  content: "\e907"; }

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

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

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

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

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

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

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

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

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

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

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

.payment-icons svg {
  height: 40px;
  width: 55px; }

.social-icons li {
  margin: 0 15px 15px;
  vertical-align: middle; }
  @media screen and (min-width: 481px) {
    .social-icons li {
      margin-left: 0; } }
  .social-icons li .icon {
    font-size: 30px;
    line-height: 26px; }
  .social-icons li a {
    color: white; }
    .social-icons li a:hover {
      color: #e6e6e6; }

/*============================================================================
  #Pagination
==============================================================================*/
.pagination {
  margin: 1rem 0;
  text-align: center; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }
  .pagination .pagination-num-showing {
    font-size: 12px;
    font-style: italic;
    line-height: 30px; }
  .pagination .pagination-number a,
  .pagination i:before {
    color: #333333; }
  .pagination .pagination-number,
  .pagination .pagination-arrow,
  .pagination .ellipsis {
    display: inline-block; }
  .pagination .ellipsis {
    opacity: 0.5;
    padding: 0 10px; }
  .pagination .active a,
  .pagination .pagination-number a:hover,
  .pagination .pagination-arrow a:hover {
    background-color: #f8f8f8 !important; }
  .pagination .pagination-number a {
    font-family: helvetica;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    padding: 15px 20px;
    text-decoration: none;
    text-transform: uppercase; }
  .pagination .pagination-arrow a {
    font-family: helvetica;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    padding: 20px;
    text-decoration: none;
    text-transform: uppercase; }
  .pagination .disabled {
    display: none; }
  .pagination ul {
    margin: 0;
    padding: 0; }

.pagination-loading {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 1em;
  height: 64px; }
  .pagination-loading i {
    margin-top: 24px; }

.blog-homepage--comments .fa-comment {
  margin-right: 5px; }

#paginate {
  padding: 20px 0; }

.pagination__load-more .progress-bar {
  width: 200px;
  height: 4px;
  background: gray;
  margin: 0 auto 32px; }
  .pagination__load-more .progress-bar .progress-bar__inner {
    height: 4px;
    background: black; }
.pagination__load-more .pagination__progress-text {
  margin-bottom: 16px; }

.pagination-infinite ul,
.pagination--load-more ul {
  display: none; }

/*============================================================================
  # Page Fade Animation
==============================================================================*/
.supports-js body.page-fade {
  opacity: 0;
  transition: opacity 400ms ease-in; }
  .supports-js body.page-fade.loaded {
    opacity: 1; }
  .supports-js body.page-fade.unloading {
    opacity: 0; }

/*============================================================================
  #Site Header
==============================================================================*/
header {
  border-bottom: 1px solid white;
  margin-bottom: 0; }
  .template-index header {
    margin-bottom: 0; }
  header .grid--center .grid__item {
    text-align: center; }
  header .grid--full.grid--center {
    position: relative; }
    header .grid--full.grid--center .top-links--icon-links {
      position: absolute;
      top: 10px;
      right: 0; }
    header .grid--full.grid--center .above-top-links {
      margin-right: 30px; }

.white--match header {
  margin-bottom: 0; }

.header-section--wrapper {
  z-index: 10000; }

.site-header {
  padding-top: 15px;
  background-color: black; }
  .site-header .site-header__logowrapper {
    margin-bottom: 15px; }
  .site-header .site-header__wrapper {
    position: relative;
    display: flex; }
    .site-header .site-header__wrapper > * {
      margin: 0 15px; }
    .site-header .site-header__wrapper .site-header__wrapper__left {
      flex: 1 1 100%;
      display: flex; }
      .site-header .site-header__wrapper .site-header__wrapper__left .site-header__nav {
        align-self: center; }
    .site-header .site-header__wrapper .site-header__wrapper__center {
      flex: 1 0 100%;
      white-space: nowrap;
      align-self: center; }
    .site-header .site-header__wrapper .site-header__wrapper__right {
      flex: 1 1 100%;
      display: flex;
      justify-content: flex-end;
      flex-wrap: wrap;
      align-content: center; }
      .site-header .site-header__wrapper .site-header__wrapper__right .wetheme-dropdown.fit-current ul {
        left: auto;
        right: 0; }
      .site-header .site-header__wrapper .site-header__wrapper__right .site-nav, .site-header .site-header__wrapper .site-header__wrapper__right .site-nav--mobile {
        text-align: right; }
    .site-header .site-header__wrapper.site-header__wrapper--logo-left .site-header__wrapper__center {
      display: none; }
    .site-header .site-header__wrapper.site-header__wrapper--logo-left .site-nav, .site-header .site-header__wrapper.site-header__wrapper--logo-left .site-nav--mobile {
      margin: 0 -15px 15px 0; }
  .site-header .site-header__nav-standalone {
    margin: 0 15px;
    text-align: center; }
  .site-header.logo_above {
    padding-top: 19px;
    padding-bottom: 3px; }
  .site-header .localization-selector:nth-child(2n) {
    margin: 0 0 0 15px; }
  .site-header .localization-selector:first-of-type {
    margin-left: 0; }
  .site-header .localization-selector .wetheme-dropdown button {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-style: normal;
    border: none;
    padding: 0;
    margin-bottom: 15px; }

.localization-selector-form {
  display: flex;
  align-items: center; }
  .localization-selector-form .localization-selector {
    margin: 0 0 0 30px; }
    .localization-selector-form .localization-selector .wetheme-dropdown button {
      font-size: 12px; }

.sticky-header {
  background-color: black;
  z-index: 1000 !important;
  left: 0 !important; }

.template-index .overlay-header-wrapper, .template-collection .overlay-header-wrapper, .template-list-collections .overlay-header-wrapper, .contact-page .overlay-header-wrapper {
  height: 0px !important;
  max-height: 0px !important;
  min-height: 0px !important; }

.template-index .overlay-header, .template-collection .overlay-header, .template-list-collections .overlay-header, .contact-page .overlay-header {
  transition: background-color 100ms linear;
  border-bottom: none; }
  .template-index .overlay-header.ui.sticky:not(.top), .template-index .overlay-header:not(.sticky), .template-collection .overlay-header.ui.sticky:not(.top), .template-collection .overlay-header:not(.sticky), .template-list-collections .overlay-header.ui.sticky:not(.top), .template-list-collections .overlay-header:not(.sticky), .contact-page .overlay-header.ui.sticky:not(.top), .contact-page .overlay-header:not(.sticky) {
    position: relative;
    z-index: 1000;
    border-bottom: transparent;
    color: white; }
    .template-index .overlay-header.ui.sticky:not(.top) .top-links .site-nav__dropdown a, .template-index .overlay-header:not(.sticky) .top-links .site-nav__dropdown a, .template-collection .overlay-header.ui.sticky:not(.top) .top-links .site-nav__dropdown a, .template-collection .overlay-header:not(.sticky) .top-links .site-nav__dropdown a, .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links .site-nav__dropdown a, .template-list-collections .overlay-header:not(.sticky) .top-links .site-nav__dropdown a, .contact-page .overlay-header.ui.sticky:not(.top) .top-links .site-nav__dropdown a, .contact-page .overlay-header:not(.sticky) .top-links .site-nav__dropdown a {
      color: white;
      display: block; }
    .template-index .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a:hover,
    .template-index .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a:active,
    .template-index .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a,
    .template-index .overlay-header.ui.sticky:not(.top) .top-links--icon-links select,
    .template-index .overlay-header.ui.sticky:not(.top) .top-links a,
    .template-index .overlay-header.ui.sticky:not(.top) .top-links a:visited,
    .template-index .overlay-header.ui.sticky:not(.top) .site-header__logo-link,
    .template-index .overlay-header.ui.sticky:not(.top) .site-header__logo-link:visited, .template-index .overlay-header.ui.sticky:not(.top) .site-header__logo-overlay-link,
    .template-index .overlay-header.ui.sticky:not(.top) .wetheme-dropdown button, .template-index .overlay-header:not(.sticky) .top-links .top-links--icon-links a:hover,
    .template-index .overlay-header:not(.sticky) .top-links .top-links--icon-links a:active,
    .template-index .overlay-header:not(.sticky) .top-links .top-links--icon-links a,
    .template-index .overlay-header:not(.sticky) .top-links--icon-links select,
    .template-index .overlay-header:not(.sticky) .top-links a,
    .template-index .overlay-header:not(.sticky) .top-links a:visited,
    .template-index .overlay-header:not(.sticky) .site-header__logo-link,
    .template-index .overlay-header:not(.sticky) .site-header__logo-link:visited, .template-index .overlay-header:not(.sticky) .site-header__logo-overlay-link,
    .template-index .overlay-header:not(.sticky) .wetheme-dropdown button, .template-collection .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a:hover,
    .template-collection .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a:active,
    .template-collection .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a,
    .template-collection .overlay-header.ui.sticky:not(.top) .top-links--icon-links select,
    .template-collection .overlay-header.ui.sticky:not(.top) .top-links a,
    .template-collection .overlay-header.ui.sticky:not(.top) .top-links a:visited,
    .template-collection .overlay-header.ui.sticky:not(.top) .site-header__logo-link,
    .template-collection .overlay-header.ui.sticky:not(.top) .site-header__logo-link:visited, .template-collection .overlay-header.ui.sticky:not(.top) .site-header__logo-overlay-link,
    .template-collection .overlay-header.ui.sticky:not(.top) .wetheme-dropdown button, .template-collection .overlay-header:not(.sticky) .top-links .top-links--icon-links a:hover,
    .template-collection .overlay-header:not(.sticky) .top-links .top-links--icon-links a:active,
    .template-collection .overlay-header:not(.sticky) .top-links .top-links--icon-links a,
    .template-collection .overlay-header:not(.sticky) .top-links--icon-links select,
    .template-collection .overlay-header:not(.sticky) .top-links a,
    .template-collection .overlay-header:not(.sticky) .top-links a:visited,
    .template-collection .overlay-header:not(.sticky) .site-header__logo-link,
    .template-collection .overlay-header:not(.sticky) .site-header__logo-link:visited, .template-collection .overlay-header:not(.sticky) .site-header__logo-overlay-link,
    .template-collection .overlay-header:not(.sticky) .wetheme-dropdown button, .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a:hover,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a:active,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links--icon-links select,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links a,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links a:visited,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .site-header__logo-link,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .site-header__logo-link:visited, .template-list-collections .overlay-header.ui.sticky:not(.top) .site-header__logo-overlay-link,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .wetheme-dropdown button, .template-list-collections .overlay-header:not(.sticky) .top-links .top-links--icon-links a:hover,
    .template-list-collections .overlay-header:not(.sticky) .top-links .top-links--icon-links a:active,
    .template-list-collections .overlay-header:not(.sticky) .top-links .top-links--icon-links a,
    .template-list-collections .overlay-header:not(.sticky) .top-links--icon-links select,
    .template-list-collections .overlay-header:not(.sticky) .top-links a,
    .template-list-collections .overlay-header:not(.sticky) .top-links a:visited,
    .template-list-collections .overlay-header:not(.sticky) .site-header__logo-link,
    .template-list-collections .overlay-header:not(.sticky) .site-header__logo-link:visited, .template-list-collections .overlay-header:not(.sticky) .site-header__logo-overlay-link,
    .template-list-collections .overlay-header:not(.sticky) .wetheme-dropdown button, .contact-page .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a:hover,
    .contact-page .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a:active,
    .contact-page .overlay-header.ui.sticky:not(.top) .top-links .top-links--icon-links a,
    .contact-page .overlay-header.ui.sticky:not(.top) .top-links--icon-links select,
    .contact-page .overlay-header.ui.sticky:not(.top) .top-links a,
    .contact-page .overlay-header.ui.sticky:not(.top) .top-links a:visited,
    .contact-page .overlay-header.ui.sticky:not(.top) .site-header__logo-link,
    .contact-page .overlay-header.ui.sticky:not(.top) .site-header__logo-link:visited, .contact-page .overlay-header.ui.sticky:not(.top) .site-header__logo-overlay-link,
    .contact-page .overlay-header.ui.sticky:not(.top) .wetheme-dropdown button, .contact-page .overlay-header:not(.sticky) .top-links .top-links--icon-links a:hover,
    .contact-page .overlay-header:not(.sticky) .top-links .top-links--icon-links a:active,
    .contact-page .overlay-header:not(.sticky) .top-links .top-links--icon-links a,
    .contact-page .overlay-header:not(.sticky) .top-links--icon-links select,
    .contact-page .overlay-header:not(.sticky) .top-links a,
    .contact-page .overlay-header:not(.sticky) .top-links a:visited,
    .contact-page .overlay-header:not(.sticky) .site-header__logo-link,
    .contact-page .overlay-header:not(.sticky) .site-header__logo-link:visited, .contact-page .overlay-header:not(.sticky) .site-header__logo-overlay-link,
    .contact-page .overlay-header:not(.sticky) .wetheme-dropdown button {
      color: white; }
    .template-index .overlay-header.ui.sticky:not(.top) .top-links a,
    .template-index .overlay-header.ui.sticky:not(.top) .top-links a:visited,
    .template-index .overlay-header.ui.sticky:not(.top) .site-header__logo-link,
    .template-index .overlay-header.ui.sticky:not(.top) .site-header__logo-link:visited, .template-index .overlay-header.ui.sticky:not(.top) .site-header__logo-overlay-link, .template-index .overlay-header:not(.sticky) .top-links a,
    .template-index .overlay-header:not(.sticky) .top-links a:visited,
    .template-index .overlay-header:not(.sticky) .site-header__logo-link,
    .template-index .overlay-header:not(.sticky) .site-header__logo-link:visited, .template-index .overlay-header:not(.sticky) .site-header__logo-overlay-link, .template-collection .overlay-header.ui.sticky:not(.top) .top-links a,
    .template-collection .overlay-header.ui.sticky:not(.top) .top-links a:visited,
    .template-collection .overlay-header.ui.sticky:not(.top) .site-header__logo-link,
    .template-collection .overlay-header.ui.sticky:not(.top) .site-header__logo-link:visited, .template-collection .overlay-header.ui.sticky:not(.top) .site-header__logo-overlay-link, .template-collection .overlay-header:not(.sticky) .top-links a,
    .template-collection .overlay-header:not(.sticky) .top-links a:visited,
    .template-collection .overlay-header:not(.sticky) .site-header__logo-link,
    .template-collection .overlay-header:not(.sticky) .site-header__logo-link:visited, .template-collection .overlay-header:not(.sticky) .site-header__logo-overlay-link, .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links a,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .top-links a:visited,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .site-header__logo-link,
    .template-list-collections .overlay-header.ui.sticky:not(.top) .site-header__logo-link:visited, .template-list-collections .overlay-header.ui.sticky:not(.top) .site-header__logo-overlay-link, .template-list-collections .overlay-header:not(.sticky) .top-links a,
    .template-list-collections .overlay-header:not(.sticky) .top-links a:visited,
    .template-list-collections .overlay-header:not(.sticky) .site-header__logo-link,
    .template-list-collections .overlay-header:not(.sticky) .site-header__logo-link:visited, .template-list-collections .overlay-header:not(.sticky) .site-header__logo-overlay-link, .contact-page .overlay-header.ui.sticky:not(.top) .top-links a,
    .contact-page .overlay-header.ui.sticky:not(.top) .top-links a:visited,
    .contact-page .overlay-header.ui.sticky:not(.top) .site-header__logo-link,
    .contact-page .overlay-header.ui.sticky:not(.top) .site-header__logo-link:visited, .contact-page .overlay-header.ui.sticky:not(.top) .site-header__logo-overlay-link, .contact-page .overlay-header:not(.sticky) .top-links a,
    .contact-page .overlay-header:not(.sticky) .top-links a:visited,
    .contact-page .overlay-header:not(.sticky) .site-header__logo-link,
    .contact-page .overlay-header:not(.sticky) .site-header__logo-link:visited, .contact-page .overlay-header:not(.sticky) .site-header__logo-overlay-link {
      color: white; }
    .template-index .overlay-header.ui.sticky:not(.top) .site-header__logo-image, .template-index .overlay-header.ui.sticky:not(.top) .site-header__logo-link, .template-index .overlay-header:not(.sticky) .site-header__logo-image, .template-index .overlay-header:not(.sticky) .site-header__logo-link, .template-collection .overlay-header.ui.sticky:not(.top) .site-header__logo-image, .template-collection .overlay-header.ui.sticky:not(.top) .site-header__logo-link, .template-collection .overlay-header:not(.sticky) .site-header__logo-image, .template-collection .overlay-header:not(.sticky) .site-header__logo-link, .template-list-collections .overlay-header.ui.sticky:not(.top) .site-header__logo-image, .template-list-collections .overlay-header.ui.sticky:not(.top) .site-header__logo-link, .template-list-collections .overlay-header:not(.sticky) .site-header__logo-image, .template-list-collections .overlay-header:not(.sticky) .site-header__logo-link, .contact-page .overlay-header.ui.sticky:not(.top) .site-header__logo-image, .contact-page .overlay-header.ui.sticky:not(.top) .site-header__logo-link, .contact-page .overlay-header:not(.sticky) .site-header__logo-image, .contact-page .overlay-header:not(.sticky) .site-header__logo-link {
      display: none; }
    @media only screen and (min-width: 768px) {
      .template-index .overlay-header.ui.sticky:not(.top):hover, .template-index .overlay-header.ui.sticky:not(.top).force-hover, .template-index .overlay-header:not(.sticky):hover, .template-index .overlay-header:not(.sticky).force-hover, .template-collection .overlay-header.ui.sticky:not(.top):hover, .template-collection .overlay-header.ui.sticky:not(.top).force-hover, .template-collection .overlay-header:not(.sticky):hover, .template-collection .overlay-header:not(.sticky).force-hover, .template-list-collections .overlay-header.ui.sticky:not(.top):hover, .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover, .template-list-collections .overlay-header:not(.sticky):hover, .template-list-collections .overlay-header:not(.sticky).force-hover, .contact-page .overlay-header.ui.sticky:not(.top):hover, .contact-page .overlay-header.ui.sticky:not(.top).force-hover, .contact-page .overlay-header:not(.sticky):hover, .contact-page .overlay-header:not(.sticky).force-hover {
        background: black; }
        .template-index .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover,
        .template-index .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:active,
        .template-index .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a,
        .template-index .overlay-header.ui.sticky:not(.top):hover .top-links--icon-links select,
        .template-index .overlay-header.ui.sticky:not(.top):hover .top-links a,
        .template-index .overlay-header.ui.sticky:not(.top):hover .top-links a:visited,
        .template-index .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link,
        .template-index .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:visited, .template-index .overlay-header.ui.sticky:not(.top):hover .site-header__logo-overlay-link,
        .template-index .overlay-header.ui.sticky:not(.top):hover .wetheme-dropdown button, .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover,
        .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:active,
        .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a,
        .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links--icon-links select,
        .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links a,
        .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links a:visited,
        .template-index .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link,
        .template-index .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:visited, .template-index .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-overlay-link,
        .template-index .overlay-header.ui.sticky:not(.top).force-hover .wetheme-dropdown button, .template-index .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover,
        .template-index .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:active,
        .template-index .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a,
        .template-index .overlay-header:not(.sticky):hover .top-links--icon-links select,
        .template-index .overlay-header:not(.sticky):hover .top-links a,
        .template-index .overlay-header:not(.sticky):hover .top-links a:visited,
        .template-index .overlay-header:not(.sticky):hover .site-header__logo-link,
        .template-index .overlay-header:not(.sticky):hover .site-header__logo-link:visited, .template-index .overlay-header:not(.sticky):hover .site-header__logo-overlay-link,
        .template-index .overlay-header:not(.sticky):hover .wetheme-dropdown button, .template-index .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover,
        .template-index .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:active,
        .template-index .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a,
        .template-index .overlay-header:not(.sticky).force-hover .top-links--icon-links select,
        .template-index .overlay-header:not(.sticky).force-hover .top-links a,
        .template-index .overlay-header:not(.sticky).force-hover .top-links a:visited,
        .template-index .overlay-header:not(.sticky).force-hover .site-header__logo-link,
        .template-index .overlay-header:not(.sticky).force-hover .site-header__logo-link:visited, .template-index .overlay-header:not(.sticky).force-hover .site-header__logo-overlay-link,
        .template-index .overlay-header:not(.sticky).force-hover .wetheme-dropdown button, .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover,
        .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:active,
        .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a,
        .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links--icon-links select,
        .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links a,
        .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links a:visited,
        .template-collection .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link,
        .template-collection .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:visited, .template-collection .overlay-header.ui.sticky:not(.top):hover .site-header__logo-overlay-link,
        .template-collection .overlay-header.ui.sticky:not(.top):hover .wetheme-dropdown button, .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover,
        .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:active,
        .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a,
        .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links--icon-links select,
        .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links a,
        .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links a:visited,
        .template-collection .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link,
        .template-collection .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:visited, .template-collection .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-overlay-link,
        .template-collection .overlay-header.ui.sticky:not(.top).force-hover .wetheme-dropdown button, .template-collection .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover,
        .template-collection .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:active,
        .template-collection .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a,
        .template-collection .overlay-header:not(.sticky):hover .top-links--icon-links select,
        .template-collection .overlay-header:not(.sticky):hover .top-links a,
        .template-collection .overlay-header:not(.sticky):hover .top-links a:visited,
        .template-collection .overlay-header:not(.sticky):hover .site-header__logo-link,
        .template-collection .overlay-header:not(.sticky):hover .site-header__logo-link:visited, .template-collection .overlay-header:not(.sticky):hover .site-header__logo-overlay-link,
        .template-collection .overlay-header:not(.sticky):hover .wetheme-dropdown button, .template-collection .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover,
        .template-collection .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:active,
        .template-collection .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a,
        .template-collection .overlay-header:not(.sticky).force-hover .top-links--icon-links select,
        .template-collection .overlay-header:not(.sticky).force-hover .top-links a,
        .template-collection .overlay-header:not(.sticky).force-hover .top-links a:visited,
        .template-collection .overlay-header:not(.sticky).force-hover .site-header__logo-link,
        .template-collection .overlay-header:not(.sticky).force-hover .site-header__logo-link:visited, .template-collection .overlay-header:not(.sticky).force-hover .site-header__logo-overlay-link,
        .template-collection .overlay-header:not(.sticky).force-hover .wetheme-dropdown button, .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover,
        .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:active,
        .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a,
        .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links--icon-links select,
        .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links a,
        .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links a:visited,
        .template-list-collections .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link,
        .template-list-collections .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:visited, .template-list-collections .overlay-header.ui.sticky:not(.top):hover .site-header__logo-overlay-link,
        .template-list-collections .overlay-header.ui.sticky:not(.top):hover .wetheme-dropdown button, .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover,
        .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:active,
        .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a,
        .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links--icon-links select,
        .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links a,
        .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links a:visited,
        .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link,
        .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:visited, .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-overlay-link,
        .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .wetheme-dropdown button, .template-list-collections .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover,
        .template-list-collections .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:active,
        .template-list-collections .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a,
        .template-list-collections .overlay-header:not(.sticky):hover .top-links--icon-links select,
        .template-list-collections .overlay-header:not(.sticky):hover .top-links a,
        .template-list-collections .overlay-header:not(.sticky):hover .top-links a:visited,
        .template-list-collections .overlay-header:not(.sticky):hover .site-header__logo-link,
        .template-list-collections .overlay-header:not(.sticky):hover .site-header__logo-link:visited, .template-list-collections .overlay-header:not(.sticky):hover .site-header__logo-overlay-link,
        .template-list-collections .overlay-header:not(.sticky):hover .wetheme-dropdown button, .template-list-collections .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover,
        .template-list-collections .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:active,
        .template-list-collections .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a,
        .template-list-collections .overlay-header:not(.sticky).force-hover .top-links--icon-links select,
        .template-list-collections .overlay-header:not(.sticky).force-hover .top-links a,
        .template-list-collections .overlay-header:not(.sticky).force-hover .top-links a:visited,
        .template-list-collections .overlay-header:not(.sticky).force-hover .site-header__logo-link,
        .template-list-collections .overlay-header:not(.sticky).force-hover .site-header__logo-link:visited, .template-list-collections .overlay-header:not(.sticky).force-hover .site-header__logo-overlay-link,
        .template-list-collections .overlay-header:not(.sticky).force-hover .wetheme-dropdown button, .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover,
        .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:active,
        .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a,
        .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links--icon-links select,
        .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links a,
        .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links a:visited,
        .contact-page .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link,
        .contact-page .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:visited, .contact-page .overlay-header.ui.sticky:not(.top):hover .site-header__logo-overlay-link,
        .contact-page .overlay-header.ui.sticky:not(.top):hover .wetheme-dropdown button, .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover,
        .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:active,
        .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a,
        .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links--icon-links select,
        .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links a,
        .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links a:visited,
        .contact-page .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link,
        .contact-page .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:visited, .contact-page .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-overlay-link,
        .contact-page .overlay-header.ui.sticky:not(.top).force-hover .wetheme-dropdown button, .contact-page .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover,
        .contact-page .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:active,
        .contact-page .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a,
        .contact-page .overlay-header:not(.sticky):hover .top-links--icon-links select,
        .contact-page .overlay-header:not(.sticky):hover .top-links a,
        .contact-page .overlay-header:not(.sticky):hover .top-links a:visited,
        .contact-page .overlay-header:not(.sticky):hover .site-header__logo-link,
        .contact-page .overlay-header:not(.sticky):hover .site-header__logo-link:visited, .contact-page .overlay-header:not(.sticky):hover .site-header__logo-overlay-link,
        .contact-page .overlay-header:not(.sticky):hover .wetheme-dropdown button, .contact-page .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover,
        .contact-page .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:active,
        .contact-page .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a,
        .contact-page .overlay-header:not(.sticky).force-hover .top-links--icon-links select,
        .contact-page .overlay-header:not(.sticky).force-hover .top-links a,
        .contact-page .overlay-header:not(.sticky).force-hover .top-links a:visited,
        .contact-page .overlay-header:not(.sticky).force-hover .site-header__logo-link,
        .contact-page .overlay-header:not(.sticky).force-hover .site-header__logo-link:visited, .contact-page .overlay-header:not(.sticky).force-hover .site-header__logo-overlay-link,
        .contact-page .overlay-header:not(.sticky).force-hover .wetheme-dropdown button {
          color: white; }
          .template-index .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover:hover,
          .template-index .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:active:hover,
          .template-index .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover,
          .template-index .overlay-header.ui.sticky:not(.top):hover .top-links--icon-links select:hover,
          .template-index .overlay-header.ui.sticky:not(.top):hover .top-links a:hover,
          .template-index .overlay-header.ui.sticky:not(.top):hover .top-links a:visited:hover,
          .template-index .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:hover,
          .template-index .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:visited:hover, .template-index .overlay-header.ui.sticky:not(.top):hover .site-header__logo-overlay-link:hover,
          .template-index .overlay-header.ui.sticky:not(.top):hover .wetheme-dropdown button:hover, .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover:hover,
          .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:active:hover,
          .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover,
          .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links--icon-links select:hover,
          .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links a:hover,
          .template-index .overlay-header.ui.sticky:not(.top).force-hover .top-links a:visited:hover,
          .template-index .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:hover,
          .template-index .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:visited:hover, .template-index .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-overlay-link:hover,
          .template-index .overlay-header.ui.sticky:not(.top).force-hover .wetheme-dropdown button:hover, .template-index .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover:hover,
          .template-index .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:active:hover,
          .template-index .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover,
          .template-index .overlay-header:not(.sticky):hover .top-links--icon-links select:hover,
          .template-index .overlay-header:not(.sticky):hover .top-links a:hover,
          .template-index .overlay-header:not(.sticky):hover .top-links a:visited:hover,
          .template-index .overlay-header:not(.sticky):hover .site-header__logo-link:hover,
          .template-index .overlay-header:not(.sticky):hover .site-header__logo-link:visited:hover, .template-index .overlay-header:not(.sticky):hover .site-header__logo-overlay-link:hover,
          .template-index .overlay-header:not(.sticky):hover .wetheme-dropdown button:hover, .template-index .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover:hover,
          .template-index .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:active:hover,
          .template-index .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover,
          .template-index .overlay-header:not(.sticky).force-hover .top-links--icon-links select:hover,
          .template-index .overlay-header:not(.sticky).force-hover .top-links a:hover,
          .template-index .overlay-header:not(.sticky).force-hover .top-links a:visited:hover,
          .template-index .overlay-header:not(.sticky).force-hover .site-header__logo-link:hover,
          .template-index .overlay-header:not(.sticky).force-hover .site-header__logo-link:visited:hover, .template-index .overlay-header:not(.sticky).force-hover .site-header__logo-overlay-link:hover,
          .template-index .overlay-header:not(.sticky).force-hover .wetheme-dropdown button:hover, .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover:hover,
          .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:active:hover,
          .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover,
          .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links--icon-links select:hover,
          .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links a:hover,
          .template-collection .overlay-header.ui.sticky:not(.top):hover .top-links a:visited:hover,
          .template-collection .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:hover,
          .template-collection .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:visited:hover, .template-collection .overlay-header.ui.sticky:not(.top):hover .site-header__logo-overlay-link:hover,
          .template-collection .overlay-header.ui.sticky:not(.top):hover .wetheme-dropdown button:hover, .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover:hover,
          .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:active:hover,
          .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover,
          .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links--icon-links select:hover,
          .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links a:hover,
          .template-collection .overlay-header.ui.sticky:not(.top).force-hover .top-links a:visited:hover,
          .template-collection .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:hover,
          .template-collection .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:visited:hover, .template-collection .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-overlay-link:hover,
          .template-collection .overlay-header.ui.sticky:not(.top).force-hover .wetheme-dropdown button:hover, .template-collection .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover:hover,
          .template-collection .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:active:hover,
          .template-collection .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover,
          .template-collection .overlay-header:not(.sticky):hover .top-links--icon-links select:hover,
          .template-collection .overlay-header:not(.sticky):hover .top-links a:hover,
          .template-collection .overlay-header:not(.sticky):hover .top-links a:visited:hover,
          .template-collection .overlay-header:not(.sticky):hover .site-header__logo-link:hover,
          .template-collection .overlay-header:not(.sticky):hover .site-header__logo-link:visited:hover, .template-collection .overlay-header:not(.sticky):hover .site-header__logo-overlay-link:hover,
          .template-collection .overlay-header:not(.sticky):hover .wetheme-dropdown button:hover, .template-collection .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover:hover,
          .template-collection .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:active:hover,
          .template-collection .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover,
          .template-collection .overlay-header:not(.sticky).force-hover .top-links--icon-links select:hover,
          .template-collection .overlay-header:not(.sticky).force-hover .top-links a:hover,
          .template-collection .overlay-header:not(.sticky).force-hover .top-links a:visited:hover,
          .template-collection .overlay-header:not(.sticky).force-hover .site-header__logo-link:hover,
          .template-collection .overlay-header:not(.sticky).force-hover .site-header__logo-link:visited:hover, .template-collection .overlay-header:not(.sticky).force-hover .site-header__logo-overlay-link:hover,
          .template-collection .overlay-header:not(.sticky).force-hover .wetheme-dropdown button:hover, .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:active:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links--icon-links select:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links a:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top):hover .top-links a:visited:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:visited:hover, .template-list-collections .overlay-header.ui.sticky:not(.top):hover .site-header__logo-overlay-link:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top):hover .wetheme-dropdown button:hover, .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:active:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links--icon-links select:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links a:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .top-links a:visited:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:visited:hover, .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-overlay-link:hover,
          .template-list-collections .overlay-header.ui.sticky:not(.top).force-hover .wetheme-dropdown button:hover, .template-list-collections .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover:hover,
          .template-list-collections .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:active:hover,
          .template-list-collections .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover,
          .template-list-collections .overlay-header:not(.sticky):hover .top-links--icon-links select:hover,
          .template-list-collections .overlay-header:not(.sticky):hover .top-links a:hover,
          .template-list-collections .overlay-header:not(.sticky):hover .top-links a:visited:hover,
          .template-list-collections .overlay-header:not(.sticky):hover .site-header__logo-link:hover,
          .template-list-collections .overlay-header:not(.sticky):hover .site-header__logo-link:visited:hover, .template-list-collections .overlay-header:not(.sticky):hover .site-header__logo-overlay-link:hover,
          .template-list-collections .overlay-header:not(.sticky):hover .wetheme-dropdown button:hover, .template-list-collections .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover:hover,
          .template-list-collections .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:active:hover,
          .template-list-collections .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover,
          .template-list-collections .overlay-header:not(.sticky).force-hover .top-links--icon-links select:hover,
          .template-list-collections .overlay-header:not(.sticky).force-hover .top-links a:hover,
          .template-list-collections .overlay-header:not(.sticky).force-hover .top-links a:visited:hover,
          .template-list-collections .overlay-header:not(.sticky).force-hover .site-header__logo-link:hover,
          .template-list-collections .overlay-header:not(.sticky).force-hover .site-header__logo-link:visited:hover, .template-list-collections .overlay-header:not(.sticky).force-hover .site-header__logo-overlay-link:hover,
          .template-list-collections .overlay-header:not(.sticky).force-hover .wetheme-dropdown button:hover, .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover:hover,
          .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:active:hover,
          .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links .top-links--icon-links a:hover,
          .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links--icon-links select:hover,
          .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links a:hover,
          .contact-page .overlay-header.ui.sticky:not(.top):hover .top-links a:visited:hover,
          .contact-page .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:hover,
          .contact-page .overlay-header.ui.sticky:not(.top):hover .site-header__logo-link:visited:hover, .contact-page .overlay-header.ui.sticky:not(.top):hover .site-header__logo-overlay-link:hover,
          .contact-page .overlay-header.ui.sticky:not(.top):hover .wetheme-dropdown button:hover, .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover:hover,
          .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:active:hover,
          .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links .top-links--icon-links a:hover,
          .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links--icon-links select:hover,
          .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links a:hover,
          .contact-page .overlay-header.ui.sticky:not(.top).force-hover .top-links a:visited:hover,
          .contact-page .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:hover,
          .contact-page .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-link:visited:hover, .contact-page .overlay-header.ui.sticky:not(.top).force-hover .site-header__logo-overlay-link:hover,
          .contact-page .overlay-header.ui.sticky:not(.top).force-hover .wetheme-dropdown button:hover, .contact-page .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover:hover,
          .contact-page .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:active:hover,
          .contact-page .overlay-header:not(.sticky):hover .top-links .top-links--icon-links a:hover,
          .contact-page .overlay-header:not(.sticky):hover .top-links--icon-links select:hover,
          .contact-page .overlay-header:not(.sticky):hover .top-links a:hover,
          .contact-page .overlay-header:not(.sticky):hover .top-links a:visited:hover,
          .contact-page .overlay-header:not(.sticky):hover .site-header__logo-link:hover,
          .contact-page .overlay-header:not(.sticky):hover .site-header__logo-link:visited:hover, .contact-page .overlay-header:not(.sticky):hover .site-header__logo-overlay-link:hover,
          .contact-page .overlay-header:not(.sticky):hover .wetheme-dropdown button:hover, .contact-page .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover:hover,
          .contact-page .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:active:hover,
          .contact-page .overlay-header:not(.sticky).force-hover .top-links .top-links--icon-links a:hover,
          .contact-page .overlay-header:not(.sticky).force-hover .top-links--icon-links select:hover,
          .contact-page .overlay-header:not(.sticky).force-hover .top-links a:hover,
          .contact-page .overlay-header:not(.sticky).force-hover .top-links a:visited:hover,
          .contact-page .overlay-header:not(.sticky).force-hover .site-header__logo-link:hover,
          .contact-page .overlay-header:not(.sticky).force-hover .site-header__logo-link:visited:hover, .contact-page .overlay-header:not(.sticky).force-hover .site-header__logo-overlay-link:hover,
          .contact-page .overlay-header:not(.sticky).force-hover .wetheme-dropdown button:hover {
            color: #767676; } }
  .template-index .overlay-header.sticky.top .site-header__logo-overlay-image,
  .template-index .overlay-header.sticky.top .site-header__logo-overlay-link, .template-collection .overlay-header.sticky.top .site-header__logo-overlay-image,
  .template-collection .overlay-header.sticky.top .site-header__logo-overlay-link, .template-list-collections .overlay-header.sticky.top .site-header__logo-overlay-image,
  .template-list-collections .overlay-header.sticky.top .site-header__logo-overlay-link, .contact-page .overlay-header.sticky.top .site-header__logo-overlay-image,
  .contact-page .overlay-header.sticky.top .site-header__logo-overlay-link {
    display: none; }
  .template-index .overlay-header.sticky.top .site-nav--mobile i,
  .template-index .overlay-header.sticky.top .wetheme-dropdown button, .template-collection .overlay-header.sticky.top .site-nav--mobile i,
  .template-collection .overlay-header.sticky.top .wetheme-dropdown button, .template-list-collections .overlay-header.sticky.top .site-nav--mobile i,
  .template-list-collections .overlay-header.sticky.top .wetheme-dropdown button, .contact-page .overlay-header.sticky.top .site-nav--mobile i,
  .contact-page .overlay-header.sticky.top .wetheme-dropdown button {
    color: white; }
    .template-index .overlay-header.sticky.top .site-nav--mobile i:hover,
    .template-index .overlay-header.sticky.top .wetheme-dropdown button:hover, .template-collection .overlay-header.sticky.top .site-nav--mobile i:hover,
    .template-collection .overlay-header.sticky.top .wetheme-dropdown button:hover, .template-list-collections .overlay-header.sticky.top .site-nav--mobile i:hover,
    .template-list-collections .overlay-header.sticky.top .wetheme-dropdown button:hover, .contact-page .overlay-header.sticky.top .site-nav--mobile i:hover,
    .contact-page .overlay-header.sticky.top .wetheme-dropdown button:hover {
      color: #767676; }

.hover-logo {
  display: none; }

header.force-hover.overlay-header.overlay-logo .hover-logo, header.force-hover.overlay-header.overlay-logo .site-header__logo .hover-logo-text, header.overlay-header.overlay-logo:hover .hover-logo, header.overlay-header.overlay-logo:hover .site-header__logo .hover-logo-text {
  display: block; }
header.force-hover.overlay-header.overlay-logo .opacity-logo, header.overlay-header.overlay-logo:hover .opacity-logo {
  display: none; }

header:not(.overlay-header) .site-header__logo-overlay-image,
header:not(.overlay-header) .site-header__logo-overlay-link {
  display: none; }

.sticky-header-transformed {
  transform: translate3d(0, 0, 0); }

.site-header__logo {
  text-align: center;
  margin: 0 auto;
  max-width: 100%; }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a {
    display: block; }
    .grid--center .site-header__logo a {
      display: inline-block; }
  .site-header__logo img {
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
    max-width: 100%; }

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

.large--left .site-header__logo-link,
.large--left .site-header__logo-overlay-link {
  text-align: left; }

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

.site-header__search {
  display: inline-block;
  max-width: 400px;
  margin-top: 15px;
  width: 100%; }

.site-nav__dropdown {
  background: black;
  top: 100%; }

.site-nav__dropdown .site-nav__link {
  background: black; }

.site-nav__dropdown.standard-dropdown li:hover {
  background: #0d0d0d;
  color: #767676; }
  .site-nav__dropdown.standard-dropdown li:hover > .site-nav__link {
    background: #0d0d0d; }

.site-nav--link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .site-nav--link-wrapper .icon-dropdown {
    display: flex;
    padding-left: 0.25em; }
  .site-nav--link-wrapper.icon-right .icon-dropdown {
    transform: rotate(-90deg);
    padding-top: 15px; }
  .site-nav--link-wrapper svg {
    width: 20px; }

.top-links {
  margin-bottom: 0; }

.top-links ul.site-nav, .top-links ul.site-nav--mobile {
  display: inline-block;
  font-size: 14px;
  line-height: 14px; }

.top-links ul li {
  display: inline-block;
  list-style-type: none;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase; }

.top-links--icon-links {
  margin: 0 0 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  list-style: none; }
  .top-links--icon-links li {
    margin: 0;
    padding: 5px 0 5px 30px; }
    .top-links--icon-links li a {
      color: white;
      position: relative; }

.hide {
  display: none !important; }

.search-bar {
  width: 100%;
  min-height: 44px; }
  @media screen and (max-width: 767px) {
    .search-bar {
      margin-left: auto;
      margin-right: auto; } }
  .search-bar input {
    background: transparent;
    color: #333333; }
    .search-bar input::placeholder {
      color: #333333;
      opacity: 0.7; }
  .search-bar span.input-group-btn {
    position: absolute;
    top: 0;
    right: 40px; }
  .search-bar .btn, .search-bar .btn--secondary {
    background: transparent;
    color: #333333;
    height: 100%;
    padding: 0.84rem;
    line-height: 1rem; }

#SearchContainer .input-group .btn, #SearchContainer .input-group .btn--secondary {
  height: 44px;
  width: 44px; }
#SearchContainer #search-input {
  color: black;
  background: white; }
  #SearchContainer #search-input::placeholder {
    color: black; }
  #SearchContainer #search-input .input-group .btn, #SearchContainer #search-input .input-group .btn--secondary {
    background: black;
    outline: 1px solid black; }
  #SearchContainer #search-input .fa-search:before {
    color: white; }

.site-header__logo {
  font-size: 18px; }

.white--match .flow-homepage div:first-child .homepage-sections-wrapper {
  padding-top: 0; }

@media screen and (max-width: 767px) {
  .cart-item-count-header--total:before {
    content: '';
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-right: 0.5rem;
    display: inline-block;
    background-color: #6a6a6a;
    position: absolute;
    right: -12px; }

  .site-header__cart-indicator {
    top: -6px;
    background: #6a6a6a;
    color: white;
    padding: 2px;
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    left: 18px;
    text-align: center;
    line-height: 14px; } }
/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.site-nav, .site-nav--mobile {
  cursor: default;
  margin: 0 0 15px 0; }
  .site-nav li, .site-nav--mobile li {
    margin: 0;
    display: block; }
  .site-nav > li, .site-nav--mobile > li {
    position: relative;
    display: inline-block; }

.top-links a,
.top-links a:visited,
.site-header__logo-link,
.site-header__logo-link:visited,
.site-header .wetheme-dropdown button {
  color: white; }

.top-links a:hover,
.top-links a:active,
.site-header__logo-link:hover,
.site-header__logo-link:active,
.site-header .wetheme-dropdown button:hover {
  color: #767676; }

.top-links .top-links--icon-links a:hover,
.top-links .top-links--icon-links a:active,
.top-links .top-links--icon-links a,
.top-links--icon-links select {
  color: white;
  transition: color 0.3 ease-in; }
  .top-links .top-links--icon-links a:hover:hover,
  .top-links .top-links--icon-links a:active:hover,
  .top-links .top-links--icon-links a:hover,
  .top-links--icon-links select:hover {
    color: #767676; }

/*================ Home to hamburger and cart that toggle drawers ================*/
.site-nav--mobile i {
  color: white;
  transition: color 0.3 ease-in; }
  .site-nav--mobile i:hover {
    color: #767676; }
.text-right .site-nav--mobile {
  margin: 0 -15px 0 0; }

.icon-arrow-down:after {
  content: "";
  border-style: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%); }

.icon-arrow-left:after {
  content: "";
  border-style: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(135deg) translateY(-50%);
  transform: rotate(135deg) translateY(-50%); }

.icon-arrow-up:after {
  content: "";
  border-style: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(225deg) translateY(-50%);
  transform: rotate(225deg) translateY(-50%); }

.icon-arrow-right:after {
  content: "";
  border-style: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(315deg) translateY(-50%);
  transform: rotate(315deg) translateY(-50%); }

.overlay-header-wrapper .site-nav--mobile i {
  color: white;
  transition: color 0.3 ease-in; }
.overlay-header-wrapper .site-header__cart-indicator {
  color: white; }

.site-nav__link {
  display: block;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  padding: 15px; }
  .site-nav__link .icon-arrow-down {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    top: 4px;
    right: 4px;
    bottom: 0;
    left: 0; }
  .site-nav--active > .site-nav__link {
    font-weight: bold; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

/*================ Carosel dots =============*/
.owl-theme .owl-dots .owl-dot span {
  border: 1px solid rgba(51, 51, 51, 0.5);
  background: transparent; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #333333; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: block !important;
  visibility: hidden;
  position: absolute;
  top: 40px;
  left: 0;
  margin: 0;
  z-index: 5;
  opacity: 0; }
  @media (min-width: 769px) {
    .site-nav__dropdown {
      top: 100%; } }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    visibility: visible;
    transition: 0.3s opacity ease-in-out;
    opacity: 1;
    display: block;
    transition: all ease 300ms; }
  .site-nav__dropdown .site-nav--has-dropdown {
    position: relative; }

@media (min-width: 769px) {
  .site-header {
    position: relative; } }
.site-nav__subdropdown {
  visibility: hidden;
  transform: translateX(-12px);
  position: absolute;
  opacity: 0;
  left: 100%;
  top: 0;
  margin: 0;
  z-index: 6;
  background: white; }
  .nav-hover .nav-hover .site-nav__subdropdown {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    transition: all ease 300ms;
    min-width: 150px; }

.site-nav__dropdown li {
  width: 100%; }

.header--supporting-text {
  font-size: 12px;
  padding-left: 5px;
  vertical-align: middle; }

.sticky-header-wrapper .header--supporting-text {
  display: none; }

.mega-menu-wrapper .site-nav--dropdown {
  width: 100%; }
.mega-menu-wrapper .h4, .mega-menu-wrapper .h5 {
  color: white; }
.mega-menu-wrapper .mega-menu {
  position: static; }
  .mega-menu-wrapper .mega-menu .site-nav__dropdown {
    transform: translateY(-12px);
    padding: 0 30px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    width: 100%; }
    .supports-no-touch .site-nav--has-dropdown:hover .mega-menu-wrapper .mega-menu .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .mega-menu-wrapper .mega-menu .site-nav__dropdown, .nav-focus + .mega-menu-wrapper .mega-menu .site-nav__dropdown {
      visibility: visible;
      transform: translateY(0);
      transition: all ease 300ms; }
.mega-menu-wrapper .mega-menu.force-open .site-nav__dropdown {
  transform: translateY(0); }
.mega-menu-wrapper .container {
  max-width: 1660px;
  margin: 0 auto; }
.mega-menu-wrapper .inner .mega-menu--image {
  text-align: center; }
  .mega-menu-wrapper .inner .mega-menu--image .h4 {
    margin-bottom: 0; }
  .mega-menu-wrapper .inner .mega-menu--image p {
    text-align: center;
    padding: 3px; }
  .mega-menu-wrapper .inner .mega-menu--image img {
    display: inline-block; }
  .mega-menu-wrapper .inner .mega-menu--image > div {
    margin-bottom: 8px; }
.mega-menu-wrapper .mega-menu-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .mega-menu-wrapper .mega-menu-block li a {
    background: none;
    padding: 0 !important;
    display: block; }
.mega-menu-wrapper .dropdown-submenu {
  display: flex;
  float: none;
  padding: 0 2%;
  margin: 2% 0;
  border-right: 1px solid white; }
  .mega-menu-wrapper .dropdown-submenu.large--one-fifth {
    width: 20%; }
  .mega-menu-wrapper .dropdown-submenu.large--one-quarter {
    width: 25%; }
  .mega-menu-wrapper .dropdown-submenu.large--one-third {
    width: 33.33%; }
  .mega-menu-wrapper .dropdown-submenu:last-child {
    border-right: none; }
.mega-menu-wrapper .inner {
  width: 100%; }
  .mega-menu-wrapper .inner .h4, .mega-menu-wrapper .inner .h5 {
    padding: 7px; }
  .mega-menu-wrapper .inner .h5:hover {
    background: #0d0d0d; }
  .mega-menu-wrapper .inner li {
    padding: 7px;
    line-height: 15px; }
.mega-menu-wrapper .menu-link {
  margin-left: 0; }
  .mega-menu-wrapper .menu-link li:hover a {
    color: #767676; }

@keyframes FadeIn {
  0% {
    opacity: 0; }

  50% {
    opacity: 0.5; }

  100% {
    opacity: 1; } }

.open .image-wrap:nth-child(1) {
  animation: FadeIn 0.4s linear;
  animation-delay: 0.2s;
  animation-fill-mode: both; }

.open .image-wrap:nth-child(2) {
  animation: FadeIn 0.4s linear;
  animation-delay: .4s;
  animation-fill-mode: both; }

.open .image-wrap:nth-child(3) {
  animation: FadeIn 0.4s linear;
  animation-delay: .6s;
  animation-fill-mode: both; }

.open .image-wrap:nth-child(4) {
  animation: FadeIn 0.4s linear;
  animation-delay: .8s;
  animation-fill-mode: both; }

.open .image-wrap:nth-child(5) {
  animation: FadeIn 0.4s linear;
  animation-delay: 1s;
  animation-fill-mode: both; }

.mega-menu .dropdown-menu {
  -webkit-transition: 0.3s opacity ease-in-out;
  -o-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out; }

.force-open > .site-nav__dropdown {
  visibility: visible;
  opacity: 1;
  transition: all ease 300ms; }
  .sticky-header-wrapper .force-open > .site-nav__dropdown {
    visibility: hidden;
    opacity: 0; }
  .sticky-header-wrapper.sticky .force-open > .site-nav__dropdown {
    visibility: visible;
    opacity: 1; }

.sticky-header-transformed {
  transform: none; }

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

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

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
#NavDrawer img {
  margin: 15px auto; }

.mobile-nav {
  margin: 0 0 0 -15px;
  font-size: 18px; }
  .mobile-nav li {
    margin-bottom: 0; }

.mobile-nav__search {
  padding: 15px; }
  .mobile-nav__search .search-bar {
    margin-bottom: 0; }
  .mobile-nav__search input {
    border-color: rgba(255, 255, 255, 0.1);
    color: white; }
    .mobile-nav__search input::placeholder {
      color: white;
      opacity: 0.8; }

.mobile-nav .mobile-nav__search input {
  border-color: rgba(255, 255, 255, 0.1);
  color: white; }
  .mobile-nav .mobile-nav__search input::placeholder {
    color: white;
    opacity: 0.8; }

.mobile-nav.with-logo .search-bar {
  padding-top: 0; }

.mobile-nav__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: black; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__item button,
.mobile-nav__toggle button {
  color: white;
  padding: 15px 30px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__item button:hover,
  .mobile-nav__item button:active,
  .mobile-nav__item button:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: #9f9f9f; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__item button:active,
  .mobile-nav__item button:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: black; }

.mobile-nav-header {
  color: white; }

.mobile-nav .search-bar {
  padding: 30px 15px 0;
  width: 100%; }

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

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

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

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

.mobile-menu-currency-button, .mobile-menu-language-button {
  width: 100%;
  text-align: left; }
  .mobile-menu-currency-button .text, .mobile-menu-language-button .text {
    font-size: 18px; }
  .mobile-menu-currency-button .icon, .mobile-menu-language-button .icon {
    float: right; }

.mobile-menu-currency-link, .mobile-menu-language-link {
  display: block;
  width: 100%;
  text-align: left; }

.mobile-menu-currency-selected:after, .mobile-menu-language-selected:after {
  content: "\f00c";
  float: right;
  padding-top: 5px;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist, .mobile-nav--expanded + form .mobile-nav__sublist {
    visibility: visible;
    max-height: 3000px;
    width: 100%;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .mobile-nav__sublist .mobile-nav__item {
    padding-left: 2em; }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 30px;
    font-size: 16px; }

.mobile-nav-bar-wrapper {
  padding: 10px 0;
  background: black; }

.mobile-nav-bar-wrapper .site-nav__link {
  padding: 0;
  position: relative; }

.mobile-nav-bar-wrapper .site-nav--mobile,
.mobile-nav-bar-wrapper .text-right .site-nav--mobile {
  margin: 0; }

.mobile-nav-bar-wrapper .mobile-grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.mobile-nav-bar-wrapper .mobile-grid--table .grid__item {
  display: table-cell;
  float: none;
  vertical-align: middle; }

.mobile-nav-bar-wrapper .mobile-grid--table .grid__item {
  padding: 0; }

#NavDrawer {
  background-color: black;
  border-right: none; }

#NavDrawer .hidden {
  display: none; }

.mobile-nav-header {
  margin: 0;
  padding: 15px;
  opacity: 0.5;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  display: inline-block; }

/*============================================================================
  #Drawers
==============================================================================*/
#ShopNowTitle {
  display: none; }

#DrawerOverlay {
  position: fixed;
  z-index: 1499;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: black;
  opacity: 0;
  transition: width 0s linear 0.6s, opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0s; }
  .js-drawer-open #DrawerOverlay {
    width: 100%;
    opacity: 0.4;
    transition: opacity 0.4s, width 0s linear 0s; }

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  bottom: 0;
  max-width: 90%;
  z-index: 1500;
  color: black;
  background-color: white;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s; }
  .drawer h3 a, .drawer .h3 a {
    color: black; }
  .drawer#NavDrawer a, .drawer#NavDrawer i {
    color: white; }
    .drawer#NavDrawer a:hover, .drawer#NavDrawer a:focus, .drawer#NavDrawer i:hover, .drawer#NavDrawer i:focus {
      color: #9f9f9f; }
  .drawer#NavDrawer input {
    background: black; }
  .drawer > * {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s; }
    .js-drawer-open .drawer > * {
      transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s;
      opacity: 1; }

.drawer--left {
  width: 767px;
  left: -767px;
  border-right: 1px solid black; }
  .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--right {
  width: 767px;
  right: -767px;
  border-left: 1px solid black; }
  .drawer--right .drawer__title {
    text-align: left; }
  .drawer--right .sitewide--title-wrapper:not(.header-style--ignore-all) .page--title:after {
    margin: unset; }
  .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; }
  .drawer--right a, .drawer--right i {
    color: black; }
    .drawer--right a:hover, .drawer--right i:hover {
      opacity: 0.8; }
  .drawer--right textarea {
    border-color: rgba(0, 0, 0, 0.5);
    color: black;
    background-color: white; }
  .drawer--right .sitewide--title-wrapper {
    margin-bottom: 20px; }
  .drawer--right .drawer__header {
    margin-top: 0;
    position: relative; }
  .drawer--right .account-section--btn {
    border: none;
    background: black;
    color: white; }
    .drawer--right .account-section--btn:hover, .drawer--right .account-section--btn:focus {
      opacity: 0.8; }
  .drawer--right input,
  .drawer--right textarea {
    border-color: rgba(0, 0, 0, 0.5);
    background: none;
    color: black; }
    .drawer--right input::placeholder,
    .drawer--right textarea::placeholder {
      color: black;
      opacity: 0.8; }
  .drawer--right .search-drawer > .input-group {
    padding: 30px 0; }
  .drawer--right .search-drawer .btn, .drawer--right .search-drawer .btn--secondary {
    background: transparent; }
    .drawer--right .search-drawer .btn:hover, .drawer--right .search-drawer .btn--secondary:hover {
      opacity: 0.5; }
  .drawer--right .search-drawer i {
    color: black; }
    .drawer--right .search-drawer i:hover {
      opacity: 1; }
  .drawer--right .indiv-search-listing-grid {
    padding-bottom: 10px; }
  .drawer--right #search-results {
    text-align: left;
    padding-left: 30px; }
    .drawer--right #search-results hr {
      margin: 5px 0; }
    .drawer--right #search-results h2, .drawer--right #search-results .h2 {
      font-size: 14px;
      margin: 20px 0;
      opacity: 0.5;
      text-transform: uppercase;
      font-weight: bold; }
  .drawer--right #search-show-more {
    margin: 30px 0; }
  .drawer--right .drawer--cart {
    background: white;
    color: black; }
    .drawer--right .drawer--cart .product-details-wrapper {
      text-align: center; }
      .drawer--right .drawer--cart .product-details-wrapper .product-description.readmore.closed:after {
        background-image: linear-gradient(transparent 65%, white 100%); }
      .drawer--right .drawer--cart .product-details-wrapper .read-less-link:after, .drawer--right .drawer--cart .product-details-wrapper .read-less-link:before, .drawer--right .drawer--cart .product-details-wrapper .read-more-link:after, .drawer--right .drawer--cart .product-details-wrapper .read-more-link:before {
        border-color: rgba(0, 0, 0, 0.5); }
    @media screen and (min-width: 769px) {
      .drawer--right .drawer--cart .paymentButtonsWrapper #AddToCart {
        margin-right: 0; } }
    .drawer--right .drawer--cart a {
      -webkit-transition: all 0.15s ease-in-out;
      -moz-transition: all 0.15s ease-in-out;
      -o-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out;
      color: black; }
    .drawer--right .drawer--cart #CartContainer form .ajaxcart__footer {
      background: white; }
    .drawer--right .drawer--cart .ajaxcart__qty-adjust,
    .drawer--right .drawer--cart input.ajaxcart__qty-num {
      color: black; }
    .drawer--right .drawer--cart .ajaxcart__discounts {
      color: #f26c4f; }

.is-moved-by-drawer {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s; }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(767px);
    -webkit-transform: translateX(767px);
    transform: translateX(767px);
    opacity: 0.1; }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-767px);
    -webkit-transform: translateX(-767px);
    transform: translateX(-767px);
    opacity: 0.1; }

.drawer__header {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
  position: relative;
  z-index: 100; }

.drawer__title {
  margin: 30px 0 0 30px;
  text-align: left; }

.drawer__close button {
  position: absolute; }

/*============================================================================
  #Shopify Product Reviews
==============================================================================*/
#shopify-product-reviews {
  margin-bottom: 0 !important; }

#shopify-product-reviews .spr-container {
  border: none; }

#shopify-product-reviews--wrapper {
  padding: 50px 0; }

#shopify-product-reviews h2.spr-header-title, #shopify-product-reviews .spr-header-title.h2 {
  display: none; }

.spr-icon-star:before,
.spr-badge-caption {
  color: #333333; }

.spr-review-content-body {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #333333 !important;
  font-family: Roboto, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-text-size-adjust: 100% !important;
  text-align: left !important; }

.spr-review, .spr-form {
  border-color: rgba(51, 51, 51, 0.5) !important; }

.spr-form-review-rating {
  text-align: center; }

.spr-form-review-rating a {
  float: none !important; }

.spr-badge-caption {
  display: inline-block; }

.spr-badge[data-rating="0.0"] {
  display: none; }

.reveal .hidden {
  display: block !important;
  visibility: visible !important; }

.reveal {
  position: relative; }
  .reveal .hidden {
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden; }
    .reveal .hidden .lazyload-wrapper {
      background-color: white;
      height: 100%; }

.grid-view-item--desc-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 15px;
  padding-bottom: 15px; }

.shop-now-wrapper {
  position: relative;
  width: 100%;
  z-index: 1000;
  left: 0;
  visibility: hidden; }

.grid-view-item:focus-within .shop-now-wrapper,
.shop-now-wrapper:focus-within {
  visibility: visible; }

.grid-view-item:focus-within .shop-now-button,
.grid-view-item:focus-within .shop-now-button-onboarding {
  top: -80px;
  opacity: 1; }

.grid-view-item:hover .shop-now-wrapper {
  visibility: visible; }
.grid-view-item:hover .shop-now-button,
.grid-view-item:hover .shop-now-button-onboarding {
  top: -80px;
  opacity: 1; }

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  background-color: black;
  padding: 30px 0;
  color: white; }

.links-footer a {
  margin: 0.2em 0; }

.footer--has-dropdown-title {
  margin-bottom: 0.25em;
  display: inline-block; }

.links-footer .footer--level-2 {
  padding-left: 10px;
  font-size: 95%; }

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

.footer-alignment--center .newsletter-footer form {
  display: inline-block; }

.footer-description {
  padding-bottom: 20px; }

.image-footer svg {
  height: 200px; }

input.footer-email-input::-webkit-input-placeholder {
  color: white; }

.site-footer .localization-selector:nth-child(2n) {
  margin: 0 0 0 15px; }
.site-footer .localization-selector:first-of-type {
  margin-left: 0; }
.site-footer .payment-icons-enabled .localization-selector {
  margin-bottom: 15px; }

/*============================================================================
  #Product and Collection Grids
==============================================================================*/
.grid__image {
  display: block;
  margin: 0 auto; }
  .grid__image img {
    margin: 0 auto; }

.spr-badge {
  margin-top: 5px; }

.grid__item .grid-view-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain"; }

.collection-main-body .grid__image img {
  max-height: 700px; }

.products--match-height .grid__item .grid__image {
  height: 250px;
  text-align: center; }

.products--match-height .grid__item .grid-view-item .lazyload-wrapper {
  height: 100%; }

.products--match-height #recently-viewed-products .grid__image {
  height: 300px;
  text-align: center; }

@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .products--match-height .grid__item.large--one-half .grid__image {
    height: 500px; }

  .products--match-height .grid__item.large--one-third .grid__image {
    height: 400px; }

  .products--match-height .grid__item.large--one-quarter .grid__image {
    height: 300px; }

  .products--match-height .grid__item.large--one-fifth .grid__image {
    height: 200px; } }
@media screen and (min-width: 1080px) {
  .products--match-height .grid__item.large--one-half .grid__image {
    height: 500px; }

  .products--match-height .grid__item.large--one-third .grid__image {
    height: 400px; }

  .products--match-height .grid__item.large--one-quarter .grid__image {
    height: 300px; }

  .products--match-height .grid__item.large--one-fifth .grid__image {
    height: 200px; } }
/*============================================================================
  # Filters
==============================================================================*/
.filter--active {
  font-weight: bold; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin: 15px 0;
  font-size: 0.75em; }
  .breadcrumb a, .breadcrumb span {
    display: inline-block;
    padding: 0 7px 0 0;
    margin-right: 7px; }
    .breadcrumb a:first-child, .breadcrumb span:first-child {
      padding-left: 0; }

/*============================================================================
  #Product Page
==============================================================================*/
.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

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

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

.product-single__medias a, .product-single__medias img {
  display: block;
  margin: 0 auto; }
.product-single__medias li {
  margin-bottom: 30px; }
.product-single__medias .product-single__media__thumbnail {
  cursor: pointer; }
.product-single__medias [data-image-zoom-enable="true"] .media-wrapper {
  cursor: crosshair; }
.product-single__medias.product-single__fullsize {
  display: flex;
  flex-direction: column; }
  .product-single__medias.product-single__fullsize .product-single__media {
    position: relative;
    margin-bottom: 20px;
    order: 1; }
    .product-single__medias.product-single__fullsize .product-single__media.product-single__media--first {
      order: 0; }
  .product-single__medias.product-single__fullsize [data-image-zoom-enable="false"] .product-single__media__thumbnail {
    cursor: initial; }
  .product-single__medias.product-single__fullsize .media-wrapper {
    display: none; }
  .product-single__medias.product-single__fullsize .product-single__media--loaded .product-single__media__thumbnail {
    display: none; }
  .product-single__medias.product-single__fullsize .product-single__media--loaded .media-wrapper {
    display: block; }
  .product-single__medias.product-single__fullsize .product-single__media--loaded > .button-wrap {
    display: none; }
.product-single__medias.product-single__thumbnails:not(.owl-carousel) .product-single__media > .button-wrap button {
  display: none; }
.product-single__medias.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 16px 16px; }
.product-single__medias:not(.product-single__thumbnails--below), .product-single__medias.owl-carousel {
  padding-top: 0 !important;
  text-align: left; }
.product-single__medias.product-single__thumbnails:not(.owl-carousel) {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-top: auto; }
  .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--below .product-single__media {
    width: 25%;
    padding: 0;
    order: 2;
    box-sizing: border-box;
    margin: 0; }
    .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--below .product-single__media img {
      padding-left: 7.5px;
      padding-right: 7.5px;
      padding-bottom: 15px; }
    .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--below .product-single__media.product-single__media--selected .media-wrapper {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0; }
  .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--left {
    flex-direction: column; }
    .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--left .product-single__media {
      width: 16.6666%;
      margin: 0 0 2% 0; }
      .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--left .product-single__media.product-single__media--selected .media-wrapper {
        position: absolute;
        right: 0;
        width: calc(83.3333% - 30px);
        top: 0; }
  .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--right {
    flex-direction: column;
    align-items: flex-end; }
    .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--right .product-single__media {
      width: 16.6666%;
      margin: 0 0 2% 0; }
      .product-single__medias.product-single__thumbnails:not(.owl-carousel).product-single__thumbnails--right .product-single__media.product-single__media--selected .media-wrapper {
        position: absolute;
        left: 0;
        width: calc(83.3333% - 30px);
        top: 0; }
.product-single__medias.owl-carousel .product-single__thumbnail-wrapper {
  float: none;
  width: 100%; }
.product-single__medias .media-wrapper {
  display: none; }
.product-single__medias.product-single__thumbnails .product-single__media--selected .media-wrapper {
  display: block; }
.product-single__medias.owl-carousel .product-single__media--loaded .product-single__thumbnail {
  display: none; }
.product-single__medias.owl-carousel .product-single__media--loaded .media-wrapper {
  display: block; }
.product-single__medias.owl-carousel .product-single__media--loaded > .button-wrap {
  display: none; }
.product-single__medias .product-single__media__thumbnail {
  position: relative; }
.product-single__medias .product-single__media__emblem {
  position: absolute;
  right: 5px;
  top: 5px;
  min-width: 20px;
  min-height: 20px;
  width: 25%;
  padding-bottom: 25%;
  background-color: white;
  color: #333333; }
  .product-single__medias .product-single__media__emblem svg {
    position: absolute;
    width: 100%;
    height: 100%; }
.product-single__medias.product-single__fullsize .product-single__media__emblem, .product-single__medias.owl-carousel .product-single__media__emblem {
  display: none; }
.product-single__medias .product-single__media__icon {
  display: none; }
.product-single__medias.owl-carousel .product-single__media__icon, .product-single__medias.product-single__fullsize .product-single__media__icon {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  transform: translate3d(-50%, -50%, 0);
  height: 62px;
  width: 62px;
  z-index: 1;
  background-color: white;
  color: #333333; }
  .product-single__medias.owl-carousel .product-single__media__icon:hover, .product-single__medias.product-single__fullsize .product-single__media__icon:hover {
    color: rgba(51, 51, 51, 0.8); }
.product-single__medias.owl-carousel .product-single__media--loaded .product-single__media__icon {
  display: none; }
.product-single__medias .product-single__media:not(.product-single__media--active) [data-media-type="external_video"] iframe {
  pointer-events: none; }

a:nth-child(2n) .product-single__thumbnail {
  animation-delay: 0.4s;
  border: red; }

a:nth-child(3n) .product-single__thumbnail {
  animation-delay: 0.6s;
  border: red; }

a:nth-child(4n) .product-single__thumbnail {
  animation-delay: 0.8s;
  border: red; }

a:nth-child(5n) .product-single__thumbnail {
  animation-delay: 1s;
  border: red; }

a:nth-child(6n) .product-single__thumbnail {
  animation-delay: 1.2s;
  border: red; }

a:nth-child(7n) .product-single__thumbnail {
  animation-delay: 1.4s;
  border: red; }

a:nth-child(8n) .product-single__thumbnail {
  animation-delay: 1.6s;
  border: red; }

a:nth-child(9n) .product-single__thumbnail {
  animation-delay: 1.8s;
  border: red; }

a:nth-child(10n) .product-single__thumbnail {
  animation-delay: 2s;
  border: red; }

a:nth-child(11n) .product-single__thumbnail {
  animation-delay: 2.2s;
  border: red; }

a:nth-child(12n) .product-single__thumbnail {
  animation-delay: 2.4s;
  border: red; }

a:nth-child(13n) .product-single__thumbnail {
  animation-delay: 2.6s;
  border: red; }

a:nth-child(14n) .product-single__thumbnail {
  animation-delay: 2.8s;
  border: red; }

a:nth-child(15n) .product-single__thumbnail {
  animation-delay: 3s;
  border: red; }

a:nth-child(16n) .product-single__thumbnail {
  animation-delay: 3.2s;
  border: red; }

a:nth-child(17n) .product-single__thumbnail {
  animation-delay: 3.4s;
  border: red; }

a:nth-child(18n) .product-single__thumbnail {
  animation-delay: 3.6s;
  border: red; }

a:nth-child(19n) .product-single__thumbnail {
  animation-delay: 3.8s;
  border: red; }

a:nth-child(20n) .product-single__thumbnail {
  animation-delay: 4s;
  border: red; }

a:nth-child(21n) .product-single__thumbnail {
  animation-delay: 4.2s;
  border: red; }

a:nth-child(22n) .product-single__thumbnail {
  animation-delay: 4.4s;
  border: red; }

a:nth-child(23n) .product-single__thumbnail {
  animation-delay: 4.6s;
  border: red; }

a:nth-child(24n) .product-single__thumbnail {
  animation-delay: 4.8s;
  border: red; }

a:nth-child(25n) .product-single__thumbnail {
  animation-delay: 5s;
  border: red; }

a:nth-child(26n) .product-single__thumbnail {
  animation-delay: 5.2s;
  border: red; }

a:nth-child(27n) .product-single__thumbnail {
  animation-delay: 5.4s;
  border: red; }

a:nth-child(28n) .product-single__thumbnail {
  animation-delay: 5.6s;
  border: red; }

a:nth-child(29n) .product-single__thumbnail {
  animation-delay: 5.8s;
  border: red; }

a:nth-child(30n) .product-single__thumbnail {
  animation-delay: 6s;
  border: red; }

a:nth-child(31n) .product-single__thumbnail {
  animation-delay: 6.2s;
  border: red; }

a:nth-child(32n) .product-single__thumbnail {
  animation-delay: 6.4s;
  border: red; }

a:nth-child(33n) .product-single__thumbnail {
  animation-delay: 6.6s;
  border: red; }

a:nth-child(34n) .product-single__thumbnail {
  animation-delay: 6.8s;
  border: red; }

a:nth-child(35n) .product-single__thumbnail {
  animation-delay: 7s;
  border: red; }

a:nth-child(36n) .product-single__thumbnail {
  animation-delay: 7.2s;
  border: red; }

a:nth-child(37n) .product-single__thumbnail {
  animation-delay: 7.4s;
  border: red; }

a:nth-child(38n) .product-single__thumbnail {
  animation-delay: 7.6s;
  border: red; }

a:nth-child(39n) .product-single__thumbnail {
  animation-delay: 7.8s;
  border: red; }

a:nth-child(40n) .product-single__thumbnail {
  animation-delay: 8s;
  border: red; }

a:nth-child(41n) .product-single__thumbnail {
  animation-delay: 8.2s;
  border: red; }

a:nth-child(42n) .product-single__thumbnail {
  animation-delay: 8.4s;
  border: red; }

a:nth-child(43n) .product-single__thumbnail {
  animation-delay: 8.6s;
  border: red; }

a:nth-child(44n) .product-single__thumbnail {
  animation-delay: 8.8s;
  border: red; }

a:nth-child(45n) .product-single__thumbnail {
  animation-delay: 9s;
  border: red; }

a:nth-child(46n) .product-single__thumbnail {
  animation-delay: 9.2s;
  border: red; }

a:nth-child(47n) .product-single__thumbnail {
  animation-delay: 9.4s;
  border: red; }

a:nth-child(48n) .product-single__thumbnail {
  animation-delay: 9.6s;
  border: red; }

a:nth-child(49n) .product-single__thumbnail {
  animation-delay: 9.8s;
  border: red; }

a:nth-child(50n) .product-single__thumbnail {
  animation-delay: 10s;
  border: red; }

a:nth-child(51n) .product-single__thumbnail {
  animation-delay: 10.2s;
  border: red; }

a:nth-child(52n) .product-single__thumbnail {
  animation-delay: 10.4s;
  border: red; }

a:nth-child(53n) .product-single__thumbnail {
  animation-delay: 10.6s;
  border: red; }

a:nth-child(54n) .product-single__thumbnail {
  animation-delay: 10.8s;
  border: red; }

a:nth-child(55n) .product-single__thumbnail {
  animation-delay: 11s;
  border: red; }

a:nth-child(56n) .product-single__thumbnail {
  animation-delay: 11.2s;
  border: red; }

a:nth-child(57n) .product-single__thumbnail {
  animation-delay: 11.4s;
  border: red; }

a:nth-child(58n) .product-single__thumbnail {
  animation-delay: 11.6s;
  border: red; }

a:nth-child(59n) .product-single__thumbnail {
  animation-delay: 11.8s;
  border: red; }

a:nth-child(60n) .product-single__thumbnail {
  animation-delay: 12s;
  border: red; }

a:nth-child(61n) .product-single__thumbnail {
  animation-delay: 12.2s;
  border: red; }

a:nth-child(62n) .product-single__thumbnail {
  animation-delay: 12.4s;
  border: red; }

a:nth-child(63n) .product-single__thumbnail {
  animation-delay: 12.6s;
  border: red; }

a:nth-child(64n) .product-single__thumbnail {
  animation-delay: 12.8s;
  border: red; }

a:nth-child(65n) .product-single__thumbnail {
  animation-delay: 13s;
  border: red; }

a:nth-child(66n) .product-single__thumbnail {
  animation-delay: 13.2s;
  border: red; }

a:nth-child(67n) .product-single__thumbnail {
  animation-delay: 13.4s;
  border: red; }

a:nth-child(68n) .product-single__thumbnail {
  animation-delay: 13.6s;
  border: red; }

a:nth-child(69n) .product-single__thumbnail {
  animation-delay: 13.8s;
  border: red; }

a:nth-child(70n) .product-single__thumbnail {
  animation-delay: 14s;
  border: red; }

a:nth-child(71n) .product-single__thumbnail {
  animation-delay: 14.2s;
  border: red; }

a:nth-child(72n) .product-single__thumbnail {
  animation-delay: 14.4s;
  border: red; }

a:nth-child(73n) .product-single__thumbnail {
  animation-delay: 14.6s;
  border: red; }

a:nth-child(74n) .product-single__thumbnail {
  animation-delay: 14.8s;
  border: red; }

a:nth-child(75n) .product-single__thumbnail {
  animation-delay: 15s;
  border: red; }

a:nth-child(76n) .product-single__thumbnail {
  animation-delay: 15.2s;
  border: red; }

a:nth-child(77n) .product-single__thumbnail {
  animation-delay: 15.4s;
  border: red; }

a:nth-child(78n) .product-single__thumbnail {
  animation-delay: 15.6s;
  border: red; }

a:nth-child(79n) .product-single__thumbnail {
  animation-delay: 15.8s;
  border: red; }

a:nth-child(80n) .product-single__thumbnail {
  animation-delay: 16s;
  border: red; }

a:nth-child(81n) .product-single__thumbnail {
  animation-delay: 16.2s;
  border: red; }

a:nth-child(82n) .product-single__thumbnail {
  animation-delay: 16.4s;
  border: red; }

a:nth-child(83n) .product-single__thumbnail {
  animation-delay: 16.6s;
  border: red; }

a:nth-child(84n) .product-single__thumbnail {
  animation-delay: 16.8s;
  border: red; }

a:nth-child(85n) .product-single__thumbnail {
  animation-delay: 17s;
  border: red; }

a:nth-child(86n) .product-single__thumbnail {
  animation-delay: 17.2s;
  border: red; }

a:nth-child(87n) .product-single__thumbnail {
  animation-delay: 17.4s;
  border: red; }

a:nth-child(88n) .product-single__thumbnail {
  animation-delay: 17.6s;
  border: red; }

a:nth-child(89n) .product-single__thumbnail {
  animation-delay: 17.8s;
  border: red; }

a:nth-child(90n) .product-single__thumbnail {
  animation-delay: 18s;
  border: red; }

a:nth-child(91n) .product-single__thumbnail {
  animation-delay: 18.2s;
  border: red; }

a:nth-child(92n) .product-single__thumbnail {
  animation-delay: 18.4s;
  border: red; }

a:nth-child(93n) .product-single__thumbnail {
  animation-delay: 18.6s;
  border: red; }

a:nth-child(94n) .product-single__thumbnail {
  animation-delay: 18.8s;
  border: red; }

a:nth-child(95n) .product-single__thumbnail {
  animation-delay: 19s;
  border: red; }

a:nth-child(96n) .product-single__thumbnail {
  animation-delay: 19.2s;
  border: red; }

a:nth-child(97n) .product-single__thumbnail {
  animation-delay: 19.4s;
  border: red; }

a:nth-child(98n) .product-single__thumbnail {
  animation-delay: 19.6s;
  border: red; }

a:nth-child(99n) .product-single__thumbnail {
  animation-delay: 19.8s;
  border: red; }

a:nth-child(100n) .product-single__thumbnail {
  animation-delay: 20s;
  border: red; }

.product-single__media {
  margin: 0 auto;
  min-height: 1px;
  width: 100%;
  height: 100%; }
  .product-single__media template {
    display: block; }
  .product-single__media iframe,
  .product-single__media model-viewer,
  .product-single__media .shopify-model-viewer-ui,
  .product-single__media > video,
  .product-single__media .media-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%; }
  .product-single__media .shopify-model-viewer-ui model-viewer {
    border-top: solid transparent 1px; }
  .product-single__media iframe,
  .product-single__media .media-video,
  .product-single__media model-viewer,
  .product-single__media .shopify-model-viewer-ui,
  .product-single__media .media-item,
  .product-single__media .plyr,
  .product-single__media .plyr__video-wrapper {
    height: 100%; }
  .product-single__media .plyr--video {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333333;
    outline: none; }
    .product-single__media .plyr--video input[type=range]::-webkit-slider-thumb {
      box-shadow: 2px 0 0 0 rgba(255, 255, 255, 0.9); }
    .product-single__media .plyr--video input[type=range]::-webkit-slider-runnable-track {
      background-image: linear-gradient(to right, currentColor var(--value, 0%), rgba(51, 51, 51, 0.6) var(--value, 0%)); }
  .product-single__media .plyr--video .plyr__control--overlaid {
    border-radius: 0;
    padding: 0; }
    .product-single__media .plyr--video .plyr__control--overlaid svg {
      left: 0;
      border: 1px solid rgba(51, 51, 51, 0.05);
      padding: 5px 0px;
      width: 62px;
      height: 62px; }
    .product-single__media .plyr--video .plyr__control--overlaid:hover {
      color: rgba(51, 51, 51, 0.7); }
  .product-single__media .plyr--video .plyr__video-wrapper, .product-single__media .plyr--video .plyr__poster {
    background-color: transparent; }
  .product-single__media .media-wrapper video {
    width: 100%; }
  .product-single__media .shopify-model-viewer-ui__button[hidden] {
    display: none; }
  .product-single__media .button-wrap {
    display: block; }
  .product-single__media .product-single__view-in-space {
    width: 100%;
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    background: rgba(51, 51, 51, 0.08);
    color: #333333; }
    .product-single__media .product-single__view-in-space[data-shopify-xr-hidden] {
      visibility: hidden; }
      @media screen and (min-width: 1112px) {
        .product-single__media .product-single__view-in-space[data-shopify-xr-hidden] {
          display: none; } }
  .product-single__media .product-single__media__wrapper {
    position: relative;
    width: 100%; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .product-single__media .product-single__media__wrapper {
        /* IE10+ specific styles go here */
        padding-top: 0 !important; } }
    .product-single__media .product-single__media__wrapper .plyr {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      max-width: 100%; }
  .product-single__media:last-child {
    margin-bottom: 0; }

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background-color: white;
  border-color: rgba(51, 51, 51, 0.05); }
.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #333333; }
  .shopify-model-viewer-ui .shopify-model-viewer-ui__button:hover, .shopify-model-viewer-ui .shopify-model-viewer-ui__button:focus {
    color: rgba(51, 51, 51, 0.55); }
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  background-color: white;
  border-color: rgba(51, 51, 51, 0.05); }
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-color: rgba(51, 51, 51, 0.05); }
.shopify-model-viewer-ui model-viewer:not(.disabled) + .controls-overlay {
  visibility: hidden; }
  .shopify-model-viewer-ui model-viewer:not(.disabled) + .controls-overlay .controls-area {
    visibility: visible; }

.grid-image--centered {
  text-align: center;
  display: block;
  width: 100%; }

.featured-image-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none; }

.product__meta--vendor h4, .product__meta--vendor .h4,
.product__meta--sku h4,
.product__meta--sku .h4 {
  font-size: 95%;
  margin-bottom: 10px; }

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

.product__meta--tags {
  text-transform: capitalize; }

.trust-badge-container div {
  display: block;
  margin-top: 15px; }

.recently-viewed-products {
  padding: 30px 0; }
  .recently-viewed-products .grid__item {
    padding: 0 15px; }
  .recently-viewed-products .product-grid--title {
    display: block; }
  .recently-viewed-products .owl-carousel.owl-loaded {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .recently-viewed-products .owl-nav, .recently-viewed-products .owl-prev, .recently-viewed-products .owl-next {
    position: absolute;
    top: calc(50% - 40px); }
  .recently-viewed-products .owl-nav {
    width: 100%; }
  .recently-viewed-products .owl-prev {
    left: -35px; }
    .recently-viewed-products .owl-prev i {
      padding: 10px 5px; }
  .recently-viewed-products .owl-next {
    right: -35px; }
    .recently-viewed-products .owl-next i {
      padding: 10px 9px; }
  .recently-viewed-products .owl-item {
    width: 50%; }
    @media screen and (min-width: 600px) {
      .recently-viewed-products .owl-item {
        width: 25%; } }
  .recently-viewed-products .owl-theme .owl-nav .owl-next, .recently-viewed-products .owl-theme .owl-nav .owl-prev {
    background: #333333;
    color: white;
    border-radius: 0;
    width: 40px;
    height: 40px;
    transform: scale(0.95);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    transition-duration: 0.2s; }
  .recently-viewed-products .owl-theme .owl-nav .disabled {
    background: rgba(51, 51, 51, 0.5); }
  .recently-viewed-products .owl-theme .owl-nav .owl-next:hover, .recently-viewed-products .owl-theme .owl-nav .owl-next:focus, .recently-viewed-products .owl-theme .owl-nav .owl-next:active, .recently-viewed-products .owl-theme .owl-nav .owl-prev:hover, .recently-viewed-products .owl-theme .owl-nav .owl-prev:focus, .recently-viewed-products .owl-theme .owl-nav .owl-prev:active {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.18);
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.18); }
  .recently-viewed-products .owl-theme .owl-nav .disabled {
    opacity: 1;
    background: rgba(51, 51, 51, 0.5); }
  @media screen and (max-width: 767px) {
    .recently-viewed-products .owl-prev {
      left: -25px; }
    .recently-viewed-products .owl-next {
      right: -25px; } }

#shopify-section-product-recommendations .product-recommendations__slideshow .grid__item {
  padding: 0 15px; }
#shopify-section-product-recommendations .owl-nav, #shopify-section-product-recommendations .owl-prev, #shopify-section-product-recommendations .owl-next {
  position: absolute;
  top: calc(50% - 40px); }
#shopify-section-product-recommendations .owl-nav {
  width: 100%; }
#shopify-section-product-recommendations .owl-prev {
  left: -35px; }
  #shopify-section-product-recommendations .owl-prev i {
    padding: 10px 5px; }
#shopify-section-product-recommendations .owl-next {
  right: -35px; }
  #shopify-section-product-recommendations .owl-next i {
    padding: 10px 9px; }
#shopify-section-product-recommendations .owl-theme .owl-nav .owl-next, #shopify-section-product-recommendations .owl-theme .owl-nav .owl-prev {
  background: #333333;
  color: white;
  border-radius: 0;
  width: 40px;
  height: 40px;
  transform: scale(0.95);
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  transition-duration: 0.2s; }
@media screen and (max-width: 767px) {
  #shopify-section-product-recommendations .owl-prev {
    left: -25px; }
  #shopify-section-product-recommendations .owl-next {
    right: -25px; } }

/*============================================================================
  #Quickshop
==============================================================================*/
.shop-now-modal {
  position: fixed;
  z-index: 1200 !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: none;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4); }

.drawer__header .drawer__close button {
  background: white;
  right: 30px;
  top: 30px; }
  .drawer__header .drawer__close button:before, .drawer__header .drawer__close button:after {
    background: black; }

.drawer--show-now ul li, .drawer--show-now ol li {
  list-style-position: inside; }

#ShopNowContainer {
  margin-top: -47px; }
  #ShopNowContainer .product-meta-header .push--large--one-half {
    left: auto; }
  #ShopNowContainer .grid__item {
    width: 100%; }
  #ShopNowContainer .product-details-wrapper {
    background: none; }
  #ShopNowContainer .product-description {
    color: black; }
    #ShopNowContainer .product-description ul.tabs li {
      margin-right: 0; }
      #ShopNowContainer .product-description ul.tabs li a {
        padding: 0 10px;
        color: black; }
  #ShopNowContainer #AddToCartForm .selector-wrapper .wetheme-dropdown__wrapper {
    width: 100%; }
  #ShopNowContainer #AddToCartForm .selector-wrapper label,
  #ShopNowContainer .product-sub-label {
    color: black; }
  #ShopNowContainer .paymentButtonsWrapper #AddToCart,
  #ShopNowContainer .paymentButtonsWrapper .shopify-payment-button {
    max-width: 100%;
    margin-right: 0; }
  #ShopNowContainer select {
    color: black;
    background-color: white;
    border: 1px solid #1a1a1a;
    background-image: linear-gradient(45deg, transparent 50%, black 50%), linear-gradient(135deg, black 50%, transparent 50%), linear-gradient(to right, white, white); }
  #ShopNowContainer blockquote {
    border-left: 1px solid rgba(0, 0, 0, 0.5); }
  #ShopNowContainer th, #ShopNowContainer td {
    border-color: rgba(0, 0, 0, 0.5); }
  #ShopNowContainer #sharing {
    text-align: center; }
  #ShopNowContainer .social-sharing .sharing-button__icon svg {
    fill: black; }
  #ShopNowContainer #Quantity {
    color: black; }
  #ShopNowContainer .form-vertical select {
    display: inline-block;
    width: 100%; }
    #ShopNowContainer .form-vertical select.original-select {
      display: none; }
  #ShopNowContainer .trust-badge {
    margin: 0 auto; }
  #ShopNowContainer .swatch {
    text-align: center; }
    #ShopNowContainer .swatch .header {
      width: 100%; }
    #ShopNowContainer .swatch .swatch-items-wrapper {
      width: fit-content;
      margin: 0 auto; }
  #ShopNowContainer .owl-theme .owl-controls {
    margin-top: 0; }
  #ShopNowContainer .owl-theme .owl-dots .owl-dot span {
    background: black;
    opacity: 0.3; }
  #ShopNowContainer .owl-theme .owl-dots .owl-dot.active span, #ShopNowContainer .owl-theme .owl-dots .owl-dot:hover span {
    opacity: 1; }
  #ShopNowContainer .shopify-payment-button__more-options {
    color: black;
    width: 100%; }
    #ShopNowContainer .shopify-payment-button__more-options:hover:not([disabled]) {
      opacity: 0.8;
      text-decoration: none; }
  #ShopNowContainer .quantity-selector {
    width: 100%; }
  #ShopNowContainer .nonajax-quantity-selector {
    display: inline-block; }
  #ShopNowContainer .js-qty__adjust, #ShopNowContainer .ajaxcart__qty-adjust,
  #ShopNowContainer .ajaxcart__qty-adjust {
    color: black; }
    #ShopNowContainer .js-qty__adjust:hover, #ShopNowContainer .ajaxcart__qty-adjust:hover, #ShopNowContainer .js-qty__adjust:focus, #ShopNowContainer .ajaxcart__qty-adjust:focus,
    #ShopNowContainer .ajaxcart__qty-adjust:hover,
    #ShopNowContainer .ajaxcart__qty-adjust:focus {
      opacity: 1; }
  #ShopNowContainer .js-qty-wrapper {
    text-align: center; }
    #ShopNowContainer .js-qty-wrapper .js-qty, #ShopNowContainer .js-qty-wrapper .ajaxcart__qty {
      display: inline-block; }
  @media screen and (min-width: 769px) {
    #ShopNowContainer .product-details-wrapper form {
      width: 50%;
      margin: 0px auto; } }
  @media screen and (min-width: 1200px) {
    #ShopNowContainer .paymentButtonsWrapper .shopify-payment-button,
    #ShopNowContainer .paymentButtonsWrapper #AddToCart {
      width: 50%; }
    #ShopNowContainer .paymentButtonsWrapper {
      display: flex;
      display: -webkit-flex;
      display: -ms-flexbox;
      align-items: flex-start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start; }
    #ShopNowContainer .paymentButtonsWrapper {
      display: inherit; } }

/*============================================================================
  Page
==============================================================================*/
.sidebar-section:not(:first-of-type):not(.sidebar-image) {
  border-top: 1px solid #e6e6e6;
  padding: 15px 0; }

.sidebar-section:first-of-type, .sidebar-image {
  padding-bottom: 15px; }

.sidebar-section li {
  list-style: none; }
  .sidebar-section li:first-of-type {
    margin-top: 0; }
  .sidebar-section li:last-of-type {
    margin-bottom: 0; }
.sidebar-section p, .sidebar-section h4, .sidebar-section .h4 {
  margin-bottom: 0; }
.sidebar-section.sidebar-image {
  margin-bottom: 10px; }
  .sidebar-section.sidebar-image h4, .sidebar-section.sidebar-image .h4 {
    text-align: center;
    margin-top: 15px; }

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

.note {
  border-color: rgba(51, 51, 51, 0.5); }

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

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

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

/*============================================================================
  #Cart Page
==============================================================================*/
.cart__row {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(51, 51, 51, 0.5); }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }
  .cart__row:first-of-type td:nth-child(2) {
    border-top: 1px solid transparent; }

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

@media screen and (min-width: 768px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
#shopify-section-cart-template {
  margin-top: 30px; }
  #shopify-section-cart-template .cart--button-update,
  #shopify-section-cart-template .cart--button-checkout {
    margin-bottom: 10px; }

.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 240px;
    max-height: 240px;
    object-fit: contain;
    font-family: "object-fit: contain"; }

.cart__subtotal {
  margin: 0 0 0 10px;
  display: inline-block;
  min-width: 100px; }

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

.cart__remove {
  display: block;
  text-decoration: underline; }

.cart-table .cart__row .h5 {
  margin: 0;
  color: #333333; }

.order-discount--cart-list {
  margin-left: 0;
  margin-top: 5px; }
  .order-discount--cart-list li {
    list-style-type: none; }

@media screen and (min-width: 769px) {
  .grid__item .additional-checkout-buttons {
    display: flex;
    justify-content: flex-end;
    overflow: hidden; } }
.ajaxcart__row .grid, .ajaxcart__row .grid--rev, .ajaxcart__row .grid--full {
  padding: 0 30px; }

.ajaxcart__price-strikeout {
  margin-bottom: 0; }

.ajaxcart .additional-checkout-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px 30px; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
.ajaxcart__qty,
.ajaxcart__qty button,
.ajaxcart__qty input,
.js-qty,
.ajaxcart__qty,
.js-qty button,
.ajaxcart__qty button,
.js-qty input,
.ajaxcart__qty input {
  border: none; }

.ajaxcart__qty {
  display: inline-block; }

.ajaxcart__row .grid .ajaxcart__quantity-wrapper, .ajaxcart__row .grid--rev .ajaxcart__quantity-wrapper, .ajaxcart__row .grid--full .ajaxcart__quantity-wrapper,
.js-qty .grid .ajaxcart__quantity-wrapper,
.ajaxcart__qty .grid .ajaxcart__quantity-wrapper,
.js-qty .grid--rev .ajaxcart__quantity-wrapper,
.ajaxcart__qty .grid--rev .ajaxcart__quantity-wrapper,
.js-qty .grid--full .ajaxcart__quantity-wrapper,
.ajaxcart__qty .grid--full .ajaxcart__quantity-wrapper {
  padding: 10px; }

.ajaxcart__quantity-wrapper .ajaxcart__qty-adjust,
.js-qty .js-qty__adjust,
.ajaxcart__qty .js-qty__adjust,
.js-qty .ajaxcart__qty-adjust,
.ajaxcart__qty .ajaxcart__qty-adjust {
  color: #333333;
  font-size: 10px; }

/*================ Quantity Selectors ================*/
.js-qty, .ajaxcart__qty {
  position: relative;
  margin-bottom: 1em;
  max-width: 100px;
  min-width: 75px;
  overflow: visible; }
  .js-qty input, .ajaxcart__qty input {
    display: block;
    background: none;
    text-align: center;
    width: 100%;
    padding: 5px 25px;
    margin: 0; }

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

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

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0; }

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

.ajax-cart--notes {
  padding: 0 30px 30px 30px; }

.ajaxcart__product:first-child {
  border-top: none; }

.ajaxcart__product {
  position: relative; }
  .ajaxcart__product.is-removed {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .ajaxcart__product:not(:first-of-type):before {
    content: '';
    display: block;
    width: 92%;
    border-top: 1px solid black;
    opacity: 0.2;
    margin: 0 auto; }

.ajaxcart__row {
  padding-top: 15px;
  padding-bottom: 15px; }
  .ajaxcart__row .grid.display-table, .ajaxcart__row .display-table.grid--rev, .ajaxcart__row .display-table.grid--full {
    margin-left: 0; }

.ajaxcart__product-image {
  display: block;
  overflow: hidden;
  margin: 20px 0; }
  .ajaxcart__product-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    font-family: "object-fit: contain"; }

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

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

.ajaxcart__product-name,
.ajaxcart__product-meta {
  text-align: center;
  font-size: 15px;
  margin-bottom: 0;
  padding-top: 0; }

.ajaxcart__product-name {
  font-weight: 500;
  padding-top: 10px; }

.ajaxcart-item__discounts {
  margin-left: 0; }
  .ajaxcart-item__discounts li {
    list-style-type: none;
    margin: 5px 0;
    color: #f26c4f; }

.ajaxcart__quantity-wrapper {
  display: inline-block;
  width: 100%; }

.ajaxcart__footer .cart__checkout {
  margin-top: 15px;
  margin-bottom: 30px; }

.ajaxcart__footer {
  text-align: center; }

.ajaxcart__special_instructions {
  width: 100%;
  text-align: center;
  padding: 30px 0 20px;
  display: inline-block;
  margin-top: 30px; }

.ajaxcart__subtotal_header {
  width: 100%;
  display: inline-block;
  text-align: center;
  text-transform: uppercase; }

.ajaxcart__subtotal_header p {
  font-weight: 500;
  font-size: 11px;
  margin: 30px 0 0 0; }

.ajaxcart__subtotal {
  font-weight: 500;
  font-size: 26px;
  width: 100%;
  display: inline-block;
  text-align: center; }

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

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

.ajaxcart__qty-num {
  border-color: black;
  color: black; }

.ajaxcart__qty-adjust {
  color: black; }

.ajaxcart__qty--plus {
  border-color: black; }

.ajaxcart__qty--minus {
  border-color: black; }

/*============================================================================
  #Homepage
==============================================================================*/
.homepage-hero-wrapper img {
  vertical-align: middle;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover, object-position: center"; }

.homepage-hero-menu-indiv-image img {
  object-fit: contain;
  font-family: "object-fit: contain"; }

.homepage-hero-menu-wrapper {
  padding: 0 0 0 30px; }

.homepage-hero-menu ul {
  margin: 0;
  padding: 0; }

.homepage-hero-content--video {
  margin: 0 auto;
  float: none; }
  @media screen and (min-width: 767px) {
    .homepage-hero-content--video {
      padding-left: 0; } }
  .homepage-hero-content--video .homepage-hero-content-video-text-block {
    z-index: 4;
    margin-top: 0px; }
  .homepage-hero-content--video .homepage-hero-content-overlay-wrapper::before {
    z-index: 3; }
  .homepage-hero-content--video.large--one-whole.no-text {
    margin-top: -30.30303px !important;
    margin-bottom: -30.30303px; }

.homepage-hero-content--text-block {
  margin: 0 auto;
  float: none;
  text-align: center;
  padding-bottom: 30.30303px;
  padding-left: 25px;
  padding-right: 25px; }
  .homepage-hero-content--text-block h2:last-child, .homepage-hero-content--text-block .h2:last-child,
  .homepage-hero-content--text-block p:last-child {
    margin-bottom: 0; }

.homepage-video-play-button {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease; }
  @media screen and (min-width: 767px) {
    .homepage-video-play-button {
      width: 80px;
      height: 80px;
      margin: 0 auto; } }
  .homepage-sections-wrapper--light .homepage-video-play-button {
    background: #f1f2f3; }
    .homepage-sections-wrapper--light .homepage-video-play-button .homepage-video-play-button-inner {
      border-color: transparent transparent transparent #414141; }
    .homepage-sections-wrapper--light .homepage-video-play-button:hover {
      background: white; }
  .homepage-sections-wrapper--dark .homepage-video-play-button {
    background: #242424; }
    .homepage-sections-wrapper--dark .homepage-video-play-button .homepage-video-play-button-inner {
      border-color: transparent transparent transparent white; }
    .homepage-sections-wrapper--dark .homepage-video-play-button:hover {
      background: white; }
  .homepage-sections-wrapper--accent .homepage-video-play-button {
    background: #c1c1c2; }
    .homepage-sections-wrapper--accent .homepage-video-play-button .homepage-video-play-button-inner {
      border-color: transparent transparent transparent #414141; }
    .homepage-sections-wrapper--accent .homepage-video-play-button:hover {
      background: #cececf; }
  .homepage-sections-wrapper--white .homepage-video-play-button {
    background: white; }
    .homepage-sections-wrapper--white .homepage-video-play-button .homepage-video-play-button-inner {
      border-color: transparent transparent transparent #414141; }
    .homepage-sections-wrapper--white .homepage-video-play-button:hover {
      background: #404040; }

.homepage-video-play-button-inner {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  margin-left: -10%;
  transition: all 0.25s ease; }
  @media screen and (min-width: 767px) {
    .homepage-video-play-button-inner {
      border-width: 12px 0 12px 24px; } }

.homepage-video-play-button:hover .homepage-video-play-button-inner {
  border-color: transparent transparent transparent white; }

.homepage-hero-content-image-text-block, .homepage-hero-content-video-text-block {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  text-align: center;
  padding: 0 30px; }

.homepage-hero-content-video-text-block {
  padding: 0; }

.homepage-hero-content-link-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4; }

.homepage-hero-content-image-text-block h2, .homepage-hero-content-image-text-block .h2,
.homepage-hero-content-video-text-block h2,
.homepage-hero-content-video-text-block .h2 {
  font-size: 50px;
  margin-bottom: 10px; }

@media screen and (max-width: 767px) {
  .homepage-hero-content-video-text-block h2, .homepage-hero-content-video-text-block .h2 {
    font-size: 26px;
    margin-bottom: 10px; } }
.homepage-hero-content-image-text-block p, .homepage-hero-content-video-text-block p {
  margin-bottom: 20px; }

.homepage-hero-content-video-text-block p {
  font-size: 20px; }

.video-hero-wrapper {
  position: relative; }

.hero-video {
  padding: 0 !important; }
  @media screen and (min-width: 768px) {
    .hero-video.desktop-height-450 {
      height: 450px; }
    .hero-video.desktop-height-550 {
      height: 550px; }
    .hero-video.desktop-height-650 {
      height: 650px; }
    .hero-video.desktop-height-750 {
      height: 750px; }
    .hero-video.desktop-height-fullscreen {
      height: 100vh; } }
  @media screen and (max-width: 768px) {
    .hero-video.mobile-height-250 {
      height: 250px; }
    .hero-video.mobile-height-350 {
      height: 350px; }
    .hero-video.mobile-height-450 {
      height: 450px; }
    .hero-video.mobile-height-550 {
      height: 550px; }
    .hero-video.mobile-height-fullscreen {
      height: 100vh; }
    .hero-video.mobile-height-fit .hero-video--media {
      height: 0;
      margin-bottom: 0;
      overflow: hidden;
      padding-bottom: 56.25%;
      /* 16/9 ratio */
      position: relative; }
      .hero-video.mobile-height-fit .hero-video--media iframe,
      .hero-video.mobile-height-fit .hero-video--media video {
        height: 100% !important;
        left: 0;
        position: absolute;
        top: 0;
        width: 100% !important; }
      .hero-video.mobile-height-fit .hero-video--media .plyr {
        position: unset; } }
  .hero-video .plyr--full-ui.plyr--video .plyr__control--overlaid {
    display: none; }

.hero-video-play-button {
  z-index: 99;
  pointer-events: all;
  line-height: 0;
  width: 66px;
  height: 66px; }
  .hero-video-play-button svg {
    width: 60px;
    height: 60px;
    background-color: white; }
  .hero-video-play-button:hover svg path {
    fill: rgba(51, 51, 51, 0.7); }

.hero-video--text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  pointer-events: none; }

.text-content--inner {
  width: 65%;
  padding: 60px;
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 768px) {
    .text-content--inner {
      width: 100%;
      padding: 30px; } }
  .text-content--inner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 212, 255, 0) 32%);
    margin: -150px -250px;
    pointer-events: none;
    opacity: 1;
    z-index: -1; }

.hero-video--text-content {
  display: flex;
  width: inherit; }
  .hero-video--text-content.text-align-top-left {
    justify-content: left;
    align-items: left;
    align-self: flex-start;
    text-align: left; }
  .hero-video--text-content.text-align-top-center {
    justify-content: center;
    text-align: center; }
  .hero-video--text-content.text-align-top-right {
    justify-content: flex-end;
    align-self: flex-start;
    text-align: right; }
  .hero-video--text-content.text-align-center-left {
    justify-content: left;
    align-items: center;
    text-align: left; }
  .hero-video--text-content.text-align-center {
    justify-content: center;
    align-items: center;
    text-align: center; }
  .hero-video--text-content.text-align-center-right {
    justify-content: flex-end;
    align-items: center;
    text-align: right; }
  .hero-video--text-content.text-align-bottom-left {
    justify-content: left;
    align-items: flex-start;
    align-self: flex-end;
    text-align: left; }
  .hero-video--text-content.text-align-bottom-center {
    justify-content: center;
    align-self: flex-end;
    text-align: center; }
  .hero-video--text-content.text-align-bottom-right {
    justify-content: flex-end;
    align-self: flex-end;
    text-align: right; }
  .hero-video--text-content .hero-video--text-title h1, .hero-video--text-content .hero-video--text-title .h1 {
    white-space: pre-line;
    line-height: 1.1em;
    margin-bottom: 0.25em; }
  .hero-video--text-content .hero-video--text-subtitle {
    margin-bottom: 0.5em; }
    .hero-video--text-content .hero-video--text-subtitle p {
      white-space: pre-line;
      line-height: 1.4em; }
  .hero-video--text-content div[class^="text-size-"] {
    line-height: 1rem; }
  .hero-video--text-content .text-size-12px {
    font-size: 12px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-12px {
        font-size: calc(9.6px - .4vw); } }
  .hero-video--text-content .text-size-14px {
    font-size: 14px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-14px {
        font-size: calc(11.2px - .4vw); } }
  .hero-video--text-content .text-size-16px {
    font-size: 16px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-16px {
        font-size: calc(12.8px - .4vw); } }
  .hero-video--text-content .text-size-18px {
    font-size: 18px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-18px {
        font-size: calc(14.4px - .4vw); } }
  .hero-video--text-content .text-size-20px {
    font-size: 20px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-20px {
        font-size: calc(16px - .4vw); } }
  .hero-video--text-content .text-size-22px {
    font-size: 22px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-22px {
        font-size: calc(17.6px - .4vw); } }
  .hero-video--text-content .text-size-24px {
    font-size: 24px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-24px {
        font-size: calc(19.2px - .4vw); } }
  .hero-video--text-content .text-size-26px {
    font-size: 26px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-26px {
        font-size: calc(20.8px - .4vw); } }
  .hero-video--text-content .text-size-28px {
    font-size: 28px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-28px {
        font-size: calc(22.4px - .4vw); } }
  .hero-video--text-content .text-size-30px {
    font-size: 30px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-30px {
        font-size: calc(24px - .4vw); } }
  .hero-video--text-content .text-size-32px {
    font-size: 32px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-32px {
        font-size: calc(25.6px - .4vw); } }
  .hero-video--text-content .text-size-34px {
    font-size: 34px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-34px {
        font-size: calc(27.2px - .4vw); } }
  .hero-video--text-content .text-size-36px {
    font-size: 36px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-36px {
        font-size: calc(28.8px - .4vw); } }
  .hero-video--text-content .text-size-38px {
    font-size: 38px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-38px {
        font-size: calc(30.4px - .4vw); } }
  .hero-video--text-content .text-size-40px {
    font-size: 40px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-40px {
        font-size: calc(32px - .4vw); } }
  .hero-video--text-content .text-size-42px {
    font-size: 42px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-42px {
        font-size: calc(33.6px - .4vw); } }
  .hero-video--text-content .text-size-44px {
    font-size: 44px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-44px {
        font-size: calc(35.2px - .4vw); } }
  .hero-video--text-content .text-size-46px {
    font-size: 46px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-46px {
        font-size: calc(36.8px - .4vw); } }
  .hero-video--text-content .text-size-48px {
    font-size: 48px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-48px {
        font-size: calc(38.4px - .4vw); } }
  .hero-video--text-content .text-size-50px {
    font-size: 50px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-50px {
        font-size: calc(40px - .4vw); } }
  .hero-video--text-content .text-size-52px {
    font-size: 52px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-52px {
        font-size: calc(41.6px - .4vw); } }
  .hero-video--text-content .text-size-54px {
    font-size: 54px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-54px {
        font-size: calc(43.2px - .4vw); } }
  .hero-video--text-content .text-size-56px {
    font-size: 56px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-56px {
        font-size: calc(44.8px - .4vw); } }
  .hero-video--text-content .text-size-58px {
    font-size: 58px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-58px {
        font-size: calc(46.4px - .4vw); } }
  .hero-video--text-content .text-size-60px {
    font-size: 60px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-60px {
        font-size: calc(48px - .4vw); } }
  .hero-video--text-content .text-size-62px {
    font-size: 62px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-62px {
        font-size: calc(49.6px - .4vw); } }
  .hero-video--text-content .text-size-64px {
    font-size: 64px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-64px {
        font-size: calc(51.2px - .4vw); } }
  .hero-video--text-content .text-size-66px {
    font-size: 66px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-66px {
        font-size: calc(52.8px - .4vw); } }
  .hero-video--text-content .text-size-68px {
    font-size: 68px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-68px {
        font-size: calc(54.4px - .4vw); } }
  .hero-video--text-content .text-size-70px {
    font-size: 70px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-70px {
        font-size: calc(56px - .4vw); } }
  .hero-video--text-content .text-size-72px {
    font-size: 72px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-72px {
        font-size: calc(57.6px - .4vw); } }
  .hero-video--text-content .text-size-74px {
    font-size: 74px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-74px {
        font-size: calc(59.2px - .4vw); } }
  .hero-video--text-content .text-size-76px {
    font-size: 76px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-76px {
        font-size: calc(60.8px - .4vw); } }
  .hero-video--text-content .text-size-78px {
    font-size: 78px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-78px {
        font-size: calc(62.4px - .4vw); } }
  .hero-video--text-content .text-size-80px {
    font-size: 80px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-80px {
        font-size: calc(64px - .4vw); } }
  .hero-video--text-content .text-size-82px {
    font-size: 82px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-82px {
        font-size: calc(65.6px - .4vw); } }
  .hero-video--text-content .text-size-84px {
    font-size: 84px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-84px {
        font-size: calc(67.2px - .4vw); } }
  .hero-video--text-content .text-size-86px {
    font-size: 86px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-86px {
        font-size: calc(68.8px - .4vw); } }
  .hero-video--text-content .text-size-88px {
    font-size: 88px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-88px {
        font-size: calc(70.4px - .4vw); } }
  .hero-video--text-content .text-size-90px {
    font-size: 90px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-90px {
        font-size: calc(72px - .4vw); } }
  .hero-video--text-content .text-size-92px {
    font-size: 92px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-92px {
        font-size: calc(73.6px - .4vw); } }
  .hero-video--text-content .text-size-94px {
    font-size: 94px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-94px {
        font-size: calc(75.2px - .4vw); } }
  .hero-video--text-content .text-size-96px {
    font-size: 96px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-96px {
        font-size: calc(76.8px - .4vw); } }
  .hero-video--text-content .text-size-98px {
    font-size: 98px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-98px {
        font-size: calc(78.4px - .4vw); } }
  .hero-video--text-content .text-size-100px {
    font-size: 100px; }
    @media (max-width: 768px) {
      .hero-video--text-content .text-size-100px {
        font-size: calc(80px - .4vw); } }
  .hero-video--text-content .text-shadow {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25); }

.hero-video--media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden; }
  .hero-video--media iframe,
  .hero-video--media video {
    width: 100%;
    height: 100%; }
  .hero-video--media video {
    position: relative;
    object-fit: cover;
    object-position: 50% 20%;
    font-family: "object-fit: cover"; }
  .hero-video--media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    left: -100%;
    max-width: none; }
  .hero-video--media[data-hide-controls="true"] .plyr__controls {
    opacity: 0; }
  .hero-video--media[data-hide-controls="true"] iframe {
    pointer-events: none; }

@media screen and (max-width: 767px) {
  .mobile-height-fullscreen iframe {
    width: 350%;
    left: -120%; } }

@media screen and (min-width: 768px) {
  .desktop-height-450 iframe {
    width: 100%;
    height: 300%;
    left: auto;
    top: -100%; } }

@media screen and (min-width: 900px) {
  .desktop-height-550 iframe {
    width: 100%;
    height: 300%;
    left: auto;
    top: -100%; } }

@media screen and (min-width: 1200px) {
  .desktop-height-650 iframe {
    width: 100%;
    height: 300%;
    left: auto;
    top: -100%; } }

@media screen and (min-width: 1400px) {
  .desktop-height-750 iframe {
    width: 100%;
    height: 300%;
    left: auto;
    top: -100%; } }

@media screen and (min-width: 1400px) and (min-height: 800px) {
  .desktop-height-fullscreen iframe {
    width: 100%;
    height: 301%;
    left: auto;
    top: -100%; } }
@media screen and (max-height: 800px) and (min-width: 1320px) {
  .desktop-height-fullscreen iframe {
    width: 100%;
    height: 400%;
    left: auto;
    top: -150%; } }

.flow-homepage .image-with-text-overlay-wrapper .homepage-featured-content-wrapper {
  overflow: hidden;
  height: auto; }
  @media only screen and (min-width: 768px) {
    .flow-homepage .image-with-text-overlay-wrapper .homepage-featured-content-wrapper > div[class*="homepage-content--"].kb-enabled {
      -webkit-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -ms-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -moz-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -o-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transition: 2s transform; } }
  @media only screen and (min-width: 768px) {
    .flow-homepage .image-with-text-overlay-wrapper .homepage-featured-content-wrapper > div[class*="homepage-content--"].kb-enabled.in-viewport {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      -ms-transform: translate3d(0, 0, 0) scale(1);
      -moz-transform: translate3d(0, 0, 0) scale(1);
      -o-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1); } }
@media screen and (min-width: 767px) {
  .flow-homepage .image-with-text-overlay-wrapper .size-small .homepage-featured-content-wrapper {
    height: 30vw; } }
@media screen and (min-width: 767px) {
  .flow-homepage .image-with-text-overlay-wrapper .size-medium .homepage-featured-content-wrapper {
    height: 40vw; } }
@media screen and (min-width: 767px) {
  .flow-homepage .image-with-text-overlay-wrapper .size-large .homepage-featured-content-wrapper {
    height: 50vw !important; } }

@media screen and (max-width: 767px) {
  .flow-homepage .image-with-text-wrapper .homepage-featured-content-wrapper {
    display: flex;
    flex-direction: column; }
  .flow-homepage .image-with-text-wrapper .homepage-content--image {
    order: 1;
    margin-top: 0; }
  .flow-homepage .image-with-text-wrapper .feature_row__image_wrapper {
    order: 2; }
  .flow-homepage .image-with-text-wrapper .homepage-featured-content-box-inner {
    padding: 15px; } }
@media screen and (min-width: 767px) {
  .flow-homepage .image-with-text-wrapper .homepage-content--image {
    min-height: 300px;
    display: flex; }
    .flow-homepage .image-with-text-wrapper .homepage-content--image > div,
    .flow-homepage .image-with-text-wrapper .homepage-content--image .img,
    .flow-homepage .image-with-text-wrapper .homepage-content--image .lazyload-wrapper {
      min-height: 300px;
      height: 100%;
      width: 100%; }
    .flow-homepage .image-with-text-wrapper .homepage-content--image img.lazyloaded {
      object-fit: contain; }
    .flow-homepage .image-with-text-wrapper .homepage-content--image div.lazyload, .flow-homepage .image-with-text-wrapper .homepage-content--image div.lazyloading {
      opacity: 0; }
    .flow-homepage .image-with-text-wrapper .homepage-content--image div.lazyloaded {
      opacity: 1;
      transition: opacity 2s; }
  .flow-homepage .image-with-text-wrapper .kb-enabled {
    overflow: hidden;
    height: auto; } }
  @media only screen and (min-width: 767px) and (min-width: 768px) {
    .flow-homepage .image-with-text-wrapper .kb-enabled .img {
      -webkit-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -ms-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -moz-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -o-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transition: 2s transform; } }
  @media only screen and (min-width: 767px) and (min-width: 768px) {
    .flow-homepage .image-with-text-wrapper .kb-enabled.in-viewport .img {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      -ms-transform: translate3d(0, 0, 0) scale(1);
      -moz-transform: translate3d(0, 0, 0) scale(1);
      -o-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1); } }
@media screen and (max-width: 767px) {
  .flow-homepage .image-with-text-wrapper .full-width .grid__item {
    margin-top: 0; } }

.homepage-indiv-section-wrapper .article-image-wrap,
.homepage-sections-wrapper .image-bar__item,
.homepage-sections-wrapper .image-bar .grid__item > a {
  overflow: hidden;
  height: auto;
  display: block; }

@media only screen and (min-width: 768px) {
  .homepage-indiv-section-wrapper .article-image.kb-enabled,
  .homepage-sections-wrapper .image-bar__content.kb-enabled {
    -webkit-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
    -ms-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
    -moz-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
    -o-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
    transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
    transition: 2s transform; } }
@media only screen and (min-width: 768px) {
  .homepage-indiv-section-wrapper .article-image.kb-enabled.in-viewport,
  .homepage-sections-wrapper .image-bar__content.kb-enabled.in-viewport {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    -ms-transform: translate3d(0, 0, 0) scale(1);
    -moz-transform: translate3d(0, 0, 0) scale(1);
    -o-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1); } }

@media screen and (prefers-reduced-motion: reduce) {
  .flow-homepage .image-with-text-overlay-wrapper .homepage-featured-content-wrapper > div[class*="homepage-content--"].kb-enabled,
  .article__featured-image.kb-enabled,
  .homepage-indiv-section-wrapper .article-image.kb-enabled,
  .homepage-sections-wrapper .image-bar__content.kb-enabled,
  .homepage-hero-content-overlay-wrapper.kb-enabled,
  .homepage-gallery-grid-inner.kb-enabled {
    transform: none !important;
    transition: none !important; }
    .flow-homepage .image-with-text-overlay-wrapper .homepage-featured-content-wrapper > div[class*="homepage-content--"].kb-enabled.in-viewport,
    .article__featured-image.kb-enabled.in-viewport,
    .homepage-indiv-section-wrapper .article-image.kb-enabled.in-viewport,
    .homepage-sections-wrapper .image-bar__content.kb-enabled.in-viewport,
    .homepage-hero-content-overlay-wrapper.kb-enabled.in-viewport,
    .homepage-gallery-grid-inner.kb-enabled.in-viewport {
      transform: none !important;
      transition: none !important; }

  .flow-homepage .image-with-text-wrapper .kb-enabled div:not(.parallax) .img,
  .flow-homepage .image-with-text-wrapper .kb-enabled .parallax,
  .flow-homepage .image-with-text-wrapper .kb-enabled .in-viewport {
    transform: none !important;
    transition: none !important; } }
.homepage-hero-menu ul li {
  list-style-type: none;
  margin: 0; }

.homepage-hero-menu ul li a,
.homepage-hero-menu ul li.no-link {
  display: inline-block;
  color: #333333;
  width: 100%; }

.homepage-hero-menu-indiv-image {
  margin-bottom: 10px; }

.homepage-sections--description {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -20px; }

.hero--x-small {
  height: 94px; }

.hero--small {
  height: 225px; }

.hero--medium {
  height: 357px; }

.hero--large {
  height: 488px; }

.hero--x-large {
  height: 582px; }

.homepage-hero-content-overlay-wrapper {
  overflow: hidden;
  transition: opacity 0.3s linear; }
  .homepage-hero-content-overlay-wrapper.overlay-hidden::before {
    display: none; }
  @media only screen and (min-width: 768px) {
    .homepage-hero-content-overlay-wrapper .kb-enabled {
      -webkit-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -ms-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -moz-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -o-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transition: 2s transform; } }
  @media only screen and (min-width: 768px) {
    .homepage-hero-content-overlay-wrapper .kb-enabled.in-viewport {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      -ms-transform: translate3d(0, 0, 0) scale(1);
      -moz-transform: translate3d(0, 0, 0) scale(1);
      -o-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1); } }

.homepage-hero-content-overlay-wrapper::before {
  background-color: black;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }

.homepage-hero-content-video-image-block {
  background-size: cover;
  background-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2; }

.custom-navigation a {
  -moz-transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  width: 50px;
  height: 50px;
  text-align: center;
  vertical-align: middle; }

.custom-navigation a i {
  line-height: inherit; }

.custom-navigation .flex-prev {
  left: -70px; }

.custom-navigation .flex-next {
  right: -70px; }

.flexslider .slides > li {
  margin-bottom: 0; }

.flexslider-container:hover a.flex-next {
  right: 0px; }

.flexslider-container:hover a.flex-prev {
  left: 0px; }

.homepage-hero-menu--indiv-text {
  text-align: center; }
  .homepage-hero-menu--indiv-text p {
    opacity: 0.5; }

.icon {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  width: auto; }

.icon--placeholder {
  background-color: rgba(120, 129, 136, 0.1);
  border: 1px solid rgba(120, 129, 136, 0.2);
  fill: rgba(120, 129, 136, 0.35);
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  width: 100%; }

.vjs-vimeo {
  padding-top: 0 !important;
  height: 100% !important; }

img[data-sizes="auto"] {
  display: block;
  width: 100%; }

.supports-js .animations-disabled .wow {
  visibility: visible !important; }
.supports-js .wow {
  visibility: hidden; }
.supports-js .animations-disabled .show-on-scroll {
  visibility: visible; }
.supports-js .show-on-scroll {
  visibility: hidden; }
.supports-js .fadeLazyload {
  transition: opacity 1s; }
  .supports-js .fadeLazyload.lazyload, .supports-js .fadeLazyload.lazyloading {
    opacity: 0; }
  .supports-js .fadeLazyload .lazyloaded {
    opacity: 1; }

.animations-disabled .fadeIn, .animations-disabled .fadeInUp {
  animation-name: none; }

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

.lazyload-crop-center {
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover, object-position: center"; }

.lazyload-crop-top {
  object-fit: cover;
  object-position: top;
  font-family: "object-fit: cover, object-position: top"; }

.lazyload-crop-bottom {
  object-fit: cover;
  object-position: bottom;
  font-family: "object-fit: cover, object-position: bottom"; }

.lazyload-crop-left {
  object-fit: cover;
  object-position: left;
  font-family: "object-fit: cover, object-position: left"; }

.lazyload-crop-right {
  object-fit: cover;
  object-position: right;
  font-family: "object-fit: cover, object-position: right"; }

.lazyload-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }
  .lazyload-wrapper img {
    width: 100%;
    height: 100%;
    display: block; }

.lazyload-force-height {
  overflow: hidden; }

.shown-on-scroll {
  animation-delay: 0.25s; }

.product-grid--price,
.collection-grid--title,
.collection-grid--count {
  text-align: center; }

.product-grid--title,
.collection-grid--title,
.blog-grid--title {
  font-weight: 500;
  margin-bottom: 0; }

.product-grid--title a {
  cursor: pointer; }

.product-grid--vendor-text {
  margin-bottom: 0; }

.grid-view-item {
  position: relative;
  text-align: center; }

.grid-view-item-image {
  overflow: hidden; }

.grid-view-item--desc-wrapper {
  text-align: center; }

.collection-style--grid .collection-sidebar-filter {
  display: inline-block; }

.collection-style--grid .section-header {
  margin-bottom: 30px; }

.collection-style--grid-inner {
  float: none;
  margin: 0 auto; }

.collection-none-sidebar-wrapper {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  width: 100%; }

.product-grid--price a,
.product-grid--title,
.product-grid--title a,
.product-grid--price .money {
  color: #333333; }

.product-grid--price {
  margin-bottom: 0;
  margin-top: 5px;
  text-align: center; }
  .product-grid--price s {
    margin-right: 3px; }

.sale-price {
  color: #f26c4f; }

.product-grid--vendor-text {
  margin-bottom: 5px; }

.product-grid--from-wrapper,
.product-grid--compare-price {
  text-transform: lowercase;
  font-size: 90%;
  font-weight: 500;
  margin-right: 2px; }

.product-grid--compare-price {
  text-decoration: line-through; }

h2.section-header__title, .section-header__title.h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
  display: inline-block; }

.homepage-sections--title,
.page-category--title,
.page--title,
.list-collections--title {
  font-size: 28px;
  width: 100%;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: 0px;
  text-transform: normal; }

.sitewide--title-wrapper:not(.header-style--ignore-all) {
  position: relative; }

/*============================================================================
  #Homepage Sections - Image with Text Overlay
==============================================================================*/
.shopify-section.image-with-text-overlay-wrapper .homepage-sections-wrapper {
  padding: 0;
  overflow: hidden; }

.image-with-text-overlay-wrapper .homepage-content--image:before {
  opacity: 0;
  background-color: black;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }

.image-with-text-overlay-wrapper .homepage-featured-content-box {
  background: none; }

.image-with-text-overlay-wrapper .featured-row__subtext {
  font-size: 18px; }

.image-with-text-overlay-wrapper .featured-row__subtext p,
.image-with-text-wrapper .featured-row__subtext p {
  margin-top: 15px; }

.image-with-text-overlay-wrapper .featured-row__subtext p:first-child,
.image-with-text-wrapper .featured-row__subtext p:first-child {
  margin-top: 0; }

.image-with-text-overlay-wrapper h2.homepage-sections--title, .image-with-text-overlay-wrapper .homepage-sections--title.h2 {
  margin-bottom: 0;
  font-size: 38px; }

.image-with-text-wrapper .homepage-content--image .icon--placeholder {
  border: none; }

@media only screen and (min-width: 768px) {
  .image-with-text-overlay-wrapper .sitewide--title-wrapper:not(.header-style--ignore-all):not(.header-style--ignore) {
    padding-bottom: 0;
    text-align: unset; }
    .image-with-text-overlay-wrapper .sitewide--title-wrapper:not(.header-style--ignore-all):not(.header-style--ignore) .homepage-sections--title {
      background: none;
      padding: 0; }
  .image-with-text-overlay-wrapper .sitewide--title-wrapper:before, .image-with-text-overlay-wrapper .sitewide--title-wrapper:after,
  .image-with-text-overlay-wrapper .sitewide--title-wrapper h2.homepage-sections--title:after,
  .image-with-text-overlay-wrapper .sitewide--title-wrapper .homepage-sections--title.h2:after,
  .image-with-text-overlay-wrapper .sitewide--title-wrapper h2.homepage-sections--title:before,
  .image-with-text-overlay-wrapper .sitewide--title-wrapper .homepage-sections--title.h2:before {
    display: none; } }
.image-with-text-overlay-wrapper--white h2.homepage-sections--title, .image-with-text-overlay-wrapper--white .homepage-sections--title.h2,
.image-with-text-overlay-wrapper--white .featured-row__subtext {
  color: white; }

.image-with-text-overlay-wrapper--accent h2.homepage-sections--title, .image-with-text-overlay-wrapper--accent .homepage-sections--title.h2,
.image-with-text-overlay-wrapper--accent .featured-row__subtext {
  color: #c1c1c2; }

.image-with-text-overlay-wrapper--dark h2.homepage-sections--title, .image-with-text-overlay-wrapper--dark .homepage-sections--title.h2,
.image-with-text-overlay-wrapper--dark .featured-row__subtext {
  color: #242424; }

.image-with-text-overlay-wrapper h2.homepage-sections--title, .image-with-text-overlay-wrapper .homepage-sections--title.h2 {
  margin-bottom: 0; }

@media only screen and (min-width: 768px) {
  .image-with-text-overlay-wrapper--textPosition-left .homepage-featured-content-box {
    left: 0;
    right: auto; }

  .image-with-text-overlay-wrapper--textPosition-center .homepage-featured-content-box {
    left: 25%;
    right: 25%; }

  .image-with-text-overlay-wrapper--textPosition-right .homepage-featured-content-box {
    left: auto;
    right: 0; }

  .image-with-text-overlay-wrapper--textAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner,
  .image-with-text-overlay-wrapper--textAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title,
  .image-with-text-overlay-wrapper--textAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2 {
    text-align: left; }

  .image-with-text-overlay-wrapper--textAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title:after, .image-with-text-overlay-wrapper--textAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2:after {
    margin-left: 0; }

  .image-with-text-overlay-wrapper--textAlignment-center .homepage-featured-content-box .homepage-featured-content-box-inner,
  .image-with-text-overlay-wrapper--textAlignment-center .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title,
  .image-with-text-overlay-wrapper--textAlignment-center .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2 {
    text-align: center; }

  .image-with-text-overlay-wrapper--textAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner,
  .image-with-text-overlay-wrapper--textAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title,
  .image-with-text-overlay-wrapper--textAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2 {
    text-align: right; }

  .image-with-text-overlay-wrapper--textAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title:after, .image-with-text-overlay-wrapper--textAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2:after {
    margin-right: 0; } }
/*============================================================================
  #Homepage Sections - Image and text
==============================================================================*/
@media screen and (min-width: 769px) {
  .underline-left .sitewide--title-wrapper:not(.header-style--ignore-all) .homepage-sections--title:after {
    margin-left: 0; }
  .underline-right .sitewide--title-wrapper:not(.header-style--ignore-all) .homepage-sections--title:after {
    margin-right: 0; } }
/*============================================================================
  #Homepage Sections - Slideshow
==============================================================================*/
.slideshow-wrapper--captionHorizontal-left .homepage-featured-content-box {
  left: 50px;
  right: auto; }

.slideshow-wrapper--captionHorizontal-center .homepage-featured-content-box {
  left: 25%;
  right: 25%; }

.slideshow-wrapper--captionHorizontal-right .homepage-featured-content-box {
  left: auto;
  right: 50px; }

.slideshow-wrapper--captionAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner,
.slideshow-wrapper--captionAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title,
.slideshow-wrapper--captionAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2 {
  text-align: left; }

@media screen and (min-width: 767px) {
  .slideshow-wrapper--captionAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title:after, .slideshow-wrapper--captionAlignment-left .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2:after {
    margin-left: 0; } }

.slideshow-wrapper--captionAlignment-center .homepage-featured-content-box .homepage-featured-content-box-inner,
.slideshow-wrapper--captionAlignment-center .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title,
.slideshow-wrapper--captionAlignment-center .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2 {
  text-align: center; }

.slideshow-wrapper--captionAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner,
.slideshow-wrapper--captionAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title,
.slideshow-wrapper--captionAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2 {
  text-align: right; }

.slideshow-wrapper--captionAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner h2.homepage-sections--title:after, .slideshow-wrapper--captionAlignment-right .homepage-featured-content-box .homepage-featured-content-box-inner .homepage-sections--title.h2:after {
  margin-right: 0; }

.homepage-slider-container .homepage-featured-content-box {
  width: auto;
  max-width: 50%; }
.homepage-slider-container .slideshow-title h2, .homepage-slider-container .slideshow-title .h2 {
  line-height: 1.1em; }
@media screen and (max-width: 768px) {
  .homepage-slider-container .icon--placeholder {
    min-height: 350px; } }

.mobile-dot-nav-spacing {
  margin-bottom: 30px; }

.homepage-sections--slideshow-wrapper .sitewide--title-wrapper {
  padding-bottom: 0; }
  .homepage-sections--slideshow-wrapper .sitewide--title-wrapper h2.homepage-sections--title:after, .homepage-sections--slideshow-wrapper .sitewide--title-wrapper .homepage-sections--title.h2:after {
    display: none; }

.homepage-slider-container .flex-control-paging li a {
  box-shadow: none;
  -webkit-box-shadow: none; }

@media only screen and (min-width: 768px) {
  .homepage-featured-content-box-inner.show-mobile {
    display: none; } }
@media only screen and (max-width: 767px) {
  .homepage-featured-content-box-inner.show-desktop {
    display: none; }

  .slides .homepage-sections--slideshow-wrapper .homepage-featured-content-box:not(.slideshow-mobile-image-content) {
    max-width: 100%;
    width: 100%;
    left: 0; }
    .slides .homepage-sections--slideshow-wrapper .homepage-featured-content-box:not(.slideshow-mobile-image-content) .homepage-featured-content-box-inner, .slides .homepage-sections--slideshow-wrapper .homepage-featured-content-box:not(.slideshow-mobile-image-content) h2.homepage-sections--title, .slides .homepage-sections--slideshow-wrapper .homepage-featured-content-box:not(.slideshow-mobile-image-content) .homepage-sections--title.h2 {
      text-align: center;
      width: 100%; }

  .homepage-slider-container .homepage-featured-content-box.slideshow-mobile-image-content {
    min-width: calc(100% - 40px);
    left: 0;
    margin: 20px;
    left: 0;
    right: 0; }
    .homepage-slider-container .homepage-featured-content-box.slideshow-mobile-image-content h2.homepage-sections--title, .homepage-slider-container .homepage-featured-content-box.slideshow-mobile-image-content .homepage-sections--title.h2 {
      font-size: 22px; }
    .homepage-slider-container .homepage-featured-content-box.slideshow-mobile-image-content .featured-row__subtext {
      font-size: 16px; }
    .homepage-slider-container .homepage-featured-content-box.slideshow-mobile-image-content .sitewide--title-wrapper .homepage-sections--title {
      padding-bottom: 15px;
      margin-bottom: 5px; } }
/*============================================================================
  #Homepage Sections - Text Adverts
==============================================================================*/
.text-advert-section {
  text-align: center; }
  .text-advert-section .owl-theme .owl-nav.disabled + .owl-dots {
    margin-left: 30px;
    margin-top: 0px;
    margin-bottom: 20px; }

.text-advert-section .grid__item {
  margin-top: 20px; }
  body .text-advert-section .grid__item {
    margin-bottom: 20px !important; }

.homepage-sections-wrapper--light .text-advert-section .owl-theme .owl-dots .owl-dot span {
  border: 1px solid #414141; }
.homepage-sections-wrapper--light .text-advert-section .owl-theme .owl-dots .owl-dot.active span, .homepage-sections-wrapper--light .text-advert-section .owl-theme .owl-dots .owl-dot:hover span {
  background: #414141; }

.homepage-sections-wrapper--dark .text-advert-section .owl-theme .owl-dots .owl-dot span {
  border: 1px solid white; }
.homepage-sections-wrapper--dark .text-advert-section .owl-theme .owl-dots .owl-dot.active span, .homepage-sections-wrapper--dark .text-advert-section .owl-theme .owl-dots .owl-dot:hover span {
  background: white; }

.homepage-sections-wrapper--accent .text-advert-section .owl-theme .owl-dots .owl-dot span {
  border: 1px solid #414141; }
.homepage-sections-wrapper--accent .text-advert-section .owl-theme .owl-dots .owl-dot.active span, .homepage-sections-wrapper--accent .text-advert-section .owl-theme .owl-dots .owl-dot:hover span {
  background: #414141; }

@media screen and (min-width: 769px) {
  .homepage-sections-wrapper--white .text-advert-section .grid__item {
    border-left: 1px solid rgba(51, 51, 51, 0.6); }

  .homepage-sections-wrapper--light .text-advert-section .grid__item {
    border-left: 1px solid rgba(65, 65, 65, 0.6); }

  .homepage-sections-wrapper--dark .text-advert-section .grid__item {
    border-left: 1px solid rgba(255, 255, 255, 0.6); }

  .homepage-sections-wrapper--accent .text-advert-section .grid__item {
    border-left: 1px solid rgba(65, 65, 65, 0.6); } }
.text-advert-section .grid__item:first-child {
  border-left: none; }

.text-advert-section .grid__item span {
  width: 100%;
  display: inline-block;
  padding: 0; }

.text-advert-section .grid__item span.text-advert-section--header {
  padding: 0 10px;
  margin: 0; }

.text-advert-section .grid__item span.text-advert-section--sub-header {
  padding: 0px 10px 0 10px;
  margin: 0;
  opacity: 0.6; }

.text-advert-section .grid__item a {
  display: block; }

h1.account--title, .account--title.h1 {
  font-size: 28px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 50px;
  text-align: left;
  display: block; }

h1.account--title.no-margin, .account--title.no-margin.h1 {
  margin-bottom: 0; }

#addresses .account-section--btn {
  margin-bottom: 20px; }

h4.account--sub-title, .account--sub-title.h4 {
  font-weight: 300;
  font-size: 18px; }

h5.account-customer-name, .account-customer-name.h5 {
  margin: 10px 0 5px;
  display: inline-block; }

h1.page-sections--title, .page-sections--title.h1,
h2.page-sections--title,
.page-sections--title.h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 300;
  margin: 50px 0; }

h3.homepage-blog--title, .homepage-blog--title.h3 {
  font-weight: bold;
  font-size: 23px;
  line-height: 23px;
  margin: 20px 0; }
  h3.homepage-blog--title a, .homepage-blog--title.h3 a {
    color: #333333; }

.homepage-blog--date {
  font-size: 13px;
  font-weight: 300;
  margin: 10px 0 0;
  display: inline-block; }

.homepage-featured-grid-item {
  width: 22%;
  float: left;
  position: relative; }

.homepage-collection-grid-item {
  position: relative; }

.homepage-collection-grid-image-single {
  max-width: 450px;
  max-height: 450px;
  margin: 0 auto;
  object-fit: cover;
  object-position: top;
  font-family: "object-fit: cover, object-position: top"; }

.homepage-hero-right-onboarding p {
  margin: 0px; }

.homepage-featured-products-grid {
  padding: 0 0 50px; }

.homepage-featured-products-grid--clear {
  display: inline-block; }

.homepage-hero-right-onboarding p a {
  text-decoration: underline; }

.homepage-featured-products-grid .grid__image {
  margin-bottom: 0; }

.homepage-featured-products-grid .helper-content .grid__image {
  margin-bottom: 15px; }

@media screen and (max-width: 767px) {
  .show-view-all--button {
    margin-top: 20px; } }
.homepage-featured-grid-item {
  margin-bottom: 45px; }

.homepage-featured-grid-item--width2 {
  width: 48%; }

.gutter-sizer {
  width: 4%; }

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

.homepage-hero-content-overlay-wrapper {
  position: relative; }

.homepage-hero-content-overlay-wrapper .icon--placeholder {
  height: 525px; }

.homepage-hero-content-overlay-menu-item {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.15s ease-in-out 0s;
  opacity: 0;
  background-position: center center;
  background-size: cover;
  display: block;
  z-index: 0; }

.homepage-hero-content-overlay-menu-item.active {
  opacity: 1;
  display: block;
  z-index: 1000; }

.homepage-featured-grid-item-details {
  opacity: 0;
  position: absolute;
  z-index: 1000;
  width: 100%;
  text-align: center;
  padding-top: 20px; }
  .homepage-featured-grid-item:hover .homepage-featured-grid-item-details {
    opacity: 1; }

.homepage-hero-menu ul li {
  margin-top: 20px; }

.homepage-hero-menu ul li:first-child {
  margin-top: 0; }

.homepage-hero-menu-link .h4,
.homepage-hero-menu-link p,
.no-link .h4,
.no-link p {
  margin-bottom: 0; }

.homepage-hero-menu-indiv-image {
  display: inline-block;
  width: 100%;
  text-align: left; }

.homepage-hero-menu-indiv-image--x-small {
  height: 50px; }

.homepage-hero-menu-indiv-image--small {
  height: 100px; }

.homepage-hero-menu-indiv-image--medium {
  height: 150px; }

.homepage-hero-menu-indiv-image--large {
  height: 200px; }

.homepage-hero-menu-indiv-image--x-large {
  height: 250px; }

.homepage-featured-grid-item-details a {
  color: #333333; }

.homepage-featured-grid-item-details .product-grid--price {
  opacity: 1;
  font-weight: 500; }

.homepage-featured-content-wrapper, .homepage-map-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top; }

.homepage-sections-wrapper.section__full-width {
  padding: 0;
  line-height: 0; }
  .homepage-sections-wrapper.section__full-width .feature-row__text--full-width, .homepage-sections-wrapper.section__full-width .map__text--full-width {
    line-height: 1.6; }
.homepage-sections-wrapper.full-width {
  padding: 0; }

.map-container-error {
  color: #d02e2e;
  border: solid red 1px;
  background-color: #fff6f6;
  position: absolute;
  top: 50%;
  left: 25%;
  padding: 1em;
  transform: translate(-50%, -50%); }
  .map__text--right .map-container-error {
    left: 75%; }

@media only screen and (max-width: 767px) {
  .map-container-error {
    left: 50% !important;
    top: auto;
    transform: translate(-50%, 50%); } }
.homepage-sections-wrapper--light .feature-row__text--full-width .homepage-featured-content-box, .homepage-sections-wrapper--light .map__text--full-width .homepage-map-box {
  background: #f8f8f8; }
.homepage-sections-wrapper--dark .feature-row__text--full-width .homepage-featured-content-box, .homepage-sections-wrapper--dark .map__text--full-width .homepage-map-box {
  background: #242424;
  color: white; }
.homepage-sections-wrapper--accent .feature-row__text--full-width .homepage-featured-content-box, .homepage-sections-wrapper--accent .map__text--full-width .homepage-map-box {
  background: #c1c1c2;
  color: #414141; }

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

.collection-sidebar-mobile-wrapper img.collection-page--sidebar-image {
  margin-bottom: 20px; }

.sidebar-with-description .section-header {
  padding-bottom: 20px; }

.collection-sidebar__description img {
  max-width: 100%; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .collection-sidebar__description img {
      width: 100%; } }

.homepage-featured-content-box,
.homepage-map-content-box {
  width: 50%;
  background: #f8f8f8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1; }
  @media screen and (min-width: 768px) {
    .homepage-featured-content-box.content_box--center,
    .homepage-map-content-box.content_box--center {
      right: 50%;
      left: 25%;
      text-align: center; } }
  @media screen and (max-width: 767px) {
    .feature-row__text--full-width .homepage-featured-content-box, .feature-row__text--full-width
    .homepage-map-content-box {
      margin-top: 0; } }

.homepage-map--fallback-wrap {
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .homepage-map--fallback-wrap .homepage-map--image-container.kb-enabled {
      -webkit-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -ms-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -moz-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -o-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transition: 2s transform; } }
  @media only screen and (min-width: 768px) {
    .homepage-map--fallback-wrap .homepage-map--image-container.kb-enabled.in-viewport {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      -ms-transform: translate3d(0, 0, 0) scale(1);
      -moz-transform: translate3d(0, 0, 0) scale(1);
      -o-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1); } }

.homepage-featured-content-box--large {
  width: 75%; }

@media screen and (min-width: 767px) {
  .feature-row--overlapping.full-width .feature-row__text--right .homepage-featured-content-box {
    margin-left: 30px; }
  .feature-row--overlapping.full-width .feature-row__text--left .homepage-featured-content-box {
    margin-right: 30px; } }
@media screen and (min-width: 767px) {
  .feature-row--overlapping.content-width .feature-row__text--right .homepage-featured-content-box {
    left: -30px; }
  .feature-row--overlapping.content-width .feature-row__text--left .homepage-featured-content-box {
    right: -30px; } }

.feature-row__text--right .homepage-featured-content-box,
.map__text--right .homepage-map-content-box {
  left: 0; }
  @media screen and (max-width: 768px) {
    .feature-row__text--right .homepage-featured-content-box,
    .map__text--right .homepage-map-content-box {
      margin-top: 0; } }

.feature-row__text--right .homepage-content--image,
.map__text--right .homepage-map--image {
  float: right; }

@media screen and (min-width: 767px) {
  .feature-row--no-overlapping .homepage-featured-content-wrapper {
    display: flex; } }
.feature-row--no-overlapping .feature_row__image_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.map__text--right .homepage-map--image {
  float: right; }

@media screen and (min-width: 767px) {
  .feature-row__text-alignment--left .homepage-featured-box-btn {
    float: left; }

  .feature-row__text-alignment--right .homepage-featured-box-btn {
    float: right; }

  .feature-row__text-alignment--center .homepage-featured-box-btn {
    float: none; }

  .feature-row__text-alignment--left h2.homepage-sections--title, .feature-row__text-alignment--left .homepage-sections--title.h2, .feature-row__text-alignment--left p, .feature-row__text-alignment--left a {
    text-align: left; }

  .feature-row__text-alignment--center h2.homepage-sections--title, .feature-row__text-alignment--center .homepage-sections--title.h2, .feature-row__text-alignment--center p, .feature-row__text-alignment--center a {
    text-align: center; }

  .feature-row__text-alignment--right h2.homepage-sections--title, .feature-row__text-alignment--right .homepage-sections--title.h2, .feature-row__text-alignment--right p, .feature-row__text-alignment--right a {
    text-align: right; } }
.homepage-featured-content-box-inner, .homepage-map-content-box-inner {
  padding: 30px;
  text-align: center; }

.homepage-featured-content-box-inner p, .homepage-map-content-box-inner p {
  margin-bottom: 0; }

.homepage-featured-box-btn {
  margin-top: 20px; }

.homepage-product-grid-wrapper .grid__item {
  margin-top: 0;
  margin-bottom: 45px; }

@media only screen and (max-width: 767px) {
  .homepage-product-grid-wrapper.grid-uniform {
    margin-left: -15px; } }

@media only screen and (max-width: 767px) {
  #shopify-section-rich-text .homepage-sections-wrapper .grid__item {
    margin-top: 0; } }

.homepage-featured-rich-text {
  text-align: center; }

.homepage-featured-rich-text p:last-child,
.homepage-featured-rich-text .rte {
  margin-bottom: 0; }

.homepage-featured-rich-text .featured-products-wrapper .featured-row__subtext {
  margin-bottom: 30px; }

.homepage-product-grid-wrapper .helper-content .grid__item {
  margin-top: 0; }

.homepage-content--image img {
  display: block; }

#homepage-collection-mobile .helper-section {
  width: 100%; }

/*============================================================================
  #Testimonial section
==============================================================================*/
.testimonials-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }

.testimonial--circle-images .testimonial-section--image img {
  border-radius: 50%; }

.testimonial--single-item {
  text-align: center;
  flex: 1 1 240px; }
  @media screen and (max-width: 768px) {
    .testimonial--single-item {
      margin-bottom: 30px; } }

.testimonials--star-wrapper,
.testimonials--text-wrapper {
  margin: 20px; }

.testimonial-section--image {
  text-align: center; }
  .testimonial-section--image img {
    max-width: 200px;
    min-width: 200px;
    min-height: 200px;
    max-height: 200px;
    display: inline-block;
    object-fit: cover;
    object-position: center;
    font-family: "object-fit: cover, object-position: center"; }

/*============================================================================
  #Logo bar section
==============================================================================*/
.logo-bar {
  text-align: center; }

.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 20px 20px; }

.logo-bar__item img {
  max-width: 100%; }

/*============================================================================
  #Product Page
==============================================================================*/
.product-meta-header .product__meta--vendor,
.product-meta-header .product__meta--sku {
  margin-top: 0; }

.product-page--images li {
  list-style-type: none;
  margin-bottom: 30px; }

.product-page--images li:last-child {
  margin-bottom: 0; }

.product-page--images li img {
  display: block; }

.product-page--images {
  margin: 0; }

.product-details-wrapper,
.product-description-container {
  position: relative; }
  .product-details-wrapper .product-description,
  .product-description-container .product-description {
    word-wrap: break-word;
    overflow: hidden;
    clear: both; }
    .product-details-wrapper .product-description.readmore,
    .product-description-container .product-description.readmore {
      padding-bottom: 20px; }
    .product-details-wrapper .product-description.readmore.closed,
    .product-description-container .product-description.readmore.closed {
      position: relative; }
      .product-details-wrapper .product-description.readmore.closed:after,
      .product-description-container .product-description.readmore.closed:after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(rgba(248, 248, 248, 0) 65%, #f8f8f8 100%); }
  .product-details-wrapper .read-more-link,
  .product-details-wrapper .read-less-link,
  .product-description-container .read-more-link,
  .product-description-container .read-less-link {
    font-weight: 200;
    text-transform: uppercase;
    display: table !important;
    white-space: nowrap;
    margin: 0 auto; }
    .product-details-wrapper .read-more-link:before, .product-details-wrapper .read-more-link:after,
    .product-details-wrapper .read-less-link:before,
    .product-details-wrapper .read-less-link:after,
    .product-description-container .read-more-link:before,
    .product-description-container .read-more-link:after,
    .product-description-container .read-less-link:before,
    .product-description-container .read-less-link:after {
      border-top: 1px solid #bcbcbc;
      content: '';
      display: table-cell;
      position: relative;
      top: 0.7em;
      width: 45%; }
    .product-details-wrapper .read-more-link:before,
    .product-details-wrapper .read-less-link:before,
    .product-description-container .read-more-link:before,
    .product-description-container .read-less-link:before {
      right: 1.5%; }
    .product-details-wrapper .read-more-link:after,
    .product-details-wrapper .read-less-link:after,
    .product-description-container .read-more-link:after,
    .product-description-container .read-less-link:after {
      left: 1.5%; }
    .product-details-wrapper .read-more-link i,
    .product-details-wrapper .read-less-link i,
    .product-description-container .read-more-link i,
    .product-description-container .read-less-link i {
      padding-left: 0.25em; }

.product-description-container .product-description_full-width.readmore.closed:after {
  background-image: linear-gradient(transparent 65%, white 100%); }

.product-details-wrapper {
  background: #f8f8f8;
  padding: 40px; }
  @media screen and (max-width: 767px) {
    .product-details-wrapper {
      padding: 20px 30px; } }

.paymentButtonsWrapper {
  margin-top: 20px; }

.product-page__policies {
  margin: 4px 0 28px; }

.social-sharing {
  padding-top: 30px; }
  .social-sharing h5, .social-sharing .h5 {
    text-transform: uppercase;
    font-size: 11px; }
  .social-sharing a {
    transition: all 0.15s ease-in-out 0s;
    display: inline-block; }
    .social-sharing a:first-of-type .sharing-button {
      padding-left: 0; }
    .social-sharing a:hover {
      opacity: 0.75; }
  .social-sharing .sharing-button {
    padding: 0.5em 0.75em; }
  .social-sharing .sharing-button__icon {
    fill: #333333;
    stroke: none; }
    .social-sharing .sharing-button__icon svg {
      width: 1em;
      height: 1em;
      margin-right: 0.4em;
      vertical-align: top;
      margin: 0;
      vertical-align: middle; }

.product-details-product-title {
  font-size: 18px;
  text-transform: normal;
  font-weight: 500; }

.product-details--form-wrapper {
  margin-bottom: 30px; }

.product-details--form-wrapper---below {
  margin-top: 20px; }

.product-details--form-wrapper--no-description {
  margin-bottom: 0; }

.product-description,
.product-description a,
.product__meta {
  color: #333333; }

.product__meta {
  margin-left: 0px; }
  .product__meta .grid__item {
    padding: 10px 0 10px 0; }

#AddToCartForm .selector-wrapper label,
.product-sub-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #333333;
  margin: 20px 0 10px 0;
  display: inline-block; }

#AddToCartForm .selector-wrapper {
  width: 100%; }
  #AddToCartForm .selector-wrapper .wetheme-dropdown__wrapper {
    width: 70%; }
    #AddToCartForm .selector-wrapper .wetheme-dropdown__wrapper button {
      width: 100%; }

#AddToCartForm #Quantity {
  border: none; }

#AddToCartForm .js-qty__adjust, #AddToCartForm .ajaxcart__qty-adjust {
  font-size: 10px;
  opacity: 0.5;
  padding: 0; }

#AddToCartForm .js-qty, #AddToCartForm .ajaxcart__qty {
  max-width: 85px; }

#ProductPrice {
  margin: 0;
  font-weight: 500; }

.product-details-wrapper .unit-price {
  margin-bottom: 16px; }

.unit-price {
  font-size: 12px; }

#AddToCart.disabled {
  padding: 5px 35px; }

#AddToCart:hover {
  background: #9f9f9f;
  color: #eeeeee; }

#AddToCartForm {
  margin-bottom: 0; }

.out-of-stock-form #notify-me,
.out-of-stock-form #notify-me-wrapper {
  display: none; }

.out-of-stock-form input[type="email"] {
  margin: 0; }

.out-of-stock-form.out-of-stock-form--active,
.out-of-stock-form:not(.out-of-stock-form--active) .accent-text {
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6; }

.out-of-stock-form #notify-me-wrapper {
  margin-top: 8px; }

.out-of-stock-form #notify-me-wrapper.show-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.out-of-stock-form input[type="email"] {
  min-width: 280px;
  border-color: #333333;
  padding: 8px 10px; }
  @media screen and (max-width: 1023px) {
    .out-of-stock-form input[type="email"] {
      min-width: 70%; } }
  @media screen and (max-width: 767px) {
    .out-of-stock-form input[type="email"] {
      min-width: 75%;
      font-size: 14px; } }

.out-of-stock-form form#contact_form .btn, .out-of-stock-form form#contact_form .btn--secondary {
  margin: 0 0 0 4px;
  background: black;
  color: white;
  transition: all 0.15s ease-in-out 0s; }
  @media screen and (max-width: 1023px) {
    .out-of-stock-form form#contact_form .btn, .out-of-stock-form form#contact_form .btn--secondary {
      min-width: -webkit-calc(30% - 4px);
      min-width: calc(30% - 4px);
      padding: 0; } }
  @media screen and (max-width: 767px) {
    .out-of-stock-form form#contact_form .btn, .out-of-stock-form form#contact_form .btn--secondary {
      min-width: -webkit-calc(25% - 4px);
      min-width: calc(25% - 4px);
      font-size: 14px; } }

.out-of-stock-form form#contact_form .btn:hover, .out-of-stock-form form#contact_form .btn--secondary:hover {
  background: #9f9f9f;
  color: #eeeeee; }

.blog-main--wrapper .social-sharing {
  bottom: 0px;
  opacity: 1;
  position: relative;
  right: 0px;
  text-align: left;
  margin-top: 15px; }

.blog-main--wrapper .social-sharing h5, .blog-main--wrapper .social-sharing .h5 {
  text-transform: none;
  font-size: 12px; }

.blog-main--wrapper .fa-rss {
  font-size: 14px;
  margin-left: 5px; }

#shopify-section-featured-blog .icon--placeholder {
  height: 200px; }

.product-description ul.tabs {
  padding: 0;
  margin-bottom: 20px;
  font-size: 13.3px;
  margin-left: 0; }

.product-description ul.tabs li {
  display: inline-block;
  list-style-type: none;
  margin-right: 20px; }

.product-description ul.tabs li a {
  display: block;
  padding: 0 30px 10px 0; }

.product-description ul.tabs li a:hover,
.product-description ul.tabs li a.active {
  text-decoration: underline; }

@media screen and (max-width: 767px) {
  .product-description-container .product-description {
    padding-top: 20px; } }
@media screen and (min-width: 767px) {
  .product-description-container .product-description_full-width {
    padding: 40px 0 20px; } }
.product-page-related-products {
  padding: 50px 0;
  margin-top: 0; }

.product-page-related-products .main-content {
  padding-bottom: 0; }

.mobile-product-sub-images img {
  display: block;
  margin-top: 50px; }

#ComparePrice {
  margin: 0;
  text-decoration: line-through;
  display: inline-block; }

.product-page--sale-badge {
  background-color: #f26c4f;
  color: white;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  padding: 10px 20px;
  text-transform: uppercase;
  width: 100%;
  text-align: center; }

.product-sticky-wrapper {
  position: relative; }

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

.product-single__photo-wrapper:last-child {
  padding-bottom: 0px; }

.zoom--cross-hair {
  cursor: crosshair; }

.product-page--side-thumbnails div {
  margin-bottom: 15px; }

.badge {
  transition: all 0.2s ease-in-out;
  opacity: 1; }

.sale-badge {
  background: #f26c4f;
  color: white;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  padding: 10px 20px;
  text-transform: uppercase;
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0; }

.sold-out-badge {
  background: black;
  color: white;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  padding: 10px 20px;
  text-transform: uppercase;
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0px; }

.product-page--pricing--discount {
  display: inline-block; }
  .product-page--pricing--discount span.variant-value-wrapper, .product-page--pricing--discount span.variant-percentage-wrapper {
    color: #f26c4f;
    font-weight: bold;
    padding-left: 6px;
    font-size: 15;
    display: inline-block; }

.discount--sale-color {
  color: #f26c4f; }

.hidden {
  display: none; }

/*============================================================================
  #Collection Page
==============================================================================*/
.collection-main-body .collection-main-body-inner .grid-view-item-image {
  list-style-type: none;
  margin-bottom: 15px; }

.template-collection .collection-main-body .collection-main-body-inner .grid-view-item div:nth-last-child(-n+3) {
  margin-bottom: 0; }

.breadcrumb a {
  text-decoration: underline; }

.collection-sidebar__title {
  font-size: 24px;
  margin: 30px 0; }

.collection-sidebar__title__single {
  font-size: 24px;
  margin: 0 0 30px 0; }

.collection-central-description-block {
  text-align: center; }
  .collection-central-description-block img {
    margin: 0 auto; }

.collection-central-description-block .collection-sidebar__description {
  padding-bottom: 20px; }

.collection-main-central-header {
  margin-bottom: 50px;
  width: 100%;
  display: inline-block; }

.collection-main-central-header > div {
  vertical-align: bottom; }

.collection-sidebar-wrapper .page--title {
  text-align: left; }

.collection-sidebar-filter button,
.collection-sidebar-sort button {
  width: 100%; }

.collection-sidebar-filter label,
.collection-sidebar-sort label {
  width: 100%;
  display: inline-block;
  margin: 2px 0;
  text-transform: capitalize; }

.collection-sidebar-filter ul li,
.collection-sidebar-sort ul li {
  margin-bottom: 0; }

.collection-sidebar-filter input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  background-color: rgba(51, 51, 51, 0.1);
  color: #333333;
  top: 10px;
  height: 30px;
  width: 30px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 7px;
  outline: none; }
.collection-sidebar-filter input[type='checkbox']:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "FontAwesome";
  left: 8px;
  top: 4px; }
.collection-sidebar-filter input[type='checkbox']:hover {
  background-color: rgba(51, 51, 51, 0.05); }
.collection-sidebar-filter input[type='checkbox']:checked {
  background-color: rgba(51, 51, 51, 0.05); }

.collection-sidebar-sort input[type='radio'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  background-color: rgba(51, 51, 51, 0.1);
  color: #333333;
  top: 10px;
  height: 30px;
  width: 30px;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  margin-right: 7px;
  outline: none; }
.collection-sidebar-sort input[type='radio']:checked::before {
  position: absolute;
  content: "\f111";
  font-family: "FontAwesome";
  left: 9px;
  top: 4px; }
.collection-sidebar-sort input[type='radio']:hover {
  background-color: rgba(51, 51, 51, 0.05); }
.collection-sidebar-sort input[type='radio']:checked {
  background-color: rgba(51, 51, 51, 0.05); }

.collection-sidebar-filter {
  min-width: 200px;
  display: inline-block; }

.collection-sidebar-filter, .collection-sidebar-sort {
  margin: 0 0 30px 0; }
  .collection-sidebar-filter ul, .collection-sidebar-sort ul {
    list-style: none;
    margin-left: 0; }
  .collection-sidebar-filter label.sidebar-title, .collection-sidebar-sort label.sidebar-title {
    font-weight: bold; }

.collection-sidebar-filter {
  position: relative; }
  .collection-sidebar-filter .clearall {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px; }

#shopify-section-collection-template .main-content {
  margin-top: 30px; }

@media only screen and (min-width: 768px) {
  .collection-sidebar-filter.large-hide {
    display: none; }

  .collection-page--feature-image {
    margin-bottom: 30px; }

  .collection-sidebar-filter.large-hide {
    display: none; }

  .template-collection .collection-sidebar-wrapper h1.page--title:after, .template-collection .collection-sidebar-wrapper .page--title.h1:after {
    right: auto; } }
.list-collections--more-link {
  padding-top: 30px;
  text-align: center; }

.collection-none--sort-by {
  margin-top: -20px;
  padding-bottom: 40px;
  text-align: center; }

.collection-central--sort-by {
  text-align: center;
  display: inline-block; }

.list-collections--banner-image {
  margin-bottom: 20px;
  text-align: center; }

.list-collections--indiv-collection-title {
  text-align: center; }

.template-list-collections .hidden-border {
  height: 80px; }

@media only screen and (max-width: 767px) {
  #shopify-section-list-collections-template .list-collections--title {
    text-align: center; } }
#shopify-section-list-collections-template .collection-main-body-inner .grid-view-item {
  margin-bottom: 0; }

/*============================================================================
  #Popup
==============================================================================*/
.popup .popup--description a, #slide-up .popup--description a {
  text-decoration: underline;
  color: black; }
  .popup .popup--description a:hover, #slide-up .popup--description a:hover {
    opacity: 0.8; }
.popup .btn, .popup .btn--secondary, #slide-up .btn, #slide-up .btn--secondary {
  color: white;
  background: black; }
.popup .social-media-footer ul li a, #slide-up .social-media-footer ul li a {
  color: black;
  transition: all 0.15s ease-in-out 0s; }
  .popup .social-media-footer ul li a:hover, #slide-up .social-media-footer ul li a:hover {
    opacity: 0.8; }
.popup h3, .popup .h3, #slide-up h3, #slide-up .h3 {
  margin-top: 0; }
.popup #newsletter-wrapper, #slide-up #newsletter-wrapper {
  padding: 0; }

.popup {
  background: white;
  color: black;
  padding-right: 0;
  display: flex;
  flex-wrap: nowrap;
  min-height: 50vh; }
  .popup .popup--body-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px; }
  .popup .note.form-success {
    margin-bottom: 82px;
    padding: 0;
    color: #56ad6a !important;
    background: none;
    border: none;
    font-size: 20px; }

.fancybox-desktop {
  min-width: 60vw; }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .fancybox-desktop {
      min-width: 90vw; } }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fancybox-mobile {
    min-width: 90vw; } }

.fullscreen-popup-fancybox .fancybox-skin {
  background: white;
  padding: 0 !important;
  border-radius: 0; }

.fullscreen-popup-fancybox .fancybox-inner {
  overflow: hidden !important;
  width: auto !important;
  height: auto !important; }

.popup--body .input-group-field {
  background: white;
  color: black !important;
  border: none;
  border-bottom: 1px solid black;
  padding-left: 0;
  max-width: 450px; }
.popup--body input::placeholder {
  text-align: center; }
.popup--body .input-group-field::placeholder {
  color: black !important; }
.popup--body form#contact_form .btn, .popup--body form#contact_form .btn--secondary {
  color: white;
  background: black;
  margin: 30px 0;
  transition: all 0.2s ease-in-out; }
  .popup--body form#contact_form .btn:hover, .popup--body form#contact_form .btn--secondary:hover {
    background: #1a1a1a; }
.popup--body h2, .popup--body .h2 {
  position: relative;
  display: inline-block; }
.popup--body .popup--description {
  margin-bottom: 40px; }
.popup--body .input-group {
  width: 100%; }
  .popup--body .input-group .form-control {
    width: 100%; }
.popup--body #sm-icons i {
  color: black;
  transition: opacity 0.2s ease-in-out;
  font-size: 18px; }
  .popup--body #sm-icons i:hover {
    opacity: 0.8; }

.popup--body-outer.popup--with-image {
  width: 50%; }

@media screen and (min-width: 769px) {
  .popup--no-image .popup--body,
  .popup--no-image input#Email {
    margin: 0 auto; }
  .popup--no-image .form-control span {
    text-align: center;
    display: block; }

  #fullscreen .popup--with-image input#Email::placeholder {
    text-align: left; } }
.popup--body-outer.popup--no-image {
  width: 100%; }

#slide-up {
  background: white;
  color: black;
  bottom: 20px;
  right: 20px;
  position: fixed;
  width: 500px;
  z-index: 2000;
  transition: .4s ease-in-out;
  transform: translateY(110%);
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .visible #slide-up {
    transform: translateY(0%); }
  #slide-up .popup_image {
    width: 100%;
    height: 200px; }
  #slide-up .popup--body-outer.popup--with-image {
    width: 100%; }
    #slide-up .popup--body-outer.popup--with-image .input-group-field {
      margin: 0 auto; }
  #slide-up .input-group,
  #slide-up #subscribe {
    width: 100%; }
  #slide-up .popup--close-btn {
    cursor: pointer;
    float: right;
    position: absolute;
    top: 10px;
    right: 10px; }
  #slide-up .popup--body {
    padding: 60px 30px 30px;
    text-align: center; }
  @media screen and (min-width: 769px) {
    #slide-up .popup--with-image .popup--body {
      padding: 30px; } }
  @media screen and (max-width: 768px) {
    #slide-up {
      width: 100%;
      position: fixed;
      bottom: 0;
      right: 0; } }

/*============================================================================
  Close/remove button
==============================================================================*/
.popup--close, .popup--close-btn,
.drawer__close button,
.ajaxcart__qty-remove {
  right: 15px;
  top: 15px;
  width: 35px;
  height: 35px;
  background-color: white;
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; }
  .popup--close:before, .popup--close:after, .popup--close-btn:before, .popup--close-btn:after,
  .drawer__close button:before,
  .drawer__close button:after,
  .ajaxcart__qty-remove:before,
  .ajaxcart__qty-remove:after {
    transition: transform 0.5s ease-in-out;
    position: absolute;
    content: '';
    height: 26px;
    width: 2px;
    background-color: black; }
  .popup--close:before, .popup--close-btn:before,
  .drawer__close button:before,
  .ajaxcart__qty-remove:before {
    transform: rotate(45deg); }
  .popup--close:after, .popup--close-btn:after,
  .drawer__close button:after,
  .ajaxcart__qty-remove:after {
    transform: rotate(-45deg); }
  .popup--close:hover:before, .popup--close:focus:before, .popup--close-btn:hover:before, .popup--close-btn:focus:before,
  .drawer__close button:hover:before,
  .drawer__close button:focus:before,
  .ajaxcart__qty-remove:hover:before,
  .ajaxcart__qty-remove:focus:before {
    transform: rotate(135deg); }
  .popup--close:hover:after, .popup--close:focus:after, .popup--close-btn:hover:after, .popup--close-btn:focus:after,
  .drawer__close button:hover:after,
  .drawer__close button:focus:after,
  .ajaxcart__qty-remove:hover:after,
  .ajaxcart__qty-remove:focus:after {
    transform: rotate(-135deg); }

#CartContainer button.ajaxcart__qty-remove {
  width: 18px;
  height: 18px;
  top: 35px;
  right: 35px;
  background: none;
  position: absolute; }
  #CartContainer button.ajaxcart__qty-remove:before, #CartContainer button.ajaxcart__qty-remove:after {
    background-color: black;
    height: 20px; }

/*============================================================================
  Featured Product
==============================================================================*/
.indiv-product {
  position: relative;
  text-align: center; }

.indiv-product-vendor-text {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 12px; }

.homepage-section--indiv-product-wrapper {
  padding-top: 50px;
  padding-bottom: 50px; }
  .homepage-section--indiv-product-wrapper .product-details-product-title {
    color: #333333; }
  @media screen and (max-width: 768px) {
    .homepage-section--indiv-product-wrapper {
      padding-top: 10px;
      padding-bottom: 10px; }
      .homepage-section--indiv-product-wrapper .product-images {
        margin-bottom: 30px; } }

.homepage-sections--indiv-product-slider {
  position: relative; }

.homepage-slider-container .flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: right;
  right: 30px; }
  .homepage-slider-container .flex-control-nav li {
    margin: 0 10px; }

.homepage-sections--indiv-product-slider img {
  width: 100%; }

/*============================================================================
  #Blog Page
==============================================================================*/
.blog-grid--title {
  margin: 10px 0 0 0; }

.blog-grid--date {
  opacity: 0.5; }

.blog-main--wrapper,
.page-main--wrapper,
.error-page--wrapper {
  padding-top: 30px; }

.blog-sidebar--meta {
  margin: 0;
  padding: 0; }

.blog-sidebar--meta li {
  list-style-type: none; }

.article__featured-image {
  margin-bottom: 20px;
  display: block; }

.blog-sidebar--recent-articles li,
.blog-sidebar--all-categories li {
  border-top: 1px solid #e6e6e6;
  padding-top: 15px; }

.blog-sidebar--recent-articles li:first-child,
.blog-sidebar--all-categories li:first-child {
  border-top: none; }

.blog-sidebar--recent-articles time,
.indiv-post-time {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 10px;
  display: inline-block; }

.post-time {
  display: block;
  text-align: center; }

.blog-sidebar-image {
  margin-bottom: 15px; }

.article--details {
  background: #f8f8f8;
  padding: 40px;
  position: relative;
  margin-bottom: 30px;
  border: 1px dashed #e6e6e6; }

.article--details p.article--author-date,
.article--details p.article--tags {
  margin-bottom: 0; }

.article--details p.article--tags {
  margin-top: 15px; }

.article--image-wrapper {
  padding-bottom: 20px; }

#comments .comment-wrapper {
  background: #f8f8f8;
  padding: 20px;
  margin-top: 20px; }

#comments .comment-wrapper .comment-data {
  font-size: 12px; }

/*============================================================================
  #Contact Page
==============================================================================*/
.newsletter-footer input.footer-email-submit,
form#contact_form .btn,
form#contact_form .btn--secondary, .btn--secondary,
.cart--button-checkout, .cart--button-update, .btn--full,
.article-comment--btn, .account-section--btn {
  font-weight: 400;
  margin-top: 15px;
  text-transform: none;
  padding: 10px 20px;
  font-size: 15px;
  display: inline-block; }

.account-section--btn,
.article-comment--btn {
  background: white;
  margin-top: 0;
  padding: 10px 20px;
  color: black;
  display: inline-block; }

.contact-form--submit-button .btn, .contact-form--submit-button .btn--secondary {
  float: right; }

#shopify-section-page-contact-template .contact-form, #shopify-section-page-contact-template .contact-description {
  margin-bottom: 30px; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart--button-checkout,
.cart--button-update {
  padding: 15px 35px;
  transition: all 0.15s ease-in-out 0s; }

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

.blog-grid--link {
  text-decoration: underline; }

/*============================================================================
  #Page
==============================================================================*/
.sidebar-text {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; }

.sidebar-section li {
  margin: 10px 0; }
  .sidebar-section li a {
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease; }
    .sidebar-section li a:hover, .sidebar-section li a:focus, .sidebar-section li a:active {
      opacity: 0.6; }

.sidebar-menu--level-3, .sidebar-menu--level-2 {
  margin-bottom: 0; }

/*============================================================================
  #Slideshow Sections
==============================================================================*/
.flexslider {
  margin-bottom: 0;
  overflow-x: hidden; }

.flexslider-container {
  position: relative;
  overflow: hidden; }

.flexslider-homepage {
  overflow: hidden; }

.slideshow--full-screen {
  height: 100vh; }
  .slideshow--full-screen ul.slides li {
    height: 100vh; }
    .slideshow--full-screen ul.slides li .slideshow-desktop-as-mobile-image,
    .slideshow--full-screen ul.slides li .slideshow-desktop-image {
      height: 100%; }
    @media screen and (max-width: 768px) {
      .slideshow--full-screen ul.slides li .slideshow-mobile-image {
        height: 100%; } }
  .slideshow--full-screen ul.slides img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    font-family: 'object-fit: contain, object-position: 50% 50%'; }

.slideshow--full-screen svg.icon.icon--placeholder {
  max-width: inherit;
  width: auto;
  min-width: 100%; }

@media screen and (min-width: 767px) {
  .slideshow--full-screen .flex-viewport ul.slides li .slideshow-mobile-image--ll-wrapper {
    display: none; } }
.flex-direction-nav {
  position: absolute;
  width: 100%;
  top: 55%;
  opacity: 0.5;
  z-index: 100; }

.flex-direction-nav a {
  -moz-transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
  display: block;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  text-indent: -9999px;
  bottom: 0;
  width: 40px;
  z-index: 99999;
  text-decoration: none;
  outline: 0; }

.flex-direction-nav a.flex-prev {
  background: url("slider-arrows_v-14684077936139380672.png") repeat scroll 0 0;
  margin: 0 0 0 -40px;
  left: -55px; }

.flex-direction-nav a.flex-next {
  background: url("slider-arrows_v-14684077936139380672.png") repeat scroll 0 100%;
  margin: 0 -40px 0 0;
  right: -55px; }

.flexslider-container:hover .flex-direction-nav a.flex-next {
  margin-right: 70px; }

.flexslider-container:hover .flex-direction-nav a.flex-prev {
  margin-left: 70px; }

@media screen and (max-width: 767px) {
  .homepage-section--slideshow-wrapper .homepage-featured-content-box {
    width: auto;
    left: auto !important;
    right: auto !important; }
    .homepage-section--slideshow-wrapper .homepage-featured-content-box .featured-row__subtext {
      line-height: initial; }
    .homepage-section--slideshow-wrapper .homepage-featured-content-box h2.homepage-sections--title, .homepage-section--slideshow-wrapper .homepage-featured-content-box .homepage-sections--title.h2 {
      line-height: 1em; } }

/*============================================================================
  #Collection list/Featured collections
==============================================================================*/
.featured-collections-wrapper img, .featured-collections-wrapper svg.icon.icon--placeholder {
  height: 40vh;
  object-fit: cover;
  max-width: 100% !important;
  font-family: "object-fit: cover"; }

.featured-collections-wrapper .homepage-collections-background.content-width {
  padding-top: 30px;
  padding-bottom: 30px; }
.featured-collections-wrapper .homepage-sections-wrapper.no-spacing {
  padding: 0 !important; }
.featured-collections-wrapper .collection-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center; }
  @media screen and (min-width: 769px) {
    .featured-collections-wrapper .collection-grid {
      flex-direction: row; } }
  .featured-collections-wrapper .collection-grid.keep-spacing {
    padding-left: 15px;
    padding-right: 15px; }
@media screen and (min-width: 846px) {
  .featured-collections-wrapper .collection-grid--items-1 .homepage-collection-grid-item {
    flex-basis: auto;
    width: 100%; }
  .featured-collections-wrapper .collection-grid--items-2 .homepage-collection-grid-item {
    flex-basis: auto;
    width: 50%; }
  .featured-collections-wrapper .collection-grid--items-3 .homepage-collection-grid-item {
    flex-basis: auto;
    width: 33%; }
  .featured-collections-wrapper .collection-grid--items-4 .homepage-collection-grid-item {
    flex-basis: auto;
    width: 25%; } }
@media screen and (min-width: 769px) and (max-width: 845px) {
  .featured-collections-wrapper .collection-grid .homepage-collection-grid-item {
    flex-basis: auto;
    width: 50%; } }
.featured-collections-wrapper .expand-grid .homepage-collection-grid-item {
  flex-grow: 1; }
.featured-collections-wrapper .remove-spacing .homepage-collection-grid-item {
  padding: 0; }
.featured-collections-wrapper .keep-spacing .homepage-collection-grid-item {
  padding: 15px; }
  @media screen and (max-width: 768px) {
    .featured-collections-wrapper .keep-spacing .homepage-collection-grid-item {
      padding: 15px 0 0; } }

.homepage-collection-grid-inner {
  position: relative;
  height: 40vh; }
  .homepage-collection-grid-item--below-image .homepage-collection-grid-inner {
    height: auto; }

.grid-item__content {
  padding: 10px;
  width: 100%;
  height: 100%; }

.grid-item__title h2, .grid-item__title .h2 {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: 0; }

.grid-item__subheading {
  font-size: 14px; }

.homepage-collection-grid-inner .homepage-featured-box-btn {
  color: white;
  margin-top: 8px; }

.grid-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; }

.grid-item-details--hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  transition: all 0.3s; }
  .grid-item-details--hover:hover {
    opacity: 1; }
  @media screen and (max-width: 768px) {
    .grid-item-details--hover {
      opacity: 1;
      position: absolute;
      top: 0; } }
  .grid-item-details--hover.full-height {
    height: 100%; }
  .grid-item-details--hover > a {
    width: 100%;
    height: 100%;
    display: block; }

.grid-item-details--overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center; }
  .grid-item-details--overlay.full-height {
    height: 100%; }

.homepage-sections-wrapper--white .grid-item-details--below-image .grid-item__title, .homepage-sections-wrapper--white .grid-item-details--below-image .grid-item__subheading {
  color: #333333; }
.homepage-sections-wrapper--light .grid-item-details--below-image .grid-item__title, .homepage-sections-wrapper--light .grid-item-details--below-image .grid-item__subheading {
  color: #414141; }
.homepage-sections-wrapper--accent .grid-item-details--below-image .grid-item__title, .homepage-sections-wrapper--accent .grid-item-details--below-image .grid-item__subheading {
  color: #414141; }
.homepage-sections-wrapper--dark .grid-item-details--below-image .grid-item__title, .homepage-sections-wrapper--dark .grid-item-details--below-image .grid-item__subheading {
  color: #ffffff; }

/*============================================================================
  # Gallery
==============================================================================*/
.image-gallery-wrapper .homepage-sections-wrapper.no-spacing {
  padding: 0 !important; }
.image-gallery-wrapper .homepage-gallery-background.content-width {
  padding-top: 30px;
  padding-bottom: 30px; }
.image-gallery-wrapper .homepage-sections--description {
  margin-top: 0; }
.image-gallery-wrapper .gallery-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap; }
@media screen and (min-width: 768px) {
  .image-gallery-wrapper .gallery-grid--items-1 .homepage-gallery-grid-item {
    flex-basis: auto;
    width: 100%; }
  .image-gallery-wrapper .gallery-grid--items-2 .homepage-gallery-grid-item {
    flex-basis: auto;
    width: 50%; }
  .image-gallery-wrapper .gallery-grid--items-3 .homepage-gallery-grid-item {
    flex-basis: auto;
    width: 33%; }
  .image-gallery-wrapper .gallery-grid--items-4 .homepage-gallery-grid-item {
    flex-basis: auto;
    width: 25%; } }
@media screen and (max-width: 767px) {
  .image-gallery-wrapper .gallery-grid .homepage-gallery-grid-item {
    flex-basis: auto;
    width: 50%; } }
.image-gallery-wrapper .expand-grid .homepage-gallery-grid-item {
  flex-grow: 1; }
.image-gallery-wrapper .remove-spacing .homepage-gallery-grid-item {
  padding: 0; }
@media screen and (min-width: 767px) {
  .image-gallery-wrapper .content-width.wrapper .remove-spacing {
    padding-top: 30px;
    padding-bottom: 30px; } }
.image-gallery-wrapper .keep-spacing .homepage-gallery-grid-item {
  padding-left: 15px;
  padding-right: 15px; }
  @media screen and (max-width: 768px) {
    .image-gallery-wrapper .keep-spacing .homepage-gallery-grid-item {
      padding: 15px 0 0; } }

.homepage-gallery-grid-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex; }
  .homepage-gallery-grid-inner.info-below-image {
    flex-direction: column; }
  .homepage-gallery-grid-inner .grid-image {
    overflow: hidden;
    height: 100%;
    display: flex;
    width: 100%; }
    .homepage-gallery-grid-inner .grid-image img {
      object-fit: contain; }
  .homepage-gallery-grid-inner .lazyload-wrapper {
    width: 100%; }
  .homepage-gallery-grid-inner .placeholder-wrap {
    width: 100%;
    height: 100%;
    position: relative; }
    .homepage-gallery-grid-inner .placeholder-wrap svg {
      position: absolute; }
  .homepage-gallery-grid-inner .overflow {
    overflow: hidden;
    height: 100%;
    width: 100%; }
  @media only screen and (min-width: 768px) {
    .homepage-gallery-grid-inner .kb-enabled {
      -webkit-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -ms-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -moz-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      -o-transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transform: translate3d(0.25rem, 0.12rem, 0.25rem) scale(1.06);
      transition: 2s transform; } }
  @media only screen and (min-width: 768px) {
    .homepage-gallery-grid-inner .kb-enabled.in-viewport {
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      -ms-transform: translate3d(0, 0, 0) scale(1);
      -moz-transform: translate3d(0, 0, 0) scale(1);
      -o-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1); } }

.no-user-images .placeholder-wrap svg {
  position: relative; }

/*============================================================================
  #Featured Products
==============================================================================*/
@media screen and (max-width: 767px) {
  .featured-product--grid-item:nth-last-child(-n+2) {
    margin-bottom: 0 !important; } }
/*============================================================================
  #404 Page
==============================================================================*/
.error-page--wrapper {
  text-align: center; }

.error-page--wrapper a {
  text-decoration: underline; }

/*============================================================================
  #Footer
==============================================================================*/
footer a,
footer a:active,
footer a:hover {
  color: white; }

.footer-header {
  color: white;
  font-size: 15px;
  margin-bottom: 15px;
  font-family: Roboto, sans-serif;
  font-weight: bold; }

.footer-article,
.footer-content a,
.footer-article a {
  color: white; }

.social-media-footer ul {
  margin: 0;
  padding: 0; }

.social-media-footer ul li {
  list-style-type: none;
  display: inline-block;
  margin: 0 15px 10px 0; }
  .social-media-footer ul li:last-child {
    margin-right: 0; }

.social-media-footer ul li svg {
  fill: white;
  transition: all 0.15s ease-in-out 0s;
  width: 20px;
  height: 24px;
  margin-bottom: -2px; }

.social-media-footer ul li a {
  color: white;
  transition: all 0.15s ease-in-out 0s; }

.social-media-footer ul li a:hover {
  color: white; }

.newsletter-footer input.footer-email-input,
.footer-email-input {
  border: none;
  border-bottom: 1px solid white;
  padding-left: 0px;
  background: black;
  color: white; }

.links-footer ul {
  margin: 0;
  padding: 0; }

.links-footer ul li {
  list-style-type: none; }

.bottom--footer {
  margin-top: 60px; }
  .bottom--footer a {
    font-size: 12px; }

.bottom--footer---links {
  padding: 0;
  margin: 10px 0;
  flex: 1 1 100%; }
  .bottom--footer---links li {
    list-style-type: none;
    display: inline-block;
    padding: 0 15px;
    border-left: 1px solid white;
    line-height: 1; }
    .bottom--footer---links li:first-child {
      padding-left: 0;
      border-left: none; }

.bottom--footer .localization-selector-form {
  justify-content: center;
  margin-bottom: 15px; }

@media only screen and (min-width: 768px) {
  .footer-alignment--left .bottom--footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .footer-alignment--left .bottom--footer-row .bottom--footer---links {
      flex: 1 1 auto; }
    .footer-alignment--left .bottom--footer-row .payment-icons {
      order: 2;
      flex: 1 0 60%;
      text-align: right; }
    .footer-alignment--left .bottom--footer-row .localization-selector-form {
      width: 100%;
      justify-content: flex-start;
      margin-bottom: 0; }

  .footer-alignment--left .bottom--footer-no--no-payments .localization-selector-form {
    width: auto;
    order: 1; }
  .footer-alignment--left .bottom--footer-no--no-payments .bottom--footer---links {
    flex-grow: 0; } }
.homepage-hero-content-image-text-block--mobile {
  display: none; }

.homepage-featured-box-btn,
.ajaxcart__footer .cart__checkout,
.shop-now-button, .shop-now-button-onboarding,
.homepage-hero-content-image-text-block .btn,
.homepage-hero-content-image-text-block .btn--secondary,
.homepage-hero-content-image-text-block .btn--secondary,
.onboarding--sold-out a.btn,
.onboarding--sold-out a.btn--secondary,
.hero-video--button a {
  font-weight: 400;
  background: black;
  color: white;
  transition: all 0.15s ease-in-out 0s;
  display: inline-block;
  padding: 10px 35px;
  text-transform: none;
  letter-spacing: 0px;
  font-size: 15px;
  cursor: pointer;
  pointer-events: auto; }

/* Payment Buttons */
#AddToCart,
.shopify-product-form .shopify-payment-button__button--unbranded {
  border-radius: 0;
  font-weight: 400;
  background: black;
  color: white;
  transition: all 0.15s ease-in-out 0s;
  display: inline-block;
  padding: 10px 35px;
  text-transform: none;
  letter-spacing: 1px;
  font-size: 15px;
  width: 100%;
  line-height: 1.42;
  min-height: 44px;
  margin: 0 10px 10px 0;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out, border 0.25s ease-in-out;
  word-wrap: break-word;
  white-space: normal; }
  #AddToCart:hover:not([disabled]), #AddToCart:active:not([disabled]), #AddToCart:focus:not([disabled]),
  .shopify-product-form .shopify-payment-button__button--unbranded:hover:not([disabled]),
  .shopify-product-form .shopify-payment-button__button--unbranded:active:not([disabled]),
  .shopify-product-form .shopify-payment-button__button--unbranded:focus:not([disabled]) {
    background: #9f9f9f;
    color: #eeeeee; }

#AddToCart:hover,
.shopify-product-form .shopify-payment-button__button--unbranded:hover {
  background: #9f9f9f;
  color: #eeeeee; }

.shopify-product-form .shopify-payment-button__button--branded {
  border-radius: 0; }

.shopify-product-form .shopify-payment-button__more-options {
  font-size: 15px;
  width: 70%;
  margin: 15px auto 0;
  color: #333333; }

.shopify-product-form .shopify-payment-button__button--hidden {
  display: none; }

.product-details--form-wrapper---out-of-stock .shopify-payment-button {
  display: none; }

/* Turns the Add to Cart button into a secondary CTA when the smart payment buttons are enabled */
.paymentButtonsWrapper #AddToCart.add-to-cart--secondary:not(.disabled) {
  background: black;
  color: white;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out; }
  .paymentButtonsWrapper #AddToCart.add-to-cart--secondary:not(.disabled):hover {
    background: #535353;
    color: white; }

#AddToCart.add-to-cart--secondary.disabled {
  background: black;
  color: white; }
  #AddToCart.add-to-cart--secondary.disabled:hover {
    background: black;
    color: white; }

.shopify-payment-button {
  display: inline-block; }

@media screen and (max-width: 480px) {
  .paymentButtonsWrapper #AddToCart,
  .paymentButtonsWrapper .shopify-payment-button {
    width: 100%;
    max-width: 300px; } }
@media screen and (min-width: 480px) and (max-width: 767px) {
  .paymentButtonsWrapper {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start; }

  .paymentButtonsWrapper .shopify-payment-button,
  .paymentButtonsWrapper #AddToCart {
    width: 50%; } }
@media screen and (min-width: 767px) {
  .paymentButtonsWrapper #AddToCart,
  .paymentButtonsWrapper .shopify-payment-button {
    width: 100%;
    max-width: 300px; } }
@media screen and (min-width: 1200px) {
  .paymentButtonsWrapper .shopify-payment-button,
  .paymentButtonsWrapper #AddToCart {
    width: 50%; }

  .paymentButtonsWrapper {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start; } }
.btn--load-more {
  background: black;
  color: white;
  transition: all 0.15s ease-in-out 0s; }

.btn--load-more:hover {
  background: #9f9f9f;
  color: #eeeeee; }

.homepage-featured-box-btn:hover,
.shop-now-button:hover, .shop-now-button-onboarding:hover,
.homepage-hero-content-image-text-block .btn:hover,
.homepage-hero-content-image-text-block .btn--secondary:hover,
.homepage-hero-content-image-text-block .btn--secondary:hover,
.onboarding--sold-out a.btn:hover,
.onboarding--sold-out a.btn--secondary:hover,
.cart__checkout:hover,
.hero-video--button a:hover,
.slider-section--slideshow .block-section--slideshow-0 .homepage-featured-box-btn:hover {
  background: #9f9f9f;
  color: #eeeeee; }

.onboarding--sold-out {
  margin: 20px 0; }

.footer-article a.footer-read-more-link {
  text-decoration: none; }

/*============================================================================
  #Account Pages
==============================================================================*/
#create_customer .errors ul {
  padding: 0;
  margin: 0; }

#create_customer .errors ul li {
  list-style-type: none;
  text-align: center; }

.account-addresses--return-to-account {
  text-align: right; }

.account-addresses--return-to-account i {
  margin-right: 5px; }

.homepage-featured-content-box .rte,
.homepage-map-content-box .rte {
  margin-bottom: 0; }

.account-area--order-details th, .account-area--order-details td {
  border: 1px solid rgba(51, 51, 51, 0.5);
  border-left: none;
  border-right: none; }
.account-area--order-details td {
  border-top: 1px solid rgba(51, 51, 51, 0.5); }
.account-area--order-details .order--refunded-total {
  text-decoration: line-through;
  font-size: 0.7rem; }

/*============================================================================
  #Order Pages
==============================================================================*/
.account--order---wrapper .money-styling {
  text-align: right; }

.account--order--note {
  font-size: 12px; }

.order-discount--list {
  margin-left: 0; }
  .order-discount--list li {
    list-style-type: none; }

/*============================================================================
  #Onboarding
==============================================================================*/
.placeholder-noblocks {
  text-align: center; }

/*============================================================================
  #Mobile
==============================================================================*/
.mobile-advert {
  text-align: center; }

@media only screen and (max-width: 1180px) {
  .social-sharing {
    bottom: 0px;
    margin-top: 30px;
    position: relative;
    right: 0px;
    text-align: left; } }
@media only screen and (min-width: 768px) and (max-width: 1192px) {
  .homepage-hero-advert {
    padding: 15px; }

  .homepage-hero-advert .h3 {
    font-size: 16px; } }
@media only screen and (max-width: 767px) {
  #shopify-section-footer .grid .grid__item:first-child, #shopify-section-footer .grid--rev .grid__item:first-child, #shopify-section-footer .grid--full .grid__item:first-child {
    margin-top: 0; }

  #shopify-section-footer .grid .grid__item:first-child .footer-header, #shopify-section-footer .grid--rev .grid__item:first-child .footer-header, #shopify-section-footer .grid--full .grid__item:first-child .footer-header {
    padding-top: 20px;
    border-top: none; }

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

  .template-index .overlay-header .site-nav__link, .template-collection .overlay-header .site-nav__link, .template-list-collections .overlay-header .site-nav__link, .contact-page .overlay-header .site-nav__link {
    color: white; }

  .grid__item.mobile--no-top-margin,
  .image-with-text-overlay-wrapper .homepage-featured-content-box {
    margin-top: 0; }

  .notification-bar__message p {
    padding: 0 10px; }

  .product__meta--sku,
  .product__meta--vendor {
    text-align: left; }

  .product-page--side-thumbnails {
    display: none; }

  .collection-sidebar-filter {
    max-width: 100%;
    min-width: inherit; }

  .image-with-text-overlay-wrapper .homepage-content--image::before {
    opacity: 0 !important; }

  .image-with-text-overlay-wrapper .homepage-featured-content-box {
    background: white; }

  .image-with-text-overlay-wrapper h2.homepage-sections--title, .image-with-text-overlay-wrapper .homepage-sections--title.h2 {
    font-size: 30px; }

  .image-with-text-overlay-wrapper--white h2.homepage-sections--title, .image-with-text-overlay-wrapper--white .homepage-sections--title.h2,
  .image-with-text-overlay-wrapper--white .featured-row__subtext {
    color: #333333; }

  .no-menu-mobile {
    display: none; }

  .small-hide {
    display: none; }

  .collection-sidebar-wrapper .page--title {
    text-align: center; }

  .collection-sidebar-wrapper h1.page--title:after, .collection-sidebar-wrapper .page--title.h1:after {
    right: 0; }

  .grid-view-item--desc-wrapper {
    margin-left: 0; }

  .homepage-hero-content-overlay-wrapper .icon--placeholder {
    height: 230px; }

  .homepage-hero-menu-wrapper {
    padding: 20px 0 0 0; }

  .table--responsive td::before {
    content: none !important; }

  form.cart .cart-table,
  .table--responsive th,
  .table--responsive td {
    text-align: center !important; }

  .table--responsive.cart-table .js-qty, .table--responsive.cart-table .ajaxcart__qty,
  .table--responsive.cart-table .ajaxcart__qty {
    float: none; }

  .cart-table td,
  .cart-table th {
    padding: 5px; }

  .cart-total-label {
    display: none !important; }

  .ui.sticky.bound {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important; }

  .ajaxcart__quantity-wrapper .grid__item {
    margin-top: 0px; }

  .grid__item {
    margin-top: 30px; }
    .grid__item.small__no-top-margin {
      margin-top: 0; }

  .homepage-section--video-wrapper .grid__item {
    margin-top: 0; }

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

  .homepage-hero-advert {
    margin-bottom: 0; }

  .homepage-featured-grid-item {
    width: 48%;
    float: left;
    position: relative; }

  .homepage-collection-grid-item {
    position: relative; }

  .homepage-featured-products-grid .grid__image {
    margin-bottom: 0; }

  .homepage-featured-grid-item {
    margin-bottom: 45px; }

  .homepage-featured-grid-item--width2 {
    width: 100%; }

  .gutter-sizer {
    width: 4%; }

  .homepage-featured-grid-item-details {
    position: relative;
    opacity: 1; }

  .sale-badge,
  .sold-out-badge {
    left: 0; }

  .homepage-featured-content-box:not(.slideshow-mobile-image-content), .homepage-map-content-box {
    position: relative;
    width: 100%;
    transform: none;
    text-align: center; }

  .homepage-collection-grid-item-details {
    opacity: 1; }

  .social-sharing {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    margin-top: 30px;
    text-align: left; }

  .collection-sidebar-mobile-wrapper {
    text-align: center;
    margin-bottom: 50px; }
    .collection-sidebar-mobile-wrapper img {
      margin: 0 auto;
      display: block;
      width: 100%;
      max-width: 400px; }

  .collection-main-central-header > div {
    display: table-cell;
    float: none;
    padding-bottom: 60px; }

  .collection-central-description-block--mobile {
    margin-bottom: 50px; }

  .collection-central-description-block--mobile, .collection-sidebar-mobile-wrapper {
    margin-bottom: 0; }

  .collection-style--grid-inner {
    margin-top: 30px; }

  .homepage-blog-mobile .owl-item .grid__item {
    padding-left: 0; }

  .collection-main-central-header {
    margin-bottom: 0;
    display: inline-block; }

  .collection-main-body .collection-main-body-inner div:nth-last-child(-n+3) {
    margin-bottom: 0px; }

  .collection-main-body-inner--sidebar .grid__item {
    padding: 0 10px; }

  .homepage-featured-products-grid {
    padding: 0 0 40px; }

  .table--responsive td::before {
    content: attr(data-label);
    float: left;
    font-size: 15px;
    padding-right: 10px;
    text-align: center; }

  .account-area--order-details tr {
    margin-top: 30px; }

  .account-area--order-details td:first-child {
    border: none; }

  .homepage-hero-wrapper .grid__item {
    margin-top: 0; }

  .blog-template--main,
  .blog-template--main .blog-template--individual:first-child {
    margin-top: 0; }

  #shopify-section-article-template .blog-main--wrapper {
    padding-top: 0; } }
@media only screen and (max-width: 767px) and (min-width: 767px) {
  .image-with-text-overlay-wrapper--white h2.homepage-sections--title:after, .image-with-text-overlay-wrapper--white .homepage-sections--title.h2:after {
    background: #333333; } }

@media only screen and (max-width: 992px) {
  .shop-now-wrapper {
    display: none !important; } }
@media only screen and (max-width: 480px) {
  .footer-header {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); }

  .homepage-hero-content-image-text-block {
    display: none; }

  .homepage-hero-content-image-text-block--mobile {
    display: block;
    position: relative;
    color: inherit;
    top: auto;
    transform: none;
    padding: 30px 0; }

  footer .grid__item {
    margin-top: 30px; }

  footer #contact_form .input-group {
    width: 100%; }

  .collection-main-central-header > div {
    display: inline-block;
    padding-bottom: 60px; }

  .footer-article p {
    margin-bottom: 0; } }
/* Sticky */
.is_stuck {
  z-index: 6; }

.helper-section {
  display: inline-block; }

.account--top-margin {
  margin-top: 50px; }

/**
 * Collapsible horizontal list
 */
/*ul*/
.list--horizontal, .nav .ul {
  list-style-type: none;
  padding-left: 0; }
  .list--horizontal li, .nav .ul li,
  .list--horizontal .list-item,
  .nav .ul .list-item {
    margin-right: 1.5em;
    margin-bottom: 0;
    float: left; }
    .list--horizontal li:last-child, .nav .ul li:last-child,
    .list--horizontal .list-item:last-child,
    .nav .ul .list-item:last-child {
      margin-right: 0; }

/* Clearfix */
.nav .ul {
  *zoom: 1; }
  .nav .ul:before, .nav .ul:after {
    content: " ";
    display: table; }
  .nav .ul:after {
    clear: both; }

/**
 * Set a nav item max width
 * Used with the offset helper as well
 */
/**
 * Dropdown navigation
 */
/*nav*/
.nav {
  /*ul*/ }
  .nav .ul {
    /* List style and floa stuff */
    width: 100%;
    position: relative;
    z-index: 5;
    /**
     * Parent menu item
     */ }
    .nav .ul .li {
      position: relative;
      /**
       * Sub navigation
       */
      /* Bring the sub navigation in */
      /* Optional fix for right browser edge navigation elements */ }
      .nav .ul .li .sub-ul {
        position: absolute;
        left: -9999px;
        padding-top: 0.25em;
        /* Slight Offset */
        box-shadow: 0 6px 8px -8px #000;
        /* Optional depth */
        list-style: none;
        padding-left: 0;
        /**
         * Child menu item
         */ }
        .nav .ul .li .sub-ul .sub-li {
          float: none;
          /* Child item anchor */ }
          .nav .ul .li .sub-ul .sub-li .sub-a {
            white-space: nowrap;
            /* Stop text wrapping and creating multi-line dropdown items */
            display: block;
            min-width: 160px; }
      .nav .ul .li:hover .sub-ul, .nav .ul .li.focus .sub-ul {
        left: 0; }

.shop-now-button, .shop-now-button-onboarding {
  position: absolute;
  transition: all ease-in-out 250ms;
  top: 0;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 0); }

/*
   Swatches Styles
*/
/* Label */
.swatch .header {
  font-size: 90%;
  text-transform: uppercase;
  color: #333333;
  display: inline-block;
  width: 100%;
  margin-bottom: 5px; }

/* Hide radio buttons.*/
.swatch input[type="radio"] {
  display: none; }

.swatch label {
  min-width: 35px !important;
  margin: 0;
  border: black thin solid;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
  display: block; }

.swatch-element label {
  padding: 8px 20px; }

.color.swatch-element label {
  padding: 0;
  width: 35px;
  height: 35px;
  float: left;
  border-radius: 70px;
  border: 4px solid #f8f8f8; }

.color.swatch-element input + label {
  position: relative;
  border: 1px solid black; }
  .color.swatch-element input + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 15px;
    border: 3px solid #f8f8f8; }

.color.swatch-element input:checked + label {
  border: 2px solid black;
  box-shadow: 0 7px 13px 0 rgba(86, 95, 102, 0.2); }

.swatch .color.soldout.swatch-element label {
  opacity: 0.1;
  cursor: initial; }
.swatch .color.soldout.swatch-element .tooltip {
  text-decoration: line-through;
  background-color: #333333; }
  .swatch .color.soldout.swatch-element .tooltip:after {
    border-top-color: #333333; }

.swatch input:checked + label {
  display: block;
  background: black;
  color: white;
  border-color: black;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

.swatch .swatch-element.soldout {
  text-decoration: line-through; }

.swatch .swatch-element {
  display: inline-block;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  margin: 0px 10px 10px 0;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .swatch .swatch-element {
      margin: 0px 10px 20px 0; } }
  .swatch .swatch-element.color {
    margin-right: 5px;
    margin-bottom: 5px; }
    @media only screen and (max-width: 767px) {
      .swatch .swatch-element.color {
        margin-bottom: 0; } }

/* Image with the cross in it */
.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

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

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

.swatch .swatch-element.soldout label {
  filter: alpha(opacity=40);
  /* internet explorer */
  -khtml-opacity: 0.4;
  /* khtml, old safari */
  -moz-opacity: 0.4;
  /* mozilla, netscape */
  opacity: 0.4;
  /* fx, safari, opera */
  cursor: initial;
  background-color: transparent;
  border: rgba(51, 51, 51, 0.5) 1px solid;
  color: #333333; }

/* Tooltips */
.swatch .tooltip {
  text-align: center;
  background: black;
  color: white;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  left: -31px;
  margin-bottom: 15px;
  /* Make it invisible by default */
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.swatch .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%; }

/* CSS triangle */
.swatch .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid black 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0; }

.swatch .swatch-element:hover .tooltip {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); }

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

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

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

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

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

.swatches-wrapper {
  margin-bottom: 10px; }

.swatches-wrapper label,
.swatch-title {
  font-size: 90%;
  width: 100%;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px; }

/* Newsletter Section */
.newsletter--section {
  text-align: center; }
  .newsletter--section #newsletter-wrapper {
    width: 100%; }
  .newsletter--section .newsletter_title h3, .newsletter--section .newsletter_title .h3 {
    margin: 10px;
    text-align: center; }
  .newsletter--section p {
    text-align: center; }
  .newsletter--section #newsletter_text {
    width: 72%;
    background: transparent; }
  .newsletter--section #newsletter_submit {
    color: #333333; }
  .newsletter--section.homepage-sections-wrapper--white #newsletter_text {
    border-color: rgba(51, 51, 51, 0.5); }
  .newsletter--section.homepage-sections-wrapper--white #newsletter_submit,
  .newsletter--section.homepage-sections-wrapper--white #newsletter_text,
  .newsletter--section.homepage-sections-wrapper--white #newsletter_text::placeholder {
    color: #333333; }
  .newsletter--section.homepage-sections-wrapper--accent #newsletter_text {
    border-color: rgba(65, 65, 65, 0.6); }
  .newsletter--section.homepage-sections-wrapper--accent #newsletter_submit,
  .newsletter--section.homepage-sections-wrapper--accent #newsletter_text,
  .newsletter--section.homepage-sections-wrapper--accent #newsletter_text::placeholder {
    color: #414141; }
  .newsletter--section.homepage-sections-wrapper--dark #newsletter_text {
    border-color: rgba(255, 255, 255, 0.6); }
  .newsletter--section.homepage-sections-wrapper--dark #newsletter_submit,
  .newsletter--section.homepage-sections-wrapper--dark #newsletter_text,
  .newsletter--section.homepage-sections-wrapper--dark #newsletter_text::placeholder {
    color: white; }
  .newsletter--section.homepage-sections-wrapper--light #newsletter_text {
    border-color: rgba(65, 65, 65, 0.6); }
  .newsletter--section.homepage-sections-wrapper--light #newsletter_submit,
  .newsletter--section.homepage-sections-wrapper--light #newsletter_text,
  .newsletter--section.homepage-sections-wrapper--light #newsletter_text::placeholder {
    color: #414141; }
  @media only screen and (min-width: 768px) {
    .newsletter--section {
      text-align: left; }
      .newsletter--section .grid, .newsletter--section .grid--rev, .newsletter--section .grid--full {
        display: table;
        width: 100%; }
      .newsletter--section .grid__item {
        display: table-cell;
        float: none;
        vertical-align: middle; }
      .newsletter--section .row--table {
        width: 100%; } }
  @media only screen and (max-width: 767px) {
    .newsletter--section .row--table {
      display: block; }
      .newsletter--section .row--table div[class*='col-'] {
        float: left;
        display: block; }
    .newsletter--section .grid__item {
      margin-top: 0px; } }
  @media only screen and (min-width: 350px) and (max-width: 528px) {
    .newsletter--section #newsletter_text {
      margin-left: 20px; } }
  @media only screen and (min-width: 768px) {
    .newsletter--section .newsletter--section--grid_inner {
      width: 100%; }
      .newsletter--section .newsletter--section--grid_inner #newsletter-wrapper {
        width: 100%; }
      .newsletter--section .newsletter--section--grid_inner input#newsletter_text {
        width: 80%;
        margin-bottom: 0; }
      .newsletter--section .newsletter--section--grid_inner.newsletter_form {
        float: left; }
        .newsletter--section .newsletter--section--grid_inner.newsletter_form form {
          width: 100%; }
      .newsletter--section .newsletter--section--grid_inner.newsletter_title {
        float: right; } }

.shopify-section .newsletter--section {
  padding: 40px; }

#newsletter-wrapper {
  display: inline-block;
  color: #333333;
  padding: 7px 0; }

#newsletter_text {
  display: inline-block;
  margin-bottom: 0px;
  height: 37px;
  padding: 10px; }

form#contact_form #newsletter-wrapper #newsletter_submit {
  margin: 0;
  border: 0 none;
  cursor: pointer;
  display: inline-block;
  background: none;
  height: 36px; }

input#newsletter_submit[type="submit"] {
  font-family: FontAwesome; }

.wetheme-dropdown .wetheme-dropdown__wrapper {
  position: relative; }
.wetheme-dropdown button {
  text-align: left;
  border: 1px solid rgba(51, 51, 51, 0.5);
  padding: 10px;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .wetheme-dropdown button span {
    display: inline-block;
    overflow: hidden; }
  .wetheme-dropdown button .icon-dropdown {
    padding-left: 0.25em;
    display: flex; }
    .wetheme-dropdown button .icon-dropdown svg {
      width: 20px; }
.wetheme-dropdown ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  min-width: 100%;
  list-style: none;
  margin: 0;
  color: #333333;
  background-color: white;
  border: 1px solid rgba(51, 51, 51, 0.5);
  z-index: 5;
  max-height: 50vh;
  overflow-x: auto;
  white-space: nowrap; }
  .wetheme-dropdown ul li {
    padding: 5px 10px;
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
    font-weight: inherit;
    cursor: pointer; }
    .wetheme-dropdown ul li:hover, .wetheme-dropdown ul li.selected {
      background-color: #e6e6e6; }
.wetheme-dropdown.wetheme-dropdown--up ul {
  top: auto;
  bottom: 100%; }
.wetheme-dropdown.fit-parent {
  width: 100%; }
.wetheme-dropdown.fit-current {
  display: inline-block; }
  .wetheme-dropdown.fit-current ul {
    right: auto; }
.wetheme-dropdown.fit-longest {
  display: inline-block; }

@media only screen and (max-width: 768px) {
  .product-details--form-wrapper .wetheme-dropdown--open button::after {
    content: url('data:image/svg+xml;charset=UTF-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.001 512.001"><path d="M284.286 256.002L506.143 34.144c7.811-7.811 7.811-20.475 0-28.285-7.811-7.81-20.475-7.811-28.285 0L256 227.717 34.143 5.859c-7.811-7.811-20.475-7.811-28.285 0-7.81 7.811-7.811 20.475 0 28.285l221.857 221.857L5.858 477.859c-7.811 7.811-7.811 20.475 0 28.285a19.938 19.938 0 0014.143 5.857 19.94 19.94 0 0014.143-5.857L256 284.287l221.857 221.857c3.905 3.905 9.024 5.857 14.143 5.857s10.237-1.952 14.143-5.857c7.811-7.811 7.811-20.475 0-28.285L284.286 256.002z"/></svg>');
    border: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    width: 15px;
    top: 7px;
    right: 10px; } }

.wetheme-dropdown-fade-enter-active, .wetheme-dropdown-fade-leave-active {
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }

.wetheme-dropdown-fade-enter, .wetheme-dropdown-fade-leave-to {
  opacity: 0; }

/* CUSTOM CLASSES */
.custom-text {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0; }
  @media only screen and (max-width: 768px) {
    .custom-text {
      max-width: 100%; } }

#shopify-section-nicolai-storia-form {
  max-width: 50%;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    #shopify-section-nicolai-storia-form {
      max-width: 100%; } }

#shopify-section-nicolai-contatti-2 {
  max-width: 50%;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    #shopify-section-nicolai-contatti-2 {
      max-width: 100%; } }

#shopify-section-nicolai-tattoo-form {
  max-width: 50%;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    #shopify-section-nicolai-tattoo-form {
      max-width: 100%; } }

#shopify-section-nicolai-custom-html-storia-2 {
  max-width: 70%;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    #shopify-section-nicolai-custom-html-storia-2 {
      max-width: 100%; } }