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

  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
  #Search Overlay
  #Footer
  #Plyr

==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
.shopify-section {
  background-color: #FFFFFF; }

/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("//cdn.shopify.com/s/files/1/2460/7349/t/20/assets/icons.eot?v=12828531672387553701626920505");
  src: url("//cdn.shopify.com/s/files/1/2460/7349/t/20/assets/icons.eot?v=12828531672387553701626920505#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/2460/7349/t/20/assets/icons.woff?v=107101592243472712371626920507") format("woff"), url("//cdn.shopify.com/s/files/1/2460/7349/t/20/assets/icons.ttf?v=109725121947212682171626920506") format("truetype"), url("//cdn.shopify.com/s/files/1/2460/7349/t/20/assets/icons.svg?v=84679651979337758221626920506#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "VCR OSD Mono";
  src: url("vcr_osd_mono_1.001-webfont.woff2") format("woff2"), url("vcr_osd_mono_1.001-webfont.woff") format("woff"); }

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

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

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

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

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

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

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

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

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

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

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

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

.grid__item {
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  /*   padding-left: $gridGutter; */
  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: 768px) {
  .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: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
@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: #edeef0; }

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

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

.main-content {
  display: block;
  background: white;
  /*
  padding-top: $gridSpacing;
  */
  padding-bottom: 0; }

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

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

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

@media screen and (min-width: 769px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
@media screen and (min-width: 768px) {
  .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; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select,
tabs {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif;
  color: black;
  font-weight: 400;
  -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: "Gill Sans", "Gill Sans MT", "Alegreya", serif , sans-serif;
  font-weight: 400;
  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.25em; }

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

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

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

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

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

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid gray; }
  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 gray;
  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: 769px) {
  .section-header {
    display: table;
    width: 100%; }

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

  .section-header__left {
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0; }
    .section-header__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: 769px) and (max-width: 768px) {
    .section-header__right {
      margin-bottom: 30px; } }

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

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

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

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

/*============================================================================
  #Rich Text Editor
==============================================================================*/
.rte {
  margin-bottom: 15px; }
  .rte a {
    text-decoration: underline; }
  .rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    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: black;
  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 {
  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;
  /*================ Set primary button colors - can override later ================*/
  background-color: black;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: black;
    color: white; }
  .btn:active, .btn--secondary:active, .btn:focus, .btn--secondary:focus,
  .rte .btn:active,
  .rte .btn--secondary:active,
  .rte .btn:focus,
  .rte .btn--secondary:focus {
    background-color: black;
    color: white; }
  .btn[disabled], [disabled].btn--secondary, .btn.disabled, .disabled.btn--secondary,
  .rte .btn[disabled],
  .rte [disabled].btn--secondary,
  .rte .btn.disabled,
  .rte .disabled.btn--secondary {
    cursor: default;
    color: #b6b6b6;
    background-color: #f6f6f6; }

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

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

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

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

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 15px;
  border: 1px solid gray; }

/*============================================================================
  Responsive tables, defined with .table--responsive on table element.
  Only defined for IE9+
==============================================================================*/
@media screen and (max-width: 768px) {
  .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: 0; }

.flow-homepage .shopify-section:first-child {
  margin-top: -30px; }

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

.homepage-sections-wrapper--light {
  background-color: #efefef; }

.homepage-sections-wrapper--accent {
  background: #edc098;
  color: white; }

.homepage-sections-wrapper--accent .icon--placeholder {
  background-color: #f2f3f3; }

.homepage-sections-wrapper--accent a {
  color: white !important;
  border: 1px solid #f5b491;
  background-color: #EDC098;
  /*   #f5b491 */ }

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

.homepage-sections-wrapper--dark {
  background: #353943;
  color: #fff; }

.homepage-sections-wrapper--dark .icon--placeholder {
  background-color: #f2f3f3;
  color: #353943; }

.homepage-sections-wrapper--dark h2.homepage-sections--title:after, .homepage-sections-wrapper--dark .homepage-sections--title.h2:after,
.homepage-sections-wrapper--dark .homepage-sections--title.h2:after {
  background-color: #fff; }

.homepage-sections-wrapper--dark a {
  color: #fff !important; }

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

.image-with-text-wrapper .homepage-sections-wrapper--dark .homepage-featured-content-box h2.homepage-sections--title:after, .image-with-text-wrapper .homepage-sections-wrapper--dark .homepage-featured-content-box .homepage-sections--title.h2:after,
.map-section-wrapper .homepage-sections-wrapper--dark .homepage-map-content-box h2.homepage-sections--title:after,
.map-section-wrapper .homepage-sections-wrapper--dark .homepage-map-content-box .homepage-sections--title.h2:after {
  background-color: black; }

.image-with-text-wrapper .homepage-featured-content-box .sitewide--title-wrapper,
.map-section-wrapper .homepage-map-content-box .sitewide--title-wrapper {
  margin-bottom: 20px; }

.instagram-section-wrapper .fa-instagram {
  color: #000; }

.shopify-section.instagram-section-wrapper,
.shopify-section.featured-collections-wrapper {
  margin-top: 0; }

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

.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; }
  .notification-bar p {
    margin: 5px 0 5px 0;
    letter-spacing: 1pt; }
    @media screen and (min-width: 768px) {
      .notification-bar p {
        margin: 0; } }
  .notification-bar #sharing {
    text-align: center;
    padding: 0;
    width: auto;
    margin: -2px auto 0 auto !important;
    opacity: 1; }
    .notification-bar #sharing #sm-icons {
      margin: 5px 0 0 0; }
      @media screen and (min-width: 768px) {
        .notification-bar #sharing #sm-icons {
          margin: 0; } }
    .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-top: 3px;
      display: inline-block; }
    @media screen and (min-width: 768px) {
      .notification-bar #sharing {
        padding: 0;
        position: absolute;
        top: 7px;
        right: 20px;
        bottom: auto;
        width: auto;
        margin: 0; } }

.notification-bar .custom-font {
  font-family: "Gill Sans", "Gill Sans MT", "Lato", sans-serif;
  margin: 0; }

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

.image-bar--title {
  text-align: center;
  padding-top: 10px; }

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

.title-wrap p {
  font-family: "Gill Sans", "Gill Sans MT", "Lato", sans-serif; }

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

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

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

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

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

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

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

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

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

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

/*================ Prevent zoom on touch devices in active inputs ================*/
@media screen and (max-width: 768px) {
  input,
  textarea {
    font-size: 16px; } }
input,
textarea,
button,
select {
  padding: 0;
  margin: 0;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text; }

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

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

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

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

fieldset {
  border: 1px solid gray;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

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

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

textarea {
  min-height: 100px; }

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

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

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

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/2460/7349/t/20/assets/ico-select.svg?v=80103462439189041331626920544");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select, .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: bold; }

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

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

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

label[for] {
  cursor: pointer; }

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

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

label.error {
  color: #d02e2e; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > .btn--secondary,
  .input-group 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-arrow-down:before {
  content: "\e607"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-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 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li {
    margin: 0 10px 10px;
    color: #636363;
    cursor: default; }
  .payment-icons .icon {
    font-size: 30px;
    line-height: 30px;
    height: 30px; }
  .payment-icons .fallback-text {
    text-transform: capitalize; }

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

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

/*============================================================================
  #Site Header
==============================================================================*/
header {
  border-bottom: 1px solid #282828;
  /*   margin-bottom: $gutter; */ }
  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-section--wrapper {
  z-index: 10000; }

.site-header {
  padding: 10px 0;
  background: white; }
  .site-header.logo_above {
    /*     padding-top: 19px; */
    padding-top: 0px;
    padding-bottom: 0; }
  .site-header .grid--table {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .site-header .grid--table > .grid__item {
      float: none;
      display: table-cell;
      vertical-align: middle; }

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

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

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

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

ul.site-nav__dropdown {
  background: white;
  border: 1px solid #282828;
  padding-bottom: 40px; }

.site-nav__dropdown .site-nav__link {
  padding: 10px 30px;
  background: white; }

.site-nav__dropdown .site-nav__link:hover {
  background: white;
  color: #ef9b5b; }

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

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

.top-links ul li {
  display: inline-block;
  list-style-type: none;
  text-transform: normal; }

.top-links--icon-links {
  margin: 0 5% 0 0;
  display: inline-block; }

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

.dropdown-icon {
  margin-right: 5px;
  top: 20px;
  position: relative;
  width: auto;
  max-width: 50px; }

.top-links--icon-links li {
  padding-left: 30px; }

.top-links--icon-links li a {
  color: #a3a3a3;
  position: relative; }

.site-header__cart-indicator {
  background-color: #f68e56;
  border-radius: 10px;
  top: 2px;
  height: 8px;
  position: absolute;
  right: -3px;
  width: 8px; }

.hide {
  display: none !important; }

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

.search-bar span.input-group-btn .btn, .search-bar span.input-group-btn .btn--secondary {
  line-height: 1; }

#SearchContainer .input-group .btn, #SearchContainer .input-group .btn--secondary {
  height: 39px; }

#SearchContainer #search-input {
  color: #000; }

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

.homepage-sections-wrapper--accent a:hover {
  background-color: #f5b491; }

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.site-nav, .site-nav--mobile {
  cursor: default;
  margin: 0 0 0 -15px; }
  .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 {
  color: #000000; }

.top-links a:hover,
.top-links a:active,
.site-header__logo-link:hover,
.site-header__logo-link:active {
  color: #bfbfbf; }

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

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

.site-nav__link {
  display: block;
  text-decoration: none;
  padding: 10px;
  white-space: nowrap;
  color: #000000;
  letter-spacing: 0.5px;
  font-size: 14.5px; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #0d0d0d; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    font-size: 10px;
    padding-left: 7.5px; }
  .site-nav--active > .site-nav__link {
    font-weight: bold; }
  .site-nav--mobile .site-nav__link {
    display: inline-block; }

/*================ Dropdowns ================*/
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  margin: 0;
  z-index: 1300; }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown a {
    background-color: #f2f2f2; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      background-color: #d8d8d8;
      color: black; }
  .site-nav__dropdown .site-nav--has-dropdown {
    position: relative; }
    .site-nav__dropdown .site-nav--has-dropdown:before {
      content: "\f0da";
      font-family: "FontAwesome";
      font-size: smaller;
      position: absolute;
      right: 0;
      padding-top: 17px;
      padding-bottom: 15px;
      padding-right: 10px;
      color: #000000;
      top: -4px; }
    .site-nav__dropdown .site-nav--has-dropdown.nav-hover:before {
      color: #bfbfbf; }

.site-nav__subdropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  margin: 0;
  z-index: 1301;
  background: #edeef0;
  border: 1px solid #282828; }
  .nav-hover .nav-hover .site-nav__subdropdown {
    display: block; }
  .site-nav__subdropdown a {
    background-color: #f2f2f2; }
    .site-nav__subdropdown a:hover, .site-nav__subdropdown a:active, .site-nav__subdropdown a:focus {
      background-color: #d8d8d8;
      color: black; }

.top-links .site-nav li:last-child a, .top-links .site-nav--mobile li:last-child a {
  padding-right: 0; }

.site-nav__dropdown li a {
  padding: 0 30px 0 10px !important; }

.site-nav__dropdown li a p {
  vertical-align: middle;
  display: inline-block;
  margin: 0 !important; }

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

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: 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__item {
  position: relative;
  display: block; }
  .mobile-nav > .mobile-nav__item {
    background-color: #ebebeb; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #ebebeb; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block; }

.mobile-nav__item a,
.mobile-nav__toggle button {
  color: #333333;
  padding: 15px 30px;
  text-decoration: none; }
  .mobile-nav__item a:hover, .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:hover,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    color: #0d0d0d; }
  .mobile-nav__item a:active, .mobile-nav__item a:focus,
  .mobile-nav__toggle button:active,
  .mobile-nav__toggle button:focus {
    background-color: #f2f2f2; }

.mobile-nav .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 {
  width: 100%;
  text-align: left; }
  .mobile-menu-currency-button .text {
    font-size: 18px; }
  .mobile-menu-currency-button .icon {
    float: right; }

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

.currency-picker {
  border: 1px solid white;
  padding-right: 10px;
  background: none;
  font-weight: bold; }

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 3000px;
    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: 30px 6%;
  background: white;
  color: #000000;
  /*   margin-bottom: 20px; */
  border-bottom: 1px solid #282828; }

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

.mobile-nav-bar-wrapper .site-header__cart-indicator {
  height: 11px;
  width: 11px;
  right: -4px;
  top: -1px; }

#NavDrawer {
  background-color: #ebebeb;
  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; }

.mobile_only {
  display: none; }

.mobile_hidden {
  display: block; }

@media only screen and (max-width: 767px) {
  .mobile_only {
    display: block; }

  .mobile_hidden {
    display: none; } }
/*============================================================================
  #Drawers
==============================================================================*/
#CartDrawer {
  text-align: center; }
  #CartDrawer .grid--rev .grid__item {
    text-align: center; }

#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: #333333;
  background-color: white;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s; }
  .drawer a {
    color: #333333; }
    .drawer a:hover, .drawer a:focus {
      opacity: 0.7; }
  .drawer input,
  .drawer textarea {
    border-color: #e6e6e6; }
  .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: 768px;
  left: -768px;
  border-right: 1px solid #e6e6e6; }
  .js-drawer-open-left .drawer--left {
    display: block;
    -ms-transform: translateX(768px);
    -webkit-transform: translateX(768px);
    transform: translateX(768px); }
    .lt-ie9 .js-drawer-open-left .drawer--left {
      left: 0; }

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

.drawer--right .sitewide--title-wrapper {
  margin-bottom: 20px; }

.drawer--right .drawer__title {
  padding-top: 30px; }

.drawer--right .drawer__header {
  margin-top: 20px;
  position: relative;
  z-index: 100; }

.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(768px);
    -webkit-transform: translateX(768px);
    transform: translateX(768px);
    opacity: 0.1; }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-768px);
    -webkit-transform: translateX(-768px);
    transform: translateX(-768px);
    opacity: 0.1; }

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

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

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

.drawer__close button {
  position: absolute;
  right: 15px;
  color: inherit;
  z-index: 1000000; }
  .drawer__close button:active, .drawer__close button:focus {
    background-color: #f2f2f2; }

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

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

.spr-review-content-body {
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif !important;
  color: black !important;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-text-size-adjust: 100% !important;
  text-align: left !important; }

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

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

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

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

.product:hover .reveal img {
  opacity: 1; }

.reveal {
  position: relative; }

.reveal > a > img {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

/* Only run hover effect on desktop */
@media only screen and (min-width: 767px) {
  .grid-view-item:hover .reveal > a > img {
    opacity: 0; }

  .grid-view-item:hover .reveal .hidden {
    z-index: 4;
    opacity: 1; } }
.reveal .hidden {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow: hidden; }

.grid-view-item--desc-wrapper {
  position: relative;
  z-index: 1; }

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

.grid-view-item:hover .shop-now-wrapper {
  visibility: visible; }

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

.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-alignment--center .payment-icons {
  margin-top: 30px; }

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

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

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

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

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

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

.products--match-height .grid__item .grid-view-item img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

@media only screen and (min-width: 769px) 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-bottom: 30px; }
  .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__photos a, .product-single__photos img {
  display: block;
  margin: 0 auto; }
.product-single__photos .product-single__photos {
  overflow: hidden; }
.product-single__photos li {
  margin-bottom: 30px; }
.product-single__photos .product-single__thumbnail-wrapper {
  float: left;
  width: 25%;
  display: inline;
  margin: 0; }
.product-single__photos .product-single__thumbnail-wrapper:nth-child(4n+2) {
  clear: both; }
.product-single__photos .product-single__thumbnail {
  display: inline;
  margin: 0; }

.grid-image--centered {
  text-align: center;
  display: inline-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; }

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

.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 gray; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }

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

@media screen and (min-width: 769px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
#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; }

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

.cart__remove {
  display: block; }

.ajaxcart__row .grid, .ajaxcart__row .grid--rev, .ajaxcart__row .grid--full {
  padding: 0 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: #bcbcbc;
  font-size: 10px; }

#CartContainer form {
  overflow: auto;
  height: 100%; }

#CartContainer form .ajaxcart__footer {
  width: 100%;
  background-color: #efefef; }

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

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

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

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

.ajaxcart__product {
  position: relative;
  border-top: 1px solid #e6e6e6;
  padding-top: 10px; }
  .ajaxcart__product.is-removed {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.ajaxcart__row {
  padding-top: 15px;
  padding-bottom: 15px; }

.ajaxcart__product-image {
  display: block;
  overflow: hidden;
  margin-bottom: 15px; }
  .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; }

.ajaxcart-item__price {
  opacity: 0.5; }

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

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

.additional_checkout_buttons input {
  border: 0 !important; }

.ajaxcart__footer {
  text-align: center; }

.ajaxcart__special_instructions {
  width: 100%;
  opacity: 0.5;
  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 {
  opacity: 0.5;
  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: #e6e6e6;
  color: #333333; }

.ajaxcart__qty-adjust {
  color: #333333; }

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

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

.ajaxcart__qty-remove {
  position: absolute;
  top: 20px;
  right: 40px; }
  @media screen and (min-width: 768px) {
    .ajaxcart__qty-remove {
      right: 90px; } }

.ajaxcart-item__price-strikethrough {
  float: right; }

/*============================================================================
  #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: 768px) {
    .homepage-hero-content--video {
      padding: 30px; } }
  .homepage-hero-content--video .homepage-hero-content-overlay-wrapper::before {
    z-index: 3; }
  .homepage-hero-content--video .homepage-hero-content-video-text-block {
    z-index: 4;
    margin-top: 0px; }
    .homepage-hero-content--video .homepage-hero-content-video-text-block p {
      display: none; }
      @media screen and (min-width: 768px) {
        .homepage-hero-content--video .homepage-hero-content-video-text-block p {
          display: block; } }

.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;
  color: #fff;
  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 a {
  color: #fff; }

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

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

.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: black;
  width: 100%;
  font-family: "Alegreya", serif;
  font-weight: 400; }

.homepage-hero-menu-indiv-image img {
  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.hidden::before {
    display: none; }

.homepage-video-play-button {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 20px auto 0 auto;
  text-align: center;
  position: relative;
  cursor: pointer; }
  @media screen and (min-width: 768px) {
    .homepage-video-play-button {
      width: 100px;
      height: 100px;
      margin: 40px auto 0 auto; } }
  .homepage-sections-wrapper--white .homepage-video-play-button, .homepage-sections-wrapper--feature .homepage-video-play-button {
    background-color: #FFFFFF; }
  .homepage-sections-wrapper--accent .homepage-video-play-button {
    background-color: #edc098; }
  .homepage-sections-wrapper--light .homepage-video-play-button {
    background-color: white; }
  .homepage-sections-wrapper--dark .homepage-video-play-button {
    background-color: #3e3e3e; }
  .homepage-sections-wrapper--light .homepage-video-play-button .homepage-video-play-button-inner {
    border-color: transparent transparent transparent #3e3e3e; }

.homepage-video-play-button-inner {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  margin-left: -10%; }
  @media screen and (min-width: 768px) {
    .homepage-video-play-button-inner {
      border-width: 15px 0 15px 30px; } }

.homepage-hero-content-overlay-wrapper::before {
  background-color: #000;
  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 {
  color: #a4a4a4;
  -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-container:hover a.flex-next {
  right: 0px; }

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

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

.homepage-hero-content-overlay-wrapper div.zoom-effect--inner {
  max-width: 100%;
  -webkit-transition: margin .1s ease, transform .25s ease;
  -moz-transition: margin .1s ease, transform .25s ease;
  -o-transition: margin .1s ease, transform .25s ease;
  transition: margin .1s ease, transform .25s ease; }

.homepage-hero-content-overlay-wrapper:hover div.zoom-effect--inner {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }

.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 .wow {
  visibility: hidden; }
.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; }

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

.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--price,
.collection-grid--count,
.product-grid--vendor-text {
  font-weight: 700; }

.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--none .collection-sidebar-filter {
  display: inline-block; }

.collection-none-sidebar-wrapper {
  margin-bottom: 0;
  text-align: center;
  display: inline-block;
  width: 100%; }

.product-grid--price {
  margin-bottom: 10%;
  margin-top: 5px;
  text-align: center; }

.product-grid--vendor-text {
  margin-bottom: 5px; }

.product-grid--from-wrapper,
.product-grid--compare-price {
  text-transform: lowercase;
  font-size: 90%;
  font-weight: 500;
  color: sitewide--title-wrapper(black, 30%);
  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; }

h2.homepage-sections--title, .homepage-sections--title.h2,
h1.page-category--title,
.page-category--title.h1,
h1.page--title,
.page--title.h1,
h2.page--title,
.page--title.h2,
h1.list-collections--title,
.list-collections--title.h1 {
  font-size: 32px;
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif;
  text-align: center;
  font-weight: 350;
  width: 100%;
  text-align: center;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  padding-top: 35px;
  letter-spacing: 4.5px; }

.sitewide--title-wrapper {
  position: relative;
  margin-bottom: 0; }

h2.homepage-sections--title:after, .homepage-sections--title.h2:after,
h1.page-category--title:after,
.page-category--title.h1:after,
h1.page--title:after,
.page--title.h1:after,
h2.page--title:after,
.page--title.h2:after,
h1.list-collections--title:after,
.list-collections--title.h1:after {
  content: "";
  display: block;
  height: 3px;
  width: 35px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  opacity: 0.0; }

h2.homepage-sections--title, .homepage-sections--title.h2 {
  font-size: 57px;
  font-weight: 600;
  letter-spacing: 4.5pt; }

/*============================================================================
  #Homepage Sections - Image with Text Overlay
==============================================================================*/
.shopify-section.image-with-text-overlay-wrapper .homepage-sections-wrapper {
  padding: 0; }

.image-with-text-overlay-wrapper .sitewide--title-wrapper {
  margin-bottom: 20px; }

.image-with-text-overlay-wrapper .homepage-content--image::before {
  opacity: 0;
  background-color: #000;
  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: 21px; }

.image-with-text-overlay-wrapper h2.homepage-sections--title, .image-with-text-overlay-wrapper .homepage-sections--title.h2 {
  padding-bottom: 10px;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: bold; }

.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--white h2.homepage-sections--title:after, .image-with-text-overlay-wrapper--white .homepage-sections--title.h2:after {
  background: 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: #edc098; }

.image-with-text-overlay-wrapper--accent h2.homepage-sections--title:after, .image-with-text-overlay-wrapper--accent .homepage-sections--title.h2:after {
  background: #edc098; }

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

.image-with-text-overlay-wrapper--dark h2.homepage-sections--title:after, .image-with-text-overlay-wrapper--dark .homepage-sections--title.h2:after {
  background: black; }

.image-with-text-overlay-wrapper--white .homepage-featured-box-btn {
  /*   background: none;
    border: 1px solid white;
    color: white; */
  background: #f5b491;
  border: 2px solid #f5b491;
  transition: .4s;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px; }

.image-with-text-overlay-wrapper--accent .homepage-featured-box-btn {
  background: none;
  border: 1px solid #edc098;
  color: #edc098; }

.image-with-text-overlay-wrapper--dark .homepage-featured-box-btn {
  background: none;
  border: 1px solid black;
  color: black; }

.image-with-text-overlay-wrapper--white .homepage-featured-box-btn:hover {
  /*   background: inherit;
    opacity: 0.75; */
  color: black;
  background: rgba(0, 0, 0, 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; } }
@media only screen and (max-width: 768px) {
  .image-with-text-overlay-wrapper--white .homepage-featured-box-btn {
    /*     background: none;
        border: 1px solid $colorTextBody;
        color: $colorTextBody; */ }

  .image-with-text-overlay-wrapper--white .homepage-featured-box-btn:hover {
    color: black; } }
/*============================================================================
  #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; }
  @media screen and (min-width: 769px) {
    .text-advert-section .grid__item {
      border-left: 1px solid #bfbfbf; } }

.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: 5px 10px 0 10px;
  margin: 0;
  opacity: 0.5; }

.text-advert-section .grid__item a {
  display: block;
  color: black; }

h1.account--title, .account--title.h1 {
  font-size: 32px;
  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: 300;
  font-size: 23px;
  line-height: 23px;
  margin: 20px 0; }

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

.featured-products-wrapper {
  background-color: #FFFFF; }

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

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

.homepage-featured-grid-item-details .product-grid--price {
  opacity: 1;
  font-weight: 500; }

.homepage-collection-grid-item-details {
  opacity: 0;
  z-index: 1000;
  width: 100%;
  text-align: center;
  font-weight: 500;
  padding-top: 10px; }

.homepage-featured-grid-item:hover .homepage-featured-grid-item-details,
.homepage-collection-grid-item:hover .homepage-collection-grid-item-details,
.homepage-instagram-indiv:hover .homepage-instagram-hover {
  opacity: 1; }

.homepage-instagram-indiv {
  position: relative; }

.homepage-instagram-hover {
  opacity: 0; }

.homepage-instagram-indiv .homepage-instagram-hover, .homepage-instagram-hover .fa-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */ }

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

.map-container-error {
  color: red;
  border: solid red 1px;
  background-color: white;
  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: 768px) {
  .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: #efefef; }
.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: #353943;
  color: #fff; }
  .homepage-sections-wrapper--dark .feature-row__text--full-width .homepage-featured-content-box .homepage-featured-box-btn, .homepage-sections-wrapper--dark .map__text--full-width .homepage-map-box .homepage-featured-box-btn {
    color: #000 !important;
    background: #ebebeb !important; }
.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: #edc098;
  color: #fff; }

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

.homepage-instagram-background .main-content {
  margin-top: 0; }

.instagram-container-error {
  color: red;
  border: solid red 1px;
  background-color: white;
  padding: 1em;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; }

.instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover, object-position: center"; }

.instagram-grid-4 {
  width: 25%;
  padding-bottom: 25%; }

.instagram-grid-5 {
  width: 20%;
  padding-bottom: 20%; }

.instagram-grid-6 {
  width: 16.666%;
  padding-bottom: 16.666%; }

@media only screen and (max-width: 768px) {
  .instagram-grid-4, .instagram-grid-5, .instagram-grid-6 {
    width: 50%;
    padding-bottom: 50%; } }
.homepage-instagram-indiv {
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .homepage-instagram-indiv > * {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

.collection-sidebar-mobile-wrapper .section-header {
  padding-bottom: 20px; }

.homepage-featured-content-box, .homepage-map-content-box {
  width: 50%;
  background: #efefef;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1; }
  @media screen and (min-width: 769px) {
    .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: 768px) {
    .feature-row__text--full-width .homepage-featured-content-box, .feature-row__text--full-width .homepage-map-content-box {
      margin-top: 0; } }

.feature-row__text--right .homepage-featured-content-box, .map__text--right .homepage-map-content-box {
  left: 0; }
  @media screen and (max-width: 769px) {
    .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; }

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

.homepage-product-grid-wrapper .grid__item .grid__image {
  margin-bottom: 20px; }

.homepage-featured-rich-text {
  text-align: center; }

.homepage-featured-rich-text p:last-child,
.homepage-featured-rich-text .rte {
  margin-bottom: 0; }

.homepage-product-grid-wrapper .helper-content .grid__item {
  margin-top: 0; }

.homepage-content--image img {
  display: block; }

#homepage-collection-mobile .helper-section {
  width: 100%; }

/*============================================================================
  #Search Overlay
==============================================================================*/
.search-full-screen {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500; }

.search-full-screen .search-fullscreen--inner {
  background: #faf0ec none repeat scroll 0 0;
  height: 100%;
  transition: opacity 0.1s cubic-bezier(0.46, 0.01, 0.32, 1) 0s;
  width: 100%; }

/*============================================================================
  #Product Page
==============================================================================*/
.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 {
  background: #efefef;
  padding: 40px;
  position: relative; }

.product-details-wrapper .social-sharing.is-clean a {
  border: none;
  background: none; }

.product-details-product-title {
  font-size: 32px;
  font-weight: 400; }

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

.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: #404040;
  margin: 20px 0 10px 0;
  display: inline-block; }

#AddToCartForm select {
  min-width: 70%; }

#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: 20px 0; }

#AddToCart:hover {
  background: #9f9f9f;
  color: #eeeeee; }

#AddToCartForm {
  margin-bottom: 0; }

.social-sharing {
  padding-top: 30px; }

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

.social-sharing h5, .social-sharing .h5 {
  text-transform: uppercase;
  font-size: 11px; }

.social-sharing a {
  margin: 0 10px;
  color: black; }

.klarna-wrapper {
  text-align: center; }

#klarna {
  padding-top: 20px;
  display: inline-block; }

/* Product Tabs */
.product-tab {
  background: #efefef;
  color: #ffffff;
  display: inline-block;
  padding: 10px 0 10px 0;
  margin-bottom: 8px;
  text-align: center;
  text-transform: none;
  letter-spacing: 1px;
  font-size: 12px;
  width: 100%;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out, border 0.25s ease-in-out;
  line-height: 1.42;
  border: 1px solid #3e3e3e;
  border-radius: 1.875rem;
  min-height: 30px;
  word-wrap: break-word;
  white-space: normal; }

.product-tab-content {
  display: none;
  margin: 0 1em 2em 1em; }

#frame-size-guide {
  position: relative;
  background: #FFF;
  width: auto;
  max-width: 900px;
  margin: 0 auto; }

.sizing-units {
  font-size: 0.85em; }

a.no-decoration {
  text-decoration: none; }

.no-list {
  list-style-type: none; }

.product-tab:hover {
  background: white;
  border: 1px solid #585858; }

.active-tab {
  background: white;
  border: 1px solid #585858; }

.product-tab:after {
  content: '\002B';
  /* Unicode character for "plus" sign (+) */
  font-size: 16px;
  font-weight: 900;
  color: black;
  float: right;
  margin-right: 17px; }

.active-tab:after {
  content: '\2212';
  /* Unicode character for "minus" sign (-) */ }

.tab-icon {
  height: 7.5px;
  width: 7.5px;
  position: relative;
  left: 30px;
  top: 1px;
  display: inline; }

/*Frame Size Guide*/
#tab-2 {
  padding: none;
  margin: 0 auto;
  text-align: center; }

#tab-2 .btn.frame-size-guide-btn, #tab-2 .frame-size-guide-btn.btn--secondary {
  margin-top: 20px; }

#product-specs {
  padding-bottom: 20px; }

/*Product page sub-labels*/
.product-sub-label--description-and-size {
  font-weight: 600;
  display: inline-block;
  letter-spacing: 1px;
  font-size: 14px;
  width: 100%;
  line-height: 1.42;
  white-space: normal; }

/*Default CSS for Flow theme tabs*/
.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: none; }

.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: 30px 0 0;
  text-decoration: line-through; }

.product-page--sale-badge {
  background-color: #f26c4f;
  color: #ffffff;
  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; }

.sale-badge {
  background: #f26c4f;
  color: #FFFFFF;
  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: #000;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  padding: 10px 20px;
  text-transform: uppercase;
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0px;
  display: none; }

/*============================================================================
  #Collection Page
==============================================================================*/
.collection-main-body .collection-main-body-inner div {
  list-style-type: none;
  margin-bottom: 50px; }

.collection-main-body .collection-main-body-inner 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;
  width: 100%; }
  .collection-central-description-block img {
    object-fit: cover;
    height: 100%;
    margin: 0 auto; }

.collection-central-header-wrapper {
  display: flex;
  background-color: #fbebdf;
  align-items: center;
  margin: 0 -5.6%;
  margin-bottom: 3em;
  /*   margin-top: -30px; */ }

@media screen and (min-width: 769px) {
  .collection-central-header-wrapper {
    max-height: 50vh;
    overflow: hidden; } }
.collection-central-header-wrapper .sitewide--title-wrapper {
  width: 100%; }

@media screen and (max-width: 905px) {
  .collection-central-description-block img {
    height: 100%; } }
@media screen and (max-width: 768px) {
  .collection-central-header-wrapper {
    flex-direction: column; } }
.collection-central-description-block .collection-sidebar__description {
  padding-bottom: 20px;
  font-size: 21px;
  line-height: 1.6;
  margin: 0 3.5em;
  margin-top: -1em;
  padding-bottom: 1.7em; }

/* .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-wrapper h1.page--title:after, .collection-sidebar-wrapper .page--title.h1:after {
  right: auto; }

.collection-sidebar-filter label {
  width: 100%;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 90%; }

.collection-sidebar-filter .collection-sidebar-filter-select {
  min-width: 200px; }

.collection-sidebar-filter {
  margin-bottom: 20px; }

.pagination {
  text-align: center;
  width: 100%;
  margin-top: 50px; }

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

.template-blog .pagination {
  text-align: center; }

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

.pagination .pagination-num-showing {
  font-size: 12px;
  font-style: italic;
  line-height: 30px; }

.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: #efefef !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; }

#paginate {
  padding: 20px 0; }

.list-collections--more-link {
  padding-top: 30px;
  text-align: center; }

.list-collections--more-link a {
  text-decoration: underline; }

.collection-none--sort-by {
  margin-top: -20px;
  padding-bottom: 40px;
  text-align: center; }

.collection-central--sort-by {
  text-align: center;
  display: inline-block; }

.collection-central--sort-by #sort-by {
  margin-left: 5px; }

.list-collections--banner-image {
  margin-bottom: 20px;
  text-align: center; }

.list-collections--indiv-collection-title {
  text-align: center; }

@media only screen and (max-width: 768px) {
  #shopify-section-list-collections-template .list-collections--title {
    text-align: center; } }
/*============================================================================
  #Popup
==============================================================================*/
#popup.slide-up {
  background: #fff;
  color: #000;
  top: inherit !important;
  /* prevent overwriting by shopify admin header (it moves all fixed elements down 40px) */
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 2000;
  padding: 20px 0;
  transition: .4s ease-in-out;
  transform: translateY(100%);
  max-height: 88vh;
  overflow: scroll; }

#popup.slide-up.visible {
  transform: translateY(0%); }

#popup .social-media-footer ul li a {
  color: #000;
  transition: all 0.15s ease-in-out 0s; }

#popup .social-media-footer ul li a:hover {
  color: #000; }

#popup a,
#popup #newsletter-wrapper #newsletter_submit {
  color: #000; }

#popup h3, #popup .h3 {
  margin-top: 0; }

#popup .popup--body input#mce-EMAIL {
  background: #fff;
  border-color: #000;
  color: #000; }

#popup .popup--body input#mc-embedded-subscribe {
  background: #000;
  color: #fff; }

#popup.slide-up .popup--image {
  max-height: 160px;
  display: inline-block;
  width: 100%; }

#popup.slide-up .popup--no-image-text-wrapper {
  text-align: center; }

#popup.slide-up .popup--image img,
#popup.slide-up .popup--image svg {
  max-height: 160px;
  max-width: 300px;
  display: inline;
  object-fit: contain;
  font-family: "object-fit: contain"; }

#popup.slide-up .popup--image-wrapper {
  text-align: center; }
  @media screen and (min-width: 768px) {
    #popup.slide-up .popup--image-wrapper {
      text-align: right; } }

#popup .popup--close-btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px; }

#popup #newsletter_text {
  border: 1px solid #ebebeb;
  background: #ebebeb;
  border-radius: 0; }

#popup #newsletter-wrapper {
  padding: 0; }

#popup #sm-icons {
  margin-top: 20px;
  margin-bottom: 0; }

#popup .popup--close-btn {
  cursor: pointer; }

.popup#fullscreen {
  width: 30vw;
  padding-right: 0; }
  .popup#fullscreen .grid.display-table, .popup#fullscreen .display-table.grid--rev, .popup#fullscreen .display-table.grid--full {
    margin-left: 0; }
  .popup#fullscreen .popup--body {
    padding: 40px 60px 40px 40px;
    margin-left: -50px; }
    .popup#fullscreen .popup--body h2, .popup#fullscreen .popup--body .h2 {
      position: relative;
      display: inline-block;
      padding-bottom: 20px; }
      .popup#fullscreen .popup--body h2:after, .popup#fullscreen .popup--body .h2:after {
        content: "";
        display: block;
        border-bottom: solid 2px #ccc;
        width: 30%;
        position: absolute;
        bottom: 0;
        left: 0; }
    .popup#fullscreen .popup--body p {
      color: #3e3e3e; }
    .popup#fullscreen .popup--body .popup--description {
      margin-bottom: 40px; }
    .popup#fullscreen .popup--body .input-group {
      width: 100%;
      margin-bottom: 80px; }
      .popup#fullscreen .popup--body .input-group .form-control {
        width: 100%; }
    .popup#fullscreen .popup--body .footer-email-submit {
      margin-top: 0px; }
  .popup#fullscreen .popup_image {
    margin-top: 0px;
    padding-left: 0;
    text-align: right;
    vertical-align: top !important; }
    @media screen and (min-width: 769px) {
      .popup#fullscreen .popup_image img {
        max-height: 700px; } }
  .popup#fullscreen .popup_image--inner {
    text-align: right; }
  .popup#fullscreen .note.form-success {
    margin-bottom: 82px;
    padding: 0;
    color: #56ad6a !important;
    background: none;
    border: none;
    font-size: 20px; }
  .popup#fullscreen .footer-email-input {
    background: none;
    margin-bottom: 20px; }

.fancybox-close {
  top: 32px !important;
  right: 32px !important;
  background: none; }

.popup--close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3; }

.popup--close:hover {
  opacity: 1; }

.popup--close:before, .popup--close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #000; }

.popup--close:before {
  transform: rotate(45deg); }

.popup--close:after {
  transform: rotate(-45deg); }

/*============================================================================
  Featured Product
==============================================================================*/
.indiv-product {
  position: relative;
  text-align: center; }

.indiv-product-vendor-text {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 12.8px; }

.homepage-section--indiv-product-wrapper {
  padding-top: 50px;
  padding-bottom: 50px; }

.homepage-sections--indiv-product-slider {
  position: relative; }

.homepage-sections--indiv-product-slider .flex-control-nav {
  width: auto;
  right: 0;
  bottom: 0;
  z-index: 10; }

.homepage-sections--indiv-product-slider img {
  width: 100%; }

/*============================================================================
  #Blog Page
==============================================================================*/
.blog-grid--title {
  margin: 10px 0 0 0; }

.blog-grid--date {
  opacity: 0.5; }

.page-main--wrapper {
  padding-top: 0; }

.blog-main--wrapper,
.error-page--wrapper {
  padding-top: 30; }

.blog-sidebar--meta {
  margin: 0;
  padding: 0; }

.blog-sidebar--meta li {
  list-style-type: none; }

.article__featured-image img {
  margin-bottom: 10px; }

.blog-sidebar--recent-articles li,
.blog-sidebar--all-categories li {
  border-top: 1px solid #b3b3b3;
  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; }

.blog-sidebar-image {
  margin-bottom: 15px; }

.article--details {
  background: #efefef;
  padding: 40px;
  position: relative;
  margin-bottom: 30px;
  border: 1px dashed #b3b3b3; }

.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: #efefef;
  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 {
  border-radius: 1.875rem;
  font-weight: 400;
  background: #636363;
  margin-top: 15px;
  text-transform: none;
  padding: 10px 20px;
  font-size: 12px;
  color: #ffffff;
  display: inline-block; }

.account-section--btn,
.article-comment--btn {
  background: #636363;
  margin-top: 0;
  padding: 10px 20px;
  color: #ffffff;
  display: inline-block; }

.contact-form--submit-button {
  text-align: center; }

/*============================================================================
  #Cart Page
==============================================================================*/
.cart--button-checkout,
.cart--button-update {
  padding: 15px 35px;
  background: #3e3e3e;
  color: #ffffff;
  transition: all 0.15s ease-in-out 0s; }

.cart--button-checkout:hover,
.cart--button-update:hover {
  background: #9f9f9f;
  color: #eeeeee; }

.cart--button-update {
  opacity: 0.75; }

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

.blog-grid--link {
  text-decoration: underline; }

.additional_checkout_buttons {
  text-align: center;
  padding: 10px 0; }

.additional_checkout_buttons {
  border: medium none; }

/*============================================================================
  #Slideshow section
==============================================================================*/
.flexslider {
  margin-bottom: 0;
  overflow-x: hidden; }

.flexslider-container {
  position: relative;
  overflow: hidden; }

.flexslider-homepage {
  overflow: hidden; }

.slider-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #fff !important;
  color: #252525;
  font-size: 30px;
  padding: 10px 20px; }

.slider-caption a {
  text-decoration: none; }

.slider-caption h4, .slider-caption .h4 {
  margin-bottom: 0; }

.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("//cdn.shopify.com/s/files/1/2460/7349/t/20/assets/slider-arrows.png?v=146840779361393806721626920524") repeat scroll 0 0;
  margin: 0 0 0 -40px;
  left: -55px; }

.flex-direction-nav a.flex-next {
  background: url("//cdn.shopify.com/s/files/1/2460/7349/t/20/assets/slider-arrows.png?v=146840779361393806721626920524") 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; }

/*============================================================================
  #CAROUSEL
==============================================================================*/
.carousel-title {
  text-align: center;
  /* padding-left:36%; */
  padding-top: 20px;
  padding-bottom: 10px;
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif; }

.carousel-main-container {
  display: flex;
  justify-content: center;
  width: 100%; }

.carousel-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  position: relative;
  /* background-color:red; */ }

.carousel-cards-container {
  width: 95%;
  height: 350px;
  display: flex;
  align-items: baseline; }

.card-centeral {
  margin-top: 0px;
  height: 280px;
  padding: 1%; }

.card-central-image {
  padding: 5%; }

.card-no-central-image {
  padding: 12%;
  padding-top: 6%; }

/* .card-central-image{
   display:flex;
  align-items: flex-start;
  max-height: 100%;

  padding: 5%;
}
.card-no-central-image{
  display:flex;
  align-items: flex-start;
  max-height: 100%;
  padding: 12%;
  padding-top: 6%;
} */
.card-container {
  margin-top: 20px;
  margin-left: auto !important;
  margin-right: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 7px;
  border: 1px solid #D8D8D8;
  overflow: hidden;
  height: 260px;
  width: 75%;
  padding: 1%; }

.card-product-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  position: relative;
  padding-top: 2%; }

.card-product-name {
  position: absolute;
  bottom: 45%;
  font-weight: bold; }

.card-product-price {
  position: absolute;
  bottom: 35%; }

.card-product-button {
  position: absolute;
  border: 1px solid black;
  padding-left: 6%;
  padding-right: 6%;
  padding-bottom: 2%;
  padding-top: 2%;
  margin-bottom: 20px;
  cursor: pointer;
  bottom: 0%; }

.card-heart-icon {
  position: absolute;
  right: 0%;
  top: 0%;
  cursor: pointer;
  color: #D8D8D8;
  padding: 10px;
  z-index: 1; }

.card-heart-icon-active {
  color: red; }

.carousel-slider {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #F5B491;
  color: white;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  display: block;
  top: calc(50%-35px); }

.carousel-slider a {
  color: white; }

.carousel-slider:hover {
  background-color: #DD8B74; }

.carousel-list {
  display: flex; }

.hidden {
  visibility: hidden;
  display: none; }

.visible {
  visibility: visible;
  display: block; }

.hiddensoft {
  visibility: hidden; }

.visiblesoft {
  visibility: visible; }

.grid-view-item-image {
  margin-left: 10px;
  margin-right: 10px; }

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .carousel-cards-container {
    height: 260px; }

  .carousel-title {
    padding-left: 5% !important; }

  .card-container {
    width: 90%;
    height: 230px;
    border-radius: 3px;
    margin-left: 5%; }

  .card-product-image {
    /*     display:block; */
    position: absolute;
    top: 15%;
    width: 75%;
    padding-top: 15%; }

  .card-product-name {
    position: absolute;
    bottom: 40%;
    font-weight: bold; }

  .card-product-price {
    position: absolute;
    bottom: 31%; }

  .card-product-button {
    bottom: 0%;
    padding-bottom: 0%;
    padding-top: 0%;
    border: 1px solid #D0D0D0; }

  .carousel-slider {
    display: flex;
    width: 41px;
    height: 100px;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    color: black;
    background-color: white;
    border-radius: 0px;
    border: 1px solid #D8D8D8;
    margin-top: 23%; }

  .carousel-slider:hover {
    background-color: #E0DEDE; }

  .carousel-slider a {
    color: black; }

  .glider-prev {
    position: absolute;
    left: -8%; }

  .glider-next {
    position: absolute;
    right: -8%; } }
/*===================================================================================
                        TRY ON VIRTUAL
========================================================================================*/
.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  /*   height:55vh; */
  height: auto; }

.try-on-text {
  background-color: #FBEBDF;
  width: 50%;
  height: 100%;
  padding-left: 8%;
  padding-bottom: 5%;
  padding-top: 3%; }

.try-on-title {
  padding-top: 30px;
  font-size: 2.5em;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  font-style: normal;
  text-transform: none;
  font-family: "Gill Sans", "Gill Sans MT", "Alegreya", serif , sans-serif;
  padding-right: 12%; }

.try-on-content {
  width: 20em;
  font-size: 1.1rem;
  font-family: "Gill Sans", "Gill Sans MT", "Alegreya", serif , sans-serif;
  margin-bottom: 9%; }

.try-on-button {
  /*   
      color: #FFFFFF;
      
      font-size: 18px !important;
      font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif;*/
  padding: 2.5%;
  margin-right: 7%;
  margin-bottom: 3%;
  padding-right: 4%;
  padding-left: 4%;
  border-radius: 1.875rem;
  display: inline-block;
  padding: 10px 35px;
  letter-spacing: 1px;
  background: #f5b491;
  border: 2px solid #edc098;
  transition: .4s;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px; }

.try-on-button:hover, .try-on-button-footer:hover {
  /*     background-color:#DD8B74; */
  color: black;
  background: rgba(0, 0, 0, 0); }

.try-on-button:focus {
  /*     border: 1px solid #DD8B74; */ }

.try-on-privacy-policy-note {
  width: 50%;
  font-size: 0.8rem;
  margin-top: 5%; }

.try-on-privacy-policy-pop-up-link {
  color: #dd8b74;
  transition: 0.3s;
  cursor: pointer; }

.try-on-privacy-policy-pop-up-link:hover {
  color: #f5b491; }

.privacy-policy-popup {
  line-height: 1.1rem;
  font-size: 0.9rem;
  visibility: hidden;
  position: fixed;
  z-index: 1;
  padding-top: 3%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.2s ease-in;
  padding-bottom: 5%; }

.privacy-policy-popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 3%;
  border: 1px solid #888;
  width: 60%; }

.privacy-policy-popup.fade-in {
  visibility: visible;
  opacity: 1; }

/* Close privacy policy popup */
.close {
  color: black;
  float: right;
  margin-top: -20px;
  font-size: 26px;
  font-weight: bold;
  transition: 0.2s; }

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

.try-on-image {
  width: 50%;
  /*   height:100%; */
  background-color: #FBEBDF;
  position: relative; }

.mounted-image {
  opacity: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover";
  transition: opacity 150ms linear;
  transform: translate3d(0, 0, 0); }

.try-on-image--overlay {
  line-height: 0;
  text-align: center;
  position: absolute;
  overflow: hidden;
  height: 100%;
  bottom: 0%; }

.try-on-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around; }

.try-on-footer-image {
  margin-top: 7%;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center; }

.try-on-edit {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  z-index: 1;
  left: 92%;
  bottom: 4%;
  cursor: pointer;
  padding: 5px; }

.try-on-edit-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: white;
  z-index: 1;
  left: 84%;
  bottom: 17%;
  cursor: pointer; }

.try-on-edit-menu-retake {
  border: 1px solid black;
  padding: 2px 15px 2px 15px;
  border-bottom: 0;
  background-color: white; }

.try-on-edit-menu-delete {
  border: 1px solid black;
  padding: 2px 15px 2px 15px;
  background-color: white; }

.try-on-footer-title {
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 5px; }

.try-on-footer-text {
  font-size: 20px;
  margin-right: 30px;
  padding-left: 25%;
  text-align: center;
  width: 85%; }

.try-on-footer-carousel {
  justify-content: center;
  visibility: hidden; }

.try-on-footer-carousel-title {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center; }

.try-on-footer-carousel-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  height: 230px; }

.delete-modal-bg {
  width: 100%;
  height: 56%;
  top: 7em;
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

@media screen and (max-height: 900px) {
  .delete-modal-bg {
    height: 55.2%; }

  .retake-modal-bg {
    height: 55.2%; } }
.delete-modal-bg-mobile {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

.mobile-detele-modal-bg {
  width: 100%;
  height: 170%;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

.retake-modal-bg {
  width: 100%;
  height: 55%;
  position: absolute;
  top: 12%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

.retake-modal-bg-mobile {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

.modal-delete-product-view {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

.modal-retake-product-view {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

.overlay-vto {
  display: flex;
  align-items: center;
  position: relative;
  background-color: white;
  width: 50%;
  height: 50%;
  justify-content: center;
  flex-direction: column; }

.bg-active {
  visibility: visible;
  opacity: 1; }

.modal-close {
  font-size: 1.1rem;
  font-family: 'helvetica';
  display: flex;
  justify-content: center;
  /*   width: 33px;
    height: 33px; */
  width: 60px;
  height: 60px;
  align-items: center;
  /*   background-color:rgba(0,0,0,0.25); */
  border-radius: 50%;
  position: absolute;
  /*   top: 7px;
    right: 7px; */
  top: 0;
  right: 0;
  font-weight: bold;
  cursor: pointer;
  color: white; }

.modal-content {
  width: 80%;
  margin-left: 12.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 8%; }

.modal-content-product-view {
  width: 80%;
  margin-left: 12.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 35%; }

.modal-text-edit {
  font-size: 1.5rem;
  color: white;
  text-align: center; }

.modal-text-edit-ok {
  font-size: 1.5rem;
  color: white;
  text-align: center; }

.modal-edit-button {
  border-radius: 1.875rem;
  background: #f5b491;
  padding: 10px 35px;
  letter-spacing: 1px;
  border: 2px solid #edc098;
  transition: .4s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  color: white;
  text-align: center;
  width: 20%;
  height: 7%; }

.modal-edit-button:hover {
  color: black;
  background: rgba(0, 0, 0, 0); }

.try-on-image--overlay-hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s; }

.compability-scan {
  position: absolute;
  z-index: -1; }

.hidden-vto {
  display: none;
  visibility: hidden; }

.button-retry-vto {
  border-radius: 1.875rem;
  display: inline-block;
  padding: 10px 35px;
  letter-spacing: 1px;
  background: #f5b491;
  border: 2px solid #edc098;
  transition: .4s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  position: absolute;
  bottom: 2%;
  right: 22.5%;
  background-color: #F5B491;
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif;
  color: white;
  width: 35%; }

.button-retry-vto:hover {
  color: black;
  background: rgba(0, 0, 0, 0); }

/* This is your container for the Ditto.Scan iframe */
#scan {
  height: 600px; }

/* This is your container for the Ditto.Overlay iframe */
#overlay-img {
  width: 100%;
  height: 111%; }

#overlay-landing-img {
  width: 100%;
  height: 111%;
  position: absolute; }

#overlay-img-mobile {
  width: 100%;
  height: 100%;
  position: absolute; }

.overlay-img-scanned {
  overflow: hidden;
  line-height: 0;
  text-align: center;
  position: relative;
  visibility: visible;
  padding-right: 0%;
  left: 7.5%; }

.overlay-img-scanned-mobile {
  overflow: hidden;
  line-height: 0;
  text-align: center;
  position: relative;
  visibility: visible;
  padding-right: 0%; }

.hidden {
  visibility: hidden;
  display: none; }

.visible {
  visibility: visible;
  display: block; }

.carousel-hidden {
  visibility: hidden;
  display: none; }

.try-on-footer-image {
  margin-top: 7%;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center; }

.try-on-footer-title {
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 5px; }

.try-on-footer-carousel {
  justify-content: center;
  visibility: hidden;
  /* display:none; */ }

.central-card {
  height: 300px;
  margin-top: 0px; }

.container-mobile-postScan {
  flex-direction: column;
  width: 100%; }

.vh40 {
  height: 40vh; }

.collection-btn-container {
  display: none; }

.collection-btn-container-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  background-color: #fff;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 50px;
  width: 100%; }

.collection-btn-container span.btns.visible,
.collection-btn-container-mobile span.btns.visible {
  display: flex; }
  .collection-btn-container span.btns.visible button,
  .collection-btn-container-mobile span.btns.visible button {
    padding: 5px;
    height: 46px;
    border-radius: 0;
    outline: none; }

.btn-active {
  background-color: #F5B491;
  color: white;
  border: 1px solid #F5B491; }

.btn-inactive {
  border: 1px solid gray;
  color: black; }

.vtoBtn {
  display: inline-block; }
  .vtoBtn.hidden {
    display: none; }

.collection-btn-vto {
  background-color: #F5B491;
  color: #FFFFFF;
  border: 1px solid #F5B491;
  padding: 5px;
  padding-left: 6px;
  padding-right: 6px; }

.product-detail-button {
  width: 100%;
  background-color: #F5B491;
  color: #FFFFFF;
  padding: 5px;
  margin-right: 20px;
  font-size: 20px;
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif;
  border-radius: 20px;
  display: none; }

.product-detail-button:hover {
  background-color: #DD8B74; }

.product-detail-desktop-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: white; }

.product-detail-img {
  position: relative;
  bottom: 0%; }

.product-edit-logo {
  bottom: 3%;
  left: 92%; }

.product-edit-menu {
  left: 87%;
  bottom: 10%; }

.product-detail-mobile-container {
  width: 100%;
  padding-top: 100%;
  position: relative; }

.editLogo-mobile {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1;
  cursor: pointer;
  padding: 5px;
  right: 5%;
  bottom: 5%; }

.product-edit-menu-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: white;
  z-index: 1;
  left: 70%;
  bottom: 18%;
  cursor: pointer; }

.product-single-slider-container {
  position: relative; }

.product-single-prev {
  left: 0;
  position: absolute;
  cursor: pointer;
  font-size: 1.9em;
  padding-right: 10%;
  padding-left: 10%; }

.product-single-next {
  right: 0;
  position: absolute;
  cursor: pointer;
  font-size: 1.9em;
  padding-right: 10%;
  padding-left: 10%; }

/* Fix for owl carousel + try on carousel */
@media only screen and (min-width: 480px) and (max-width: 768px) {
  #product-images-mobile {
    display: none; } }
/*===============RESPONSIVE==========================================*/
/* Rules for mobile devices except tablets. */
@media only screen and (max-width: 600px) {
  #scan {
    width: 100%;
    height: auto; }

  .page-main--wrapper {
    margin: 0px;
    padding: 0px; }

  .container {
    flex-direction: column-reverse;
    width: 100%;
    margin-top: 17%; }

  .try-on-content {
    width: 100%;
    margin-bottom: 0%;
    font-size: 0.7em;
    text-align: center;
    padding: 0 2rem 3% 2rem; }

  .try-on-title {
    font-size: 27px;
    text-align: center;
    padding-bottom: 0px;
    /*       padding-top:0px; */
    padding-bottom: 0px;
    padding-right: 0%; }

  .try-on-text {
    background-color: #FBEBDF;
    width: 100%;
    padding-left: 8%;
    padding-right: 7%;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8%; }

  .try-on-privacy-policy-note {
    text-align: center;
    padding: 0 2rem 1rem 2rem;
    width: 100%; }

  .privacy-policy-popup-content {
    padding: 5%;
    padding-top: 8%;
    width: 80%; }

  .try-on-footer-text {
    padding-right: 10%; }

  .carousel-title {
    text-align: left; }

  .close {
    margin-top: -7%; }

  .try-on-text-postScan {
    background-color: white;
    width: 100%;
    padding-left: 8%;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

  .try-on-image {
    width: 100%;
    height: 450px;
    top: 10%; }

  .try-on-edit {
    width: 35px;
    height: 35px;
    left: 85%;
    bottom: 5%; }

  .try-on-edit-menu {
    width: 75px;
    height: 60px;
    left: 77%;
    bottom: 21%; }

  .btn-mobile {
    text-align: center;
    padding-top: 3%;
    /*       padding-left:3%; */ }

  .try-on-button-footer {
    background-color: #F5B491;
    font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif;
    text-align: center;
    padding: 2.5%;
    margin-top: 3%;
    padding-right: 4%;
    padding-left: 4%;
    border-radius: 1.875rem;
    display: inline-block;
    padding: 10px 35px;
    letter-spacing: 1px;
    border: 2px solid #edc098;
    transition: .4s;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px; }

  .try-on-button {
    font-size: 18px;
    margin-right: 0px;
    padding-right: 8%;
    padding-left: 8%; }

  .try-on-button-delete {
    border-radius: 1.875rem;
    display: inline-block;
    padding: 10px 35px;
    letter-spacing: 1px;
    background: #f5b491;
    border: 2px solid #edc098;
    transition: .4s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    /*     background-color: #F5B491;
        font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif;
        font-size: 0.8rem; */
    padding-top: 2%;
    padding-bottom: 2%;
    color: white;
    margin-right: 10%; }

  .try-on-button-delete:hover {
    color: black;
    background: rgba(0, 0, 0, 0); }

  .try-on-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }

  .modal-text-edit {
    font-size: 1.1rem;
    margin: 5% 5% 0% 5%; }

  .modal-text-edit-ok {
    font-size: 1.1rem; }

  .grid-view-item {
    margin-left: 5%; }

  .modal-content {
    width: 100%;
    margin-left: 0%;
    padding-top: 4%;
    margin-top: 0%; }

  .glider-dot {
    margin: 8% .3% .3% 3%; }

  .product-single-prev {
    margin-top: 2.8%;
    padding-left: 13%; }

  .product-single-next {
    margin-top: 2.8%; } }
/* Rules for iPhone-like devices in landscape mode. */
@media only screen and (orientation: landscape) and (max-width: 600px) {
  #scan {
    height: 280px; }

  #scan iframe {
    margin-top: -7%;
    height: 480px; } }
/*============================================================================
  #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: #636363; }

.footer-header {
  color: #636363;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", "HelveticaNeue", "Helvetica Neue", sans-serif, sans-serif;
  font-weight: bold; }

.footer-article,
.footer-content a,
.footer-article a {
  color: #767676; }

.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 a {
  color: #636363;
  transition: all 0.15s ease-in-out 0s; }

.social-media-footer ul li a:hover {
  color: #636363; }

.newsletter-footer input.footer-email-input, .footer-email-input,
.popup--body input#mce-EMAIL {
  border: none;
  border-bottom: 1px solid #636363;
  padding-left: 0px;
  background: #ffffff;
  color: #636363; }

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

.homepage-instagram-link-btn-wrapper {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  width: 100%; }

.homepage-hero-content-image-text-block--mobile {
  display: none; }

.homepage-instagram-link-btn-wrapper a,
.homepage-featured-box-btn,
.ajaxcart__footer .cart__checkout,
.shop-now-button,
.solid-peach-btn,
.homepage-featured-box-btn,
.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 {
  border-radius: 1.875rem;
  font-weight: 400;
  background: #3e3e3e;
  color: #ffffff;
  transition: all 0.15s ease-in-out 0s;
  display: inline-block;
  padding: 10px 35px;
  text-transform: none;
  letter-spacing: 1px;
  font-size: 12px; }

/* Payment Buttons */
#AddToCart,
.shopify-payment-button__button--unbranded, #add-prescription-btn {
  border-radius: 1.875rem;
  font-weight: 400;
  background: #3e3e3e;
  color: #ffffff;
  transition: all 0.15s ease-in-out 0s;
  display: inline-block;
  padding: 10px 35px;
  text-transform: none;
  letter-spacing: 1px;
  font-size: 12px;
  width: 100%;
  line-height: 1.42;
  border: 1px solid #3e3e3e;
  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-payment-button__button--unbranded:hover:not([disabled]),
  .shopify-payment-button__button--unbranded:active:not([disabled]),
  .shopify-payment-button__button--unbranded:focus:not([disabled]), #add-prescription-btn:hover:not([disabled]), #add-prescription-btn:active:not([disabled]), #add-prescription-btn:focus:not([disabled]) {
    background: #585858;
    color: white;
    border: 1px solid #585858; }

#AddToCart:hover,
.shopify-payment-button__button--unbranded:hover {
  background: #585858;
  color: white;
  border: 1px solid #585858; }

.shopify-payment-button__button--branded {
  border-radius: 1.875rem; }

.shopify-payment-button__more-options {
  font-size: 12px;
  width: 70%;
  margin: 16px 15% 0 15%; }

.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 {
  background: #efefef;
  color: #3e3e3e;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out; }

.paymentButtonsWrapper #AddToCart.add-to-cart--secondary:hover {
  background: white;
  color: #585858; }

.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: 768px) {
  .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: 768px) {
  .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; } }
/* Instagram Section */
.instagram-section-wrapper .homepage-sections-wrapper--dark .homepage-instagram-link-btn-wrapper a {
  background: white;
  color: black !important; }
  .instagram-section-wrapper .homepage-sections-wrapper--dark .homepage-instagram-link-btn-wrapper a:hover, .instagram-section-wrapper .homepage-sections-wrapper--dark .homepage-instagram-link-btn-wrapper a:active {
    background: #ebebeb; }

.homepage-instagram-link-btn-wrapper a:hover,
.homepage-instagram-link-btn-wrapper a:active,
.homepage-featured-box-btn:hover,
.shop-now-button:hover,
.solid-peach-btn: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 {
  background: #9f9f9f;
  color: #eeeeee; }

.onboarding--sold-out {
  margin-bottom: 40px; }

.footer-article a {
  text-decoration: underline; }

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

/*============================================================================
  #Onboarding
==============================================================================*/
.placeholder-noblocks {
  text-align: center; }

/*============================================================================
  #Mobile
==============================================================================*/
.mobile-advert {
  text-align: center; }

@media screen and (min-width: 768px) and (max-width: 769px) {
  .social-sharing {
    bottom: 0px;
    margin-top: 30px;
    opacity: 0.5;
    position: relative;
    right: 0px;
    text-align: left; }

  #ShopNowContainer .social-sharing {
    text-align: center; }

  .glider-dot {
    display: block;
    cursor: pointer;
    color: #ccc;
    border-radius: 999px;
    background: #ccc;
    width: .8em;
    height: .8em;
    margin: 8% .3% .3% 3%; } }
@media screen and (min-width: 768px) and (max-width: 769px) {
  .homepage-hero-advert {
    padding: 15px; }

  .homepage-hero-advert .h3 {
    font-size: 16px; }

  .glider-dot {
    display: block;
    cursor: pointer;
    color: #ccc;
    border-radius: 999px;
    background: #ccc;
    width: .8em;
    height: .8em;
    margin: 3% .3% .3% 3%; } }
@media only screen and (max-width: 768px) {
  #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; }

  .bottom--footer .payment-icons {
    margin-top: 20px; }

  .site-nav__link {
    color: #000000; }

  .image-gallery-wrapper .image-bar .grid__item:first-child {
    margin-top: 0; }

  .grid__item.mobile--no-top-margin,
  .image-with-text-overlay-wrapper .homepage-featured-content-box {
    margin-top: 0; }

  .notification-bar__message {
    padding: 0 30px; }

  .product__meta--sku,
  .product__meta--vendor {
    text-align: left; }

  .collection-sidebar-filter .collection-sidebar-filter-select {
    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: #edeef0; }

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

  .image-with-text-overlay-wrapper--white h2.homepage-sections--title:after, .image-with-text-overlay-wrapper--white .homepage-sections--title.h2:after {
    background: black; }

  .no-menu-mobile {
    display: none; }

  .collection-sidebar-filter {
    width: 50%;
    display: inline-block;
    float: left; }

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

  #popup .popup--image-wrapper {
    text-align: left; }

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

  .newsletter-footer input.footer-email-input {
    border-style: solid;
    border-width: 1px;
    padding-left: 10px; }

  .homepage-instagram-indiv {
    margin-top: 0 !important; }

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

  .product-page-related-products .product-grid--price {
    margin-bottom: 30px; }

  .collection-sidebar-mobile-wrapper {
    text-align: center;
    margin-bottom: 50px; }
    .collection-sidebar-mobile-wrapper img {
      max-width: 300px;
      margin: 0 auto; }

  .template-collection .breadcrumb {
    display: none; }

  .collection-main-central-header > div {
    display: table-cell;
    float: none;
    padding-bottom: 60px; }

  .collection-central-description-block--mobile {
    margin-bottom: 50px; }

  .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 {
    border-top: 1px solid gray;
    border-bottom: none;
    border-left: none;
    border-right: none; }

  .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: 992px) {
  .shop-now-wrapper {
    display: none !important; } }
@media only screen and (max-width: 480px) {
  .footer-header {
    padding-top: 30px;
    border-top: 1px solid #e6e6e6; }

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

  .collection-main-body-inner .grid__item {
    margin-top: 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, .collection-sidebar-filter, .collection-main-body .collection-main-body-inner div {
    margin-bottom: 0; }

  .grid-view-item--desc-wrapper {
    margin-top: 0px; }

  /*#sort-by{
  	padding-right: 0;
    width: 99px;
  }*/ }
/* Sticky */
.is_stuck {
  z-index: 6; }

.helper-section {
  display: inline-block; }

.helper-note {
  z-index: 8005; }

.account--top-margin {
  margin-top: 50px; }

.newsletter--popup-full-width {
  width: 100%; }

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

.helper-note .h3 {
  color: #fff;
  font-family: "ProximaNovaLight","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: initial;
  margin-left: 40px;
  text-transform: none; }

.shop-now-button {
  position: absolute;
  transition: all ease-in-out 250ms;
  top: 0;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 0); }

.rte .solid-peach-btn {
  text-decoration: none; }

.solid-peach-btn {
  background: #f5b491;
  border: 2px solid #edc098;
  transition: .4s;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px; }

.solid-peach-btn:hover {
  color: black;
  background: rgba(0, 0, 0, 0); }

.grid-view-item:hover .shop-now-button {
  top: -80px;
  opacity: 1; }

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

.shop-now-content {
  background-color: #fefefe;
  margin-top: 15%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; }

#ShopNowContainer {
  margin-top: -47px; }

#ShopNowContainer .product-meta-header .push--large--one-half {
  left: auto; }

.product-meta-header .product__meta--vendor,
.product-meta-header .product__meta--sku {
  margin-top: 0; }

#ShopNowContainer .grid__item {
  width: 100%; }

#ShopNowContainer .owl-theme .owl-controls {
  margin-top: 0; }

#ShopNowContainer .product-details-wrapper {
  background: none; }

#ShopNowContainer .product-description,
#ShopNowContainer .product-description a {
  color: #000; }

#ShopNowContainer .product-description ul.tabs li a {
  padding: 0 10px; }

#ShopNowContainer .form-vertical select {
  display: inline-block;
  width: 100%; }
  #ShopNowContainer .form-vertical select.original-select {
    display: none; }

#ShopNowContainer .product-description ul.tabs li {
  margin-right: 0; }

#ShopNowContainer .js-qty-wrapper {
  text-align: center; }

#ShopNowContainer .js-qty-wrapper .js-qty, #ShopNowContainer .js-qty-wrapper .ajaxcart__qty {
  display: inline-block; }

#ShopNowContainer .product-details-wrapper form {
  width: 50%;
  margin: 0px auto; }

#ShopNowContainer .nonajax-quantity-selector {
  display: inline-block; }

#ShopNowContainer .quantity-selector {
  width: 100%; }

.pagination-infinite ul {
  display: none; }

/*
   Swatches Styles
*/
.swatch {
  margin: 1em 0; }

/* Label */
.swatch .header {
  font-size: 11px;
  text-transform: uppercase;
  color: #404040;
  margin: 20px 0 10px 0;
  display: inline-block;
  width: 100%; }

/* Hide radio buttons.*/
.swatch input[type="radio"] {
  display: none; }

.swatch label {
  min-width: 50px !important;
  margin: 0;
  border: gray 1px solid;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap; }

.swatch-element label {
  padding: 8px 20px; }

.color.swatch-element label {
  padding: 0;
  width: 50px;
  height: 50px;
  float: left;
  border-radius: 100px;
  border: 4px solid #efefef; }

.color.swatch-element input:checked + label {
  border: 2px solid #3e3e3e; }

.swatch input:checked + label {
  background: #3e3e3e;
  color: #ffffff;
  border-color: transparent;
  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 {
  float: left;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  /* Spacing between buttons */
  margin: 0px 10px 10px 0;
  /* To position the sold out graphic and tooltip */
  position: relative; }

/* 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=60);
  /* internet explorer */
  -khtml-opacity: 0.6;
  /* khtml, old safari */
  -moz-opacity: 0.6;
  /* mozilla, netscape */
  opacity: 0.6;
  /* fx, safari, opera */ }

/* Tooltips */
.swatch .tooltip {
  text-align: center;
  background: gray;
  color: #fff;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  left: -23px;
  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 gray 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; }

.search-drawer > .input-group {
  padding: 30px 0; }

.indiv-search-listing-grid {
  padding-bottom: 10px; }

#search-results {
  text-align: left;
  padding-left: 30px; }
  #search-results hr {
    margin: 5px 0; }
  #search-results h2, #search-results .h2 {
    font-size: 14px;
    margin: 20px 0;
    opacity: 0.5;
    text-transform: uppercase;
    font-weight: bold; }

#search-show-more {
  color: white;
  margin: 30px 0; }

/* 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 input#newsletter_text {
    width: 72%; }
  .newsletter--section.homepage-sections-wrapper--white input#newsletter_text {
    border: solid 1px #ccc; }
  @media only screen and (min-width: 768px) {
    .newsletter--section {
      padding: 40px;
      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: 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: black;
  padding: 7px 0; }

#newsletter_text {
  display: inline-block;
  margin-bottom: 0px;
  color: #333333;
  height: 37px;
  border: 0;
  padding: 10px; }

form#contact_form #newsletter-wrapper #newsletter_submit {
  margin: 0;
  border: 0 none;
  cursor: pointer;
  display: inline-block;
  background: none;
  height: 36px;
  color: black; }

.homepage-sections-wrapper--dark form#contact_form #newsletter-wrapper #newsletter_submit {
  color: white; }

.homepage-sections-wrapper--accent form#contact_form #newsletter-wrapper #newsletter_submit {
  color: white; }

input#newsletter_submit[type="submit"] {
  font-family: FontAwesome; }

/*================ Vendor-specific styles ================*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  font-size: 1em;
  position: absolute;
  line-height: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: center;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

.mfp-image-holder img {
  padding: 1em 0 2em 5em;
  width: 40%; }

.mfp-image-holder {
  display: inline-block;
  width: 100%;
  padding: 40px;
  margin: 0 auto; }

.mfp-image-text {
  padding: 2em;
  border: 1px solid black;
  float: left;
  font-family: "Gill Sans", "Gill Sans MT", "Alegreya", serif , sans-serif;
  font-size: 0.85em;
  text-align: left;
  width: 50%;
  line-height: 1; }

.mfp-image-text span {
  display: block; }

.mfp-image-text .sizing-title {
  font-family: inherit;
  font-size: 1.5em;
  background: linear-gradient(to top, rgba(255, 204, 176, 0.97) 50%, transparent 50%); }

.mfp-image-text .sizing-numbers {
  font-size: 1.1em;
  text-align: center; }

.mfp-image-text .sizing-frame-number {
  font-size: 1.1em;
  text-align: center; }

.mfp-image-text ol {
  list-style-type: lower-roman; }

ol.no-list-style {
  list-style-type: none; }

.mfp-image-text .sizing-letters {
  font-style: italic;
  text-align: center; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; }

  .mfp-image-text {
    clear: both;
    width: 100%;
    margin: auto auto 2em auto; }

  .mfp-image-holder img {
    width: 80%;
    padding-top: 1em;
    margin: 0 auto; }

  .mfp-image-holder .mfp-image-div span {
    padding-top: 4em; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.retake-modal-bg {
  top: 7em;
  height: 56%; }

@media (min-width: 801px) and (max-width: 1030px) {
  .retake-modal-bg {
    top: 7em; } }
@media (min-width: 611px) and (max-width: 800px) {
  .retake-modal-bg {
    top: 12.5em; } }
@media (min-width: 534px) and (max-width: 600px) {
  .retake-modal-bg {
    top: 12.5em;
    height: 34.5em; } }
@media (min-width: 501px) and (max-width: 533px) {
  .retake-modal-bg {
    top: 12.5em;
    height: 33.5em; } }
@media (min-width: 501px) and (max-width: 500px) {
  .retake-modal-bg {
    top: 12.5em;
    height: 33.5em; } }
/* WEBYZE.COM - CSS */
.collectionSwatches {
  text-align: center;
  background: transparent; }

.collectionSwatches span.swatchColor {
  width: 20px !important;
  height: 20px !important;
  margin: 3px 3px !important; }

.collectionSwatches span.swatchColor > div {
  width: 20px !important;
  height: 20px !important; }

.collectionSwatches span.swatchColor.swatchType_two_colors > div > div {
  width: 10px !important;
  height: 20px !important; }

.collectionSwatches span.swatchColor > div {
  width: 20px !important;
  height: 20px !important;
  background-size: 20px 20px !important; }

.collectionSwatches select, .collectionSwatches label {
  display: none; }

.collectionSwatches .webyzeTooltip {
  display: none !important; }

element.style {
  visibility: visible;
  animation-name: fadeInUp; }

@media only screen and (max-width: 480px) {
  .collectionSwatches {
    margin-bottom: 75px !important; } }
#cb-remix.template-collection .collection-central-description-block .page--title,
#cb-remix.template-collection .collection-main-body .collection-main-body-inner div .product-grid--title a {
  font-family: "VCR OSD Mono";
  text-transform: uppercase; }

#cb-remix.template-collection .collection-central-description-block .collection-sidebar__description,
#cb-remix.template-collection .collection-main-body .collection-main-body-inner div {
  font-family: "Bebas Neue"; }
