/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*============================================================================
Dependency-free breakpoint mixin
- http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
==============================================================================*/
/*============================================================================
#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: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: -15px; }
  @media screen and (min-width: 601px) {
    .grid, .grid--rev, .grid--full,
    .grid-uniform {
      margin-left: -30px; } }

.grid__item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  vertical-align: top;
  width: 100%; }
  @media screen and (min-width: 601px) {
    .grid__item {
      padding-left: 30px; } }

.grid--small {
  margin-left: -10px; }
  .grid--small .grid__item {
    padding-left: 10px; }

/*============================================================================
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; }
  .lt-ie9 .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: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .push--large--eleven-twelfths {
    left: 91.666%; } }
/*============================================================================
PULL
- Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
#shopify-section-pro-in-the-box .grid, #shopify-section-pro-in-the-box .grid--rev, #shopify-section-pro-in-the-box .grid--full {
  margin-bottom: 2em; }
@media screen and (min-width: 601px) {
  #shopify-section-pro-in-the-box .grid, #shopify-section-pro-in-the-box .grid--rev, #shopify-section-pro-in-the-box .grid--full {
    display: flex;
    align-items: center; }
  #shopify-section-pro-in-the-box .align--image-right {
    display: flex;
    flex-direction: row-reverse; } }

*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

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

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

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

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

/*================ Flex item alignment ================*/
.align--top-middle {
  text-align: center; }

.align--top-right {
  text-align: right; }

.align--middle-left {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.align--center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: center; }

.align--middle-right {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: right; }

.align--bottom-left {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end; }

.align--bottom-middle {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center; }

.align--bottom-right {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: right; }

.card .card-footer .span.add_color, .card .card-footer .span.add_variant {
  transition: all .4s ease-in-out; }

.card .card-footer .span.add_color.red, .card .card-footer .span.add_variant.red {
  background-color: #f37575; }

.card .card-footer .span.add_color.blue, .card .card-footer .span.add_variant.blue {
  background-color: #668db4; }

.card .card-footer .span.add_color.black, .card .card-footer .span.add_variant.black {
  background-color: #000;
  color: #fff; }

.card .card-footer .span.add_color.black, .card .card-footer .span.add_variant.black img {
  color: white !important;
  fill: white !important; }

.card .card-footer .span.add_color.gray, .card .card-footer .span.add_variant.gray {
  background-color: #585752;
  color: white; }

.product-icon .action.action--remove {
  top: -2px;
  right: -2px; }

.grid-product__meta {
  position: relative;
  display: block;
  padding: 13px 0; }

.grid-product__price-wrap {
  white-space: nowrap; }

.long-dash {
  margin: 0 4px; }

.grid-product__title {
  font-style: italic;
  font-size: 1.25em; }

.grid-product__vendor {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.6875em;
  margin: 1px 0; }

.grid-product__price {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875em; }

.grid-product__price-min {
  position: relative;
  top: -1px;
  font-size: 0.625em;
  margin-left: -4px; }

.grid-product__sold-out,
.grid-product__on-sale {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6875em;
  line-height: 1.3;
  position: absolute;
  min-width: 50px;
  border-radius: 25px;
  top: -8px;
  left: -8px; }
  .grid-product__sold-out p,
  .grid-product__on-sale p {
    padding: 12px 8px 10px 9px;
    margin: 0;
    letter-spacing: 1px; }
  .grid-product__sold-out sup,
  .grid-product__on-sale sup {
    display: none; }

.grid-product__sold-out {
  color: #222323;
  border: 1px solid #222323; }

.grid-product__on-sale {
  color: #ff2726;
  border: 1px solid #ff2726; }

/*================ Modules | Theme collection grid item ================*/
.collection-collage__item {
  overflow: hidden; }

.collection-collage__item-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%; }
  .collection-collage__item-wrapper .collection-grid__item-overlay {
    position: relative;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease; }
    .collection-collage__item-wrapper .collection-grid__item-overlay:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      opacity: 0.25;
      background-color: #000;
      -webkit-transition: all 0.8s ease;
      -moz-transition: all 0.8s ease;
      -ms-transition: all 0.8s ease;
      -o-transition: all 0.8s ease;
      transition: all 0.8s ease; }
      .lt-ie9 .collection-collage__item-wrapper .collection-grid__item-overlay:after {
        display: none; }
    .collection-collage__item-wrapper .collection-grid__item-overlay:hover, .collection-collage__item-wrapper .collection-grid__item-overlay:focus {
      -webkit-transform: scale(1.03);
      -moz-transform: scale(1.03);
      -ms-transform: scale(1.03);
      -o-transform: scale(1.03);
      transform: scale(1.03); }
      .collection-collage__item-wrapper .collection-grid__item-overlay:hover:after, .collection-collage__item-wrapper .collection-grid__item-overlay:focus:after {
        opacity: 0.5; }

.collection-grid__item-link {
  display: block;
  width: 100%;
  height: 100%; }

.collection-grid__item-overlay {
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.collection-grid__item-title--wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  display: table;
  table-layout: fixed;
  color: #fff;
  cursor: pointer; }
  .collection-grid__item-title--wrapper .collection-grid__item-title {
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto; }

.custom-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-bottom: -30px;
  margin-left: -30px; }
  @media screen and (max-width: 600px) {
    .custom-content {
      margin-bottom: -22px;
      margin-left: -22px; } }

.custom__item {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 30px;
  padding-left: 30px;
  max-width: 100%; }
  @media screen and (max-width: 600px) {
    .custom__item {
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      padding-left: 22px;
      margin-bottom: 22px; }
      .custom__item.small--one-half {
        -webkit-flex: 1 0 50%;
        -moz-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto; } }

.custom__item-inner {
  position: relative;
  display: inline-block;
  text-align: left;
  max-width: 100%; }

.custom__item-inner--video,
.custom__item-inner--html {
  display: block; }

.featured-blog__post,
.featured-blog__meta,
.title--one-post {
  margin-bottom: 52.5px; }
  @media screen and (max-width: 600px) {
    .featured-blog__post,
    .featured-blog__meta,
    .title--one-post {
      margin-bottom: 38.5px; } }

.featured-blog__author {
  display: inline-block;
  font-style: italic;
  line-height: 1.7; }
  .featured-blog__author:after {
    content: '\2022';
    margin: 0 5px; }

.featured-blog__date {
  display: inline-block; }

.article__heading-link {
  color: #222323; }

.index-newsletter-section + .index-map-section {
  margin-top: 0; }

.index-map-section + .index-newsletter-section {
  margin-top: -60px; }
  @media screen and (max-width: 768px) {
    .index-map-section + .index-newsletter-section {
      margin-top: 30px; } }

#custom-fit-earphones-product-amp-features-page .site-header {
  background: #000;
  position: absolute;
  width: 100%;
  z-index: 999; }

#custom-fit-earphones-product-amp-features-page .site-nav__link {
  color: #000000 !important; }

#ue-specs .site-header {
  padding: 0px !important;
  background-color: #000000; }

#accessories .site-header {
  padding: 0px !important;
  background-color: #000000; }

#ue-7 .site-header {
  padding: 0px !important;
  background-color: #000000; }

#fitkit-app .site-header {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 999; }

@media only screen and (max-width: 425px) {
  #custom-fit-earphones-product-amp-features-page .site-nav__link {
    color: #000000 !important; }

  .burger-icon {
    background-color: #000000 !important; } }
.boxed {
  max-width: 1050px;
  display: block;
  margin: auto; }

.film_roll_pager a {
  width: 70px !important;
  height: 3px !important;
  border: 2px solid #cccccc !important;
  background-color: #cccccc !important;
  margin: 0 20px 0 0 !important; }

.film_roll_pager a.active {
  border: 2px solid black !important;
  background-color: #000000 !important; }

.site-header, #shopify-section-header .wrapper {
  transition: all .4s ease-in-out;
  background: #000; }

.video-wrapper.video-left {
  padding-right: 30px !important; }

@media only screen and (max-width: 768px) {
  #mobile_buy_button {
    display: none; } }
.cpb-next-tab-button.sc-bXGyLb.gyROvY {
  background: black !important;
  font-weight: 400 !important;
  margin: 10px 0 !important; }

@media only screen and (max-width: 768px) {
  #mobile_buy_button {
    position: fixed;
    height: 50px;
    z-index: 1000;
    background: #000;
    bottom: 5%;
    right: 10px;
    width: 150px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22); }

  #mobile_buy_button a {
    line-height: 1;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase; }

  .video-wrapper.video-left {
    padding-right: 0px !important; } }
@media only screen and (max-width: 480px) {
  #custom-fit-earphones-product-amp-features-page #shopify-section-header .wrapper .site-nav__link {
    color: black !important; } }
#shopify-section-header .wrapper {
  transition: all .4s ease-in-out; }

#sticky_bar .wrapper {
  padding: 0px 30px 0px 30px; }

@media only screen and (max-width: 1200px) {
  .right_45 {
    margin-right: 4em !important; } }
@media only screen and (max-width: 1155px) {
  .right_45 {
    margin-right: 3.5em !important; } }
@media only screen and (max-width: 1035px) {
  .right_45 {
    margin-right: 3em !important; } }
@media only screen and (max-width: 975px) {
  .right_45 {
    margin-right: 2em !important; }

  .site-nav__link {
    font-size: 12px !important; } }
@media only screen and (max-width: 768px) {
  #AccessibleNav {
    display: none; } }
@media only screen and (max-width: 768px) {
  #premium-custom-fit-earphones .burger-icon {
    background-color: #ffffff !important; }

  #meet-the-revolutionary-fitkit .burger-icon {
    background-color: #ffffff !important; }

  #fitkit-app .burger-icon {
    background-color: #ffffff !important; }

  #custom-fit-earphones-product-amp-features-page .burger-icon {
    background-color: #fff !important; }

  .burger-icon {
    background-color: #ffffff !important; } }
@media only screen and (max-width: 480px) {
  .wrapper.is_fixed {
    padding: 0px !important; }

  .cart-link.js-drawer-open-button-right {
    padding: 9px; } }
.product-card-grid {
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  max-width: 1200px; }
  @media only screen and (max-width: 480px) {
    .product-card-grid {
      flex-direction: column; } }

.grid-product-item {
  width: 430px; }
  @media only screen and (max-width: 480px) {
    .grid-product-item {
      width: auto;
      margin-top: 20px; } }
  .grid-product-item:nth-of-type(1) {
    margin-top: 0; }

.card {
  position: relative;
  margin: 10px;
  overflow: hidden;
  padding: 0;
  background: white;
  display: grid;
  grid-template-rows: 4fr 2fr .5fr;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.057);
  transition: 0.2s ease-in; }
  @media only screen and (max-width: 480px) {
    .card {
      margin: 0;
      grid-template-columns: 330px;
      grid-template-rows: 4fr 2fr .5fr; } }
  @media only screen and (max-width: 320px) {
    .card {
      grid-template-columns: 300px; } }
  .card .card-content {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; }
    .card .card-content .top-bar {
      width: 100%;
      position: absolute;
      top: 0;
      z-index: 1;
      left: 0;
      padding: 20px;
      display: flex;
      justify-content: space-between; }
      .card .card-content .top-bar span.model-title {
        font-size: 36px;
        font-weight: 300; }
        @media only screen and (max-width: 480px) {
          .card .card-content .top-bar span.model-title b {
            font-size: 20px; } }
      .card .card-content .top-bar img {
        display: inline-block;
        height: 60px;
        margin: 0;
        width: 60px;
        position: relative;
        object-fit: contain;
        background-color: transparent; }
    .card .card-content .img {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%; }
      .card .card-content .img img {
        max-width: 100%;
        max-height: 225px;
        height: 100%;
        margin-top: 50px;
        object-position: bottom;
        background-color: #fff;
        filter: contrast(1.1); }
        @media only screen and (max-width: 480px) {
          .card .card-content .img img {
            padding: 30px;
            object-position: center;
            object-fit: scale-down; } }
  .card .card-description .top-row {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    flex-direction: row-reverse;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.1em;
    width: calc(100%-20px); }
    @media only screen and (max-width: 480px) {
      .card .card-description .top-row {
        line-height: 1; } }
    .card .card-description .top-row .price {
      text-transform: capitalize;
      text-align: center;
      font-size: 16px; }
      .card .card-description .top-row .price b {
        font-size: 20px;
        letter-spacing: 1px; }
        @media only screen and (max-width: 320px) {
          .card .card-description .top-row .price b {
            font-size: 14px; } }
    .card .card-description .top-row .face-plates {
      width: auto;
      display: flex;
      height: 100%;
      justify-content: flex-start;
      align-items: center;
      max-height: 50px;
      max-width: 188px;
      transition: all .4s ease-in-out;
      overflow: hidden; }
      .card .card-description .top-row .face-plates.slide-out {
        transform: translateX(-40px); }
      .card .card-description .top-row .face-plates .face-plate-wrap {
        position: relative;
        transition: all .4s ease-in-out;
        height: 25px;
        width: 25px;
        margin-left: 8px;
        border-radius: 50%;
        border: 2px solid #eee; }
        .card .card-description .top-row .face-plates .face-plate-wrap:nth-of-type(1) {
          margin-left: 0; }
        .card .card-description .top-row .face-plates .face-plate-wrap:nth-of-type(2) {
          margin-left: 0; }
        .card .card-description .top-row .face-plates .face-plate-wrap.shrink {
          transform: scale(0.9); }
        @media only screen and (max-width: 480px) {
          .card .card-description .top-row .face-plates .face-plate-wrap {
            height: 15px;
            width: 15px; } }
        .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Pearl {
          display: none; }
        .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Carbon {
          display: none; }
        .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Wood {
          display: none; }
        .card .card-description .top-row .face-plates .face-plate-wrap.wrap_clear {
          display: none; }
        .card .card-description .top-row .face-plates .face-plate-wrap:first-child {
          margin-left: 0px; }
        .card .card-description .top-row .face-plates .face-plate-wrap img {
          opacity: 0;
          object-fit: cover;
          transition: all .4s ease-in-out; }
          .card .card-description .top-row .face-plates .face-plate-wrap img:hover {
            box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.057); }
        .card .card-description .top-row .face-plates .face-plate-wrap:hover .action__text--invisible {
          opacity: 1;
          color: #ddd;
          top: -200%;
          z-index: 5;
          width: max-content;
          letter-spacing: 0;
          background: #2F3035;
          border-radius: 2px;
          padding: 3px 5px; }
  .card .card-description .bottom-row {
    min-height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .card .card-description .bottom-row p {
      font-size: 16px;
      font-weight: 400;
      text-align: left;
      line-height: 1.33;
      padding: 20px;
      margin: 0; }
  .card .card-footer {
    text-transform: uppercase;
    padding: 0;
    letter-spacing: 0.1em;
    font-size: 14px;
    color: white;
    justify-items: left;
    align-items: center;
    display: flex;
    position: relative;
    z-index: 1;
    background: #fff; }
    .card .card-footer .shop-model-button {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      min-height: 50px;
      width: 100%;
      background: #000; }
      .card .card-footer .shop-model-button h3, .card .card-footer .shop-model-button .h3 {
        font-size: 13px;
        margin: 0; }
        .card .card-footer .shop-model-button h3 a, .card .card-footer .shop-model-button .h3 a {
          color: white; }
  .card:hover {
    transition: 0.2s ease-in;
    transform: translateY(-10px);
    box-shadow: 0px 45px 60px 0px rgba(0, 0, 0, 0.087); }

.cable-card .card-content .img img {
  filter: contrast(1.1);
  padding: 0; }
.cable-card .model-title {
  font-weight: 300;
  font-size: 30px;
  text-align: left; }

.view {
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out; }

.view--compare {
  -webkit-transform: scale3d(0.9, 0.9, 1);
  transform: scale3d(0.9, 0.9, 1); }

.view--compare + .compare .action--close {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition-delay: 0.4s, 0s;
  transition-delay: 0.4s, 0s;
  position: absolute;
  right: 0; }

.action--close:hover,
.action--close:focus {
  color: #797BED; }

.action--compare {
  margin: 0 0 0 4px;
  opacity: 0;
  pointer-events: none;
  cursor: default;
  background-color: #eee;
  color: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s; }

.action--compare-add input {
  opacity: 0; }
.action--compare-add:hover input {
  opacity: 0; }

.compare__effect p .div-grid {
  color: #fff !important;
  text-align: center; }

.compare__effect p .price {
  text-align: center;
  display: block;
  margin: 20px auto; }

.compare__effect img {
  margin: 40px auto 0;
  display: block;
  object-fit: contain; }
.compare__effect h1, .compare__effect .h1 {
  margin: 20px 0 0;
  color: white !important; }
.compare__effect p {
  margin: 40px 0 0; }
  .compare__effect p * {
    color: white !important; }
  .compare__effect p .div-grid {
    color: white !important; }
    .compare__effect p .div-grid .content-grid {
      color: white !important; }
    .compare__effect p .div-grid span {
      color: white !important; }

.action--compare .action__text {
  margin-left: 10px;
  font-weight: bolder; }

.compare-basket--active .action--compare {
  opacity: 1; }

.compare-basket--active .action--compare:nth-child(3),
.compare-basket--active .action--compare:nth-child(4) {
  background-color: #668db4;
  color: #fff;
  pointer-events: auto;
  cursor: pointer; }

.action--remove {
  position: absolute;
  overflow: hidden;
  color: #ddd;
  top: 0px;
  right: 2px;
  padding: 0;
  font-size: 0.65em; }

.action--compare-add:hover .action__text--invisible {
  opacity: 1;
  top: 35px;
  right: 10px;
  color: #ddd;
  font-size: 75%;
  letter-spacing: 0;
  background: #2F3035;
  border-radius: 2px;
  padding: 3px 5px; }

.action--remove:hover,
.action--compare-add:hover {
  color: #5C5EDC; }

.action--compare-add .fa-check,
.action--compare-add input[type=checkbox]:checked ~ .fa-plus {
  display: none; }

.action--compare-add input[type=checkbox]:checked ~ .fa-check {
  display: block;
  color: #5C5EDC; }

.action__text--invisible {
  position: absolute;
  top: 100%;
  opacity: 0;
  pointer-events: none; }

.check-hidden {
  position: absolute;
  opacity: 0; }

.compare-basket {
  width: 100%;
  padding: 0.75em;
  text-align: right;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 1000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1); }

.compare-basket--active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.flexbox .compare-basket {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.product-icon {
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0 3px;
  border-radius: 2px;
  position: relative; }

.product-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: -1;
  box-shadow: -56px 0 #2C2D34; }

.compare-basket--full .product-icon::after {
  display: none; }

.flexbox .product-icon {
  display: block; }

/* comparison overlay */
.compare {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1001;
  -webkit-transition: height 0s 0.4s;
  transition: height 0s 0.4s; }

.flexbox .compare {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex; }

.view--compare + .compare {
  pointer-events: auto;
  height: 100%;
  -webkit-transition: none;
  transition: none;
  display: flex; }

.compare::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s; }

.view--compare + .compare::before {
  opacity: 1; }

.compare__item {
  height: 100%;
  width: 50%;
  background: #24252A;
  text-align: center;
  cursor: default;
  padding: 2em 0;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out; }

.no-flexbox .compare__item {
  display: inline-block;
  width: 50%; }

.compare__item:nth-of-type(2) {
  background: #212227; }

.compare__item .product__title {
  margin: 1em 0;
  min-height: 0; }

.compare__item .product__price {
  color: #CECECE; }

.compare__item span[class^="product__"] {
  display: block;
  padding: 0.85em 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s; }

.compare__item span[class^="product__"].hover {
  background: #000; }

/* three items */
.compare__item:first-of-type:nth-last-of-type(3),
.compare__item:first-of-type:nth-last-of-type(3) ~ .compare__item {
  width: 33.3333%; }

.flexbox .compare__item {
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto; }

.compare__item:nth-child(odd) {
  -webkit-transform: translate3d(0, -100vh, 0);
  transform: translate3d(0, -100vh, 0); }

.compare__item:nth-child(even) {
  -webkit-transform: translate3d(0, 100vh, 0);
  transform: translate3d(0, 100vh, 0); }

.view--compare + .compare .compare__item:nth-child(odd),
.view--compare + .compare .compare__item:nth-child(even) {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.compare__effect {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1), opacity 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1), opacity 1s cubic-bezier(0.2, 1, 0.3, 1); }

.compare__item:nth-child(odd) .compare__effect {
  -webkit-transform: translate3d(0, -250px, 0);
  transform: translate3d(0, -250px, 0); }

.compare__item:nth-child(even) .compare__effect {
  -webkit-transform: translate3d(0, 250px, 0);
  transform: translate3d(0, 250px, 0); }

.view--compare + .compare .compare__item:nth-child(odd) .compare__effect,
.view--compare + .compare .compare__item:nth-child(even) .compare__effect {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s; }

@media screen and (min-width: 59.688em) {
  .flexbox .compare__effect {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }

  .flexbox .compare__item .product__image {
    -webkit-align-self: center;
    -ms-flex-align: center;
    align-self: center;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none; } }
@media screen and (max-width: 59.688em) {
  .product {
    margin: 0 0.5em 1em;
    min-width: 13em; }

  .product__title {
    font-size: 115%; }

  .flexbox .product {
    -webkit-flex: 0 0 13em;
    -ms-flex: 0 0 13em;
    flex: 0 0 13em; }

  .flexbox .compare {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }

  .no-flexbox .compare__item,
  .compare__item,
  .compare__item:first-of-type:nth-last-of-type(3),
  .compare__item:first-of-type:nth-last-of-type(3) ~ .compare__item {
    width: 100%; }

  .compare__item {
    text-align: left;
    padding: 1.5em;
    font-size: 90%; }

  .compare__item .product__image {
    height: 40px;
    float: left; }

  .compare__item .product__title {
    margin: 0 40px 0 43px;
    font-size: 0.85em;
    display: block; }

  .compare__item .product__year {
    border-bottom: 2px solid #2E294E; }

  .compare__item .product__region {
    border-bottom: 2px solid #6D6FD2; }

  .compare__item .product__varietal {
    border-bottom: 2px solid #4B5267; }

  .compare__item .product__alcohol {
    border-bottom: 2px solid #3C3474; }

  .action--close {
    padding: 0.5em 0.75em; }

  .compare__item .action--buy {
    margin: 0;
    display: block; }

  .compare__item span[class^="product__"] {
    display: inline-block;
    padding: 0.25em;
    margin: 0 0 0.5em 0;
    font-size: 0.85em; }

  .view--compare + .compare .action--close, .view--compare + .compare button {
    padding: 0 !important; }

  .compare__item:nth-child(odd) {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }

  .compare__item:nth-child(even) {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }

  .compare__item:nth-child(odd) .compare__effect {
    -webkit-transform: translate3d(-250px, 0, 0);
    transform: translate3d(-250px, 0, 0); }

  .compare__item:nth-child(even) .compare__effect {
    -webkit-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0); } }
body#earphones .main-content .wrapper,
body#accessories .main-content .wrapper,
body#giftcards .main-content .wrapper,
body#gifts .main-content .wrapper {
  padding: 0 !important; }
  @media screen and (max-width: 600px) {
    body#earphones .main-content .wrapper,
    body#accessories .main-content .wrapper,
    body#giftcards .main-content .wrapper,
    body#gifts .main-content .wrapper {
      padding: 0 1em !important; } }

body#earphones .main-content .wrapper .product-grid-banner,
body.template-collection-pro .main-content .wrapper .product-grid-banner,
body#accessories .main-content .wrapper .product-grid-banner,
body#giftcards .main-content .wrapper .product-grid-banner,
body#gifts .main-content .wrapper .product-grid-banner {
  height: 600px;
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%; }

body#earphones .main-content .wrapper .product-grid-banner img,
body.template-collection-pro .main-content .wrapper .product-grid-banner img,
body#accessories .main-content .wrapper .product-grid-banner img,
body#giftcards .main-content .wrapper .product-grid-banner img,
body#gifts .main-content .wrapper .product-grid-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 25%; }

.template-product .line-item-property__field:before, .template-product .line-item-property__field:after {
  display: block;
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #1c1d1d;
  opacity: 0.3; }
.template-product .line-item-property__field {
  position: relative;
  margin-bottom: 20px; }
  .template-product .line-item-property__field.no-border:after, .template-product .line-item-property__field.no-border:before {
    height: 0; }
  .template-product .line-item-property__field input {
    margin: 15px 0; }
  .template-product .line-item-property__field label {
    vertical-align: middle;
    font-style: normal; }
    .template-product .line-item-property__field label a.tooltip {
      background: #000;
      cursor: pointer;
      border-radius: 50%;
      text-align: center;
      font-size: 0.8em;
      width: 20px;
      height: auto;
      display: inline-block;
      margin-left: 10px;
      vertical-align: text-bottom;
      position: relative;
      transition: all .2s ease-in-out; }
      .template-product .line-item-property__field label a.tooltip:hover .tooltip__tip {
        display: block; }
        @media only screen and (max-width: 768px) {
          .template-product .line-item-property__field label a.tooltip:hover .tooltip__tip {
            display: none; } }
      .template-product .line-item-property__field label a.tooltip:after {
        position: absolute;
        content: '';
        border-radius: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2px solid #ccc; }
      .template-product .line-item-property__field label a.tooltip > span {
        color: #fff; }
    .template-product .line-item-property__field label .tooltip__tip {
      display: none;
      color: #000;
      text-align: justify;
      min-width: 250px;
      font-size: 1em;
      box-sizing: border-box;
      border-radius: 5px;
      padding: 15px;
      position: absolute;
      background: #fff;
      box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.3);
      z-index: 1;
      bottom: 30px; }
      @media only screen and (max-width: 768px) {
        .template-product .line-item-property__field label .tooltip__tip {
          right: 50%;
          left: auto; } }
      .template-product .line-item-property__field label .tooltip__tip p {
        margin: 0;
        padding: 0; }
      .template-product .line-item-property__field label .tooltip__tip:after {
        border-right: 10px solid transparent;
        border-top: 15px solid #fff;
        content: '';
        position: absolute;
        top: 100%; }
        @media only screen and (max-width: 768px) {
          .template-product .line-item-property__field label .tooltip__tip:after {
            border-left: 10px solid transparent;
            border-right: none;
            right: 10px; } }
.template-product p.disclaimer {
  font-size: 0.95em;
  position: relative; }
  .template-product p.disclaimer a {
    text-decoration: underline; }
.template-product .product-single__options ul {
  margin: 0 0 15px 0; }
  .template-product .product-single__options ul li {
    list-style: none; }
    .template-product .product-single__options ul li label {
      font-style: normal;
      font-weight: inherit; }
.template-product #shopify-section-product-pro-description {
  padding-bottom: 0; }

body.template-collection-pro .main-content .wrapper .product-grid-banner img {
  -webkit-filter: brightness(0.4);
  filter: brightness(0.4); }

body#earphones .main-content .wrapper .view,
body.template-collection-pro .main-content .wrapper .view,
body#accessories .main-content .wrapper .view,
body#giftcards .main-content .wrapper .view,
body#gifts .main-content .wrapper .view {
  margin-top: 150px;
  position: relative; }

body#earphones .main-content .wrapper .view .collection-details,
body#earphones .main-content .wrapper .view .collection-details h1,
body#earphones .main-content .wrapper .view .collection-details .h1,
body#earphones .main-content .wrapper .view .collection-details p,
body.template-collection-pro .main-content .wrapper .view .collection-details,
body.template-collection-pro .main-content .wrapper .view .collection-details h1,
body.template-collection-pro .main-content .wrapper .view .collection-details .h1,
body.template-collection-pro .main-content .wrapper .view .collection-details p,
body#accessories .main-content .wrapper .view .collection-details h1,
body#accessories .main-content .wrapper .view .collection-details .h1,
body#accessories .main-content .wrapper .view .collection-details p,
body#giftcards .main-content .wrapper .view .collection-details h1,
body#giftcards .main-content .wrapper .view .collection-details .h1,
body#giftcards .main-content .wrapper .view .collection-details p,
body#gifts .main-content .wrapper .view .collection-details h1,
body#gifts .main-content .wrapper .view .collection-details .h1,
body#gifts .main-content .wrapper .view .collection-details p {
  font-weight: 500; }

body.template-collection-pro .main-content .wrapper .view .collection-details,
body.template-collection-pro .main-content .wrapper .view .collection-details h1,
body.template-collection-pro .main-content .wrapper .view .collection-details .h1,
body.template-collection-pro .main-content .wrapper .view .collection-details p {
  color: white !important; }

.collection-details {
  font-weight: 500; }
  @media only screen and (max-width: 480px) {
    .collection-details {
      margin-bottom: 10px; } }

.stow-accessories-card.card .card-content .img img {
  margin-top: 0 !important; }

.stow-accessories-card .bottom-row {
  max-height: 115px;
  padding: 20px;
  overflow: scroll; }

.stow-accessories-card .model-title {
  /* <!--  This is on collection-template --> */
  width: 80%;
  line-height: 1;
  text-align: left;
  font-size: 28px;
  font-weight: 300; }

.stow-accessories-card .card-description .bottom-row p {
  padding: 0 !important;
  font-size: 16px; }

.colored-variant-wrap, .stow-accessories-card .colored-variant-wrap {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.colored-variant-wrap img, .stow-accessories-card .colored-variant-wrap img {
  object-fit: contain;
  height: 80%;
  width: 80%; }

.colored-variant-wrap, .stow-accessories-card .colored-variant-wrap {
  height: 100px;
  width: 100px;
  position: relative;
  cursor: pointer;
  margin: 5px auto;
  cursor: pointer;
  overflow: hidden !important; }

.stow-accessories-card .card-content {
  position: relative; }

.variant-row .variant-row-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly; }

.stow-accessories-card .variant-row .variant-row-wrap .colored-variant-wrap {
  height: 100px;
  width: 100px;
  position: relative;
  cursor: pointer;
  overflow: hidden; }

.cable-card, .stow-accessories-card {
  height: 568px; }

body.template-collection-pro #shopify-section-earphones-tech-specs-pro .grid__item.large--one-quarter {
  margin-bottom: 30px; }

@media only screen and (max-width: 768px) {
  body#earphones .main-content .wrapper .view,
  body.template-collection-pro .main-content .wrapper .view,
  body#accessories .main-content .wrapper .view,
  body#giftcards .main-content .wrapper .view,
  body#gifts .main-content .wrapper .view {
    margin-top: 0;
    position: relative; }

  body#earphones .main-content .wrapper .product-grid-banner,
  body.template-collection-pro .main-content .wrapper .product-grid-banner,
  body#accessories .main-content .wrapper .product-grid-banner,
  body#giftcards .main-content .wrapper .product-grid-banner,
  body#gifts .main-content .wrapper .product-grid-banner {
    top: 45px; } }
@media only screen and (max-width: 480px) {
  body#earphones .main-content .wrapper .product-grid-banner,
  body.template-collection-pro .main-content .wrapper .product-grid-banner,
  body#accessories .main-content .wrapper .product-grid-banner,
  body#giftcards .main-content .wrapper .product-grid-banner,
  body#gifts .main-content .wrapper .product-grid-banner {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%; }

  body#earphones .main-content .wrapper .product-grid-banner img,
  body.template-collection-pro .main-content .wrapper .product-grid-banner img,
  body#accessories .main-content .wrapper .product-grid-banner img,
  body#giftcards .main-content .wrapper .product-grid-banner img,
  body#gifts .main-content .wrapper .product-grid-banner img {
    object-fit: cover;
    height: 100%; }

  body#earphones .main-content .wrapper .view,
  body.template-collection-pro .main-content .wrapper .view,
  body#accessories .main-content .wrapper .view,
  body#giftcards .main-content .wrapper .view,
  body#gifts .main-content .wrapper .view {
    margin-top: 0;
    position: relative; }

  .cable-card .shop-model-button h3, .cable-card .shop-model-button .h3, .stow-accessories-card .shop-model-button h3, .stow-accessories-card .shop-model-button .h3 {
    font-size: 3vmin; }

  body.template-collection .stow-accessories-card .variant-row .variant-row-wrap .colored-variant-wrap {
    overflow: visible !important; }

  body.template-collection .stow-accessories-card .variant-row .variant-row-wrap .colored-variant-wrap {
    height: 50px;
    width: 50px;
    border: none; }

  body.template-collection .stow-accessories-card .colored-variant-wrap img, .stow-accessories-card .colored-variant-wrap img {
    height: 100%;
    object-position: auto;
    width: 100%;
    /*   transform: scale(1.9); */ }

  .cable-card .shop-model-button h3, .cable-card .shop-model-button .h3, .stow-accessories-card .shop-model-button h3, .stow-accessories-card .shop-model-button .h3 {
    font-size: 4vmin; } }
body.template-product .stow-accessories-card {
  height: auto;
  background: #fff;
  padding: 20px; }

body.template-product .stow-accessories-card .card-description p {
  text-align: left; }

body.template-product .stow-accessories-card .middle-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: 20px 0;
  align-content: center;
  border-top: 1px solid #ddd;
  align-items: center;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap; }

body.template-product .stow-accessories-card .middle-row form {
  width: 60%; }

body.template-blog .section-header {
  margin-top: 100px; }

body.template-blog .section-header h1, body.template-blog .section-header .h1 {
  font-size: 28px; }

.rte a, .text-link {
  font-size: 14px !important;
  color: black !important; }

@media only screen and (max-width: 956px) {
  body.template-blog .article .rte.rte--indented-images {
    font-size: 16px; }

  body.template-blog .article h2.h3, body.template-blog .article .h3.h2 {
    font-size: 28px !important; }

  body.template-blog .article .rte.rte--indented-images p, body.template-article .rte.rte--indented-images p {
    font-size: 16px; }

  body.template-article .rte.rte--indented-images li span {
    font-size: 14px; } }
@media only screen and (max-width: 480px) {
  .date {
    font-size: 14px; }

  body.template-article .rte.rte--indented-images li span {
    font-size: 14px; } }
.hero__image--desktop {
  display: block;
  object-fit: cover;
  width: 100%; }

.hero__image--mobile {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center left;
  display: none; }

body#home .hero__image--mobile {
  height: 100%; }

@media only screen and (min-width: 769px) {
  .hero__image--mobile {
    display: none; }

  .grid-banner-hero-mobile {
    display: none; } }
@media only screen and (max-width: 768px) {
  body#home .main-content {
    padding: 0; }

  .grid-banner-hero-desktop {
    display: none; }

  .grid-banner-hero-mobile {
    display: block;
    object-fit: cover;
    object-position: right;
    height: 100%;
    width: 100%; }

  .hero__image--desktop {
    display: none; }

  .hero__image--mobile {
    display: block;
    object-position: top;
    padding-top: 80px !important; } }
@media only screen and (max-width: 480px) {
  .hero__image--mobile {
    margin-top: 0;
    object-position: center;
    padding-top: 0px !important; } }
@media only screen and (max-width: 480px) {
  #shopify-section-fitkit-product .section .hero-image .hero-text {
    top: 50%; }

  .product-page-bluetooth-specs h3, .product-page-bluetooth-specs .h3, .product-page-tech-specs header h3, .product-page-tech-specs header .h3 {
    margin: 20px 0 20px !important; }

  .line {
    margin: 0; }

  .you-might-also-like-grid .product-footer-card.card {
    grid-template-rows: 4fr 2fr .5fr; }

  .you-might-also-like-grid .product-footer-card .card-content .img img {
    padding: 0 !important;
    object-fit: scale-down;
    height: 100%; }

  .you-might-also-like-grid .product-footer-card .shop-model-button h3, .you-might-also-like-grid .product-footer-card .shop-model-button .h3 {
    font-size: 16px !important; }

  .product-card .card-content .img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; }

  .product-card .card-content .img img {
    position: relative !important;
    object-position: center;
    padding: 0 !important;
    object-fit: scale-down;
    height: 80%;
    width: 100%; }

  .card .card-content .top-bar span.model-title {
    font-size: 30px; }

  .primaryfooter .newsletter form .newsletter--form .input-group {
    border-bottom: 1px solid black !important; }

  .primaryfooter .newsletter form .newsletter--form .input-group input {
    border-bottom: none !important;
    padding: 0; }

  .primaryfooter .rightarrow {
    margin-left: 0 !important; } }
.card.product-card.cable-card {
  grid-template-rows: 3fr 2fr .5fr; }

.card.product-card.cable-card .card-content .img img {
  max-height: 100% !important;
  margin-top: 0 !important; }

body#ultimate-ears-csx-custom-fit-wireless-iem > .wrapper, body#home .wrapper {
  padding: 0 !important; }

body#contact-us .section-header {
  margin-top: 30px; }

body#contact-us .form-vertical .btn, body#contact-us .form-vertical .btn--white, body#contact-us .form-vertical .btn--outline-white, body#contact-us .form-vertical .btn--outline, body#contact-us .form-vertical .gwbutton, body#contact-us .form-vertical .btn--secondary, body#contact-us .form-vertical input, body#contact-us .form-vertical textarea {
  font-style: normal; }

body,
input,
textarea,
button,
select {
  font-family: "akzidenz-grotesk";
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #222323;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 500;
  margin: 0 0 0.5em;
  line-height: 1.4; }
  h1:not(.hero__title), .h1:not(.hero__title), h2:not(.hero__title), .h2:not(.hero__title), h3:not(.hero__title), .h3:not(.hero__title), h4:not(.hero__title), .h4:not(.hero__title), h5:not(.hero__title), .h5:not(.hero__title), h6:not(.hero__title), .h6:not(.hero__title) {
    color: #222323; }
  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; }

h1, .h1 {
  font-size: 1.875em; }

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

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

h4, .h4 {
  font-size: 1.1875em;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

h5, .h5 {
  font-size: 1em;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

h6, .h6 {
  font-size: 0.9375em;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

.display-1, .display-2 {
  line-height: 1.2; }

.display-1 {
  font-size: 2.125em; }
  @media screen and (min-width: 769px) {
    .display-1 {
      font-size: 3.125em; } }

.display-2 {
  font-size: 1.875em; }
  @media screen and (min-width: 769px) {
    .display-2 {
      font-size: 2.5em; } }

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

em {
  font-style: italic; }

b, strong, .strong {
  font-weight: 500; }

small {
  font-size: 0.9em; }

.smaller {
  font-size: 0.7em; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  margin: 0;
  padding: 15px 30px 40px; }
  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, 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; }

@font-face {
  font-family: "icons";
  src: url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/icons.eot?v=95205077798482286381592496668");
  src: url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/icons.eot?v=95205077798482286381592496668#iefix") format("embedded-opentype"), url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/icons.woff?v=168759021461564595631592496700") format("woff"), url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/icons.ttf?v=149920530491784744181592496670") format("truetype"), url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/icons.svg?v=3906238393438866611592496671#timber-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

.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)
==============================================================================*/
.supports-fontface .icon-fallback-text .fallback-text {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.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-chevron-thin-right:before {
  content: "\e911"; }

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

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

.icon-shopify_pay:before {
  content: "\e90e"; }

.icon-klarna:before {
  content: "\e90f"; }

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

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

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

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

.icon-google_plus:before {
  content: "\e90a"; }

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

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

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

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

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

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

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

.icon-arrow-left:before {
  content: "\e900"; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-amazon_payments:before {
  content: "\e800"; }

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

.social-icons .icon {
  padding-right: 4px; }

.social-icons .icon-google_plus {
  font-size: 0.8em; }

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeIn {
  0%, 35% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0%, 35% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-ms-keyframes fadeIn {
  0%, 35% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0%, 35% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-webkit-keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px); }

  60% {
    opacity: 1; }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px); }

  60% {
    opacity: 1; }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@-ms-keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px); }

  60% {
    opacity: 1; }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

@keyframes heroContentIn {
  0%, 35% {
    opacity: 0;
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px); }

  60% {
    opacity: 1; }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }

.color-body {
  color: #222323 !important; }

.color-white {
  color: #fff !important; }

.bgd-white {
  background-color: #fff; }

.bgd-grey {
  background-color: #f7f7f7; }

.bgd-gradient {
  background: #fff;
  background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f7 4%, white 40%); }

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

.text-uppercase {
  text-transform: uppercase; }

.fontweight-light {
  font-weight: 300; }

.fontweight-reg {
  font-weight: 400; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.visually-hidden {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

@media only screen and (max-width: 768px) {
  .hide-on-mobile {
    display: none; } }

.mt-1 {
  margin-top: 1rem !important; }

.mt-2 {
  margin-top: 2rem !important; }

.mt-3 {
  margin-top: 3rem !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-0-half {
  margin-bottom: 0.5rem !important; }

.mb-1 {
  margin-bottom: 1rem !important; }

.mb-1-half {
  margin-bottom: 1.5rem !important; }

.mb-2 {
  margin-bottom: 2rem !important; }

.mb-3 {
  margin-bottom: 3rem !important; }

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

.align-top .display-table-cell {
  vertical-align: top; }

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

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; } }
.flex-grid {
  display: flex !important;
  align-items: center; }
  .flex-grid .flex-item-shrink {
    flex-shrink: 1;
    padding: 0 2em;
    width: auto !important; }
  .flex-grid .flex-item-grow {
    flex-grow: 2;
    width: auto !important; }

.contains-image {
  position: relative; }
  .contains-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto; }

@media screen and (min-width: 769px) {
  .side-padding {
    padding: 0 20% !important; } }

hr, .hr--small, .hr--medium, .hr--large {
  clear: both;
  border-top: solid #1c1d1d;
  border-width: 1px 0 0 0;
  margin: 30px 0;
  height: 0; }

.hr--clear {
  border-top-color: transparent; }

.hr--light {
  border-top-color: #BEBEBE; }

.hr--small {
  width: 50px;
  margin: 20px auto; }

.hr--medium {
  margin: 35px auto; }
  @media screen and (min-width: 769px) {
    .hr--medium {
      margin: 45px auto; } }

.hr--large {
  margin: 60px auto; }

.hr--left {
  margin-left: 0;
  margin-right: 0; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

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

th {
  font-weight: bold; }

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

table {
  position: relative;
  border: 0 none;
  background-color: #f7f7f7; }

td,
th {
  border: 0 none; }

th,
.table__title {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 0.8125em;
  letter-spacing: 0.15em; }

td {
  padding: 10px 15px; }

tr:first-child th,
tr:first-child td {
  position: relative; }
  tr:first-child th:after,
  tr:first-child td:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: -15px;
    right: 15px;
    border-bottom: 1px solid #1c1d1d; }
  tr:first-child th:first-child:after,
  tr:first-child td:first-child:after {
    left: 15px;
    right: -15px; }

/*============================================================================
  Responsive tables, defined with .table--responsive on table element.
  Only defined for IE9+
==============================================================================*/
@media screen and (max-width: 600px) {
  html:not(.lt-ie9) .table--responsive thead {
    display: none; }
  html:not(.lt-ie9) .table--responsive tr {
    display: block; }
  html:not(.lt-ie9) .table--responsive tr,
  html:not(.lt-ie9) .table--responsive td {
    float: left;
    clear: both;
    width: 100%; }
  html:not(.lt-ie9) .table--responsive th,
  html:not(.lt-ie9) .table--responsive td {
    display: block;
    text-align: right;
    padding: 15px; }
  html:not(.lt-ie9) .table--responsive td:before {
    content: attr(data-label);
    float: left;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
    padding-right: 10px; } }
@media screen and (max-width: 600px) {
  html:not(.lt-ie9) .table--small-hide {
    display: none !important; }
  html:not(.lt-ie9) .table__section + .table__section {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    html:not(.lt-ie9) .table__section + .table__section:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #1c1d1d; } }

a {
  color: #222323;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }
  a:hover {
    color: #979797; }
  a[href^="tel"] {
    color: inherit; }

.link-underlined a {
  text-decoration: underline; }
  .link-underlined a:hover {
    text-decoration: none; }

.return-link {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875em; }

button {
  overflow: visible; }

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

.btn, .btn--white, .btn--outline-white, .btn--outline, .gwbutton, .btn--secondary {
  color: #fff;
  background-color: #000;
  text-transform: uppercase;
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 1.42;
  padding: 1em 1.25em;
  display: inline-block;
  margin: 0;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }
  .btn:hover, .btn--white:hover, .btn--outline-white:hover, .btn--outline:hover, .gwbutton:hover, .btn--secondary:hover {
    border-color: #000;
    background-color: #fff;
    color: #000; }
  .btn:active, .btn--white:active, .btn--outline-white:active, .btn--outline:active, .gwbutton:active, .btn--secondary:active {
    background-color: #000;
    color: #fff; }
  .btn[disabled], [disabled].btn--white, [disabled].btn--outline-white, [disabled].btn--outline, [disabled].gwbutton, [disabled].btn--secondary, .btn.disabled, .disabled.btn--white, .disabled.btn--outline-white, .disabled.btn--outline, .disabled.gwbutton, .disabled.btn--secondary {
    cursor: default;
    color: #717171;
    background-color: #f6f6f6; }

.btn--white {
  background-color: #fff;
  border-color: #fff;
  color: #000; }
  .btn--white:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff; }

.btn--outline-white {
  background-color: transparent;
  border-color: #fff;
  color: #fff; }
  .btn--outline-white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000; }

.btn--outline, .gwbutton {
  background-color: transparent;
  border-color: #000;
  color: #000; }
  .btn--outline:hover, .gwbutton:hover {
    background-color: #000;
    border-color: #000;
    color: #fff; }

.btn--secondary {
  background-color: #eee;
  color: #000; }
  .btn--secondary:hover {
    background-color: black !important;
    color: white; }
  .btn--secondary:active {
    background-color: #e1e1e1;
    color: #000; }

.btn--small {
  font-size: 0.75em; }

.btn--large {
  font-size: 1em; }

.btn--short {
  padding-top: 0.5em;
  padding-bottom: 0.5em; }

.btn--wide {
  padding-left: 4em;
  padding-right: 4em; }

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

.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

.gwbutton {
  display: none; }

/*================ Buttons and Input Groups ================*/
.input-group .btn, .input-group .btn--white, .input-group .btn--outline-white, .input-group .btn--outline, .input-group .gwbutton, .input-group .btn--secondary,
.input-group .btn--secondary,
.input-group .input-group-field {
  height: 45px; }

form {
  margin: 0; }

.form-vertical {
  margin-bottom: 15px; }
  @media screen and (min-width: 601px) {
    .form-vertical {
      margin-bottom: 50px; } }

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

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

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

legend {
  border: 0;
  padding: 0; }

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

input,
textarea,
select {
  border: 1px solid #1c1d1d;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 0; }
  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"] {
  margin: 0 10px 0 0;
  padding: 0;
  width: auto; }

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

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

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/ico-select.svg?v=86297822926381903161592496644");
  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 {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 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; }

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

/*================ Error styles ================*/
input.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--white,
  .input-group .input-group-btn:first-child > .btn--outline-white,
  .input-group .input-group-btn:first-child > .btn--outline,
  .input-group .input-group-btn:first-child > .gwbutton,
  .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--white,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--outline-white,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--outline,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .gwbutton,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn--secondary {
    border-radius: 0 0 0 0; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > .btn--white,
  .input-group .input-group-btn:last-child > .btn--outline-white,
  .input-group .input-group-btn:last-child > .btn--outline,
  .input-group .input-group-btn:last-child > .gwbutton,
  .input-group .input-group-btn:last-child > .btn--secondary {
    border-radius: 0 0 0 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

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

.input-group .btn, .input-group .btn--white, .input-group .btn--outline-white, .input-group .btn--outline, .input-group .gwbutton, .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; }

/*================ Selector wrapper ================*/
.selector-wrapper label {
  margin-right: 10px; }
.selector-wrapper + .selector-wrapper {
  margin-top: 15px; }

label {
  font-style: italic;
  font-weight: normal; }

::-webkit-input-placeholder {
  color: #222323;
  opacity: 0.6; }

:-moz-placeholder {
  color: #222323;
  opacity: 0.6; }

:-ms-input-placeholder {
  color: #222323;
  opacity: 0.6; }

::-ms-input-placeholder {
  color: #222323;
  opacity: 1; }

input,
textarea,
select {
  font-size: 1.125em;
  border-color: transparent;
  background-color: #f7f7f7;
  color: #1c1d1d;
  -webkit-transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -ms-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out; }
  input[disabled], input.disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    background-color: #f6f6f6;
    border-color: transparent; }
  input:hover,
  textarea:hover,
  select:hover {
    -webkit-transition: opacity 0.15s ease-out;
    -moz-transition: opacity 0.15s ease-out;
    -ms-transition: opacity 0.15s ease-out;
    -o-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out;
    opacity: 0.9; }
  input:active, input:focus,
  textarea:active,
  textarea:focus,
  select:active,
  select:focus {
    opacity: 1; }

select:hover {
  outline: 1px solid #dedede; }

input[type="number"] {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1em; }

input[type="image"] {
  background-color: transparent; }

.single-option-radio {
  border: 0;
  padding-top: 0;
  position: relative;
  background-color: white; }
  .single-option-radio input {
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px; }
    .lt-ie9 .single-option-radio input {
      position: relative;
      height: auto;
      width: auto;
      clip: initial; }
  .single-option-radio label {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    line-height: 1;
    padding: 9px 11px;
    margin: 3px 4px 7px 3px;
    font-size: 0.8125em;
    font-style: normal;
    background-color: white;
    border: 1px solid white;
    color: #222323; }
    .single-option-radio label.disabled:before {
      position: absolute;
      content: "";
      left: 50%;
      top: 0;
      bottom: 0;
      border-left: 1px solid;
      border-color: #222323;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
      .lt-ie9 .single-option-radio label.disabled:before {
        display: none; }
    .single-option-radio label:active, .single-option-radio label:focus {
      background-color: #f2f2f2;
      border-color: #f2f2f2; }
  .single-option-radio input[type='radio']:checked + label {
    border-color: #222323; }
  .single-option-radio input[type='radio']:focus + label {
    background-color: #f2f2f2; }

.radio-wrapper .single-option-radio__label {
  display: block;
  margin-bottom: 10px;
  cursor: default;
  font-style: normal; }

.product-form__item {
  margin-bottom: 13px; }

#custom_engraving {
  background: #fff;
  border: 1px solid #DFDFDF;
  width: 25ch; }

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

.note {
  border-color: #1c1d1d; }

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

ul, ol {
  margin: 0 0 15px 20px;
  padding: 0;
  text-rendering: optimizeLegibility; }

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

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

/*=============== Image Transitions ===================*/
.fade-in {
  opacity: 0;
  transition: opacity 250ms ease-out; }
  .fade-in.lazyloaded {
    opacity: 1; }
  .no-js .fade-in {
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px; }

img {
  border: 0 none; }

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

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

.rte {
  margin-bottom: 15px; }
  .rte:after {
    content: '';
    display: table;
    clear: both; }
  .rte p,
  .rte ul,
  .rte ol,
  .rte table {
    margin-bottom: 25px; }
  .rte ul ul {
    margin-bottom: 0; }
  .rte a {
    text-decoration: none; }
  .rte .text-link {
    border-bottom: 1px solid #222323; }
    .rte .text-link:hover, .rte .text-link:focus {
      border-bottom: 1px solid #979797; }
  .rte h1, .rte .h1, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
    margin-top: 2em;
    margin-bottom: 2em; }
  .rte h2, .rte .h2, .rte h3, .rte .h3 {
    margin-top: 2.5em;
    margin-bottom: 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; }
  .rte > p:last-child {
    margin-bottom: 0; }
  .rte table {
    table-layout: fixed; }

.text-center .rte ul,
.text-center .rte ol,
.text-center.rte ul,
.text-center.rte ol {
  list-style-position: inside;
  margin-left: 0; }

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

/*================ Indented article/page images and blockquotes ================*/
.rte--indented-images img:not([style]),
.rte--indented-images img[style="float: none;"] {
  max-width: 120%;
  margin-left: -10%; }
  .rte--indented-images img:not([style]).rte__no-indent,
  .rte--indented-images img[style="float: none;"].rte__no-indent {
    margin: 0 auto;
    max-width: 100%; }
.rte--indented-images img[style="float: right;"] {
  margin: 0 -10% 15px 15px; }
.rte--indented-images img[style="float: left;"] {
  margin: 0 15px 15px -10%; }

@media screen and (min-width: 769px) {
  .rte blockquote {
    width: 120%;
    margin-left: -10%;
    padding-left: 0;
    padding-right: 0; }
    .rte blockquote p {
      margin-bottom: 0; } }
.rte h1, .rte .h1 {
  text-align: center; }
.rte h2, .rte .h2 {
  text-align: center; }
.rte h1::after, .rte .h1::after, .rte h2::after, .rte .h2::after {
  content: '';
  display: block;
  margin: 20px auto;
  max-width: 50px; }
.rte h3, .rte .h3 {
  text-align: center; }
.rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
  letter-spacing: 0.1em;
  text-transform: uppercase; }

blockquote {
  font-style: italic;
  font-size: 1.4375em;
  line-height: 1.385;
  text-align: center; }
  @media screen and (min-width: 601px) {
    blockquote {
      font-size: 1.625em; } }

.section-header .rte {
  font-style: italic;
  font-size: 1.125em; }

.article .rte h2, .article .rte .h2,
.article .rte h3,
.article .rte .h3,
.page .rte h2,
.page .rte .h2,
.page .rte h3,
.page .rte .h3 {
  margin-bottom: 2em; }

html,
body {
  background-color: white; }

body {
  position: relative; }

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

.wrapper {
  max-width: none;
  margin: 0 auto;
  padding: 0 15px; }
  @media screen and (min-width: 601px) {
    .wrapper {
      padding: 0 30px; } }

.page-container {
  overflow: hidden;
  height: 100%; }
  .page-container:before {
    content: '';
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1; }
    .js-drawer-open .page-container:before {
      display: block;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 2001; }

.js-drawer-open {
  overflow: hidden; }

#premium-custom-fit-earphones .main-content {
  padding-top: 0px !important; }

#custom-fit-earphones-product-amp-features-page .main-content {
  padding-top: 0px !important; }

#meet-the-revolutionary-fitkit .main-content {
  padding-top: 0px !important; }

#ue-7 .main-content {
  padding-top: 0px !important; }

#our-story-why-we-39-re-trusted-on-every-stage-in-the-world .main-content {
  padding-top: 0px !important;
  padding-bottom: 0px !important; }

#shopify-section-header {
  position: sticky;
  top: 0;
  z-index: 2; }

.site-header {
  padding: 0px !important;
  height: min-content; }
  .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; }

@media screen and (max-width: 480px) {
  .site-header {
    height: min-content; } }
.site-header__logo {
  text-align: center;
  margin: 0 auto; }
  .site-header__logo a,
  .site-header__logo a:hover {
    text-decoration: none;
    color: #222323; }
  .site-header__logo a.site-header__logo-link {
    margin: 0 auto; }
  .site-header__logo a,
  .site-header__logo img {
    display: block; }
  .site-header__logo img {
    margin: 0 auto; }

/*================ Announcement Bar ================*/
.announcement-bar {
  display: block;
  text-align: center;
  position: relative;
  text-decoration: none; }

.announcement-bar__message {
  margin: 0;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 30px; }
  @media screen and (max-width: 600px) {
    .announcement-bar__message {
      padding-left: 10px;
      padding-right: 10px;
      font-size: 10px; } }

/*================ Promo Bar ================*/
.promo-bar {
  background-color: #ffffff;
  padding: 5px 0; }

.promo-bar__message {
  color: #730202;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0; }

@media only screen and (max-width: 768px) {
  .promo-bar__message {
    font-size: 16px !important; } }
/*================ Module | Search Bar ================*/
.search-bar {
  max-width: 100%; }

.search-bar--page {
  max-width: 300px;
  margin: 0 auto; }

.search-bar--modal {
  max-width: 300px;
  margin: 20% auto 0; }

.search-bar--header {
  max-width: 300px;
  background-color: #f7f7f7; }

.search-bar--drawer {
  margin-bottom: 15px; }

.site-header__logo .logo--inverted {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  height: 0; }
  .is-light .site-header__logo .logo--inverted {
    opacity: 1;
    visibility: visible;
    height: auto; }

/*================ Text Shop Name ================*/
.site-header__logo {
  font-size: 1.25em; }
  .site-header__logo img {
    padding: 5px; }
  @media screen and (min-width: 769px) {
    .site-header__logo {
      text-align: left;
      font-size: 1.5625em; } }
  @media screen and (max-width: 768px) {
    .site-header__logo img {
      min-width: 120px; } }

.site-header__logo a,
.header-logo a {
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

/*================ Nav Links ================*/
.site-nav, .site-nav--mobile, .site-nav--open {
  white-space: nowrap;
  opacity: 0; }
  .site-nav.site-nav--mobile, .site-nav--mobile, .site-nav--open.site-nav--mobile {
    opacity: 1; }
  .no-js .site-nav, .no-js .site-nav--mobile, .site-nav.site-nav--init, .site-nav--init.site-nav--mobile, .no-js .site-nav--open, .site-nav--open.site-nav--init {
    opacity: 1;
    -webkit-transition: color 0.2s, opacity 0.1s;
    -moz-transition: color 0.2s, opacity 0.1s;
    -ms-transition: color 0.2s, opacity 0.1s;
    -o-transition: color 0.2s, opacity 0.1s;
    transition: color 0.2s, opacity 0.1s; }

.desktop-nav {
  opacity: 1; }

@media only screen and (max-width: 768px) {
  .desktop-nav {
    opacity: 0; } }
@media only screen and (max-width: 480px) {
  .cart-link {
    font-size: 11px;
    margin-right: 5px; }

  .site-header__logo-link {
    margin: 0; }

  .site-header__logo-link img {
    transform: scale(0.8);
    margin: 0; } }
.burger-icon {
  display: block;
  height: 2px;
  width: 18px;
  left: 25px;
  margin-left: -5px;
  position: absolute;
  transition: all 0.25s ease-out;
  background: #ffffff;
  transition: all .2s; }

.burger-icon--top {
  top: 17px; }

.burger-icon--mid {
  top: 24px; }

.burger-icon--bottom {
  top: 31px; }

.site-nav__link--burger {
  width: 40px;
  height: 55px;
  padding: 0;
  text-align: center;
  line-height: 50px;
  background-color: transparent;
  border: 0;
  position: relative;
  top: 4px;
  transition: transform 0.15s ease-out; }
  .site-nav__link--burger svg {
    width: 20px;
    height: 30px; }
  .site-nav__link--burger::after {
    border-color: #000; }
  .site-nav__link--burger.is-open .burger-icon--top {
    transform: rotate(-45deg) translateX(-25%) translateY(240%); }
  .site-nav__link--burger.is-open .burger-icon--bottom {
    transform: rotate(45deg) translateX(-2%) translateY(-10%); }

.site-nav__item {
  white-space: normal; }

.site-nav__link {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  font-size: 0.875em;
  font-weight: 500 !important; }

.site-nav--has-dropdown {
  position: relative; }
  .site-nav--has-dropdown > a {
    position: relative;
    z-index: 6; }
  .site-nav--has-dropdown:hover > a,
  .site-nav--has-dropdown > a.nav-focus, .site-nav--has-dropdown.nav-hover > a {
    color: #ADADAD;
    opacity: 1;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none; }
    .site-nav--has-dropdown:hover > a:after,
    .site-nav--has-dropdown > a.nav-focus:after, .site-nav--has-dropdown.nav-hover > a:after {
      content: ' ';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #313131; }
  .site-nav--has-dropdown.site-nav--has-dropdown-grandchild a:before {
    display: none; }

/*================ Dropdown Animation ================*/
.site-nav__dropdown {
  background-color: white;
  min-width: 100%;
  padding: 10px 0;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.09);
  -webkit-transform: translate3d(0px, -12px, 0px);
  -moz-transform: translate3d(0px, -12px, 0px);
  -ms-transform: translate3d(0px, -12px, 0px);
  -o-transform: translate3d(0px, -12px, 0px);
  transform: translate3d(0px, -12px, 0px); }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown, .nav-focus + .site-nav__dropdown {
    opacity: 1;
    pointer-events: initial;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px); }
  .supports-no-touch .site-nav--has-dropdown:hover .site-nav__dropdown, .site-nav--has-dropdown.nav-hover .site-nav__dropdown {
    -webkit-transition: transform 300ms cubic-bezier(0.2, .06, .05, .95);
    -moz-transition: transform 300ms cubic-bezier(0.2, .06, .05, .95);
    -ms-transition: transform 300ms cubic-bezier(0.2, .06, .05, .95);
    -o-transition: transform 300ms cubic-bezier(0.2, .06, .05, .95);
    transition: transform 300ms cubic-bezier(0.2, .06, .05, .95); }

.site-nav__dropdown-grandchild {
  min-width: 100%;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.09);
  -webkit-transform: translate3d(-12px, 0px, 0px);
  -moz-transform: translate3d(-12px, 0px, 0px);
  -ms-transform: translate3d(-12px, 0px, 0px);
  -o-transform: translate3d(-12px, 0px, 0px);
  transform: translate3d(-12px, 0px, 0px); }
  .nav-outside + .site-nav__dropdown-grandchild {
    -webkit-transform: translate3d(12px, 0px, 0px);
    -moz-transform: translate3d(12px, 0px, 0px);
    -ms-transform: translate3d(12px, 0px, 0px);
    -o-transform: translate3d(12px, 0px, 0px);
    transform: translate3d(12px, 0px, 0px); }
  .supports-no-touch .site-nav--has-dropdown-grandchild:hover .site-nav__dropdown-grandchild, .site-nav--has-dropdown-grandchild.nav-hover .site-nav__dropdown-grandchild, .nav-focus + .site-nav__dropdown-grandchild {
    opacity: 1;
    pointer-events: initial;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px); }
  .supports-no-touch .site-nav--has-dropdown-grandchild:hover .site-nav__dropdown-grandchild, .site-nav--has-dropdown-grandchild.nav-hover .site-nav__dropdown-grandchild {
    -webkit-transition: transform 300ms cubic-bezier(0.2, .06, .05, .95);
    -moz-transition: transform 300ms cubic-bezier(0.2, .06, .05, .95);
    -ms-transition: transform 300ms cubic-bezier(0.2, .06, .05, .95);
    -o-transition: transform 300ms cubic-bezier(0.2, .06, .05, .95);
    transition: transform 300ms cubic-bezier(0.2, .06, .05, .95); }

/*================ Submenu items ================*/
.site-nav__dropdown a,
.site-nav__grandchild-dropdown a {
  background-color: transparent;
  color: #222323; }
  .site-nav__dropdown a:hover, .site-nav__dropdown a:active, .site-nav__dropdown a:focus,
  .site-nav__grandchild-dropdown a:hover,
  .site-nav__grandchild-dropdown a:active,
  .site-nav__grandchild-dropdown a:focus {
    background-color: transparent;
    color: #222323; }

.site-nav__dropdown-link {
  display: inline-block;
  white-space: nowrap;
  font-size: 1em; }
  .site-nav--has-grandchildren .site-nav__dropdown-link {
    padding-right: 45px; }

/*================ Compressed nav if too many links ================*/
.site-nav--compress .site-nav__item:not(.site-nav__item--compressed) {
  display: none; }

@media screen and (min-width: 769px) {
  .site-nav--open {
    display: none; } }
.site-nav--open.site-nav--open__display {
  display: inline-block; }

/*================ Search bar ================*/
.site-nav--search__bar {
  vertical-align: middle;
  padding: 0 10px 7px 0; }
  .site-nav--search__bar input {
    background-color: #f7f7f7; }

@media screen and (max-width: 768px) {
  .site-footer {
    padding-bottom: 200px; } }
.site-footer {
  padding-bottom: 30px; }
  @media screen and (max-width: 600px) {
    .site-footer .grid__item {
      padding-bottom: 5px; } }
  .site-footer a {
    color: #222323; }
    .site-footer a:active {
      color: black; }

@media screen and (min-width: 601px) {
  .site-footer__linklist {
    margin-bottom: 15px; } }

.site-footer {
  padding-bottom: 0; }

.btn.newsletter__submit, .newsletter__submit.btn--white, .newsletter__submit.btn--outline-white, .newsletter__submit.btn--outline, .newsletter__submit.gwbutton, .newsletter__submit.btn--secondary {
  background-color: #efefef; }

.primaryfooter {
  min-height: 320px;
  background-color: #efefef;
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  padding: 0 50px;
  align-items: center; }

.primaryfooter .additional-links {
  margin: auto; }

.primaryfooter .product-perks {
  display: block;
  margin: auto;
  width: max-content;
  min-width: 250px; }

.primaryfooter .additional-links .newsletter {
  padding: 30px 0 !important; }

.primaryfooter .product-perks ul li {
  color: black; }

.social-footer {
  background: #000;
  min-height: 200px;
  display: flex;
  padding: 0 40px;
  justify-content: flex-start;
  align-items: center; }

.legal a {
  margin: 0 2vmin;
  color: #ddd;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  font-stretch: normal;
  line-height: 2.5;
  letter-spacing: 0.5px; }

.social {
  flex-basis: 60%;
  text-align: right; }

.social a {
  margin: 0 30px;
  color: #fff !important;
  font-size: 24px !important; }

.newsletter form .newsletter--form,
.newsletter .newsletter__input {
  background: none !important; }

.linkfooter1 {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.5;
  letter-spacing: 0.5px;
  color: #000000 !important;
  text-transform: uppercase;
  padding-right: 2vmin !important; }

.primaryfooter input {
  font-size: 14px !important;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.5;
  letter-spacing: 0.5px;
  color: #000000 !important;
  text-transform: uppercase !important;
  background-color: transparent !important;
  border-bottom: 1px solid black !important;
  padding-left: 0px; }

.primaryfooter i {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px; }

.primaryfooter .product-perks {
  display: block;
  margin: auto; }

.primaryfooter .rightarrow {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: -45px; }

.copyrights {
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  font-stretch: normal;
  line-height: 2.5;
  margin: 0;
  letter-spacing: 0.5px;
  color: #ffffff; }

.linkfooter2 {
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.5;
  letter-spacing: 0.5px;
  color: #898989 !important;
  text-transform: uppercase;
  padding-right: 34px !important; }

.primaryfooter {
  position: relative; }

.backToTop {
  color: black;
  font-weight: bolder;
  position: absolute;
  top: 20px;
  right: 20px;
  text-align: center;
  z-index: 10;
  cursor: pointer; }
  .backToTop img {
    height: 25px;
    width: 25px;
    object-fit: contain;
    display: block;
    margin: 0 auto 5px; }
  .backToTop span {
    font-size: 11px;
    display: block;
    font-weight: 500;
    text-transform: uppercase; }

.primaryfooter .product-perks ul {
  list-style: none;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0; }

.primaryfooter .product-perks ul li {
  font-weight: 300;
  width: 100%;
  margin: 30px 0 0;
  font-size: 14px;
  text-transform: uppercase; }

.primaryfooter .product-perks ul li:nth-of-type(1) {
  margin: 0; }

.product-perks ul li img {
  width: 22px;
  height: 21.5px;
  margin: 0 20px 0 0;
  display: inline-block;
  vertical-align: bottom;
  position: relative !important;
  background-color: transparent;
  top: auto; }

@media only screen and (max-width: 920px) {
  .primaryfooter .product-perks ul li {
    margin: 15px 0 0; }

  .primaryfooter .product-perks ul li img {
    width: 15px;
    height: 15px;
    margin: 0 10px 0 0;
    display: inline-block;
    vertical-align: middle;
    position: relative !important;
    background-color: transparent; }

  .social-footer {
    background: #000;
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    padding: 0 40px;
    justify-content: center;
    align-items: center; }

  .social-footer .social {
    text-align: center; } }
.primaryfooter {
  padding: 40px; }

@media only screen and (max-width: 768px) {
  .primaryfooter,
  .social-footer {
    flex-direction: column !important; }

  .social-footer {
    justify-content: center;
    align-content: center;
    align-items: center; }

  .linkfooter1 {
    padding: 0 !important;
    display: block;
    text-align: center; }

  .copyrights,
  .legal,
  .social {
    text-align: center; }

  .newsletter form {
    margin: 0 auto;
    min-width: 300px; }

  .primaryfooter .additional-links {
    width: 100%; }

  .primaryfooter .additional-links .help-links {
    width: max-content;
    margin: 20px auto;
    display: block; }

  .primaryfooter .additional-links .help-links li {
    text-align: left; }

  .primaryfooter .product-perks {
    display: block;
    width: 100%;
    margin: auto; }

  .primaryfooter .product-perks ul {
    list-style: none;
    width: max-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 20px auto; }

  .primaryfooter .product-perks ul li {
    text-align: left; }

  .social a {
    color: #fff;
    font-size: 14px !important; } }
@media only screen and (max-width: 480px) {
  .primaryfooter .product-perks ul li {
    font-size: 14px; }

  .product-perks ul li img {
    vertical-align: sub;
    margin: 0 5px 0 0; }

  .copyrights {
    font-weight: bolder;
    margin: 10px 0; }

  .social-footer {
    background: #000;
    min-height: 200px; }

  .legal {
    margin: 10px 0; }

  .social-footer {
    padding-top: 10px; }

  .legal a {
    margin: 5px;
    color: #ddd;
    font-size: 12px; }

  .social a {
    margin: 10px;
    color: #fff;
    font-size: 12px !important; } }
@media only screen and (max-width: 1023px) {
  #DesktopNavigation, #shopify-section-header .wrapper {
    display: none !important; } }
#DesktopNavigation .flex-grid nav {
  flex: 2; }
  #DesktopNavigation .flex-grid nav.text-right {
    justify-content: flex-end; }
#DesktopNavigation .flex-grid .logo {
  flex: 1; }

.site-nav, .site-nav--mobile {
  cursor: default;
  margin: 0; }

.site-nav__item {
  display: inline-block;
  margin: 0; }
  .desktop-nav .site-nav__item:first-child {
    padding-left: 20px; }
  .desktop-nav--right .site-nav__item:last-child {
    padding-right: 20px; }
  .site-nav__item li {
    display: block; }

.site-nav--mobile.text-right {
  margin: 0 -10px 0 0; }

.site-nav__link {
  display: inline-block;
  text-decoration: none;
  padding: 20px 15px;
  white-space: nowrap;
  color: white;
  font-size: 0.75em; }
  .site-nav__link .icon-arrow-down {
    position: relative;
    top: -2px;
    padding-left: 7.5px;
    font-size: 10px; }

.site-nav__dropdown-link .icon-arrow-down {
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 10px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg); }
.site-nav__dropdown-grandchild .site-nav__dropdown-link {
  white-space: normal; }

.site-nav__link--icon {
  padding-left: 7.5px;
  padding-right: 7.5px; }

.site-nav--mobile .site-nav__link {
  display: inline-block; }
.site-nav--mobile .icon {
  font-size: 1.875em; }

.site-nav__dropdown {
  opacity: 0;
  display: block;
  position: absolute;
  width: auto;
  white-space: nowrap;
  left: 0;
  margin: 0;
  z-index: 5;
  pointer-events: none;
  text-align: left; }
  .site-nav__dropdown:before {
    content: ' ';
    position: absolute;
    left: -100vw;
    top: 0;
    z-index: -1;
    display: block;
    height: 100%;
    width: 200vw;
    background: #313131; }
  .site-nav__dropdown li {
    padding: 5px 15px; }
  .site-nav__dropdown a {
    text-align: left;
    color: #fff;
    border-bottom: 1px solid transparent; }
    .site-nav__dropdown a:hover, .site-nav__dropdown a:active {
      border-bottom: 1px solid #fff;
      color: #fff; }
  .site-nav__dropdown.nav-outside {
    left: auto;
    right: 0; }
  .site-nav__dropdown li {
    display: inline-block; }

.site-nav__dropdown-grandchild {
  position: absolute;
  top: -10px;
  left: 100%;
  width: 100%;
  margin: 0;
  z-index: 5;
  opacity: 0;
  pointer-events: none; }
  .site-nav__dropdown-grandchild a {
    background-color: white; }
    .site-nav__dropdown-grandchild a:hover, .site-nav__dropdown-grandchild a:active {
      background-color: #e6e6e6; }
  .site-nav__dropdown-grandchild ul {
    background-color: white;
    padding: 10px 0;
    margin: 0 0 0 2px; }
  .site-nav__dropdown-grandchild.nav-outside {
    left: -100%; }

/*================ Mobile navigation ================*/
.mobile-nav li {
  margin-bottom: 0;
  list-style: none; }

.mobile-nav__search {
  padding: 15px; }

.mobile-nav__item {
  position: relative;
  display: block;
  text-align: center; }
  .mobile-nav > .mobile-nav__item {
    background-color: black; }
  .mobile-nav > .mobile-nav__item:last-child:after {
    display: none; }

.mobile-nav__item a {
  display: block;
  color: white;
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: 500; }
  .mobile-nav__sublist .mobile-nav__item a {
    text-transform: none; }

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

.mobile-nav__item--secondary a {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 10px; }
.mobile-nav__item--secondary:after {
  display: none; }

.mobile-nav__spacer {
  height: 0;
  padding: 5px; }

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

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

.mobile-nav__toggle-open {
  display: block; }
  .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;
  display: none;
  text-transform: none;
  background: #313131;
  position: relative; }
  .mobile-nav__sublist:after {
    content: ' ';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #313131; }
  .mobile-nav__sublist .mobile-nav__item:after {
    top: 0;
    bottom: auto; }
  .mobile-nav__sublist .mobile-nav__link {
    font-weight: normal; }

/*================ Cart bubble for items in cart ================*/
@media screen and (min-width: 769px) {
  .site-nav__link--icon .icon {
    font-size: 1.375em; } }
.cart-link {
  position: relative; }
  .cart-link img {
    max-width: unset; }

.cart-link__bubble {
  display: none; }

.cart-link__bubble--visible {
  display: block;
  position: absolute;
  top: -4px;
  left: 2px;
  width: 100%;
  text-align: center;
  line-height: 1; }

.mobile-navigation {
  width: 100%;
  justify-content: space-between;
  display: none;
  padding: 0 20px;
  background-color: #000; }

.mobile-navigation .mobile-navigation-menu-button {
  height: 30px;
  width: 30px;
  position: relative;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center; }

.mobile-navigation .mobile-navigation-menu-button .burger-icon--bottom,
.mobile-navigation .mobile-navigation-menu-button .burger-icon--mid,
.mobile-navigation .mobile-navigation-menu-button .burger-icon--top {
  position: relative;
  left: auto !important;
  top: auto !important;
  margin-left: auto !important; }

.burger-icon--mid {
  margin-top: 2.5px; }
  @media screen and (max-width: 768px) {
    .burger-icon--mid {
      margin-top: 5px; } }

.burger-icon--bottom {
  margin-top: 5px; }

.shopping-bag {
  height: max-content;
  padding: 5px; }

@media screen and (max-width: 1023px) {
  .mobile-navigation {
    display: flex; } }
@media screen and (max-width: 600px) {
  .mobile-navigation {
    width: 100%;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
    align-content: center; }

  .mobile-navigation .mobile-navigation-menu-button {
    height: 20px;
    width: 20px;
    position: relative;
    /* padding: 5px; */
    display: block;
    margin-left: 5px; }

  .shopping-bag {
    padding: 0; }

  .mobile-navigation .mobile-navigation-menu-button,
  .shopping-bag {
    margin-top: -8px; }

  .mobile-navigation .mobile-navigation-menu-button {
    margin-top: -10px; }

  .logo {
    height: 40px;
    margin-top: -3px; }

  .logo img {
    height: 100%;
    object-fit: contain;
    padding: 0; } }
.drawer--left.js-drawer-open-left {
  overflow: visible !important;
  margin-top: 88px; }
  @media screen and (max-width: 600px) {
    .drawer--left.js-drawer-open-left {
      margin-top: 74px; } }
  @media screen and (min-width: 1024px) {
    .drawer--left.js-drawer-open-left {
      display: none !important; } }

.drawer--left.js-drawer-open-left .drawer__inner {
  z-index: 10;
  padding: 0; }
  .drawer--left.js-drawer-open-left .drawer__inner .mobile-nav {
    margin: 0; }

.drawer {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  padding: 0 15px 15px;
  z-index: 10;
  color: white;
  -webkit-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -moz-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -ms-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  -o-transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1);
  transition: all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1); }
  @media screen and (min-width: 769px) {
    .drawer {
      padding: 0 30px 30px; } }
  .drawer input[type="text"],
  .drawer input[type="email"],
  .drawer input[type="number"],
  .drawer textarea {
    border-color: #343535; }

.drawer--left {
  width: 100vw;
  left: -100vw; }
  .drawer--left.js-drawer-open-left {
    display: block;
    -webkit-transform: translateX(100vw);
    -moz-transform: translateX(100vw);
    -ms-transform: translateX(100vw);
    -o-transform: translateX(100vw);
    transform: translateX(100vw); }
    .lt-ie9 .drawer--left.js-drawer-open-left {
      left: 0; }

.drawer--right {
  width: 300px;
  right: -300px; }
  @media screen and (min-width: 601px) {
    .drawer--right {
      width: 400px;
      right: -400px; } }
  .js-drawer-open-right .drawer--right {
    display: block;
    -webkit-transform: translateX(-300px);
    -moz-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    -o-transform: translateX(-300px);
    transform: translateX(-300px); }
    @media screen and (min-width: 601px) {
      .js-drawer-open-right .drawer--right {
        -webkit-transform: translateX(-400px);
        -moz-transform: translateX(-400px);
        -ms-transform: translateX(-400px);
        -o-transform: translateX(-400px);
        transform: translateX(-400px); } }
    .lt-ie9 .js-drawer-open-right .drawer--right {
      right: 0; }

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

.drawer__title {
  width: 100%; }

.drawer__close {
  width: 1%;
  text-align: center; }

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

.drawer__close--left {
  text-align: left; }
  .drawer__close--left .drawer__close-button {
    right: auto;
    left: -20px; }

/*================ Cart-specific styles ================*/
.supports-csstransforms .drawer--is-loading .drawer__cart {
  min-height: 100px; }
  .supports-csstransforms .drawer--is-loading .drawer__cart:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 60px;
    margin-left: -12px;
    border-radius: 50%;
    border: 3px solid #343535;
    border-top-color: transparent;
    -webkit-animation: spin 1s infinite linear;
    -moz-animation: spin 1s infinite linear;
    -o-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear; }

.drawer {
  z-index: 3000;
  background-color: #FFF;
  color: #000; }
  .drawer .promobar {
    width: calc(100% + 3em);
    margin-left: -1.5em;
    margin-right: -1.5em;
    color: #FFF;
    background: #000;
    padding: 1em 1.5em;
    text-align: center;
    margin-top: -1em;
    margin-bottom: 1em; }
    .drawer .promobar span.close {
      position: absolute;
      font-size: .75em;
      line-height: 2.25;
      right: 1.5em;
      cursor: pointer; }
  .drawer .includes-fitkit {
    margin-top: 1em;
    font-size: .85em;
    width: 99%;
    text-align: right;
    color: #757575; }
  @media screen and (max-width: 600px) {
    .drawer {
      max-width: 100%;
      width: 100%; } }

.drawer--left {
  background-color: #000; }

@media screen and (max-width: 768px) {
  .site-header {
    padding: 0; }
    .site-header .grid--table {
      height: 59px; } }
/*================ Override drawer scrolling to accommodate fixed header/footers ================*/
.drawer {
  overflow: hidden; }

.drawer__inner {
  position: absolute;
  top: 59px;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75em 1.5em 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  @media screen and (min-width: 769px) {
    .drawer__inner {
      padding-left: 1.5em;
      padding-right: 1.5em; } }
  .drawer--has-fixed-footer .drawer__inner {
    overflow: hidden; }

.drawer-left__inner {
  top: 0;
  padding-top: 26px; }

/*================ Drawer Fixed Headers ================*/
.drawer__fixed-header {
  position: absolute;
  top: 0;
  left: 1.5em;
  right: 1.5em;
  height: 59px;
  overflow: visible; }
  @media screen and (min-width: 769px) {
    .drawer__fixed-header {
      left: 1.5em;
      right: 1.5em; } }

.drawer__header {
  display: table;
  width: 100%;
  border-bottom: 1px solid #343535;
  padding: 0.75em 0;
  margin: 0; }

@media screen and (max-width: 768px) {
  .drawer__close-button .icon {
    font-size: 1.375em; } }
@media screen and (min-width: 601px) {
  .drawer__close-button {
    right: 0; } }
@media screen and (min-width: 1200px) {
  .drawer__close-button {
    right: -20px; } }
.product-cta-select {
  position: relative; }
  .product-cta-select:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 25px solid #f7f7f7; }

.product-cta-details {
  text-align: center;
  font-size: 14px;
  padding-bottom: 30px; }

.multiproduct-options__option {
  display: none; }
  .multiproduct-options__option.active {
    display: block; }

.product-single__photos {
  max-width: 80%;
  margin: 0 auto; }

#mainProductPhoto {
  width: 100%; }

.product-single__title {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 15px;
  word-wrap: break-word; }
  @media screen and (min-width: 1460px) {
    .product-single__title {
      font-size: 3.75em; } }

.product-single__toggle {
  font-weight: 500;
  text-transform: uppercase;
  outline: none; }
  @media screen and (max-width: 768px) {
    .product-single__toggle {
      margin: 1em 0; } }
  @media screen and (min-width: 769px) {
    .product-single__toggle {
      display: none; } }
  .product-single__toggle .toggle-hide {
    display: none; }
  .product-single__toggle .toggle-arrow {
    display: inline-block;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s; }
  .product-single__toggle.open .toggle-hide {
    display: inline; }
  .product-single__toggle.open .toggle-view {
    display: none; }
  .product-single__toggle.open .toggle-arrow {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }

.product-single__description {
  font-size: 20px; }
  @media screen and (max-width: 768px) {
    .product-single__description {
      display: none;
      font-size: initial;
      padding-top: 15px; }
      .product-single__description.open {
        display: block; } }

#productDetails.product-single__description {
  margin-top: 1rem; }

.highlights {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px; }
  .highlights > div {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 0 1em 0.75em 0; }
    @media screen and (max-width: 600px) {
      .highlights > div {
        font-size: 13px; } }
    @media screen and (max-width: 1200px) {
      .highlights > div {
        width: 50%; } }
    @media screen and (min-width: 1201px) {
      .highlights > div {
        flex: 1 0 33%; } }

.product-single__variants {
  position: relative; }

.product-single__variant-buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .product-single__variant-buttons .variant-button {
    cursor: pointer;
    border: 1px solid #000;
    padding: 0.5em 1em;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 1em .5em 0;
    text-align: center; }
    @media screen and (max-width: 600px) {
      .product-single__variant-buttons .variant-button {
        flex: auto;
        margin: .5em; } }
    .product-single__variant-buttons .variant-button.active {
      background: #000;
      color: #fff; }

.product-single__variants .face-plates,
.site-header .face-plates {
  width: auto;
  display: flex;
  justify-content: center; }
  @media screen and (min-width: 769px) {
    .product-single__variants .face-plates,
    .site-header .face-plates {
      justify-content: flex-start; } }
  .product-single__variants .face-plates .face-plate-wrap,
  .site-header .face-plates .face-plate-wrap {
    position: relative;
    height: 32px;
    width: 32px;
    margin-left: 8px;
    border-radius: 50%;
    cursor: pointer; }
    @media screen and (max-width: 600px) {
      .product-single__variants .face-plates .face-plate-wrap,
      .site-header .face-plates .face-plate-wrap {
        height: 28px;
        width: 28px;
        margin-left: 12px; } }
    .product-single__variants .face-plates .face-plate-wrap:first-child,
    .site-header .face-plates .face-plate-wrap:first-child {
      margin-left: 0px; }
    .product-single__variants .face-plates .face-plate-wrap img,
    .site-header .face-plates .face-plate-wrap img {
      opacity: 0;
      object-fit: cover;
      transition: all .4s ease-in-out; }
    .product-single__variants .face-plates .face-plate-wrap .action__text--invisible,
    .site-header .face-plates .face-plate-wrap .action__text--invisible {
      opacity: 0; }
    .product-single__variants .face-plates .face-plate-wrap:hover .action__text--invisible,
    .site-header .face-plates .face-plate-wrap:hover .action__text--invisible {
      opacity: 1;
      width: max-content;
      color: #ddd;
      z-index: 5;
      letter-spacing: 0;
      background: #2F3035;
      border-radius: 2px;
      padding: 3px 5px; }

@media screen and (min-width: 769px) {
  .product-single__faceplates {
    justify-content: space-between; } }
.product-single__faceplates .face-plates {
  height: 100%;
  max-height: 50px; }
  .product-single__faceplates .face-plates .face-plate-wrap {
    border: 2px solid #eee; }
    .product-single__faceplates .face-plates .face-plate-wrap.active {
      border-color: #000; }
    .product-single__faceplates .face-plates .face-plate-wrap:hover .action__text--invisible {
      top: -150%; }

.template-product .site-header {
  -webkit-transition: top 0.2s;
  -moz-transition: top 0.2s;
  -ms-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s; }
  .template-product .site-header .site-header__faceplates {
    -webkit-transition: top 0.2s;
    -moz-transition: top 0.2s;
    -ms-transition: top 0.2s;
    -o-transition: top 0.2s;
    transition: top 0.2s; }
  .template-product .site-header.faceplates-active .site-header__faceplates {
    top: 100%; }

.site-header__faceplates {
  position: absolute;
  background-color: #000;
  width: 100%;
  padding: 10px 0;
  z-index: -1;
  top: -35%; }
  .site-header__faceplates .face-plates .face-plate-wrap {
    border: 1px solid #eee; }
    @media screen and (min-width: 321px) {
      .site-header__faceplates .face-plates .face-plate-wrap {
        height: 20px;
        width: 20px; } }
    @media screen and (max-width: 320px) {
      .site-header__faceplates .face-plates .face-plate-wrap {
        height: 17px;
        width: 17px; } }
    .site-header__faceplates .face-plates .face-plate-wrap.active {
      border: 2px solid #A3A3A3; }
    .site-header__faceplates .face-plates .face-plate-wrap .action__text--invisible {
      display: none; }

.site-header__faceplates__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin: 0 auto; }
  @media screen and (max-width: 600px) {
    .site-header__faceplates__inner {
      flex-flow: wrap; }
      .site-header__faceplates__inner .face-plates {
        width: 100%;
        order: 1; } }
  @media screen and (min-width: 601px) {
    .site-header__faceplates__inner {
      padding: 0 30px; }
      .site-header__faceplates__inner .face-plates {
        justify-content: center;
        flex-grow: 1; } }

.site-header__faceplates__title,
.site-header__faceplates__price {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.75em; }

.site-header__faceplates__price {
  display: none; }
  @media screen and (min-width: 480px) {
    .site-header__faceplates__price {
      display: block;
      padding-right: 1em;
      margin-left: auto; } }

.product-single__pricing {
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (min-width: 769px) {
    .product-single__pricing {
      justify-content: flex-start; } }

.product-single__price,
.product-single__price--compare-at,
.affirm-estimate .value {
  font-weight: 300;
  font-size: 1.875em; }
  @media screen and (min-width: 600px) {
    .product-single__price,
    .product-single__price--compare-at,
    .affirm-estimate .value {
      font-size: 2.25em; } }
  .product-single__price:before,
  .product-single__price--compare-at:before,
  .affirm-estimate .value:before {
    font-size: 50%;
    position: relative;
    top: -.5em;
    margin-right: 5px; }
    [data-currency="USD"] .product-single__price:before, [data-currency="USD"]
    .product-single__price--compare-at:before, [data-currency="USD"]
    .affirm-estimate .value:before {
      content: "\0024"; }
    [data-currency="GBP"] .product-single__price:before, [data-currency="GBP"]
    .product-single__price--compare-at:before, [data-currency="GBP"]
    .affirm-estimate .value:before {
      content: "\00A3"; }
  .product-single__price.on-sale,
  .product-single__price--compare-at.on-sale,
  .affirm-estimate .value.on-sale {
    color: #ff2726; }

.product-single__price--compare-at {
  padding-right: .25em;
  display: inline-block;
  text-decoration: line-through;
  color: #979797; }

.product-single__price--grid-compare-at {
  padding-right: .25em;
  display: inline-block;
  text-decoration: line-through;
  color: #979797; }

.card-description .price.on-sale {
  color: #ff2726; }

.product-single__quantity .js-quantity-selector,
.product-single__quantity .js-qty,
.product-single__quantity .ajaxcart__qty {
  display: inline-block; }

.product-single__perks ul li {
  padding-right: 1em;
  font-size: 0.875em; }
  .product-single__perks ul li:last-child {
    padding-right: 0; }
  .product-single__perks ul li img {
    height: 18px;
    width: auto;
    position: relative;
    top: 0.25em;
    margin-right: 0.5em; }

@media screen and (max-width: 768px) {
  .product-single__form {
    justify-content: center; } }

.template-product .main-content {
  background-color: #f7f7f7;
  padding-bottom: 0; }

.product-section {
  padding-top: 30px;
  padding-bottom: 30px; }
  .product-section.full-width {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    width: 100%; }
  .product-section .wrapper {
    max-width: 1460px; }
  @media screen and (min-width: 601px) {
    .product-section {
      padding-top: 60px;
      padding-bottom: 60px;
      padding-left: 30px;
      padding-right: 30px; } }
  @media screen and (max-width: 768px) {
    .product-section.product-section--main {
      text-align: center !important; } }
  .product-section.product-section--main-B {
    padding-bottom: 0;
    background-color: white; }
    @media screen and (max-width: 768px) {
      .product-section.product-section--main-B {
        padding-top: 0; }
        .product-section.product-section--main-B .add_to_bag_button {
          width: 100%; }
        .product-section.product-section--main-B .product-single__pricing {
          justify-content: flex-start; } }
    .product-section.product-section--main-B > .wrapper {
      position: relative; }
    .product-section.product-section--main-B .product-single__faceplates .face-plates {
      justify-content: flex-start; }

.product-section--premium-sound {
  overflow: hidden; }

.product-section__header {
  text-align: center;
  margin-bottom: 30px; }
  @media screen and (min-width: 769px) {
    .product-section__header {
      padding: 0 15%; } }

.product-section__title {
  font-size: 2em;
  line-height: 1.25;
  font-weight: 300;
  text-transform: uppercase; }
  @media screen and (min-width: 1460px) {
    .product-section__title {
      font-size: 3.125em; } }

.product-section__title--underlined {
  font-size: 1.5em;
  line-height: 1.66;
  text-transform: uppercase;
  margin-bottom: 30px; }
  .product-section__title--underlined:after {
    content: '';
    display: block;
    height: 1px;
    background-color: #222323;
    position: relative;
    bottom: -0.25em; }

.product-section__copy {
  font-size: 1em;
  color: #696969; }
  @media screen and (min-width: 1460px) {
    .product-section__copy {
      font-size: 1.25em; } }

@media screen and (min-width: 1024px) {
  .product-section__row {
    padding-left: 60px;
    padding-right: 60px; } }

@media screen and (min-width: 1024px) {
  .product-section__column {
    padding-top: 60px; } }

@media screen and (min-width: 1024px) {
  .product-section__column--short {
    padding-top: 30px; } }

@media screen and (min-width: 769px) {
  .template-product .wd-100 {
    width: 100% !important; } }
.template-product .specs-col-3 {
  column-count: 1; }
  @media screen and (min-width: 769px) {
    .template-product .specs-col-3 {
      column-count: 3; } }
.template-product .box-contents {
  text-align: center; }
  .template-product .box-contents .content-detail {
    display: flex;
    align-items: flex-end; }
    @media only screen and (max-width: 768px) {
      .template-product .box-contents .content-detail {
        align-items: center;
        flex-direction: column; } }
    .template-product .box-contents .content-detail .medium-up--one-half {
      margin: 0; }
      .template-product .box-contents .content-detail .medium-up--one-half .grid__item {
        padding-left: 0; }

.product-section__grid-item .product-section__grid-thumbnail {
  width: 50%;
  height: auto; }
.product-section__grid-item .product-section__grid-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 0.01em; }
  @media screen and (min-width: 1460px) {
    .product-section__grid-item .product-section__grid-title {
      font-size: 1.5625em; } }

.product-section__graphic.premium-sound {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; }
.product-section__graphic.custom-sound-profiles {
  max-width: 275px;
  height: auto;
  display: block;
  margin: 0 auto; }
  @media screen and (min-width: 769px) {
    .product-section__graphic.custom-sound-profiles {
      margin-bottom: -160px; } }

@media screen and (min-width: 769px) {
  #shopify-section-earphones-premium-sound .grid, #shopify-section-earphones-premium-sound .grid--rev, #shopify-section-earphones-premium-sound .grid--full {
    padding: 0 3em; } }

.product-section--bgd-image .img-wrap {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 0;
  padding-left: 30px;
  padding-bottom: 150%;
  margin-top: -30px;
  margin-bottom: -30px; }
  @media screen and (min-width: 601px) {
    .product-section--bgd-image .img-wrap {
      padding-bottom: 53%;
      margin-top: -60px;
      margin-bottom: -60px;
      margin-left: -30px;
      margin-right: -30px; } }
.product-section--bgd-image .text-wrap {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%; }
  @media screen and (min-width: 769px) {
    .product-section--bgd-image .text-wrap {
      bottom: 30px;
      padding: 0 30px; } }
  @media screen and (min-width: 1200px) {
    .product-section--bgd-image .text-wrap {
      bottom: 60px; } }
.product-section--bgd-image .product-section__title {
  color: #fff; }
.product-section--bgd-image .product-section__copy {
  color: #fff; }

.product-section--testimonials {
  padding-bottom: 75px; }
  .product-section--testimonials .testimonials-slider {
    text-align: center; }
  .product-section--testimonials .testimonial-slide {
    color: #6a6a6a; }
  .product-section--testimonials .testimonial-slide__quote {
    font-size: 1.25em;
    margin-bottom: 30px; }
    @media screen and (min-width: 601px) {
      .product-section--testimonials .testimonial-slide__quote {
        padding: 0 15%; } }
    @media screen and (min-width: 1460px) {
      .product-section--testimonials .testimonial-slide__quote {
        font-size: 2.5em; } }
  .product-section--testimonials .testimonial-slide__attribution {
    font-size: 0.75em;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase; }
    @media screen and (min-width: 1460px) {
      .product-section--testimonials .testimonial-slide__attribution {
        font-size: 1.5em; } }

.product--image {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: contain;
  left: 0; }
  .product--image.lazyload {
    opacity: 0; }
  .is-sold-out .product--image {
    opacity: 0.5; }

.mobile-product-single__meta,
.mobile-product-single__meta--wrapper {
  display: none; }

@media only screen and (max-width: 768px) {
  .mobile-product-single__meta--wrapper {
    display: block; }

  .mobile-product-single__meta {
    display: flex;
    flex-direction: column; }

  .mobile-product-single__meta .variant-row .variant-row-wrap .colored-variant-wrap {
    position: relative;
    height: 100px;
    width: 100px;
    margin: 0 5px;
    border-radius: 50%; } }
.mobile-product-single__meta--wrapper {
  position: fixed;
  bottom: 0;
  z-index: 2000;
  left: 0;
  width: 100%; }
  .mobile-product-single__meta--wrapper .inner {
    position: relative;
    background: #fff; }

.mobile-product-single__meta .inner .top-row, .mobile-product-single__meta .inner .bottom-row {
  display: flex;
  justify-content: space-evenly; }
  .mobile-product-single__meta .inner .top-row .left, .mobile-product-single__meta .inner .bottom-row .left {
    width: 65%; }
    @media screen and (min-width: 600px) {
      .mobile-product-single__meta .inner .top-row .left, .mobile-product-single__meta .inner .bottom-row .left {
        width: 50%; } }
  .mobile-product-single__meta .inner .top-row .right, .mobile-product-single__meta .inner .bottom-row .right {
    width: 35%; }
    @media screen and (min-width: 600px) {
      .mobile-product-single__meta .inner .top-row .right, .mobile-product-single__meta .inner .bottom-row .right {
        width: 50%; } }
.mobile-product-single__meta .inner .top-row {
  padding: 0; }
  .mobile-product-single__meta .inner .top-row .left, .mobile-product-single__meta .inner .top-row .right {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center; }

.mobile-product-single__meta .inner .top-row .left p {
  margin: 0; }

.mobile-product-single__meta .inner .bottom-row .left {
  display: flex;
  justify-content: space-around; }

.mobile-product-single__meta .inner .top-row .left .face-plate-wrap.current-variant-preview {
  position: relative;
  height: 21px;
  width: 21px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #eee; }

.mobile-product-single__meta .inner .top-row .left .face-plate-wrap.current-variant-preview img {
  opacity: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: contain;
  transition: all .4s ease-in-out; }

.mobile-product-single__meta .inner .bottom-row .right {
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.mobile-product-single__meta .inner .bottom-row {
  padding: 0;
  margin: 0; }

.mobile-product-single__meta .inner .bottom-row .left,
.mobile-product-single__meta .inner .top-row .left,
.mobile-product-single__meta .inner .top-row .right {
  padding: 15px;
  text-align: center; }

.mobile-product-single__meta .inner .bottom-row .left h1, .mobile-product-single__meta .inner .bottom-row .left .h1 {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.15em; }

.model-title {
  font-size: 44px;
  font-weight: 300; }

.mobile-product-single__meta .variant-row {
  width: auto;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 20px;
  transform: translateY(100%);
  background: #fff;
  transition: all .4s ease-in-out;
  border-top: 1px solid #ddd; }

.mobile-product-single__meta .variant-row.slide-up {
  transform: translateY(0); }

.mobile-product-single__meta .face-plates {
  width: auto;
  display: flex;
  height: 100%;
  justify-content: space-between;
  /* max-height: 50px; */
  padding: 20px;
  transform: translateY(100%);
  background: #fff;
  transition: all .4s ease-in-out;
  border-top: 1px solid #ddd; }

.mobile-product-single__meta .face-plates.slide-up {
  transform: translateY(0); }

.mobile-product-single__meta .face-plates .face-plate-wrap {
  position: relative;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 2px solid #eee; }

.mobile-product-single__meta .face-plates .face-plate-wrap img {
  opacity: 0;
  object-fit: cover;
  transition: all .4s ease-in-out; }

.mobile-product-single__meta .variant-row .variant-row-wrap .colored-variant-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all .4s ease-in-out; }

@media only screen and (max-width: 480px) {
  .mobile-product-single__meta .variant-row .variant-row-wrap .colored-variant-wrap {
    position: relative;
    height: 70px;
    width: 70px;
    margin: 0 5px;
    border-radius: 50%; }

  .mobile-product-single__meta .inner .bottom-row .left h1, .mobile-product-single__meta .inner .bottom-row .left .h1 {
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    font-size: 18px; } }
@media only screen and (max-width: 320px) {
  .mobile-product-single__meta .inner .bottom-row .left h1, .mobile-product-single__meta .inner .bottom-row .left .h1 {
    font-size: 18px;
    line-height: 1.75; } }
/*-- YOTPO --*/
#shopify-section-yotpo-reviews {
  padding-bottom: 2em; }

.yotpo.bottomLine {
  margin: 0.5em 0; }

@media screen and (max-width: 768px) {
  .multiproduct-options__A .yotpo-bottomline .yotpo-stars {
    margin: 0 auto; } }
@media screen and (min-width: 769px) {
  .yotpo-bottomline .yotpo-stars {
    margin-right: .5em; } }

@media only screen and (max-width: 768px) {
  .yotpo.bottomLine .pull-left {
    float: none !important;
    text-align: center !important; } }
.yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .yotpo-icon-star,
.yotpo .yotpo-bottomline .yotpo-icon-star,
.yotpo .yotpo-bottomline .yotpo-icon-half-star,
.yotpo .yotpo-bottomline .yotpo-icon-empty-star,
.yotpo .yotpo-review .yotpo-header .yotpo-review-stars .yotpo-icon,
.yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .yotpo-icon-star,
.yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .yotpo-icon-half-star,
.yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .yotpo-icon-empty-star {
  color: #000 !important; }

.shopify-section-handcraft,
.shopify-section-story {
  max-width: 1024px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: auto; }
  .shopify-section-handcraft .image-thumb img,
  .shopify-section-story .image-thumb img {
    max-width: 100%; }
  .shopify-section-handcraft .title,
  .shopify-section-story .title {
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: #000000;
    text-transform: uppercase; }
  .shopify-section-handcraft .content,
  .shopify-section-story .content {
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #a1a1a1; }

@media screen and (max-width: 480px) {
  .shopify-section-handcraft,
  .shopify-section-story {
    text-align: center; }
    .shopify-section-handcraft .grid-collage,
    .shopify-section-story .grid-collage {
      display: block;
      padding-left: 30px;
      padding-right: 30px;
      margin-left: 0 !important; }
    .shopify-section-handcraft .image-thumb,
    .shopify-section-story .image-thumb {
      padding: 0 30px;
      margin-bottom: 15px; }
      .shopify-section-handcraft .image-thumb.image-thumb--desktop,
      .shopify-section-story .image-thumb.image-thumb--desktop {
        display: none; }
      .shopify-section-handcraft .image-thumb.image-thumb--mobile,
      .shopify-section-story .image-thumb.image-thumb--mobile {
        display: block; }
    .shopify-section-handcraft .title,
    .shopify-section-story .title {
      font-size: 30px; }
    .shopify-section-handcraft .content,
    .shopify-section-story .content {
      font-size: 15px;
      line-height: 1.5; } }
@media screen and (min-width: 481px) {
  .shopify-section-handcraft,
  .shopify-section-story {
    max-width: 481px; }
    .shopify-section-handcraft .grid-collage,
    .shopify-section-story .grid-collage {
      display: flex;
      width: 100%;
      margin: auto; }
    .shopify-section-handcraft .image-thumb.image-thumb--left,
    .shopify-section-story .image-thumb.image-thumb--left {
      padding-right: 30px; }
    .shopify-section-handcraft .image-thumb.image-thumb--right,
    .shopify-section-story .image-thumb.image-thumb--right {
      padding-left: 30px;
      text-align: right; }
    .shopify-section-handcraft .image-thumb.image-thumb--mobile,
    .shopify-section-story .image-thumb.image-thumb--mobile {
      display: none; }
    .shopify-section-handcraft .image-thumb.image-thumb--desktop,
    .shopify-section-story .image-thumb.image-thumb--desktop {
      display: block; }
    .shopify-section-handcraft .title,
    .shopify-section-story .title {
      font-size: 30px;
      text-align: left; }
    .shopify-section-handcraft .content,
    .shopify-section-story .content {
      font-size: 15px; } }
@media screen and (min-width: 601px) {
  .shopify-section-handcraft,
  .shopify-section-story {
    max-width: 481px; } }
@media screen and (min-width: 769px) {
  .shopify-section-handcraft,
  .shopify-section-story {
    max-width: 769px; }
    .shopify-section-handcraft .title,
    .shopify-section-story .title {
      font-size: 40px; }
    .shopify-section-handcraft .content,
    .shopify-section-story .content {
      font-size: 20px; } }
@media screen and (min-width: 1024px) {
  .shopify-section-handcraft {
    max-width: 1024px; } }
.article {
  margin-bottom: -15px; }

.article__featured-image-wrapper {
  position: relative; }
  .no-js .article__featured-image-wrapper {
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px; }

.article__featured-image {
  display: block;
  margin: 0 auto;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0; }

.article__featured-image-link {
  display: block;
  margin-bottom: 30px; }

.date {
  font-style: italic;
  display: inline-block;
  line-height: 1.7;
  margin-bottom: 5px; }
  @media screen and (min-width: 769px) {
    .date {
      margin-bottom: 0; } }
  .section-header .date:last-child {
    margin-bottom: 40px; }

body.template-collection {
  background: #efefef; }

@media only screen and (max-width: 768px) {
  #CollectionSection .section-header {
    margin-top: 100px;
    margin-bottom: 0; } }
@media only screen and (max-width: 480px) {
  #CollectionSection .section-header {
    margin-top: 200px;
    margin-bottom: 0; } }
#CollectionSection h1, #CollectionSection .h1 {
  font-size: 40px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #000000;
  text-transform: uppercase;
  text-align: center; }
  @media screen and (max-width: 480px) {
    #CollectionSection h1, #CollectionSection .h1 {
      font-size: 23px !important;
      width: 100%; } }
@media screen and (max-width: 480px) {
  #CollectionSection .collection-details p {
    font-size: 14px !important;
    padding: 0 10px !important; } }

.collection-grid__item-title {
  font-style: italic;
  font-size: 1.625em;
  line-height: 1.1; }
  @media screen and (min-width: 601px) {
    .collection-grid__item-title {
      font-size: 2.125em; } }

.cart__header-labels {
  letter-spacing: 0.1em;
  text-transform: uppercase; }

.cart__row {
  position: relative;
  margin-bottom: 30px; }
  .cart__row:first-child {
    border-bottom: 1px solid #1c1d1d;
    padding-bottom: 15px; }
  .cart__row:last-child {
    border-top: 1px solid #1c1d1d;
    padding-top: 15px; }
  .cart__row .js-qty, .cart__row .ajaxcart__qty {
    margin: 0 auto; }
  .cart__row .btn, .cart__row .btn--white, .cart__row .btn--outline-white, .cart__row .btn--outline, .cart__row .gwbutton, .cart__row .btn--secondary,
  .cart__row .btn--secondary {
    margin-bottom: 15px;
    margin-left: 7px;
    min-width: 150px;
    margin-right: 0px; }
    @media screen and (max-width: 600px) {
      .cart__row .btn, .cart__row .btn--white, .cart__row .btn--outline-white, .cart__row .btn--outline, .cart__row .gwbutton, .cart__row .btn--secondary,
      .cart__row .btn--secondary {
        width: 100%;
        display: block;
        margin-left: 0px;
        height: 44px;
        font-size: initial;
        line-height: 1; } }

.cart__row--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .cart__row--table .grid__item {
    display: table-cell;
    vertical-align: middle;
    float: none; }

@media screen and (min-width: 769px) {
  .cart__row--table-large {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .cart__row--table-large .grid__item {
      display: table-cell;
      vertical-align: middle;
      float: none; } }
.cart__image {
  display: block; }
  .cart__image img {
    width: 100%;
    display: block; }
  @media screen and (max-width: 768px) {
    .cart__image {
      margin-bottom: 15px; } }

.cart__product-name {
  margin-bottom: 0; }

.cart__product-qty {
  text-align: center;
  margin: 0 auto;
  max-width: 80px; }

.cart__discount {
  padding-top: 3px; }

.cart__note {
  margin: 0; }
  @media screen and (min-width: 769px) {
    .cart__note {
      padding-right: 30px; } }

.cart__product-meta {
  margin-bottom: 0; }

.additional_checkout_buttons {
  margin-left: -10px; }
  @media screen and (max-width: 600px) {
    .additional_checkout_buttons {
      margin-left: 0px; } }
  .additional_checkout_buttons > *:not(script) {
    padding: 15px 0 0 15px;
    vertical-align: top;
    line-height: 1; }
    @media screen and (max-width: 600px) {
      .additional_checkout_buttons > *:not(script) {
        padding: 15px 0 0 5px; } }
    .additional_checkout_buttons > *:not(script):first-child, .additional_checkout_buttons > *:not(script):empty {
      padding-left: 0px; }

.cart--no-cookies .cart--continue-browsing {
  display: none; }

.cart--no-cookies .cart--empty-message {
  display: none; }

.cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cookie-message {
    display: block; }

.cart__row .cart__product-meta a {
  text-transform: uppercase;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  font-size: 0.85em;
  margin: 1em 0;
  display: inline-block; }
  .cart__row .cart__product-meta a:hover {
    opacity: 0.8; }
.cart__row .includes-fitkit {
  border-top: 1px solid #DDD;
  padding-top: 1em; }

#CartDrawer .drawer__title {
  text-transform: uppercase;
  font-weight: 200;
  font-size: 1.5em; }
#CartDrawer .drawer__close-button {
  border: 0; }
#CartDrawer .ajaxcart__price {
  font-size: 1em; }
#CartDrawer .ajaxcart__row .ajaxcart__qty-remove {
  display: none;
  padding: 0;
  border: 0;
  text-transform: none;
  text-decoration: underline;
  text-align: left; }
#CartDrawer .ajaxcart__subtotal {
  font-weight: 300;
  font-style: normal;
  font-family: "akzidenz-grotesk"; }
#CartDrawer #showCartNote {
  display: inline-block; }
#CartDrawer .additional-checkout-buttons {
  padding-top: 1em; }
  @media screen and (min-width: 501px) {
    #CartDrawer .additional-checkout-buttons .additional-checkout-button {
      height: 44px;
      margin: 1em 0 0 0;
      width: 100% !important; } }

#CartSpecialInstructions {
  min-height: 0;
  font-size: 1em;
  font-style: normal;
  margin-top: .5em; }

.template-password {
  height: 100vh;
  text-align: center; }

.password-page__wrapper {
  display: table;
  height: 100%;
  width: 100%;
  background-image: url(//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/password-page-background.jpg?v=129873446965807520001592940403);
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff; }
  .password-page__wrapper h1, .password-page__wrapper .h1,
  .password-page__wrapper h2,
  .password-page__wrapper .h2,
  .password-page__wrapper h3,
  .password-page__wrapper .h3,
  .password-page__wrapper h4,
  .password-page__wrapper .h4,
  .password-page__wrapper h5,
  .password-page__wrapper .h5,
  .password-page__wrapper h6,
  .password-page__wrapper .h6 {
    color: #ffffff; }
  .password-page__wrapper a {
    color: inherit; }
  .password-page__wrapper hr, .password-page__wrapper .hr--small, .password-page__wrapper .hr--medium, .password-page__wrapper .hr--large {
    border-color: inherit; }
  .password-page__wrapper .social-sharing.clean a {
    color: inherit;
    background: transparent; }

.password-header-section {
  display: table-row; }

.password-page__header {
  display: table-cell;
  height: 1px; }

.password-page__header__inner {
  padding: 15px 30px; }

.password-page__logo {
  margin-top: 90px; }
  .password-page__logo .logo {
    max-width: 100%; }

.password-page__main {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.password-page__main__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 30px; }

.password-page__hero {
  font-size: 2.625em;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: optimizeLegibility; }
  @media screen and (min-width: 601px) {
    .password-page__hero {
      font-size: 3.75em; } }
  @media screen and (min-width: 769px) {
    .password-page__hero {
      font-size: 4em; } }

.password-page__message {
  font-style: italic;
  font-size: 120%; }
  .password-page__message img {
    max-width: 100%; }

.password-page__hr {
  margin: 30px auto; }

.password-page__message,
.password-page__login-form,
.password-page__signup-form {
  max-width: 500px;
  margin: 0 auto; }

.password-page__login-form {
  text-align: center;
  padding: 30px; }

@media screen and (min-width: 600px) {
  .password-page__login-form,
  .password-page__signup-form {
    padding: 0 30px; } }
.password-page__login-form .input-group,
.password-page__signup-form .input-group {
  width: 100%; }
.password-page__login-form .errors ul,
.password-page__signup-form .errors ul {
  list-style-type: none;
  margin-left: 0; }

.password-page__signup-form__heading {
  margin-bottom: 0.8em; }

.lt-ie9 .template-password .newsletter__submit-text--small,
.lt-ie9 .template-password .password-page__login-form__submit-text--small {
  display: none !important; }

.password-page__social-sharing {
  margin-top: 30px; }

.password-page__social-sharing__heading {
  margin-bottom: 0; }

.password-login,
.admin-login {
  margin-top: 15px; }
  .password-login a:hover,
  .admin-login a:hover {
    color: inherit; }

.password-login {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8em;
  line-height: 12.8px; }

.lock-icon-svg {
  width: 12.8px;
  height: 12.8px;
  display: inline-block;
  vertical-align: baseline;
  /* Hiding the SVG logo in IE8 */ }
  .lock-icon-svg path {
    fill: currentColor; }
  .lt-ie9 .lock-icon-svg {
    display: none; }

.admin-login {
  font-size: 95%; }

.password-page__footer {
  display: table-row;
  height: 1px; }

.password-page__footer_inner {
  display: table-cell;
  vertical-align: bottom;
  padding: 30px;
  line-height: 24px;
  font-size: 95%; }

.shopify-link {
  color: inherit; }
  .shopify-link:hover {
    color: inherit; }

.shopify-logo-svg {
  width: 82.28571px;
  height: 24px;
  display: inline-block;
  line-height: 0;
  vertical-align: top;
  /* Hiding the SVG logo in IE8, we show the word 'Shopify' instead */ }
  .shopify-logo-svg path {
    fill: currentColor; }
  .lt-ie9 .shopify-logo-svg {
    display: none; }

.ajaxcart__inner {
  margin-bottom: 30px; }

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

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

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

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

span.ajaxcart__product-meta {
  font-size: 0.85em; }

.ajaxcart__product-name--wrapper {
  margin-bottom: 5px; }

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

.ajaxcart__discount {
  padding-top: 3px; }

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

.js-qty__adjust, .ajaxcart__qty-adjust {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border: 0 none;
  padding: 0 8px;
  background: none;
  text-align: center;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }
  .js-qty__adjust .icon, .ajaxcart__qty-adjust .icon {
    font-size: 8px;
    vertical-align: middle; }
  .js-qty__adjust:hover, .ajaxcart__qty-adjust:hover {
    background-color: #343535; }
  .js-qty__adjust:active, .ajaxcart__qty-adjust:active {
    background-color: #1b1b1b; }

.js-qty__adjust--plus, .ajaxcart__qty--plus {
  right: 0;
  border-left: 1px solid #343535; }

.js-qty__adjust--minus, .ajaxcart__qty--minus {
  left: 0;
  border-right: 1px solid #343535; }

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

.ajaxcart__qty-adjust {
  z-index: 1; }
  .ajaxcart__qty-adjust:hover {
    background-color: #343535;
    color: white; }
  .ajaxcart__qty-adjust:active {
    background-color: #1b1b1b;
    color: white; }

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

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

.ajaxcart__product-name,
.cart__product-name {
  font-style: italic; }

.ajaxcart__product-name {
  font-size: 1.0625em;
  line-height: 1.3; }

.ajaxcart__price,
.cart__price,
.cart__subtotal {
  letter-spacing: 0.1em;
  text-transform: uppercase; }

.ajaxcart__price--strikethrough,
.cart__price--strikethrough {
  text-decoration: line-through; }

.ajaxcart__discount,
.cart__discount {
  display: block;
  font-style: italic; }

.ajaxcart__qty-num[type="text"] {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-size: 0.8125em; }

.ajaxcart__savings,
.cart__savings {
  font-style: italic;
  font-size: 1.25em; }

.ajaxcart__inner--has-fixed-footer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.75em 1.5em 0;
  bottom: 130px;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  @media screen and (min-width: 769px) {
    .ajaxcart__inner--has-fixed-footer {
      padding: 0.75em 1.5em 0; } }

.ajaxcart__footer {
  border-top: 1px solid var(--colorDrawerBorder);
  padding-top: 0.75em; }

.ajaxcart__footer--fixed {
  position: absolute;
  bottom: 0;
  left: 1.5em;
  right: 1.5em;
  min-height: 130px;
  padding-bottom: 1.5em; }
  @media screen and (max-width: 600px) {
    .ajaxcart__footer--fixed {
      padding-bottom: 1.5em; } }
  @media screen and (min-width: 769px) {
    .ajaxcart__footer--fixed {
      left: 1.5em;
      right: 1.5em; } }

/*================ Drawer Quantity Selectors ================*/
.ajaxcart__qty {
  max-width: 95px;
  font-size: 1.3em; }
  .ajaxcart__qty input[type="text"] {
    padding: 0 20px; }
  .ajaxcart__qty .js-qty__adjust, .ajaxcart__qty .ajaxcart__qty-adjust,
  .ajaxcart__qty .ajaxcart__qty-adjust {
    padding: 0 9px 1px;
    line-height: 1;
    background-color: #EEEEEE;
    border: 1px solid #343535; }

.js-qty, .ajaxcart__qty {
  background-color: #f7f7f7;
  color: #1c1d1d; }

.js-qty__adjust:hover, .ajaxcart__qty-adjust:hover {
  background-color: #eaeaea;
  color: #1c1d1d; }

.js-qty__adjust--minus, .ajaxcart__qty--minus,
.js-qty__adjust--plus,
.ajaxcart__qty--plus {
  border-color: #eaeaea;
  color: #1c1d1d; }

/*================ Cart item styles ================*/
.ajaxcart__product:last-child .ajaxcart__row {
  border-bottom: 0 none;
  padding-bottom: 0; }

.ajaxcart__row {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #343535; }
  @media screen and (min-width: 601px) {
    .ajaxcart__row {
      padding-bottom: 1.5em;
      margin-bottom: 1.5em; } }

.ajaxcart__note {
  font-style: normal;
  font-weight: 300;
  opacity: 1; }

.section .title {
  font-size: 40px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 20px; }
.section .description {
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.25;
  letter-spacing: 0.8px;
  text-align: center;
  color: #000000; }
.section.section--padded {
  padding: 4.5em 0; }

.section-header {
  margin-bottom: 30px; }
  .section-header .section-header__title {
    letter-spacing: 0; }
  @media screen and (min-width: 601px) {
    .section-header {
      margin-bottom: 50px; } }

.section-header--404 {
  margin-bottom: 0;
  padding: 80px 0; }

@media screen and (min-width: 769px) {
  .section-header {
    display: table;
    table-layout: fixed;
    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; } }
#HomePageSlideShow {
  height: 100%;
  position: relative; }

.hero__slide .show-on-mobile {
  display: none; }

.hero__subtitle {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: white;
  margin: 20px 0; }

.slide--0 .hero__title {
  font-size: 5vmin !important;
  color: white; }

.hero-link__out {
  font-weight: 500 !important;
  letter-spacing: 0px;
  margin-top: 20px; }

.sub_2 {
  font-size: 14px !important;
  color: white; }

@media only screen and (max-width: 425px) {
  .hero__title {
    font-size: 2em; } }
@media screen and (max-width: 768px) {
  .background.section {
    width: 100%;
    min-height: max-content;
    height: auto; }

  .background.section.slide--0 .hero__text-content {
    margin-bottom: 5vh; }

  .background.section:not(.slide--0) .content-wrapper .container .hero__text-content, .background.section:not(.slide--6) .content-wrapper .container .hero__text-content {
    padding: 0 2.2rem 2.2rem; } }
.background.section:not(.slide--0) {
  width: 100%;
  min-height: 800px;
  height: 100%;
  top: 0;
  left: 0;
  animation: 1s linear;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.background.section.slide--0 {
  position: relative;
  width: 100%;
  min-height: auto;
  height: 100%; }

.background.section.slide--0 .hero__text-content {
  margin-bottom: 10vh; }

.background.section.slide--0::-webkit-scrollbar {
  display: none; }

.background.section.slide--1 {
  background-image: url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/01_Background-min-2019.jpg?v=71462824330098084971592940421"); }

.background.section.slide--2 {
  background-image: url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/02_Background-min.jpg?v=104750428823868503551592940410"); }

.background.section.slide--3 {
  background-image: url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/03_Background-min.jpg?v=43377736187662414451592940412"); }

.background.section.slide--4 {
  background-image: url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/04_Background-min.jpg?v=71460440151697092651592496927"); }

.background.section.slide--5 {
  background-image: url("//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/05_Background-min.jpg?v=48278305711423531451592940429"); }

.background.section.slide--6 {
  background: #fff; }

.background.section.slide--6 .banner {
  height: 350px;
  margin-top: 100px; }

.background.section.slide--6 .banner img {
  display: block;
  margin: auto;
  height: 100%;
  object-fit: contain; }

.background.section.slide--6 .content-wrapper.slideshow__overlay .container {
  margin-top: 30px;
  padding-top: 0; }

.background.section.slide--6 .hero__title {
  font-size: 40px !important;
  text-align: center; }

.background.section.slide--6 .hero__text-content {
  transform: translateY(0vh);
  padding-left: 0; }

.hero__subtitle.sub_2 {
  text-align: center;
  font-size: 20px !important;
  font-weight: 400; }

.background.section:not(.slide--0) .content-wrapper .container .hero__text-content {
  /* opacity: 0; */
  transition: all .5s ease-out;
  font-size: calc(1rem + 1vw);
  text-transform: uppercase;
  -webkit-transform-origin: top;
  transform-origin: top;
  line-height: 1.2;
  color: #fff;
  font-weight: 300;
  letter-spacing: 2px; }

.background.section:not(.slide--6) .content-wrapper .container .hero__text-content,
.background.section:not(.slide--0) .content-wrapper .container .hero__text-content {
  padding-left: 8.5vw; }

.slide--6 .hero__text-content {
  transform: translateY(0vh);
  padding-left: 0 !important; }

.background.section:not(.slide--0).leaving .content-wrapper .container .hero__text-content {
  transform: translateY(-100%); }

.background.section:not(.slide--0).next.entering-up .content-wrapper .container .hero__text-content {
  transform: translateY(100%); }

.background.section.fp-completely.active {
  z-index: 20; }

.background.section.fp-completely.active .content-wrapper .container .hero__text-content {
  margin-top: 0;
  opacity: 1;
  position: relative;
  transform: translateY(0vh); }

.hero__slide .hero__title {
  font-size: 30px; }

.slider__text-line {
  overflow: hidden; }

.slider__inner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0; }

.content-wrapper.slideshow__overlay .slider-bullet {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  transition: opacity .1s ease-in-out;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 0; }

.slider-bullet__text.js-slider-bullet__text {
  opacity: 1; }

.content-wrapper.slideshow__overlay .slider-bullet .slider-bullet__text {
  color: #fff;
  font-family: "akzidenz-grotesk";
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 1;
  margin-left: 1rem; }

.content-wrapper.slideshow__overlay .slider-bullet .slider-bullet__line {
  height: 13px;
  width: 8vw;
  position: relative; }

.content-wrapper.slideshow__overlay .slider-bullet .slider-bullet__line::after {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: all .2s ease-in-out;
  content: ''; }

.content-wrapper.slideshow__overlay .container {
  padding: 260px 0 0;
  height: 100%;
  width: 100%; }

.background.section.slide-6 .content-wrapper.slideshow__overlay .container {
  align-items: center;
  padding: 260px 0 0; }

.hero__slide.active.fp-completely .content-wrapper.slideshow__overlay .slider-bullet .slider-bullet__text.js-slider-bullet__text {
  opacity: 1;
  transition: all .1s ease-in-out; }

.hero__slide.active.fp-completely .content-wrapper.slideshow__overlay .slider-bullet .slider-bullet__line::after {
  width: 100%; }

.how-it-works-p {
  margin: 25px 0; }

.slider__sub-text a,
.how-it-works a {
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  font-weight: bolder;
  /* width: max-content; */
  color: #fff;
  font-size: 14px; }

.slider__sub-text p {
  font-size: 20px;
  text-transform: none;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  width: 50%;
  margin-top: 20px;
  letter-spacing: normal; }

.how-it-works ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  max-width: 400px;
  margin: 20px 0; }

.how-it-works ul li {
  color: white;
  width: 25%;
  font-size: 15px;
  text-transform: none;
  font-weight: 300;
  font-style: normal;
  min-width: 200px;
  align-content: stretch;
  margin-top: 12px;
  align-items: end;
  font-stretch: normal;
  line-height: 1.7;
  letter-spacing: normal;
  display: flex; }

.how-it-works ul li img {
  height: 25px;
  width: 25px;
  vertical-align: middle;
  width: 25px;
  margin-right: 10px;
  margin-top: 5px; }

.label {
  display: inline-flex;
  align-items: center;
  cursor: pointer; }

.label-text {
  margin-left: 10px; }

.toggle {
  isolation: isolate;
  position: relative;
  width: 100px;
  height: 40px;
  border-radius: 20px;
  background: #d6d6d6;
  box-shadow: inset 1px 1px 1px #000000;
  overflow: hidden; }

.toggle-inner {
  z-index: 2;
  position: absolute;
  top: 2px;
  left: 4px;
  height: 36px;
  width: 95px;
  border-radius: 20px;
  overflow: hidden; }

.active-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 200%;
  background: none;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.05s linear 0.17s; }

.toggle-state {
  display: none; }

.indicator {
  height: 100%;
  width: 200%;
  background: white;
  border-radius: 20px;
  transform: translate3d(-75%, 0, 0);
  box-shadow: 1px 3px 1px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #a7a5a5;
  transition: transform 0.35s cubic-bezier(0.85, 0.05, 0.18, 1.35); }

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; }

.content-wrapper {
  width: 100%;
  height: 100%;
  color: #fff;
  text-transform: uppercase;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1);
  transition: all 1.7s cubic-bezier(0.22, 0.44, 0, 1); }

.content-title {
  font-size: 4vh;
  line-height: 1.4; }

#title {
  font-size: 4vh;
  color: #666;
  margin: 20px 0 0 0; }

.toggle-state:checked ~ .active-bg {
  transform: translate3d(-50%, 0, 0); }

.toggle-state:checked ~ .toggle-inner .indicator {
  transform: translate3d(25%, 0, 0); }

.hear-the-difference {
  display: flex;
  width: 50%;
  justify-content: flex-start; }

.hear-the-difference .play-button {
  height: 40px;
  width: 40px;
  margin-right: 20px;
  position: relative; }

.circle {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px; }

.circle .background {
  fill: transparent;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  stroke: #fff;
  transition: all 200ms ease; }

.circle .foreground {
  fill: transparent;
  stroke-dasharray: 377;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  stroke-dashoffset: 377;
  stroke: #1abc9c;
  transform-origin: 50% 50%;
  transform: rotate(-270deg);
  transition: all 800ms ease; }

.circle:hover {
  cursor: pointer; }

.circle:hover .background {
  stroke: transparent; }

.circle:hover .foreground {
  stroke-dashoffset: 0;
  transform: rotate(-90deg); }

.download-app-icons {
  margin-top: 20px;
  display: flex; }

.download-app-icons a {
  border: none;
  pointer: none !important;
  width: max-content;
  height: 38px; }

.download-app-icons a img {
  height: 100%;
  object-fit: contain;
  pointer: none !important; }

.download-app-icons a:nth-of-type(2) img,
.download-app-icons a:nth-of-type(3) img {
  margin-left: 20px; }

.how-it-works-p {
  margin-top: 20px;
  letter-spacing: 0px; }

@media screen and (min-width: 1280px) {
  .background.section.slide--0 {
    position: relative;
    width: 100%;
    min-height: auto;
    height: 90vh; }

  .background.section:not(.slide--0) {
    width: 100%;
    min-height: 700px;
    height: 100%;
    top: 0;
    left: 0;
    animation: 1s linear;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }

  .slider__sub-text p {
    font-size: 20px;
    width: 48%;
    max-width: 650px; } }
@media screen and (max-width: 1055px) {
  .background.section.slide--2 {
    background-position: bottom left; }

  .background.section.slide--3 {
    background-position: center; } }
@media screen and (max-width: 900px) {
  .background.section.slide--6 .hero__title {
    font-size: 35px !important; }

  .background.section.slide--6 .hero__subtitle.sub_2 {
    font-size: 20px !important; } }
@media screen and (max-width: 768px) {
  .background.section:not(.slide--0) {
    min-height: auto; }

  .background.section .content-wrapper.slideshow__overlay {
    min-height: 55vh;
    position: relative; }

  .content-wrapper.slideshow__overlay .container {
    padding: 100px 0 0; }

  .content-wrapper.slideshow__overlay .slider-bullet {
    top: 50px; }

  .content-wrapper.slideshow__overlay .slider-bullet .slider-bullet__line {
    height: 13px;
    width: 4vw;
    position: relative; }

  .hero__subtitle {
    font-size: 16px; }

  .slider__sub-text p {
    width: 100%; }

  .how-it-works ul {
    flex-direction: column; }

  .how-it-works ul li {
    width: 100%; }

  .hear-the-difference {
    width: 60%; }

  .circle .foreground {
    stroke: none; }

  .background.section.slide--3.hero-link__out {
    margin-top: 20px; }

  .hero__title br {
    display: block; }

  .background.section.slide--6 .hero__subtitle.sub_2 {
    font-size: 14px !important;
    font-weight: 500; }

  .hero__slide.slide--3 .demonstration-only {
    margin: 30px 0; }

  .background.section.slide--1 {
    background-image: none;
    background-color: #000; }

  .background.section.slide--2 {
    background-image: none;
    background-color: #000; }

  .background.section.slide--3 {
    background-image: none;
    background-color: #000; }

  .background.section.slide--4 {
    background-image: none;
    background-color: #000; }

  .background.section.slide--5 {
    background-image: none;
    background-color: #000; }

  .hero__slide .show-on-mobile {
    display: block;
    height: auto;
    width: 100%; }

  .background.section.slide--2 .hero__text-content {
    margin-top: 0; }

  .background.section.slide--0 .hero__text-content {
    margin-bottom: 5vh; }

  .background.section.slide--6 .banner {
    height: 250px;
    margin-top: 100px; } }
@media screen and (max-width: 500px) {
  body.isChrome #HomePageSlideShow .hero-slideshow {
    transform: translate3d(0px, 0px, 0px) !important;
    -webkit-transform: translate3d(0, 0, 0); }

  .background.section.slide--6 .banner {
    margin-top: 0; }

  .background.section.slide--0 {
    position: relative;
    padding-top: 0; }

  .background.section.slide--0 .hero__text-content {
    margin-bottom: 0; }

  .content-wrapper.slideshow__overlay .slider-bullet {
    top: 70px; }

  .content-wrapper.slideshow__overlay .slider-bullet .slider-bullet__text {
    margin-left: 1rem; }

  .content-wrapper.slideshow__overlay .slider-bullet .slider-bullet__line {
    height: 6px;
    width: 5vw;
    position: relative; }

  .content-wrapper.slideshow__overlay .container {
    padding-top: 100px; }

  .slide--0 .hero__subtitle {
    font-size: 11px !important;
    font-weight: 500; }

  .slider__text-line {
    overflow: hidden;
    font-size: 22px; }

  .slider__text-line br {
    display: none; }

  .slider__sub-text p {
    font-size: 16px;
    text-transform: none;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    width: 100%; }

  .background.section.slide--1 {
    background-image: none;
    background-color: #000; }

  .background.section.slide--2 {
    background-image: none;
    background-color: #000; }

  .background.section.slide--3 {
    background-image: none;
    background-color: #000; }

  .background.section.slide--4 {
    background-image: none;
    background-color: #000; }

  .background.section.slide--5 {
    background-image: none;
    background-color: #000; }

  .background.section:not(.slide--6) .content-wrapper .container .hero__text-content,
  .background.section:not(.slide--0) .content-wrapper .container .hero__text-content {
    max-width: 100vw; }

  .background.section:not(.slide--0) .content-wrapper .container .hero__text-content,
  .background.section:not(.slide--6) .content-wrapper .container .hero__text-content {
    padding: 0 2rem 0 2.2rem; }

  .background.section.slide--6 .content-wrapper.slideshow__overlay {
    padding-top: 105px; }

  .background.section.slide--6 .hero__subtitle.sub_2 {
    font-size: 11px !important; }

  .how-it-works ul li {
    width: 100%;
    font-size: 13px;
    margin-top: 0;
    line-height: 2.5; }

  .how-it-works ul li img {
    height: 20px;
    width: 20px; }

  .hear-the-difference {
    width: 100%; }

  .download-app-icons {
    flex-wrap: wrap;
    justify-content: space-between; }

  .download-app-icons a {
    height: 40px;
    width: max-content;
    margin-top: 20px; }

  .download-app-icons a:nth-of-type(3) img {
    margin-left: 0; }

  .background.section.slide--6 .banner {
    height: 250px;
    margin-top: 0; }

  .background.section.slide--6 .content-wrapper .container .hero__text-content {
    padding: 0 !important; }

  .background.section.slide--6 .container {
    height: min-content !important;
    overflow: visible;
    padding-top: 30px;
    margin-top: 0; }

  .background.section.slide--6 .hero__title {
    font-size: 30px !important;
    text-align: center; }

  .hero__subtitle.sub_2 {
    text-align: center;
    font-size: 15px !important;
    font-weight: 500; } }
form.cart .production-notice {
  max-width: 400px;
  margin: 1em 0 1em auto; }

.production-notice {
  border: 1px solid;
  padding: 1em 1em 0;
  margin: 1em 0; }
  .production-notice p {
    font-size: 0.9375em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1em;
    text-align: center; }

.image-text-section {
  padding: 40px 20px; }
  .image-text-section .wrapper {
    max-width: 1250px; }
    .image-text-section .wrapper .grid, .image-text-section .wrapper .grid--rev, .image-text-section .wrapper .grid--full {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .image-text-section .wrapper .grid.image-right, .image-text-section .wrapper .image-right.grid--rev, .image-text-section .wrapper .image-right.grid--full {
        -webkit-flex-direction: row-reverse;
        -moz-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse; }
      @media screen and (max-width: 767px) {
        .image-text-section .wrapper .grid, .image-text-section .wrapper .grid--rev, .image-text-section .wrapper .grid--full {
          margin: 0; } }
      .image-text-section .wrapper .grid .grid__item, .image-text-section .wrapper .grid--rev .grid__item, .image-text-section .wrapper .grid--full .grid__item {
        position: relative; }
        @media screen and (max-width: 767px) {
          .image-text-section .wrapper .grid .grid__item, .image-text-section .wrapper .grid--rev .grid__item, .image-text-section .wrapper .grid--full .grid__item {
            padding-right: 15px; } }
    .image-text-section .wrapper .text-wrapper {
      max-width: 550px;
      position: absolute;
      top: 50%;
      left: 0%;
      padding-left: 30px;
      transform: translate(0%, -50%); }
      @media screen and (max-width: 767px) {
        .image-text-section .wrapper .text-wrapper {
          position: relative;
          padding-left: 0; } }
      .image-text-section .wrapper .text-wrapper .image-text-section__title {
        font-size: 40px;
        font-weight: 500;
        line-height: 44px; }
        @media screen and (max-width: 767px) {
          .image-text-section .wrapper .text-wrapper .image-text-section__title {
            font-size: 30px;
            line-height: 36px; } }
      .image-text-section .wrapper .text-wrapper .image-text-section__copy {
        max-width: 460px; }
      .image-text-section .wrapper .text-wrapper .image-text-section__kicker {
        font-size: 16px;
        font-weight: 500;
        line-height: 16px;
        margin-top: 10px;
        margin-bottom: 10px; }
    .image-text-section .wrapper .button-wrapper .second_btn {
      margin-left: 25px; }
    .image-text-section .wrapper .button-wrapper .btn--white {
      background: transparent;
      border: solid 1px white;
      color: white; }
    .image-text-section .wrapper .button-wrapper .btn--underline {
      background: transparent;
      border: none;
      text-decoration: underline;
      color: #222323; }
    .image-text-section .wrapper .button-wrapper .mobile-label {
      display: none; }
      @media screen and (max-width: 767px) {
        .image-text-section .wrapper .button-wrapper .mobile-label {
          display: block; } }
    .image-text-section .wrapper .button-wrapper .desktop-label {
      display: block; }
      @media screen and (max-width: 767px) {
        .image-text-section .wrapper .button-wrapper .desktop-label {
          display: none; } }
    @media screen and (max-width: 767px) {
      .image-text-section .wrapper .button-wrapper .btn, .image-text-section .wrapper .button-wrapper .btn--white, .image-text-section .wrapper .button-wrapper .btn--outline-white, .image-text-section .wrapper .button-wrapper .btn--outline, .image-text-section .wrapper .button-wrapper .gwbutton, .image-text-section .wrapper .button-wrapper .btn--secondary {
        font-size: 14px;
        padding: 10px 20px; } }
    .image-text-section .wrapper .image-wrapper .mobile-image {
      display: none; }
      @media screen and (max-width: 767px) {
        .image-text-section .wrapper .image-wrapper .mobile-image {
          display: block; } }
    .image-text-section .wrapper .image-wrapper .desktop-image {
      display: block; }
      @media screen and (max-width: 767px) {
        .image-text-section .wrapper .image-wrapper .desktop-image {
          display: none; } }
    @media screen and (min-width: 767px) {
      .image-text-section .wrapper.first .text-wrapper {
        position: relative;
        display: flex;
        width: 100%;
        flex-direction: column;
        flex: 1;
        margin-left: auto;
        margin-right: auto;
        padding-left: 30px;
        padding-right: 30px;
        min-height: 500px;
        max-width: 500px;
        justify-content: center; } }
    @media screen and (max-width: 767px) {
      .image-text-section .wrapper.first {
        padding: 0; }
        .image-text-section .wrapper.first .image-wrapper {
          padding: 0; }
        .image-text-section .wrapper.first .text-wrapper .image-text-section__kicker {
          display: inline-block;
          margin-top: 0;
          margin-bottom: 10px; }
        .image-text-section .wrapper.first .button-wrapper a {
          font-size: 14px; }
        .image-text-section .wrapper.first .button-wrapper .btn--underline {
          font-size: 16px; } }
    @media screen and (max-width: 767px) {
      .image-text-section .wrapper.third .text-wrapper {
        margin-top: 30px; } }
    @media screen and (min-width: 767px) {
      .image-text-section .wrapper.fourth .text-wrapper {
        padding-left: 60px;
        max-width: 610px; }
        .image-text-section .wrapper.fourth .text-wrapper .image-text-section__copy {
          max-width: 550px; } }
    @media screen and (max-width: 767px) {
      .image-text-section .wrapper.fourth .text-wrapper {
        margin-top: 30px; }
        .image-text-section .wrapper.fourth .text-wrapper .image-text-section__kicker {
          font-size: 14px; } }
    @media screen and (max-width: 767px) {
      .image-text-section .wrapper.fifth .text-wrapper {
        margin-top: 20px; } }

.image-text-overlay .promo-hero {
  background-size: contain; }
  @media screen and (max-width: 767px) {
    .image-text-overlay .promo-hero {
      background-size: cover; } }
  .image-text-overlay .promo-hero .promo-card {
    width: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-right: 0;
    text-align: center; }
    .image-text-overlay .promo-hero .promo-card .promo-title {
      text-transform: none;
      font-size: 40px;
      line-height: 44px;
      color: black;
      text-shadow: none;
      font-weight: 500; }
    .image-text-overlay .promo-hero .promo-card .promo-cta .btn, .image-text-overlay .promo-hero .promo-card .promo-cta .btn--white, .image-text-overlay .promo-hero .promo-card .promo-cta .btn--outline-white, .image-text-overlay .promo-hero .promo-card .promo-cta .btn--outline, .image-text-overlay .promo-hero .promo-card .promo-cta .gwbutton, .image-text-overlay .promo-hero .promo-card .promo-cta .btn--secondary {
      background-color: transparent;
      color: #222323;
      border: solid 1px #222323; }
      .image-text-overlay .promo-hero .promo-card .promo-cta .btn:hover, .image-text-overlay .promo-hero .promo-card .promo-cta .btn--white:hover, .image-text-overlay .promo-hero .promo-card .promo-cta .btn--outline-white:hover, .image-text-overlay .promo-hero .promo-card .promo-cta .btn--outline:hover, .image-text-overlay .promo-hero .promo-card .promo-cta .gwbutton:hover, .image-text-overlay .promo-hero .promo-card .promo-cta .btn--secondary:hover {
        color: white;
        background-color: #222323; }

.promo-image-banner .mobile-image {
  display: none; }
  @media screen and (max-width: 767px) {
    .promo-image-banner .mobile-image {
      display: block; } }
.promo-image-banner .desktop-image {
  display: block; }
  @media screen and (max-width: 767px) {
    .promo-image-banner .desktop-image {
      display: none; } }

.hero--full-height .slick-list,
.hero--full-height .slick-track {
  height: 100%; }
.hero--full-height .hero__image {
  height: -webkit-fill-available;
  object-position: top;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover"; }
  .lt-ie9 .hero--full-height .hero__image {
    background-position: center center; }

.hero .slick-prev,
.hero .slick-next {
  top: 0;
  height: 100%;
  margin-top: 0;
  width: 40px; }
.hero .slick-prev {
  left: 0; }
.hero .slick-next {
  right: 0; }

.no-js .hero__image {
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px; }

.hero__image-no-js {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 100vh;
  min-height: 550px;
  opacity: 1; }

.hero__slide {
  position: relative;
  height: 100%; }

.hero__image {
  position: relative;
  opacity: 0; }
  .slick-initialized .hero__image {
    opacity: 1;
    -webkit-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -moz-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -o-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  .hero__image img {
    display: block;
    width: 100%; }

.hero__slide--hidden {
  visibility: hidden; }

.supports-touch .hero__slide--hidden {
  visibility: visible; }

.hero__text-content .slick-dots {
  position: static; }

/*================ Extra specificity to override Timber defaults ================*/
.hero__slide .hero__title {
  margin-bottom: 0;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 300; }
.hero__slide .hero__subtitle {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px; }

/*================ Font sizes ================*/
.hero__slide .hero__title {
  font-size: 3.125em; }
.hero__slide .hero__subtitle {
  font-size: 0.9375em; }
@media screen and (min-width: 601px) {
  .hero__slide .hero__title {
    font-size: 3.75em; }
  .hero__slide .hero__subtitle {
    font-size: 1.125em; } }
@media screen and (min-width: 769px) {
  .hero__slide .hero__title {
    font-size: 4em; } }

/*================ Hero header ================*/
.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 2; }

.template-index .header-wrapper {
  opacity: 0;
  z-index: 2;
  -webkit-animation: fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87) forwards;
  -moz-animation: fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87) forwards;
  -o-animation: fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87) forwards;
  animation: fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87) forwards; }
  .supports-no-cssanimations .template-index .header-wrapper {
    opacity: 1;
    -webkit-animation: fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -moz-animation: fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -o-animation: fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    animation: fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87); }

.header-container {
  position: relative;
  z-index: 2; }

.header-wrapper--over-hero {
  position: relative; }

/*================ Module | Collection images at top of templates ================*/
.collection-hero {
  margin-top: -35px;
  margin-bottom: 35px;
  overflow: hidden; }
  @media screen and (min-width: 769px) {
    .collection-hero {
      margin-top: -40px;
      margin-bottom: 55px; } }
  @media screen and (max-width: 768px) {
    .collection-hero {
      margin-bottom: 60px; } }

.collection-hero__image-wrapper {
  position: relative; }
  .no-js .collection-hero__image-wrapper {
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px; }

.collection-hero__image-wrapper:after {
  padding-bottom: 70%;
  content: '';
  display: block;
  height: 0;
  width: 100%; }
  @media screen and (min-width: 769px) {
    .collection-hero__image-wrapper:after {
      padding-bottom: 45%; } }

.collection-hero__image {
  position: absolute;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  font-family: "object-fit: cover";
  opacity: 0; }
  .collection-hero__image.is-init {
    opacity: 1;
    -webkit-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -moz-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -o-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }

.collection-hero__image-no-js {
  padding-bottom: 70%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 1; }
  @media screen and (min-width: 769px) {
    .collection-hero__image-no-js {
      padding-bottom: 45%; } }

.filter-dropdown__label {
  margin-right: 0.3em; }

.hero__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.hero__mobile-fallback {
  display: none;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center left; }

.hero--video-launch {
  position: relative; }
  .hero--video-launch .hero__text-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    transition: all .5s;
    text-align: center;
    max-width: 70%;
    width: 100%; }
    @media screen and (max-width: 600px) {
      .hero--video-launch .hero__text-wrap {
        top: 57.5%;
        max-width: 95%; } }
  .hero--video-launch .hero__title {
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 3.5em;
    line-height: 1; }
    @media screen and (max-width: 600px) {
      .hero--video-launch .hero__title {
        font-size: 1.5em;
        margin-bottom: 0; } }
    @media screen and (min-width: 768px) {
      .hero--video-launch .hero__title span:first-of-type {
        text-align: left; } }
    @media screen and (min-width: 768px) {
      .hero--video-launch .hero__title span:last-of-type {
        text-align: right; } }
  .hero--video-launch .hero__subtitle-small {
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2em; }
    @media screen and (max-width: 600px) {
      .hero--video-launch .hero__subtitle-small {
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 12px; } }
  .hero--video-launch .play_button {
    display: inline-block;
    width: 70px;
    margin-bottom: 15px; }
    @media screen and (max-width: 600px) {
      .hero--video-launch .play_button {
        width: 50px;
        margin-bottom: 5px; } }
  .hero--video-launch.touch-detected .hero__mobile-fallback {
    display: block; }
  .hero--video-launch.touch-detected .video-wrapper-bgd {
    display: none; }

#shopify-section-product-hero {
  margin-bottom: 5em; }
  #shopify-section-product-hero .wrapper {
    max-width: 1460px;
    margin: 0 auto; }
  #shopify-section-product-hero .hero-image {
    position: relative;
    max-height: 85vh;
    overflow: hidden; }
    #shopify-section-product-hero .hero-image img {
      height: auto;
      width: 100%; }
  #shopify-section-product-hero .hero-wrapper {
    position: absolute;
    max-width: 1460px;
    width: 100%;
    padding: 4em 0;
    top: 60%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    text-align: center; }
    #shopify-section-product-hero .hero-wrapper h1, #shopify-section-product-hero .hero-wrapper .h1 {
      font-size: 40px; }
    #shopify-section-product-hero .hero-wrapper p {
      font-weight: 500; }
    #shopify-section-product-hero .hero-wrapper.text-left {
      width: 60%;
      bottom: 0;
      top: auto;
      padding: 4em;
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      text-align: left; }
      #shopify-section-product-hero .hero-wrapper.text-left p {
        font-weight: 300; }
      #shopify-section-product-hero .hero-wrapper.text-left .title {
        text-align: left; }
  @media only screen and (max-width: 600px) {
    #shopify-section-product-hero {
      margin-bottom: 0; }
      #shopify-section-product-hero .highlights {
        display: none; }
      #shopify-section-product-hero .hero-image {
        margin-top: 95px;
        max-height: 70vh; }
      #shopify-section-product-hero .hero-wrapper {
        padding: 2em 0 0;
        width: calc(100% - 2em);
        text-align: center; }
        #shopify-section-product-hero .hero-wrapper h1, #shopify-section-product-hero .hero-wrapper .h1 {
          font-size: 30px; }
        #shopify-section-product-hero .hero-wrapper.text-left {
          padding: 2em;
          width: calc(100% - 4em);
          text-align: left; }
          #shopify-section-product-hero .hero-wrapper.text-left .title {
            text-align: center !important; }
        #shopify-section-product-hero .hero-wrapper .hero-text {
          text-align: center; } }
  @media only screen and (min-width: 601px) and (max-width: 786px) {
    #shopify-section-product-hero {
      padding-top: 78px; }
      #shopify-section-product-hero .hero-wrapper {
        padding: 2em 0;
        width: calc(100% - 2em); }
        #shopify-section-product-hero .hero-wrapper.text-left {
          padding: 2em;
          width: 75%; } }
  @media only screen and (min-width: 769px) and (max-width: 1000px) {
    #shopify-section-product-hero {
      padding-top: 78px; } }

#shopify-section-product-hero-live .hero-bgd {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
#shopify-section-product-hero-live .hero-text {
  position: absolute;
  width: 100%; }
#shopify-section-product-hero-live .hero-text__title {
  font-weight: 700; }
#shopify-section-product-hero-live .hero-text__kicker {
  line-height: 1; }
@media screen and (max-width: 480px) {
  #shopify-section-product-hero-live .hero-bgd {
    height: 65vh;
    min-height: 350px; }
  #shopify-section-product-hero-live .hero-text {
    text-align: center;
    top: 30px; }
  #shopify-section-product-hero-live .hero-text__kicker {
    font-size: 30px; } }
@media screen and (min-width: 481px) {
  #shopify-section-product-hero-live .hero-bgd {
    height: 50vh;
    min-height: 375px; }
  #shopify-section-product-hero-live .hero-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  #shopify-section-product-hero-live .hero-text__inner {
    width: 60%; }
  #shopify-section-product-hero-live .hero-text__kicker {
    font-size: 40px; } }
@media screen and (min-width: 1024px) {
  #shopify-section-product-hero-live .hero-text__inner {
    width: 50%; }
  #shopify-section-product-hero-live .hero-text__kicker {
    font-size: 50px; } }

.video-container {
  max-width: 1050px;
  margin: 0 auto; }

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

.video-wrapper-bgd {
  position: relative;
  overflow: hidden; }
  .video-wrapper-bgd iframe {
    width: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .video-wrapper-bgd iframe.video-bgd--desktop {
      min-height: 100vh;
      height: 56.25vw;
      /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
      min-width: 177.77vh;
      /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */ }
    .video-wrapper-bgd iframe.video-bgd--mobile {
      height: 100vw;
      /* square aspect ratio */
      min-width: 100vh;
      /* square aspect ratio */ }

@media only screen and (max-width: 480px) {
  .video-wrapper-bgd--has-mobile .video-bgd--desktop {
    display: none; } }
@media only screen and (min-width: 481px) {
  .video-wrapper-bgd--has-mobile .video-bgd--mobile {
    display: none; } }
#shopify-section-vimeo-video .section {
  padding: 4.5em 0; }

#shopify-section-vimeo-video .video-button {
  display: block;
  text-align: center; }

#shopify-section-vimeo-video .btn, #shopify-section-vimeo-video .btn--white, #shopify-section-vimeo-video .btn--outline-white, #shopify-section-vimeo-video .btn--outline, #shopify-section-vimeo-video .gwbutton, #shopify-section-vimeo-video .btn--secondary {
  margin-top: 0px; }

@media only screen and (max-width: 480px) {
  #shopify-section-vimeo-video .title {
    display: block;
    margin: auto;
    margin-bottom: 25px;
    font-size: 30px !important; }

  #shopify-section-vimeo-video .section {
    padding: 2.5em 0; }

  #shopify-section-vimeo-video .description {
    max-width: 285px;
    display: block;
    margin: auto;
    color: #a1a1a1;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center; }

  #shopify-section-vimeo-video .video-title {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px; } }
#shopify-section-header-fit-kit {
  margin-bottom: 5em; }

#title-fitkit-product .title {
  color: #ffffff !important;
  font-size: 60px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center; }

#title-fitkit-product .subtitle {
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
  text-transform: inherit;
  margin-bottom: 52px; }

#title-fitkit-product .hero-image {
  background-image: url("https://cdn.shopify.com/s/files/1/0058/1576/3001/files/fitkit_hero_1920x1080_3bc8865d-4d61-4f84-b56d-375f946cc108.jpg?2620515310569098948");
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }

#title-fitkit-product .hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 100%; }

#title-fitkit-product.white {
  color: #ffffff !important; }

#title-fitkit-product subtitle {
  margin-bottom: 35px; }

@media only screen and (max-width: 768px) {
  #title-fitkit-product .hero-image {
    background-image: url(https://cdn.shopify.com/s/files/1/0058/1576/3001/files/fitkit_hero_1920x1080_3bc8865d-4d61-4f84-b56d-375f946cc108.jpg?2620515310569098948);
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; }

  #title-fitkit-product .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    min-width: 350px;
    width: 80%; }

  #title-fitkit-product .subtitle {
    font-weight: 300 !important; }

  #title-fitkit-product .title {
    color: #ffffff !important;
    font-size: 50px !important;
    text-align: center !important; }

  #shopify-section-fitkit-steps .title {
    font-size: 40px !important;
    text-align: center !important; }

  #steps-div .title {
    text-align: center !important;
    font-size: 30px !important; } }
@media only screen and (max-width: 425px) {
  #title-fitkit-product .hero-image {
    max-height: 750px;
    background-image: url("https://cdn.shopify.com/s/files/1/0058/1576/3001/files/fitkit_hero_780x1334_6e1ad823-5564-4878-8e2d-88de742bd71e.jpg?2620515310569098948"); }

  #title-fitkit-product .hero-text {
    min-width: 325px;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -60%); }

  #title-fitkit-product .title {
    font-size: 24px !important; }

  #title-fitkit-product .subtitle {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: #ffffff;
    text-transform: inherit; } }
#shopify-section-fitkit-video {
  padding-top: 4.5em; }

#shopify-section-fitkit-video .grid, #shopify-section-fitkit-video .grid--rev, #shopify-section-fitkit-video .grid--full {
  margin-left: 0px !important; }

#shopify-section-fitkit-video .grid-collage {
  display: flex;
  width: 100%;
  padding: 3.5em 0.5em 3.5em 0.5em; }

#shopify-section-fitkit-video .grid__item {
  flex: 1;
  padding: 16px;
  text-align: center; }

#shopify-section-fitkit-video .video-title {
  text-transform: uppercase;
  font-weight: 500; }

#shopify-section-fitkit-video .video-content {
  color: #a1a1a1 !important; }

#shopify-section-fitkit-video .video-button {
  display: block;
  text-align: center; }

#steps-div .description {
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: 0.6px;
  text-align: center;
  color: #a1a1a1;
  text-transform: inherit; }

#steps-under {
  max-width: 1050px;
  margin: auto;
  display: block; }

@media only screen and (max-width: 480px) {
  #shopify-section-fitkit-video .title {
    display: block;
    margin: auto;
    margin-bottom: 25px;
    font-size: 30px !important; }

  #shopify-section-fitkit-video {
    padding-top: 2.5em;
    padding-bottom: 2.5em; }

  #shopify-section-fitkit-video .description {
    max-width: 285px;
    display: block;
    margin: auto;
    color: #a1a1a1;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center; }

  #shopify-section-fitkit-video .grid-collage {
    display: block;
    padding: 1.5em 3.5em 1.5em 3.5em; }

  #shopify-section-fitkit-video .video-title {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px; }

  #shopify-section-fitkit-video .video-content {
    font-size: 12px; } }
body.template-collection #mobile_buy_button, body.template-cart #mobile_buy_button, body.template-product #mobile_buy_button {
  display: none; }
body.template-collection #shopify-section-header .wrapper, body.template-cart #shopify-section-header .wrapper, body.template-product #shopify-section-header .wrapper {
  padding: 0px 20px 0px;
  z-index: 15;
  background: #000;
  color: #fff !important; }

/* SOLVE SCROLL ISSUE ON CUSTOM PRODUCT APP */
body.template-product {
  overflow: visible !important;
  height: auto !important; }

/*================ Modules | Theme product collage grid ================*/
.grid__row-separator {
  clear: both;
  width: 100%; }

.lt-ie9 .grid-uniform .grid-product {
  display: inline-block;
  margin-left: -4px;
  float: none; }

.grid-collage {
  margin-bottom: -13px; }

@media screen and (max-width: 600px) {
  .grid-collage .grid-product__image-link {
    height: 310px; } }
.grid-collage .grid-product__image-link {
  vertical-align: middle;
  display: table-cell; }

@media screen and (min-width: 601px) {
  .large--two-thirds.reverse {
    float: right; }

  .grid-collage .large--two-thirds {
    clear: both; }
    .grid-collage .large--two-thirds.reverse {
      clear: none; }
  .grid-collage .grid__item.large--one-third {
    clear: none; }
  .grid-collage .large--one-half {
    float: left;
    display: inline-block; }

  .grid-collage .large--one-third {
    clear: inherit; }

  .grid-collage .grid-product__image-link {
    height: 670px; }

  .grid-collage .large--one-half .grid-product__image-link {
    height: 310px; }

  .grid-collage .large--two-thirds .grid-product__image-link {
    height: 544px; }

  .grid-collage .large--one-third .grid-product__image-link {
    height: 230px; } }
/*================ Modules | Theme collection collage grid ================*/
.collection-grid {
  margin-bottom: -15px; }
  @media screen and (min-width: 601px) {
    .collection-grid {
      margin-bottom: -30px; } }

.collection-collage__item {
  position: relative;
  margin-bottom: 15px;
  height: 450px; }
  @media screen and (max-width: 600px) {
    .collection-collage__item.one-whole {
      height: 190px; }
    .collection-collage__item.one-half {
      height: 130px; } }
  @media screen and (min-width: 601px) {
    .collection-collage__item {
      margin-bottom: 30px; } }

@media screen and (min-width: 601px) {
  .collection-collage__item.large--one-half {
    height: 310px; }
  .collection-collage__item.large--one-third {
    height: 280px; } }
.helper-section .grid-product__image-link, .helper .grid-product__image-link {
  background-color: transparent; }

.helper-section .grid-product__image-wrapper {
  height: 275px !important; }

#earphones .product-card-grid, .template-collection-pro .product-card-grid {
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  align-items: unset;
  max-width: 1200px; }
  @media only screen and (max-width: 480px) {
    #earphones .product-card-grid, .template-collection-pro .product-card-grid {
      flex-direction: column;
      align-items: center; } }
  #earphones .product-card-grid .grid-product__wrapper, .template-collection-pro .product-card-grid .grid-product__wrapper {
    height: 100%; }
#earphones .grid-product-item, .template-collection-pro .grid-product-item {
  width: 430px;
  padding: 10px; }
  @media only screen and (max-width: 480px) {
    #earphones .grid-product-item, .template-collection-pro .grid-product-item {
      width: auto;
      margin-top: 20px; } }
  @media only screen and (min-width: 1200px) {
    #earphones .grid-product-item, .template-collection-pro .grid-product-item {
      width: 25%; } }
  #earphones .grid-product-item:nth-of-type(1), .template-collection-pro .grid-product-item:nth-of-type(1) {
    margin-top: 0; }
  #earphones .grid-product-item.is-sold-out, .template-collection-pro .grid-product-item.is-sold-out {
    display: none; }
#earphones .card, .template-collection-pro .card {
  position: relative;
  margin: 0;
  height: 100%;
  overflow: hidden;
  padding: 0;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.057);
  transition: 0.2s ease-in; }
  @media only screen and (min-width: 1200px) {
    #earphones .card, .template-collection-pro .card {
      grid-template-rows: 1.8fr 1.9fr .5fr;
      min-height: auto; } }
  @media only screen and (max-width: 480px) {
    #earphones .card, .template-collection-pro .card {
      margin: 0;
      grid-template-columns: 330px;
      grid-template-rows: 4fr 2fr .5fr; } }
  @media only screen and (max-width: 320px) {
    #earphones .card, .template-collection-pro .card {
      grid-template-columns: 300px; } }
  #earphones .card .plusThree, .template-collection-pro .card .plusThree {
    font-weight: 300;
    font-size: 14px;
    cursor: pointer; }
  #earphones .card .card-content, .template-collection-pro .card .card-content {
    position: relative;
    overflow: hidden;
    margin-bottom: auto;
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%; }
    #earphones .card .card-content .top-bar, .template-collection-pro .card .card-content .top-bar {
      width: 100%;
      position: relative;
      top: 0;
      z-index: 1;
      left: 0;
      padding: 20px;
      justify-content: center;
      display: block;
      text-align: center;
      font-size: 14px; }
      #earphones .card .card-content .top-bar span.model-title, .template-collection-pro .card .card-content .top-bar span.model-title {
        font-size: 36px;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: -1px; }
        @media only screen and (min-width: 1200px) {
          #earphones .card .card-content .top-bar span.model-title, .template-collection-pro .card .card-content .top-bar span.model-title {
            font-size: 25px;
            text-align: center; } }
        @media only screen and (max-width: 480px) {
          #earphones .card .card-content .top-bar span.model-title, .template-collection-pro .card .card-content .top-bar span.model-title {
            font-size: 32px; } }
        @media only screen and (max-width: 480px) {
          #earphones .card .card-content .top-bar span.model-title b, .template-collection-pro .card .card-content .top-bar span.model-title b {
            font-size: 20px; } }
      #earphones .card .card-content .top-bar img, .template-collection-pro .card .card-content .top-bar img {
        display: inline-block;
        height: 60px;
        margin: 0;
        width: 60px;
        position: relative;
        object-fit: contain;
        background-color: transparent; }
  #earphones .card .card-thumbnail, .template-collection-pro .card .card-thumbnail {
    margin-top: auto; }
    #earphones .card .card-thumbnail .img, .template-collection-pro .card .card-thumbnail .img {
      width: 100%;
      position: relative;
      top: 0;
      left: 0;
      height: auto;
      display: block; }
      #earphones .card .card-thumbnail .img img, .template-collection-pro .card .card-thumbnail .img img {
        max-width: 100%;
        max-height: 225px;
        height: 100%;
        margin-top: 0;
        object-position: bottom;
        background-color: #fff;
        filter: contrast(1.1);
        position: relative; }
        @media only screen and (max-width: 480px) {
          #earphones .card .card-thumbnail .img img, .template-collection-pro .card .card-thumbnail .img img {
            padding: 30px;
            object-position: center;
            object-fit: scale-down; } }
      #earphones .card .card-thumbnail .img .drivers-placeholder, .template-collection-pro .card .card-thumbnail .img .drivers-placeholder {
        position: absolute;
        bottom: 0;
        right: 15px; }
        #earphones .card .card-thumbnail .img .drivers-placeholder img, .template-collection-pro .card .card-thumbnail .img .drivers-placeholder img {
          max-width: 60px;
          filter: none;
          background: rgba(0, 0, 0, 0);
          max-height: 60px;
          padding: 0 !important; }
  #earphones .card .card-description, .template-collection-pro .card .card-description {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: auto;
    margin-bottom: 20px; }
    #earphones .card .card-description .top-row, .template-collection-pro .card .card-description .top-row {
      padding: 5px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      flex-direction: column;
      font-weight: 400;
      font-size: 14px;
      position: relative;
      z-index: 1;
      letter-spacing: 0.1em;
      width: calc(100%-20px); }
      @media only screen and (min-width: 1200px) {
        #earphones .card .card-description .top-row, .template-collection-pro .card .card-description .top-row {
          display: block; } }
      @media only screen and (max-width: 480px) {
        #earphones .card .card-description .top-row, .template-collection-pro .card .card-description .top-row {
          line-height: 1;
          flex-direction: column;
          align-items: center; } }
      #earphones .card .card-description .top-row .price, .template-collection-pro .card .card-description .top-row .price {
        text-transform: capitalize;
        text-align: center;
        font-size: 16px; }
        #earphones .card .card-description .top-row .price .on-sale, .template-collection-pro .card .card-description .top-row .price .on-sale {
          color: #ff2726; }
        #earphones .card .card-description .top-row .price b, .template-collection-pro .card .card-description .top-row .price b {
          font-size: 20px;
          letter-spacing: 1px; }
          @media only screen and (max-width: 320px) {
            #earphones .card .card-description .top-row .price b, .template-collection-pro .card .card-description .top-row .price b {
              font-size: 14px; } }
      #earphones .card .card-description .top-row .face-plates, .template-collection-pro .card .card-description .top-row .face-plates {
        width: auto;
        display: flex;
        height: 100%;
        justify-content: center;
        margin: 0 auto;
        align-items: center;
        max-height: 50px;
        max-width: 188px;
        transition: all .4s ease-in-out;
        overflow: hidden; }
        #earphones .card .card-description .top-row .face-plates.slide-out, .template-collection-pro .card .card-description .top-row .face-plates.slide-out {
          transform: translateX(-40px); }
        #earphones .card .card-description .top-row .face-plates .face-plate-wrap, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap {
          position: relative;
          transition: all .4s ease-in-out;
          height: 25px;
          width: 25px;
          margin-left: 8px;
          border-radius: 50%;
          border: 2px solid #eee;
          cursor: pointer; }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap:nth-of-type(1), .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap:nth-of-type(1) {
            margin-left: 0; }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap:nth-of-type(2), .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap:nth-of-type(2) {
            margin-left: 0; }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap.shrink, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap.shrink {
            transform: scale(0.9); }
          @media only screen and (max-width: 480px) {
            #earphones .card .card-description .top-row .face-plates .face-plate-wrap, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap {
              height: 15px;
              width: 15px; } }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Pearl, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Pearl {
            display: none; }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Carbon, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Carbon {
            display: none; }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Wood, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap.wrap_Wood {
            display: none; }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap.wrap_clear, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap.wrap_clear {
            display: none; }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap:first-child, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap:first-child {
            margin-left: 0px; }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap img, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap img {
            opacity: 0;
            object-fit: cover;
            transition: all .4s ease-in-out; }
            #earphones .card .card-description .top-row .face-plates .face-plate-wrap img:hover, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap img:hover {
              box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.057); }
          #earphones .card .card-description .top-row .face-plates .face-plate-wrap:hover .action__text--invisible, .template-collection-pro .card .card-description .top-row .face-plates .face-plate-wrap:hover .action__text--invisible {
            opacity: 1;
            color: #ddd;
            top: -200%;
            z-index: 5;
            width: max-content;
            letter-spacing: 0;
            background: #2F3035;
            border-radius: 2px;
            padding: 3px 5px;
            display: none; }
    #earphones .card .card-description .bottom-row, .template-collection-pro .card .card-description .bottom-row {
      min-height: max-content;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      #earphones .card .card-description .bottom-row p, .template-collection-pro .card .card-description .bottom-row p {
        font-size: 15px;
        font-weight: 400;
        text-align: left;
        line-height: 1.33;
        padding: 20px;
        margin: 0; }
  #earphones .card .card-footer, .template-collection-pro .card .card-footer {
    text-transform: uppercase;
    padding: 0;
    letter-spacing: 0.1em;
    color: white;
    justify-items: left;
    align-items: flex-end;
    display: flex;
    position: relative;
    z-index: 1;
    background: #fff;
    margin-top: auto;
    min-height: 60px; }
    #earphones .card .card-footer .shop-model-button, .template-collection-pro .card .card-footer .shop-model-button {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      min-height: 50px;
      width: 100%;
      background: #000; }
      #earphones .card .card-footer .shop-model-button h3, #earphones .card .card-footer .shop-model-button .h3, .template-collection-pro .card .card-footer .shop-model-button h3, .template-collection-pro .card .card-footer .shop-model-button .h3 {
        font-size: 13px;
        margin: 0; }
        #earphones .card .card-footer .shop-model-button h3 a, #earphones .card .card-footer .shop-model-button .h3 a, .template-collection-pro .card .card-footer .shop-model-button h3 a, .template-collection-pro .card .card-footer .shop-model-button .h3 a {
          color: white; }
  #earphones .card:hover, .template-collection-pro .card:hover {
    transition: 0.2s ease-in;
    transform: translateY(-10px);
    box-shadow: 0px 45px 60px 0px rgba(0, 0, 0, 0.087); }

.grid-product__wrapper {
  text-align: center;
  margin-bottom: 30px; }
  .grid-collage .grid-product__wrapper {
    margin-bottom: 0; }

.grid-product__image-wrapper {
  position: relative;
  width: 100%;
  display: table;
  table-layout: fixed; }

.grid-product__image-link {
  position: relative;
  display: block;
  width: 100%;
  background-color: #efefef;
  -webkit-transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -ms-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out; }
  .grid-collage .grid-product__image-link {
    padding: 0 20px; }
  .grid-product__image-link:hover, .grid-product__image-link:focus {
    opacity: 0.9;
    -webkit-transition: opacity 0.15s ease-in;
    -moz-transition: opacity 0.15s ease-in;
    -ms-transition: opacity 0.15s ease-in;
    -o-transition: opacity 0.15s ease-in;
    transition: opacity 0.15s ease-in;
    /*================ Remove hover in IE8 and below ================*/ }
    .lt-ie9 .grid-product__image-link:hover, .lt-ie9 .grid-product__image-link:focus {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; }
  .grid-uniform .grid-product__image-link {
    display: table-cell;
    vertical-align: middle;
    overflow: hidden; }

.grid-product__image {
  display: block;
  margin: 0 auto; }

@media screen and (max-width: 600px) {
  .grid-uniform .grid-product__image-wrapper {
    height: auto !important; } }
.grid-collage .grid-product__image {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 100%;
  max-width: 100%;
  padding: 20px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }
  .lt-ie9 .grid-collage .grid-product__image {
    position: static;
    max-height: 90%;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

body.template-collection-pro .product-section__title--underlined {
  font-size: 50px;
  text-align: left; }
  body.template-collection-pro .product-section__title--underlined::after {
    display: none; }
body.template-collection-pro .grid h2, body.template-collection-pro .grid--rev h2, body.template-collection-pro .grid--full h2, body.template-collection-pro .grid .h2, body.template-collection-pro .grid--rev .h2, body.template-collection-pro .grid--full .h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  padding-bottom: 30px;
  border-bottom: 1px solid #000; }
body.template-collection-pro .product-section__copy strong {
  font-weight: 400; }
@media screen and (max-width: 768px) {
  body.template-collection-pro .product-section__title--underlined {
    font-size: 32px;
    font-weight: 400; }
  body.template-collection-pro .grid-uniform {
    margin-left: 0; }
  body.template-collection-pro .grid h2, body.template-collection-pro .grid--rev h2, body.template-collection-pro .grid--full h2, body.template-collection-pro .grid .h2, body.template-collection-pro .grid--rev .h2, body.template-collection-pro .grid--full .h2 {
    font-size: 24px;
    font-weight: 300;
    padding-bottom: 0px;
    border-bottom: none; }
  body.template-collection-pro .grid__item {
    margin-top: 50px;
    padding-left: 0; }
  body.template-collection-pro .product-section__copy {
    font-size: 14px;
    text-align: center; }
    body.template-collection-pro .product-section__copy strong {
      font-weight: 400; } }

.artist-testimonial-slider .slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1; }
  .artist-testimonial-slider .slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .artist-testimonial-slider .slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .artist-testimonial-slider .slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease; }
    .artist-testimonial-slider .slideshow .slide.is-active {
      display: block; }
    .artist-testimonial-slider .slideshow .slide.is-loaded {
      opacity: 1; }
    .artist-testimonial-slider .slideshow .slide .caption {
      padding: 0 100px; }
    .artist-testimonial-slider .slideshow .slide .image-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-position: center;
      z-index: 1;
      background-size: cover;
      image-rendering: optimizeQuality; }
      .artist-testimonial-slider .slideshow .slide .image-container::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); }
    .artist-testimonial-slider .slideshow .slide .image {
      width: 100%;
      width: 100%;
      object-fit: cover;
      height: 100%; }
    .artist-testimonial-slider .slideshow .slide .slide-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      color: #fff;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center; }
    .artist-testimonial-slider .slideshow .slide .title {
      margin: 0 auto 15px;
      max-width: 1000px;
      font-size: 35px;
      letter-spacing: 0.35em;
      text-transform: uppercase; }
    .artist-testimonial-slider .slideshow .slide .text {
      margin: 0 auto;
      max-width: 1000px;
      font-size: 18px;
      line-height: 1.4; }
    .artist-testimonial-slider .slideshow .slide .btn, .artist-testimonial-slider .slideshow .slide .btn--white, .artist-testimonial-slider .slideshow .slide .btn--outline-white, .artist-testimonial-slider .slideshow .slide .btn--outline, .artist-testimonial-slider .slideshow .slide .gwbutton, .artist-testimonial-slider .slideshow .slide .btn--secondary {
      margin: 15px 0 0;
      border-color: #fff; }
      .artist-testimonial-slider .slideshow .slide .btn::before, .artist-testimonial-slider .slideshow .slide .btn--white::before, .artist-testimonial-slider .slideshow .slide .btn--outline-white::before, .artist-testimonial-slider .slideshow .slide .btn--outline::before, .artist-testimonial-slider .slideshow .slide .gwbutton::before, .artist-testimonial-slider .slideshow .slide .btn--secondary::before {
        background: white; }
  .artist-testimonial-slider .slideshow .arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%; }
    .artist-testimonial-slider .slideshow .arrows .arrow {
      margin: -33px 0 0;
      padding: 20px;
      position: absolute;
      top: 50%;
      cursor: pointer;
      z-index: 3; }
    .artist-testimonial-slider .slideshow .arrows .prev {
      left: 0px; }
      .artist-testimonial-slider .slideshow .arrows .prev:hover .svg {
        left: -10px; }
    .artist-testimonial-slider .slideshow .arrows .next {
      right: 0px; }
      .artist-testimonial-slider .slideshow .arrows .next:hover .svg {
        left: 10px; }
    .artist-testimonial-slider .slideshow .arrows .svg {
      position: relative;
      left: 0;
      width: 14px;
      height: 26px;
      fill: #fff;
      transition: left 0.2s ease; }
  .artist-testimonial-slider .slideshow .pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center; }
    .artist-testimonial-slider .slideshow .pagination .item {
      display: inline-block;
      padding: 15px 5px;
      position: relative;
      width: 46px;
      height: 32px;
      cursor: pointer;
      text-indent: -999em;
      z-index: 1; }
      .artist-testimonial-slider .slideshow .pagination .item::before {
        content: "";
        display: block;
        position: absolute;
        top: 15px;
        left: 5px;
        width: 36px;
        height: 2px;
        background: rgba(255, 255, 255, 0.5);
        transition: background 0.2s ease; }
      .artist-testimonial-slider .slideshow .pagination .item::after {
        width: 0;
        background: #fff;
        z-index: 2;
        transition: width 0.2s ease; }
      .artist-testimonial-slider .slideshow .pagination .item:hover::before, .artist-testimonial-slider .slideshow .pagination .item.is-active::before {
        background-color: #fff; }

.lt-ie9 .grid-uniform .grid-search {
  display: inline-block;
  margin-left: -4px;
  float: none; }

.grid-search {
  margin-bottom: 30px; }

.grid-search__product {
  position: relative;
  text-align: center; }

@media screen and (min-width: 769px) {
  .grid-search__page-link,
  .grid-search__product-link {
    height: 280px; } }

.grid-search__page-link {
  display: block;
  background-color: #efefef;
  padding: 20px;
  color: #222323;
  overflow: hidden; }
  .grid-search__page-link:hover, .grid-search__page-link:focus {
    background-color: #e7e7e7; }

.grid-search__page-content {
  display: block;
  height: 100%;
  overflow: hidden; }

.grid-search__image {
  display: block;
  padding: 20px;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%; }
  @media screen and (min-width: 769px) {
    .grid-search__image {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      .grid-search__image .lt-ie9 {
        position: static;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0); } }

.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media screen and (max-width: 768px) {
    .feature-row {
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }

.feature-row__item {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%; }
  @media screen and (max-width: 768px) {
    .feature-row__item {
      -webkit-flex: 1 1 100%;
      -moz-flex: 1 1 100%;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      max-width: 100%; } }

.feature-row__image-wrapper {
  position: relative; }
  .no-js .feature-row__image-wrapper {
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
    padding-top: 0 !important; }

.feature-row__image-no-js {
  display: block;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .feature-row__image-no-js {
      order: 1; } }

.feature-row__image {
  display: block;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0; }
  @media screen and (max-width: 768px) {
    .feature-row__image {
      order: 1; } }

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media screen and (max-width: 768px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media screen and (min-width: 769px) {
  .feature-row__text--left {
    padding-left: 35px; }

  .feature-row__text--right {
    padding-right: 35px; } }
.newsletter {
  padding: 30px 0; }
  @media screen and (min-width: 601px) {
    .shopify-section:first-child .newsletter {
      position: relative; } }
  @media screen and (min-width: 601px) {
    .newsletter {
      padding: 60px 0; } }
  .newsletter .section-header + .section-subheading {
    margin-top: -30px;
    margin-bottom: 30px; }
    @media screen and (min-width: 601px) {
      .newsletter .section-header + .section-subheading {
        margin-top: -50px;
        margin-bottom: 50px; } }
  .newsletter form {
    margin: 0 auto;
    max-width: 520px; }
    .newsletter form .newsletter--form {
      padding: 10px; }
    .newsletter form .note, .newsletter form .errors {
      margin-bottom: 0; }
  .newsletter form .newsletter--form,
  .newsletter .newsletter__input {
    background-color: white;
    color: #222323; }
  .newsletter .newsletter__input {
    font-size: 1.125em;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield; }
    .newsletter .newsletter__input::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #222323;
      opacity: 1; }
    .newsletter .newsletter__input:-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #222323;
      opacity: 1; }
    .newsletter .newsletter__input::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #222323;
      opacity: 1; }
    .newsletter .newsletter__input:-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #222323; }
    .newsletter .newsletter__input::-ms-input-placeholder {
      /* Microsoft Edge 12+ */
      color: #222323;
      opacity: 1; }
    @media screen and (min-width: 601px) {
      .newsletter .newsletter__input {
        font-size: 1.3125em; } }
  .newsletter .newsletter__submit-text--large {
    white-space: nowrap; }

@media screen and (max-width: 600px) {
  .newsletter__submit-text--large,
  .password-page__login-form__submit-text--large {
    display: none; }

  .newsletter__submit-text--small,
  .password-page__login-form__submit-text--small {
    display: block; } }
@media screen and (min-width: 601px) {
  .newsletter__submit-text--large,
  .password-page__login-form__submit-text--large {
    display: block; }

  .newsletter__submit-text--small,
  .password-page__login-form__submit-text--small {
    display: none; } }
.newsletter__label {
  padding-left: 10px; }

.pagination {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  padding: 60px 0 0;
  text-align: center;
  font-size: 0.875em; }
  .pagination > span {
    display: inline-block;
    line-height: 1; }
  .pagination a {
    display: block; }
  .pagination a,
  .pagination .page.current {
    padding: 8px; }
  .pagination .page.current {
    color: white; }
  .pagination .next,
  .pagination .prev {
    font-family: arial, helvetica, sans-serif; }

.placeholder-svg {
  fill: #222323;
  background-color: #fff;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%; }

.placeholder-background {
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .hero .placeholder-background {
    background-color: transparent; }
  .placeholder-background .placeholder-svg {
    fill: #fff;
    background-color: transparent; }

.hero__slide.slide--placeholder {
  background-color: #fff !important; }

.accessories-title {
  margin-top: 1em;
  font-size: 1.25em; }
  @media screen and (max-width: 600px) {
    .accessories-title {
      display: none; } }

#accessories-carousel {
  list-style: none;
  position: relative; }
  @media screen and (max-width: 600px) {
    #accessories-carousel {
      display: none; } }
  #accessories-carousel .slick-slider {
    margin-bottom: 0; }
  #accessories-carousel .accessory {
    width: 100%;
    display: block;
    padding: 1em; }
    #accessories-carousel .accessory .title {
      font-weight: 400;
      display: block; }
    #accessories-carousel .accessory .price {
      display: block; }
    #accessories-carousel .accessory .image {
      float: right;
      width: 90px;
      height: 90px; }
    #accessories-carousel .accessory button {
      display: block;
      width: 100%; }
  #accessories-carousel .arrows {
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%; }
    #accessories-carousel .arrows .prev {
      left: -1em; }
    #accessories-carousel .arrows .next {
      right: -1em; }
    #accessories-carousel .arrows .arrow {
      cursor: pointer;
      position: absolute; }
      #accessories-carousel .arrows .arrow svg {
        width: 10px; }

.accselect {
  margin: .5em 0; }
  .accselect li {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    width: 1.25em;
    height: 1.25em;
    color: transparent;
    text-indent: -9999px;
    display: inline-block;
    list-style: none;
    cursor: pointer;
    border: 1px solid transparent;
    margin: 0 .25em; }
    .accselect li.selected, .accselect li:hover {
      border: 1px solid #222; }
    .accselect li.color--sapphire-blue-pale-grey {
      background-color: #484d66; }
    .accselect li.color--spring-pink-beige {
      background-color: #e2d2cd; }
    .accselect li.color--amber-orange-aqua {
      background-color: #c16937; }
    .accselect li.color--obsidian-black-navy {
      background-color: #35353a; }

/*================ AFFIRM FINANCING ================*/
.affirm-bar {
  text-align: center;
  text-transform: uppercase;
  background-color: #efefef;
  color: #222323;
  padding: 0.5em 30px;
  font-size: 80%; }
  @media screen and (min-width: 769px) {
    .affirm-bar {
      padding-left: 25%;
      padding-right: 25%;
      font-size: 100%; } }
  .affirm-bar a {
    text-decoration: underline; }
    .affirm-bar a:hover {
      text-decoration: none; }

.affirm-price-column {
  text-align: left; }
  .affirm-price-column .price-container {
    white-space: nowrap; }
  .affirm-price-column .affirm-as-low-as {
    display: block;
    max-width: 200px; }
  .affirm-price-column .sep {
    padding: 0 2px; }
  .affirm-price-column .affirm-product-modal {
    margin-left: 1em;
    font-size: 14px;
    text-decoration: underline;
    white-space: nowrap; }

.affirm-price-column__label {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.875em; }

.affirm-price-column__or {
  font-weight: 400;
  font-size: 0.875em;
  color: #979797;
  padding: 0 1em; }
  @media screen and (min-width: 600px) {
    .affirm-price-column__or {
      padding: 0 1.5em; } }

a.affirm-modal-trigger {
  text-decoration: underline; }
  @media screen and (max-width: 769px) {
    a.affirm-modal-trigger {
      display: block; } }

.affirm-pricing .product-single__pricing {
  align-items: flex-start; }
  .affirm-pricing .product-single__pricing .affirm-price-column__or {
    position: relative;
    top: 2.5em; }

.tags a {
  padding: 4px 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8125em;
  letter-spacing: 0.15em; }

.tags--collection {
  max-width: 75%;
  margin: 0 auto 25px; }
  @media screen and (min-width: 769px) {
    .tags--collection li {
      display: inline-block; } }
  @media screen and (max-width: 600px) {
    .tags--collection li {
      display: block; } }

.tags--article a {
  padding-right: 15px;
  padding-left: 0; }

.tags__title {
  margin-right: 15px; }

.tag--active a {
  color: white; }

.promo-card {
  position: relative;
  z-index: 1; }
  .promo-card .promo-title,
  .promo-card .promo-subtitle {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.5); }
  .promo-card .promo-title {
    font-weight: 300; }
  .promo-card .promo-subtitle {
    font-weight: 500; }

.promo-banner {
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 600px) {
    .promo-banner {
      padding: 15px 0;
      background-image: none !important; } }
  @media screen and (min-width: 601px) {
    .promo-banner {
      padding: 30px 0;
      background-repeat: no-repeat;
      background-position: left center;
      background-size: 100% auto; } }
  @media screen and (max-width: 600px) {
    .promo-banner .promo-card {
      padding-left: 15px;
      padding-right: 120px; }
      .promo-banner .promo-card .promo-title,
      .promo-banner .promo-card .promo-subtitle {
        margin-bottom: .5rem; }
      .promo-banner .promo-card .promo-title {
        font-size: 1.5em; }
      .promo-banner .promo-card .promo-subtitle {
        font-size: 0.75em; }
      .promo-banner .promo-card .btn, .promo-banner .promo-card .btn--white, .promo-banner .promo-card .btn--outline-white, .promo-banner .promo-card .btn--outline, .promo-banner .promo-card .gwbutton, .promo-banner .promo-card .btn--secondary {
        padding: .75em 2em; } }
  @media screen and (min-width: 601px) {
    .promo-banner .promo-card {
      padding-left: 30px;
      padding-right: 120px; }
      .promo-banner .promo-card .promo-title,
      .promo-banner .promo-card .promo-subtitle {
        margin-bottom: .5rem; }
      .promo-banner .promo-card .promo-title {
        font-size: 2.375em; }
      .promo-banner .promo-card .promo-subtitle {
        font-size: 0.9375em; } }
  @media screen and (min-width: 769px) {
    .promo-banner .promo-card {
      padding-left: 27.5%;
      padding-right: 20%; }
      .promo-banner .promo-card .promo-title,
      .promo-banner .promo-card .promo-subtitle {
        margin-bottom: 1rem; } }
  .promo-banner .promo-sticker {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px; }
    @media screen and (min-width: 769px) {
      .promo-banner .promo-sticker {
        right: 5%;
        width: 125px; } }

.promo-hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 0;
  position: relative; }
  @media screen and (max-width: 480px) {
    .promo-hero {
      padding-bottom: 135%; } }
  @media screen and (min-width: 481px) {
    .promo-hero {
      padding-bottom: 60%; } }
  @media screen and (min-width: 769px) {
    .promo-hero {
      padding-bottom: 45%; } }
  .promo-hero .promo-card {
    position: absolute;
    top: 50%;
    padding: 0 30px;
    text-align: center; }
    .promo-hero .promo-card .promo-title,
    .promo-hero .promo-card .promo-subtitle {
      margin-bottom: 1rem; }
    .promo-hero .promo-card .promo-title {
      font-size: 1.875em; }
    .promo-hero .promo-card .promo-subtitle {
      font-size: 0.875em; }
    @media screen and (max-width: 480px) {
      .promo-hero .promo-card {
        width: 100%;
        transform: translateY(-55%); } }
    @media screen and (min-width: 481px) {
      .promo-hero .promo-card {
        width: 500px;
        right: 50%;
        margin-right: -250px;
        transform: translateY(-40%); }
        .promo-hero .promo-card .promo-title {
          font-size: 3.375em; }
        .promo-hero .promo-card .promo-subtitle {
          font-size: 1.1875em; } }
    @media screen and (min-width: 769px) {
      .promo-hero .promo-card {
        right: 30px;
        margin-right: 0; } }
  .promo-hero .promo-sticker {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 90px; }
    @media screen and (min-width: 769px) {
      .promo-hero .promo-sticker {
        right: 30px;
        top: 30px;
        width: 125px; } }

#multiProductSelect.multi-product-select--a,
#multiVariantSelect {
  margin: 0;
  display: grid;
  grid-gap: 1em;
  grid-template-columns: 1fr 1fr 1fr 1fr; }
  @media screen and (max-width: 600px) {
    #multiProductSelect.multi-product-select--a,
    #multiVariantSelect {
      grid-template-columns: 1fr 1fr;
      grid-gap: 1em;
      padding: 1em; } }
  #multiProductSelect.multi-product-select--a li,
  #multiVariantSelect li {
    list-style: none;
    text-align: center;
    cursor: pointer;
    padding: 0.5em;
    font-weight: 500;
    border: 1px solid #000;
    display: inline-block;
    text-transform: uppercase; }
    #multiProductSelect.multi-product-select--a li.active,
    #multiVariantSelect li.active {
      background: #000;
      color: #FFF; }
    #multiProductSelect.multi-product-select--a li div,
    #multiVariantSelect li div {
      font-weight: 300; }

#multiProductSelect.multi-product-select--a {
  padding: 0 0 1em; }

#multiProductSelect.multi-product-select--b {
  margin: 0 0 1em;
  display: grid;
  justify-content: center;
  grid-gap: 0.25em;
  grid-template-columns: repeat(auto-fit, 23%); }
  @media screen and (min-width: 769px) {
    #multiProductSelect.multi-product-select--b {
      grid-gap: 1em;
      grid-template-columns: repeat(auto-fit, minmax(100px, 135px)); } }
  #multiProductSelect.multi-product-select--b li {
    list-style: none;
    text-align: center;
    cursor: pointer; }
    #multiProductSelect.multi-product-select--b li .title {
      font-weight: 500;
      font-size: 16px;
      color: #979797;
      display: inline-block; }
      @media screen and (min-width: 600px) {
        #multiProductSelect.multi-product-select--b li .title {
          font-size: 20px; } }
    #multiProductSelect.multi-product-select--b li.active .title {
      color: #222323;
      border-bottom: 2px solid #222323; }
    .product-cta-select #multiProductSelect.multi-product-select--b li .description {
      display: none; }

.multiproduct-prevnext {
  position: absolute;
  top: 20%;
  margin-top: -12px;
  padding: 0.5em;
  font-size: 30px;
  line-height: 24px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }
  @media screen and (min-width: 769px) {
    .multiproduct-prevnext {
      top: 50%; } }
  .multiproduct-prevnext:hover {
    opacity: 0.8; }
  .multiproduct-prevnext.prev {
    left: -15px; }
  .multiproduct-prevnext.next {
    right: -15px; }

.multiproduct-options__header {
  display: flex;
  justify-content: space-between; }
  @media screen and (min-width: 769px) {
    .multiproduct-options__header .multiproduct-price {
      display: none; } }

#productSingleFaceplates.multiProduct .faceplates {
  display: none; }
  #productSingleFaceplates.multiProduct .faceplates.active {
    display: block !important; }

#chooseYourExperience {
  display: flex;
  margin: 0 auto 2em;
  list-style-type: none;
  padding: 4em 0 0;
  max-width: 60em;
  justify-content: center;
  padding-top: 0;
  border: 1px solid #e5e5e5;
  border-width: 1px 0;
  max-width: 100%; }
  @media screen and (max-width: 600px) {
    #chooseYourExperience {
      grid-template-columns: 1fr 1fr;
      grid-gap: 1em; } }
  #chooseYourExperience li {
    text-align: center;
    width: auto;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    margin: 0 0 -1px;
    cursor: pointer;
    padding: 31px 27px; }
    #chooseYourExperience li .product-title {
      display: block;
      font-weight: 500; }
    #chooseYourExperience li .info {
      text-transform: uppercase;
      display: block;
      font-weight: 300;
      display: none; }
  #chooseYourExperience .active {
    border-bottom: 2px solid #000; }

.wrapper .swappable {
  display: none; }
  .wrapper .swappable.active {
    display: block; }

@media screen and (max-width: 600px) {
  .site-header__faceplates__inner.multi-product {
    position: relative; }
    .site-header__faceplates__inner.multi-product.open .faceplates {
      margin-top: 3em; } }
.site-header__faceplates__inner.multi-product .faceplates {
  display: none; }
  .site-header__faceplates__inner.multi-product .faceplates.active {
    display: block !important; }
.site-header__faceplates__inner.multi-product .site-header__faceplates__title {
  position: relative;
  cursor: pointer;
  padding-right: 1.25em; }
  @media screen and (max-width: 600px) {
    .site-header__faceplates__inner.multi-product .site-header__faceplates__title {
      position: static; } }
  .site-header__faceplates__inner.multi-product .site-header__faceplates__title span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    white-space: nowrap; }
  .site-header__faceplates__inner.multi-product .site-header__faceplates__title.open ul#headerProductSelect {
    display: block; }
    @media screen and (max-width: 600px) {
      .site-header__faceplates__inner.multi-product .site-header__faceplates__title.open ul#headerProductSelect {
        display: grid; } }
  .site-header__faceplates__inner.multi-product .site-header__faceplates__title.open .downarrow {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 0; }
  .site-header__faceplates__inner.multi-product .site-header__faceplates__title ul#headerProductSelect {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.5em;
    position: absolute;
    top: 100%;
    padding-top: 10px;
    width: 100%;
    cursor: pointer; }
    .site-header__faceplates__inner.multi-product .site-header__faceplates__title ul#headerProductSelect li {
      background: #f7f7f7;
      color: #000;
      padding: 0.25em 0.75em;
      margin: 0;
      font-weight: 500;
      cursor: pointer; }
      .site-header__faceplates__inner.multi-product .site-header__faceplates__title ul#headerProductSelect li.active, .site-header__faceplates__inner.multi-product .site-header__faceplates__title ul#headerProductSelect li:hover {
        background: #DEDEDE; }
      .site-header__faceplates__inner.multi-product .site-header__faceplates__title ul#headerProductSelect li .description {
        font-weight: 300; }
    @media screen and (max-width: 600px) {
      .site-header__faceplates__inner.multi-product .site-header__faceplates__title ul#headerProductSelect {
        position: absolute;
        width: 100%;
        margin-left: -15px;
        top: 4.5em;
        padding: 1.25em .75em 4.5em .75em;
        grid-gap: .75em;
        font-size: .35em;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        background: #f7f7f7; }
        .site-header__faceplates__inner.multi-product .site-header__faceplates__title ul#headerProductSelect li {
          text-align: center;
          grid-gap: .5em;
          border: 1px solid #DEDEDE;
          padding: 0 .5em; } }

.arrow.downarrow {
  border: solid white;
  border-width: 0 1px 1px 0;
  display: inline-block;
  position: relative;
  top: -5px;
  margin-left: 15px;
  padding: 6px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }

/* COMMENT THIS OUT TO RE-ADD FACEPLATE SELECTORS ON MOBILE BEFORE PRODUCT DROPDOWN IS OPENED */
@media screen and (max-width: 768px) {
  .site-header__faceplates__inner.multi-product ul#headerProductSelect {
    top: 5.5em !important;
    padding-bottom: 5.25em !important; }
  .site-header__faceplates__inner.multi-product .faceplates {
    margin-top: 4.25em !important; }
  .site-header__faceplates__inner.multi-product .faceplates.active {
    display: none !important; }
  .site-header__faceplates__inner.multi-product.open .faceplates.active {
    display: block !important; } }
.checkbox label .toggle, .checkbox-inline .toggle {
  margin-left: -20px;
  margin-right: 5px; }

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

.toggle input[type=checkbox] {
  display: none; }

.toggle-group {
  position: absolute;
  width: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  transition: left .35s;
  -webkit-transition: left .35s;
  -moz-user-select: none;
  -webkit-user-select: none; }

.toggle.off .toggle-group {
  left: -100%; }

.toggle-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 0; }

.toggle-off {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: 0;
  border: 0;
  border-radius: 0; }

.toggle-handle {
  position: relative;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  width: 0;
  border-width: 0 1px; }

.toggle.btn, .toggle.btn--white, .toggle.btn--outline-white, .toggle.btn--outline, .toggle.gwbutton, .toggle.btn--secondary {
  min-width: 59px;
  min-height: 34px; }

.toggle-on.btn, .toggle-on.btn--white, .toggle-on.btn--outline-white, .toggle-on.btn--outline, .toggle-on.gwbutton, .toggle-on.btn--secondary {
  padding-right: 24px; }

.toggle-off.btn, .toggle-off.btn--white, .toggle-off.btn--outline-white, .toggle-off.btn--outline, .toggle-off.gwbutton, .toggle-off.btn--secondary {
  padding-left: 24px; }

.toggle.btn-lg {
  min-width: 79px;
  min-height: 45px; }

.toggle-on.btn-lg {
  padding-right: 31px; }

.toggle-off.btn-lg {
  padding-left: 31px; }

.toggle-handle.btn-lg {
  width: 40px; }

.toggle.btn-sm {
  min-width: 50px;
  min-height: 30px; }

.toggle-on.btn-sm {
  padding-right: 20px; }

.toggle-off.btn-sm {
  padding-left: 20px; }

.toggle.btn-xs {
  min-width: 35px;
  min-height: 22px; }

.toggle-on.btn-xs {
  padding-right: 12px; }

.toggle-off.btn-xs {
  padding-left: 12px; }

.button-group {
  border: none;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  float: left; }

.button-default {
  background-color: #ddd;
  color: #000; }

.button-default:hover {
  background-color: #ccc;
  color: #000;
  text-decoration: none; }

.button-on {
  background-color: #4CAF50;
  color: #fff; }

.button-on:hover {
  background-color: #3e8e41;
  color: #fff;
  text-decoration: none; }

.button-off {
  background-color: #B22222;
  color: #fff; }

.button-off:hover {
  background-color: maroon;
  color: #fff;
  text-decoration: none; }

.button-default[disabled], .button-off[disabled], .button-on[disabled] {
  cursor: not-allowed; }

.tgl-sw {
  display: none; }

.tgl-sw, .tgl-sw *, .tgl-sw :after, .tgl-sw :before, .tgl-sw + .btn-switch, .tgl-sw:after, .tgl-sw:before {
  box-sizing: border-box; }

.tgl-sw ::-moz-selection, .tgl-sw :after::-moz-selection, .tgl-sw :before::-moz-selection, .tgl-sw + .btn-switch::-moz-selection, .tgl-sw::-moz-selection, .tgl-sw:after::-moz-selection, .tgl-sw:before::-moz-selection {
  background: 0 0; }

.tgl-sw ::selection, .tgl-sw :after::selection, .tgl-sw :before::selection, .tgl-sw + .btn-switch::selection, .tgl-sw::selection, .tgl-sw:after::selection, .tgl-sw:before::selection {
  background: 0 0; }

.tgl-sw + .btn-switch {
  outline: 0;
  display: block;
  width: 4em;
  height: 2em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.tgl-sw + .btn-switch:after, .tgl-sw + .btn-switch:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%; }

.tgl-sw + .btn-switch:after {
  left: 0; }

.tgl-sw + .btn-switch:before {
  display: none; }

.tgl-sw-active + .btn-switch:after {
  left: 50%; }

.tgl-sw-light + .btn-switch {
  background: #B22222;
  border-radius: 2em;
  padding: 2px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease; }

.tgl-sw-light + .btn-switch:after {
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease; }

.tgl-sw-light-checked + .btn-switch {
  background: #4CAF50; }

.tgl-sw-ios + .btn-switch {
  background: #B22222;
  border-radius: 2em;
  padding: 2px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  border: 1px solid #e8eae9; }

.tgl-sw-ios + .btn-switch:after {
  border-radius: 2em;
  background: #f5f5f5;
  -webkit-transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08); }

.tgl-sw-ios + .btn-switch:hover:after {
  will-change: padding; }

.tgl-sw-ios + .btn-switch:active {
  box-shadow: inset 0 0 0 2em #e8eae9; }

.tgl-sw-ios + .btn-switch:active:after {
  padding-right: .8em; }

.tgl-sw-ios-checked + .btn-switch {
  background: #4CAF50; }

.tgl-sw-ios-checked + .btn-switch:active {
  box-shadow: none; }

.tgl-sw-ios-checked + .btn-switch:active:after {
  margin-left: -.8em; }

.tgl-sw-swipe + .btn-switch {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  font-family: sans-serif;
  background: #B22222; }

.tgl-sw-swipe + .btn-switch:after, .tgl-sw-swipe + .btn-switch:before {
  display: inline-block;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
  text-align: center;
  position: absolute;
  line-height: 2em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4); }

.tgl-sw-swipe + .btn-switch:after {
  left: 100%;
  content: attr(data-tg-on); }

.tgl-sw-swipe + .btn-switch:before {
  left: 0;
  content: attr(data-tg-off); }

.tgl-sw-swipe + .btn-switch:active {
  background: #B22222; }

.tgl-sw-swipe + .btn-switch:active:before {
  left: -10%; }

.tgl-sw-swipe:checked + .btn-switch {
  background: #4CAF50; }

.tgl-sw-swipe:checked + .btn-switch:before {
  left: -100%; }

.tgl-sw-swipe:checked + .btn-switch:after {
  left: 0; }

.tgl-sw-swipe:checked + .btn-switch:active:after {
  left: 10%; }

.tgl-sw-android + .btn-switch {
  position: relative;
  display: block;
  height: 20px;
  width: 60px;
  background: #B22222;
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s ease; }

.tgl-sw-android + .btn-switch:after {
  position: absolute;
  left: -2px;
  top: -3px;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 100px;
  background: maroon;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  content: '';
  transition: all .3s ease; }

.tgl-sw-android-checked + .btn-switch {
  background: #4CAF50; }

.tgl-sw-android-checked + .btn-switch:after {
  left: 40px;
  background: #3e8e41; }

/*============================================================================
  Social Icon Buttons v1.0
  Author:
    Carson Shold | @cshold
    http://www.carsonshold.com
  MIT License
==============================================================================*/
/*================ Social share buttons ================*/
.social-sharing {
  /*================ Large Buttons ================*/ }
  .social-sharing a {
    display: inline-block;
    color: #222323;
    border-radius: 2px;
    margin: 5px 0;
    height: 22px;
    line-height: 22px;
    text-decoration: none;
    font-weight: normal; }
  .social-sharing span {
    display: inline-block;
    vertical-align: top;
    height: 22px;
    line-height: 22px;
    font-size: 12px; }
  .social-sharing .icon {
    padding: 0 5px 0 10px; }
    .social-sharing .icon:before {
      line-height: 22px; }
  .social-sharing.is-large a {
    height: 44px;
    line-height: 44px; }
    .social-sharing.is-large a span {
      height: 44px;
      line-height: 44px;
      font-size: 18px; }
    .social-sharing.is-large a .icon {
      padding: 0 10px 0 18px; }
      .social-sharing.is-large a .icon:before {
        line-height: 44px; }

.share-title {
  font-size: 1.125em;
  padding-right: 10px; }
  .is-large .share-title {
    padding-right: 16px; }

/*================ Clean Buttons ================*/
.social-sharing.clean a {
  background-color: white;
  color: #222323;
  height: 30px;
  line-height: 30px; }
  .social-sharing.clean a span {
    height: 30px;
    line-height: 30px;
    font-size: 13px; }
  .social-sharing.clean a:hover {
    opacity: 0.8; }
  .social-sharing.clean a:hover .share-count {
    opacity: 0.8; }
    .social-sharing.clean a:hover .share-count:after {
      border-right-color: white; }
  .social-sharing.clean a .share-title {
    font-weight: normal; }
.social-sharing.clean .share-count {
  top: -1px; }

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  filter: alpha(opacity=50); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: akzidenz-grotesk,Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.mfp-bg.mfp-fade {
  -webkit-backface-visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  .mfp-bg.mfp-fade.mfp-ready {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-bg.mfp-fade.mfp-removing {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
    filter: alpha(opacity=0); }

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }
.mfp-fade.mfp-wrap.mfp-removing {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0; }
  .mfp-fade.mfp-wrap.mfp-removing button {
    opacity: 0; }

.mfp-counter {
  display: none; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: zoom-out; }
.mfp-figure:after {
  box-shadow: none; }

.mfp-img {
  background-color: #efefef; }

button.mfp-close {
  font-size: 2.5em;
  font-weight: 300px;
  opacity: 1;
  filter: alpha(opacity=100);
  color: #222323; }

button.mfp-arrow {
  top: 0;
  height: 100%;
  width: 20%;
  margin: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 1045; }
  button.mfp-arrow:after, button.mfp-arrow .mfp-a {
    display: none; }
  button.mfp-arrow:before, button.mfp-arrow .mfp-b {
    display: none; }
  button.mfp-arrow:active {
    margin-top: 0; }

.mfp-chevron {
  position: absolute;
  pointer-events: none; }
  .mfp-chevron:before {
    content: '';
    display: inline-block;
    position: relative;
    vertical-align: top;
    height: 25px;
    width: 25px;
    border-style: solid;
    border-width: 4px 4px 0 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .mfp-chevron.mfp-chevron-right {
    right: 55px; }
    .mfp-chevron.mfp-chevron-right:before {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
  .mfp-chevron.mfp-chevron-left {
    left: 55px; }
    .mfp-chevron.mfp-chevron-left:before {
      -webkit-transform: rotate(-135deg);
      -moz-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
      -o-transform: rotate(-135deg);
      transform: rotate(-135deg); }

/*============================================================================
  #Slick Slider overrides
    - If upgrading Slick's styles, use the following variables/functions
      instead of the slick defaults
    - Only overwrite slick's default styles starting at #Slick Slider SCSS
==============================================================================*/
/*============================================================================
  #Slick Slider SCSS
    - Everything below this line is unchanged from Slick's scss file
    - When updating to a new version, don't include the variables/function
      that were modified above
==============================================================================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-loading .slick-list {
    background: white url(//cdn.shopify.com/s/files/1/0409/6910/9653/t/8/assets/ajax-loader.gif?v=41356863302472015721592496642) center center no-repeat; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

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

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

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

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 0.75; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.5; }

.slick-prev:before, .slick-next:before {
  font-family: sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #222323;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

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

.product-quiz-banner {
  background-color: #000;
  text-align: center; }

.product-quiz-banner__wrap {
  max-width: 1000px;
  margin: 0 auto; }

.product-quiz-banner__header {
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase; }

.product-quiz-banner__footer {
  padding: 10px 0; }
  @media screen and (max-width: 768px) {
    .product-quiz-banner__footer {
      display: none; } }
  @media screen and (min-width: 769px) {
    .product-quiz-banner__footer {
      text-align: right; } }

.product-quiz-banner__cols {
  display: flex;
  justify-content: center;
  border-top: 1px solid #fff;
  color: #fff; }
  @media screen and (max-width: 768px) {
    .product-quiz-banner__cols {
      flex-wrap: wrap; } }
  @media screen and (min-width: 769px) {
    .product-quiz-banner__cols {
      padding: 10px 20px;
      border-bottom: 1px solid #fff; } }

.product-quiz-banner__details .label {
  font-size: 0.875em;
  text-transform: uppercase;
  white-space: nowrap; }
.product-quiz-banner__details .title {
  font-size: 2.8125em;
  font-weight: 300;
  white-space: nowrap;
  line-height: 1.25em; }
@media screen and (max-width: 768px) {
  .product-quiz-banner__details {
    padding: 10px 15px; } }
@media screen and (min-width: 769px) {
  .product-quiz-banner__details {
    padding: 0 20px; } }

.product-quiz-banner__description {
  font-size: 0.875em; }
  .product-quiz-banner__description .inner p:last-of-type {
    margin-bottom: 0; }
  @media screen and (max-width: 768px) {
    .product-quiz-banner__description {
      position: relative;
      padding: 10px 20px 30px;
      width: 100%;
      border-top: 1px solid #fff; }
      .product-quiz-banner__description .product-quiz-banner__description-toggle {
        position: absolute;
        left: 50%;
        margin-left: -4em;
        bottom: 0;
        margin-bottom: -1em;
        background-color: #c8c8c8 !important;
        color: #fff !important;
        border: none; }
        .product-quiz-banner__description .product-quiz-banner__description-toggle:focus {
          outline: none; }
        .product-quiz-banner__description .product-quiz-banner__description-toggle .more {
          display: none; }
        .product-quiz-banner__description .product-quiz-banner__description-toggle .less {
          display: inline; }
      .product-quiz-banner__description.clamped .inner {
        overflow: hidden;
        height: 1.5em;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical; }
      .product-quiz-banner__description.clamped .product-quiz-banner__description-toggle .more {
        display: inline; }
      .product-quiz-banner__description.clamped .product-quiz-banner__description-toggle .less {
        display: none; } }
  @media screen and (min-width: 769px) {
    .product-quiz-banner__description {
      border-left: 1px solid #fff;
      padding: 0 20px; }
      .product-quiz-banner__description .inner {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 10px 0; }
      .product-quiz-banner__description .product-quiz-banner__quiz-link,
      .product-quiz-banner__description .product-quiz-banner__description-toggle {
        display: none; } }

.product-quiz-banner__quiz-link {
  font-size: 0.875em;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase; }

.sv_window {
  position: fixed;
  bottom: 3px;
  right: 10px;
  background-color: cadetblue;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-break: auto; }

.sv_window_title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.sv_window_content {
  padding: 8px;
  margin: 0; }

.sv_window_title a,
.sv_window_title a:link,
.sv_window_title a:visited {
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  color: black; }

.sv_container {
  position: relative;
  margin: auto; }

.sv_header,
.sv_custom_header {
  display: none; }

.sv_subheader {
  font-size: 30px; }

.sv_page_title {
  font-size: 1em;
  margin-top: 0.1em;
  font-weight: normal; }

.sv_survey_title {
  font-size: 14px !important;
  font-weight: 300;
  margin-bottom: 1rem;
  text-transform: uppercase; }

.sv_p_title {
  font-size: 1.15em;
  margin: 1.5em 0 0 0; }

.sv_q_title {
  font-weight: 400;
  line-height: 1.1;
  text-transform: none;
  margin: 0 0 2rem;
  letter-spacing: 0; }
  .sv_q_title.alpha {
    font-weight: 500;
    margin: 0 0 0.5rem; }
  @media screen and (max-width: 768px) {
    .sv_q_title {
      font-size: 1.75em; }
      .sv_q_title.alpha {
        font-size: 2em; } }
  @media screen and (min-width: 769px) {
    .sv_q_title {
      font-size: 2.25em; }
      .sv_q_title.alpha {
        font-size: 2.5em; } }

.sv_btn {
  display: inline-block;
  transition: all 0.2s;
  background: transparent;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 2.25em;
  font-weight: 500;
  padding: 0 1rem;
  cursor: pointer;
  vertical-align: baseline; }

.sv_btn_bordered {
  border: 1px solid #222323;
  border-radius: 1rem; }
  .sv_btn_bordered:hover {
    background-color: #222323;
    color: white; }
  .sv_btn_bordered.sv_q_response {
    position: relative;
    margin-right: 1.5em;
    margin-bottom: 1em; }
    .sv_btn_bordered.sv_q_response:not(.active) {
      padding-right: 3em; }
      .sv_btn_bordered.sv_q_response:not(.active):after {
        content: '\00D7';
        font-size: 2em;
        line-height: 1;
        display: block;
        position: absolute;
        right: 0.5em;
        top: 0;
        bottom: 0; }
    .sv_btn_bordered.sv_q_response.active {
      background-color: #666;
      border-color: #666;
      color: white;
      cursor: default; }
  .checked .sv_btn_bordered {
    background-color: #222323;
    color: white;
    cursor: default; }

.sv_prev_btn, .sv_next_btn {
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: 35px auto; }

.sv_prev_btn {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8.125c0 .198.117.46.237.588l6.71 7.27c.312.33.82.369 1.185.033.327-.3.335-.884.033-1.209L2.779 8.98H25.16A.847.847 0 0026 8.125a.847.847 0 00-.839-.855H2.78l5.386-5.827c.302-.325.28-.895-.033-1.21a.828.828 0 00-1.186.034l-6.71 7.27A.768.768 0 000 8.125z' fill='%23000' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-position-x: left;
  padding-left: 60px; }

.sv_next_btn {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 8.125c0-.198-.117-.46-.237-.588l-6.71-7.27a.829.829 0 00-1.185-.033c-.327.3-.335.884-.033 1.209l5.386 5.827H.84A.847.847 0 000 8.125c0 .472.376.855.839.855H23.22l-5.386 5.827c-.302.325-.28.895.033 1.21a.828.828 0 001.186-.034l6.71-7.27A.768.768 0 0026 8.125z' fill='%23000' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-position-x: right;
  padding-right: 60px; }

.sv_complete_btn {
  color: #F95A64;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='17' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 8.125a1 1 0 00-.237-.588l-6.71-7.27a.829.829 0 00-1.185-.033c-.327.3-.335.884-.033 1.209l5.386 5.827H.84a.847.847 0 00-.84.855c0 .472.376.855.839.855H23.22l-5.386 5.827c-.302.325-.28.895.033 1.21a.828.828 0 001.186-.034l6.71-7.27A.768.768 0 0026 8.125z' fill='%23F95A64'/%3E%3C/svg%3E"); }

.sv_q_radiogroup_label span.circle,
.sv_q_radiogroup_label span.check,
.sv_q_radiogroup_label span.checkbox-material,
.sv_q_checkbox_label span.circle,
.sv_q_checkbox_label span.check,
.sv_q_checkbox_label span.checkbox-material {
  display: none; }
.sv_q_radiogroup_label .sv_q_radiogroup_control_item,
.sv_q_radiogroup_label .sv_q_checkbox_control_item,
.sv_q_checkbox_label .sv_q_radiogroup_control_item,
.sv_q_checkbox_label .sv_q_checkbox_control_item {
  display: none; }

.sv_body {
  position: relative;
  padding-bottom: 5em; }

.sv_completed_page {
  display: none; }

.sv_nav .sv_next_btn {
  transition: opacity 0.1s;
  opacity: 0;
  visibility: hidden; }
.sv_nav.next-enabled .sv_next_btn {
  opacity: 1;
  visibility: visible; }

.sv_main {
  margin-bottom: 2em;
  position: relative;
  width: 100%;
  text-align: center; }

@media screen and (max-width: 768px) {
  .sv_p_root,
  .sv_results_form {
    padding-top: 2em; } }
@media screen and (min-width: 769px) {
  .sv_p_root,
  .sv_results_form {
    padding-top: 6em;
    width: 50%;
    max-width: 600px;
    margin: 0 auto; } }

.sv_results_form {
  text-align: center;
  padding-bottom: 6em; }
  @media screen and (min-width: 769px) {
    .sv_results_form {
      padding-top: 4em; } }

.sv_progress {
  height: 0.3em;
  position: absolute;
  width: 100%;
  top: 0; }
  .sv_progress .sv_progress_bar {
    background-color: #222323;
    height: 100%;
    position: relative; }
    .sv_progress .sv_progress_bar > span {
      position: absolute;
      top: -1.5em;
      display: inline-block;
      white-space: nowrap; }
  .sv_progress span {
    display: none; }

.sv_progress_answers {
  padding-top: 1.5em;
  text-align: left; }
  @media screen and (max-width: 768px) {
    .sv_progress_answers {
      white-space: nowrap;
      overflow-x: scroll; } }

.sv_q_other {
  margin-left: 1em; }

.sv_q_select_column {
  display: inline-block;
  vertical-align: top;
  min-width: 10%; }

.sv_q_rating {
  line-height: 2em; }
  .sv_q_rating .sv_q_rating_item {
    cursor: pointer;
    word-spacing: -0.3em;
    font-weight: normal;
    display: inline; }
    .sv_q_rating .sv_q_rating_item > * {
      word-spacing: initial; }
      @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        .sv_q_rating .sv_q_rating_item > * {
          word-spacing: normal; } }
    .sv_q_rating .sv_q_rating_item .sv_q_rating_item_text {
      display: inline-block;
      min-width: 2em;
      padding: 0 0.3em;
      margin-left: -1px;
      text-align: center; }
    .sv_q_rating .sv_q_rating_item:not(:first-child) .sv_q_rating_item_text:not(:hover) {
      border-left-color: transparent; }
  .sv_q_rating .sv_q_rating_min_text {
    margin-right: 0.5em; }
  .sv_q_rating .sv_q_rating_max_text {
    margin-left: 0.5em; }

.sv_q_flow .sv_q_checkbox_inline,
.sv_q_flow .sv_q_radiogroup_inline,
.sv_q_flow .sv_q_imagepicker_inline {
  line-height: 2em;
  display: inline-block; }

.sv_q_group {
  max-width: 300px;
  position: relative;
  margin: 0 auto; }
  .sv_q_group .sv_q_text_root {
    padding-right: 60px;
    margin-bottom: 0 !important; }
  .sv_q_group .sv_btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    outline: none; }

.sv_q {
  box-sizing: border-box;
  overflow: auto; }
  @media screen and (min-width: 769px) {
    .sv_q {
      display: block;
      width: 100% !important; } }
  .sv_q .sv_panel_dynamic .sv-paneldynamic__progress-container {
    position: relative;
    margin-right: 250px;
    margin-left: 40px;
    margin-top: 10px; }
  .sv_q .sv_q_other input,
  .sv_q .sv_q_text_root,
  .sv_q .sv_q_dropdown_control,
  .sv_q input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]),
  .sv_q select,
  .sv_q textarea {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
    line-height: 1em;
    padding-left: 0;
    margin-bottom: 1.5em; }
    .sv_q .sv_q_other input:focus,
    .sv_q .sv_q_text_root:focus,
    .sv_q .sv_q_dropdown_control:focus,
    .sv_q input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]):focus,
    .sv_q select:focus,
    .sv_q textarea:focus {
      outline: none; }
  .sv_q .sv_q_other input,
  .sv_q .sv_q_dropdown_control,
  .sv_q input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]),
  .sv_q select {
    max-width: 300px;
    background-color: transparent;
    border-bottom: 2px solid #222323; }
  .sv_q div.sv_q_text_root,
  .sv_q div.sv_q_dropdown_control {
    min-height: 2.43em;
    min-width: 7em; }
  .sv_q .sv_select_wrapper {
    width: 100%;
    position: relative;
    display: inline-block; }
    .sv_q .sv_select_wrapper select {
      display: block;
      background: transparent;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      padding-right: 2.5em; }
      .sv_q .sv_select_wrapper select::-ms-expand {
        display: none; }
    .sv_q .sv_select_wrapper:before {
      padding: 1em;
      position: absolute;
      right: 1px;
      right: 0;
      top: 1px;
      background-image: url("./images/ArrowDown_34x34.svg");
      content: "";
      background-repeat: no-repeat;
      background-position: center; }
  .sv_q .sv_q_imgsel label > div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 4px;
    border: 1px solid lightgray;
    border-radius: 4px; }
    .sv_q .sv_q_imgsel label > div > img {
      display: block;
      pointer-events: none;
      position: relative; }
  .sv_q .sv_q_radiogroup_clear {
    margin-top: 0.5em; }
  .sv_q .sv_q_checkbox_inline,
  .sv_q .sv_q_radiogroup_inline,
  .sv_q .sv_q_imagepicker_inline {
    line-height: 2em;
    display: inline-block;
    margin-bottom: 1.5em;
    margin-left: 0.75em;
    margin-right: 0.75em; }
  .sv_q .sv_q_footer {
    padding: 1em 0; }

.sv_q_header {
  margin-bottom: 2rem; }

.sv_q_content {
  position: relative; }

.sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) {
  position: absolute;
  bottom: 100%;
  width: 100%;
  margin-bottom: 0.75em;
  color: #ed5565;
  font-weight: 500;
  font-size: 12px; }
  .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + input, .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + textarea, .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + .sv_select_wrapper select {
    border: 1px solid #ed5565; }
    .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + input:focus, .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + textarea:focus, .sv_q_erbox:not([style*="display: none"]):not([style*="display:none"]) + .sv_select_wrapper select:focus {
      outline: #ed5565 auto 5px; }

.sv_q_m_cell_selected {
  color: white;
  background-color: #2f3030; }

.sv_q_rating_item.active .sv_q_rating_item_text {
  background-color: #2f3030;
  border-color: #2f3030;
  color: white; }
.sv_q_rating_item .sv_q_rating_item_text {
  border: 1px solid #222323; }
  .sv_q_rating_item .sv_q_rating_item_text:hover {
    border: 1px solid #2f3030; }

.sv_q_imgsel.checked label > div {
  background-color: #222323; }

.sv_q_file_remove:hover {
  color: #222323; }

.sv-boolean__switch {
  background-color: #222323; }

.sv-boolean__slider {
  background-color: white; }

.sv-boolean__label--disabled {
  color: rgba(64, 64, 64, 0.5); }

.sv_q_image {
  display: inline-block; }

.sv_qstn .sv_q_file .sv-visuallyhidden {
  position: absolute !important;
  opacity: 0; }
.sv_qstn .sv_q_file .sv_q_file_choose_button {
  display: inline-block;
  box-sizing: border-box;
  min-width: 100px;
  line-height: 2em;
  padding: 0.25em 2em;
  font-size: 0.85em;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  cursor: pointer; }
.sv_qstn .sv_q_file .sv_q_file_remove_button {
  padding: 0.25em 2em; }
.sv_qstn .sv_q_file .sv-file__decorator {
  display: inline-block;
  min-width: 250px; }
  .sv_qstn .sv_q_file .sv-file__decorator .sv_q_file_placeholder {
    margin-left: 1em;
    display: inline-block; }

.sjs_sp_container {
  position: relative; }

.sjs_sp_controls {
  position: absolute;
  left: 0;
  bottom: 0; }

.sjs_sp_controls > button {
  user-select: none; }

.sjs_sp_container > div > canvas:focus {
  outline: none; }

table.sv_q_matrix .sv_matrix_dynamic_button, table.sv_q_matrix_dropdown .sv_matrix_dynamic_button, table.sv_q_matrix_dynamic .sv_matrix_dynamic_button {
  padding: 0.3em 2em; }
@media (min-width: 768px) {
  table.sv_q_matrix td {
    min-width: 10em; } }
table.sv_q_matrix td .sv_q_m_label {
  position: static;
  display: block;
  width: 100%; }
table.sv_q_matrix_dropdown .sv_qcbc .sv_q_checkbox_control_label {
  margin-right: 1.5em; }

@media screen and (min-width: 769px) {
  table.sv_q_matrix,
  table.sv_q_matrix_dropdown,
  table.sv_q_matrix_dynamic {
    display: block; }
    table.sv_q_matrix thead,
    table.sv_q_matrix_dropdown thead,
    table.sv_q_matrix_dynamic thead {
      display: none; }
    table.sv_q_matrix tbody,
    table.sv_q_matrix tr,
    table.sv_q_matrix td,
    table.sv_q_matrix_dropdown tbody,
    table.sv_q_matrix_dropdown tr,
    table.sv_q_matrix_dropdown td,
    table.sv_q_matrix_dynamic tbody,
    table.sv_q_matrix_dynamic tr,
    table.sv_q_matrix_dynamic td {
      display: block; }

  table.sv_q_matrix_dropdown td:before,
  table.sv_q_matrix_dynamic td:before {
    content: attr(headers); }

  table.sv_q_matrix td label.sv_q_m_label {
    display: inline; }
  table.sv_q_matrix td:after {
    content: attr(headers); } }
