@charset "UTF-8";
/*============================================================================
  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
  #Reponsive 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
==============================================================================*/
/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #General Variables
==============================================================================*/
/*================ Typography ================*/
@font-face {
  font-family: 'icons';
  src: url("http://cdn.shopify.com/s/files/1/0281/3837/3173/t/6/assets/icons.eot?v=15839920060943556384");
  src: url("http://cdn.shopify.com/s/files/1/0281/3837/3173/t/6/assets/icons.eot?v=15839920060943556384#iefix") format("embedded-opentype"), url("http://cdn.shopify.com/s/files/1/0281/3837/3173/t/6/assets/icons.woff?v=16994515853337970273") format("woff"), url("http://cdn.shopify.com/s/files/1/0281/3837/3173/t/6/assets/icons.ttf?v=15269834025022278972") format("truetype"), url("http://cdn.shopify.com/s/files/1/0281/3837/3173/t/6/assets/icons.svg?v=9550059261851878961#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

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

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

html, body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.two-thirds {
  width: 66.666%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 600px) {
  /** 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: 601px) and (max-width: 950px) {
  /** 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: 950px) {
  /** 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: 951px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 601px) and (max-width: 950px) {
  /* 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: 950px) {
  /* 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: 951px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: white; }

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

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

.main-content {
  display: block;
  padding-bottom: 60px; }

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

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.visually-hidden, .supports-fontface .icon-fallback-text .fallback-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*============================================================================
  #Typography
==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  color: #555555;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #555555; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

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

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

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

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

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

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

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

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.8rem; }

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 #e3e3e3; }
  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 #e3e3e3;
  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: 951px) {
  .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: 951px) and (max-width: 950px) {
    .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: 601px) {
  .section-header__right label + select,
  .section-header__right .collection-view {
    margin-left: 15px; } }

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

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

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

/*============================================================================
  #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: 2em; }
    .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
      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: #555555;
  text-decoration: none;
  background: transparent; }

a:hover,
a:focus {
  color: #7b7b7b; }

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: 3px;
  letter-spacing: 0.01em;
  text-transform: capitalize !important;
  font-weight: 500;
  font-size: 12px;
  /*================ Set primary button colors - can override later ================*/
  background-color: #b75b58;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #9a4542;
    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: #763533;
    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: #b75b58; }
  .btn--secondary:hover,
  .rte .btn--secondary:hover {
    background-color: #9a4542;
    color: white; }
  .btn--secondary:active, .btn--secondary:focus,
  .rte .btn--secondary:active,
  .rte .btn--secondary:focus {
    background-color: #763533;
    color: white; }

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

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

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

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

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

ol {
  list-style: decimal; }

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

li {
  margin-bottom: 0.25em; }

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

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

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

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

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

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

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

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

.r1_cart .table-wrap {
  overflow: initial;
  -webkit-overflow-scrolling: auto; }

th {
  font-weight: bold; }

th, td {
  text-align: center;
  padding: 15px;
  border: 1px solid #e3e3e3; }

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

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

  .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #e3e3e3; } }
/*============================================================================
  #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; }

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

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #e3e3e3;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 3px; }
  input:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #cacaca; }
  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("http://cdn.shopify.com/s/files/1/0281/3837/3173/t/6/assets/ico-select.svg?v=1334342254594768798");
  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: 3px 0 0 3px; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--secondary {
    border-radius: 0 3px 3px 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

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

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

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

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

/*============================================================================
  #Icons
==============================================================================*/
.icon-fallback-text .icon {
  display: none; }
  .supports-fontface .icon-fallback-text .icon {
    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-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-stripe:before {
  content: "\53"; }

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

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

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

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

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

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

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

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

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

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

.site-header__logo {
  text-align: center;
  margin: 0 auto;
  max-width: 100%; }
  @media screen and (min-width: 951px) {
    .site-header__logo {
      text-align: left; } }
  .site-header__logo a,
  .site-header__logo a:hover,
  .site-header__logo a:focus {
    text-decoration: none; }
  .site-header__logo a, .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0 auto; }

.site-header__logo-link {
  max-width: 180px;
  margin: 0 auto; }
  .site-header__logo-link.scroll-small {
    width: 144px; }

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

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

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

/*============================================================================
  #Site Nav and Dropdowns
==============================================================================*/
.nav-bar {
  background-color: white; }

.site-nav, .site-nav--mobile {
  font-size: 0.85714em;
  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; }

/*================ 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: #333333; }
  .site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #0d0d0d; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    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: 5; }
  .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: white; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus {
      background-color: #e6e6e6; }

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

/*============================================================================
  #Mobile Nav
  - List of items inside the mobile drawer
==============================================================================*/
.mobile-nav {
  margin: -15px -15px 0 -15px; }
  .mobile-nav li {
    margin-bottom: 0; }

.mobile-nav__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: #f6f6f6; }
  .mobile-nav__item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #e9e9e9; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }
  .mobile-nav__item.highlight a {
    color: #B03F39; }

.mobile-nav__item a {
  display: block; }

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

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

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

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

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

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

.mobile-nav__sublist {
  margin: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .mobile-nav--expanded + .mobile-nav__sublist {
    visibility: visible;
    max-height: 1600px;
    transition: all 700ms cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .mobile-nav__sublist .mobile-nav__item {
    /*  text-transform: uppercase; */ }
    .mobile-nav__sublist .mobile-nav__item:after {
      top: 0;
      bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    padding-left: 30px;
    font-weight: normal;
    font-size: 12px; }

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

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

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

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

#PageContainer {
  overflow: hidden; }

.is-moved-by-drawer {
  -webkit-transform: translateZ(0);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .js-drawer-open-left .is-moved-by-drawer {
    -ms-transform: translateX(300px);
    -webkit-transform: translateX(300px);
    transform: translateX(300px); }
  .js-drawer-open-right .is-moved-by-drawer {
    -ms-transform: translateX(-300px);
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px); }

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

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

.drawer__title {
  width: 100%; }

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

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

/*============================================================================
  #Site Footer
==============================================================================*/
.site-footer {
  padding: 30px 0;
  color: #636363; }
  @media screen and (min-width: 951px) {
    .site-footer {
      padding: 60px 0; } }

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

/*============================================================================
  #Collection Filters
==============================================================================*/
.filter--active {
  font-weight: bold; }

/*============================================================================
  #Breadcrumbs
==============================================================================*/
.breadcrumb {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif; }
  @media screen and (max-width: 950px) {
    .breadcrumb {
      margin-bottom: 10px;
      margin-top: 15px; } }
  .breadcrumb a,
  .breadcrumb span {
    display: inline-block;
    padding: 0 3px;
    color: #333; }
    .breadcrumb a:first-child,
    .breadcrumb span:first-child {
      padding-left: 0; }

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

.product-single__photos {
  margin-bottom: 30px; }

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

/*============================================================================
  #Notes and Form Feedback
==============================================================================*/
.note,
.errors {
  border-radius: 3px;
  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: #e3e3e3; }

.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 #e3e3e3; }
  .cart__row:first-child {
    margin-top: 0; }
  .cart__row:first-child {
    padding-top: 0; }
  .cart__row .js-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: 951px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    display: block;
    max-width: 100%; }

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

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

.cart__remove {
  display: block; }

/*============================================================================
  #Ajax Cart Styles (conditionally loaded)
==============================================================================*/
/* HTML for the carousel
	<div class="flickity-carousel-basic" style="width:100%;">
	  <div class="carousel-cell"><img src="https://via.placeholder.com/1920x800?text=First"/></div>
	  <div class="carousel-cell"><img src="https://via.placeholder.com/1920x800?text=Second"/></div>
	  <div class="carousel-cell"><img src="https://via.placeholder.com/1920x800?text=Third"/></div>
	</div>
*/
.carousel-cell {
  width: 100%;
  margin-right: 0px; }

.flickity-page-dots {
  bottom: 20px !important; }

/* white circles */
.flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: transparent;
  border: 2px solid white; }

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: white !important; }

/* no circle */
#icon not showing up on dark background so commented this out
.flickity-button-icon {
  fill: white !important; }

header {
  z-index: 100;
  width: 100%;
  position: fixed;
  background-color: white; }
  @media screen and (max-width: 950px) {
    header {
      position: relative;
      display: none; } }

.mobile-nav-bar {
  display: none; }
  @media screen and (max-width: 950px) {
    .mobile-nav-bar {
      position: relative;
      display: block; } }

ul.tmenu_nav {
  margin: 0 !important; }

.tmenu_alignment_center .tmenu_nav {
  justify-content: space-between !important; }

.tmenu_app ul.tmenu_nav:first-child a.tmenu_item_link {
  padding-left: 0 !important; }

.tmenu_app ul.tmenu_nav:last-child a.tmenu_item_link {
  padding-right: 0 !important; }

.header-top {
  background-color: #000;
  padding: 5px 0;
  margin-bottom: 25px;
  font-size: 12px;
  color: #fff; }
  .header-top a {
    color: #fff; }

.header-top-scroll {
  font-size: 12px;
  display: none;
  margin-top: 10px; }

.announcement-bar {
  background-color: #000;
  padding: 8px 0;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  display: none; }
  .announcement-bar.large--hide {
    font-size: 15px; }
  .announcement-bar:not(.active-bar) {
    display: none !important; }
  .announcement-bar a {
    color: #fff; }
  .announcement-bar .flickity-prev-next-button {
    width: 20px;
    height: 20px; }
  .announcement-bar .flickity-page-dots {
    display: none; }

.mega-menu-bold a span {
  font-weight: bold !important; }

.main-nav-section-1 {
  position: relative; }

.main-nav-section-2 {
  position: relative;
  margin-bottom: 10px;
  margin-top: 20px; }
  .main-nav-section-2.scroll-small {
    margin-bottom: 0px;
    margin-top: 5px; }

.main-nav-section-3 {
  position: relative;
  border-bottom: 2px solid #f0f0f0; }

.home-section {
  margin: 20px 0; }

.promo-slider {
  margin-top: 0; }
  .promo-slider .desktop {
    display: none; }
  .promo-slider .mobile {
    display: block; }
  @media screen and (min-width: 600px) {
    .promo-slider .desktop {
      display: block; }
    .promo-slider .mobile {
      display: none; } }
  .promo-slider .home-slider-viewport {
    width: 100%;
    overflow: hidden;
    height: 0px; }
    .promo-slider .home-slider-viewport img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
  .promo-slider .hsv-m {
    padding-top: 150%; }
  .promo-slider .hsv-d {
    padding-top: 39%; }

.promo-single {
  width: 100%;
  margin-bottom: 50px;
  margin-top: 50px; }
  .promo-single img {
    display: block;
    width: auto;
    margin: 0 auto;
    max-width: 100%;
    width: 100%; }
  .promo-single img.desktop {
    display: none; }
  .promo-single img.mobile {
    display: block; }
  @media screen and (min-width: 950px) {
    .promo-single img.desktop {
      display: block; }
    .promo-single img.mobile {
      display: none; } }
  .promo-single.with-line h4, .promo-single.with-line .h4 {
    width: 100%;
    text-align: center;
    line-height: 0.1em;
    margin: 10px 0 20px;
    font-size: 32px; }
    .promo-single.with-line h4 span, .promo-single.with-line .h4 span {
      background: #fff;
      padding: 0 20px; }

@media screen and (min-width: 800px) {
  .promo-double .grid__item.left {
    padding-right: 25px; }
  .promo-double .grid__item.right {
    padding-left: 25px; } }
.promo-double .img {
  width: 100%; }
.promo-double h2, .promo-double .h2 {
  font-size: 35px; }
.promo-double p {
  text-align: center;
  font-size: 25px; }
  .promo-double p.links {
    font-size: 18px; }
    .promo-double p.links a {
      text-decoration: underline; }
.promo-double .undertext {
  padding: 5px 0; }
  .promo-double .undertext p {
    margin: 0;
    font-size: 18px; }
    .promo-double .undertext p strong {
      font-size: 24px; }

.no-wrapper-wrapper {
  text-align: center; }
  .no-wrapper-wrapper h2, .no-wrapper-wrapper .h2 {
    margin-bottom: 30px;
    margin-top: 30px; }
  @media screen and (min-width: 1340px) {
    .no-wrapper-wrapper {
      height: 500px; }
      .no-wrapper-wrapper .no-wrapper {
        max-width: 100vw;
        width: 100vw;
        margin-left: calc(((100vw - 1300px) / 2)* -1);
        position: absolute; } }

.collection-grid {
  flex-wrap: wrap;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%; }
  .collection-grid p {
    font-size: 16px; }
  .collection-grid img {
    display: block;
    margin: 0 auto;
    max-width: 200px; }
  .collection-grid img {
    max-width: 100%;
    margin-bottom: 20px; }
  .collection-grid .collection-grid-item {
    width: 16%;
    min-width: 180px; }
    @media screen and (max-width: 950px) {
      .collection-grid .collection-grid-item {
        width: 33%;
        min-width: unset; } }
    .collection-grid .collection-grid-item p a {
      text-transform: uppercase; }

.r1_footer {
  background-color: #f7f8f9;
  padding: 0 !important; }
  .r1_footer .mobile-footer {
    display: none; }
  .r1_footer .desktop-footer {
    display: block; }
  .r1_footer ul {
    list-style: none;
    margin: 0 0; }
  .r1_footer .footer-grid-wrapper {
    padding: 30px 30px;
    display: flex; }
  .r1_footer .footer-grid {
    height: 100%;
    display: flex;
    justify-content: center; }
    .r1_footer .footer-grid h3, .r1_footer .footer-grid .h3 {
      font-family: Poppins;
      text-transform: capitalize;
      font-size: 12px !important;
      font-weight: 600;
      color: #000;
      margin-bottom: 15px; }
    .r1_footer .footer-grid li a {
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 400;
      line-height: 30px; }
    .r1_footer .footer-grid .footer-column {
      padding-bottom: 0;
      height: 100%; }
  .r1_footer .footer-grid.left {
    width: 75%; }
    .r1_footer .footer-grid.left .footer-column {
      width: 33%; }
  .r1_footer .footer-grid.right {
    width: 25%; }
    .r1_footer .footer-grid.right .footer-column {
      width: 100%; }
  .r1_footer .footer-bottom {
    width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: stretch; }
    .r1_footer .footer-bottom .right {
      height: 100%;
      width: 25%;
      font-size: 10px;
      font-weight: 400;
      text-align: right; }
    .r1_footer .footer-bottom .left {
      height: 100%;
      font-size: 10px;
      font-weight: 400;
      width: 75%;
      text-align: left; }
      .r1_footer .footer-bottom .left span {
        padding-left: 5px;
        padding-right: 5px; }
    @media screen and (max-width: 800px) {
      .r1_footer .footer-bottom {
        margin-top: 15px;
        flex-wrap: wrap; }
        .r1_footer .footer-bottom .left {
          width: 100%;
          text-align: center; }
        .r1_footer .footer-bottom .right {
          width: 100%;
          text-align: center; } }
  .r1_footer .footer-icons {
    display: flex;
    align-items: flex-start; }
    .r1_footer .footer-icons img {
      margin: 3px; }
  @media screen and (max-width: 800px) {
    .r1_footer .desktop-footer {
      display: none; }
    .r1_footer .mobile-footer {
      display: block; }
    .r1_footer .footer-grid-wrapper {
      height: auto;
      flex-wrap: wrap; }
    .r1_footer .footer-grid {
      flex-wrap: wrap; }
    .r1_footer .footer-grid.left {
      width: 100% !important; }
      .r1_footer .footer-grid.left .footer-column {
        width: 100% !important; }
    .r1_footer .footer-grid.right {
      width: 100% !important; }
      .r1_footer .footer-grid.right .footer-column {
        width: 100% !important; } }

@media screen and (max-width: 800px) {
  .footer-wrapper {
    padding: 0; } }

footer ul.accordion li a.toggle {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start; }
  footer ul.accordion li a.toggle .left {
    width: 75%; }
  footer ul.accordion li a.toggle .right {
    width: 25%;
    text-align: right; }
  footer ul.accordion li a.toggle.no-underline {
    border: none; }

ul.accordion {
  list-style: none;
  padding: 0; }
  ul.accordion .inner {
    padding-left: 1em;
    overflow: hidden;
    display: none; }
  ul.accordion li {
    margin: .5em 0; }
    ul.accordion li a.toggle {
      width: 100%;
      display: block;
      padding: .75em;
      transition: background .3s ease; }

/*Sidebar Filter CSS*/
.narrow-by-list dd ol li {
  position: relative;
  line-height: 30px;
  display: block;
  float: none; }

.narrow-by-list dd ol.swatch-list li .item {
  display: inline-block;
  cursor: pointer; }

.narrow-by-list .input-container {
  display: none;
  height: 20px;
  position: relative;
  width: 20px;
  color: #d1d1d1;
  margin-top: 0;
  vertical-align: middle; }

.narrow-by-list .input-container input {
  height: 20px;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 20px;
  z-index: 99; }

.narrow-by-list .input-container .input-skin {
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
  line-height: 20px; }

.narrow-by-list dd ol.swatch-list li .item span.name {
  line-height: 32px; }

dd.sidebar-content.layer-filter {
  margin: 0px; }

dd.sidebar-content.layer-filter ol {
  margin: 0px; }

.r1_product .wishlist-icon-wrapper {
  float: right;
  display: inline-block; }
  .r1_product .wishlist-icon-wrapper img {
    display: inline-block;
    vertical-align: middle;
    height: 25px; }
.r1_product h1, .r1_product .h1 {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bolder;
  margin-bottom: 5px; }
  @media screen and (min-width: 950px) {
    .r1_product h1, .r1_product .h1 {
      font-size: 32px; } }
.r1_product .product-photos-desktop {
  position: relative;
  display: flex;
  max-height: 700px;
  overflow: hidden; }
  .r1_product .product-photos-desktop .thumbnail-col {
    width: 139px; }
    .r1_product .product-photos-desktop .thumbnail-col .product-single__thumbnails {
      list-style: none;
      margin: 0;
      padding: 2px; }
      .r1_product .product-photos-desktop .thumbnail-col .product-single__thumbnails li {
        margin: 0;
        margin-bottom: 2px; }
      .r1_product .product-photos-desktop .thumbnail-col .product-single__thumbnails .product-single__thumbnail {
        width: 100%;
        overflow: hidden; }
  .r1_product .product-photos-desktop .image-col {
    width: calc(100% - 67px); }
    .r1_product .product-photos-desktop .image-col .product-photo-wrap {
      max-height: 950px;
      position: relative;
      width: 100%;
      height: 100%; }
    .r1_product .product-photos-desktop .image-col .product-img-wrap {
      max-height: 950px;
      overflow-y: hidden;
      position: relative;
      width: 100%;
      height: 100%; }
.r1_product .product-photos-mobile {
  display: none;
  margin-bottom: 30px; }
  .r1_product .product-photos-mobile .swiper-container .swiper-slide {
    padding-top: 130%; }
    .r1_product .product-photos-mobile .swiper-container .swiper-slide .swiper-zoom-container, .r1_product .product-photos-mobile .swiper-container .swiper-slide .swiper-video-container {
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
  .r1_product .product-photos-mobile .swiper-container.loaded .swiper-slide {
    padding-top: 0; }
@media screen and (max-width: 950px) {
  .r1_product .product-photos-desktop {
    display: none; }
  .r1_product .product-photos-mobile {
    display: block;
    margin-top: 25px; } }
@media screen and (max-width: 950px) {
  .r1_product .r1_product-info {
    padding-left: 30px;
    padding-right: 0px; } }
.r1_product .r1_product-info .pricing {
  font-size: 20px;
  color: #666; }
  .r1_product .r1_product-info .pricing #ComparePrice,
  .r1_product .r1_product-info .pricing #ComparePrice2 {
    text-decoration: line-through;
    color: #949494; }
.r1_product .r1_product-info .accent-text {
  color: #b75b58;
  font-weight: bold;
  font-size: 14.4px; }
.r1_product .r1_product-info .promo-text {
  margin-top: 40px;
  margin-bottom: 40px; }
.r1_product .r1_product-info .accent-2-text {
  color: #666;
  font-size: 14.4px; }
.r1_product .r1_product-info .accent-3-text {
  font-size: 12px; }
  .r1_product .r1_product-info .accent-3-text a {
    text-decoration: underline; }
.r1_product .r1_product-info .variant-btn-selector {
  display: flex;
  position: relative;
  margin-bottom: 10px; }
  .r1_product .r1_product-info .variant-btn-selector .variant-btn {
    font-weight: 500;
    font-size: 12px;
    padding: 5px 10px;
    width: 50px;
    text-align: center;
    margin-right: 5px;
    background: #DDDDDD; }
    .r1_product .r1_product-info .variant-btn-selector .variant-btn.stretch {
      width: auto;
      padding-left: 5px;
      padding-right: 5px; }
    .r1_product .r1_product-info .variant-btn-selector .variant-btn.selected {
      color: #555555;
      opacity: 1;
      border: 1px solid #000000; }
      .r1_product .r1_product-info .variant-btn-selector .variant-btn.selected.out-of-stock {
        color: #BBBBBB;
        background: rgba(221, 221, 221, 0.75);
        opacity: 0.5; }
    .r1_product .r1_product-info .variant-btn-selector .variant-btn.disabled {
      color: #BBBBBB;
      background: rgba(221, 221, 221, 0.75);
      opacity: 0.5; }
    .r1_product .r1_product-info .variant-btn-selector .variant-btn.hidden {
      display: none; }
    .r1_product .r1_product-info .variant-btn-selector .variant-btn:hover:not(.disabled) {
      border: 1px solid #000000;
      color: #555555; }
    .r1_product .r1_product-info .variant-btn-selector .variant-btn:hover:not(.selected) {
      cursor: pointer; }
    .r1_product .r1_product-info .variant-btn-selector .variant-btn.out-of-stock {
      color: #949494;
      background-color: #eee;
      border-color: #949494; }
.r1_product .r1_product-info .variant-swatch-selector {
  display: flex;
  position: relative;
  margin-bottom: 10px; }
  .r1_product .r1_product-info .variant-swatch-selector .variant-swatch {
    padding: 2px;
    margin-right: 5px;
    width: 32px;
    height: 32px;
    border: 1px solid #DDDDDD;
    border-radius: 50px; }
    .r1_product .r1_product-info .variant-swatch-selector .variant-swatch.disabled {
      opacity: 0.5; }
    .r1_product .r1_product-info .variant-swatch-selector .variant-swatch.hidden {
      display: none; }
    .r1_product .r1_product-info .variant-swatch-selector .variant-swatch.selected {
      border: 1px solid #666; }
    .r1_product .r1_product-info .variant-swatch-selector .variant-swatch:hover:not(.disabled) {
      border: 1px solid #949494;
      cursor: pointer; }
    .r1_product .r1_product-info .variant-swatch-selector .variant-swatch img {
      width: 100%;
      height: 100%; }
.r1_product .r1_product-info #AddToCart {
  width: 100%;
  background-color: #b75b58;
  color: #fff;
  border-radius: 4px; }
.r1_product .product-info-tabs {
  border: 1px solid #ccc;
  margin-top: 30px;
  margin-bottom: 30px; }
  .r1_product .product-info-tabs .info-tabs-container {
    position: relative;
    display: flex; }
    .r1_product .product-info-tabs .info-tabs-container .info-tab {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      text-align: center;
      font-weight: bold;
      border-left: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      background-color: #f6f6f6; }
      .r1_product .product-info-tabs .info-tabs-container .info-tab h4, .r1_product .product-info-tabs .info-tabs-container .info-tab .h4 {
        margin-bottom: 0px; }
      @media screen and (max-width: 370px) {
        .r1_product .product-info-tabs .info-tabs-container .info-tab {
          font-size: 10px; } }
      .r1_product .product-info-tabs .info-tabs-container .info-tab:first-of-type {
        border-left: none; }
      .r1_product .product-info-tabs .info-tabs-container .info-tab.selected {
        border-bottom: none;
        background-color: transparent; }
      .r1_product .product-info-tabs .info-tabs-container .info-tab:hover:not(.selected) {
        cursor: pointer;
        background-color: #eee; }
  .r1_product .product-info-tabs .info-tab-content {
    padding: 25px;
    font-size: 14px;
    display: none; }
    .r1_product .product-info-tabs .info-tab-content.active {
      display: block; }
.r1_product .f-right.r1_modal-toggle {
  float: right;
  color: #666;
  font-size: 12px; }

.product-atc-sticky {
  display: none;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s;
  visibility: visible;
  position: fixed;
  width: 100vw;
  padding: 10px;
  padding-bottom: 15px;
  bottom: 0;
  z-index: 400;
  left: 0;
  background-color: #fff; }
  @media screen and (max-width: 950px) {
    .product-atc-sticky {
      display: block; } }
  .product-atc-sticky.hidden {
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
    visibility: hidden; }
  .product-atc-sticky .btn-flex {
    display: flex; }
    .product-atc-sticky .btn-flex .left {
      flex: 0.45;
      padding-right: 5px; }
    .product-atc-sticky .btn-flex .right {
      flex: 0.55;
      padding-left: 5px; }
  .product-atc-sticky .sticky-size-select {
    width: 100%; }
    .product-atc-sticky .sticky-size-select select {
      width: 100%;
      height: 50px; }
  .product-atc-sticky button {
    width: 100%;
    height: 50px;
    border-radius: 0px;
    text-transform: uppercase; }

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative; }
  @media screen and (max-width: 950px) {
    .header-flex {
      display: none; } }
  .header-flex .title-col {
    padding-right: 40px; }
    .header-flex .title-col h1, .header-flex .title-col .h1 {
      font-family: "Roboto Condensed", sans-serif;
      text-transform: capitalize;
      font-size: 30px; }
    .header-flex .title-col p {
      font-size: 16px;
      margin: 15px 0 0 0;
      color: #333; }
  .header-flex .action-col .form-horizontal {
    text-align: right; }
    .header-flex .action-col .form-horizontal .sorting-title {
      font-size: 12px;
      text-transform: uppercase;
      font-family: 14px;
      line-height: 42px; }

.r1_collection .loader {
  border: 2px solid #EDECF6;
  border-top: 2px solid #686868;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 0.5s linear infinite;
  margin: 30px auto; }
.r1_collection .scroll-for-more {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 18px;
  text-align: center;
  width: 100%; }

.r1_product-grid {
  position: relative;
  padding-left: 20px; }

.r1_collection-sidebar .f-left {
  float: left; }
.r1_collection-sidebar .f-right {
  float: right; }
.r1_collection-sidebar li.disable {
  display: none !important; }
.r1_collection-sidebar .r1_collection-submenu p.submenu-item {
  margin: 0px 0px;
  font-size: 16px; }
  .r1_collection-sidebar .r1_collection-submenu p.submenu-item a {
    color: #666; }
  .r1_collection-sidebar .r1_collection-submenu p.submenu-item.active a {
    color: #b75b58; }
.r1_collection-sidebar .block-title {
  font-family: Libre Baskerville,serif;
  text-transform: lowercase;
  font-size: 20px;
  margin-bottom: 10px; }
  .r1_collection-sidebar .block-title.filters {
    margin-top: 30px; }
  .r1_collection-sidebar .block-title .sub-title {
    font-size: 15px;
    font-weight: normal;
    line-height: 32px; }
  .r1_collection-sidebar .block-title.mobile {
    text-transform: capitalize;
    font-size: 25px;
    line-height: 30px; }
    .r1_collection-sidebar .block-title.mobile .sub-title {
      font-family: "Poppins", sans-serif;
      text-transform: uppercase;
      font-size: 12px; }
.r1_collection-sidebar ul.accordion {
  margin: 0; }
  .r1_collection-sidebar ul.accordion .menu-title {
    font-weight: normal;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 14px; }
  .r1_collection-sidebar ul.accordion li {
    margin: 0; }
    .r1_collection-sidebar ul.accordion li a {
      padding: 5px 0px; }
    .r1_collection-sidebar ul.accordion li .inner {
      padding: 0px 0px 0px 10px;
      margin: 0; }
      .r1_collection-sidebar ul.accordion li .inner .menu-sub-title {
        font-size: 10px;
        font-weight: bold; }
      .r1_collection-sidebar ul.accordion li .inner ol.r1_text-ol {
        font-size: 14px; }
        .r1_collection-sidebar ul.accordion li .inner ol.r1_text-ol .item.active span.name {
          text-decoration: underline; }
      .r1_collection-sidebar ul.accordion li .inner ol.r1_swatch-ol {
        width: 60%;
        margin-right: auto;
        padding-top: 10px; }
        .r1_collection-sidebar ul.accordion li .inner ol.r1_swatch-ol li.r1_swatch-li {
          float: left;
          margin-right: 6px;
          margin-bottom: 6px;
          line-height: 0; }
        .r1_collection-sidebar ul.accordion li .inner ol.r1_swatch-ol .item {
          padding: 2px;
          border: none; }
          .r1_collection-sidebar ul.accordion li .inner ol.r1_swatch-ol .item .has-image i {
            outline: 1px solid #ccc;
            outline-offset: -1px; }
          .r1_collection-sidebar ul.accordion li .inner ol.r1_swatch-ol .item.active {
            outline: 1px solid #666;
            outline-offset: -1px; }
      .r1_collection-sidebar ul.accordion li .inner ol.r1_size-btn-ol {
        width: 70%;
        margin-right: auto; }
        .r1_collection-sidebar ul.accordion li .inner ol.r1_size-btn-ol li.r1_size-btn-li {
          float: left;
          margin-right: 6px;
          margin-bottom: 6px; }
          .r1_collection-sidebar ul.accordion li .inner ol.r1_size-btn-ol li.r1_size-btn-li .item {
            width: 40px;
            font-size: 14px;
            text-align: center;
            border: 1px solid #ccc; }
            .r1_collection-sidebar ul.accordion li .inner ol.r1_size-btn-ol li.r1_size-btn-li .item.active {
              background-color: #b75b58;
              border-color: #b75b58;
              color: white; }
@media screen and (min-width: 950px) {
  .r1_collection-sidebar .mobile-sorting {
    display: none; } }
.r1_collection-sidebar .mobile-sorting .sorting-title {
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 20px;
  margin-top: 30px;
  text-transform: lowercase;
  font-size: 20px; }
.r1_collection-sidebar .divider {
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 0px;
  margin-top: 20px;
  margin-bottom: 20px; }
.r1_collection-sidebar .promo-image-container {
  width: 80%;
  position: relative; }
  .r1_collection-sidebar .promo-image-container img {
    width: 100%;
    display: block; }
.r1_collection-sidebar .block-title-clearfix.mobile {
  margin-bottom: 20px; }
.r1_collection-sidebar .fake-link {
  cursor: pointer; }
@media screen and (max-width: 950px) {
  .r1_collection-sidebar .desktop {
    display: none; }
  .r1_collection-sidebar .menu-contents {
    display: none; } }
@media screen and (min-width: 950px) {
  .r1_collection-sidebar .mobile {
    display: none; } }

.r1_header-banner {
  width: 100%; }
  .r1_header-banner img.banner-image {
    width: 100%; }

.r1_product-grid-item {
  text-align: center;
  position: relative; }
  .r1_product-grid-item .child {
    display: flex; }
  .r1_product-grid-item .grid-atc, .r1_product-grid-item .grid-atc-actual {
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0; }
  .r1_product-grid-item .grid-atc.added-to-cart {
    cursor: default;
    background-color: #353535; }
  .r1_product-grid-item .grid-atc-actual {
    bottom: 0;
    cursor: pointer;
    border-radius: 0; }
  .r1_product-grid-item .options-wrapper {
    margin-top: 65px;
    position: relative; }
    .r1_product-grid-item .options-wrapper .atc-size-options {
      width: 100%;
      height: auto;
      position: absolute;
      bottom: 20px;
      background-color: #fff;
      border: 1px solid #262120; }
      .r1_product-grid-item .options-wrapper .atc-size-options img.close-btn {
        cursor: pointer;
        position: absolute;
        top: 8px;
        right: 8px;
        height: 15px; }
      .r1_product-grid-item .options-wrapper .atc-size-options p.prompt {
        background-color: #262120;
        color: #fff;
        padding: 5px;
        text-transform: uppercase;
        margin-bottom: 0; }
      .r1_product-grid-item .options-wrapper .atc-size-options ul {
        list-style: none;
        margin: 0; }
        .r1_product-grid-item .options-wrapper .atc-size-options ul li {
          cursor: pointer;
          margin: 0;
          padding: 5px; }
          .r1_product-grid-item .options-wrapper .atc-size-options ul li:hover {
            background-color: #eee; }
      .r1_product-grid-item .options-wrapper .atc-size-options hr {
        margin: 0; }
      .r1_product-grid-item .options-wrapper .atc-size-options p.size-chart-btn {
        padding: 10px;
        text-transform: uppercase;
        font-size: 11px;
        line-height: 11px;
        margin-bottom: 0;
        color: #b75b58; }
  .r1_product-grid-item .p-image-wrapper {
    display: inline-block;
    padding-bottom: 130%;
    height: 0;
    overflow: hidden;
    background-color: #FFFFFF;
    width: 100%; }
    .r1_product-grid-item .p-image-wrapper .images {
      width: 100%; }
      .r1_product-grid-item .p-image-wrapper .images img {
        width: 100%; }
  .r1_product-grid-item p {
    margin-bottom: 5px;
    margin-top: 0px; }
  .r1_product-grid-item .r1_product-name {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    margin-top: 5px; }
  .r1_product-grid-item .r1_prices {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000; }
    .r1_product-grid-item .r1_prices .compare {
      color: #949494;
      text-decoration: line-through; }
  .r1_product-grid-item .r1_promo-text {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    color: #b75b58;
    text-transform: uppercase;
    margin-bottom: 15px; }
  .r1_product-grid-item .image-color {
    position: relative;
    display: none; }
    .r1_product-grid-item .image-color.active {
      display: block; }
  .r1_product-grid-item .variant-swatch-selector {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    margin-top: 10px;
    margin-bottom: 0 !important; }
  .r1_product-grid-item .variant-swatch-selector {
    display: flex;
    position: relative;
    margin-bottom: 50px; }
    .r1_product-grid-item .variant-swatch-selector .variant-swatch {
      padding: 2px;
      margin-right: 5px;
      width: 32px;
      height: 32px; }
      .r1_product-grid-item .variant-swatch-selector .variant-swatch.disabled {
        opacity: 0.5; }
      .r1_product-grid-item .variant-swatch-selector .variant-swatch.selected {
        border: 1px solid #666; }
      @media screen and (min-width: 950px) {
        .r1_product-grid-item .variant-swatch-selector .variant-swatch:hover:not(.disabled) {
          border: 1px solid #949494;
          cursor: pointer; } }
      .r1_product-grid-item .variant-swatch-selector .variant-swatch img {
        width: 100%;
        height: 100%; }
  .r1_product-grid-item img.front {
    display: block; }
  .r1_product-grid-item img.back {
    display: none; }
  @media screen and (min-width: 950px) {
    .r1_product-grid-item .grid__image a:hover img.front {
      display: none; }
    .r1_product-grid-item .grid__image a:hover img.back {
      display: block; } }

.r1_collection-list .more {
  width: 100%; }
  .r1_collection-list .more a {
    display: block;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 14px;
    text-decoration: underline;
    text-transform: uppercase;
    text-align: center; }
.r1_collection-list .section-header {
  margin-bottom: 10px;
  position: relative; }
  .r1_collection-list .section-header .main-title {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    color: #000;
    font-size: 16px; }
  .r1_collection-list .section-header .more {
    width: auto; }
    .r1_collection-list .section-header .more a {
      display: inline-block;
      text-align: left;
      width: auto;
      margin: 0 0;
      font-size: 11px; }
.r1_collection-list .r1_product-grid {
  position: relative; }

.r1_modal-toggle {
  cursor: pointer; }

.r1_modals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none; }
  .r1_modals .bg-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); }
  .r1_modals .modal {
    display: none;
    position: relative;
    width: 800px;
    max-width: 90vw;
    margin: 60px auto 0 auto;
    background-color: #fff;
    padding: 35px;
    height: calc(100vh - 140px);
    overflow-y: none; }
    .r1_modals .modal .modal-content {
      position: relative;
      height: 100%;
      max-height: 100%;
      overflow-y: scroll; }
    .r1_modals .modal .exit-btn {
      position: absolute;
      top: 0;
      right: 10px;
      font-size: 24px; }
  .r1_modals .size-chart-modal .title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 0px; }
  .r1_modals .size-chart-modal .subtitle {
    text-align: center;
    margin-bottom: 20px; }

.r1_cart {
  margin-top: 20px; }
  .r1_cart button {
    text-transform: uppercase;
    border-radius: 0px;
    margin-bottom: 5px;
    width: 100%; }
  .r1_cart h1, .r1_cart .h1 {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    color: #000;
    font-size: 30px; }
    @media screen and (max-width: 950px) {
      .r1_cart h1, .r1_cart .h1 {
        font-size: 13px; } }
  @media screen and (min-width: 950px) {
    .r1_cart .mobile-subtotal {
      display: none; } }
  .r1_cart .cart__row {
    border-top: none; }
  .r1_cart .instructions label {
    line-height: 300%; }
  .r1_cart .cart-row {
    padding: 10px 0px;
    border-bottom: 1px solid #e5e5e5;
    width: 100%; }
    .r1_cart .cart-row img {
      width: 85%; }
      @media screen and (max-width: 950px) {
        .r1_cart .cart-row img {
          width: 100%; } }
    .r1_cart .cart-row p {
      margin: 0;
      font-family: "Poppins", sans-serif;
      text-transform: uppercase;
      color: #000;
      font-size: 12px; }
    .r1_cart .cart-row .product-title {
      margin-bottom: 15px; }
      .r1_cart .cart-row .product-title a {
        font-family: "Poppins", sans-serif;
        font-weight: bold;
        font-size: 15px; }
    .r1_cart .cart-row .product-info {
      margin-bottom: 7px; }
      .r1_cart .cart-row .product-info .value {
        font-weight: bold; }
      .r1_cart .cart-row .product-info.qty {
        margin-top: -5px; }
        .r1_cart .cart-row .product-info.qty input {
          padding: 1px 3px; }
    .r1_cart .cart-row .product-price {
      font-size: 15px;
      text-align: right; }
    .r1_cart .cart-row .remove-link {
      text-align: right; }
      .r1_cart .cart-row .remove-link a {
        color: #b75b58; }

#ProductPhotoImg {
  cursor: move; }

.product-flyout-right {
  display: block;
  height: 100%;
  left: 0;
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: opacity .5s;
  width: 100%;
  z-index: 20; }

.r1_support h1, .r1_support .h1, .r1_support h2, .r1_support .h2, .r1_support h3, .r1_support .h3, .r1_support h4, .r1_support .h4, .r1_support h5, .r1_support .h5, .r1_support h6, .r1_support .h6 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #555555;
  font-size: 32px; }
.r1_support h2, .r1_support .h2 {
  font-size: 20px;
  font-weight: bold; }
.r1_support h3, .r1_support .h3, .r1_support h4, .r1_support .h4, .r1_support h5, .r1_support .h5, .r1_support h6, .r1_support .h6 {
  font-size: 15px; }
.r1_support .rte a {
  color: #b75b58; }

.r1_collection .rte h1, .r1_collection .rte .h1, .r1_collection .rte h2, .r1_collection .rte .h2, .r1_collection .rte h3, .r1_collection .rte .h3, .r1_collection .rte h4, .r1_collection .rte .h4, .r1_collection .rte h5, .r1_collection .rte .h5, .r1_collection .rte h6, .r1_collection .rte .h6, .r1_collection-list .rte h1, .r1_collection-list .rte .h1, .r1_collection-list .rte h2, .r1_collection-list .rte .h2, .r1_collection-list .rte h3, .r1_collection-list .rte .h3, .r1_collection-list .rte h4, .r1_collection-list .rte .h4, .r1_collection-list .rte h5, .r1_collection-list .rte .h5, .r1_collection-list .rte h6, .r1_collection-list .rte .h6 {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase; }
.r1_collection .rte h1, .r1_collection .rte .h1, .r1_collection-list .rte h1, .r1_collection-list .rte .h1 {
  font-size: 21px; }
.r1_collection .rte h2, .r1_collection .rte .h2, .r1_collection-list .rte h2, .r1_collection-list .rte .h2 {
  font-size: 19px; }
.r1_collection .rte h3, .r1_collection .rte .h3, .r1_collection .rte h4, .r1_collection .rte .h4, .r1_collection .rte h5, .r1_collection .rte .h5, .r1_collection .rte h6, .r1_collection .rte .h6, .r1_collection-list .rte h3, .r1_collection-list .rte .h3, .r1_collection-list .rte h4, .r1_collection-list .rte .h4, .r1_collection-list .rte h5, .r1_collection-list .rte .h5, .r1_collection-list .rte h6, .r1_collection-list .rte .h6 {
  font-size: 15px; }

.r1_mobile-search {
  margin-bottom: 20px; }
  @media screen and (min-width: 950px) {
    .r1_mobile-search {
      display: none; } }

.r1_article {
  font-size: 1.15em;
  /* 	margin-top: 100px;
  	@include at-query ($max, $medium) {
  		margin-top: 10px;
  	} */ }
  .r1_article p {
    font-size: 20px;
    font-weight: 300; }

button[name="checkout"] {
  height: 54px;
  font-size: 16px; }

[data-shopify-buttoncontainer] {
  justify-content: flex-end; }

#product-recently-viewed, #items-you-will-love {
  margin-top: 15px; }
  #product-recently-viewed h3, #product-recently-viewed .h3, #items-you-will-love h3, #items-you-will-love .h3 {
    margin-bottom: 20px; }

@media screen and (max-width: 600px) {
  .r1_product-grid-item img.back, .r1_product-grid-item img.front {
    height: auto; }

  .r1_product .r1_product-grid-item img {
    height: auto; } }
.shopify-policy__container {
  max-width: 80% !important; }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }

/**
* Additonal cart css + Free shipping alert css
*/
.continue-shopping {
  margin-bottom: 0px !important;
  width: 100%;
  text-transform: uppercase; }

.shipping-qualify {
  display: none;
  background-color: #b75b58; }

.shipping-qualify-text {
  line-height: 24px;
  color: #FFF; }

@media (max-width: 415px) {
  .shipping-qualify-text {
    font-size: 12px; } }
.shipping-qualify .close {
  position: relative;
  right: 10px;
  color: #FFF; }

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  filter: alpha(opacity=20);
  opacity: 1; }

button.close {
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.use-code {
  font-weight: normal;
  font-size: 14px; }

.coupon-code {
  border: 1px solid #FFF;
  font-weight: normal;
  padding: 3px 5px;
  font-size: 14px; }

.mobile-nav-bar-extra {
  background-color: #000;
  padding: 5px;
  color: #fff;
  text-align: center;
  font-weight: bold; }

.mobile-nav-bar-extra ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.mobile-nav-bar-extra ul li {
  width: 33%;
  display: inline-block; }

.mobile-nav-bar-extra ul li a {
  text-decoration: none;
  color: #FFF;
  text-transform: uppercase;
  font-size: 1em; }

@media (max-width: 412px) {
  .mobile-nav-bar-extra ul li a {
    font-size: 0.8em; } }
.countdown-banner {
  background: #000;
  padding: 10px 0px;
  display: none; }

.countdown-banner:last-child {
  margin: 0px 0px 10px 0px; }

.countdown-banner .wrapper {
  display: flex;
  align-items: center; }

.countdown-banner h5, .countdown-banner .h5 {
  color: #FFF;
  display: inline-flex;
  margin: 0; }

.countdown-alt {
  display: flex;
  color: #FFF;
  font-weight: bold;
  line-height: 1; }

.countdown-alt .text {
  font-weight: normal; }

.countdown-large {
  font-size: 36px; }

.countdown-banner .countdown {
  color: #FFF;
  font-weight: bold; }

@media (max-width: 415px) {
  .countdown-banner h5, .countdown-banner .h5 {
    font-size: 1em; }

  .countdown-banner .wrapper {
    display: block; }

  .countdown-banner h5:last-child, .countdown-banner .h5:last-child {
    display: none; }

  .countdown-alt span {
    display: block; }

  .countdown-alt div {
    margin: 0 auto; } }
.r1_photoswipe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none; }

.r1_pdp-hurry {
  border: 1px solid #e0e0e0;
  line-height: 27px;
  padding: 5px 10px;
  vertical-align: middle;
  margin-top: 0px;
  border-radius: 3px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.17); }
  .r1_pdp-hurry img {
    position: relative;
    top: 4px;
    height: 20px;
    margin-right: 5px; }

.quick-atc-popup {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999999;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 10px 15px;
  vertical-align: middle;
  font-size: 0.9em;
  color: #666;
  font-weight: bold;
  display: none; }
  .quick-atc-popup img {
    height: 12px;
    margin-right: 3px; }

.homepage-promo-banner {
  display: none; }

/* Lazy load css, to prevent flickering on hover */
.grid-image {
  opacity: 1;
  transition: opacity 0.5s; }
  .grid-image.fallback {
    opacity: 0;
    transition: opacity 0.5s; }

img.grid-image:not(.nolazy) {
  opacity: 0; }

img.grid-image:not(.initial) {
  transition: opacity 0.5s; }

img.grid-image.initial,
img.grid-image.loaded,
img.grid-image.error {
  opacity: 1;
  height: auto; }

img.grid-image:not([src]) {
  visibility: hidden; }

#product-recently-viewed img.grid-image {
  opacity: 1; }

.clearance-badge {
  display: none;
  border-radius: 3px;
  background: #b75b58;
  color: #fff;
  padding: 5px;
  font-size: 14px;
  text-transform: uppercase; }

.clearance {
  color: #b75b58; }

.red-navigation a {
  color: #b75b58 !important; }

#PageContainer {
  padding-top: 218px; }
  @media (max-width: 950px) {
    #PageContainer {
      padding-top: 130px; } }

.r1_navigation {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  position: fixed;
  width: 100%;
  transition: 0.3s;
  z-index: 9999; }
  @media (max-width: 950px) {
    .r1_navigation .nav_desktop {
      display: none; } }
  .r1_navigation .nav_desktop .section-announcement {
    background-color: #262120;
    color: white;
    padding: 14px 0;
    line-height: 35px;
    vertical-align: middle; }
    .r1_navigation .nav_desktop .section-announcement .announcement-item {
      display: flex; }
      .r1_navigation .nav_desktop .section-announcement .announcement-item .left-item {
        width: 20%; }
      .r1_navigation .nav_desktop .section-announcement .announcement-item .center-item {
        width: 60%; }
      .r1_navigation .nav_desktop .section-announcement .announcement-item .right-item {
        width: 20%; }
      .r1_navigation .nav_desktop .section-announcement .announcement-item .announcement {
        text-align: center;
        font-family: Libre Baskerville,serif;
        font-size: 23px; }
        .r1_navigation .nav_desktop .section-announcement .announcement-item .announcement .sub {
          font-family: "Roboto Condensed", sans-serif;
          text-transform: uppercase;
          font-size: 15px;
          font-weight: bold;
          color: #bebdbd; }
          .r1_navigation .nav_desktop .section-announcement .announcement-item .announcement .sub .code {
            border: 1px solid white;
            color: white;
            padding: 0px 3px; }
      .r1_navigation .nav_desktop .section-announcement .announcement-item .timer-badge {
        float: right;
        padding: 0 10px;
        background-color: #B03F39;
        border-radius: 3px;
        font-weight: bold; }
        .r1_navigation .nav_desktop .section-announcement .announcement-item .timer-badge .time {
          font-weight: 900; }
  .r1_navigation .nav_desktop .section-free-shipping {
    background-color: #1a1616;
    color: white;
    font-size: 12px;
    padding: 5px 0;
    text-align: center; }
  .r1_navigation .nav_desktop .section-search {
    font-size: 12px;
    background-color: white;
    padding: 10px 0; }
    .r1_navigation .nav_desktop .section-search .flexbox {
      display: flex; }
      .r1_navigation .nav_desktop .section-search .flexbox .grow-item {
        flex-grow: 1; }
      .r1_navigation .nav_desktop .section-search .flexbox .static-item {
        min-width: 300px; }
    .r1_navigation .nav_desktop .section-search .link-list {
      text-align: right;
      line-height: 30px;
      vertical-align: middle;
      color: #333;
      font-size: 14px; }
      .r1_navigation .nav_desktop .section-search .link-list a {
        padding: 0px 5px; }
        .r1_navigation .nav_desktop .section-search .link-list a img.nav-icon {
          height: 18px;
          vertical-align: middle;
          display: inline;
          margin-top: -3px; }
        .r1_navigation .nav_desktop .section-search .link-list a.link-rewards_program {
          font-size: 11px;
          font-weight: 600;
          text-transform: capitalize;
          letter-spacing: -0.2px;
          padding: 10px 20px 10px 45px;
          box-shadow: inset 0px 0px 1px 1px #454545;
          position: relative; }
          .r1_navigation .nav_desktop .section-search .link-list a.link-rewards_program img {
            position: absolute;
            /*display: block;*/
            left: 0;
            margin-top: 6px;
            margin-left: 20px; }
    .r1_navigation .nav_desktop .section-search .user-ico {
      margin: 0px 10px -5px 0px;
      cursor: pointer; }
    .r1_navigation .nav_desktop .section-search .search-bar {
      line-height: 30px;
      vertical-align: middle;
      align-items: center; }
      .r1_navigation .nav_desktop .section-search .search-bar form {
        width: 100%;
        max-width: 500px;
        margin: 0px auto; }
        .r1_navigation .nav_desktop .section-search .search-bar form .cancel-btn {
          font-weight: light;
          cursor: pointer;
          display: none; }
          .r1_navigation .nav_desktop .section-search .search-bar form .cancel-btn.active {
            display: inline-block; }
          .r1_navigation .nav_desktop .section-search .search-bar form .cancel-btn img {
            font-size: 28px;
            position: absolute;
            top: 1px;
            display: inline;
            top: 12px; }
        .r1_navigation .nav_desktop .section-search .search-bar form img {
          line-height: 30px;
          vertical-align: middle;
          height: 13px;
          display: inline;
          position: relative;
          right: 30px; }
        .r1_navigation .nav_desktop .section-search .search-bar form input {
          margin-left: 10px;
          display: inline;
          width: calc(100% - 30px);
          border: 1px solid #BBBBBB;
          border-radius: 18px; }
  .r1_navigation .nav_desktop .section-main {
    padding: 10px 0px;
    border-top: 1px solid #E3E3E3;
    margin-top: 15px;
    border-bottom: 1px solid #E3E3E3; }
    .r1_navigation .nav_desktop .section-main .flexbox {
      display: flex;
      justify-content: space-between; }
      .r1_navigation .nav_desktop .section-main .flexbox .left-item {
        text-align: left; }
      .r1_navigation .nav_desktop .section-main .flexbox .right-item {
        text-align: right; }
    .r1_navigation .nav_desktop .section-main .logo {
      height: 27px;
      float: left; }
    .r1_navigation .nav_desktop .section-main .link-list {
      text-align: right;
      line-height: 30px;
      text-transform: uppercase;
      vertical-align: middle; }
      .r1_navigation .nav_desktop .section-main .link-list a {
        padding-left: 20px; }
        @media (max-width: 1120px) {
          .r1_navigation .nav_desktop .section-main .link-list a {
            padding-left: 5px;
            font-size: 13.5px; } }
        .r1_navigation .nav_desktop .section-main .link-list a.highlight {
          color: #B03F39; }
        .r1_navigation .nav_desktop .section-main .link-list a:hover {
          opacity: 0.7; }
        .r1_navigation .nav_desktop .section-main .link-list a.active {
          opacity: 0.7; }
      .r1_navigation .nav_desktop .section-main .link-list.main-nav-list a {
        padding-lefT: 15px;
        font-size: 14.5px; }
  .r1_navigation .nav_desktop .section-dropdown {
    display: none;
    background-color: white; }
    .r1_navigation .nav_desktop .section-dropdown .dropdown-slide {
      display: none; }
    .r1_navigation .nav_desktop .section-dropdown .flexbox {
      column-count: 4;
      overflow: hidden;
      padding: 15px 0;
      min-height: 300px; }
      .r1_navigation .nav_desktop .section-dropdown .flexbox .menu-levels {
        margin-bottom: 5px; }
      .r1_navigation .nav_desktop .section-dropdown .flexbox .l2-menu {
        margin-bottom: 5px; }
      .r1_navigation .nav_desktop .section-dropdown .flexbox .level2 {
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 600; }
      .r1_navigation .nav_desktop .section-dropdown .flexbox .level3 {
        font-size: 12px; }
    .r1_navigation .nav_desktop .section-dropdown .link-list a {
      color: #666;
      text-transform: capitalize; }
      .r1_navigation .nav_desktop .section-dropdown .link-list a.list-header {
        text-transform: capitalize;
        color: #000;
        font-size: 14px;
        line-height: 50px; }
  .r1_navigation .nav_desktop .section-quick-search {
    display: none;
    background-color: white;
    width: 100%;
    padding: 30px 30px; }
  .r1_navigation .nav_desktop .bg-dropdown-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0; }
  .r1_navigation .nav_mobile {
    position: relative; }
    @media (min-width: 950px) {
      .r1_navigation .nav_mobile {
        display: none; } }
    .r1_navigation .nav_mobile .section-quick-search-mobile {
      width: 100%;
      overflow-y: scroll;
      overflow-x: hidden;
      background-color: white;
      max-height: calc(100vh - 61px ); }
    .r1_navigation .nav_mobile .section-search-mobile {
      padding: 17px;
      display: none;
      background-color: white;
      border-bottom: 1px solid #dae4ef;
      position: fixed;
      top: 130px;
      width: 100%; }
    .r1_navigation .nav_mobile .section-main {
      position: relative;
      z-index: 1;
      background-color: white;
      padding: 15px 15px;
      border-bottom: 1px solid #e5e5e5; }
      .r1_navigation .nav_mobile .section-main .flexbox {
        display: flex;
        justify-content: center; }
        .r1_navigation .nav_mobile .section-main .flexbox .flex-col {
          width: 33.33%;
          line-height: 30px;
          vertical-align: middle; }
          .r1_navigation .nav_mobile .section-main .flexbox .flex-col.col-center {
            text-align: center; }
          .r1_navigation .nav_mobile .section-main .flexbox .flex-col.col-right {
            text-align: right; }
            .r1_navigation .nav_mobile .section-main .flexbox .flex-col.col-right img.nav-icon {
              height: 25px; }
            .r1_navigation .nav_mobile .section-main .flexbox .flex-col.col-right a {
              margin-right: 10px; }
              .r1_navigation .nav_mobile .section-main .flexbox .flex-col.col-right a:last-of-type {
                margin-right: 0px; }
      .r1_navigation .nav_mobile .section-main img.nav-icon {
        height: 18px;
        line-height: 30px;
        vertical-align: middle;
        display: inline; }
      .r1_navigation .nav_mobile .section-main img.logo {
        height: 20px;
        line-height: 30px;
        vertical-align: middle;
        display: inline; }
    .r1_navigation .nav_mobile .section-free-shipping {
      text-transform: uppercase;
      background-color: #B03F39;
      color: white;
      font-size: 12px;
      padding: 5px 0;
      text-align: center; }
    .r1_navigation .nav_mobile .section-announcement {
      height: 40px;
      overflow: hidden;
      color: white;
      font-weight: bold;
      padding: 10px 0;
      background-color: #262120;
      text-align: center; }
      .r1_navigation .nav_mobile .section-announcement .sub .code {
        text-transform: uppercase;
        border: 1px solid white;
        color: white;
        padding: 0px 3px;
        font-weight: 900; }
    .r1_navigation .nav_mobile.minimized {
      margin-top: -69px; }
  .r1_navigation .nav-heart-wrapper {
    position: relative;
    display: inline-block;
    width: 25px; }
    .r1_navigation .nav-heart-wrapper img.nav-icon {
      top: -9px;
      left: 0;
      position: absolute; }
      .r1_navigation .nav-heart-wrapper img.nav-icon.nav-heart-full {
        opacity: 0; }

@media (min-width: 950px) {
  .r1_nav-mobile-rel {
    display: none; } }
.r1_nav-mobile-rel .section-quicknav {
  background-color: #262120;
  padding: 8px 10px; }
  .r1_nav-mobile-rel .section-quicknav a {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px; }
  .r1_nav-mobile-rel .section-quicknav .item {
    width: 110px;
    text-align: center; }
  .r1_nav-mobile-rel .section-quicknav .flexbox {
    width: 100%;
    display: flex;
    justify-content: center; }
.r1_nav-mobile-rel .section-timer {
  background-color: #262120;
  text-align: center;
  color: white;
  padding: 6px 10px;
  font-size: 15px; }
  .r1_nav-mobile-rel .section-timer .clock {
    margin: 10px 0;
    display: flex;
    justify-content: center; }
    .r1_nav-mobile-rel .section-timer .clock .digit {
      text-align: center;
      margin: 0 11px;
      font-size: 13px;
      line-height: 15px; }
      .r1_nav-mobile-rel .section-timer .clock .digit .val {
        font-size: 28px;
        font-weight: bold; }

.full-width-section {
  width: 100vw;
  transform: translateX(-50%);
  left: 50%;
  position: relative; }

.go-grid-item-current.b {
  margin-top: 5px; }

.r1_product-grid-item {
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  padding-left: 10px; }
  .r1_product-grid-item .btn.grid-atc, .r1_product-grid-item .grid-atc.btn--secondary {
    bottom: 20px;
    font-weight: 400; }
    .r1_product-grid-item .btn.grid-atc:hover, .r1_product-grid-item .grid-atc.btn--secondary:hover {
      background-color: #262120;
      border-color: #262120;
      color: white; }
  .r1_product-grid-item img.rewards-logo {
    display: block;
    width: 60px;
    cursor: pointer; }
  .r1_product-grid-item .price-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px; }
    .r1_product-grid-item .price-flex .price-col {
      font-size: 16px;
      font-weight: 600;
      color: #A22018; }
      .r1_product-grid-item .price-flex .price-col .compare {
        text-decoration: line-through;
        color: #BBBBBB;
        font-size: 13px;
        font-weight: 300; }
    .r1_product-grid-item .price-flex .action-col {
      padding: 0px 5px; }
      .r1_product-grid-item .price-flex .action-col .heart-fav {
        display: none; }
      .r1_product-grid-item .price-flex .action-col img.icon {
        height: 15px;
        margin-top: 2px; }
  .r1_product-grid-item .r1_product-name {
    text-transform: none;
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: 0.01em;
    height: 40px; }
    .r1_product-grid-item .r1_product-name a {
      color: #000; }
  .r1_product-grid-item .grid__image {
    position: relative; }
    .r1_product-grid-item .grid__image .badge {
      position: absolute;
      bottom: 35px;
      left: 0px;
      padding: 3px 14px 6px 14px;
      background-color: #262120;
      color: white;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      font-size: 12px;
      font-weight: bold; }
      .r1_product-grid-item .grid__image .badge.red {
        background-color: #B03F39; }
  .r1_product-grid-item.search-item {
    @keyframes spin {
      0% {
        transform: rotate(0deg); }

      100% {
        transform: rotate(360deg); } }
 }
    .r1_product-grid-item.search-item .loader-wrapper {
      position: absolute;
      width: 100%;
      z-index: 999;
      padding-top: 50%; }
      .r1_product-grid-item.search-item .loader-wrapper:not(.not-loaded) {
        visibility: hidden;
        opacity: 0;
        transition: 1s visibility, 1s opacity; }
      .r1_product-grid-item.search-item .loader-wrapper.not-loaded {
        transition: 1s visibility, 1s opacity;
        visibility: visible;
        opacity: 1; }
      .r1_product-grid-item.search-item .loader-wrapper .loader {
        position: relative;
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px; }
        .r1_product-grid-item.search-item .loader-wrapper .loader .spinner {
          border: 8px solid #f3f3f3;
          /* Light grey */
          border-top: 8px solid #b75b58;
          border-radius: 50%;
          width: 80px;
          height: 80px;
          animation: spin 1.5s linear infinite; }
    .r1_product-grid-item.search-item .grid__image .p-image-wrapper {
      width: 100%; }
      .r1_product-grid-item.search-item .grid__image .p-image-wrapper .images {
        position: relative;
        width: 100%;
        height: auto; }
        .r1_product-grid-item.search-item .grid__image .p-image-wrapper .images img {
          width: 100%;
          height: auto;
          opacity: 1;
          filter: none;
          -webkit-filter: none;
          -moz-filter: none;
          -o-filter: none;
          -ms-filter: none;
          transition: opacity 1s;
          -webkit-transition: 1s -webkit-filter linear;
          -moz-transition: 1s -moz-filter linear;
          -moz-transition: 1s filter linear;
          -ms-transition: 1s -ms-filter linear;
          -o-transition: 1s -o-filter linear;
          transition: 1s filter linear, 1s -webkit-filter linear, 1s opacity; }
          .r1_product-grid-item.search-item .grid__image .p-image-wrapper .images img.not-loaded {
            opacity: 0;
            -webkit-filter: blur(5px);
            -moz-filter: blur(5px);
            -o-filter: blur(5px);
            -ms-filter: blur(5px);
            filter: blur(5px); }

.home-section h2, .home-section .h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 30px; }

.section-collection-carousel .carousel-grid-item {
  width: 23%; }
  @media screen and (max-width: 950px) {
    .section-collection-carousel .carousel-grid-item {
      width: 31%; } }
  @media screen and (max-width: 600px) {
    .section-collection-carousel .carousel-grid-item {
      width: 45%; } }
.section-collection-carousel .flickity-button {
  top: 35%; }
  @media screen and (max-width: 600px) {
    .section-collection-carousel .flickity-button {
      display: none; } }
  .section-collection-carousel .flickity-button.previous {
    display: none; }
.section-collection-carousel .flickity-button-icon path {
  fill: #000; }
.section-collection-carousel .flickity-page-dots {
  display: none; }

.home-section-header {
  text-align: center;
  padding: 0px 10%; }
  @media screen and (max-width: 950px) {
    .home-section-header {
      padding: 0px 10px; } }
  .home-section-header h2, .home-section-header .h2 {
    margin-bottom: 10px;
    font-family: Libre Baskerville,serif; }
  .home-section-header p {
    margin-bottom: 20px;
    color: black; }

.section-collection-simple {
  margin: 50px 0; }
  .section-collection-simple .flickity-button {
    top: 35%; }
    @media screen and (max-width: 600px) {
      .section-collection-simple .flickity-button {
        display: none; } }
    .section-collection-simple .flickity-button.previous {
      display: none; }
  .section-collection-simple .flickity-button-icon path {
    fill: #000; }
  .section-collection-simple .flickity-page-dots {
    display: none; }
  .section-collection-simple .price {
    text-align: center;
    font-size: 16px;
    font-weight: 400; }
    .section-collection-simple .price .compare {
      text-decoration: line-through;
      color: #666; }

.promo-section.home-section {
  margin-top: 10px; }
  @media screen and (max-width: 950px) {
    .promo-section.home-section {
      margin-top: 0px;
      margin-bottom: 10px; } }
  .promo-section.home-section .promo-blocks {
    width: calc(100% - 10px);
    display: grid;
    grid-template-columns: 70% 30%;
    grid-template-rows: 1fr 1fr;
    column-gap: 10px;
    row-gap: 10px;
    grid-template-areas: "main timer" "main secondary"; }
    @media screen and (max-width: 950px) {
      .promo-section.home-section .promo-blocks {
        width: 100%;
        grid-template-columns: auto;
        grid-template-rows: auto;
        grid-template-areas: "main" "secondary" "timer"; } }
    @media screen and (max-width: 950px) {
      .promo-section.home-section .promo-blocks .promo-block img {
        width: 100%; } }
    .promo-section.home-section .promo-blocks .promo-block.primary-promo {
      grid-area: main; }
    .promo-section.home-section .promo-blocks .promo-block.timer {
      grid-area: timer; }
      @media screen and (max-width: 950px) {
        .promo-section.home-section .promo-blocks .promo-block.timer {
          display: none; } }
    .promo-section.home-section .promo-blocks .promo-block.secondary-promo {
      grid-area: auto; }
    .promo-section.home-section .promo-blocks .promo-block.tertiary-promo {
      grid-area: auto; }
  .promo-section.home-section .category-links {
    margin: 15px 0 30px 0;
    text-align: center;
    border-top: 1px solid #bfbfbe;
    border-bottom: 1px solid #bfbfbe;
    font-size: 16px;
    padding: 10px 0;
    font-weight: lighter; }
    .promo-section.home-section .category-links .intro {
      color: black;
      font-weight: normal; }

.promo-section-double .double-promo-block.left, .promo-section-double .double-promo-block.right {
  margin-bottom: 10px; }
@media screen and (min-width: 950px) {
  .promo-section-double .double-promo-block.left {
    padding-right: 25px;
    margin-bottom: 0; }
  .promo-section-double .double-promo-block.right {
    padding-left: 25px;
    margin-bottom: 0; } }
.promo-section-double .promo-main {
  position: relative; }
  .promo-section-double .promo-main img {
    width: 100%; }
  .promo-section-double .promo-main .text-wrapper {
    text-align: center;
    width: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 15%; }
    @media screen and (max-width: 950px) {
      .promo-section-double .promo-main .text-wrapper {
        padding: 0 10%; } }
    .promo-section-double .promo-main .text-wrapper h3, .promo-section-double .promo-main .text-wrapper .h3 {
      font-family: "Roboto Condensed", sans-serif;
      font-style: italic;
      font-size: 70px;
      line-height: 65px; }
      @media screen and (max-width: 950px) {
        .promo-section-double .promo-main .text-wrapper h3, .promo-section-double .promo-main .text-wrapper .h3 {
          font-size: 45px;
          line-height: 40px; } }
    .promo-section-double .promo-main .text-wrapper p {
      font-size: 24px;
      margin-bottom: 5px; }
    .promo-section-double .promo-main .text-wrapper.light {
      color: white; }
.promo-section-double .promo-btn-wrap {
  width: 100%;
  position: relative;
  margin-top: -35px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .promo-section-double .promo-btn-wrap a {
    display: inline-block; }
    .promo-section-double .promo-btn-wrap a .promo-btn {
      color: white;
      padding: 15px 50px;
      font-size: 18px;
      width: auto;
      height: auto;
      background-color: black;
      display: inline-block; }
.promo-section-double.count-3 .text-wrapper h3, .promo-section-double.count-3 .text-wrapper .h3 {
  font-size: 40px;
  line-height: 35px; }
.promo-section-double.count-3 .text-wrapper p {
  font-size: 18px; }
.promo-section-double.count-3 .promo-btn-wrap {
  margin-top: -28px; }
  .promo-section-double.count-3 .promo-btn-wrap a .promo-btn {
    font-size: 16px;
    padding: 10px 35px; }

.promo-masonry {
  width: 100%; }
  .promo-masonry .flex-half {
    display: flex;
    width: 100%;
    position: relative; }
    .promo-masonry .flex-half .item {
      width: 50%; }
    @media screen and (max-width: 950px) {
      .promo-masonry .flex-half.main {
        display: block; }
        .promo-masonry .flex-half.main .item {
          width: 100%; } }
  .promo-masonry .masonry-item-wrapper {
    width: 100%;
    padding: 10px; }
  .promo-masonry .masonry-item {
    width: 100%;
    background-position: center center;
    background-size: cover; }
    .promo-masonry .masonry-item.sm-h {
      height: 300px; }
    .promo-masonry .masonry-item.lg-h {
      height: 620px; }
    .promo-masonry .masonry-item .overlay {
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.3);
      position: relative;
      text-align: center; }
      .promo-masonry .masonry-item .overlay .title {
        width: 100%;
        height: 100%;
        color: white;
        font-family: "Roboto Condensed", sans-serif;
        font-style: italic;
        text-transform: uppercase;
        font-size: 30px;
        position: relative;
        top: calc(50% - 20px);
        transform: translateY(-50%); }

.search-slide-wrapper {
  display: flex; }
  .search-slide-wrapper .left {
    flex: 0 0 20%; }
    .search-slide-wrapper .left ul {
      list-style: none;
      margin-left: 0px;
      font-size: 13px; }
      .search-slide-wrapper .left ul li {
        text-overflow: ellipsis; }
  .search-slide-wrapper h3, .search-slide-wrapper .h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px; }
  .search-slide-wrapper .right {
    flex: 0 0 80%; }
    .search-slide-wrapper .right .quick-header-flex {
      display: flex; }
      .search-slide-wrapper .right .quick-header-flex h3, .search-slide-wrapper .right .quick-header-flex .h3 {
        flex-grow: 1;
        margin-bottom: 0; }
      .search-slide-wrapper .right .quick-header-flex div {
        padding-top: 5px;
        padding-right: 5px;
        flex: 0 0 40%; }
        .search-slide-wrapper .right .quick-header-flex div a {
          display: block;
          text-align: right;
          font-size: 14px;
          font-weight: bold;
          color: #666;
          text-transform: uppercase;
          font-family: "Roboto Condensed", sans-serif; }

.section-quick-search-mobile .search-slide-wrapper {
  display: inline-block; }
  .section-quick-search-mobile .search-slide-wrapper .left {
    flex: none;
    width: 100%;
    margin-bottom: 15px; }
    .section-quick-search-mobile .search-slide-wrapper .left ul li {
      line-height: 12px; }
  .section-quick-search-mobile .search-slide-wrapper .right {
    flex: none; }
.section-quick-search-mobile .left-section-categories {
  display: none; }
.section-quick-search-mobile .left-section-suggestions {
  text-align: center;
  width: 100%; }
  .section-quick-search-mobile .left-section-suggestions h3, .section-quick-search-mobile .left-section-suggestions .h3 {
    display: none; }
  .section-quick-search-mobile .left-section-suggestions li {
    margin-bottom: 5px; }
    .section-quick-search-mobile .left-section-suggestions li a {
      font-size: 15px; }

.klevuLanding .r1_product-grid {
  margin-left: -10px; }
  .klevuLanding .r1_product-grid .r1_product-grid-item {
    padding-left: 10px;
    margin-bottom: 25px; }

.search-wrapper {
  display: flex; }
  .search-wrapper .left {
    flex: 0 0 20%;
    padding-right: 15px; }
    .search-wrapper .left h3, .search-wrapper .left .h3 {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 20px; }
      .search-wrapper .left h3.landing, .search-wrapper .left .landing.h3 {
        margin-bottom: 30px; }
    .search-wrapper .left ul {
      list-style: none;
      margin-left: 0;
      font-size: 13px; }
    .search-wrapper .left .kuFilterNames ul li a span.kufacet-text {
      width: auto; }
    @media screen and (max-width: 950px) {
      .search-wrapper .left .filters-title {
        display: none; } }
  .search-wrapper .right {
    flex: 0 0 80%; }
    .search-wrapper .right .title-flex {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px; }
      .search-wrapper .right .title-flex .i-title h2, .search-wrapper .right .title-flex .i-title .h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 30px; }
      .search-wrapper .right .title-flex .i-pagination {
        width: 200px; }
      @media screen and (max-width: 950px) {
        .search-wrapper .right .title-flex {
          display: inline-block;
          width: 100%; }
          .search-wrapper .right .title-flex .i-title {
            width: 100%; }
            .search-wrapper .right .title-flex .i-title h2, .search-wrapper .right .title-flex .i-title .h2 {
              text-align: center;
              font-size: 20px; }
          .search-wrapper .right .title-flex .i-pagination {
            width: 100%;
            margin: 0 auto;
            text-align: center; }
            .search-wrapper .right .title-flex .i-pagination .kuPagination {
              text-align: center;
              float: none; } }
  @media screen and (max-width: 950px) {
    .search-wrapper {
      display: inline-block; }
      .search-wrapper .left {
        flex: none;
        width: 100%; }
      .search-wrapper .right {
        flex: none;
        width: 100%; } }

.kuContainer.r1_kuContainer {
  padding: 0px; }

.kuResultWrap.r1_resultWrap {
  padding-left: 0px; }

@media screen and (min-width: 950px) {
  .mobile-checkout-btn {
    display: none; } }

@media screen and (max-width: 950px) {
  .bc-no-mobile {
    display: none; } }

.methods-of-payment img {
  padding: 0.2em; }

.lt-ie9 .methods-of-payment,
.ie8 .methods-of-payment,
.oldie .methods-of-payment {
  display: none; }

.social-links a {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  display: inline;
  margin: 0;
  padding: 0.05em;
  color: #555 !important;
  font-size: 40px !important; }

.badge-section {
  background: #25201f;
  padding: 10px;
  text-align: center; }

.pdp-badges {
  text-align: center; }

/*==============================
  Wishlist
===============================*/
.login-modal {
  height: auto !important;
  max-width: 400px;
  max-height: 400px; }

.login-modal .modal-content {
  overflow: hidden !important; }

.wishlist-heart-icon {
  cursor: pointer; }

.r1_ajax-cart {
  display: none;
  position: relative; }
  .r1_ajax-cart.active {
    display: block; }
  @media screen and (min-width: 950px) {
    .r1_ajax-cart.quick-cart {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 99999; } }
  .r1_ajax-cart.quick-cart div#AjaxCart-mobile {
    z-index: 9999999999; }
  @media screen and (max-width: 950px) {
    .r1_ajax-cart {
      margin: 0;
      padding: 0;
      position: fixed;
      top: 0;
      bottom: 0;
      width: 100%;
      z-index: 9998; } }
  .r1_ajax-cart .cart-main-content {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    height: calc(100% - 92px);
    background-color: rgba(0, 0, 0, 0.5); }
    @media screen and (max-width: 950px) {
      .r1_ajax-cart .cart-main-content.nav-minimized {
        height: calc(100% - 47px); } }
    @media screen and (min-width: 950px) {
      .r1_ajax-cart .cart-main-content {
        width: 350px;
        right: 15px;
        position: absolute;
        top: -60px;
        bottom: unset;
        background-color: white;
        border: 1px solid #eee;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
        height: 63vh;
        min-height: 350px; }
        .r1_ajax-cart .cart-main-content.quick-cart {
          height: 350px;
          top: 15px; }
        .r1_ajax-cart .cart-main-content.cart-mobile {
          display: none; } }
    .r1_ajax-cart .cart-main-content .header-flex {
      display: flex;
      justify-content: space-between;
      padding: 15px 10px 0px 10px;
      margin-bottom: 0; }
      .r1_ajax-cart .cart-main-content .header-flex h2, .r1_ajax-cart .cart-main-content .header-flex .h2 {
        font-size: 16px;
        line-height: 16px;
        text-transform: uppercase;
        margin-bottom: 0; }
      .r1_ajax-cart .cart-main-content .header-flex img {
        height: 15px; }
    .r1_ajax-cart .cart-main-content .cart-item {
      display: flex;
      border-bottom: 1px solid #d9e4ef;
      padding: 7.5px; }
      .r1_ajax-cart .cart-main-content .cart-item .img-col {
        width: 30%; }
        @media screen and (min-width: 950px) {
          .r1_ajax-cart .cart-main-content .cart-item .img-col {
            width: 25%; } }
        .r1_ajax-cart .cart-main-content .cart-item .img-col img {
          width: 100%; }
      .r1_ajax-cart .cart-main-content .cart-item .info-col {
        width: 70%;
        padding-left: 20px; }
        @media screen and (min-width: 950px) {
          .r1_ajax-cart .cart-main-content .cart-item .info-col {
            width: 75%;
            padding-left: 15px; } }
        .r1_ajax-cart .cart-main-content .cart-item .info-col h3, .r1_ajax-cart .cart-main-content .cart-item .info-col .h3 {
          font-size: 16px;
          max-height: 42px;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical; }
          @media screen and (min-width: 950px) {
            .r1_ajax-cart .cart-main-content .cart-item .info-col h3, .r1_ajax-cart .cart-main-content .cart-item .info-col .h3 {
              font-size: 13px;
              max-height: 32px; } }
        .r1_ajax-cart .cart-main-content .cart-item .info-col p {
          margin: 0; }
        .r1_ajax-cart .cart-main-content .cart-item .info-col .variant-info {
          font-size: 14px;
          color: #999;
          margin-bottom: 10px;
          text-transform: lowercase;
          max-height: 22px;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical; }
          @media screen and (min-width: 950px) {
            .r1_ajax-cart .cart-main-content .cart-item .info-col .variant-info {
              font-size: 12px; } }
        .r1_ajax-cart .cart-main-content .cart-item .info-col .qty-price-flex {
          display: flex;
          justify-content: flex-start;
          margin-bottom: 7px; }
          .r1_ajax-cart .cart-main-content .cart-item .info-col .qty-price-flex .qty-select {
            margin-right: 16px; }
            .r1_ajax-cart .cart-main-content .cart-item .info-col .qty-price-flex .qty-select .adjust-btn {
              font-size: 18px;
              line-height: 0;
              border: 1px solid #666;
              padding: 0px 7px;
              background-color: #f9fafb; }
              .r1_ajax-cart .cart-main-content .cart-item .info-col .qty-price-flex .qty-select .adjust-btn.disabled {
                color: #d99191;
                border-color: #d99191;
                cursor: default; }
            .r1_ajax-cart .cart-main-content .cart-item .info-col .qty-price-flex .qty-select .qty {
              padding: 0 10px; }
        .r1_ajax-cart .cart-main-content .cart-item .info-col .price {
          font-size: 18px;
          font-weight: 600;
          margin-top: -3px; }
          @media screen and (min-width: 950px) {
            .r1_ajax-cart .cart-main-content .cart-item .info-col .price {
              font-size: 15px; } }
        .r1_ajax-cart .cart-main-content .cart-item .info-col .actions {
          font-size: 14px; }
          @media screen and (min-width: 950px) {
            .r1_ajax-cart .cart-main-content .cart-item .info-col .actions {
              font-size: 12px; } }
          .r1_ajax-cart .cart-main-content .cart-item .info-col .actions a {
            text-decoration: underline; }
    .r1_ajax-cart .cart-main-content .r1_full-cart {
      height: 100%;
      background-color: white; }
      .r1_ajax-cart .cart-main-content .r1_full-cart .item-list {
        min-height: 140px;
        height: calc(100% - 310px);
        overflow-y: scroll; }
        @media (max-height: 900px) {
          .r1_ajax-cart .cart-main-content .r1_full-cart .item-list {
            height: calc(100% - 305px);
            padding-bottom: 80px; } }
        @media (max-width: 416px) and (max-height: 900px) {
          .r1_ajax-cart .cart-main-content .r1_full-cart .item-list {
            height: calc(100% - 345px);
            padding-bottom: 60px; } }
    .r1_ajax-cart .cart-main-content .r1_quick-cart {
      width: 100%;
      background-color: white; }
      @media screen and (max-width: 950px) {
        .r1_ajax-cart .cart-main-content .r1_quick-cart {
          position: fixed;
          bottom: 154px; } }
      .r1_ajax-cart .cart-main-content .r1_quick-cart .abbreviated-cart {
        background-color: white;
        display: flex;
        justify-content: space-between;
        padding: 15px; }
        .r1_ajax-cart .cart-main-content .r1_quick-cart .abbreviated-cart h4, .r1_ajax-cart .cart-main-content .r1_quick-cart .abbreviated-cart .h4 {
          font-size: 15px;
          line-height: 17px;
          text-transform: uppercase;
          font-weight: 600;
          color: #666;
          margin-bottom: 0; }
        .r1_ajax-cart .cart-main-content .r1_quick-cart .abbreviated-cart h3, .r1_ajax-cart .cart-main-content .r1_quick-cart .abbreviated-cart .h3 {
          font-size: 17px;
          line-height: 17px;
          margin-bottom: 0;
          font-weight: 600; }
    .r1_ajax-cart .cart-main-content .r1_app-install {
      width: 100%;
      background-color: white;
      text-align: center;
      padding: 0px 15px 15px 15px; }
      @media screen and (max-width: 950px) {
        .r1_ajax-cart .cart-main-content .r1_app-install {
          position: fixed;
          bottom: 0px; } }
      .r1_ajax-cart .cart-main-content .r1_app-install img.app-icon {
        display: block;
        margin: 0 auto;
        width: 100px; }
      .r1_ajax-cart .cart-main-content .r1_app-install .action-btn {
        width: 100%;
        border-radius: 0px;
        text-transform: uppercase;
        padding: 15px 0;
        margin-top: 15px; }
        .r1_ajax-cart .cart-main-content .r1_app-install .action-btn.btn-secondary {
          border: 1px solid black;
          color: black;
          background-color: transparent; }
    .r1_ajax-cart .cart-main-content .summary {
      padding: 10px 15px 15px 15px;
      background-color: #f9fafb;
      position: fixed;
      font-size: 12px;
      bottom: 0;
      left: 0;
      width: 100%;
      border-top: 1px solid #d9e4ef; }
      @media screen and (min-width: 950px) {
        .r1_ajax-cart .cart-main-content .summary {
          position: absolute; } }
      @media (max-width: 600px) {
        .r1_ajax-cart .cart-main-content .summary .checkout-timer p {
          font-size: 12px;
          line-height: 1.2em; }
        .r1_ajax-cart .cart-main-content .summary .checkout-timer {
          margin-bottom: 10px; } }
      .r1_ajax-cart .cart-main-content .summary .subtotal-flex {
        display: flex;
        justify-content: space-between;
        margin: 0px 0; }
        @media screen and (min-width: 950px) {
          .r1_ajax-cart .cart-main-content .summary .subtotal-flex {
            margin: 0; } }
        .r1_ajax-cart .cart-main-content .summary .subtotal-flex h3, .r1_ajax-cart .cart-main-content .summary .subtotal-flex .h3 {
          font-size: 25px;
          line-height: 35px;
          vertical-align: bottom; }
          @media (max-width: 600px) {
            .r1_ajax-cart .cart-main-content .summary .subtotal-flex h3, .r1_ajax-cart .cart-main-content .summary .subtotal-flex .h3 {
              font-size: 16px;
              line-height: 25px; } }
        .r1_ajax-cart .cart-main-content .summary .subtotal-flex h2, .r1_ajax-cart .cart-main-content .summary .subtotal-flex .h2 {
          font-size: 35px;
          line-height: 35px;
          font-weight: 600;
          vertical-align: bottom; }
          @media (max-width: 600px) {
            .r1_ajax-cart .cart-main-content .summary .subtotal-flex h2, .r1_ajax-cart .cart-main-content .summary .subtotal-flex .h2 {
              font-size: 25px;
              line-height: 25px; } }
      .r1_ajax-cart .cart-main-content .summary .checkout-btn {
        width: 100%;
        border-radius: 0px;
        text-transform: uppercase;
        padding: 15px 0;
        background: #b75b58; }

#favorites-wrapper .header-flex {
  display: block !important; }
#favorites-wrapper .btn-wishlist {
  border-radius: 0;
  text-transform: uppercase; }
  @media screen and (max-width: 950px) {
    #favorites-wrapper .btn-wishlist {
      width: 100%; } }
#favorites-wrapper .loader {
  border: 2px solid #EDECF6;
  border-top: 2px solid #686868;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 0.5s linear infinite;
  margin: 30px auto; }
#favorites-wrapper .scroll-for-more {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 18px;
  text-align: center;
  width: 100%; }

@media screen and (min-width: 950px) {
  .r1_modals .shipping-modal {
    height: auto; }
    .r1_modals .shipping-modal .modal-content {
      overflow-y: auto; } }

.swiper-container .swiper-pagination-bullet {
  opacity: 1;
  border: white solid 1px !important;
  background-color: transparent; }
.swiper-container .swiper-pagination-bullet-active {
  background-color: white !important; }

/*==============================
  DOTD
===============================*/
.dotd-banner {
  background-color: #000;
  color: #FFF;
  height: 65px;
  margin: 20px 0px 0px 0px;
  font-size: 1rem;
  position: relative;
  margin-left: 50px;
  display: flex;
  align-items: center; }

.dotd-sold-meter-banner {
  margin-top: -5px !important;
  position: relative;
  border: 0 !important;
  display: none; }

.dotd-sold-meter-banner-text {
  position: absolute;
  font-size: 13px;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 30px; }

.dotd-img {
  position: absolute;
  margin-left: -50px;
  min-width: 310px;
  top: 0; }

.dotd-text {
  display: block;
  margin-left: 275px;
  margin-right: 100px;
  text-align: right;
  width: 100%; }

.dotd-col {
  text-align: center;
  border: 1px solid #CCC;
  padding: 1rem;
  min-height: 125px; }

.dotd-col:eq(1) {
  border-left: none;
  border-right: none; }

.dotd-info-wrapper {
  margin: 25px 0px; }

.dotd-info-wrapper .grid__item {
  text-align: center; }

.dotd-info-wrapper h3, .dotd-info-wrapper .h3 {
  font-size: 1em;
  font-weight: bold;
  margin: 1em 0;
  min-height: 3em; }

.dotd-info-wrapper .countdown-large,
.dotd-info-wrapper .countdown-large,
.dotd-info-wrapper .countdown-large {
  background: #000;
  display: block;
  padding: 10px; }

.dotd-info-wrapper,
.dotd-info-wrapper .text {
  color: #000; }

.dotd-grid-item {
  padding-left: 0; }

.dotd-col .countdown-alt {
  display: block;
  margin: 0 auto;
  padding-top: 15px; }

.dotd-col .countdown-alt .countdown-large {
  width: 70px; }

.dotd-col .countdown-alt div {
  display: inline-block; }

.dotd-stars {
  padding-top: 10px; }

.dotd-stars .mdi-star {
  font-size: 32px;
  color: #ef443f; }

.dotd-sold-meter {
  margin: 5px 0px; }

.dotd-sold-meter.ui-widget-content {
  background: #e7cccb;
  border-radius: 0; }

.dotd-sold-meter .ui-widget-header {
  background: #ef443f;
  height: calc(100% + 6px); }

.dotd-items-remaining-counter {
  font-weight: bold; }

@media (max-width: 962px) {
  .dotd-text {
    margin-right: 10px; } }
@media (max-width: 768px) {
  .dotd-banner {
    height: auto;
    margin-left: 0;
    padding-bottom: 20px; }

  .dotd-img {
    margin-left: -10px;
    margin-top: -10px; }

  .dotd-text {
    margin-top: 65px;
    width: 100%;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px; } }
@media (max-width: 950px) {
  .dotd-sold-meter-banner {
    display: block; }

  .dotd-col {
    border: 0;
    min-height: auto; }

  .dotd-items-counter {
    display: none; }

  .dotd-reviews h3, .dotd-reviews .h3 {
    display: none; }

  .dotd-grid-item h3, .dotd-grid-item .h3 {
    margin: 0;
    min-height: auto; } }
/**
* Google optimize header/footer test
*/
.newsletter-section .home-section {
  margin: 0px; }
  .newsletter-section .home-section h2, .newsletter-section .home-section .h2 {
    margin: 0px; }
.newsletter-section .subscribe-disclaimer {
  font-size: 12px;
  line-height: 14px;
  display: block;
  margin: 10px 0px;
  width: 66%;
  color: #FFF; }
.newsletter-section .section-header label {
  text-transform: uppercase;
  color: #FFF;
  font-weight: bold;
  font-size: 12px; }
.newsletter-section .input-group.password__input-group {
  width: 100%; }
.newsletter-section .newsletter-email-field,
.newsletter-section .subscribe-btn {
  border-radius: 0;
  margin-top: -3px; }
.newsletter-section .newsletter-email-field {
  width: 66%;
  font-size: 14px; }

.subscribe-section {
  display: none;
  background-color: #f7e2d5;
  padding: 40px 0px; }
  .subscribe-section .input-group {
    display: inline-block; }
  .subscribe-section .subscribe-disclaimer {
    display: none; }
  .subscribe-section .newsletter-email-field {
    width: 300px; }
  .subscribe-section .section-header label {
    color: #000; }

.search-logo {
  display: none; }

.section-announcement-condensed {
  display: none;
  padding: 10px 0px; }
  .section-announcement-condensed .wrapper {
    display: flex;
    justify-content: center;
    text-align: center; }
    .section-announcement-condensed .wrapper .section-announcement-item {
      margin: 0 auto;
      font-size: 12px; }
      .section-announcement-condensed .wrapper .section-announcement-item.trademark {
        margin: 0; }
    .section-announcement-condensed .wrapper .section-announcement-divider {
      display: none; }
    .section-announcement-condensed .wrapper .section-announcement-item + .section-announcement-divider {
      display: inline; }

.site-footer .copyright {
  display: none;
  color: #FFF;
  font-size: 10px;
  padding: 20px 0px; }

.wishlist-link.rightside {
  display: none;
  height: 20px;
  top: -11px; }

.item-clearance,
.hamburger-alt {
  display: none; }

.ajax-cart-toggle-alt {
  display: none; }

.main-nav-list.nav-list-alt {
  display: none; }

.r1_nav-desktop-rel {
  display: none;
  background: #f7e2d5;
  padding: 4px 0px;
  font-size: 17px; }
  .r1_nav-desktop-rel .caption {
    color: #000;
    margin-right: 10px; }
  .r1_nav-desktop-rel .promo-countdown {
    font-weight: bold; }
  .r1_nav-desktop-rel span {
    color: #f69b81; }
  .r1_nav-desktop-rel .minutes,
  .r1_nav-desktop-rel .seconds {
    margin-left: 2px; }

.goptimize {
  /**
  * Mobile + Destkop
  */
  /**
  * Mobile
  */
  /**
  * Desktop
  */ }
  .goptimize .sub .code {
    color: #666 !important;
    font-weight: normal !important;
    text-decoration: underline !important;
    border: 0 !important; }
  .goptimize .r1_navigation .nav_mobile .section-free-shipping {
    display: none; }
  .goptimize .r1_navigation .nav_mobile .section-announcement {
    font-weight: normal;
    font-size: 12px;
    height: 41px; }
  .goptimize .r1_navigation .nav_mobile .section-quick-search-mobile {
    max-height: calc(100vh - 47px ); }
  .goptimize .r1_navigation .nav_mobile .section-search-mobile {
    top: 92px; }
  .goptimize .section-timer-mobile {
    border: 12px solid white; }
  .goptimize .nav_mobile.minimized {
    margin-top: -45px; }
  .goptimize .nav_mobile .hamburger-alt {
    display: inline-block; }
  .goptimize .nav_mobile .hamburger-og {
    display: none; }
  .goptimize .nav_mobile .section-main {
    padding: 10px 15px; }
    .goptimize .nav_mobile .section-main img.nav-icon {
      height: 20px !important; }
    .goptimize .nav_mobile .section-main .hamburger-alt img.nav-icon {
      height: 15px !important; }
    .goptimize .nav_mobile .section-main .col-right a {
      margin-right: 5px !important; }
    .goptimize .nav_mobile .section-main .col-right .ajax-cart-toggle {
      display: none; }
    .goptimize .nav_mobile .section-main .col-right .ajax-cart-toggle-alt {
      display: inline-block; }
  .goptimize #PageContainer {
    /*padding-top: 145px;*/
    padding-top: 195px; }
    @media (max-width: 950px) {
      .goptimize #PageContainer {
        padding-top: 95px;
        /*padding-top: 135px;*/ } }
  .goptimize .section-timer {
    background-color: #e6e6e6; }
    .goptimize .section-timer .clock {
      /*color: #f69b81;*/
      color: #000000; }
    .goptimize .section-timer .caption {
      color: #000;
      text-transform: uppercase;
      font-size: 13px;
      font-weight: bold; }
  .goptimize .r1_footer {
    background-color: #131313; }
    .goptimize .r1_footer ul.accordion {
      padding: 0px 30px 0px 30px; }
      .goptimize .r1_footer ul.accordion li {
        text-align: left;
        border-top: 1px solid #FFF; }
        .goptimize .r1_footer ul.accordion li ul li a {
          color: #c9c9c9;
          text-align: left; }
        .goptimize .r1_footer ul.accordion li a.toggle {
          color: #FFF;
          font-weight: normal;
          font-size: 12px;
          text-align: left; }
          .goptimize .r1_footer ul.accordion li a.toggle.no-underline {
            border: 0; }
      .goptimize .r1_footer ul.accordion li:first-child {
        border: 0 !important; }
    .goptimize .r1_footer .footer-icons {
      text-align: center; }
      .goptimize .r1_footer .footer-icons .orig {
        display: none; }
      .goptimize .r1_footer .footer-icons .hide {
        display: inline-block !important;
        margin: 0 auto;
        font-size: 36px;
        color: #c9c9c9; }
  .goptimize .badge-section {
    display: none; }
  .goptimize .footer-logo.hide {
    display: block !important;
    width: 175px;
    padding: 0px 30px;
    margin-bottom: 10px; }
  .goptimize #contact_form .subscribe-btn {
    border: 1px solid #FFF;
    margin-top: -3px;
    height: 40px; }
  .goptimize .newsletter.hide {
    display: block !important; }
    .goptimize .newsletter.hide .subscribe-text {
      display: none; }
  .goptimize .wishlist-link.leftside {
    display: none; }
  .goptimize .wishlist-link.rightside {
    display: inline-block;
    float: none; }
  .goptimize .ajax-cart-toggle .cart-count {
    position: absolute;
    width: 24px;
    padding-top: 2px;
    text-align: center;
    line-height: 20px;
    font-size: 10px; }
  .goptimize .section-quicknav .item-clearance {
    display: inline-block; }
  .goptimize .site-footer {
    padding: 35px 0px 0px 0px; }
  .goptimize .r1_footer .footer-grid.left {
    width: 70%;
    border-right: 1px solid #FFF; }
  .goptimize .r1_footer .footer-grid.right {
    width: 30%;
    padding-left: 20px; }
    .goptimize .r1_footer .footer-grid.right .footer-extra-desktop {
      display: none; }
    .goptimize .r1_footer .footer-grid.right .newsletter.hide {
      display: block; }
  .goptimize .r1_footer .footer-grid h3, .goptimize .r1_footer .footer-grid .h3 {
    color: #FFF;
    font-size: 14px; }
  .goptimize .r1_footer .footer-grid li a {
    color: #FFF;
    text-transform: none;
    font-size: 12px; }
  .goptimize .r1_footer .newsletter-section .section-header label {
    font-size: 14px; }
  .goptimize .r1_footer .newsletter-section .newsletter__submit.subscribe-btn {
    text-transform: uppercase; }
  .goptimize .r1_footer .newsletter-section .subscribe-disclaimer {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.01em;
    width: 100%; }
  .goptimize .desktop-footer .footer-grid.left .footer-column {
    width: 20%;
    margin-right: 5px; }
    .goptimize .desktop-footer .footer-grid.left .footer-column.hide {
      display: inline-block !important;
      max-height: none !important; }
  @media (min-width: 800px) {
    .goptimize .subscribe-section {
      display: block; } }
  .goptimize .desktop-nav-wrapper .section-main {
    background: #FFF; }
    .goptimize .desktop-nav-wrapper .section-main .link-list.main-nav-list a {
      color: #000;
      padding-left: 14px;
      padding-right: 14px; }
  @media only screen and (max-width: 1100px) {
    .goptimize .desktop-nav-wrapper .section-main .link-list.main-nav-list a {
      padding-left: 7px;
      padding-right: 7px; } }
  .goptimize .r1_navigation .nav_desktop .section-search {
    padding: 15px 0;
    margin-top: -1px; }
    .goptimize .r1_navigation .nav_desktop .section-search .ajax-cart-toggle {
      display: none; }
    .goptimize .r1_navigation .nav_desktop .section-search .ajax-cart-toggle-alt {
      display: inline-block; }
      .goptimize .r1_navigation .nav_desktop .section-search .ajax-cart-toggle-alt img.nav-icon {
        height: 20px; }
      .goptimize .r1_navigation .nav_desktop .section-search .ajax-cart-toggle-alt .CartCount {
        position: absolute;
        display: inline-block;
        background: #A22018;
        color: white;
        border-radius: 50px;
        height: 20px;
        width: 20px;
        padding: 0px; }
  .goptimize .main-nav-wrapper {
    background: white; }
  .goptimize .r1_navigation .nav_desktop .section-main {
    padding: 10px 0px;
    border-top: 1px solid #E3E3E3;
    margin-top: 15px;
    border-bottom: 1px solid #E3E3E3; }
    .goptimize .r1_navigation .nav_desktop .section-main .left-item {
      display: none; }
    .goptimize .r1_navigation .nav_desktop .section-main .right-item {
      width: 100%; }
      .goptimize .r1_navigation .nav_desktop .section-main .right-item .link-list {
        text-align: center; }
    .goptimize .r1_navigation .nav_desktop .section-main .link-list.main-nav-list a {
      font-weight: 600;
      font-size: 12px;
      line-height: 16px;
      letter-spacing: 0.04em;
      color: #555555; }
    @media only screen and (max-width: 1170px) {
      .goptimize .r1_navigation .nav_desktop .section-main .link-list.main-nav-list a {
        font-size: 13px;
        letter-spacing: 0.3px; } }
  .goptimize .r1_navigation .nav_desktop .section-search {
    padding: 15px 0px 0px 0px;
    font-size: 12px; }
    .goptimize .r1_navigation .nav_desktop .section-search input {
      font-size: 12px;
      border-radius: 0px; }
    .goptimize .r1_navigation .nav_desktop .section-search input::placeholder {
      color: #999; }
    .goptimize .r1_navigation .nav_desktop .section-search input:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #999; }
    .goptimize .r1_navigation .nav_desktop .section-search input::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #999; }
    .goptimize .r1_navigation .nav_desktop .section-search .search-logo {
      display: block; }
      .goptimize .r1_navigation .nav_desktop .section-search .search-logo .logo {
        width: 125px;
        margin-top: 3px; }
  .goptimize .desktop-announcements .section-announcement,
  .goptimize .desktop-announcements .section-free-shipping {
    display: none; }
  .goptimize .desktop-announcements .section-announcement-condensed {
    display: block; }
  .goptimize .site-footer .copyright {
    display: block; }
    .goptimize .site-footer .copyright .help-links {
      list-style: none;
      margin: 10px 0px !important; }
      .goptimize .site-footer .copyright .help-links li {
        display: inline-block;
        padding: 0px 6px 0px 3px;
        border-right: 1px solid #CCC; }
        .goptimize .site-footer .copyright .help-links li:last-child {
          border: 0; }
        .goptimize .site-footer .copyright .help-links li a {
          color: #CCC;
          font-weight: normal; }
  .goptimize .r1_nav-desktop-rel {
    display: block; }
    @media (max-width: 950px) {
      .goptimize .r1_nav-desktop-rel {
        display: none; } }

/* Dressbarn Plus Page */
/* Head-Banner */
* {
  margin: 0;
  padding: 0;
  border: 0; }

.dressbarn-plus {
  color: #443939; }

.head-banner img {
  position: relative;
  width: 100%;
  filter: brightness(80%); }

.banner-head {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: white;
  font-size: 70px; }

.banner-subhead {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 10px;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: lighter; }

@media (max-width: 800px) {
  .banner-head {
    top: 90px;
    font-size: 40px; }

  .banner-subhead {
    top: 140px;
    font-size: 16px;
    text-align: center; } }
@media (max-width: 770px) {
  .banner-head {
    top: 120px;
    font-size: 40px; }

  .banner-subhead {
    top: 170px;
    font-size: 20px;
    text-align: center; } }
@media (max-width: 650px) {
  .head-banner img {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-size: cover; }

  .banner-head {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    color: white;
    font-size: 30px; }

  .banner-subhead {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 10px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: lighter;
    text-align: center; } }
.triple-icon-head {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  padding-top: 40px;
  font-size: 30px;
  font-weight: lighter; }

.triple-icon-subhead {
  text-align: center;
  padding-top: 5px; }

.triple-icon-section {
  display: flex;
  text-align: center;
  justify-content: space-around;
  padding-top: 50px;
  padding-bottom: 50px; }

.triple-icon-section .icon {
  padding: 0 18px;
  align-self: center; }

@media screen and (max-width: 800px) {
  .triple-icon-section {
    flex-direction: column;
    padding-bottom: 0px; }

  .triple-icon-section .icon {
    padding-bottom: 40px; }

  .triple-icon-subhead {
    padding: 10px 25px; } }
.triple-icon-container {
  font-family: "Times New Roman", Times, serif;
  padding-bottom: 40px;
  padding-top: 30px; }

.icon-heading {
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 17px; }

.icon-subheading {
  padding: 0 40px; }

/* DB+ image with text iwt='image with text' */
.db-pl-iwt {
  display: flex;
  padding-bottom: 100px;
  padding-top: 20px; }

.iwt-text-box {
  flex-basis: 50%;
  background-color: #6d67671c; }

.iwt-inner-content {
  padding-top: 40px;
  padding-left: 50px;
  padding-right: 100px; }

.iwt-heading {
  font-size: 30px;
  text-align: left;
  font-weight: lighter;
  padding-bottom: 40px; }

.iwt-subheading {
  font-size: 20px;
  padding-bottom: 50px; }

.iwt-img {
  flex-basis: 50%; }

.iwt-img img {
  width: 100%; }

.iwt-text-box button {
  background-color: #da2222;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px; }

@media screen and (max-width: 800px) {
  .db-pl-iwt {
    padding-bottom: 50px;
    padding-top: 20px;
    flex-direction: column; }

  .iwt-text-box {
    padding: 0px;
    padding-bottom: 20px; } }
/* Faq Accordion Section */
.faq-heading {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 25px;
  padding-bottom: 15px;
  font-weight: bold; }

.accordion-2-wrapper {
  width: 80%;
  margin: 30px auto 0;
  padding-bottom: 150px;
  font-family: "Roboto", sans-serif; }

.accordion-2-wrapper .accordion-wrap .accordion-header {
  width: 100%;
  height: 50px;
  background: #fff;
  padding: 15px;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #b8b8b8;
  position: relative;
  cursor: pointer; }

@media (max-width: 500px) {
  .accordion-2-wrapper .accordion-wrap .accordion-header {
    height: 80px;
    padding: 15px;
    padding-right: 20px; } }
.accordion-2-wrapper .accordion-wrap:first-child .accordion-header {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.accordion-2-wrapper .accordion-wrap:last-child .accordion-header {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom: 2px solid transparent; }

.accordion-2-wrapper .accordion-wrap .accordion-header:hover {
  color: #000;
  border-color: #b8b8b8; }

.accordion-2-wrapper .accordion-wrap .accordion-header:hover:before,
.accordion-2-wrapper .accordion-wrap .accordion-header:hover:after {
  background: #b8b8b8; }

.accordion-2-wrapper .accordion-wrap:last-child .accordion-header:hover {
  border-bottom: 2px solid transparent; }

.accordion-2-wrapper .accordion-wrap .accordion-header:before,
.accordion-2-wrapper .accordion-wrap .accordion-header:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 20px;
  height: 2px;
  background: #000; }

.accordion-2-wrapper .accordion-wrap .accordion-header:after {
  transform: rotate(-90deg);
  transition: all 0.5s; }

.accordion-2-wrapper .accordion-wrap .accordion-body {
  width: 100%;
  height: 0px;
  transition: all 0.5s ease;
  background: #FFF;
  overflow: hidden; }

.accordion-2-wrapper .accordion-wrap .accordion-body p {
  padding: 15px;
  font-size: 15px;
  line-height: 22px;
  color: black; }

.accordion-2-wrapper .accordion-wrap .accordion-header.active {
  color: #000;
  border-color: #b8b8b8; }

.accordion-2-wrapper .accordion-wrap:last-child .accordion-header.active {
  border-bottom: 1px solid #b8b8b8;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px; }

.accordion-2-wrapper .accordion-wrap .accordion-header.active:before,
.accordion-2-wrapper .accordion-wrap .accordion-header.active:after {
  background: #b8b8b8; }

.accordion-2-wrapper .accordion-wrap .accordion-header.active:after {
  transform: rotate(0); }

.accordion-2-wrapper
.accordion-wrap
.accordion-header.active
+ .accordion-body {
  height: 80px; }

.rw-track {
  overflow-y: hidden; }

.hide {
  /*max-height: 0px;*/
  transition: max-height 1s; }

/* form with text */
.form-with-image {
  display: flex;
  padding-bottom: 30px; }

.form-head {
  font-size: 30px;
  padding-bottom: 50px; }

.fwi-form {
  flex-basis: 50%;
  padding: 80px 150px; }

.fwi-form form {
  display: flex;
  flex-direction: column;
  width: 100%; }

.fwi-img {
  flex-basis: 50%;
  align-self: center; }

.fwi-img img {
  width: 100%; }

.form-submit {
  width: 200px;
  background-color: #da2222;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px; }

.form-with-image input {
  padding-top: 10px; }

.form-with-image label {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37, 34, 34, 0.6); }

@media screen and (max-width: 800px) {
  .form-with-image {
    flex-direction: column;
    flex-flow: column-reverse; }

  .fwi-form {
    flex-basis: 50%;
    padding: 50px 80px; } }
#dressbarn-plus-checkout-success {
  display: none; }

/**
* New Home Sections
*/
.featured-product-section {
  display: flex; }
  .featured-product-section .item {
    width: 50%; }
  .featured-product-section .promo-block-headline {
    position: relative;
    top: 50%;
    margin-top: -10px;
    transform: translateY(-50%);
    text-align: left;
    padding: 0px 40% 0px 15%;
    font-size: 16px; }
    .featured-product-section .promo-block-headline h2, .featured-product-section .promo-block-headline .h2,
    .featured-product-section .promo-block-headline p,
    .featured-product-section .promo-block-headline a {
      margin: 0 auto; }
    .featured-product-section .promo-block-headline h2, .featured-product-section .promo-block-headline .h2 {
      font-weight: bold;
      text-align: left;
      margin-top: 10px;
      margin-bottom: 10px;
      font-size: 40px; }
    .featured-product-section .promo-block-headline p {
      margin-top: 10px;
      margin-bottom: 10px; }
    .featured-product-section .promo-block-headline .promo-cta-link {
      border-bottom: 1px solid #000;
      padding-bottom: 2px;
      font-weight: bold;
      font-size: 17px; }
    @media screen and (max-width: 800px) {
      .featured-product-section .promo-block-headline {
        padding: 0px 20% 0px 5%; }
        .featured-product-section .promo-block-headline h2, .featured-product-section .promo-block-headline .h2 {
          font-size: 23px; }
        .featured-product-section .promo-block-headline .promo-cta-link {
          font-size: 17px; } }

.promo-block .promo-countdown-block {
  background: #e6e6e6;
  padding: 20px;
  text-align: center;
  margin-bottom: 10px;
  height: 100%;
  width: 100%; }
  @media (min-width: 800px) and (max-width: 1100px) {
    .promo-block .promo-countdown-block {
      padding: 10px; } }
  .promo-block .promo-countdown-block .section-timer-container {
    border: 3px solid #FFF;
    height: 100%;
    width: 100%;
    background: #E6E6E6; }
    .promo-block .promo-countdown-block .section-timer-container .section-timer {
      text-align: center;
      padding: 0 25px;
      position: relative;
      top: 50%;
      transform: translateY(-50%); }
      .promo-block .promo-countdown-block .section-timer-container .section-timer .caption {
        text-transform: uppercase;
        font-weight: normal;
        font-size: 18px;
        padding: 0px 10px;
        margin-bottom: 15px; }
        @media (min-width: 800px) and (max-width: 1100px) {
          .promo-block .promo-countdown-block .section-timer-container .section-timer .caption {
            padding: 0px 0px;
            font-size: 15px; } }
      .promo-block .promo-countdown-block .section-timer-container .section-timer .big-clock {
        display: flex;
        justify-content: space-between; }
      .promo-block .promo-countdown-block .section-timer-container .section-timer .digit {
        display: inline-block;
        color: #000000; }
        .promo-block .promo-countdown-block .section-timer-container .section-timer .digit .val {
          display: block;
          font-size: 35px;
          line-height: 32px; }
        .promo-block .promo-countdown-block .section-timer-container .section-timer .digit .unit {
          display: block;
          font-weight: bold;
          text-transform: uppercase;
          font-size: 12px; }

/**
* Google optimize home page sections display rules
*/
.section-newsletter {
  background: #E6E6E6;
  padding: 60px 0px;
  text-align: center;
  width: 100vw;
  margin-bottom: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -60px; }
  .section-newsletter .newsletter-section {
    width: 50%;
    margin: 0 auto; }
    @media screen and (max-width: 800px) {
      .section-newsletter .newsletter-section {
        width: 90%; } }
    .section-newsletter .newsletter-section .section-header {
      margin-bottom: 5px; }
    .section-newsletter .newsletter-section .section-header label {
      font-size: 25px;
      color: #000;
      text-transform: none; }
    .section-newsletter .newsletter-section .subscribe-text {
      margin-bottom: 20px; }
    .section-newsletter .newsletter-section .input-group {
      width: 100%; }
    .section-newsletter .newsletter-section .subscribe-disclaimer {
      display: none; }
    .section-newsletter .newsletter-section button {
      text-transform: uppercase; }

.goptimize-sections .section-newsletter {
  display: block; }
.goptimize-sections .promo-double p.links {
  margin-top: 30px; }
  .goptimize-sections .promo-double p.links a {
    border: 1px solid black;
    padding: 15px 30px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 17px; }
  .goptimize-sections .promo-double p.links a:hover {
    background-color: black;
    color: white; }
@media screen and (min-width: 800px) {
  .goptimize-sections .promo-double .grid__item.left {
    padding-right: 5px; }
  .goptimize-sections .promo-double .grid__item.right {
    padding-left: 5px; } }
@media screen and (max-width: 800px) {
  .goptimize-sections .promo-double .grid__item {
    margin-bottom: 30px; } }

#BIS_trigger {
  display: none !important; }

.klaviyo-bis-trigger {
  margin-top: 5px !important;
  border-radius: 0;
  width: 100% !important; }

.goptimize-hide.r1_nav-desktop-rel {
  display: none; }
  .goptimize-hide.r1_nav-desktop-rel.show {
    display: block; }

/**
* PDP optimize
*/
.btn-wishlist {
  display: none;
  background-color: #FFF !important;
  color: #000;
  border: 1px solid #000;
  border-radius: 0; }

.color-sel-new,
.bc-pdp,
.pdp-accordions,
.sc-link-new,
.product-description-go,
.accordion-description {
  display: none; }

#r1_product_wrap {
  /*
  .product-badge {
  	top: 0px;
  	left: 0px;
  }
  */ }
  #r1_product_wrap img.rewards-logo {
    display: block;
    width: 70px;
    cursor: pointer;
    margin: 5px 0px; }

.pdpoptimize .bc-og {
  display: none; }
.pdpoptimize #r1_product_wrap {
  padding-top: 20px; }
  .pdpoptimize #r1_product_wrap .product-description-go {
    display: block; }
  .pdpoptimize #r1_product_wrap .product-info-tabs {
    display: none; }
.pdpoptimize .r1_product-info .bc-homelink,
.pdpoptimize .r1_product-info .bc-homesep {
  display: none; }
.pdpoptimize .r1_product-info .bc-collectionsep {
  color: #ccc; }
.pdpoptimize .r1_product-info .bc-pdp {
  display: block; }
  .pdpoptimize .r1_product-info .bc-pdp .breadcrumb {
    font-family: inherit;
    margin: 0;
    display: block; }
    .pdpoptimize .r1_product-info .bc-pdp .breadcrumb a,
    .pdpoptimize .r1_product-info .bc-pdp .breadcrumb .bc-prod-title {
      padding: 0;
      color: #000;
      border-bottom: 1px solid #ccc; }
.pdpoptimize .r1_product-info h1, .pdpoptimize .r1_product-info .h1 {
  text-transform: none !important;
  color: #000;
  margin: 0.5em 0;
  font-size: 30px;
  font-weight: normal; }
.pdpoptimize .r1_product-info #AddToCartForm {
  margin-bottom: 0; }
  .pdpoptimize .r1_product-info #AddToCartForm .pricing-div {
    /*display: flex;*/ }
    .pdpoptimize .r1_product-info #AddToCartForm .pricing-div .pricing {
      color: #000; }
  .pdpoptimize .r1_product-info #AddToCartForm .product-description-go {
    display: block; }
  .pdpoptimize .r1_product-info #AddToCartForm .promo-text {
    display: none; }
  .pdpoptimize .r1_product-info #AddToCartForm .sc-link-og {
    display: none; }
  .pdpoptimize .r1_product-info #AddToCartForm .sc-link-new {
    display: inline-block; }
  .pdpoptimize .r1_product-info #AddToCartForm .accent-text,
  .pdpoptimize .r1_product-info #AddToCartForm .accent-2-text {
    color: #000; }
  .pdpoptimize .r1_product-info #AddToCartForm .variant-btn-selector .variant-btn {
    border: 0;
    background: #f8f8f8;
    height: 40px;
    width: 40px;
    padding: 10px; }
    .pdpoptimize .r1_product-info #AddToCartForm .variant-btn-selector .variant-btn.selected {
      background-color: #000;
      border: 0; }
      .pdpoptimize .r1_product-info #AddToCartForm .variant-btn-selector .variant-btn.selected.out-of-stock {
        color: #fff;
        background-color: #B03F39;
        border-color: #B03F39;
        filter: brightness(0.7); }
    .pdpoptimize .r1_product-info #AddToCartForm .variant-btn-selector .variant-btn:hover:not(.disabled) {
      color: #fff;
      background-color: #000;
      border-color: #000; }
    .pdpoptimize .r1_product-info #AddToCartForm .variant-btn-selector .variant-btn.out-of-stock {
      color: #949494;
      background-color: #eee;
      border-color: #949494; }
  .pdpoptimize .r1_product-info #AddToCartForm .variant-btn-selector.variant-btn-size-class .variant-btn {
    width: auto; }
  .pdpoptimize .r1_product-info #AddToCartForm .variant-swatch-selector {
    margin-bottom: 20px; }
  .pdpoptimize .r1_product-info #AddToCartForm .btn, .pdpoptimize .r1_product-info #AddToCartForm .btn--secondary,
  .pdpoptimize .r1_product-info #AddToCartForm #AddToCart {
    background-color: #000;
    width: 100%;
    text-transform: none;
    padding: 12px 10px; }
  .pdpoptimize .r1_product-info #AddToCartForm .btn-wishlist {
    display: block;
    margin-bottom: 10px; }
    .pdpoptimize .r1_product-info #AddToCartForm .btn-wishlist:hover {
      color: #000; }
  .pdpoptimize .r1_product-info #AddToCartForm .r1_pdp-hurry {
    /*visibility: hidden;*/ }
.pdpoptimize .r1_product-info .pdp-accordions {
  display: block; }
  .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper {
    width: 100%;
    font-family: inherit;
    padding-bottom: 0;
    margin: 0; }
    .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper .accordion-header {
      color: #000;
      border-bottom: 1px solid #f3f3f3;
      padding: 15px 0px; }
      .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper .accordion-header:before {
        background: #666; }
      .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper .accordion-header.active {
        color: #000;
        border-color: #f3f3f3;
        border-width: 1px; }
      .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper .accordion-header:hover {
        color: #000; }
      .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper .accordion-header:after {
        background: #666; }
    .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper .accordion-body {
      background: inherit;
      padding: 15px;
      transition: all 250ms;
      display: none; }
      .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper .accordion-body.active {
        display: block;
        height: auto; }
      .pdpoptimize .r1_product-info .pdp-accordions .accordion-2-wrapper .accordion-body p {
        margin: 0;
        padding: 0; }
.pdpoptimize .r1_product-info .wishlist-icon-wrapper,
.pdpoptimize .r1_product-info .pdp-extra {
  display: none; }
.pdpoptimize .r1_product-info .product-info-tabs {
  display: none; }
@media (max-width: 950px) {
  .pdpoptimize .product-description {
    display: none; }
  .pdpoptimize #r1_product_wrap {
    padding-top: 0; } }
@media (max-width: 416px) {
  .pdpoptimize #pdp-mobile-img-go {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 0;
    display: block !important;
    max-height: 500px;
    overflow-y: hidden; }
  .pdpoptimize #pdp-mobile-img {
    display: none !important; }
  .pdpoptimize .accordion-description {
    display: block; }
  .pdpoptimize .product-description-go {
    display: none !important; } }

/**
* DB Plus account page
*/
.adb-plus-orders {
  margin-bottom: 45px; }
  .adb-plus-orders h2, .adb-plus-orders .h2 {
    border-bottom: 2px solid #dcdcdc;
    padding-bottom: 5px;
    margin-bottom: 25px; }

.adb-plus-address-grid, .adb-plus-account-grid {
  margin-bottom: 45px; }
  .adb-plus-address-grid h2, .adb-plus-address-grid .h2, .adb-plus-account-grid h2, .adb-plus-account-grid .h2 {
    border-bottom: 2px solid #dcdcdc;
    padding-bottom: 5px;
    margin-bottom: 25px; }
  .adb-plus-address-grid .btn, .adb-plus-address-grid .btn--secondary, .adb-plus-account-grid .btn, .adb-plus-account-grid .btn--secondary {
    padding: 8px 36px;
    margin-top: 16px;
    background-color: #b75b58;
    border-radius: 0; }
  .adb-plus-address-grid .adb-plus-details, .adb-plus-account-grid .adb-plus-details {
    padding-left: 0;
    padding-right: 10%; }
    .adb-plus-address-grid .adb-plus-details a, .adb-plus-account-grid .adb-plus-details a {
      display: block; }

.adb-plus-grid-container {
  padding-left: 0; }
  .adb-plus-grid-container .adb-plus-real-grid {
    display: grid;
    grid-template-columns: repeat(2, 50%); }
    .adb-plus-grid-container .adb-plus-real-grid.not-VIP {
      display: none; }
    .adb-plus-grid-container .adb-plus-real-grid span {
      text-transform: capitalize; }
      .adb-plus-grid-container .adb-plus-real-grid span#db-plus-sub-end-date, .adb-plus-grid-container .adb-plus-real-grid span#db-plus-next-billing {
        text-transform: uppercase; }
    .adb-plus-grid-container .adb-plus-real-grid .adb-plus-grid-item {
      padding-right: 2em;
      margin-bottom: 8px; }
      .adb-plus-grid-container .adb-plus-real-grid .adb-plus-grid-item:not(.adb-plus-default) h3, .adb-plus-grid-container .adb-plus-real-grid .adb-plus-grid-item:not(.adb-plus-default) .h3 {
        opacity: 0.50; }
      .adb-plus-grid-container .adb-plus-real-grid .adb-plus-grid-item.adb-plus-default {
        grid-row: 1;
        grid-column: 1; }

@media only screen and (max-width: 600px) {
  .adb-plus-orders h2, .adb-plus-orders .h2, .adb-plus-address-grid h2, .adb-plus-address-grid .h2, .adb-plus-account-grid h2, .adb-plus-account-grid .h2 {
    text-align: center; }
  .adb-plus-orders .adb-plus-details, .adb-plus-address-grid .adb-plus-details, .adb-plus-account-grid .adb-plus-details {
    width: 100%;
    text-align: center;
    margin-bottom: 36px;
    padding-right: 0; }

  .adb-plus-grid-container {
    width: 100%; }
    .adb-plus-grid-container .adb-plus-real-grid {
      text-align: center; } }
@media only screen and (max-width: 450px) {
  .adb-plus-grid-container .adb-plus-real-grid {
    grid-template-columns: 100%; }
    .adb-plus-grid-container .adb-plus-real-grid .adb-plus-grid-item {
      padding-right: 0; } }
.account-grid {
  padding-top: 30px; }
  .account-grid .account-db-plus h2, .account-grid .account-db-plus .h2 {
    border-bottom: 2px solid #dcdcdc;
    padding-bottom: 5px;
    margin-bottom: 25px; }
  .account-grid .account-db-plus .grid__item {
    padding-left: 0; }
  .account-grid .account-db-plus label {
    display: inline-block;
    width: 150px; }

#dbplus-alert {
  font-size: 12px;
  font-style: italic; }

#db-plus-error {
  color: #a6311f;
  margin-bottom: 10px;
  display: block; }

.db-plus-form {
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
  margin-top: 30px; }
  .db-plus-form h2, .db-plus-form .h2 {
    font-size: 2em; }
  .db-plus-form .form-group {
    text-align: left;
    margin-bottom: 10px; }
  .db-plus-form input {
    width: 100%; }
  .db-plus-form .form-submit {
    width: unset;
    background-color: #B03F39;
    border-radius: 0;
    font-size: 18px;
    margin: 12px auto;
    padding: 6px 36px; }
  .db-plus-form .help-block {
    color: #a6311f; }

.db-steps {
  margin: 15px 0px; }
  .db-steps .step-number {
    font-size: 24px;
    line-height: 32px; }
    .db-steps .step-number.step-one {
      color: #000; }
    .db-steps .step-number.step-two {
      color: #c2c0c1; }
    .db-steps .step-number.disabled {
      color: #cfcfcf; }
    .db-steps .step-number.active {
      color: #a92f17;
      font-size: 32px; }
  .db-steps .step-separator {
    border: 1px solid #707070;
    display: inline-block;
    width: 100px;
    margin-bottom: 6px; }
    .db-steps .step-separator.disabled {
      border-color: #cfcfcf; }

/* PDP - Product Measurements Modal */
.r1_modal-toggle.pmt-padding {
  padding-left: 7px; }

.r1_modals .modal.product-measurements-modal {
  border: solid;
  background-color: #f1f2f3; }
  .r1_modals .modal.product-measurements-modal .modal-content .pm-grid {
    margin-top: 36px; }
    .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row {
      display: grid;
      text-align: center; }
      .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row.title-row p {
        font-weight: 600;
        text-transform: uppercase; }
      .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row p {
        padding: 18px 24px;
        margin: 0; }
      .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row:nth-child(even) {
        background-color: #feffff; }

.r1_modals .modal.size-chart-modal {
  border: solid;
  background-color: #f1f2f3; }
  .r1_modals .modal.size-chart-modal .modal-content .pm-grid {
    margin-top: 36px; }
    .r1_modals .modal.size-chart-modal .modal-content .pm-grid .pm-row {
      display: grid;
      text-align: center; }
      .r1_modals .modal.size-chart-modal .modal-content .pm-grid .pm-row.title-row p {
        font-weight: 600;
        text-transform: uppercase; }
      .r1_modals .modal.size-chart-modal .modal-content .pm-grid .pm-row p {
        padding: 18px 24px;
        margin: 0; }
      .r1_modals .modal.size-chart-modal .modal-content .pm-grid .pm-row:nth-child(even) {
        background-color: #feffff; }

@media only screen and (max-width: 700px) {
  .r1_modals .modal.product-measurements-modal {
    padding: 36px 18px; }
    .r1_modals .modal.product-measurements-modal .modal-content .pm-grid {
      /*         max-width: calc(90vw - (24px * 2));
              overflow: scroll; */ }
      .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row {
        /*           min-width: 900px; */ }
        .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row p {
          padding: 18px 12px;
          margin: 0; }

  .r1_modals .modal.size-chart-modal {
    padding: 36px 18px; }
    .r1_modals .modal.size-chart-modal .modal-content .pm-grid {
      /*         max-width: calc(90vw - (24px * 2));
              overflow: scroll; */ }
      .r1_modals .modal.size-chart-modal .modal-content .pm-grid .pm-row {
        /*           min-width: 900px; */ }
        .r1_modals .modal.size-chart-modal .modal-content .pm-grid .pm-row p {
          padding: 18px 12px;
          margin: 0; } }
/* Account Table Modifications */
.account-grid table .btn, .account-grid table .btn--secondary {
  padding: 8px 36px;
  border-radius: 0;
  font-weight: 400; }
  .account-grid table .btn.unfulfilled, .account-grid table .unfulfilled.btn--secondary {
    background-color: #b75b58; }

/* Blog Page Restyling */
.rm-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, calc((100% - (2em * 3)) / 4));
  column-gap: 2em;
  row-gap: 2em; }
  .rm-blog-grid h1, .rm-blog-grid .h1 {
    grid-column: span 4; }
  .rm-blog-grid h2, .rm-blog-grid .h2 {
    font-size: 1.67em;
    line-height: 1.2; }

@media only screen and (max-width: 950px) {
  .rm-blog-grid {
    grid-template-columns: repeat(3, calc((100% - (2em * 2)) / 3)); }
    .rm-blog-grid h1, .rm-blog-grid .h1 {
      grid-column: span 3; } }
@media only screen and (max-width: 640px) {
  .rm-blog-grid {
    grid-template-columns: repeat(2, calc((100% - (2em * 1)) / 2)); }
    .rm-blog-grid h1, .rm-blog-grid .h1 {
      grid-column: span 2; }
    .rm-blog-grid h2, .rm-blog-grid .h2 {
      font-size: 1.33em; } }
/* Move Wishlist Icon on Mobile */
.grid__item .hide-on-mobile {
  display: block; }
.grid__item .show-on-mobile {
  display: none; }

.grid-uniform.r1_product-grid.go-grid-item-container-test .grid__item .hide-on-mobile {
  display: none; }
.grid-uniform.r1_product-grid.go-grid-item-container-test .grid__item .show-on-mobile {
  display: block; }
.grid-uniform.r1_product-grid.go-grid-item-container-test .grid__item .grid__image .action-col {
  width: 28px;
  position: absolute;
  top: 8px;
  right: 7px;
  z-index: 1; }

@media only screen and (max-width: 700px) {
  .grid-uniform.r1_product-grid:not(.go-grid-item-container-test) .grid__item .hide-on-mobile {
    display: none; }
  .grid-uniform.r1_product-grid:not(.go-grid-item-container-test) .grid__item .show-on-mobile {
    display: block; }
  .grid-uniform.r1_product-grid:not(.go-grid-item-container-test) .grid__item .grid__image .action-col {
    width: 28px;
    position: absolute;
    /*top: 8px; */
    bottom: 15px;
    right: 7px;
    z-index: 1; } }
span.variant-ship-date {
  display: none; }
  span.variant-ship-date[data-active='true'] {
    display: initial; }

/* DB Plus Landing Page Restyle */
.triple-icon-container {
  font-family: 'Roboto Condensed', sans-serif;
  padding: 90px 0 30px 0; }
  .triple-icon-container h3, .triple-icon-container .h3 {
    font-size: 32px;
    margin: 0 0 12px 0;
    text-align: center; }
  .triple-icon-container p {
    font-size: 18px;
    font-weight: 300; }
    .triple-icon-container p.icon-heading {
      font-size: 21px;
      font-weight: 600;
      padding-bottom: 0; }

.rm-image-with-text {
  margin: 30px 0 120px 0;
  display: grid;
  grid-template-columns: 50% 50%; }
  .rm-image-with-text .image-container {
    height: 100%; }
    .rm-image-with-text .image-container img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center; }
  .rm-image-with-text .text-container {
    padding: 60px;
    display: table;
    height: 100%;
    background: #6d67671c; }
    .rm-image-with-text .text-container .vertical-middle {
      display: table-cell;
      vertical-align: middle; }
      .rm-image-with-text .text-container .vertical-middle h2, .rm-image-with-text .text-container .vertical-middle .h2 {
        font-size: 32px;
        line-height: 1.2; }
      .rm-image-with-text .text-container .vertical-middle p {
        font-size: 21px;
        line-height: 1.3;
        font-weight: 300;
        margin: 20px 0 30px 0; }
      .rm-image-with-text .text-container .vertical-middle .btn, .rm-image-with-text .text-container .vertical-middle .btn--secondary {
        background-color: #B03F39;
        border-radius: 0;
        font-size: 18px;
        padding: 6px 36px; }

@media only screen and (max-width: 800px) {
  .rm-image-with-text {
    grid-template-columns: 100%; }
    .rm-image-with-text .text-container {
      padding: 45px; } }
@media only screen and (max-width: 440px) {
  .rm-image-with-text {
    grid-template-columns: 100%; }
    .rm-image-with-text .text-container {
      padding: 45px 30px; }
      .rm-image-with-text .text-container .vertical-middle {
        text-align: center; } }
.rm-db-plus-faq h3, .rm-db-plus-faq .h3 {
  font-size: 28px;
  margin: 0 0 12px 0;
  text-align: center; }
.rm-db-plus-faq .accordion-2-wrapper {
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0 auto;
  padding: 0 0 60px 0; }
  .rm-db-plus-faq .accordion-2-wrapper .accordion-wrap {
    font-size: 18px; }
    .rm-db-plus-faq .accordion-2-wrapper .accordion-wrap .accordion-header {
      color: #443939; }
    .rm-db-plus-faq .accordion-2-wrapper .accordion-wrap .accordion-body p {
      font-size: 21px;
      font-weight: 300;
      line-height: 1.3;
      color: #443939; }

@media only screen and (max-width: 960px) {
  .rm-db-plus-faq .accordion-2-wrapper .accordion-wrap .accordion-header {
    height: unset;
    padding-right: 90px; }
    .rm-db-plus-faq .accordion-2-wrapper .accordion-wrap .accordion-header.active + .accordion-body {
      height: 120px; } }
@media only screen and (max-width: 670px) {
  .rm-db-plus-faq .accordion-2-wrapper {
    width: 100%; } }
@media only screen and (max-width: 520px) {
  .rm-db-plus-faq .accordion-2-wrapper .accordion-wrap .accordion-header.active + .accordion-body {
    height: 160px; } }
.rm-db-plus-checkout {
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 45px)/2));
  column-gap: 45px;
  text-align: center;
  padding: 60px 0 90px 0; }
  .rm-db-plus-checkout h3, .rm-db-plus-checkout .h3 {
    font-size: 28px;
    margin: 0 0 12px 0; }
  .rm-db-plus-checkout p {
    font-size: 21px;
    font-weight: 300; }
    .rm-db-plus-checkout p.label {
      font-size: 24px;
      font-weight: 400;
      margin: 0 0 3px 0; }
    .rm-db-plus-checkout p.disclaimer {
      font-size: 16px;
      font-weight: 300;
      opacity: .8; }
  .rm-db-plus-checkout .form-container {
    display: table;
    height: 100%; }
    .rm-db-plus-checkout .form-container .vertical-middle {
      display: table-cell;
      vertical-align: middle; }
      .rm-db-plus-checkout .form-container .vertical-middle .period-options {
        display: grid;
        /*grid-template-columns: repeat(2, calc((100% - 30px)/2));*/
        column-gap: 30px;
        text-align: center;
        margin: 45px 0; }
        .rm-db-plus-checkout .form-container .vertical-middle .period-options div {
          border: 2px solid rgba(0, 0, 0, 0.5);
          border-radius: 5px;
          padding: 18px;
          cursor: pointer;
          opacity: .5;
          transition: ease .33s; }
          .rm-db-plus-checkout .form-container .vertical-middle .period-options div h1, .rm-db-plus-checkout .form-container .vertical-middle .period-options div .h1 {
            font-size: 48px;
            margin: 0; }
            .rm-db-plus-checkout .form-container .vertical-middle .period-options div h1 .smaller, .rm-db-plus-checkout .form-container .vertical-middle .period-options div .h1 .smaller {
              font-size: 14px;
              text-transform: lowercase; }
          .rm-db-plus-checkout .form-container .vertical-middle .period-options div h1, .rm-db-plus-checkout .form-container .vertical-middle .period-options div .h1, .rm-db-plus-checkout .form-container .vertical-middle .period-options div p {
            user-select: none; }
          .rm-db-plus-checkout .form-container .vertical-middle .period-options div.active {
            opacity: 1;
            border: 2px solid #B03F39; }
        .rm-db-plus-checkout .form-container .vertical-middle .period-options input {
          display: none; }
      .rm-db-plus-checkout .form-container .vertical-middle .btn, .rm-db-plus-checkout .form-container .vertical-middle .btn--secondary {
        background-color: #B03F39;
        border-radius: 0;
        font-size: 18px;
        padding: 6px 36px; }

@media only screen and (max-width: 1020px) {
  .rm-db-plus-checkout {
    grid-template-columns: 100%;
    margin: 0 auto;
    width: 90%;
    max-width: 600px; }
    .rm-db-plus-checkout .image-container {
      margin-top: 90px; } }
@media only screen and (max-width: 540px) {
  .rm-db-plus-checkout .form-container .vertical-middle .period-options {
    grid-template-columns: 100%;
    row-gap: 30px; } }
.rm-head-banner {
  display: table;
  height: 66.67vw;
  max-height: 600px;
  position: relative;
  background: white url(../jpg/vipmain29d5b.jpg) no-repeat;
  background-size: cover;
  background-position: right center; }
  .rm-head-banner .vertical-middle {
    display: table-cell;
    vertical-align: middle; }
    .rm-head-banner .vertical-middle .banner-contents {
      width: 75vw;
      margin-left: 12.5vw;
      padding: 60px 0;
      color: #fff; }
      .rm-head-banner .vertical-middle .banner-contents h1, .rm-head-banner .vertical-middle .banner-contents .h1 {
        font-size: 60px;
        line-height: 1.2;
        margin: 0;
        text-transform: none; }
      .rm-head-banner .vertical-middle .banner-contents p {
        font-size: 21px;
        line-height: 1.3;
        font-weight: 300;
        margin: 20px 0 30px 0;
        padding-right: 300px; }
      .rm-head-banner .vertical-middle .banner-contents .btn, .rm-head-banner .vertical-middle .banner-contents .btn--secondary {
        background: #fff;
        color: #B03F39;
        border-radius: 0;
        font-size: 18px;
        padding: 6px 36px; }

@media only screen and (max-width: 660px) {
  .rm-head-banner .vertical-middle .banner-contents h1, .rm-head-banner .vertical-middle .banner-contents .h1 {
    font-size: 36px; }
  .rm-head-banner .vertical-middle .banner-contents p {
    padding-right: 0px; } }
#db-vip-confirmation {
  margin: 120px auto 180px auto; }

#db-vip-cancellation {
  margin: 180px auto 180px auto; }

#db-vip-confirmation, #db-vip-cancellation {
  width: 92.5%;
  max-width: 600px;
  text-align: center; }
  #db-vip-confirmation .db-icon-container, #db-vip-cancellation .db-icon-container {
    margin: 0 0 24px 0; }
  #db-vip-confirmation h1, #db-vip-confirmation .h1, #db-vip-cancellation h1, #db-vip-cancellation .h1 {
    text-transform: unset;
    margin: 0 0 .75em 0; }
  #db-vip-confirmation p, #db-vip-cancellation p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 18px 0; }
    #db-vip-confirmation p strong, #db-vip-cancellation p strong {
      font-weight: 900; }
    #db-vip-confirmation p a, #db-vip-cancellation p a {
      color: #333;
      text-decoration: underline; }
  #db-vip-confirmation .btn, #db-vip-confirmation .btn--secondary, #db-vip-cancellation .btn, #db-vip-cancellation .btn--secondary {
    background-color: #B03F39;
    border-radius: 0;
    font-size: 18px;
    margin-top: 24px;
    padding: 6px 36px; }

/* Optimize Navigation Test */
.goptimize .r1_navigation .nav_desktop .section-main .link-list.main-nav-list a.highlight {
  color: #B03F39; }

/* Curated Collections Page */
section.curated-collections {
  margin-left: 30px; }
  section.curated-collections .headline-container {
    width: 100%;
    padding: 3.33em 0;
    text-align: center; }
    section.curated-collections .headline-container h2, section.curated-collections .headline-container .h2 {
      line-height: 1.2; }
    section.curated-collections .headline-container p {
      max-width: 66.67%;
      margin: 0 auto;
      font-size: 1.2em; }
  section.curated-collections .collection-container {
    display: grid;
    column-gap: 2em;
    row-gap: 2em;
    grid-template-columns: repeat(2, calc((100% - 2em) / 2)); }
    section.curated-collections .collection-container .each-collection {
      height: 360px;
      width: 100%;
      position: relative;
      background-color: #000; }
      section.curated-collections .collection-container .each-collection img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        transition: ease .33s; }
      section.curated-collections .collection-container .each-collection .title-container {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        height: 360px;
        width: 100%;
        display: table; }
        section.curated-collections .collection-container .each-collection .title-container h3, section.curated-collections .collection-container .each-collection .title-container .h3 {
          display: table-cell;
          vertical-align: middle;
          text-align: center;
          font-size: 4em;
          color: #fff;
          text-transform: lowercase;
          text-shadow: 0 0 0.67em black;
          padding: 0 1em;
          line-height: 1; }
      section.curated-collections .collection-container .each-collection:hover img {
        opacity: 0.5; }

@media only screen and (max-width: 800px) {
  section.curated-collections .headline-container p {
    max-width: 100%; }
  section.curated-collections .collection-container .each-collection {
    height: 300px; }
    section.curated-collections .collection-container .each-collection .title-container {
      height: 300px; }
      section.curated-collections .collection-container .each-collection .title-container h3, section.curated-collections .collection-container .each-collection .title-container .h3 {
        font-size: 3em;
        padding: 0 .67em; } }
@media only screen and (max-width: 580px) {
  section.curated-collections .collection-container {
    grid-template-columns: 100%;
    row-gap: 0.67em; }
    section.curated-collections .collection-container .each-collection {
      height: 300px; }
      section.curated-collections .collection-container .each-collection .title-container {
        height: 300px; }
        section.curated-collections .collection-container .each-collection .title-container h3, section.curated-collections .collection-container .each-collection .title-container .h3 {
          font-size: 4em;
          padding: 0 .67em; } }
/* Ajax Cart Test */
.test-free-shipping-container {
  display: none;
  padding: 15px; }
  .test-free-shipping-container .free-shipping-content {
    background: rgba(247, 226, 213, 0.4);
    padding: 12px; }
    .test-free-shipping-container .free-shipping-content .free-shipping-message {
      font-size: 13px;
      text-align: center;
      text-transform: uppercase; }
      .test-free-shipping-container .free-shipping-content .free-shipping-message a {
        text-decoration: underline; }
    .test-free-shipping-container .free-shipping-content .free-shipping-bar {
      height: 8px;
      width: 95%;
      margin: 8px auto 0 auto;
      background: #f7e2d5; }
      .test-free-shipping-container .free-shipping-content .free-shipping-bar .free-shipping-progress {
        height: 100%;
        width: 0;
        max-width: 100%;
        background: #B03F39;
        transition: ease .67s; }

/* QuadPay Modification */
.qp-widget-container {
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: lowercase;
  color: #666;
  font-weight: 400;
  margin-top: 5px; }

/* PDP - Product Measurements Modal */
.r1_modal-toggle.pmt-padding {
  padding-left: 7px; }

.r1_modals .modal.product-measurements-modal {
  border: solid;
  background-color: #f1f2f3; }
  .r1_modals .modal.product-measurements-modal .modal-content .pm-grid {
    margin-top: 36px; }
    .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row {
      display: grid;
      text-align: center; }
      .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row.title-row p {
        font-weight: 600;
        text-transform: uppercase; }
      .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row p {
        padding: 18px 24px;
        margin: 0; }
      .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row:nth-child(even) {
        background-color: #feffff; }

@media only screen and (max-width: 700px) {
  .r1_modals .modal.product-measurements-modal {
    padding: 36px 18px; }
    .r1_modals .modal.product-measurements-modal .modal-content .pm-grid {
      /*         max-width: calc(90vw - (24px * 2));
              overflow: scroll; */ }
      .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row {
        /*           min-width: 900px; */ }
        .r1_modals .modal.product-measurements-modal .modal-content .pm-grid .pm-row p {
          padding: 18px 12px;
          margin: 0; } }
/* Image Test */
.optimize-psd {
  display: none; }

.product-img-wrap img.go-studio {
  display: none; }

/* New VIP Modal for Account Page */
.modal-content#new-vip-modal-content {
  height: 100%;
  display: table; }
  .modal-content#new-vip-modal-content .align-middle {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
    .modal-content#new-vip-modal-content .align-middle h1, .modal-content#new-vip-modal-content .align-middle .h1 {
      padding: 0.67em 0 0.33em 0; }
    .modal-content#new-vip-modal-content .align-middle p {
      font-size: 20px; }
    .modal-content#new-vip-modal-content .align-middle .btn, .modal-content#new-vip-modal-content .align-middle .btn--secondary {
      background-color: #B03F39;
      border-radius: 0;
      font-size: 18px;
      margin-top: 24px;
      padding: 6px 36px; }

/* Pairing Suggestions */
#ATCWrap {
  margin-top: 20px;
  display: flex; }

/* Mobile PDP Slider Normalization */
.rw-slide {
  object-fit: cover; }

#pdp-mobile-img-big .rw-slide {
  height: calc((100vw - 30px) * 1.4);
  min-width: calc(100vw - 30px); }

/* Mobile PDP Color Test */
.go-color-test .pricing span#ProductPrice {
  font-weight: 700;
  color: #A22018;
  font-size: 24px; }
.go-color-test .test-qp-widget-container {
  font-weight: 500; }
  .go-color-test .test-qp-widget-container span[slot='qpDisplayAmount'] {
    font-weight: 500;
    color: #B03F39; }
.go-color-test .f-right.r1_modal-toggle {
  font-weight: 500;
  color: #B03F39; }
.go-color-test p.accent-text, .go-color-test p .accent-text {
  text-transform: capitalize;
  color: #000 !important;
  font-weight: 500 !important; }
  .go-color-test p.accent-text i, .go-color-test p .accent-text i {
    font-style: normal; }
.go-color-test span.accent-2-text {
  font-weight: 500;
  color: #707070 !important; }
.go-color-test .variant-btn {
  border: 1px solid #DBDBDB !important;
  color: #363636;
  font-size: 12px !important; }
  .go-color-test .variant-btn.selected {
    background-color: #fff !important;
    color: #363636 !important;
    border: 2px solid #707070 !important; }
  .go-color-test .variant-btn.disabled {
    background-color: #fff !important;
    color: #DBDBDB !important;
    background-image: linear-gradient(35deg, transparent 48.5%, #dbdbdb, transparent 51.5%); }
.go-color-test .variant-swatch-selector .variant-swatch {
  padding: 1px !important; }
  .go-color-test .variant-swatch-selector .variant-swatch.selected {
    border: 2px solid #707070 !important; }

.r1_product .r1_product-info .pricing {
  margin: 0 0 15px 0;
  display: flex;
  padding-bottom: 10px;
  align-items: center;
  border-bottom: 1px solid #DDDDDD; }
  .r1_product .r1_product-info .pricing img.rewards-logo {
    margin-left: 15px !important; }

.pricing span#ProductPrice {
  font-weight: 700;
  color: #A22018;
  font-size: 24px; }

.variant-btn {
  font-size: 12px !important; }

/* Mobile PDP Padding Test */
.go-padding-test .product-photos-mobile {
  margin-top: 3px;
  margin-bottom: 16px; }
.go-padding-test .promo-text {
  margin-top: 16px !important;
  margin-bottom: 16px !important; }
.go-padding-test #ATCWrap {
  margin-top: 20px; }

.option-grid.go-padding-test {
  display: grid;
  grid-template-columns: repeat(2, auto); }
  .option-grid.go-padding-test .option-row {
    grid-column: span 2;
    max-width: calc(100vw - 30px); }
  .option-grid.go-padding-test .options-size-range, .option-grid.go-padding-test .options-colors {
    grid-column: span 1; }
  .option-grid.go-padding-test .options-colors {
    grid-row: 1;
    grid-column: 1; }
  .option-grid.go-padding-test .options-size-range {
    grid-row: 1;
    grid-column: 2; }

@media screen and (max-width: 950px) {
  .r1_product .product-photos-mobile {
    margin-top: 20px; } }
/* Mobile PDP Bigger ATC Test */
.go-bigger-test #AddToCart {
  font-size: 20px;
  padding: 10px;
  border-radius: 5px !important; }

#AddToCart {
  padding: 11px 20px; }

/* Instafeed */
.instagram-container {
  margin: 30px 0 40px 0; }
  .instagram-container .instagram-intro {
    margin: 20px 0; }
    .instagram-container .instagram-intro .instagram-icon {
      height: 36px;
      width: 36px;
      margin: 0 auto 4px auto; }
    .instagram-container .instagram-intro p {
      font-size: 18px;
      margin: 0;
      text-align: center; }
      .instagram-container .instagram-intro p strong {
        font-size: 24px; }
      .instagram-container .instagram-intro p a {
        text-decoration: underline; }
  .instagram-container #insta-feed {
    margin-top: 0px !important; }

@media only screen and (max-width: 949px) {
  .instagram-container #insta-feed .instafeed-container {
    width: 50% !important;
    padding-top: 50% !important; } }
/* Inline Upsell */
.r1_full-cart {
  /*overflow-x: scroll;*/
  overflow: hidden; }

.inline-upsell-container {
  padding: 8px 15px;
  transition: ease .33s;
  border-bottom: 1px solid #d9e4ef; }
  .inline-upsell-container.inactive {
    opacity: 0; }
  .inline-upsell-container.hidden {
    display: none; }
  .inline-upsell-container.sticky {
    position: absolute;
    bottom: 125px;
    background: #FFF; }
  .inline-upsell-container.sticky-mobile {
    position: absolute;
    bottom: 100px;
    background: #FFF;
    min-width: 100%; }
  .inline-upsell-container .inline-header {
    padding: 0 0 15px 0;
    line-height: 1.25; }
  .inline-upsell-container .inline-content {
    display: grid;
    grid-template-columns: 40% 60%; }
    .inline-upsell-container .inline-content .image-container .upsell-image {
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center center; }
    .inline-upsell-container .inline-content .info-container {
      padding: 0 0 0 12px; }
      .inline-upsell-container .inline-content .info-container h4, .inline-upsell-container .inline-content .info-container .h4 {
        margin: 0;
        color: #666;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase; }
      .inline-upsell-container .inline-content .info-container span {
        font-weight: 600; }
        .inline-upsell-container .inline-content .info-container span.comparison-price {
          font-size: 14px;
          text-decoration: line-through;
          opacity: 0.67; }
        .inline-upsell-container .inline-content .info-container span.current-price {
          font-weight: 700;
          color: #B03F39; }
      .inline-upsell-container .inline-content .info-container .inline-form {
        padding: 18px 0 0 0; }
        .inline-upsell-container .inline-content .info-container .inline-form .btn, .inline-upsell-container .inline-content .info-container .inline-form .btn--secondary {
          width: 100%;
          font-size: 16px;
          padding: 6px 10px;
          font-weight: 600;
          text-transform: uppercase;
          background: #B03F39; }
        .inline-upsell-container .inline-content .info-container .inline-form .go-to-checkout {
          padding: 3px;
          text-align: center; }
          .inline-upsell-container .inline-content .info-container .inline-form .go-to-checkout a {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: underline; }

/* Mask Upsell — Test */
/* .modal-mask-test, .modal-mask-container, .inline-mask-container {display: none;}

@media only screen and (max-width: 480px) {
  .inline-mask-container {
    display: block; width: calc(100vw - 30px); 
    margin: 0 auto; padding: 8px 0 16px 0;
    background: #fff; transition: ease .33s;
    &.inactive {
      transform: translateX(-100vw); opacity: 0;
    }
    &.hidden {
      display: none;
    }
    .inline-header {
      padding: 12px 16px; font-size: 18px; font-weight: 500;
      text-transform: uppercase; text-align: center;
      background: #B03F39; color: #fff;
    }
    .inline-content {
      display: grid; grid-template-columns: 40% 60%;
      .image-container {
        .upsell-image {
          width: 100%; height: 100%; background-repeat: no-repeat;
          background-size: contain; background-position: center center;
        }
      }
      .info-container {
        padding: 12px 0 0 12px;
        h4 {
          margin: 0; color: #666;
          font-size: 14px; font-weight: 600; text-transform: uppercase;
        }
        span {
          font-weight: 600;
          &.comparison-price {
            font-size: 14px;
            text-decoration: line-through; opacity: 0.67;
          }
          &.current-price {
            font-weight: 700; color: #B03F39;
          }
        }
        .inline-form {
          padding: 18px 0 0 0;
          .btn {
            width: 100%; font-size: 16px; padding: 6px 10px;
            font-weight: 600; text-transform: uppercase;
            background: #B03F39;
          }
          .go-to-checkout {
            padding: 3px; text-align: center;
            a {
              font-size: 14px;
              font-weight: 600; text-transform: uppercase;
              text-decoration: underline;
            }
          }
        }
      }
    }
  }
  .modal-mask-container {
    height: 88vh; width: 90vw; border-radius: 3px;
    position: fixed; top: 6vh; left: 5vw; z-index: 9999;
    background: #fff; box-shadow: 0 3px 3px 3px rgba(0,0,0,0.067);
    overflow: hidden; transition: ease .33s;
    &.inactive {
      transform: translateX(100vw);
    }
    .modal-header {
      padding: 24px 16px; font-size: 18px; font-weight: 500;
      text-transform: uppercase; text-align: center;
      background: #B03F39; color: #fff;
    }
    .modal-content {
      height: 100%; width: 100%; position: absolute; overflow-y: scroll;
      .upsell-info {
        padding: 0 5vw 200px 5vw;
        .upsell-image {
          width: 80vw; height: calc(80vw * 1.1);
          background-size: cover; background-position: center center;
        }
        h4 {
          margin: 0; max-width: 80%; color: #666;
          font-size: 16px; font-weight: 600; text-transform: uppercase;
        }
        span {
          font-weight: 600;
          &.comparison-price {
            text-decoration: line-through; opacity: 0.67;
          }
          &.current-price {
            font-weight: 700; color: #B03F39;
          }
        }
      }
    }
    .modal-form {
      width: 90vw; left: 5vw; padding: 12px 5vw;
      position: fixed; bottom: calc(5vh); background: #fff;
      .btn {
        width: 100%; font-size: 18px;
        font-weight: 600; text-transform: uppercase;
        background: #B03F39;
      }
      .go-to-checkout {
        padding: 8px; text-align: center;
        a {
          font-weight: 600; text-transform: uppercase;
          text-decoration: underline;
        }
      }
    }
  }
}

.r1_full-cart .inline-mask-upsell {display: none;} */
/* BCA Collection Page */
.bca-container {
  height: 500px;
  width: 100%;
  margin: 45px 0 30px 0;
  margin-left: none;
  background-image: url(../jpg/bcaimagedesktop866c.jpg);
  background-size: cover;
  background-position: right;
  display: table; }
  .bca-container .bca-vertical-align {
    display: table-cell;
    vertical-align: middle;
    padding: 60px; }
    .bca-container .bca-vertical-align .bca-heading, .bca-container .bca-vertical-align .bca-body {
      width: 100%;
      max-width: 400px;
      color: #fff; }
    .bca-container .bca-vertical-align .bca-heading {
      text-transform: none;
      line-height: 1.2;
      font-size: 36px;
      font-weight: 700; }
    .bca-container .bca-vertical-align .bca-body {
      line-height: 1.4;
      font-size: 18px;
      font-weight: 500; }
      .bca-container .bca-vertical-align .bca-body a {
        color: #fff;
        text-decoration: underline; }
    .bca-container .bca-vertical-align .bca-button {
      text-transform: uppercase;
      font-size: 18px;
      font-weight: 500;
      color: #fff;
      border: 2px solid #fff;
      margin: 9px 0 0 0;
      padding: 7px 36px; }

@media only screen and (max-width: 900px) {
  .bca-container {
    background-image: url(../jpg/bcaimagemobile2547.jpg); } }
@media only screen and (max-width: 599px) {
  .bca-container {
    width: 100vw;
    margin: 0 0 30px -15px; }
    .bca-container .bca-vertical-align {
      padding: 60px 30px; } }
.bca-secondary-copy {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 18px; }
  .bca-secondary-copy a {
    text-decoration: underline; }

/* .bca-image {
	position: relative;
}

.bca-heading {
	position: absolute;
	top: 10%;
	left: 7%;
	color: white;
	font-size: 80%;
	font-weight: bold;
	padding-right: 60px;
	
	
}

.bca-body {
	position: absolute;
	top: 20%;
	left: 7%;
	color: white;
	line-height: 1;
	font-size: 70%;
	padding-right: 60px;
	margin-top: 25px;
}

.bca-button {
	position: absolute;
	font-size: 13px;
	top: 65%;
	left: 7%;
	color: white;
	border: 1px solid white;
	padding: 5px 10px;
}

.BCAsecondSectionText {
	color: black;
	text-align: center;
	margin-top: 10px;
	line-height: 1.3;
	font-size: 90%;
}


@media screen and (min-width: 767px) {
	.bca-heading {
		font-size: 120%;
	}
	.bca-body {
		font-size: 120%;
		padding-right: 300px;
		margin-top: 30px;
	}
	.BCAsecondSectionText {
		font-size: 120%;
	}
}

@media screen and (min-width: 1100px) {
	.bca-heading {
		font-size: 200%
	}
	.bca-body {
		font-size: 180%;
		margin-top: 60px;
		padding-right: 400px;
	}
	.bca-button {
		font-size: 150%;
		top: 70%;
	}
	.BCAsecondSectionText {
		font-size: 130%;
	}
} */
#sell-on-db-wrapper {
  max-width: 880px;
  margin: 0 auto; }
  #sell-on-db-wrapper h2, #sell-on-db-wrapper .h2, #sell-on-db-wrapper h3, #sell-on-db-wrapper .h3 {
    font-weight: bold; }
  #sell-on-db-wrapper .form-group {
    margin-bottom: 15px; }
    #sell-on-db-wrapper .form-group .control-label {
      display: block; }
    #sell-on-db-wrapper .form-group .form-control {
      width: 100%; }
      #sell-on-db-wrapper .form-group .form-control.has-error {
        border: 1px solid #B03F39; }
    #sell-on-db-wrapper .form-group textarea {
      resize: none; }
    #sell-on-db-wrapper .form-group .help-block {
      color: #B03F39; }
  #sell-on-db-wrapper .ast-req {
    color: red; }
  #sell-on-db-wrapper .submit-div {
    text-align: right;
    margin: 10px 0px; }
  #sell-on-db-wrapper button {
    background-color: #B03F39; }
  #sell-on-db-wrapper input[type=file] {
    width: 100%;
    height: 100px; }
  #sell-on-db-wrapper .dropzone {
    outline: 1px solid grey;
    /* the dash box */
    background: #ccc;
    color: dimgray;
    padding: 10px 10px;
    min-height: 200px;
    /* minimum height */
    position: relative;
    cursor: pointer; }

#sell-on-db-ty,
#submit-ajax {
  display: none; }

#partners .wrapper.main-content {
  max-width: 100%;
  padding: 0; }
  #partners .wrapper.main-content .wrapper-container {
    max-width: 1200px;
    margin: 0 auto; }
  #partners .wrapper.main-content #db-partners-wrapper .icon {
    background: #fdf5f2;
    margin: 0px 10px; }
  #partners .wrapper.main-content #db-partners-wrapper .btn, #partners .wrapper.main-content #db-partners-wrapper .btn--secondary {
    background-color: #B03F39;
    border-radius: 0;
    font-size: 18px;
    padding: 6px 36px; }
  #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw {
    background: #fdf5f2;
    padding: 50px 0px;
    text-align: center;
    margin-top: 50px; }
    #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw h3, #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .h3 {
      font-size: 32px; }
    #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .db-partner-steps {
      list-style: none;
      font-size: 32px; }
      #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .db-partner-steps li {
        display: inline-block;
        position: relative; }
      #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .db-partner-steps .sep {
        padding: 0px 15px; }
        #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .db-partner-steps .sep .step-separator {
          border: 1px solid #707070;
          display: inline-block;
          width: 200px;
          margin-bottom: 6px; }
      #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .db-partner-steps .arrow {
        border: solid black;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 6px;
        margin-top: 22px;
        margin-left: -10px;
        position: absolute; }
      #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .db-partner-steps .right {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg); }
    #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .btn, #partners .wrapper.main-content #db-partners-wrapper .db-partner-hiw .btn--secondary {
      margin: 15px 0px; }
  #partners .wrapper.main-content #db-partners-wrapper .rm-image-with-text {
    margin-bottom: 30px; }
  #partners .wrapper.main-content #db-partners-wrapper .rm-db-plus-faq {
    margin-bottom: 50px; }
  #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us {
    padding: 30px 0px;
    text-align: center; }
    #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us h3, #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us .h3 {
      font-size: 32px;
      margin-bottom: 50px; }
    #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us .partner-benefit {
      display: flex;
      align-items: start;
      margin-bottom: 50px;
      padding: 0px 15px; }
      #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us .partner-benefit img {
        width: 100px;
        background: #EEE;
        border-radius: 100px;
        padding: 20px;
        min-width: 100px;
        max-width: 100px; }
      #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us .partner-benefit .benefit-desc {
        font-size: 20px;
        text-align: left;
        padding-left: 20px;
        line-height: 26px; }
    #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us .benefit {
      background: #fdf5f2;
      padding: 15px;
      font-size: 22px;
      margin: 15px; }
    #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us ul {
      /*list-style: none;*/ }
    #partners .wrapper.main-content #db-partners-wrapper .why-partner-with-us ul li {
      font-size: 24px;
      /*
      width: 50%;
      background: #fdf5f2;
      */ }

@media (max-width: 416px) {
  .db-partner-steps li {
    display: block !important; } }
/* Suggested Discount Test  */
.go-grid-item-test {
  display: none; }

.go-grid-item-container-test {
  display: grid;
  grid-template-columns: repeat(4, 25%); }
  .go-grid-item-container-test .grid__item {
    width: 100%;
    padding-bottom: 36px; }
    .go-grid-item-container-test .grid__item .form-vertical {
      margin-bottom: 9px; }
    .go-grid-item-container-test .grid__item .options-wrapper {
      position: absolute;
      bottom: 0;
      width: calc(100% - 10px); }
      .go-grid-item-container-test .grid__item .options-wrapper button.grid-atc {
        position: absolute;
        bottom: 0;
        height: 36px; }
      .go-grid-item-container-test .grid__item .options-wrapper .atc-size-options {
        bottom: 0; }
  .go-grid-item-container-test .go-grid-item-current {
    display: none; }
  .go-grid-item-container-test .go-grid-item-current.b {
    padding: 5px 0px; }
  .go-grid-item-container-test .go-grid-item-test {
    display: block;
    text-align: left;
    /*     button.grid-atc {
          border-color: #000 !important; font-weight: 500 !important;
        } */ }
    .go-grid-item-container-test .go-grid-item-test h3.go-test-r1_product-name, .go-grid-item-container-test .go-grid-item-test .go-test-r1_product-name.h3 {
      font-size: 1.1em;
      line-height: 1.2;
      font-weight: 500;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      margin: 0 0 0.2em 0; }
    .go-grid-item-container-test .go-grid-item-test .suggested-discount {
      font-size: 0.9em;
      font-weight: 500;
      line-height: 1.2;
      color: #B03F39; }
    .go-grid-item-container-test .go-grid-item-test .price-col {
      font-size: 1.1em !important;
      font-weight: 500 !important; }
      .go-grid-item-container-test .go-grid-item-test .price-col .compare {
        opacity: 0.5; }

@media only screen and (max-width: 1100px) {
  .go-grid-item-container-test {
    grid-template-columns: repeat(3, 33.33%); } }
@media only screen and (max-width: 740px) {
  .go-grid-item-container-test {
    grid-template-columns: repeat(2, 50%); } }
@media only screen and (max-width: 370px) {
  .go-grid-item-container-test {
    grid-template-columns: 100%; } }
.pdp-discount .suggested-discount {
  display: none;
  font-weight: 500;
  line-height: 1.2;
  color: #B03F39; }
  .pdp-discount .suggested-discount.go-pdp-discount-test {
    display: block; }

/* TurnTo */
.tt-container {
  display: none; }
  .tt-container.tt-live {
    display: block; }

/**
* Cross brands bar
*/
.cross-brands {
  font-size: .9rem; }
  .cross-brands .brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap; }
    .cross-brands .brand-list li {
      display: inline-block;
      padding: 10px 10px;
      margin-bottom: 0; }
      .cross-brands .brand-list li.active {
        border-bottom: 3px solid #FFFFFF; }
      .cross-brands .brand-list li.cross-brands-text {
        margin-right: .5rem;
        margin-left: .5rem; }
      .cross-brands .brand-list li a {
        touch-action: manipulation; }
        .cross-brands .brand-list li a img, .cross-brands .brand-list li a svg {
          /*height: auto;*/
          vertical-align: middle;
          max-width: auto !important; }

@media only screen and (max-width: 416px) {
  .brand-list {
    overflow-x: scroll; } }
/*
Download App Icons
*/
.section-appDownload {
  display: none; }

@media only screen and (max-width: 800px) {
  .section-appDownload {
    display: block;
    margin-top: 10px;
    padding: 40px 30px;
    position: relative;
    margin-bottom: -60px;
    margin-left: -30px;
    margin-right: -30px;
    text-align: center;
    background: #E6E6E6; }

  .section-appDownload p {
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle; }

  .appDownload-section .section-header label {
    text-transform: uppercase;
    color: #000;
    font-weight: bold;
    font-size: 22px; }

  .icon-img {
    width: 100px;
    padding: 5px; } }
.isp-wide-layout {
  display: none !important; }

/**
* Exclusive items
*/
.r1_product-grid-item .image-color {
  overflow: hidden; }

.r1_product-grid-item .options-wrapper {
  margin-top: 10px; }

.r1_product-grid-item .grid-atc {
  position: initial; }

.corner-ribbon {
  width: 120px;
  background: #fafafa;
  position: absolute;
  top: 0px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  color: #f0f0f0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  border-bottom: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
  height: 40px;
  z-index: 100; }
  .corner-ribbon.top-right {
    top: 0px;
    right: -40px;
    left: auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg); }
  .corner-ribbon img {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: 50px;
    margin-top: 10px; }

.db-exclusive {
  text-align: left;
  font-size: 1rem; }

.inline-vip-header {
  line-height: 1.3rem;
  border-top: 1px solid #E3E3E3;
  padding-top: 1rem; }
  .inline-vip-header h5, .inline-vip-header .h5 {
    margin-bottom: 0px; }
  .inline-vip-header p {
    margin: 0;
    line-height: 1.3rem; }
  .inline-vip-header .vip-red {
    color: #B03F39; }
  .inline-vip-header a {
    text-decoration: underline;
    cursor: pointer; }
  .inline-vip-header .rewards-logo {
    margin: -2px 2px; }

.shipping-info {
  margin: 0rem 0 1rem 0;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555555; }
  .shipping-info img.small-icon {
    margin-bottom: -3px; }
  .shipping-info .r1_modal-toggle {
    display: block;
    color: #B03F39;
    margin: 10px 0; }
  .shipping-info .rewards-logo {
    margin: -2px 2px; }

.stock {
  margin-bottom: 1rem; }
  .stock .font-caption-2 {
    font-size: 12px;
    font-style: italic; }

.progress-bar {
  border-radius: 10px;
  height: 6px;
  margin-top: .5rem;
  background: #E3E3E3; }
  .progress-bar .percentage {
    background: #b75b58;
    overflow: hidden;
    height: 6px;
    border-radius: 10px; }

.inline-vip-content .btn, .inline-vip-content .btn--secondary {
  width: 100%;
  font-size: 16px;
  padding: 6px 10px;
  font-weight: 600;
  text-transform: uppercase;
  background: #B03F39;
  margin: 10px 0px; }
.inline-vip-content ul li {
  margin: 0; }
.inline-vip-content a {
  text-decoration: underline;
  margin-right: 10px;
  cursor: pointer; }

.options-wrapper.promo {
  margin-top: 65px; }

/* REWARDS START */
.inline-rewards-header .brand-list {
  list-style: none; }
  .inline-rewards-header .brand-list img {
    max-width: 36px;
    max-height: none;
    -webkit-filter: invert(1); }
  .inline-rewards-header .brand-list li {
    display: inline;
    margin-right: 5px; }

.discount-msg {
  font-size: 12px; }

.rewards-desc {
  padding-top: 10px;
  text-align: left !important; }
  .rewards-desc span {
    text-align: left;
    font-size: 10px; }
  .rewards-desc ul {
    /*
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    */
    text-align: left;
    /*list-style: disc;*/
    margin: 0;
    list-style: none;
    padding: 0;
    margin-top: 10px;
    font-size: 11px; }
    .rewards-desc ul li {
      margin-top: 0;
      margin-bottom: 0;
      display: inline-block;
      font-weight: bold;
      color: #4D4D4D;
      padding-left: 5px; }
      .rewards-desc ul li:first-child {
        padding: 0; }
      .rewards-desc ul li:after {
        content: " | "; }
      .rewards-desc ul li:last-child:after {
        content: ""; }
  .rewards-desc .learn-more {
    position: absolute;
    right: 15px;
    font-size: 11px;
    color: #4D4D4D;
    text-decoration: underline;
    margin-top: -17px; }

.inactiveMixin {
  content: "";
  position: absolute;
  display: block; }

.beforeAnimation {
  transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1); }

.afterAnimation {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0px 0 rgba(0, 0, 0, 0.04), 0 4px 9px rgba(0, 0, 0, 0.13), 0 3px 3px rgba(0, 0, 0, 0.05);
  transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1); }

.checkbox_rewards {
  margin: auto;
  width: 100%;
  text-align: left; }
  .checkbox_rewards .centered {
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px; }
  .checkbox_rewards .centerer {
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.checkbox_rewards input.mobileToggle {
  opacity: 0;
  position: absolute; }

.checkbox_rewards input.mobileToggle + label {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: 0.4s ease;
  height: 24px;
  width: 40px;
  border: 1px solid #e4e4e4;
  border-radius: 60px; }

.checkbox_rewards input.mobileToggle + label:before {
  content: "";
  position: absolute;
  display: block;
  transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  height: 24px;
  width: 41px;
  top: 0;
  left: 0;
  border-radius: 30px; }

.checkbox_rewards input.mobileToggle + label:after {
  content: "";
  position: absolute;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0px 0 rgba(0, 0, 0, 0.04), 0 4px 9px rgba(0, 0, 0, 0.13), 0 3px 3px rgba(0, 0, 0, 0.05);
  transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  background: whitesmoke;
  height: 22px;
  width: 22px;
  top: 1px;
  left: 0px;
  border-radius: 60px; }

.checkbox_rewards input.mobileToggle:checked + label:before {
  background: black;
  transition: width 0.2s cubic-bezier(0, 0, 0, 0.1); }

.checkbox_rewards input.mobileToggle:checked + label:after {
  left: 20px; }

.inline-rewards-header {
  text-align: left; }
  .inline-rewards-header table {
    line-height: 16px;
    width: 100%;
    padding: 0;
    border: none; }
    .inline-rewards-header table tr, .inline-rewards-header table th, .inline-rewards-header table td {
      padding-left: 0;
      padding-right: 0;
      border: none; }
  .inline-rewards-header .total-line__price {
    text-align: right; }
  .inline-rewards-header .emphasis {
    text-align: right !important;
    vertical-align: middle;
    font-weight: bold; }
  .inline-rewards-header .total-line__name,
  .inline-rewards-header .total-line__price {
    padding: 0;
    margin: 0; }

.rewards-pop {
  display: none;
  z-index: 10999;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; }
  .rewards-pop .exit {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: arial;
    font-size: 20px;
    cursor: pointer; }
  .rewards-pop .pop-flex {
    display: flex;
    width: 100%;
    height: 100%; }
    .rewards-pop .pop-flex .up-side {
      color: #36383a;
      flex: 0 0 50%;
      background-color: #f7f3f0;
      padding-top: 10%;
      padding-left: 5%;
      padding-right: 5%;
      text-align: center; }
      .rewards-pop .pop-flex .up-side h3, .rewards-pop .pop-flex .up-side .h3 {
        color: black;
        margin-bottom: 20px; }
      .rewards-pop .pop-flex .up-side ul {
        margin: 30px auto;
        list-style: none; }
        .rewards-pop .pop-flex .up-side ul li {
          padding: 0;
          font-size: 14px;
          margin: 0;
          padding-left: 0; }
      .rewards-pop .pop-flex .up-side button {
        width: 70%;
        height: 65px;
        display: block;
        margin: 0 auto;
        background-color: #f2876c;
        color: white; }
      .rewards-pop .pop-flex .up-side a {
        text-decoration: underline;
        cursor: pointer; }
      .rewards-pop .pop-flex .up-side img {
        width: 120px;
        display: block;
        margin: 0 auto;
        margin-bottom: 40px; }
      @media only screen and (max-width: 800px) {
        .rewards-pop .pop-flex .up-side {
          padding-top: 20%;
          flex: 0 0 100%; }
          .rewards-pop .pop-flex .up-side button {
            width: 85%; } }
    .rewards-pop .pop-flex .image-side {
      background-color: #f2876c;
      flex: 0 0 50%;
      background-image: url(../jpg/db_rewards_image029c.jpg);
      background-size: cover;
      background-position: center top; }
      @media only screen and (max-width: 800px) {
        .rewards-pop .pop-flex .image-side {
          display: none; } }

/* REWARDS END */
/**
* New Badge System
*/
.product-extra {
  text-align: left;
  font-size: 1rem;
  color: #9c5354;
  font-size: 12px; }

.product-badge {
  position: absolute;
  bottom: 15px;
  left: 10px;
  padding: 4px 8px 4px 8px;
  color: #FFFFFF;
  border-radius: 3px;
  font-size: 10px;
  text-transform: capitalize; }
  .product-badge.exclusive {
    background-color: #b75b58; }
  .product-badge.hidden {
    display: none; }
  .product-badge.pdp {
    position: relative;
    bottom: 5px;
    left: initial; }

/**
* Syling masterclass page
**/
#db-styling-masterclass h1, #db-styling-masterclass .h1, #db-styling-masterclass h2, #db-styling-masterclass .h2, #db-styling-masterclass h3, #db-styling-masterclass .h3, #db-styling-masterclass h4, #db-styling-masterclass .h4, #db-styling-masterclass h5, #db-styling-masterclass .h5, #db-styling-masterclass h6, #db-styling-masterclass .h6 {
  text-transform: none; }
#db-styling-masterclass h1, #db-styling-masterclass .h1 {
  font-size: 3rem;
  line-height: 3.25rem; }
#db-styling-masterclass .main-intro {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin: 20px 0px 60px 0px; }
  #db-styling-masterclass .main-intro .text-container {
    width: 50%;
    padding: 1rem; }
  #db-styling-masterclass .main-intro .image-container {
    width: 50%; }
    #db-styling-masterclass .main-intro .image-container img {
      width: 100%; }
@media (max-width: 800px) {
  #db-styling-masterclass .main-intro {
    display: block;
    margin: 0; }
    #db-styling-masterclass .main-intro .text-container {
      width: 100%;
      text-align: center; }
    #db-styling-masterclass .main-intro .image-container {
      width: 100%; } }
#db-styling-masterclass .section-header {
  margin-bottom: 3rem; }
#db-styling-masterclass .text-center {
  text-align: center; }
#db-styling-masterclass .rm-image-with-text .text-container {
  background: #FFF; }
  #db-styling-masterclass .rm-image-with-text .text-container .vertical-middle p {
    font-size: 18px; }
#db-styling-masterclass .section {
  padding: 50px 0px; }
  @media (max-width: 416px) {
    #db-styling-masterclass .section .grid, #db-styling-masterclass .section .grid--rev, #db-styling-masterclass .section .grid--full {
      margin-left: 0; } }
#db-styling-masterclass .learning-points .learning-point {
  padding: 0;
  margin-bottom: 10px; }
  #db-styling-masterclass .learning-points .learning-point .lp-wrapper {
    margin: 0px 10px;
    padding: 0px 10px;
    border: 1px solid #CCC;
    border-radius: 4px;
    min-height: 150px; }
    #db-styling-masterclass .learning-points .learning-point .lp-wrapper .svg-icon {
      display: block;
      margin: 0 auto;
      margin-top: 15px; }
  #db-styling-masterclass .learning-points .learning-point p {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px; }
#db-styling-masterclass .masterclass-list-wrapper {
  border: 1px solid #CCC;
  border-radius: 10px;
  padding: 10px;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px; }
#db-styling-masterclass .masterclass-list {
  list-style-image: url(http://cdn.shopify.com/s/files/1/0281/3837/3173/t/6/assets/Video.svg?v=7457571229667558574);
  margin-left: 30px; }
  #db-styling-masterclass .masterclass-list li {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #CCC;
    color: #000000;
    font-size: 20px; }
    #db-styling-masterclass .masterclass-list li:last-child {
      border: 0; }
#db-styling-masterclass .btn-join {
  background-color: #B03F39;
  border-radius: 0;
  font-size: 18px;
  padding: 6px 36px; }

/* Rise Gift Card */
.GiftWizard-gift-button {
  width: 100%;
  padding: 13px 0;
  font-size: 18px;
  border-radius: 2px;
  background-color: black;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif; }

.vl-item picture {
  background-color: #FFF !important; }

/* Form Edits */
.margin-top {
  margin-top: 3rem; }

input#submit_form:disabled {
  background: #bfbfbf;
  border-radius: 0px;
  border: 0px;
  opacity: .5;
  color: #000; }

.checkout-timer .timer-card, .checkout-timer2 .count {
  line-height: 1.2em;
  color: #000;
  background-color: #fff5d2;
  border: 1px solid #fac444;
  border-radius: 3px;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 11px; }

.checkout-timer p, .checkout-timer2 p {
  font-weight: 400;
  font-size: 11px;
  color: #000;
  margin-bottom: 5px;
  margin-top: 3px;
  line-height: 1.2em; }

.timer-card p {
  display: inline; }

.count p {
  display: inline !important; }

.promo-offer {
  padding: 0px 10px 10px 10px;
  font-size: 11px;
  display: block; }
  .promo-offer p {
    margin: 0px; }

.r1_cart .promo-offer {
  padding: 0px 0px 0px 0px; }
.r1_cart .count {
  width: max-content; }

#AjaxCart-desktop div#CheckoutTimer {
  padding: 0px 10px !important;
  margin-top: -10px; }

#AjaxCart-desktop div#CheckoutTimer2 {
  display: none !important; }

/* Css to Hide QR Code */
#QrCode {
  display: none; }

/* Custom Search Sidebar CSS */
@-webkit-keyframes spin-right {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.loader {
  border: 2px solid #EDECF6;
  /* Light grey */
  border-top: 2px solid #121d24;
  /* green */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  -webkit-animation: spin-right 0.5s linear infinite;
  animation: spin-right 0.5s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px; }

.filter-item {
  position: relative;
  margin-top: 10px;
  transition-duration: 0ms;
  list-style: none; }

.filter-item.filter-item--hidden {
  display: none; }

.filter-item a {
  font-size: 14px;
  position: relative;
  z-index: 100;
  display: flex;
  padding: 0.1875rem;
  margin-left: -0.1875rem;
  line-height: 1.15;
  color: currentColor;
  text-decoration: none; }

.filter-item a:hover {
  z-index: 101; }

.modal .filter-item a {
  padding: 0.5625rem 0.1875rem; }

.filter-item .filter-text,
.filter-item .filter-icon--checkbox {
  display: inline-block;
  vertical-align: middle; }

.filter-item .filter-text {
  max-width: calc(100% - (0.1875rem * 3 + 0.875rem));
  margin-left: 0.5625rem; }

.custom-filters .filter-item .filter-text,
.custom-filters-modal .filter-item .filter-text {
  max-width: calc(100% - (.1875rem * 2) - 1.5625rem); }

.custom-filters .checked .checkmark[data-animation-state=checked],
.custom-filters .unchecked .checkmark[data-animation-state=unchecked] {
  display: block; }

.custom-filters .checked .checkmark[data-animation-state=unchecked],
.custom-filters .unchecked .checkmark[data-animation-state=checked] {
  display: none !important; }

.filter-item--toggle-more {
  display: none; }

.custom-filters .filter-item--hidden ~ .filter-item--toggle-more {
  display: block; }

.filter-item:not(.filter-item--toggle-more) .checkmark[data-animation-state=unchecked] {
  border-color: #ddd;
  box-shadow: inset 0 0 0 #1e1e1e;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.1s cubic-bezier(0.4, 0, 0.2, 1) 175ms; }

.filter-item:not(.filter-item--toggle-more) .checkmark {
  display: block;
  width: 14px;
  height: 14px;
  color: #2d5194;
  border-color: #ddd;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  stroke-miterlimit: 10; }

.productgrid--sidebar-item.filter-group {
  padding-left: 0;
  margin-left: 0; }

.custom-filters .checked .checkmark[data-animation-state=checked],
.custom-filters .unchecked .checkmark[data-animation-state=unchecked] {
  display: block; }

.custom-filters .checked .checkmark[data-animation-state=unchecked],
.custom-filters .unchecked .checkmark[data-animation-state=checked] {
  display: none !important; }

.filter-item--toggle-more {
  display: none; }

.custom-filters .filter-item--hidden ~ .filter-item--toggle-more {
  display: block; }

.filter-item:not(.filter-item--toggle-more) .checkmark[data-animation-state=checked] {
  border-color: #1e1e1e;
  box-shadow: inset 0 0 0 30px #1e1e1e;
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 0.1s cubic-bezier(0.4, 0, 0.2, 1); }

.filter-item:not(.filter-item--toggle-more) .checkmark__check[data-animation-state=checked] {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 250ms cubic-bezier(0.4, 0, 0.2, 1) 125ms; }

.filter-item:not(.filter-item--toggle-more) .checkmark__check {
  stroke: white;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 2;
  transform-origin: 50% 50%; }

div#sf-filter {
  margin-top: 50px; }

/**
Video Banner
*/
.homepage-video-wrapper,
.collection-video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: auto; }
  .homepage-video-wrapper video,
  .collection-video-wrapper video {
    width: 100%; }

/* Search Results */
.search-result-desktop, .search-result-mobile {
  display: none;
  background: white;
  position: absolute;
  z-index: 100;
  width: 350px;
  height: fit-content;
  overflow: auto;
  margin-left: 20px;
  margin-top: 20px; }
  @media (max-width: 950px) {
    .search-result-desktop, .search-result-mobile {
      position: relative;
      width: 100%;
      margin: 0px; } }
  .search-result-desktop .item, .search-result-mobile .item {
    display: flex;
    flex-direction: row;
    align-items: center; }
  .search-result-desktop .result-img, .search-result-mobile .result-img {
    max-width: 40px;
    max-height: 40px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-right: 10px; }
  .search-result-desktop .search-content, .search-result-mobile .search-content {
    background-color: #fefefe;
    margin: 0px;
    padding: 0;
    border: 1px solid #E4E4E4; }
    .search-result-desktop .search-content ul, .search-result-mobile .search-content ul {
      list-style: none;
      padding: 0px;
      margin: 0px; }
      .search-result-desktop .search-content ul li, .search-result-mobile .search-content ul li {
        padding: 0; }
  .search-result-desktop .search-arrow, .search-result-mobile .search-arrow {
    position: absolute;
    right: 20px;
    max-width: 12px;
    margin-top: 2px; }
  .search-result-desktop .search-link, .search-result-mobile .search-link {
    color: #313335;
    text-decoration: none;
    text-transform: capitalize;
    padding: 16px 35px 15px 15px;
    display: flex;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.15px;
    color: #000000;
    border-bottom: 1px solid #E4E4E4; }
  .search-result-desktop .search-type, .search-result-mobile .search-type {
    padding: 16px 15px;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    text-transform: capitalize; }
  .search-result-desktop a.search-type.font-btn-sm, .search-result-mobile a.search-type.font-btn-sm {
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: .15px;
    color: #a3473e; }

.close-x {
  display: none;
  padding: 10px;
  cursor: pointer;
  top: 0px;
  right: 0px; }

.search-result-mobile {
  margin-top: 5px; }
  .search-result-mobile .search-link {
    padding: 15px 25px 15px 5px; }
  .search-result-mobile a.search-type.font-btn-sm {
    padding: 15px 5px 0px 5px; }
  .search-result-mobile ul {
    list-style: none;
    padding: 0px;
    margin: 0px; }
    .search-result-mobile ul li {
      padding: 0; }

@media (min-width: 992px) {
  .timer-section {
    margin-top: 5px; } }
.timer-section div#timer {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto Condensed'; }
  @media (max-width: 1024px) {
    .timer-section div#timer {
      padding-top: 15px; } }
  @media (max-width: 767px) {
    .timer-section div#timer {
      padding: 12px 16px;
      margin: 0; } }
  .timer-section div#timer p {
    font-size: 16px !important;
    line-height: 1rem;
    margin-bottom: 0px; }
    @media (max-width: 1024px) {
      .timer-section div#timer p {
        margin-bottom: 5px; } }
    @media (max-width: 767px) {
      .timer-section div#timer p {
        font-size: 16px !important;
        margin-top: 0px; } }
  .timer-section div#timer .btn, .timer-section div#timer .btn--secondary {
    font-size: 12px;
    padding: 5px 20px;
    font-family: 'Poppins'; }
  .timer-section div#timer .days, .timer-section div#timer .hours, .timer-section div#timer .minutes, .timer-section div#timer .seconds {
    padding-right: 10px;
    text-align: center;
    font-size: 1.3rem; }
  .timer-section div#timer span {
    padding-left: 5px;
    font-size: .7rem;
    text-align: center; }
    @media (max-width: 1024px) {
      .timer-section div#timer span {
        width: 100%;
        padding-right: 0px; } }
  .timer-section div#timer .date-group {
    display: flex;
    padding: 0px 20px;
    font-weight: 600; }
    @media (max-width: 767px) {
      .timer-section div#timer .date-group {
        padding-right: 10px;
        font-size: 18px; } }

.button-primary {
  border-radius: 2px;
  background-color: #B03F39; }

.button-secondary {
  border-color: white; }

.chips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-self: stretch;
  margin-bottom: 1rem;
  align-items: center; }

.chip.clstag {
  margin-right: 8px; }

.chip {
  display: inline-block;
  background: #F3F3F3;
  border-radius: 11px;
  padding: 5px 7px;
  color: #1E1E1E;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between; }

.chips .cls-all {
  color: #1E1E1E;
  font-size: 14px;
  line-height: 14px;
  cursor: pointer; }

.chip .close {
  background: #1E1E1E;
  color: #f3f1ea;
  border-radius: 100%;
  padding: 1px;
  width: 14px;
  height: 14px;
  border: none;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; }

.chip .close svg {
  width: 8px; }

.chip .clstex {
  margin-right: 8px; }

.new-collection-list--section {
  padding: 2rem 0;
  margin: 3rem 0; }
  .new-collection-list--section li {
    text-align: center; }
    @media (max-width: 767px) {
      .new-collection-list--section li {
        padding-left: 10px; } }
    .new-collection-list--section li .collection--item-title {
      font-size: 18px;
      line-height: 18px;
      text-align: center;
      letter-spacing: 0.5px;
      margin: 0px; }
    .new-collection-list--section li .collection--item-cta {
      font-style: normal;
      font-weight: normal;
      font-size: 12px;
      line-height: 12px;
      text-align: center;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #A22018;
      font-weight: 600; }
  .new-collection-list--section h2, .new-collection-list--section .h2 {
    font-size: 32px;
    line-height: 28px;
    padding-bottom: 20px;
    text-align: center;
    margin: 24px 0px; }

h1.collection--title, .collection--title.h1 {
  margin-top: 2rem; }

.product-swatches {
  margin: 7.14px 0;
  height: 20px;
  padding-left: 0;
  display: flex;
  overflow: hidden; }
  .product-swatches label {
    font-size: 12px; }
    .product-swatches label .variant-swatch-btn {
      border-radius: 50px;
      width: 16px;
      height: 16px;
      margin-right: 6.44px;
      position: relative;
      cursor: pointer;
      padding: 0;
      border: none; }

.options-label {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: #555555; }

.option-row {
  margin-bottom: 22px; }

.product-badge.exclusive.pdp {
  margin-bottom: 10px;
  display: inline-block; }

#estimated-shipping {
  margin: 10px 0; }

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  margin: 30px 0; }
  .accordion .header, .accordion .without-header {
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    text-transform: uppercase;
    padding: 11px 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000000;
    border-top: 1px solid #DDDDDD;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .accordion .header i, .accordion .without-header i {
      font-size: 13px;
      color: #777;
      float: right;
      margin-left: 5px; }
    .accordion .header .sidennav, .accordion .without-header .sidennav {
      color: #8d9384 !important; }
    .accordion .header img, .accordion .without-header img {
      width: 20px;
      height: 12px; }
      .accordion .header img.down, .accordion .without-header img.down {
        display: none; }
  .accordion .mob-header {
    cursor: none;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    text-transform: uppercase;
    padding: 20px 0; }
  .accordion .panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out; }
  .accordion.sm .header {
    text-transform: none;
    padding: 12px 5px; }

.product-side-left {
  width: 70%; }
  @media screen and (max-width: 950px) {
    .product-side-left {
      width: 100%; } }

.product-side-right {
  width: 30%; }
  @media screen and (max-width: 950px) {
    .product-side-right {
      width: 100%; } }

.add-to-cart {
  margin: 1rem 0 .5rem 0;
  display: flex; }
  .add-to-cart .qty-select {
    width: 10.1rem; }
  .add-to-cart .btn, .add-to-cart .btn--secondary {
    flex-grow: 1;
    margin-right: 0; }

.qty-selector {
  padding: 0;
  display: flex !important;
  cursor: default;
  width: 10.1rem;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  background: transparent;
  padding: 0.8rem 0;
  margin: 0 0.5rem 0 0;
  border-radius: 0;
  max-width: 100%;
  line-height: normal;
  border: 1px solid #ede9de;
  /*&::before,*/
  /*&::after,*/
  /*&::before,*/ }
  .qty-selector.disabled {
    cursor: default; }
    .qty-selector.disabled .minus, .qty-selector.disabled .plus {
      cursor: default; }
  .qty-selector .minus, .qty-selector .plus {
    cursor: pointer;
    border: none;
    background: transparent; }
    .qty-selector .minus:hover, .qty-selector .plus:hover {
      background-color: transparent; }
  .qty-selector .minus::before {
    content: '-'; }
  .qty-selector .plus::before {
    content: '+'; }
  .qty-selector .minus, .qty-selector .plus {
    padding-left: 1rem;
    padding-right: 1rem;
    cursor: pointer;
    border: none;
    background: transparent; }
  .qty-selector input {
    /*display: none;*/
    padding: 0;
    cursor: default;
    width: 3rem;
    text-align: center;
    display: inline-block;
    border: none;
    margin: 0;
    vertical-align: initial; }
    .qty-selector input:not(:disabled):not(.disabled):hover {
      border: none; }
    .qty-selector input:not(:disabled):not(.disabled):focus {
      border: none;
      box-shadow: none; }
  .qty-selector input::-webkit-outer-spin-button,
  .qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .qty-selector input[type=number] {
    -moz-appearance: textfield; }
  .qty-selector .val {
    cursor: default;
    width: 3rem;
    text-align: center;
    display: inline-block; }

.atc-err {
  font-weight: 700;
  color: #9a3333; }

.vue-tag-excl {
  height: 40px; }

.new-blog-list--section {
  margin-bottom: 50px; }

.ff-final {
  height: 42px; }

.final-sale {
  padding: 5px 0;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #d5412d;
  margin-bottom: 5px;
  text-align: left; }

.final-sale p {
  font-family: 'Nunito Sans',sans-serif;
  display: inline;
  font-weight: 800 !important;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #d5412d; }

.sf-product-list .grid, .sf-product-list .grid--rev, .sf-product-list .grid--full, .sf-product-list .grid--rev, .sf-product-list .grid--full,
.sf-product-list .grid-uniform {
  margin-left: 0px !important; }
