@charset "UTF-8";
/*
This file is included in optimized-checkout.scss and in theme.scss.
This allows base styles (buttons, etc) to be used in the optimized checkout experience.
*/
/*================ Mixins ================*/
/*============================================================================
    Prefix mixin for generating vendor prefixes.
    Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

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

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
==============================================================================*/
/* ================ Media Query Mixin ================ */
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/**
 * Reverse the properties applied by @mixin visually-hidden
 *
 * Accepts:
 * - $position: {String} Positioning method for element
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Sizing Variables ================*/
/*============================================================================
  Grid
    - Based on CSS Wizardry grid
==============================================================================*/
@import url("//hello.myfonts.net/count/3a88d1");
.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  margin-left: -22px;
  padding: 0; }
  .grid::after {
    clear: both;
    content: "";
    display: table; }

.grid__item {
  float: left;
  padding-left: 22px;
  width: 100%; }
  .grid__item[class*="--push"] {
    position: relative; }

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

.grid--double-gutter {
  margin-left: -44px; }
  .grid--double-gutter > .grid__item {
    padding-left: 44px; }

/*============================================================================
  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;
    float: right;
    text-align: left; }

/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Grid push classes ================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Build Base Grid Classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

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

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

.two-thirds {
  width: 66.66667%; }

/* 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.66667%; }

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

/* Sevenths */
.one-seventh {
  width: 14.28571%; }

.two-sevenths {
  width: 28.57143%; }

.three-sevenths {
  width: 42.85714%; }

.four-sevenths {
  width: 57.14286%; }

.five-sevenths {
  width: 71.42857%; }

.six-sevenths {
  width: 85.71429%; }

/* 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.33333%; }

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

.grid--flex .auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: none;
  width: auto; }

.grid--flex .expand {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  max-width: 100%;
  width: auto; }

.grid--flex .one-whole {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.grid--flex .one-half {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.grid--flex .one-third {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.grid--flex .two-thirds {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.grid--flex .one-quarter {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.grid--flex .two-quarters {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.grid--flex .three-quarters {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.grid--flex .one-fifth {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%; }

.grid--flex .two-fifths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%; }

.grid--flex .three-fifths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%; }

.grid--flex .four-fifths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%; }

.grid--flex .one-sixth {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.grid--flex .two-sixths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.grid--flex .three-sixths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.grid--flex .four-sixths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.grid--flex .five-sixths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.grid--flex .one-eighth {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12.5%;
  flex: 0 0 12.5%;
  max-width: 12.5%; }

.grid--flex .two-eighths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.grid--flex .three-eighths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 37.5%;
  flex: 0 0 37.5%;
  max-width: 37.5%; }

.grid--flex .four-eighths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.grid--flex .five-eighths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 62.5%;
  flex: 0 0 62.5%;
  max-width: 62.5%; }

.grid--flex .six-eighths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.grid--flex .seven-eighths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 87.5%;
  flex: 0 0 87.5%;
  max-width: 87.5%; }

.grid--flex .one-tenth {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%; }

.grid--flex .two-tenths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%; }

.grid--flex .three-tenths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%; }

.grid--flex .four-tenths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%; }

.grid--flex .five-tenths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.grid--flex .six-tenths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%; }

.grid--flex .seven-tenths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%; }

.grid--flex .eight-tenths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%; }

.grid--flex .nine-tenths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%; }

.grid--flex .one-twelfth {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.grid--flex .two-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.grid--flex .three-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.grid--flex .four-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.grid--flex .five-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.grid--flex .six-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.grid--flex .seven-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.grid--flex .eight-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.grid--flex .nine-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.grid--flex .ten-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.grid--flex .eleven-twelfths {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.flex-row {
  -webkit-box-direction: normal !important;
  -webkit-box-orient: horizontal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important; }

.flex-column {
  -webkit-box-direction: normal !important;
  -webkit-box-orient: vertical !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important; }

.flex-row-reverse {
  -webkit-box-direction: reverse !important;
  -webkit-box-orient: horizontal !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  -webkit-box-direction: reverse !important;
  -webkit-box-orient: vertical !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important; }

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  flex-grow: 0 !important;
  -ms-flex-positive: 0 !important; }

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  flex-grow: 1 !important;
  -ms-flex-positive: 1 !important; }

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important; }

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important; }

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important; }

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important; }

.align-items-end {
  align-items: flex-end !important;
  -webkit-box-align: end !important;
  -ms-flex-align: end !important; }

.align-items-center {
  align-items: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important; }

.align-items-baseline {
  align-items: baseline !important;
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important; }

.align-items-stretch {
  align-items: stretch !important;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important; }

.align-content-start {
  align-content: flex-start !important;
  -ms-flex-line-pack: start !important; }

.align-content-end {
  align-content: flex-end !important;
  -ms-flex-line-pack: end !important; }

.align-content-center {
  align-content: center !important;
  -ms-flex-line-pack: center !important; }

.align-content-between {
  align-content: space-between !important;
  -ms-flex-line-pack: justify !important; }

.align-content-around {
  align-content: space-around !important;
  -ms-flex-line-pack: distribute !important; }

.align-content-stretch {
  align-content: stretch !important;
  -ms-flex-line-pack: stretch !important; }

.align-self-auto {
  align-self: auto !important;
  -ms-flex-item-align: auto !important; }

.align-self-start {
  align-self: flex-start !important;
  -ms-flex-item-align: start !important; }

.align-self-end {
  align-self: flex-end !important;
  -ms-flex-item-align: end !important; }

.align-self-center {
  align-self: center !important;
  -ms-flex-item-align: center !important; }

.align-self-baseline {
  align-self: baseline !important;
  -ms-flex-item-align: baseline !important; }

.align-self-stretch {
  align-self: stretch !important;
  -ms-flex-item-align: stretch !important; }

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1; }

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13; }

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0; }

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4; }

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5; }

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6; }

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7; }

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8; }

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9; }

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10; }

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11; }

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12; }

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 479px) {
  /** Whole */
  .xsmall--one-whole {
    width: 100%; }
  /* Halves */
  .xsmall--one-half {
    width: 50%; }
  /* Thirds */
  .xsmall--one-third {
    width: 33.33333%; }
  .xsmall--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .xsmall--one-quarter {
    width: 25%; }
  .xsmall--two-quarters {
    width: 50%; }
  .xsmall--three-quarters {
    width: 75%; }
  /* Fifths */
  .xsmall--one-fifth {
    width: 20%; }
  .xsmall--two-fifths {
    width: 40%; }
  .xsmall--three-fifths {
    width: 60%; }
  .xsmall--four-fifths {
    width: 80%; }
  /* Sixths */
  .xsmall--one-sixth {
    width: 16.66667%; }
  .xsmall--two-sixths {
    width: 33.33333%; }
  .xsmall--three-sixths {
    width: 50%; }
  .xsmall--four-sixths {
    width: 66.66667%; }
  .xsmall--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .xsmall--one-seventh {
    width: 14.28571%; }
  .xsmall--two-sevenths {
    width: 28.57143%; }
  .xsmall--three-sevenths {
    width: 42.85714%; }
  .xsmall--four-sevenths {
    width: 57.14286%; }
  .xsmall--five-sevenths {
    width: 71.42857%; }
  .xsmall--six-sevenths {
    width: 85.71429%; }
  /* Eighths */
  .xsmall--one-eighth {
    width: 12.5%; }
  .xsmall--two-eighths {
    width: 25%; }
  .xsmall--three-eighths {
    width: 37.5%; }
  .xsmall--four-eighths {
    width: 50%; }
  .xsmall--five-eighths {
    width: 62.5%; }
  .xsmall--six-eighths {
    width: 75%; }
  .xsmall--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .xsmall--one-tenth {
    width: 10%; }
  .xsmall--two-tenths {
    width: 20%; }
  .xsmall--three-tenths {
    width: 30%; }
  .xsmall--four-tenths {
    width: 40%; }
  .xsmall--five-tenths {
    width: 50%; }
  .xsmall--six-tenths {
    width: 60%; }
  .xsmall--seven-tenths {
    width: 70%; }
  .xsmall--eight-tenths {
    width: 80%; }
  .xsmall--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .xsmall--one-twelfth {
    width: 8.33333%; }
  .xsmall--two-twelfths {
    width: 16.66667%; }
  .xsmall--three-twelfths {
    width: 25%; }
  .xsmall--four-twelfths {
    width: 33.33333%; }
  .xsmall--five-twelfths {
    width: 41.66667%; }
  .xsmall--six-twelfths {
    width: 50%; }
  .xsmall--seven-twelfths {
    width: 58.33333%; }
  .xsmall--eight-twelfths {
    width: 66.66667%; }
  .xsmall--nine-twelfths {
    width: 75%; }
  .xsmall--ten-twelfths {
    width: 83.33333%; }
  .xsmall--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .xsmall--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .xsmall--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .xsmall--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .xsmall--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xsmall--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xsmall--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xsmall--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xsmall--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xsmall--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xsmall--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .xsmall--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .xsmall--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .xsmall--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .xsmall--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .xsmall--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xsmall--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xsmall--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xsmall--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .xsmall--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .xsmall--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xsmall--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .xsmall--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xsmall--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .xsmall--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xsmall--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .xsmall--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .xsmall--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .xsmall--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .xsmall--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .xsmall--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xsmall--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .xsmall--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .xsmall--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .xsmall--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .xsmall--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .xsmall--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .xsmall--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xsmall--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xsmall--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .xsmall--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xsmall--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .xsmall--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xsmall--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xsmall--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .xsmall--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xsmall--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .xsmall--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .xsmall--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .xsmall--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .xsmall--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .xsmall--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .xsmall--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .xsmall--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .xsmall--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .xsmall--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .xsmall--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .xsmall--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .xsmall--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .xsmall--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .xsmall--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .xsmall--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .xsmall--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .xsmall--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .xsmall--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .xsmall--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .xsmall--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .xsmall--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .xsmall--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .xsmall--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .xsmall--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .xsmall--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .xsmall--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .xsmall--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .xsmall--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .xsmall--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .xsmall--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .xsmall--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .xsmall--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .xsmall--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .xsmall--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .xsmall--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .xsmall--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .xsmall--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .xsmall--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .xsmall--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .xsmall--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .xsmall--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .xsmall--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .xsmall--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .xsmall--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .xsmall--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .xsmall--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .xsmall--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .xsmall--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .grid--uniform .xsmall--one-half:nth-child(2n+1),
  .grid--uniform .xsmall--one-third:nth-child(3n+1),
  .grid--uniform .xsmall--one-quarter:nth-child(4n+1),
  .grid--uniform .xsmall--one-fifth:nth-child(5n+1),
  .grid--uniform .xsmall--one-sixth:nth-child(6n+1),
  .grid--uniform .xsmall--two-sixths:nth-child(3n+1),
  .grid--uniform .xsmall--three-sixths:nth-child(2n+1),
  .grid--uniform .xsmall--one-eighth:nth-child(8n+1),
  .grid--uniform .xsmall--two-eighths:nth-child(4n+1),
  .grid--uniform .xsmall--four-eighths:nth-child(2n+1),
  .grid--uniform .xsmall--five-tenths:nth-child(2n+1),
  .grid--uniform .xsmall--one-twelfth:nth-child(12n+1),
  .grid--uniform .xsmall--two-twelfths:nth-child(6n+1),
  .grid--uniform .xsmall--three-twelfths:nth-child(4n+1),
  .grid--uniform .xsmall--four-twelfths:nth-child(3n+1),
  .grid--uniform .xsmall--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .xsmall--show {
    display: block !important; }
  .xsmall--hide {
    display: none !important; }
  .xsmall--text-left {
    text-align: left !important; }
  .xsmall--text-right {
    text-align: right !important; }
  .xsmall--text-center {
    text-align: center !important; } }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }
  /* Halves */
  .small--one-half {
    width: 50%; }
  /* Thirds */
  .small--one-third {
    width: 33.33333%; }
  .small--two-thirds {
    width: 66.66667%; }
  /* 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.66667%; }
  .small--two-sixths {
    width: 33.33333%; }
  .small--three-sixths {
    width: 50%; }
  .small--four-sixths {
    width: 66.66667%; }
  .small--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .small--one-seventh {
    width: 14.28571%; }
  .small--two-sevenths {
    width: 28.57143%; }
  .small--three-sevenths {
    width: 42.85714%; }
  .small--four-sevenths {
    width: 57.14286%; }
  .small--five-sevenths {
    width: 71.42857%; }
  .small--six-sevenths {
    width: 85.71429%; }
  /* 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.33333%; }
  .small--two-twelfths {
    width: 16.66667%; }
  .small--three-twelfths {
    width: 25%; }
  .small--four-twelfths {
    width: 33.33333%; }
  .small--five-twelfths {
    width: 41.66667%; }
  .small--six-twelfths {
    width: 50%; }
  .small--seven-twelfths {
    width: 58.33333%; }
  .small--eight-twelfths {
    width: 66.66667%; }
  .small--nine-twelfths {
    width: 75%; }
  .small--ten-twelfths {
    width: 83.33333%; }
  .small--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .small--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .small--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .small--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .small--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .small--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .small--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .small--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .small--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .small--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .small--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .small--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .small--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .small--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .small--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .small--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .small--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .small--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .small--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .small--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .small--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .small--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .small--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .small--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .small--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .small--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .small--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .small--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .small--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .small--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .small--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .small--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .small--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .small--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .small--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .small--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .small--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .small--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .small--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .small--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .small--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .small--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .small--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .small--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .small--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .small--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .small--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .small--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .small--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .small--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .small--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .small--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .small--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .small--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .small--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .small--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .small--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .small--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .small--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .small--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .small--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .small--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .small--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .small--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .small--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .small--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .small--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .small--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .small--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .small--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .small--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .small--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .small--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .small--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .small--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .small--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .small--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .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--one-eighth:nth-child(8n+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; }
  .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; } }

@media only screen and (max-width: 767px) {
  /** Whole */
  .small-down--one-whole {
    width: 100%; }
  /* Halves */
  .small-down--one-half {
    width: 50%; }
  /* Thirds */
  .small-down--one-third {
    width: 33.33333%; }
  .small-down--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .small-down--one-quarter {
    width: 25%; }
  .small-down--two-quarters {
    width: 50%; }
  .small-down--three-quarters {
    width: 75%; }
  /* Fifths */
  .small-down--one-fifth {
    width: 20%; }
  .small-down--two-fifths {
    width: 40%; }
  .small-down--three-fifths {
    width: 60%; }
  .small-down--four-fifths {
    width: 80%; }
  /* Sixths */
  .small-down--one-sixth {
    width: 16.66667%; }
  .small-down--two-sixths {
    width: 33.33333%; }
  .small-down--three-sixths {
    width: 50%; }
  .small-down--four-sixths {
    width: 66.66667%; }
  .small-down--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .small-down--one-seventh {
    width: 14.28571%; }
  .small-down--two-sevenths {
    width: 28.57143%; }
  .small-down--three-sevenths {
    width: 42.85714%; }
  .small-down--four-sevenths {
    width: 57.14286%; }
  .small-down--five-sevenths {
    width: 71.42857%; }
  .small-down--six-sevenths {
    width: 85.71429%; }
  /* Eighths */
  .small-down--one-eighth {
    width: 12.5%; }
  .small-down--two-eighths {
    width: 25%; }
  .small-down--three-eighths {
    width: 37.5%; }
  .small-down--four-eighths {
    width: 50%; }
  .small-down--five-eighths {
    width: 62.5%; }
  .small-down--six-eighths {
    width: 75%; }
  .small-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small-down--one-tenth {
    width: 10%; }
  .small-down--two-tenths {
    width: 20%; }
  .small-down--three-tenths {
    width: 30%; }
  .small-down--four-tenths {
    width: 40%; }
  .small-down--five-tenths {
    width: 50%; }
  .small-down--six-tenths {
    width: 60%; }
  .small-down--seven-tenths {
    width: 70%; }
  .small-down--eight-tenths {
    width: 80%; }
  .small-down--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .small-down--one-twelfth {
    width: 8.33333%; }
  .small-down--two-twelfths {
    width: 16.66667%; }
  .small-down--three-twelfths {
    width: 25%; }
  .small-down--four-twelfths {
    width: 33.33333%; }
  .small-down--five-twelfths {
    width: 41.66667%; }
  .small-down--six-twelfths {
    width: 50%; }
  .small-down--seven-twelfths {
    width: 58.33333%; }
  .small-down--eight-twelfths {
    width: 66.66667%; }
  .small-down--nine-twelfths {
    width: 75%; }
  .small-down--ten-twelfths {
    width: 83.33333%; }
  .small-down--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .small-down--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .small-down--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .small-down--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .small-down--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-down--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small-down--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small-down--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small-down--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-down--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small-down--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .small-down--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .small-down--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .small-down--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .small-down--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .small-down--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small-down--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-down--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small-down--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .small-down--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .small-down--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small-down--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .small-down--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-down--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .small-down--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small-down--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .small-down--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .small-down--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .small-down--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .small-down--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .small-down--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-down--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .small-down--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .small-down--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .small-down--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .small-down--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .small-down--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .small-down--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small-down--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small-down--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .small-down--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-down--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .small-down--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small-down--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small-down--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .small-down--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .small-down--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .small-down--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .small-down--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .small-down--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .small-down--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .small-down--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .small-down--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .small-down--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .small-down--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .small-down--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .small-down--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .small-down--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .small-down--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .small-down--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .small-down--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .small-down--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .small-down--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .small-down--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .small-down--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .small-down--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .small-down--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .small-down--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .small-down--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .small-down--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .small-down--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .small-down--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .small-down--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .small-down--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .small-down--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .small-down--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .small-down--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .small-down--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .small-down--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .small-down--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .small-down--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .small-down--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .small-down--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .small-down--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .small-down--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .small-down--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .small-down--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .small-down--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .small-down--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .small-down--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .small-down--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .small-down--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .small-down--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .small-down--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .small-down--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .grid--uniform .small-down--one-half:nth-child(2n+1),
  .grid--uniform .small-down--one-third:nth-child(3n+1),
  .grid--uniform .small-down--one-quarter:nth-child(4n+1),
  .grid--uniform .small-down--one-fifth:nth-child(5n+1),
  .grid--uniform .small-down--one-sixth:nth-child(6n+1),
  .grid--uniform .small-down--two-sixths:nth-child(3n+1),
  .grid--uniform .small-down--three-sixths:nth-child(2n+1),
  .grid--uniform .small-down--one-eighth:nth-child(8n+1),
  .grid--uniform .small-down--two-eighths:nth-child(4n+1),
  .grid--uniform .small-down--four-eighths:nth-child(2n+1),
  .grid--uniform .small-down--five-tenths:nth-child(2n+1),
  .grid--uniform .small-down--one-twelfth:nth-child(12n+1),
  .grid--uniform .small-down--two-twelfths:nth-child(6n+1),
  .grid--uniform .small-down--three-twelfths:nth-child(4n+1),
  .grid--uniform .small-down--four-twelfths:nth-child(3n+1),
  .grid--uniform .small-down--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .small-down--show {
    display: block !important; }
  .small-down--hide {
    display: none !important; }
  .small-down--text-left {
    text-align: left !important; }
  .small-down--text-right {
    text-align: right !important; }
  .small-down--text-center {
    text-align: center !important; } }

@media only screen and (min-width: 768px) and (max-width: 990px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }
  /* Halves */
  .medium--one-half {
    width: 50%; }
  /* Thirds */
  .medium--one-third {
    width: 33.33333%; }
  .medium--two-thirds {
    width: 66.66667%; }
  /* 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.66667%; }
  .medium--two-sixths {
    width: 33.33333%; }
  .medium--three-sixths {
    width: 50%; }
  .medium--four-sixths {
    width: 66.66667%; }
  .medium--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .medium--one-seventh {
    width: 14.28571%; }
  .medium--two-sevenths {
    width: 28.57143%; }
  .medium--three-sevenths {
    width: 42.85714%; }
  .medium--four-sevenths {
    width: 57.14286%; }
  .medium--five-sevenths {
    width: 71.42857%; }
  .medium--six-sevenths {
    width: 85.71429%; }
  /* 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.33333%; }
  .medium--two-twelfths {
    width: 16.66667%; }
  .medium--three-twelfths {
    width: 25%; }
  .medium--four-twelfths {
    width: 33.33333%; }
  .medium--five-twelfths {
    width: 41.66667%; }
  .medium--six-twelfths {
    width: 50%; }
  .medium--seven-twelfths {
    width: 58.33333%; }
  .medium--eight-twelfths {
    width: 66.66667%; }
  .medium--nine-twelfths {
    width: 75%; }
  .medium--ten-twelfths {
    width: 83.33333%; }
  .medium--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .medium--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .medium--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .medium--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .medium--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .medium--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .medium--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .medium--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .medium--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .medium--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .medium--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .medium--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .medium--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .medium--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .medium--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .medium--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .medium--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .medium--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .medium--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .medium--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .medium--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .medium--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .medium--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .medium--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .medium--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .medium--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .medium--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .medium--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .medium--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .medium--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .medium--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .medium--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .medium--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .medium--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .medium--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .medium--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .medium--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .medium--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .medium--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .medium--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .medium--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .medium--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .medium--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .medium--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .medium--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .medium--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .medium--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .medium--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .medium--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .medium--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .medium--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .medium--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .medium--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .medium--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .medium--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .medium--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .medium--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .medium--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .medium--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .medium--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .medium--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .medium--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .medium--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .medium--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .medium--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .medium--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .medium--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .medium--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .medium--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .medium--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .medium--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .medium--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .medium--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .medium--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .medium--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .medium--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .medium--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .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--one-eighth:nth-child(8n+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; }
  .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; } }

@media only screen and (min-width: 768px) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%; }
  /* Halves */
  .medium-up--one-half {
    width: 50%; }
  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%; }
  .medium-up--two-thirds {
    width: 66.66667%; }
  /* 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.66667%; }
  .medium-up--two-sixths {
    width: 33.33333%; }
  .medium-up--three-sixths {
    width: 50%; }
  .medium-up--four-sixths {
    width: 66.66667%; }
  .medium-up--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .medium-up--one-seventh {
    width: 14.28571%; }
  .medium-up--two-sevenths {
    width: 28.57143%; }
  .medium-up--three-sevenths {
    width: 42.85714%; }
  .medium-up--four-sevenths {
    width: 57.14286%; }
  .medium-up--five-sevenths {
    width: 71.42857%; }
  .medium-up--six-sevenths {
    width: 85.71429%; }
  /* 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.33333%; }
  .medium-up--two-twelfths {
    width: 16.66667%; }
  .medium-up--three-twelfths {
    width: 25%; }
  .medium-up--four-twelfths {
    width: 33.33333%; }
  .medium-up--five-twelfths {
    width: 41.66667%; }
  .medium-up--six-twelfths {
    width: 50%; }
  .medium-up--seven-twelfths {
    width: 58.33333%; }
  .medium-up--eight-twelfths {
    width: 66.66667%; }
  .medium-up--nine-twelfths {
    width: 75%; }
  .medium-up--ten-twelfths {
    width: 83.33333%; }
  .medium-up--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .medium-up--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .medium-up--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .medium-up--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .medium-up--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-up--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium-up--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium-up--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium-up--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-up--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium-up--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .medium-up--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .medium-up--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .medium-up--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .medium-up--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .medium-up--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium-up--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-up--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium-up--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .medium-up--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .medium-up--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium-up--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .medium-up--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-up--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .medium-up--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium-up--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .medium-up--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .medium-up--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .medium-up--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .medium-up--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .medium-up--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-up--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .medium-up--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .medium-up--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .medium-up--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .medium-up--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .medium-up--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .medium-up--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium-up--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium-up--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .medium-up--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-up--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .medium-up--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium-up--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium-up--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .medium-up--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .medium-up--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .medium-up--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .medium-up--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .medium-up--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .medium-up--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .medium-up--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .medium-up--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .medium-up--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .medium-up--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .medium-up--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .medium-up--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .medium-up--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .medium-up--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .medium-up--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .medium-up--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .medium-up--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .medium-up--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .medium-up--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .medium-up--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .medium-up--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .medium-up--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .medium-up--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .medium-up--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .medium-up--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .medium-up--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .medium-up--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .medium-up--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .medium-up--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .medium-up--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .medium-up--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .medium-up--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .medium-up--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .medium-up--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .medium-up--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .medium-up--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .medium-up--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .medium-up--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .medium-up--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .medium-up--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .medium-up--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .medium-up--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .medium-up--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .medium-up--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .medium-up--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .medium-up--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .medium-up--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .medium-up--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .medium-up--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .medium-up--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .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--one-eighth:nth-child(8n+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; }
  .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; } }

@media only screen and (min-width: 991px) {
  /** Whole */
  .large-up--one-whole {
    width: 100%; }
  /* Halves */
  .large-up--one-half {
    width: 50%; }
  /* Thirds */
  .large-up--one-third {
    width: 33.33333%; }
  .large-up--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .large-up--one-quarter {
    width: 25%; }
  .large-up--two-quarters {
    width: 50%; }
  .large-up--three-quarters {
    width: 75%; }
  /* Fifths */
  .large-up--one-fifth {
    width: 20%; }
  .large-up--two-fifths {
    width: 40%; }
  .large-up--three-fifths {
    width: 60%; }
  .large-up--four-fifths {
    width: 80%; }
  /* Sixths */
  .large-up--one-sixth {
    width: 16.66667%; }
  .large-up--two-sixths {
    width: 33.33333%; }
  .large-up--three-sixths {
    width: 50%; }
  .large-up--four-sixths {
    width: 66.66667%; }
  .large-up--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .large-up--one-seventh {
    width: 14.28571%; }
  .large-up--two-sevenths {
    width: 28.57143%; }
  .large-up--three-sevenths {
    width: 42.85714%; }
  .large-up--four-sevenths {
    width: 57.14286%; }
  .large-up--five-sevenths {
    width: 71.42857%; }
  .large-up--six-sevenths {
    width: 85.71429%; }
  /* Eighths */
  .large-up--one-eighth {
    width: 12.5%; }
  .large-up--two-eighths {
    width: 25%; }
  .large-up--three-eighths {
    width: 37.5%; }
  .large-up--four-eighths {
    width: 50%; }
  .large-up--five-eighths {
    width: 62.5%; }
  .large-up--six-eighths {
    width: 75%; }
  .large-up--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large-up--one-tenth {
    width: 10%; }
  .large-up--two-tenths {
    width: 20%; }
  .large-up--three-tenths {
    width: 30%; }
  .large-up--four-tenths {
    width: 40%; }
  .large-up--five-tenths {
    width: 50%; }
  .large-up--six-tenths {
    width: 60%; }
  .large-up--seven-tenths {
    width: 70%; }
  .large-up--eight-tenths {
    width: 80%; }
  .large-up--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .large-up--one-twelfth {
    width: 8.33333%; }
  .large-up--two-twelfths {
    width: 16.66667%; }
  .large-up--three-twelfths {
    width: 25%; }
  .large-up--four-twelfths {
    width: 33.33333%; }
  .large-up--five-twelfths {
    width: 41.66667%; }
  .large-up--six-twelfths {
    width: 50%; }
  .large-up--seven-twelfths {
    width: 58.33333%; }
  .large-up--eight-twelfths {
    width: 66.66667%; }
  .large-up--nine-twelfths {
    width: 75%; }
  .large-up--ten-twelfths {
    width: 83.33333%; }
  .large-up--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .large-up--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .large-up--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .large-up--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .large-up--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large-up--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .large-up--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .large-up--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .large-up--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large-up--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .large-up--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .large-up--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .large-up--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .large-up--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .large-up--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .large-up--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .large-up--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large-up--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .large-up--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .large-up--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .large-up--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .large-up--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .large-up--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large-up--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .large-up--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .large-up--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .large-up--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .large-up--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .large-up--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .large-up--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .large-up--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large-up--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .large-up--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .large-up--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .large-up--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .large-up--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .large-up--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .large-up--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .large-up--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .large-up--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .large-up--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large-up--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .large-up--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .large-up--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .large-up--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .large-up--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .large-up--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .large-up--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .large-up--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .large-up--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .large-up--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .large-up--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .large-up--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .large-up--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .large-up--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .large-up--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .large-up--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .large-up--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .large-up--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .large-up--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .large-up--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .large-up--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .large-up--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .large-up--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .large-up--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .large-up--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .large-up--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .large-up--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .large-up--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .large-up--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .large-up--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .large-up--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .large-up--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .large-up--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .large-up--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .large-up--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .large-up--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .large-up--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .large-up--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .large-up--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .large-up--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .large-up--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .large-up--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .large-up--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .large-up--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .large-up--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .large-up--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .large-up--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .large-up--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .large-up--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .large-up--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .large-up--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .large-up--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .large-up--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .large-up--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .grid--uniform .large-up--one-half:nth-child(2n+1),
  .grid--uniform .large-up--one-third:nth-child(3n+1),
  .grid--uniform .large-up--one-quarter:nth-child(4n+1),
  .grid--uniform .large-up--one-fifth:nth-child(5n+1),
  .grid--uniform .large-up--one-sixth:nth-child(6n+1),
  .grid--uniform .large-up--two-sixths:nth-child(3n+1),
  .grid--uniform .large-up--three-sixths:nth-child(2n+1),
  .grid--uniform .large-up--one-eighth:nth-child(8n+1),
  .grid--uniform .large-up--two-eighths:nth-child(4n+1),
  .grid--uniform .large-up--four-eighths:nth-child(2n+1),
  .grid--uniform .large-up--five-tenths:nth-child(2n+1),
  .grid--uniform .large-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .large-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .large-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .large-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .large-up--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .large-up--show {
    display: block !important; }
  .large-up--hide {
    display: none !important; }
  .large-up--text-left {
    text-align: left !important; }
  .large-up--text-right {
    text-align: right !important; }
  .large-up--text-center {
    text-align: center !important; } }

@media only screen and (min-width: 991px) and (max-width: 1199px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }
  /* Halves */
  .large--one-half {
    width: 50%; }
  /* Thirds */
  .large--one-third {
    width: 33.33333%; }
  .large--two-thirds {
    width: 66.66667%; }
  /* 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.66667%; }
  .large--two-sixths {
    width: 33.33333%; }
  .large--three-sixths {
    width: 50%; }
  .large--four-sixths {
    width: 66.66667%; }
  .large--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .large--one-seventh {
    width: 14.28571%; }
  .large--two-sevenths {
    width: 28.57143%; }
  .large--three-sevenths {
    width: 42.85714%; }
  .large--four-sevenths {
    width: 57.14286%; }
  .large--five-sevenths {
    width: 71.42857%; }
  .large--six-sevenths {
    width: 85.71429%; }
  /* 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.33333%; }
  .large--two-twelfths {
    width: 16.66667%; }
  .large--three-twelfths {
    width: 25%; }
  .large--four-twelfths {
    width: 33.33333%; }
  .large--five-twelfths {
    width: 41.66667%; }
  .large--six-twelfths {
    width: 50%; }
  .large--seven-twelfths {
    width: 58.33333%; }
  .large--eight-twelfths {
    width: 66.66667%; }
  .large--nine-twelfths {
    width: 75%; }
  .large--ten-twelfths {
    width: 83.33333%; }
  .large--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .large--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .large--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .large--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .large--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .large--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .large--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .large--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .large--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .large--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .large--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .large--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .large--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .large--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .large--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .large--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .large--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .large--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .large--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .large--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .large--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .large--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .large--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .large--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .large--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .large--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .large--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .large--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .large--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .large--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .large--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .large--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .large--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .large--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .large--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .large--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .large--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .large--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .large--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .large--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .large--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .large--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .large--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .large--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .large--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .large--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .large--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .large--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .large--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .large--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .large--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .large--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .large--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .large--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .large--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .large--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .large--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .large--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .large--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .large--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .large--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .large--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .large--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .large--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .large--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .large--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .large--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .large--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .large--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .large--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .large--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .large--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .large--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .large--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .large--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .large--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .large--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .large--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .large--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .large--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .large--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .large--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .large--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .large--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .large--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .large--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .large--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .large--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .large--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .large--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .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--one-eighth:nth-child(8n+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; }
  .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; } }

@media only screen and (min-width: 1200px) {
  /** Whole */
  .xlarge-up--one-whole {
    width: 100%; }
  /* Halves */
  .xlarge-up--one-half {
    width: 50%; }
  /* Thirds */
  .xlarge-up--one-third {
    width: 33.33333%; }
  .xlarge-up--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .xlarge-up--one-quarter {
    width: 25%; }
  .xlarge-up--two-quarters {
    width: 50%; }
  .xlarge-up--three-quarters {
    width: 75%; }
  /* Fifths */
  .xlarge-up--one-fifth {
    width: 20%; }
  .xlarge-up--two-fifths {
    width: 40%; }
  .xlarge-up--three-fifths {
    width: 60%; }
  .xlarge-up--four-fifths {
    width: 80%; }
  /* Sixths */
  .xlarge-up--one-sixth {
    width: 16.66667%; }
  .xlarge-up--two-sixths {
    width: 33.33333%; }
  .xlarge-up--three-sixths {
    width: 50%; }
  .xlarge-up--four-sixths {
    width: 66.66667%; }
  .xlarge-up--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .xlarge-up--one-seventh {
    width: 14.28571%; }
  .xlarge-up--two-sevenths {
    width: 28.57143%; }
  .xlarge-up--three-sevenths {
    width: 42.85714%; }
  .xlarge-up--four-sevenths {
    width: 57.14286%; }
  .xlarge-up--five-sevenths {
    width: 71.42857%; }
  .xlarge-up--six-sevenths {
    width: 85.71429%; }
  /* Eighths */
  .xlarge-up--one-eighth {
    width: 12.5%; }
  .xlarge-up--two-eighths {
    width: 25%; }
  .xlarge-up--three-eighths {
    width: 37.5%; }
  .xlarge-up--four-eighths {
    width: 50%; }
  .xlarge-up--five-eighths {
    width: 62.5%; }
  .xlarge-up--six-eighths {
    width: 75%; }
  .xlarge-up--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .xlarge-up--one-tenth {
    width: 10%; }
  .xlarge-up--two-tenths {
    width: 20%; }
  .xlarge-up--three-tenths {
    width: 30%; }
  .xlarge-up--four-tenths {
    width: 40%; }
  .xlarge-up--five-tenths {
    width: 50%; }
  .xlarge-up--six-tenths {
    width: 60%; }
  .xlarge-up--seven-tenths {
    width: 70%; }
  .xlarge-up--eight-tenths {
    width: 80%; }
  .xlarge-up--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .xlarge-up--one-twelfth {
    width: 8.33333%; }
  .xlarge-up--two-twelfths {
    width: 16.66667%; }
  .xlarge-up--three-twelfths {
    width: 25%; }
  .xlarge-up--four-twelfths {
    width: 33.33333%; }
  .xlarge-up--five-twelfths {
    width: 41.66667%; }
  .xlarge-up--six-twelfths {
    width: 50%; }
  .xlarge-up--seven-twelfths {
    width: 58.33333%; }
  .xlarge-up--eight-twelfths {
    width: 66.66667%; }
  .xlarge-up--nine-twelfths {
    width: 75%; }
  .xlarge-up--ten-twelfths {
    width: 83.33333%; }
  .xlarge-up--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .xlarge-up--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .xlarge-up--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .xlarge-up--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .xlarge-up--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-up--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge-up--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge-up--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge-up--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-up--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge-up--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .xlarge-up--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .xlarge-up--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .xlarge-up--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .xlarge-up--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .xlarge-up--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge-up--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-up--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge-up--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .xlarge-up--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .xlarge-up--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge-up--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .xlarge-up--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-up--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .xlarge-up--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge-up--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .xlarge-up--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .xlarge-up--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .xlarge-up--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .xlarge-up--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .xlarge-up--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-up--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .xlarge-up--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .xlarge-up--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .xlarge-up--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .xlarge-up--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .xlarge-up--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .xlarge-up--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge-up--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge-up--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .xlarge-up--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-up--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .xlarge-up--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge-up--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge-up--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .xlarge-up--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xlarge-up--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .xlarge-up--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .xlarge-up--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .xlarge-up--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .xlarge-up--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .xlarge-up--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .xlarge-up--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .xlarge-up--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .xlarge-up--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .xlarge-up--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .xlarge-up--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .xlarge-up--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .xlarge-up--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .xlarge-up--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .xlarge-up--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .xlarge-up--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .xlarge-up--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .xlarge-up--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .xlarge-up--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .xlarge-up--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .xlarge-up--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .xlarge-up--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .xlarge-up--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .xlarge-up--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .xlarge-up--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .xlarge-up--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .xlarge-up--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .xlarge-up--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .xlarge-up--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .xlarge-up--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .xlarge-up--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .xlarge-up--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .xlarge-up--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .xlarge-up--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .xlarge-up--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .xlarge-up--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .xlarge-up--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .xlarge-up--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .xlarge-up--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .xlarge-up--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .xlarge-up--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .xlarge-up--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .xlarge-up--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .xlarge-up--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .xlarge-up--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .xlarge-up--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .xlarge-up--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .xlarge-up--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .xlarge-up--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .grid--uniform .xlarge-up--one-half:nth-child(2n+1),
  .grid--uniform .xlarge-up--one-third:nth-child(3n+1),
  .grid--uniform .xlarge-up--one-quarter:nth-child(4n+1),
  .grid--uniform .xlarge-up--one-fifth:nth-child(5n+1),
  .grid--uniform .xlarge-up--one-sixth:nth-child(6n+1),
  .grid--uniform .xlarge-up--two-sixths:nth-child(3n+1),
  .grid--uniform .xlarge-up--three-sixths:nth-child(2n+1),
  .grid--uniform .xlarge-up--one-eighth:nth-child(8n+1),
  .grid--uniform .xlarge-up--two-eighths:nth-child(4n+1),
  .grid--uniform .xlarge-up--four-eighths:nth-child(2n+1),
  .grid--uniform .xlarge-up--five-tenths:nth-child(2n+1),
  .grid--uniform .xlarge-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .xlarge-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .xlarge-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .xlarge-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .xlarge-up--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .xlarge-up--show {
    display: block !important; }
  .xlarge-up--hide {
    display: none !important; }
  .xlarge-up--text-left {
    text-align: left !important; }
  .xlarge-up--text-right {
    text-align: right !important; }
  .xlarge-up--text-center {
    text-align: center !important; } }

@media only screen and (max-width: 1399px) {
  /** Whole */
  .xlarge-down--one-whole {
    width: 100%; }
  /* Halves */
  .xlarge-down--one-half {
    width: 50%; }
  /* Thirds */
  .xlarge-down--one-third {
    width: 33.33333%; }
  .xlarge-down--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .xlarge-down--one-quarter {
    width: 25%; }
  .xlarge-down--two-quarters {
    width: 50%; }
  .xlarge-down--three-quarters {
    width: 75%; }
  /* Fifths */
  .xlarge-down--one-fifth {
    width: 20%; }
  .xlarge-down--two-fifths {
    width: 40%; }
  .xlarge-down--three-fifths {
    width: 60%; }
  .xlarge-down--four-fifths {
    width: 80%; }
  /* Sixths */
  .xlarge-down--one-sixth {
    width: 16.66667%; }
  .xlarge-down--two-sixths {
    width: 33.33333%; }
  .xlarge-down--three-sixths {
    width: 50%; }
  .xlarge-down--four-sixths {
    width: 66.66667%; }
  .xlarge-down--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .xlarge-down--one-seventh {
    width: 14.28571%; }
  .xlarge-down--two-sevenths {
    width: 28.57143%; }
  .xlarge-down--three-sevenths {
    width: 42.85714%; }
  .xlarge-down--four-sevenths {
    width: 57.14286%; }
  .xlarge-down--five-sevenths {
    width: 71.42857%; }
  .xlarge-down--six-sevenths {
    width: 85.71429%; }
  /* Eighths */
  .xlarge-down--one-eighth {
    width: 12.5%; }
  .xlarge-down--two-eighths {
    width: 25%; }
  .xlarge-down--three-eighths {
    width: 37.5%; }
  .xlarge-down--four-eighths {
    width: 50%; }
  .xlarge-down--five-eighths {
    width: 62.5%; }
  .xlarge-down--six-eighths {
    width: 75%; }
  .xlarge-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .xlarge-down--one-tenth {
    width: 10%; }
  .xlarge-down--two-tenths {
    width: 20%; }
  .xlarge-down--three-tenths {
    width: 30%; }
  .xlarge-down--four-tenths {
    width: 40%; }
  .xlarge-down--five-tenths {
    width: 50%; }
  .xlarge-down--six-tenths {
    width: 60%; }
  .xlarge-down--seven-tenths {
    width: 70%; }
  .xlarge-down--eight-tenths {
    width: 80%; }
  .xlarge-down--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .xlarge-down--one-twelfth {
    width: 8.33333%; }
  .xlarge-down--two-twelfths {
    width: 16.66667%; }
  .xlarge-down--three-twelfths {
    width: 25%; }
  .xlarge-down--four-twelfths {
    width: 33.33333%; }
  .xlarge-down--five-twelfths {
    width: 41.66667%; }
  .xlarge-down--six-twelfths {
    width: 50%; }
  .xlarge-down--seven-twelfths {
    width: 58.33333%; }
  .xlarge-down--eight-twelfths {
    width: 66.66667%; }
  .xlarge-down--nine-twelfths {
    width: 75%; }
  .xlarge-down--ten-twelfths {
    width: 83.33333%; }
  .xlarge-down--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .xlarge-down--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .xlarge-down--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .xlarge-down--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .xlarge-down--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-down--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge-down--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge-down--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge-down--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-down--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge-down--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .xlarge-down--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .xlarge-down--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .xlarge-down--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .xlarge-down--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .xlarge-down--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge-down--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-down--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge-down--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .xlarge-down--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .xlarge-down--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge-down--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .xlarge-down--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-down--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .xlarge-down--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge-down--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .xlarge-down--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .xlarge-down--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .xlarge-down--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .xlarge-down--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .xlarge-down--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-down--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .xlarge-down--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .xlarge-down--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .xlarge-down--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .xlarge-down--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .xlarge-down--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .xlarge-down--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge-down--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge-down--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .xlarge-down--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge-down--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .xlarge-down--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge-down--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge-down--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .xlarge-down--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xlarge-down--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .xlarge-down--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .xlarge-down--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .xlarge-down--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .xlarge-down--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .xlarge-down--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .xlarge-down--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .xlarge-down--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .xlarge-down--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .xlarge-down--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .xlarge-down--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .xlarge-down--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .xlarge-down--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .xlarge-down--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .xlarge-down--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .xlarge-down--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .xlarge-down--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .xlarge-down--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .xlarge-down--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .xlarge-down--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .xlarge-down--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .xlarge-down--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .xlarge-down--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .xlarge-down--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .xlarge-down--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .xlarge-down--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .xlarge-down--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .xlarge-down--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .xlarge-down--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .xlarge-down--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .xlarge-down--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .xlarge-down--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .xlarge-down--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .xlarge-down--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .xlarge-down--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .xlarge-down--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .xlarge-down--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .xlarge-down--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .xlarge-down--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .xlarge-down--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .xlarge-down--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .xlarge-down--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .xlarge-down--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .xlarge-down--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .xlarge-down--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .xlarge-down--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .xlarge-down--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .xlarge-down--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .xlarge-down--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .grid--uniform .xlarge-down--one-half:nth-child(2n+1),
  .grid--uniform .xlarge-down--one-third:nth-child(3n+1),
  .grid--uniform .xlarge-down--one-quarter:nth-child(4n+1),
  .grid--uniform .xlarge-down--one-fifth:nth-child(5n+1),
  .grid--uniform .xlarge-down--one-sixth:nth-child(6n+1),
  .grid--uniform .xlarge-down--two-sixths:nth-child(3n+1),
  .grid--uniform .xlarge-down--three-sixths:nth-child(2n+1),
  .grid--uniform .xlarge-down--one-eighth:nth-child(8n+1),
  .grid--uniform .xlarge-down--two-eighths:nth-child(4n+1),
  .grid--uniform .xlarge-down--four-eighths:nth-child(2n+1),
  .grid--uniform .xlarge-down--five-tenths:nth-child(2n+1),
  .grid--uniform .xlarge-down--one-twelfth:nth-child(12n+1),
  .grid--uniform .xlarge-down--two-twelfths:nth-child(6n+1),
  .grid--uniform .xlarge-down--three-twelfths:nth-child(4n+1),
  .grid--uniform .xlarge-down--four-twelfths:nth-child(3n+1),
  .grid--uniform .xlarge-down--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .xlarge-down--show {
    display: block !important; }
  .xlarge-down--hide {
    display: none !important; }
  .xlarge-down--text-left {
    text-align: left !important; }
  .xlarge-down--text-right {
    text-align: right !important; }
  .xlarge-down--text-center {
    text-align: center !important; } }

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  /** Whole */
  .xlarge--one-whole {
    width: 100%; }
  /* Halves */
  .xlarge--one-half {
    width: 50%; }
  /* Thirds */
  .xlarge--one-third {
    width: 33.33333%; }
  .xlarge--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .xlarge--one-quarter {
    width: 25%; }
  .xlarge--two-quarters {
    width: 50%; }
  .xlarge--three-quarters {
    width: 75%; }
  /* Fifths */
  .xlarge--one-fifth {
    width: 20%; }
  .xlarge--two-fifths {
    width: 40%; }
  .xlarge--three-fifths {
    width: 60%; }
  .xlarge--four-fifths {
    width: 80%; }
  /* Sixths */
  .xlarge--one-sixth {
    width: 16.66667%; }
  .xlarge--two-sixths {
    width: 33.33333%; }
  .xlarge--three-sixths {
    width: 50%; }
  .xlarge--four-sixths {
    width: 66.66667%; }
  .xlarge--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .xlarge--one-seventh {
    width: 14.28571%; }
  .xlarge--two-sevenths {
    width: 28.57143%; }
  .xlarge--three-sevenths {
    width: 42.85714%; }
  .xlarge--four-sevenths {
    width: 57.14286%; }
  .xlarge--five-sevenths {
    width: 71.42857%; }
  .xlarge--six-sevenths {
    width: 85.71429%; }
  /* Eighths */
  .xlarge--one-eighth {
    width: 12.5%; }
  .xlarge--two-eighths {
    width: 25%; }
  .xlarge--three-eighths {
    width: 37.5%; }
  .xlarge--four-eighths {
    width: 50%; }
  .xlarge--five-eighths {
    width: 62.5%; }
  .xlarge--six-eighths {
    width: 75%; }
  .xlarge--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .xlarge--one-tenth {
    width: 10%; }
  .xlarge--two-tenths {
    width: 20%; }
  .xlarge--three-tenths {
    width: 30%; }
  .xlarge--four-tenths {
    width: 40%; }
  .xlarge--five-tenths {
    width: 50%; }
  .xlarge--six-tenths {
    width: 60%; }
  .xlarge--seven-tenths {
    width: 70%; }
  .xlarge--eight-tenths {
    width: 80%; }
  .xlarge--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .xlarge--one-twelfth {
    width: 8.33333%; }
  .xlarge--two-twelfths {
    width: 16.66667%; }
  .xlarge--three-twelfths {
    width: 25%; }
  .xlarge--four-twelfths {
    width: 33.33333%; }
  .xlarge--five-twelfths {
    width: 41.66667%; }
  .xlarge--six-twelfths {
    width: 50%; }
  .xlarge--seven-twelfths {
    width: 58.33333%; }
  .xlarge--eight-twelfths {
    width: 66.66667%; }
  .xlarge--nine-twelfths {
    width: 75%; }
  .xlarge--ten-twelfths {
    width: 83.33333%; }
  .xlarge--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .xlarge--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .xlarge--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .xlarge--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .xlarge--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .xlarge--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .xlarge--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .xlarge--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .xlarge--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .xlarge--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .xlarge--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .xlarge--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .xlarge--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .xlarge--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .xlarge--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .xlarge--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .xlarge--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .xlarge--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .xlarge--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .xlarge--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .xlarge--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .xlarge--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .xlarge--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .xlarge--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .xlarge--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .xlarge--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .xlarge--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .xlarge--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .xlarge--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .xlarge--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .xlarge--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .xlarge--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .xlarge--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xlarge--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .xlarge--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .xlarge--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .xlarge--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .xlarge--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .xlarge--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .xlarge--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .xlarge--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .xlarge--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .xlarge--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .xlarge--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .xlarge--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .xlarge--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .xlarge--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .xlarge--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .xlarge--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .xlarge--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .xlarge--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .xlarge--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .xlarge--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .xlarge--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .xlarge--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .xlarge--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .xlarge--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .xlarge--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .xlarge--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .xlarge--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .xlarge--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .xlarge--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .xlarge--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .xlarge--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .xlarge--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .xlarge--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .xlarge--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .xlarge--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .xlarge--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .xlarge--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .xlarge--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .xlarge--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .xlarge--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .xlarge--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .xlarge--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .xlarge--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .xlarge--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .xlarge--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .xlarge--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .xlarge--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .xlarge--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .xlarge--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .grid--uniform .xlarge--one-half:nth-child(2n+1),
  .grid--uniform .xlarge--one-third:nth-child(3n+1),
  .grid--uniform .xlarge--one-quarter:nth-child(4n+1),
  .grid--uniform .xlarge--one-fifth:nth-child(5n+1),
  .grid--uniform .xlarge--one-sixth:nth-child(6n+1),
  .grid--uniform .xlarge--two-sixths:nth-child(3n+1),
  .grid--uniform .xlarge--three-sixths:nth-child(2n+1),
  .grid--uniform .xlarge--one-eighth:nth-child(8n+1),
  .grid--uniform .xlarge--two-eighths:nth-child(4n+1),
  .grid--uniform .xlarge--four-eighths:nth-child(2n+1),
  .grid--uniform .xlarge--five-tenths:nth-child(2n+1),
  .grid--uniform .xlarge--one-twelfth:nth-child(12n+1),
  .grid--uniform .xlarge--two-twelfths:nth-child(6n+1),
  .grid--uniform .xlarge--three-twelfths:nth-child(4n+1),
  .grid--uniform .xlarge--four-twelfths:nth-child(3n+1),
  .grid--uniform .xlarge--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .xlarge--show {
    display: block !important; }
  .xlarge--hide {
    display: none !important; }
  .xlarge--text-left {
    text-align: left !important; }
  .xlarge--text-right {
    text-align: right !important; }
  .xlarge--text-center {
    text-align: center !important; } }

@media only screen and (max-width: 990px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }
  /* Halves */
  .medium-down--one-half {
    width: 50%; }
  /* Thirds */
  .medium-down--one-third {
    width: 33.33333%; }
  .medium-down--two-thirds {
    width: 66.66667%; }
  /* 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.66667%; }
  .medium-down--two-sixths {
    width: 33.33333%; }
  .medium-down--three-sixths {
    width: 50%; }
  .medium-down--four-sixths {
    width: 66.66667%; }
  .medium-down--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .medium-down--one-seventh {
    width: 14.28571%; }
  .medium-down--two-sevenths {
    width: 28.57143%; }
  .medium-down--three-sevenths {
    width: 42.85714%; }
  .medium-down--four-sevenths {
    width: 57.14286%; }
  .medium-down--five-sevenths {
    width: 71.42857%; }
  .medium-down--six-sevenths {
    width: 85.71429%; }
  /* 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.33333%; }
  .medium-down--two-twelfths {
    width: 16.66667%; }
  .medium-down--three-twelfths {
    width: 25%; }
  .medium-down--four-twelfths {
    width: 33.33333%; }
  .medium-down--five-twelfths {
    width: 41.66667%; }
  .medium-down--six-twelfths {
    width: 50%; }
  .medium-down--seven-twelfths {
    width: 58.33333%; }
  .medium-down--eight-twelfths {
    width: 66.66667%; }
  .medium-down--nine-twelfths {
    width: 75%; }
  .medium-down--ten-twelfths {
    width: 83.33333%; }
  .medium-down--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .medium-down--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .medium-down--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .medium-down--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .medium-down--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-down--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium-down--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium-down--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium-down--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-down--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium-down--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .medium-down--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .medium-down--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .medium-down--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .medium-down--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .medium-down--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium-down--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-down--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium-down--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .medium-down--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .medium-down--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium-down--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .medium-down--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-down--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .medium-down--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium-down--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .medium-down--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .medium-down--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .medium-down--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .medium-down--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .medium-down--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-down--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .medium-down--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .medium-down--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .medium-down--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .medium-down--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .medium-down--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .medium-down--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .medium-down--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .medium-down--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .medium-down--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .medium-down--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .medium-down--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .medium-down--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .medium-down--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .medium-down--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .medium-down--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .medium-down--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .medium-down--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .medium-down--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .medium-down--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .medium-down--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .medium-down--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .medium-down--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .medium-down--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .medium-down--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .medium-down--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .medium-down--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .medium-down--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .medium-down--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .medium-down--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .medium-down--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .medium-down--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .medium-down--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .medium-down--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .medium-down--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .medium-down--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .medium-down--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .medium-down--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .medium-down--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .medium-down--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .medium-down--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .medium-down--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .medium-down--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .medium-down--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .medium-down--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .medium-down--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .medium-down--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .medium-down--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .medium-down--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .medium-down--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .medium-down--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .medium-down--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .medium-down--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .medium-down--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .medium-down--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .medium-down--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .medium-down--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .medium-down--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .medium-down--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .medium-down--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .medium-down--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .medium-down--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .medium-down--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .medium-down--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .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--one-eighth:nth-child(8n+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; }
  .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; } }

@media only screen and (min-width: 1400px) {
  /** Whole */
  .widescreen--one-whole {
    width: 100%; }
  /* Halves */
  .widescreen--one-half {
    width: 50%; }
  /* Thirds */
  .widescreen--one-third {
    width: 33.33333%; }
  .widescreen--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .widescreen--one-quarter {
    width: 25%; }
  .widescreen--two-quarters {
    width: 50%; }
  .widescreen--three-quarters {
    width: 75%; }
  /* Fifths */
  .widescreen--one-fifth {
    width: 20%; }
  .widescreen--two-fifths {
    width: 40%; }
  .widescreen--three-fifths {
    width: 60%; }
  .widescreen--four-fifths {
    width: 80%; }
  /* Sixths */
  .widescreen--one-sixth {
    width: 16.66667%; }
  .widescreen--two-sixths {
    width: 33.33333%; }
  .widescreen--three-sixths {
    width: 50%; }
  .widescreen--four-sixths {
    width: 66.66667%; }
  .widescreen--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  .widescreen--one-seventh {
    width: 14.28571%; }
  .widescreen--two-sevenths {
    width: 28.57143%; }
  .widescreen--three-sevenths {
    width: 42.85714%; }
  .widescreen--four-sevenths {
    width: 57.14286%; }
  .widescreen--five-sevenths {
    width: 71.42857%; }
  .widescreen--six-sevenths {
    width: 85.71429%; }
  /* Eighths */
  .widescreen--one-eighth {
    width: 12.5%; }
  .widescreen--two-eighths {
    width: 25%; }
  .widescreen--three-eighths {
    width: 37.5%; }
  .widescreen--four-eighths {
    width: 50%; }
  .widescreen--five-eighths {
    width: 62.5%; }
  .widescreen--six-eighths {
    width: 75%; }
  .widescreen--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .widescreen--one-tenth {
    width: 10%; }
  .widescreen--two-tenths {
    width: 20%; }
  .widescreen--three-tenths {
    width: 30%; }
  .widescreen--four-tenths {
    width: 40%; }
  .widescreen--five-tenths {
    width: 50%; }
  .widescreen--six-tenths {
    width: 60%; }
  .widescreen--seven-tenths {
    width: 70%; }
  .widescreen--eight-tenths {
    width: 80%; }
  .widescreen--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .widescreen--one-twelfth {
    width: 8.33333%; }
  .widescreen--two-twelfths {
    width: 16.66667%; }
  .widescreen--three-twelfths {
    width: 25%; }
  .widescreen--four-twelfths {
    width: 33.33333%; }
  .widescreen--five-twelfths {
    width: 41.66667%; }
  .widescreen--six-twelfths {
    width: 50%; }
  .widescreen--seven-twelfths {
    width: 58.33333%; }
  .widescreen--eight-twelfths {
    width: 66.66667%; }
  .widescreen--nine-twelfths {
    width: 75%; }
  .widescreen--ten-twelfths {
    width: 83.33333%; }
  .widescreen--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .widescreen--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    width: auto; }
  .grid--flex .widescreen--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .widescreen--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .widescreen--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .widescreen--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .widescreen--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .widescreen--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .widescreen--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .widescreen--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .widescreen--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .widescreen--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .widescreen--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .widescreen--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .widescreen--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .widescreen--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .widescreen--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .widescreen--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .widescreen--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .widescreen--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .widescreen--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .widescreen--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .widescreen--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .widescreen--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .widescreen--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .widescreen--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .widescreen--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .widescreen--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .widescreen--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .widescreen--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .widescreen--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .widescreen--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .widescreen--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .widescreen--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .widescreen--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .widescreen--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .widescreen--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .widescreen--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .widescreen--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .widescreen--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .widescreen--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .widescreen--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .widescreen--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .widescreen--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .widescreen--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .widescreen--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .widescreen--flex-row {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .widescreen--flex-column {
    -webkit-box-direction: normal !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .widescreen--flex-row-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .widescreen--flex-column-reverse {
    -webkit-box-direction: reverse !important;
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .widescreen--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .widescreen--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .widescreen--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .widescreen--flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .widescreen--flex-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important; }
  .widescreen--flex-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important; }
  .widescreen--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .widescreen--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .widescreen--justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .widescreen--justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .widescreen--justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .widescreen--justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .widescreen--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .widescreen--align-items-start {
    align-items: flex-start !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important; }
  .widescreen--align-items-end {
    align-items: flex-end !important;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important; }
  .widescreen--align-items-center {
    align-items: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important; }
  .widescreen--align-items-baseline {
    align-items: baseline !important;
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important; }
  .widescreen--align-items-stretch {
    align-items: stretch !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important; }
  .widescreen--align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important; }
  .widescreen--align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important; }
  .widescreen--align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important; }
  .widescreen--align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important; }
  .widescreen--align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important; }
  .widescreen--align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important; }
  .widescreen--align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important; }
  .widescreen--align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important; }
  .widescreen--align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important; }
  .widescreen--align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important; }
  .widescreen--align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important; }
  .widescreen--align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important; }
  .widescreen--order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .widescreen--order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .widescreen--order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .widescreen--order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .widescreen--order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .widescreen--order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .widescreen--order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .widescreen--order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .widescreen--order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .widescreen--order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .widescreen--order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .widescreen--order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .widescreen--order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .widescreen--order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .widescreen--order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .grid--uniform .widescreen--one-half:nth-child(2n+1),
  .grid--uniform .widescreen--one-third:nth-child(3n+1),
  .grid--uniform .widescreen--one-quarter:nth-child(4n+1),
  .grid--uniform .widescreen--one-fifth:nth-child(5n+1),
  .grid--uniform .widescreen--one-sixth:nth-child(6n+1),
  .grid--uniform .widescreen--two-sixths:nth-child(3n+1),
  .grid--uniform .widescreen--three-sixths:nth-child(2n+1),
  .grid--uniform .widescreen--one-eighth:nth-child(8n+1),
  .grid--uniform .widescreen--two-eighths:nth-child(4n+1),
  .grid--uniform .widescreen--four-eighths:nth-child(2n+1),
  .grid--uniform .widescreen--five-tenths:nth-child(2n+1),
  .grid--uniform .widescreen--one-twelfth:nth-child(12n+1),
  .grid--uniform .widescreen--two-twelfths:nth-child(6n+1),
  .grid--uniform .widescreen--three-twelfths:nth-child(4n+1),
  .grid--uniform .widescreen--four-twelfths:nth-child(3n+1),
  .grid--uniform .widescreen--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .widescreen--show {
    display: block !important; }
  .widescreen--hide {
    display: none !important; }
  .widescreen--text-left {
    text-align: left !important; }
  .widescreen--text-right {
    text-align: right !important; }
  .widescreen--text-center {
    text-align: center !important; } }

/*================ Build Grid Push Classes ================*/
@media only screen and (min-width: 768px) {
  /* Halves */
  .medium-up--push-one-half {
    left: 50%; }
  /* Thirds */
  .medium-up--push-one-third {
    left: 33.33333%; }
  .medium-up--push-two-thirds {
    left: 66.66667%; }
  /* Quarters */
  .medium-up--push-one-quarter {
    left: 25%; }
  .medium-up--push-two-quarters {
    left: 50%; }
  .medium-up--push-three-quarters {
    left: 75%; }
  /* Fifths */
  .medium-up--push-one-fifth {
    left: 20%; }
  .medium-up--push-two-fifths {
    left: 40%; }
  .medium-up--push-three-fifths {
    left: 60%; }
  .medium-up--push-four-fifths {
    left: 80%; }
  /* Sixths */
  .medium-up--push-one-sixth {
    left: 16.66667%; }
  .medium-up--push-two-sixths {
    left: 33.33333%; }
  .medium-up--push-three-sixths {
    left: 50%; }
  .medium-up--push-four-sixths {
    left: 66.66667%; }
  .medium-up--push-five-sixths {
    left: 83.33333%; }
  /* Eighths */
  .medium-up--push-one-eighth {
    left: 12.5%; }
  .medium-up--push-two-eighths {
    left: 25%; }
  .medium-up--push-three-eighths {
    left: 37.5%; }
  .medium-up--push-four-eighths {
    left: 50%; }
  .medium-up--push-five-eighths {
    left: 62.5%; }
  .medium-up--push-six-eighths {
    left: 75%; }
  .medium-up--push-seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .medium-up--push-one-tenth {
    left: 10%; }
  .medium-up--push-two-tenths {
    left: 20%; }
  .medium-up--push-three-tenths {
    left: 30%; }
  .medium-up--push-four-tenths {
    left: 40%; }
  .medium-up--push-five-tenths {
    left: 50%; }
  .medium-up--push-six-tenths {
    left: 60%; }
  .medium-up--push-seven-tenths {
    left: 70%; }
  .medium-up--push-eight-tenths {
    left: 80%; }
  .medium-up--push-nine-tenths {
    left: 90%; }
  /* Twelfths */
  .medium-up--push-one-twelfth {
    left: 8.33333%; }
  .medium-up--push-two-twelfths {
    left: 16.66667%; }
  .medium-up--push-three-twelfths {
    left: 25%; }
  .medium-up--push-four-twelfths {
    left: 33.33333%; }
  .medium-up--push-five-twelfths {
    left: 41.66667%; }
  .medium-up--push-six-twelfths {
    left: 50%; }
  .medium-up--push-seven-twelfths {
    left: 58.33333%; }
  .medium-up--push-eight-twelfths {
    left: 66.66667%; }
  .medium-up--push-nine-twelfths {
    left: 75%; }
  .medium-up--push-ten-twelfths {
    left: 83.33333%; }
  .medium-up--push-eleven-twelfths {
    left: 91.66667%; } }

@media only screen and (min-width: 1200px) {
  /* Halves */
  .xlarge-up--push-one-half {
    left: 50%; }
  /* Thirds */
  .xlarge-up--push-one-third {
    left: 33.33333%; }
  .xlarge-up--push-two-thirds {
    left: 66.66667%; }
  /* Quarters */
  .xlarge-up--push-one-quarter {
    left: 25%; }
  .xlarge-up--push-two-quarters {
    left: 50%; }
  .xlarge-up--push-three-quarters {
    left: 75%; }
  /* Fifths */
  .xlarge-up--push-one-fifth {
    left: 20%; }
  .xlarge-up--push-two-fifths {
    left: 40%; }
  .xlarge-up--push-three-fifths {
    left: 60%; }
  .xlarge-up--push-four-fifths {
    left: 80%; }
  /* Sixths */
  .xlarge-up--push-one-sixth {
    left: 16.66667%; }
  .xlarge-up--push-two-sixths {
    left: 33.33333%; }
  .xlarge-up--push-three-sixths {
    left: 50%; }
  .xlarge-up--push-four-sixths {
    left: 66.66667%; }
  .xlarge-up--push-five-sixths {
    left: 83.33333%; }
  /* Eighths */
  .xlarge-up--push-one-eighth {
    left: 12.5%; }
  .xlarge-up--push-two-eighths {
    left: 25%; }
  .xlarge-up--push-three-eighths {
    left: 37.5%; }
  .xlarge-up--push-four-eighths {
    left: 50%; }
  .xlarge-up--push-five-eighths {
    left: 62.5%; }
  .xlarge-up--push-six-eighths {
    left: 75%; }
  .xlarge-up--push-seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .xlarge-up--push-one-tenth {
    left: 10%; }
  .xlarge-up--push-two-tenths {
    left: 20%; }
  .xlarge-up--push-three-tenths {
    left: 30%; }
  .xlarge-up--push-four-tenths {
    left: 40%; }
  .xlarge-up--push-five-tenths {
    left: 50%; }
  .xlarge-up--push-six-tenths {
    left: 60%; }
  .xlarge-up--push-seven-tenths {
    left: 70%; }
  .xlarge-up--push-eight-tenths {
    left: 80%; }
  .xlarge-up--push-nine-tenths {
    left: 90%; }
  /* Twelfths */
  .xlarge-up--push-one-twelfth {
    left: 8.33333%; }
  .xlarge-up--push-two-twelfths {
    left: 16.66667%; }
  .xlarge-up--push-three-twelfths {
    left: 25%; }
  .xlarge-up--push-four-twelfths {
    left: 33.33333%; }
  .xlarge-up--push-five-twelfths {
    left: 41.66667%; }
  .xlarge-up--push-six-twelfths {
    left: 50%; }
  .xlarge-up--push-seven-twelfths {
    left: 58.33333%; }
  .xlarge-up--push-eight-twelfths {
    left: 66.66667%; }
  .xlarge-up--push-nine-twelfths {
    left: 75%; }
  .xlarge-up--push-ten-twelfths {
    left: 83.33333%; }
  .xlarge-up--push-eleven-twelfths {
    left: 91.66667%; } }

.grid--table {
  display: table;
  table-layout: fixed;
  width: calc(100% + 22px); }
  .grid--table.grid--full {
    width: 100%; }
  .grid--table > .grid__item {
    display: table-cell;
    float: none;
    vertical-align: middle; }
  .grid--table::after {
    display: none; }

@media only screen and (min-width: 768px) {
  .grid-medium-up--table {
    display: table;
    table-layout: fixed;
    width: calc(100% + 22px); }
    .grid-medium-up--table.grid--full {
      width: 100%; }
    .grid-medium-up--table > .grid__item {
      display: table-cell;
      float: none;
      vertical-align: middle; }
    .grid-medium-up--table::after {
      display: none; } }

@media only screen and (min-width: 991px) {
  .grid-large-up--table {
    display: table;
    table-layout: fixed;
    width: calc(100% + 22px); }
    .grid-large-up--table.grid--full {
      width: 100%; }
    .grid-large-up--table > .grid__item {
      display: table-cell;
      float: none;
      vertical-align: middle; }
    .grid-large-up--table::after {
      display: none; } }

.grid--inline {
  font-size: 0;
  text-align: center; }
  .grid--inline > .grid__item {
    display: inline-block;
    float: none;
    font-size: 16px;
    vertical-align: top; }

.grid--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% + 22px); }
  .grid--flex > .grid__item {
    float: none; }

.flex-video {
  height: 0;
  margin-bottom: 16px;
  overflow: hidden;
  padding-bottom: 67.5%;
  padding-top: 25px;
  position: relative; }
  .flex-video.widescreen {
    padding-bottom: 56.34%; }
  .flex-video.vimeo {
    padding-top: 0; }
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0; }

@keyframes loading {
  0% {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0); }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg); } }

@keyframes loading {
  0% {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0); }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg); } }

.form-field {
  margin-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .form-field {
      margin-bottom: 30px; } }

.form-input,
.form-select {
  background-color: #fff;
  border-bottom-width: 1px;
  border-color: #979797;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  color: #1e1e1e;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  height: 45px;
  letter-spacing: 0;
  padding: 0 12px; }
  .form-input.placeholder,
  .form-select.placeholder {
    color: #979797; }
  .form-input:-moz-placeholder,
  .form-select:-moz-placeholder {
    color: #979797; }
  .form-input::-moz-placeholder,
  .form-select::-moz-placeholder {
    color: #979797; }
  .form-input:-ms-input-placeholder,
  .form-select:-ms-input-placeholder {
    color: #979797; }
  .form-input::-webkit-input-placeholder,
  .form-select::-webkit-input-placeholder {
    color: #979797; }

.form-input:focus, .form-input:active {
  background-color: #fff;
  border-color: #1e1e1e; }

.form-input.atc-select {
  height: auto; }

textarea[rows] {
  height: auto;
  width: 100%; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z' fill='rgba(0, 0, 0, 0.999)' /%3E%3C/svg%3E");
  background-position: right 4px top 6px;
  background-repeat: no-repeat;
  border-radius: 0;
  padding-right: 20px; }

.form-label {
  display: inline-block;
  margin-bottom: 10px; }

label[for] {
  cursor: pointer; }

.form-label--inlineSmall small {
  color: #9c9c9c;
  float: none;
  font-size: inherit;
  margin-left: 5px;
  text-transform: none; }

.form--hiddenLabels .form-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px; }

.form--input-borders .form-input,
.form--input-borders .form-select {
  border-width: 1px;
  padding-left: 10px; }

.form-inlineMessage {
  display: block; }

.form-field--error .form-input {
  float: none; }

.form-field--error .form-inlineMessage {
  color: #ff7d7d;
  font-size: 14px; }
  .form-field--error .form-inlineMessage::before {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z' fill='#ff7d7d' /%3E%3C/svg%3E") no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    height: 14px;
    left: -2px;
    margin-right: 1px;
    position: relative;
    top: 3px;
    width: 14px; }

.form-field--success .form-input[type="text"] {
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='#333' /%3E%3C/svg%3E");
  background-position: right 9px center;
  background-repeat: no-repeat; }

.form-checkbox,
.form-radio {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px; }
  .form-checkbox + .form-label:last-child,
  .form-radio + .form-label:last-child {
    display: block;
    margin-bottom: -4px; }
  .form-checkbox + .form-label::after,
  .form-radio + .form-label::after {
    background: #fff;
    border: 1px solid #1e1e1e;
    content: "";
    display: inline-block;
    height: 15px;
    margin-left: 5px;
    position: relative;
    top: 2px;
    width: 15px; }
  .form-checkbox:checked + .form-label::after,
  .form-radio:checked + .form-label::after {
    background: #1e1e1e; }
  .form-checkbox:focus + .form-label::after,
  .form-radio:focus + .form-label::after {
    -webkit-outline: 5px auto #0096ff;
    -moz-outline: 5px auto #0096ff;
    -ms-outline: 5px auto #0096ff;
    -o-outline: 5px auto #0096ff;
    outline: 5px auto #0096ff; }

.form-option-wrapper {
  display: inline-block;
  position: relative; }
  .form-option-wrapper .form-radio,
  .form-option-wrapper .form-checkbox {
    bottom: 0.5rem;
    left: 0.5rem; }

.form-actions {
  display: block;
  text-align: center; }
  .form-actions .button, .form-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .form-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .form-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .form-actions .yotpo-default-button,
  .form-actions input,
  .form-actions a {
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: top; }
    .form-actions .button:last-child, .form-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:last-child, #MainContent .yotpo .main-widget .form-actions .yotpo-bottomline-2-boxes > .yotpo-default-button:last-child, .form-actions #MainContent .yotpo .main-widget form .yotpo-default-button:last-child, #MainContent .yotpo .main-widget form .form-actions .yotpo-default-button:last-child,
    .form-actions input:last-child,
    .form-actions a:last-child {
      margin-right: 0; }

.form-label--alternate {
  margin-bottom: 10px; }

.form-select--date {
  width: initial; }
  .form-select--date + .form-select--date {
    margin-left: 5px; }

.form-select--small,
.form-select--date {
  background-position: right 5px top 7px;
  background-size: 18px;
  font-size: 14px;
  height: 35px;
  line-height: 16px;
  max-width: 320px;
  padding: 4px 7px;
  padding-right: 20px; }

.form-select--short {
  max-width: 96px;
  width: 72px; }

.form-file {
  margin-bottom: 7px; }

.form-fileDescription {
  font-size: 14px; }

.form-field-group {
  border: 1px solid #979797;
  border-radius: 0;
  padding: 20px; }

.form-prefixPostfix.wrap {
  flex-wrap: wrap; }

.form-prefixPostfix .form-input,
.form-prefixPostfix .button,
.form-prefixPostfix #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button,
#MainContent .yotpo .main-widget .form-prefixPostfix .yotpo-bottomline-2-boxes > .yotpo-default-button,
.form-prefixPostfix #MainContent .yotpo .main-widget form .yotpo-default-button,
#MainContent .yotpo .main-widget form .form-prefixPostfix .yotpo-default-button {
  display: block;
  width: 100%; }

@media only screen and (min-width: 991px) {
  .form-prefixPostfix .form-input {
    width: auto; } }

@media only screen and (min-width: 991px) {
  
  .form-prefixPostfix .button,
  .form-prefixPostfix #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button,
  #MainContent .yotpo .main-widget .form-prefixPostfix .yotpo-bottomline-2-boxes > .yotpo-default-button,
  .form-prefixPostfix #MainContent .yotpo .main-widget form .yotpo-default-button,
  #MainContent .yotpo .main-widget form .form-prefixPostfix .yotpo-default-button {
    width: auto; } }

.form-prefixPostfix .form-inlineMessage {
  margin-bottom: 5px; }
  @media only screen and (min-width: 991px) {
    .form-prefixPostfix .form-inlineMessage {
      margin-bottom: 0; } }

.form-prefixPostfix-button--postfix {
  margin: 10px 0 0;
  order: 1; }
  @media only screen and (min-width: 991px) {
    .form-prefixPostfix-button--postfix {
      margin: 0 0 0 10px;
      order: 0; } }

.add-increment-wrap {
  display: inline-block; }
  .add-increment-wrap .form-field--increments {
    display: block;
    margin-bottom: 0; }
    .add-increment-wrap .form-field--increments label {
      display: block;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 9.5px;
      text-transform: uppercase; }
    .add-increment-wrap .form-field--increments .form-increments-wrap {
      display: inline-block;
      vertical-align: middle; }

.form-increment > div {
  display: inline-block;
  vertical-align: middle; }
  .form-increment > div.increment-input-wrap {
    margin: 0 7px;
    width: 51px; }
  .form-increment > div.increment-button-wrap {
    width: 51px; }
    .form-increment > div.increment-button-wrap .button, .form-increment > div.increment-button-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .form-increment > div.increment-button-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button, .form-increment > div.increment-button-wrap #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .form-increment > div.increment-button-wrap .yotpo-default-button {
      border: 1px solid #979797;
      color: #1e1e1e;
      display: block;
      height: 51px;
      line-height: 56px;
      margin: 0;
      padding: 0;
      width: 100%; }
      .form-increment > div.increment-button-wrap .button .icon, .form-increment > div.increment-button-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, #MainContent .yotpo .main-widget .form-increment > div.increment-button-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, .form-increment > div.increment-button-wrap #MainContent .yotpo .main-widget form .yotpo-default-button .icon, #MainContent .yotpo .main-widget form .form-increment > div.increment-button-wrap .yotpo-default-button .icon {
        height: 15px;
        width: 15px; }
    .form-increment > div.increment-button-wrap:first-child .button, .form-increment > div.increment-button-wrap:first-child #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .form-increment > div.increment-button-wrap:first-child .yotpo-bottomline-2-boxes > .yotpo-default-button, .form-increment > div.increment-button-wrap:first-child #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .form-increment > div.increment-button-wrap:first-child .yotpo-default-button {
      line-height: 20px; }
      .form-increment > div.increment-button-wrap:first-child .button .icon, .form-increment > div.increment-button-wrap:first-child #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, #MainContent .yotpo .main-widget .form-increment > div.increment-button-wrap:first-child .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, .form-increment > div.increment-button-wrap:first-child #MainContent .yotpo .main-widget form .yotpo-default-button .icon, #MainContent .yotpo .main-widget form .form-increment > div.increment-button-wrap:first-child .yotpo-default-button .icon {
        height: 2px; }

.form-input--incrementTotal {
  border: 1px solid #979797;
  color: #1e1e1e;
  display: block;
  height: 51px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: center;
  width: 100%; }
  .form-input--incrementTotal, .form-input--incrementTotal:focus {
    background: #fff; }

.single-swatch-option {
  display: inline-block;
  vertical-align: top; }

.form-option {
  border: 1px solid #979797;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 50px;
  margin-bottom: 10px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 0;
  vertical-align: top;
  width: 50px; }
  .form-option:hover {
    background-color: #ededed;
    border-color: #1e1e1e; }
  .form-radio:checked + .form-option {
    background-color: #1e1e1e;
    border-color: #1e1e1e;
    color: #fff; }
  .form-option .image-wrapper {
    background-color: #fff;
    left: 0;
    position: absolute;
    top: 0; }
    .form-option .image-wrapper img {
      display: block; }
  .form-option.form-option-swatch {
    border: 1px solid transparent; }
    .form-option.form-option-swatch:hover {
      border-color: #1e1e1e; }
    .form-radio:checked + .form-option.form-option-swatch {
      border: 1px solid #1e1e1e;
      overflow: hidden;
      position: relative; }
      .form-radio:checked + .form-option.form-option-swatch::after {
        bottom: 0;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0; }

.form-option-variant {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 2px;
  line-height: 50px;
  min-width: 50px;
  pointer-events: none;
  text-align: center;
  width: 100%; }

.form-option-variant--color,
.form-option-variant--pattern {
  min-width: initial;
  padding: 0; }

.form-option-variant--pattern {
  background-position: center;
  background-repeat: no-repeat; }

.form-input--small {
  font-size: 14px;
  height: 35px;
  line-height: 16px;
  padding: 4px 7px; }

.form-minMaxRow {
  *zoom: 1;
  margin-left: -5px; }
  .form-minMaxRow::after {
    clear: both;
    content: "";
    display: table; }
  .form-minMaxRow .form-field {
    float: left;
    margin-bottom: 0;
    padding-left: 5px;
    width: 25%; }
    .form-minMaxRow .form-field input {
      max-width: 100%;
      padding: 0;
      padding-left: 5px; }
    .form-minMaxRow .form-field:last-child {
      width: 50%; }
  .form-minMaxRow .button, .form-minMaxRow #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .form-minMaxRow .yotpo-bottomline-2-boxes > .yotpo-default-button, .form-minMaxRow #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .form-minMaxRow .yotpo-default-button {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%; }

.form-row--half {
  *zoom: 1; }
  .form-row--half::after {
    clear: both;
    content: "";
    display: table; }
  @media only screen and (min-width: 480px) {
    .form-row--half {
      margin-left: -22px; } }
  @media only screen and (min-width: 480px) {
    .form-row--half > .form-field {
      float: left;
      padding-left: 22px;
      width: 50%; } }
  .form-row--half > .form-field .form-input {
    width: 100%; }

@media only screen and (min-width: 480px) {
  .form-row--half > .form-field:nth-child(odd) {
    clear: left; } }

[data-product-attribute] .form-option {
  overflow: hidden;
  position: relative; }
  [data-product-attribute] .form-option.unavailable::before {
    background-color: #1e1e1e;
    content: "";
    height: 1px;
    left: -9px;
    position: absolute;
    top: 24px;
    transform: rotate(-45deg);
    width: 67px; }

[data-product-attribute="set-radio"] .unavailable,
[data-product-attribute="product-list"] .unavailable {
  opacity: 0.3;
  text-decoration: line-through; }

.form.display-flex {
  display: flex;
  width: 100%; }
  .form.display-flex .form-field,
  .form.display-flex .form-input {
    margin: 0;
    width: 100%; }
  .form.display-flex .form-label {
    display: inline-block;
    margin-bottom: 0; }
  .form.display-flex .button, .form.display-flex #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .form.display-flex .yotpo-bottomline-2-boxes > .yotpo-default-button, .form.display-flex #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .form.display-flex .yotpo-default-button {
    height: 45px;
    line-height: 45px; }

.form--inline .flex-wrap {
  display: flex; }

.form--inline .form-label {
  display: block;
  margin-bottom: 0; }

.form--inline .field_group {
  display: inherit;
  width: 100%; }
  .form--inline .field_group input {
    background: #fff;
    border: 1px solid transparent;
    border-bottom-color: #1e1e1e;
    height: 50px;
    width: 100%; }

.form--inline .button, .form--inline #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .form--inline .yotpo-bottomline-2-boxes > .yotpo-default-button, .form--inline #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .form--inline .yotpo-default-button {
  padding: 0 15px; }
  .form--inline .button .icon, .form--inline #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, #MainContent .yotpo .main-widget .form--inline .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, .form--inline #MainContent .yotpo .main-widget form .yotpo-default-button .icon, #MainContent .yotpo .main-widget form .form--inline .yotpo-default-button .icon {
    height: 10px;
    width: 20px; }

.lazyload[data-bg],
.lazyloading[data-bg] {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 150px !important; }

.lazyloaded.lazy-cover[data-bg] {
  background-size: cover !important; }

.lazyload.opacity,
.lazyloading.opacity,
.lazyloaded.opacity {
  transition: opacity 400ms ease; }

.lazyload.opacity,
.lazyloading.opacity {
  opacity: 0; }

.lazyloaded.opacity {
  opacity: 1; }

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

h1, .h1,
h2,
.h2,
#MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span,
h3,
.h3,
h4,
.h4,
.card-body .price-section,
#MainContent .yotpo .main-widget .y-label.yotpo-header-title,
h5,
.h5,
.tab .tab-title,
.promo-bar,
.productView-options .form-label,
.productView-options .form-field [data-option-value],
.cart-header-item,
.cart-total-label,
.cart-total-value,
.account-product-description + .definitionList .definitionList-key,
.mobile-cart a,
.footer-bottom p,
.footer-bottom .p,
.footer-bottom a,
h6,
.h6,
.price-heading {
  color: #1e1e1e;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  margin-top: 0;
  text-transform: uppercase; }

h1, .h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2.29px; }
  @media only screen and (min-width: 768px) {
    h1, .h1 {
      font-size: 37px; } }


h2,
.h2,
#MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 0.893em; }
  @media only screen and (min-width: 768px) {
    
    h2,
    .h2,
    #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span {
      font-size: 28px; } }


h3,
.h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  text-transform: none; }
  @media only screen and (min-width: 768px) {
    
    h3,
    .h3 {
      font-size: 21px; } }


h4,
.h4,
.card-body .price-section,
#MainContent .yotpo .main-widget .y-label.yotpo-header-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2.29px; }


h5,
.h5,
.tab .tab-title,
.promo-bar,
.productView-options .form-label,
.productView-options .form-field [data-option-value],
.cart-header-item,
.cart-total-label,
.cart-total-value,
.account-product-description + .definitionList .definitionList-key,
.mobile-cart a,
.footer-bottom p,
.footer-bottom .p,
.footer-bottom a {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px; }


h6,
.h6 {
  font-size: 14px;
  font-weight: 300; }

.price-heading {
  font-size: 16px;
  font-weight: 900;
  line-height: 22px; }

.small {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px; }

.smaller {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px; }

.h0 {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    .h0 {
      font-size: 70px; } }

ul,
ol,
dl,
p,
.p {
  color: #1e1e1e;
  letter-spacing: 0;
  line-height: 1.375;
  margin-top: 0;
  padding: 0; }

a {
  color: #1e1e1e; }
  a:hover {
    color: #1e1e1e; }

#skip-to-main-content-link {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  text-decoration: underline; }
  #skip-to-main-content-link:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: auto;
    position: inherit !important;
    width: auto;
    display: block;
    font-size: 16px;
    margin: 7px auto 3px;
    max-width: 180px;
    padding: 10px;
    text-align: center;
    z-index: 103; }
    #skip-to-main-content-link:focus ~ div .header.fixed {
      top: 60px; }

.focus-hidden:focus {
  outline: none; }

address {
  font-style: normal; }

hr {
  border: 0 none;
  border-bottom: 1px solid #979797;
  margin: 0 auto; }

.color-textSecondary {
  color: #9c9c9c; }

.color-secondary {
  color: #1e1e1e; }

.pagination-item, .heroCarousel .slick-dots::before, .heroCarousel .slick-dots::after, .cart-item-title .change-remove-wrap a, #MainContent .yotpo .main-widget .yotpo-review .yotpo-user-name, #MainContent .yotpo .main-widget .yotpo-review .content-title, .navPages-action, .footer-info-list a, .footer-info-address-col, #vip-tiers .vip-tier .vip-tier-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2.29px;
  text-transform: uppercase; }

.rte ul,
.rte ol {
  margin-bottom: 20px;
  padding-left: 20px; }
  @media only screen and (min-width: 768px) {
    .rte ul,
    .rte ol {
      margin-bottom: 30px;
      padding-left: 30px; } }
  .rte ul ul,
  .rte ul ol,
  .rte ol ul,
  .rte ol ol {
    margin-bottom: 0; }
  .rte ul.spaced-list > li,
  .rte ol.spaced-list > li {
    margin-bottom: 22px; }
    .rte ul.spaced-list > li:last-of-type,
    .rte ol.spaced-list > li:last-of-type {
      margin-bottom: 0; }

.rte a:hover {
  text-decoration: underline; }

.rte .video-wrapper {
  margin-bottom: 22px; }

.rte h2, .rte .h2, .rte #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span, #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .rte span,
.rte h3,
.rte .h3,
.rte h4,
.rte .h4,
.rte .card-body .price-section,
.card-body .rte .price-section,
.rte #MainContent .yotpo .main-widget .y-label.yotpo-header-title,
#MainContent .yotpo .main-widget .rte .y-label.yotpo-header-title,
.rte h5,
.rte .h5,
.rte .tab .tab-title,
.tab .rte .tab-title,
.rte .promo-bar,
.rte .productView-options .form-label,
.productView-options .rte .form-label,
.rte .productView-options .form-field [data-option-value],
.productView-options .form-field .rte [data-option-value],
.rte .cart-header-item,
.rte .cart-total-label,
.rte .cart-total-value,
.rte .account-product-description + .definitionList .definitionList-key,
.account-product-description + .definitionList .rte .definitionList-key,
.rte .mobile-cart a,
.mobile-cart .rte a,
.rte .footer-bottom p,
.footer-bottom .rte p,
.rte .footer-bottom .p,
.footer-bottom .rte .p,
.rte .footer-bottom a,
.footer-bottom .rte a {
  margin-top: 20px; }

.rte img {
  margin-bottom: 20px;
  margin-top: 15px; }

.large-font, .page-header .rte p, .page-header .rte .p {
  font-size: 16px; }
  @media only screen and (min-width: 768px) {
    .large-font, .page-header .rte p, .page-header .rte .p {
      font-size: 21px; } }

.small-font, #MainContent .yotpo .main-widget .yotpo-review .yotpo-review-date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px; }

.text-no-transform {
  text-transform: none !important; }

.button-below {
  margin-bottom: 30px; }

.text-link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2.29px;
  text-decoration: none;
  text-transform: uppercase; }
  .text-link:hover {
    text-decoration: underline; }

.announcement-text {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(17/14); }

.button, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget form .yotpo-default-button {
  -webkit-appearance: none;
  appearance: none;
  background-color: #1e1e1e;
  border: 1px solid transparent;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  letter-spacing: 2.29px;
  line-height: 50px;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap; }
  .button svg, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button svg, #MainContent .yotpo .main-widget form .yotpo-default-button svg {
    fill: currentColor;
    transition: 0s all; }
  .button .icon, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, #MainContent .yotpo .main-widget form .yotpo-default-button .icon {
    height: 15px;
    width: 15px; }
  .button:hover, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:hover, #MainContent .yotpo .main-widget form .yotpo-default-button:hover {
    background-color: #1e1e1e;
    color: #fff; }
  .button[disabled], #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button[disabled], #MainContent .yotpo .main-widget form .yotpo-default-button[disabled] {
    cursor: not-allowed; }
  .button.button--primary, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button--primary.yotpo-default-button, #MainContent .yotpo .main-widget form .button--primary.yotpo-default-button {
    background-color: #1e1e1e;
    border-color: #1e1e1e;
    color: #fff; }
    .button.button--primary:hover, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button--primary.yotpo-default-button:hover, #MainContent .yotpo .main-widget form .button--primary.yotpo-default-button:hover {
      background-color: #ededed;
      color: #1e1e1e; }
  .button.button--secondary, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button--secondary.yotpo-default-button, #MainContent .yotpo .main-widget form .button--secondary.yotpo-default-button {
    background-color: rgba(255, 255, 255, 0.75);
    color: #1e1e1e; }
    .button.button--secondary:hover, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button--secondary.yotpo-default-button:hover, #MainContent .yotpo .main-widget form .button--secondary.yotpo-default-button:hover {
      background-color: #fff;
      color: #1e1e1e; }
  .button.button--border, .swal2-buttonswrapper .button.swal2-cancel, #MainContent .yotpo .main-widget .swal2-buttonswrapper .yotpo-bottomline-2-boxes > .swal2-cancel.yotpo-default-button, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget form .yotpo-default-button {
    background-color: #fff;
    border-color: #1e1e1e;
    color: #1e1e1e; }
    .button.button--border:hover, .swal2-buttonswrapper .button.swal2-cancel:hover, #MainContent .yotpo .main-widget .swal2-buttonswrapper .yotpo-bottomline-2-boxes > .swal2-cancel.yotpo-default-button:hover, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:hover, #MainContent .yotpo .main-widget form .yotpo-default-button:hover {
      background-color: #1e1e1e;
      border-color: #1e1e1e;
      color: #fff; }
      .button.button--border:hover a, .swal2-buttonswrapper .button.swal2-cancel:hover a, #MainContent .yotpo .main-widget .swal2-buttonswrapper .yotpo-bottomline-2-boxes > .swal2-cancel.yotpo-default-button:hover a, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:hover a, #MainContent .yotpo .main-widget form .yotpo-default-button:hover a {
        color: white; }
  .button.button--text, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button--text.yotpo-default-button, #MainContent .yotpo .main-widget form .button--text.yotpo-default-button {
    background-color: transparent;
    color: #9c9c9c; }
    .button.button--text:hover, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button--text.yotpo-default-button:hover, #MainContent .yotpo .main-widget form .button--text.yotpo-default-button:hover {
      color: #1e1e1e; }
  .button.button--small, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button--small.yotpo-default-button, #MainContent .yotpo .main-widget form .button--small.yotpo-default-button {
    font-size: 16px;
    height: 36px;
    line-height: 36px; }
    .button.button--small.button--border, .swal2-buttonswrapper .button.button--small.swal2-cancel, #MainContent .yotpo .main-widget .swal2-buttonswrapper .yotpo-bottomline-2-boxes > .button--small.swal2-cancel.yotpo-default-button, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button--small.yotpo-default-button, #MainContent .yotpo .main-widget form .button--small.yotpo-default-button {
      line-height: 34px; }
  .button.dropdown-button, #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .dropdown-button.yotpo-default-button, #MainContent .yotpo .main-widget form .dropdown-button.yotpo-default-button {
    height: auto !important;
    padding-bottom: 10px !important;
    padding-top: 10px !important; }

.courtesy-icon {
  margin-right: 10px;
  padding-bottom: 5px;
  width: 15px; }

.small-button {
  -webkit-appearance: none;
  appearance: none;
  background-color: #1e1e1e;
  border: 2px solid black;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  height: 35px;
  letter-spacing: 2px;
  margin-left: -6px;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap; }

.table-100 {
  display: table;
  height: 100%;
  width: 100%; }
  .table-100 > div {
    display: table-cell;
    vertical-align: middle; }

.page-banner {
  background-color: #1e1e1e;
  background-position: center;
  background-size: cover;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .page-banner {
      height: 400px;
      margin-bottom: 60px; } }
  .page-banner h1, .page-banner .h1 {
    color: #fff;
    margin: 0; }
  .page-banner .wrapper {
    height: 100%; }

.is-srOnly,
.u-hiddenVisually {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px; }

.page-header {
  text-align: center; }
  .page-header .text-holder {
    margin: 0 auto;
    max-width: 770px;
    padding-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .page-header .text-holder {
        padding-bottom: 63px; } }
  .page-header .image-wrapper {
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .page-header .image-wrapper {
        margin-bottom: 50px; } }
    .page-header .image-wrapper img {
      display: block;
      width: 100%; }

.grey-bg {
  background-color: #f8f7f6; }

.scrollable-table {
  overflow-x: auto; }

.popup-youtube {
  display: block;
  position: relative; }
  .popup-youtube::before {
    background-color: rgba(30, 30, 30, 0.6);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: 0.3s ease all;
    width: 100%; }
  .popup-youtube svg {
    fill: #fff;
    height: 71px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 71px; }
  .popup-youtube:hover::before {
    opacity: 1; }

.small-margin-bottom {
  margin-bottom: 10px !important; }

.medium-margin-bottom {
  margin-bottom: 20px !important; }

.large-margin-bottom {
  margin-bottom: 30px !important; }

.medium-weight {
  font-weight: 500; }

.full-width-link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2; }

.coupon-callout {
  display: block;
  margin-bottom: 7px; }
  .coupon-callout * {
    color: #a4343a;
    font-size: 12px;
    margin-bottom: 0; }
  .coupon-callout .coupon-text {
    font-weight: 700; }

/**
 * @license
 * MyFonts Webfont Build ID 3836113, 2019-11-11T13:21:05-0500
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: AvenirLTPro-Book by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/avenir/pro-45-book/
 *
 * Webfont: AvenirLTPro-BookOblique by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/avenir/pro-45-book-oblique/
 *
 * Webfont: AvenirLTPro-Medium by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/avenir/pro-65-medium/
 *
 * Webfont: AvenirLTPro-Heavy by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/avenir/pro-85-heavy/
 *
 *
 * License: https://www.myfonts.com/viewlicense?type=web&buildid=3836113
 * Licensed pageviews: 250,000
 * Webfonts copyright: Copyright &#x00A9;
 2014 Monotype GmbH. All rights reserved.
 *
 * © 2019 MyFonts Inc
*/
/* @import must be at top of file, otherwise CSS will not work */
@font-face {
  font-family: "Avenir";
  font-weight: 300;
  src: url("../fonts/avenir/3A88D1_0_0.eot");
  src: url("../fonts/avenir/3A88D1_0_0.eot?#iefix") format("embedded-opentype"), url("../fonts/avenir/3A88D1_0_0.woff2") format("woff2"), url("../fonts/avenir/3A88D1_0_0.woff") format("woff"), url("../fonts/avenir/3A88D1_0_0.ttf") format("truetype"); }

@font-face {
  font-family: "Avenir";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/avenir/3A88D1_1_0.eot");
  src: url("../fonts/avenir/3A88D1_1_0.eot?#iefix") format("embedded-opentype"), url("../fonts/avenir/3A88D1_1_0.woff2") format("woff2"), url("../fonts/avenir/3A88D1_1_0.woff") format("woff"), url("../fonts/avenir/3A88D1_1_0.ttf") format("truetype"); }

@font-face {
  font-family: "Avenir";
  font-weight: 500;
  src: url("../fonts/avenir/3A88D1_2_0.eot");
  src: url("../fonts/avenir/3A88D1_2_0.eot?#iefix") format("embedded-opentype"), url("../fonts/avenir/3A88D1_2_0.woff2") format("woff2"), url("../fonts/avenir/3A88D1_2_0.woff") format("woff"), url("../fonts/avenir/3A88D1_2_0.ttf") format("truetype"); }

@font-face {
  font-family: "Avenir";
  font-weight: 900;
  src: url("../fonts/avenir/3A88D1_3_0.eot");
  src: url("../fonts/avenir/3A88D1_3_0.eot?#iefix") format("embedded-opentype"), url("../fonts/avenir/3A88D1_3_0.woff2") format("woff2"), url("../fonts/avenir/3A88D1_3_0.woff") format("woff"), url("../fonts/avenir/3A88D1_3_0.ttf") format("truetype"); }

meta.foundation-version {
  font-family: "/5.5.3/"; }

meta.foundation-mq-small {
  font-family: "/small-up/";
  width: 0; }

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 40em)/";
  width: 0; }

meta.foundation-mq-medium {
  font-family: "/medium-up/";
  width: 40.0625em; }

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  width: 40.0625em; }

meta.foundation-mq-large {
  font-family: "/large-up/";
  width: 64.0625em; }

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  width: 64.0625em; }

meta.foundation-mq-xlarge {
  font-family: "/xlarge-up/";
  width: 90.0625em; }

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  width: 90.0625em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.0625em)/";
  width: 120.0625em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

.off-canvas-wrap {
  -webkit-backface-visibility: hidden;
  position: relative;
  width: 100%;
  overflow: hidden; }
  .off-canvas-wrap.move-right, .off-canvas-wrap.move-left, .off-canvas-wrap.move-bottom, .off-canvas-wrap.move-top {
    min-height: 100%;
    -webkit-overflow-scrolling: touch; }

.inner-wrap {
  position: relative;
  width: 100%;
  *zoom: 1;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease; }
  .inner-wrap::after {
    clear: both;
    content: "";
    display: table; }

.left-small {
  height: 50px;
  position: absolute;
  top: 0;
  width: 50px;
  border-right: none 0 transparent;
  left: 0; }

.right-small {
  height: 50px;
  position: absolute;
  top: 0;
  width: 50px;
  border-left: none 0 transparent;
  right: 0; }

.menu-icon {
  color: #000;
  display: block;
  height: 50px;
  padding: 0;
  position: relative;
  text-indent: 35px;
  transform: translate3d(0, 0, 0);
  width: 50px; }
  .menu-icon span::after {
    box-shadow: 0 0 0 1px #000, 0 7px 0 1px #000, 0 14px 0 1px #000;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    width: 16px;
    top: 50%;
    margin-top: -8px;
    left: 17px; }
  .menu-icon span:hover::after {
    box-shadow: 0 0 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3; }

.left-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 335px;
  z-index: 1001;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
  top: 0; }
  .left-off-canvas-menu * {
    -webkit-backface-visibility: hidden; }

.right-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 335px;
  z-index: 1001;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0;
  top: 0; }
  .right-off-canvas-menu * {
    -webkit-backface-visibility: hidden; }

.top-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 335px;
  z-index: 1001;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate(0, -100%);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  top: 0;
  width: 100%;
  height: auto; }
  .top-off-canvas-menu * {
    -webkit-backface-visibility: hidden; }

.bottom-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 335px;
  z-index: 1001;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate(0, 100%);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  width: 100%;
  height: auto; }
  .bottom-off-canvas-menu * {
    -webkit-backface-visibility: hidden; }

.off-canvas-list-menu li a {
  border-bottom: 1px solid #ededed;
  color: #1e1e1e;
  display: block;
  padding: 13px 30px 9px;
  transition: background 300ms ease; }
  .off-canvas-list-menu li a:hover {
    background: #f4f4f4;
    color: #1e1e1e; }
  .off-canvas-list-menu li a:active {
    background: #1e1e1e;
    color: #1e1e1e; }

.move-right > .inner-wrap {
  -webkit-transform: translate3d(335px, 0, 0);
  -moz-transform: translate3d(335px, 0, 0);
  -ms-transform: translate(335px, 0);
  -o-transform: translate3d(335px, 0, 0);
  transform: translate3d(335px, 0, 0); }

.move-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .move-right .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.move-left > .inner-wrap {
  -webkit-transform: translate3d(-335px, 0, 0);
  -moz-transform: translate3d(-335px, 0, 0);
  -ms-transform: translate(-335px, 0);
  -o-transform: translate3d(-335px, 0, 0);
  transform: translate3d(-335px, 0, 0); }

.move-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .move-left .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.move-top > .inner-wrap {
  -webkit-transform: translate3d(0, -auto, 0);
  -moz-transform: translate3d(0, -auto, 0);
  -ms-transform: translate(0, -auto);
  -o-transform: translate3d(0, -auto, 0);
  transform: translate3d(0, -auto, 0); }

.move-top .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .move-top .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.move-bottom > .inner-wrap {
  -webkit-transform: translate3d(0, auto, 0);
  -moz-transform: translate3d(0, auto, 0);
  -ms-transform: translate(0, auto);
  -o-transform: translate3d(0, auto, 0);
  transform: translate3d(0, auto, 0); }

.move-bottom .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .move-bottom .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.offcanvas-overlap .left-off-canvas-menu,
.offcanvas-overlap .right-off-canvas-menu,
.offcanvas-overlap .top-off-canvas-menu,
.offcanvas-overlap .bottom-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.offcanvas-overlap-left .right-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap-left .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.offcanvas-overlap-right .left-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap-right .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.offcanvas-overlap-top .bottom-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap-top .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap-top .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.offcanvas-overlap-bottom .top-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap-bottom .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  background: rgba(30, 30, 30, 0.1);
  bottom: 0;
  cursor: pointer;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 104px;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap-bottom .exit-off-canvas:hover {
      background: rgba(30, 30, 30, 0.1); } }

.no-csstransforms .left-off-canvas-menu {
  left: -335px; }

.no-csstransforms .right-off-canvas-menu {
  right: -335px; }

.no-csstransforms .top-off-canvas-menu {
  top: -auto; }

.no-csstransforms .bottom-off-canvas-menu {
  bottom: -auto; }

.no-csstransforms .move-left > .inner-wrap {
  right: 335px; }

.no-csstransforms .move-right > .inner-wrap {
  left: 335px; }

.no-csstransforms .move-top > .inner-wrap {
  right: auto; }

.no-csstransforms .move-bottom > .inner-wrap {
  left: auto; }

.left-submenu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  height: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
  width: 335px;
  z-index: 1002;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0; }
  .left-submenu * {
    -webkit-backface-visibility: hidden; }
  .left-submenu .back > a {
    background: #1e1e1e;
    border-bottom: 1px solid #979797;
    border-top: none;
    color: #1e1e1e;
    font-weight: 700;
    margin: 0;
    padding: 13px 30px;
    text-transform: uppercase; }
    .left-submenu .back > a:hover {
      background: #1e1e1e;
      border-bottom: 1px solid #979797;
      border-top: none; }
    .left-submenu .back > a::before {
      content: "\AB";
      margin-right: 0.5rem;
      display: inline; }
  .left-submenu.move-right, .left-submenu.offcanvas-overlap-right, .left-submenu.offcanvas-overlap {
    -webkit-transform: translate3d(0%, 0, 0);
    -moz-transform: translate3d(0%, 0, 0);
    -ms-transform: translate(0%, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0); }

.right-submenu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  height: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
  width: 335px;
  z-index: 1002;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0; }
  .right-submenu * {
    -webkit-backface-visibility: hidden; }
  .right-submenu .back > a {
    background: #1e1e1e;
    border-bottom: 1px solid #979797;
    border-top: none;
    color: #1e1e1e;
    font-weight: 700;
    margin: 0;
    padding: 13px 30px;
    text-transform: uppercase; }
    .right-submenu .back > a:hover {
      background: #1e1e1e;
      border-bottom: 1px solid #979797;
      border-top: none; }
    .right-submenu .back > a::after {
      content: "\BB";
      margin-left: 0.5rem;
      display: inline; }
  .right-submenu.move-left, .right-submenu.offcanvas-overlap-left, .right-submenu.offcanvas-overlap {
    -webkit-transform: translate3d(0%, 0, 0);
    -moz-transform: translate3d(0%, 0, 0);
    -ms-transform: translate(0%, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0); }

.top-submenu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  height: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
  width: 335px;
  z-index: 1002;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate(0, -100%);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  top: 0;
  width: 100%; }
  .top-submenu * {
    -webkit-backface-visibility: hidden; }
  .top-submenu .back > a {
    background: #1e1e1e;
    border-bottom: 1px solid #979797;
    border-top: none;
    color: #1e1e1e;
    font-weight: 700;
    margin: 0;
    padding: 13px 30px;
    text-transform: uppercase; }
    .top-submenu .back > a:hover {
      background: #1e1e1e;
      border-bottom: 1px solid #979797;
      border-top: none; }
  .top-submenu.move-bottom, .top-submenu.offcanvas-overlap-bottom, .top-submenu.offcanvas-overlap {
    -webkit-transform: translate3d(0, 0%, 0);
    -moz-transform: translate3d(0, 0%, 0);
    -ms-transform: translate(0, 0%);
    -o-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0); }

.bottom-submenu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  height: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
  width: 335px;
  z-index: 1002;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate(0, 100%);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  width: 100%; }
  .bottom-submenu * {
    -webkit-backface-visibility: hidden; }
  .bottom-submenu .back > a {
    background: #1e1e1e;
    border-bottom: 1px solid #979797;
    border-top: none;
    color: #1e1e1e;
    font-weight: 700;
    margin: 0;
    padding: 13px 30px;
    text-transform: uppercase; }
    .bottom-submenu .back > a:hover {
      background: #1e1e1e;
      border-bottom: 1px solid #979797;
      border-top: none; }
  .bottom-submenu.move-top, .bottom-submenu.offcanvas-overlap-top, .bottom-submenu.offcanvas-overlap {
    -webkit-transform: translate3d(0, 0%, 0);
    -moz-transform: translate3d(0, 0%, 0);
    -ms-transform: translate(0, 0%);
    -o-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0); }

/* Magnific Popup CSS */
.mfp-bg {
  background: rgba(30, 30, 30, 0.9);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1042; }

.mfp-wrap {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1043; }

.mfp-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  padding: 0 8px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%; }

.mfp-container::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container::before {
  display: none; }

.mfp-content {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  text-align: left;
  vertical-align: middle;
  z-index: 1045; }
  .mfp-content #MainContent {
    background: #fff;
    margin: 20px auto;
    max-width: 1100px;
    padding: 20px;
    position: relative;
    width: auto; }
  .mfp-content #newsletterPopup {
    margin-bottom: 0; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  cursor: auto;
  width: 100%; }

.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;
  left: 8px;
  margin-top: -0.8em;
  position: absolute;
  right: 8px;
  text-align: center;
  top: 50%;
  width: auto;
  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 {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: block;
  outline: none;
  overflow: visible;
  padding: 0;
  z-index: 1046; }

button::-moz-focus-inner {
  border: 0;
  padding: 0; }

.mfp-close {
  color: #fff;
  filter: alpha(opacity=65);
  font-family: Arial, Baskerville, monospace;
  font-size: 28px;
  font-style: normal;
  height: 44px;
  line-height: 44px;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  top: 0;
  width: 44px; }

.mfp-close:hover,
.mfp-close:focus {
  filter: alpha(opacity=100);
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #1e1e1e;
  right: 10px;
  top: 10px; }
  @media only screen and (min-width: 768px) {
    .mfp-close-btn-in .mfp-close {
      right: 50px;
      top: 50px; } }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close,
.popup-close-outside .mfp-close {
  color: #fff;
  font-size: 14px;
  left: auto;
  line-height: 1;
  opacity: 1;
  padding: 0;
  right: 0;
  text-align: center;
  top: -55px;
  width: 100%;
  width: auto; }

.mfp-counter {
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap; }

.mfp-arrow {
  filter: alpha(opacity=65);
  height: 110px;
  margin: 0;
  margin-top: -55px;
  opacity: 0.65;
  padding: 0;
  position: absolute;
  -webkit-tap-highlight-color: transparent;
  top: 50%;
  width: 90px; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  filter: alpha(opacity=100);
  opacity: 1; }

.mfp-arrow::before,
.mfp-arrow::after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  border: medium inset transparent;
  content: "";
  display: block;
  height: 0;
  left: 0;
  margin-left: 35px;
  margin-top: 35px;
  position: absolute;
  top: 0;
  width: 0; }

.mfp-arrow::after,
.mfp-arrow .mfp-a {
  border-bottom-width: 13px;
  border-top-width: 13px;
  top: 8px; }

.mfp-arrow::before,
.mfp-arrow .mfp-b {
  border-bottom-width: 21px;
  border-top-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 {
  border-right: 27px solid #3f3f3f;
  margin-left: 25px; }

.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-bottom: 40px;
  padding-top: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  max-width: 900px;
  width: 100%; }

.mfp-iframe-scaler {
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%; }

.mfp-iframe-scaler iframe {
  background: #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

/* Main image in popup */
img.mfp-img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: auto;
  line-height: 0;
  margin: 0 auto;
  max-width: 100%;
  padding: 40px 0;
  width: auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure::after {
  background: #444;
  bottom: 40px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  content: "";
  display: block;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 40px;
  width: auto;
  z-index: -1; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  cursor: auto;
  left: 0;
  margin-top: -36px;
  position: absolute;
  top: 100%;
  width: 100%; }

.mfp-title {
  color: #f3f3f3;
  line-height: 18px;
  padding-right: 36px;
  text-align: left;
  word-wrap: break-word; }

.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 {
    bottom: 0;
    top: 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;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 3px 5px;
    position: fixed;
    top: auto; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    background: rgba(0, 0, 0, 0.6);
    height: 35px;
    line-height: 35px;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 35px; } }

@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 {
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
  width: 600px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  padding-top: 0;
  right: 0;
  top: 0; }

.white-popup {
  background: #fff;
  box-shadow: 1px 2px 15px 0 rgba(30, 30, 30, 0.6);
  margin: 0 auto;
  max-width: 1440px;
  padding: 20px;
  position: relative;
  width: auto; }
  @media only screen and (min-width: 768px) {
    .white-popup {
      padding: 70px 20px 90px; } }

.popup--narrow {
  max-width: 630px; }

.mfp-close.custom-close {
  font-size: 14px;
  left: auto;
  line-height: 1;
  opacity: 1;
  padding: 0;
  text-align: center;
  width: auto; }
  .mfp-close.custom-close:hover {
    opacity: 0.5; }
  .mfp-close.custom-close svg {
    fill: currentColor;
    height: 17px;
    margin-bottom: 10px;
    width: 16px; }
  .mfp-close.custom-close .close-text {
    font-size: 14px;
    letter-spacing: 2px; }
  .mfp-close.custom-close .custom-close-content {
    pointer-events: none; }

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

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 0.5; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.3; }
  .slick-prev:before,
  .slick-next:before {
    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    color: #1e1e1e;
    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: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

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

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

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 0.5; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: inherit;
        font-size: 7px;
        line-height: 20px;
        text-align: center;
        color: #1e1e1e;
        opacity: 0.3;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: #1e1e1e;
      opacity: 1; }

.slick-next,
.slick-prev {
  height: 61px;
  padding: 10px;
  width: 40px;
  z-index: 2; }
  .slick-next::before,
  .slick-prev::before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    height: 28px;
    width: 14px; }
  .slick-next:hover, .slick-next:focus,
  .slick-prev:hover,
  .slick-prev:focus {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%; }
  .slick-next:focus-visible,
  .slick-prev:focus-visible {
    -webkit-outline: 5px auto #0096ff;
    -moz-outline: 5px auto #0096ff;
    -ms-outline: 5px auto #0096ff;
    -o-outline: 5px auto #0096ff;
    outline: 5px auto #0096ff; }
  .slick-next.custom-arrow,
  .slick-prev.custom-arrow {
    background-color: transparent;
    border: none;
    color: #1e1e1e;
    height: 54px;
    margin-top: 0;
    padding: 10px;
    transition: 0.3s ease all;
    width: 54px; }
    .slick-next.custom-arrow::before,
    .slick-prev.custom-arrow::before {
      display: none; }
    .slick-next.custom-arrow svg,
    .slick-prev.custom-arrow svg {
      fill: currentColor;
      height: 22px;
      width: 12px; }
    .slick-next.custom-arrow:hover,
    .slick-prev.custom-arrow:hover {
      background-color: #ededed;
      color: #1e1e1e; }
  .slick-next.custom-nav-arrow,
  .slick-prev.custom-nav-arrow {
    background-color: #ededed;
    border: none;
    color: #1e1e1e;
    height: auto;
    height: 50px;
    margin-top: 0;
    max-width: 100px;
    padding: 10px;
    transition: 0.3s ease all;
    width: 100%; }
    .slick-next.custom-nav-arrow::before,
    .slick-prev.custom-nav-arrow::before {
      display: none; }
    .slick-next.custom-nav-arrow svg,
    .slick-prev.custom-nav-arrow svg {
      fill: #1e1e1e;
      height: 16px;
      width: 32px; }
    .slick-next.custom-nav-arrow:hover,
    .slick-prev.custom-nav-arrow:hover {
      background-color: #ededed;
      color: #1e1e1e; }

.slick-next {
  right: 0; }
  .slick-next::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS40NTY3OSAxLjAwNzQ2MTQ3bDIxIDIwLjAyNDgyMTQzTDEuNTA4ODUgNDEuMDA3NDYxNSIgc3Ryb2tlPSIjMkQyRDJEIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+"); }
  .slick-next:hover::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS40NTY3OSAxLjAwNzQ2MTQ3bDIxIDIwLjAyNDgyMTQzTDEuNTA4ODUgNDEuMDA3NDYxNSIgc3Ryb2tlPSIjOTg5ODk4IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+"); }

.slick-prev {
  left: 0; }
  .slick-prev::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjIuNDU3MjA3NCAxLjAwNzQ2MTQ3bC0yMSAyMC4wMjQ4MjE0MyAyMC45NDc5Mzk3IDE5Ljk3NTE3ODYiIHN0cm9rZT0iIzJEMkQyRCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg=="); }
  .slick-prev:hover::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjIuNDU3MjA3NCAxLjAwNzQ2MTQ3bC0yMSAyMC4wMjQ4MjE0MyAyMC45NDc5Mzk3IDE5Ljk3NTE3ODYiIHN0cm9rZT0iIzk4OTg5OCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg=="); }

.slick-dots {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-size: 0;
  left: 50%;
  margin: 0;
  white-space: nowrap;
  width: auto; }
  .slick-dots li {
    height: auto;
    margin: 0;
    width: auto; }
    .slick-dots li:not(:last-of-type) {
      margin-right: 5px; }
      @media only screen and (min-width: 480px) and (max-width: 767px) {
        .slick-dots li:not(:last-of-type) {
          margin-right: 6px; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .slick-dots li:not(:last-of-type) {
          margin-right: 15px; } }
      @media only screen and (min-width: 991px) {
        .slick-dots li:not(:last-of-type) {
          margin-right: 25px; } }
    .slick-dots li button {
      background: #adadad;
      border: 0 none;
      border-radius: 3.5px;
      display: block;
      height: 5px;
      margin: 0;
      opacity: 0.3;
      padding: 0;
      position: relative;
      text-align: center;
      width: 10px; }
      @media only screen and (min-width: 480px) and (max-width: 767px) {
        .slick-dots li button {
          width: 12px; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .slick-dots li button {
          width: 30px; } }
      @media only screen and (min-width: 991px) {
        .slick-dots li button {
          width: 50px; } }
      .slick-dots li button::before {
        display: none; }
      .slick-dots li button:hover {
        background: #1e1e1e;
        opacity: 0.5; }
      .slick-dots li button:focus-visible {
        -webkit-outline: 5px auto #0096ff;
        -moz-outline: 5px auto #0096ff;
        -ms-outline: 5px auto #0096ff;
        -o-outline: 5px auto #0096ff;
        outline: 5px auto #0096ff; }
    .slick-dots li button {
      display: block;
      transition: background 100ms ease-out; }
    .slick-dots li.slick-active button {
      background: #1e1e1e;
      opacity: 1; }

.image-gallery-wrapper .custom-arrow.slick-prev {
  left: 0; }

.image-gallery-wrapper .custom-arrow.slick-next {
  right: 0; }

.custom-nav-arrow.slick-prev {
  left: 0;
  top: -50px;
  transform: rotate(180deg); }

.custom-nav-arrow.slick-next {
  bottom: -80px;
  left: 0;
  right: auto;
  top: auto; }

.productView .slick-dots {
  position: relative; }

.slick-disabled {
  cursor: default;
  opacity: 0.1; }

.slick-track {
  backface-visibility: hidden;
  perspective: 1000px; }

.juicer-feed.slider .slick-next,
.juicer-feed.slider .slick-prev {
  transform: none; }
  .juicer-feed.slider .slick-next::before,
  .juicer-feed.slider .slick-prev::before {
    background-image: none;
    height: auto;
    width: auto; }

.table {
  margin-top: 15px; }
  .table .table-alignCenter {
    text-align: center; }
  .table .table-alignRight {
    text-align: right; }

.standard-table {
  border-collapse: collapse;
  margin: 0 auto 30px;
  width: 100%; }
  .standard-table th {
    font-weight: 500;
    letter-spacing: 0;
    padding-bottom: 7px;
    text-align: left;
    text-transform: uppercase; }
    @media only screen and (max-width: 767px) {
      .standard-table th {
        font-size: 12px; } }
  .standard-table tr {
    border-bottom: 1px solid #979797; }
  .standard-table td {
    padding: 22px 0; }
    @media only screen and (max-width: 767px) {
      .standard-table td {
        font-size: 12px;
        padding: 10px 0; } }

.table-actions {
  text-align: center;
  text-align: right; }
  @media only screen and (max-width: 767px) {
    .table-actions {
      width: 100px; } }
  .table-actions .form {
    margin-bottom: 0; }
  .table-actions .button, .table-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .table-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .table-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .table-actions .yotpo-default-button {
    display: inline-block;
    margin-bottom: 0;
    width: auto; }
    @media only screen and (max-width: 767px) {
      .table-actions .button, .table-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .table-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .table-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .table-actions .yotpo-default-button {
        min-width: 100px;
        padding: 0; } }
    @media only screen and (min-width: 480px) {
      .table-actions .button + .button, .table-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .button, #MainContent .yotpo .main-widget .table-actions .yotpo-bottomline-2-boxes > .yotpo-default-button + .button, .table-actions #MainContent .yotpo .main-widget form .yotpo-default-button + .button, #MainContent .yotpo .main-widget form .table-actions .yotpo-default-button + .button, .table-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button + .yotpo-default-button, #MainContent .yotpo .main-widget .table-actions .yotpo-bottomline-2-boxes > .button + .yotpo-default-button, .table-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget .table-actions .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, .table-actions #MainContent .yotpo .main-widget form .button + .yotpo-default-button, #MainContent .yotpo .main-widget form .table-actions .button + .yotpo-default-button, .table-actions #MainContent .yotpo .main-widget form .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget .table-actions form .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, .table-actions #MainContent .yotpo .main-widget form .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget form .table-actions .yotpo-default-button + .yotpo-default-button {
        margin-left: 5px; } }

.dropdown {
  left: -9999px;
  outline: none;
  position: absolute; }

.dropdown-menu {
  display: none; }
  .dropdown-menu.is-loading .loadingOverlay {
    background: none;
    padding: 60px 0;
    position: relative; }
  .dropdown-menu.is-open, .dropdown-menu:hover,
  .has-hover:hover .dropdown-menu {
    display: block; }

.dropdown-menu-item {
  text-align: left; }
  .dropdown-menu-item:first-child > a {
    padding-top: 10px; }
  .dropdown-menu-item:last-child > a {
    padding-bottom: 25px; }
  .dropdown-menu-item > a {
    margin: 0;
    padding: 3px 15px;
    text-decoration: none; }

.form-wishlist {
  position: relative; }

.dropdown-menu-button {
  width: 100%; }
  .dropdown-menu-button.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .dropdown-menu-button .icon {
    float: right;
    height: 12px;
    margin-left: 17px;
    position: relative;
    top: 17px;
    width: 20px; }

#wishlist-dropdown {
  list-style: none;
  margin-bottom: 0; }
  #wishlist-dropdown.is-open {
    background: transparent;
    max-width: none !important;
    width: auto !important;
    z-index: 7; }
    @media only screen and (min-width: 768px) {
      #wishlist-dropdown.is-open {
        left: auto !important; } }
    #wishlist-dropdown.is-open:focus {
      outline: none; }
    #wishlist-dropdown.is-open [data-wishlist] {
      border-top: none;
      margin-bottom: 0;
      width: 100%; }
    #wishlist-dropdown.is-open .button, #wishlist-dropdown.is-open #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget #wishlist-dropdown.is-open .yotpo-bottomline-2-boxes > .yotpo-default-button, #wishlist-dropdown.is-open #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form #wishlist-dropdown.is-open .yotpo-default-button {
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      width: 100%; }
    #wishlist-dropdown.is-open .button--has-items {
      font-weight: 500; }
    #wishlist-dropdown.is-open li:not(:last-child) .button, #wishlist-dropdown.is-open li:not(:last-child) #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget #wishlist-dropdown.is-open li:not(:last-child) .yotpo-bottomline-2-boxes > .yotpo-default-button, #wishlist-dropdown.is-open li:not(:last-child) #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form #wishlist-dropdown.is-open li:not(:last-child) .yotpo-default-button {
      border-bottom: none;
      border-radius: 0;
      border-top: none;
      margin-bottom: 0; }

.modal-background {
  background: #2d2d2d;
  background: rgba(45, 45, 45, 0.95);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1004; }

.modal {
  background-color: #fff;
  border: 0 solid #e8e8e8;
  border-radius: 0;
  box-shadow: none;
  display: none;
  left: 50%;
  margin: 0;
  max-height: 90%;
  max-width: 95%;
  min-height: 240px;
  outline: none;
  overflow: hidden;
  padding: 0 0 20px;
  position: fixed;
  right: 0;
  text-align: center;
  top: 50% !important;
  transform: translate(-50%, -50%);
  width: 900px;
  z-index: 1005; }
  .modal .form-field {
    position: relative; }
  .modal .alert-icon {
    border: 0.25em solid transparent;
    border-radius: 50%;
    box-sizing: content-box;
    cursor: default;
    display: flex;
    font-family: inherit;
    height: 5em;
    justify-content: center;
    line-height: 5em;
    margin: 1.25em auto 1.875em;
    position: relative;
    user-select: none;
    width: 5em; }
  .modal .error-icon {
    animation: animate-icon 0.5s;
    border-color: #f27474;
    color: #f27474; }
    .modal .error-icon .icon-content {
      animation: animate-icon-content 0.5s;
      flex-grow: 1;
      position: relative; }
      .modal .error-icon .icon-content .line {
        background-color: #f27474;
        border-radius: 0.125em;
        display: block;
        height: 0.3125em;
        position: absolute;
        top: 2.3125em;
        width: 2.9375em; }
        .modal .error-icon .icon-content .line-left {
          left: 1.0625em;
          transform: rotate(45deg); }
        .modal .error-icon .icon-content .line-right {
          right: 1em;
          transform: rotate(-45deg); }
  .modal .warning-icon {
    animation: animate-icon 0.5s;
    border-color: #facea8;
    color: #f8bb86; }
    .modal .warning-icon .icon-content {
      align-items: center;
      animation: animate-icon-content 0.5s;
      display: flex;
      font-size: 3.75em; }

@media only screen and (min-width: 991px) {
  .modal--small {
    width: 700px; } }

@media only screen and (min-width: 991px) {
  .modal--large {
    width: 1280px; } }

.modal-content {
  padding-bottom: 20px; }

.modal-header {
  padding-left: 20px;
  padding-right: 42px;
  padding-top: 20px; }

.modal-header-title {
  text-align: center; }

.modal-close {
  color: #1e1e1e;
  font-size: 26px;
  height: 32px;
  line-height: 32px;
  padding: 0;
  position: absolute;
  right: 10px;
  text-align: center;
  text-decoration: none;
  top: 10px;
  width: 32px;
  z-index: 10; }
  .modal-close:focus-visible::before {
    border-color: transparent transparent #dae4eb transparent;
    border-style: solid;
    border-width: remCalc(10px);
    content: " ";
    position: absolute;
    top: 50%; }
  .modal-close:focus-visible::after {
    background-color: #dae4eb;
    border-radius: remCalc(8px);
    color: white;
    content: attr(title);
    cursor: default;
    font-size: 1rem;
    padding: remCalc(4px) remCalc(6px);
    position: absolute;
    right: 0;
    top: 100%;
    white-space: nowrap; }
  @media only screen and (min-width: 768px) {
    .modal-close {
      font-size: 32px; } }
  .modal-close:hover {
    color: #000; }

.modal-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 20px; }

.hide-content {
  opacity: 0; }

@keyframes animate-icon {
  0% {
    opacity: 0;
    transform: rotateX(100deg); }
  100% {
    opacity: 1;
    transform: rotateX(0deg); } }

@keyframes animate-icon-content {
  0% {
    margin-top: 1.625em;
    opacity: 0;
    transform: scale(0.4); }
  50% {
    margin-top: 1.625em;
    opacity: 0;
    transform: scale(0.4); }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15); }
  100% {
    margin-top: 0;
    opacity: 1;
    transform: scale(1); } }

.pagination-list {
  *zoom: 1;
  margin-bottom: 0;
  position: relative;
  text-align: center; }
  .pagination-list::after {
    clear: both;
    content: "";
    display: table; }
  .pagination-list .pagination-item {
    display: inline-block; }

.pagination-item {
  line-height: 1;
  position: relative; }
  .pagination-item .pagination-link {
    color: inherit;
    text-decoration: none; }
  .pagination-item.pagination-item--page {
    margin-right: 20px; }
    .pagination-item.pagination-item--page a {
      display: block;
      padding: 0 1px; }
  .pagination-item.pagination-item--current::after {
    border-bottom: 1px solid #1e1e1e;
    bottom: -3px;
    content: "";
    left: 0;
    position: absolute;
    right: 0; }
  .pagination-item.pagination-item--previous .icon, .pagination-item.pagination-item--next .icon {
    height: 16px;
    position: relative;
    top: 3px;
    width: 8px; }
    .pagination-item.pagination-item--previous .icon > svg, .pagination-item.pagination-item--next .icon > svg {
      height: 16px;
      width: 8px; }
  .pagination-item.pagination-item--previous {
    margin-right: 36px; }
    .pagination-item.pagination-item--previous .icon {
      margin-right: 10px; }
  .pagination-item.pagination-item--next {
    margin-left: 16px; }
    .pagination-item.pagination-item--next .icon {
      margin-left: 10px; }

.grid-pagination-counter {
  margin: 20px 0 0;
  text-align: left; }
  @media only screen and (max-width: 767px) {
    .grid-pagination-counter {
      margin: -20px 0 20px;
      text-align: center; } }

.tabs {
  *zoom: 1;
  list-style: none;
  margin: 0 0 12px; }
  .tabs::after {
    clear: both;
    content: "";
    display: table; }

.tab {
  border: 0 none;
  float: left;
  position: relative; }
  .tab .tab-title {
    border-left: 1px solid #979797;
    color: #1e1e1e;
    display: block;
    padding: 0 20px;
    text-align: center;
    text-decoration: none; }
    @media only screen and (min-width: 768px) {
      .tab .tab-title {
        padding: 0 30px; } }
  .tab:first-child .tab-title {
    border-left: 0;
    padding-left: 0; }
  .tab:hover::after, .tab.is-active::after, .tab:focus::after {
    opacity: 1; }
  .tab:hover .tab-title, .tab.is-active .tab-title, .tab:focus .tab-title {
    color: inherit; }

.tabs-contents {
  border-top: 1px solid #979797;
  padding: 17px 0 0; }

.tab-content {
  display: none; }
  .tab-content.is-active {
    display: block; }
  .tab-content.has-jsContent {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    visibility: hidden; }
    .tab-content.has-jsContent.is-active {
      height: auto;
      overflow: visible;
      padding: 20px 0;
      visibility: visible; }

.accordion {
  box-shadow: none; }
  .accordion .navList {
    margin-bottom: 0; }

.accordion-content {
  border: 0;
  display: none;
  margin-top: 15px; }
  .accordion-content.is-open {
    display: block; }
  .accordion-content .form:only-child {
    margin-bottom: 0; }

.accordion-title {
  margin: 0;
  margin-left: 12px; }

.accordion-navigation {
  cursor: pointer;
  margin-top: -1px;
  position: relative;
  text-decoration: none; }
  .accordion-navigation .icon {
    height: 16px;
    width: 16px; }
  .accordion-navigation .arrow {
    bottom: 10px;
    height: 7px;
    left: -1px;
    position: absolute;
    width: 7px; }

@media only screen and (min-width: 768px) {
  .accordion--navList {
    border: 0; } }

@media only screen and (min-width: 768px) {
  .sidebarBlock + .accordion--navList {
    margin-top: 10px; } }

@media only screen and (min-width: 768px) {
  .accordion--navList .accordion-block + .accordion-block {
    margin-top: 35px; } }

.accordion--navList .accordion-content {
  padding: 10px; }
  @media only screen and (min-width: 768px) {
    .accordion--navList .accordion-content {
      padding: 0; } }

@media only screen and (min-width: 768px) {
  .accordion--navList .accordion-navigation {
    background-position: right 0 top 50%;
    border: 0; } }

.accordion--navList .accordion-title {
  margin-bottom: 10px;
  text-decoration: none; }

.accordion--navList .accordion-navigation-actions {
  right: 10px;
  top: 12px; }
  @media only screen and (min-width: 768px) {
    .accordion--navList .accordion-navigation-actions {
      right: 0;
      top: 0; } }

.accordion-block:first-child {
  margin-top: 0; }
  .accordion-block:first-child .accordion-navigation {
    border-radius: 0; }

.accordion-block:last-child .accordion-navigation,
.accordion-block:last-child .accordion-content {
  border-radius: 0; }

.accordion-block:last-child .accordion-navigation {
  border-bottom-width: 0; }
  .accordion-block:last-child .accordion-navigation.is-open {
    border-bottom-width: 1px;
    border-radius: 0; }

.accordion-navigation-actions {
  position: absolute; }
  .accordion-navigation-actions > a {
    color: #1e1e1e;
    vertical-align: top; }

/*
This File Contains a lot of the base styles from Cornerstone that we wanted to keep
*/
html,
body {
  height: 100%; }

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

html,
body {
  font-size: 100%; }

a:hover {
  cursor: pointer; }

img {
  height: auto;
  max-width: 100%; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix::before, .clearfix::after {
  content: " ";
  display: table; }

.clearfix::after {
  clear: both; }

.hide {
  display: none; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

body {
  background: #fff;
  color: #1e1e1e;
  cursor: auto;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  line-height: 1.375;
  margin: 0;
  padding: 0;
  position: relative; }
  @media only screen and (min-width: 768px) {
    body {
      font-size: 16px; } }

a {
  transition: color 0.15s ease; }

cite {
  line-height: 1.2;
  margin: 5px 0 0; }

.page {
  padding-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .page {
      padding-bottom: 50px; } }
  .page > .page-heading {
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .page > .page-heading {
        margin-bottom: 30px; } }

.page-heading {
  margin-bottom: 5px;
  padding-top: 30px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .page-heading {
      margin-bottom: 5px;
      padding-top: 34px; } }

.definitionList {
  *zoom: 1; }
  .definitionList::after {
    clear: both;
    content: "";
    display: table; }

.definitionList-key {
  float: left;
  margin: 0 5px 0 0; }

.definitionList-value {
  margin: 0; }

html,
body {
  height: auto; }

@media only screen and (min-width: 768px) {
  body {
    padding-top: 0; } }

figure > figcaption {
  margin-bottom: 10px; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

.loadingOverlay {
  background-color: rgba(255, 255, 255, 0.9);
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 250ms ease-out;
  width: 100%;
  z-index: 5; }
  .loadingOverlay::before {
    -webkit-animation: loading 0.5s infinite cubic-bezier(0.69, 0.31, 0.56, 0.83);
    animation: loading 0.5s infinite cubic-bezier(0.69, 0.31, 0.56, 0.83);
    border: 2px solid;
    border-color: #fff #fff #989898 #989898;
    border-radius: 2.66667rem;
    content: "";
    display: block;
    height: 2.66667rem;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 2.66667rem; }

@media only screen and (min-width: 768px) {
  .actionBar-section .form-field {
    float: right; } }

@media only screen and (max-width: 767px) {
  .actionBar-section .form-field {
    margin-bottom: 0; } }

.actionBar-section .form-label {
  margin-bottom: 0;
  margin-right: 5px; }

.actionBar-section .form-input,
.actionBar-section .form-select {
  border-color: #1e1e1e;
  width: auto; }

.actionBar-section .form-label,
.actionBar-section .form-input,
.actionBar-section .form-select {
  display: inline-block; }

@media only screen and (max-width: 767px) {
  .actionBar-section.actionBar--standard {
    margin-bottom: 40px; }
    .actionBar-section.actionBar--standard .form-label {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute !important;
      width: 1px; } }
  @media only screen and (max-width: 767px) and (max-width: 767px) {
    .actionBar-section.actionBar--standard .form-select {
      color: #636467;
      font-size: 16px;
      height: 36px; } }

.actionBar-section .form-select {
  background-position: right 9px top 7px;
  height: 40px;
  padding-left: 10px;
  padding-top: 5px;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .actionBar-section .form-select {
      width: 225px; } }
  .actionBar-section .form-select:focus {
    border: 1px solid #5e9ed6;
    box-shadow: 1px 2px 4px 0 #5e9ed6; }

@media only screen and (max-width: 767px) {
  .actionBar-section.actionBar--advanced .form-fieldset {
    border: 0 none; }
  .actionBar-section.actionBar--advanced .form-label {
    background-color: #1e1e1e;
    border: 0 none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: Avenir, Helvetica, Arial, sans-serif;
    font-size: 16px;
    height: 36px;
    letter-spacing: 0.04em;
    line-height: 36px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%; }
  .actionBar-section.actionBar--advanced .form-field {
    background: transparent !important;
    border: 0 none;
    position: relative; }
  .actionBar-section.actionBar--advanced .form-select {
    background: transparent !important;
    border: 0 none;
    bottom: 0;
    color: transparent;
    height: 100%;
    left: 0;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0; } }

.special-form-input {
  background-color: white;
  border-color: #000;
  border-radius: 0;
  border-style: solid;
  color: #1e1e1e;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  height: 35px;
  letter-spacing: 0;
  padding: 0 32px 0 20px;
  width: 68%; }

.blocker {
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999; }

.blocker-container {
  position: relative; }

.icon svg {
  height: 20px;
  width: 20px; }

.icon--ratingEmpty svg {
  fill: none;
  stroke: #1e1e1e;
  stroke-miterlimit: 10; }

.icon--ratingFull svg {
  fill: #1e1e1e;
  stroke: #1e1e1e;
  stroke-miterlimit: 10; }

.rating--small {
  display: inline-block; }
  .rating--small span.icon {
    height: 14px;
    margin-top: -3px;
    width: 14px; }
    .rating--small span.icon svg {
      height: 15px;
      width: 15px; }

.tags {
  list-style: none;
  text-align: center; }

.tag {
  display: inline-block; }
  .tag a {
    display: inline-block; }

.videoGallery {
  border-top: 0 !important; }

.videoGallery-main {
  height: 0;
  margin-bottom: 16px;
  overflow: hidden;
  padding-bottom: 67.5%;
  padding-top: 25px;
  position: relative;
  margin-bottom: 25px; }
  .videoGallery-main.widescreen {
    padding-bottom: 56.34%; }
  .videoGallery-main.vimeo {
    padding-top: 0; }
  .videoGallery-main iframe,
  .videoGallery-main object,
  .videoGallery-main embed,
  .videoGallery-main video {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0; }

.videoGallery-list {
  list-style: none; }

.video {
  display: block;
  margin-bottom: 25px;
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 100ms ease-out; }
  @media only screen and (min-width: 768px) {
    .video {
      margin-bottom: 25px; } }
  .video:hover, .video.is-active {
    opacity: 1; }

.video-figure {
  margin-bottom: 10px;
  margin-right: 22px; }
  @media only screen and (min-width: 991px) {
    .video-figure {
      float: left; } }

.video-title {
  margin-bottom: 5px; }

.video-description {
  font-size: 16px;
  margin-bottom: 0; }

.alertBox {
  color: #4f4f4f; }

.alertBox-icon {
  float: left;
  margin-right: 10px; }
  .alertBox-icon .icon {
    display: block;
    height: 25px;
    width: 25px; }

.alertBox-message {
  overflow: hidden; }

.alertBox--info {
  color: #fff; }
  .alertBox--info .alertBox-close svg {
    fill: #dfdfdf; }

.textTruncate {
  padding-bottom: 20px;
  position: relative;
  transition: max-height 100ms ease-out; }

.js .textTruncate {
  max-height: 110px;
  overflow: hidden; }

.js .textTruncate--visible {
  max-height: 1000px; }

.textTruncate-viewMore {
  background-color: #fff;
  bottom: 0;
  padding-top: 10px;
  position: absolute;
  width: 100%; }

.quickView {
  *zoom: 1; }
  .quickView::after {
    clear: both;
    content: "";
    display: table; }

.promo-bar {
  background-color: #1e1e1e;
  color: #fff; }
  @media only screen and (max-width: 767px) {
    .promo-bar {
      font-size: 10px;
      letter-spacing: 1.43px;
      line-height: 54px; } }
  @media only screen and (min-width: 768px) {
    .promo-bar {
      line-height: 38px;
      padding: 0;
      position: relative;
      z-index: 102; } }
  .promo-bar .icon {
    fill: currentColor;
    height: 16px; }

.banners {
  background-color: #1e1e1e;
  color: #fff; }
  .banners p:last-child, .banners .p:last-child {
    margin-bottom: 0; }

.banner p, .banner .p {
  line-height: inherit;
  margin: 0; }

.banner a {
  color: #fff; }

.banner + .banner {
  margin-top: 20px; }

.writeReview-productDetails .product-brand {
  display: none; }

.writeReview-form .form-input,
.writeReview-form .form-select {
  display: block;
  width: 100%; }

.inlineList--labels {
  margin-bottom: 0;
  margin-left: -10px; }
  .inlineList--labels > li {
    margin-bottom: 10px;
    margin-left: 10px; }

.maintenanceNotice {
  background-color: #f8f7f6;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  left: 15px;
  padding: 25px;
  position: fixed;
  top: 15px;
  width: 300px;
  z-index: 999; }
  .maintenanceNotice > :last-child {
    margin-bottom: 0; }

.preview {
  padding-left: 9px; }

.apple-pay-checkout-button {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% 60%;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  max-height: 64px;
  min-height: 32px;
  min-width: 134px;
  padding: 20px;
  background-color: #000;
  background-image: -webkit-named-image(apple-pay-logo-white); }

.cart-additionalCheckoutButtons .apple-pay-checkout-button {
  margin-top: 10px; }

.apple-pay-supported .apple-pay-checkout-button {
  display: block; }
  @media only screen and (min-width: 480px) {
    .apple-pay-supported .apple-pay-checkout-button {
      display: inline-block;
      float: right; } }

.previewCartCheckout .apple-pay-checkout-button {
  display: block;
  float: none;
  margin-top: 10px; }

.breadcrumbs {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  padding-top: 10px; }
  @media only screen and (min-width: 480px) {
    .breadcrumbs {
      display: block; } }

.breadcrumb {
  display: inline-block;
  float: none; }
  .breadcrumb.is-active > .breadcrumb-label {
    cursor: text;
    text-decoration: none; }
  .breadcrumb.is-active .pipe-line {
    display: none; }

.sidebarBlock {
  margin-bottom: 22px; }
  @media only screen and (min-width: 768px) {
    .sidebarBlock {
      margin-bottom: 20px; } }
  .sidebarBlock .accordion-title {
    margin-bottom: 10px;
    margin-left: 0; }

.sidebarBlock-heading {
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    .sidebarBlock-heading.heading-price {
      margin-top: -12px; } }

.swal2-icon {
  display: flex; }

.swal2-container {
  z-index: 1000; }

.swal2-buttonswrapper .button, .swal2-buttonswrapper #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .swal2-buttonswrapper .yotpo-bottomline-2-boxes > .yotpo-default-button, .swal2-buttonswrapper #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .swal2-buttonswrapper .yotpo-default-button {
  min-width: 140px; }

.swal2-buttonswrapper .button + .button, .swal2-buttonswrapper #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .button, #MainContent .yotpo .main-widget .swal2-buttonswrapper .yotpo-bottomline-2-boxes > .yotpo-default-button + .button, .swal2-buttonswrapper #MainContent .yotpo .main-widget form .yotpo-default-button + .button, #MainContent .yotpo .main-widget form .swal2-buttonswrapper .yotpo-default-button + .button, .swal2-buttonswrapper #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button + .yotpo-default-button, #MainContent .yotpo .main-widget .swal2-buttonswrapper .yotpo-bottomline-2-boxes > .button + .yotpo-default-button, .swal2-buttonswrapper #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget .swal2-buttonswrapper .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, .swal2-buttonswrapper #MainContent .yotpo .main-widget form .button + .yotpo-default-button, #MainContent .yotpo .main-widget form .swal2-buttonswrapper .button + .yotpo-default-button, .swal2-buttonswrapper #MainContent .yotpo .main-widget form .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget .swal2-buttonswrapper form .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, .swal2-buttonswrapper #MainContent .yotpo .main-widget form .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget form .swal2-buttonswrapper .yotpo-default-button + .yotpo-default-button {
  margin-left: 14px; }

.search-box-wrapper {
  margin: 0 auto;
  max-width: 400px; }

.absolute-link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100; }

.absolute-parent {
  position: relative; }

.lazyload[data-bg],
.lazyloading[data-bg] {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 150px !important; }

.lazyloaded.lazy-cover[data-bg] {
  background-size: cover !important; }

.lazyload.opacity,
.lazyloading.opacity,
.lazyloaded.opacity {
  transition: opacity 400ms ease; }

.lazyload.opacity,
.lazyloading.opacity {
  opacity: 0; }

.lazyloaded.opacity {
  opacity: 1; }

input:focus-visible,
button:focus-visible,
textarea:focus-visible,
select:focus-visible,
details:focus-visible,
[href]:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible,
[contenteditable="true"]:focus-visible {
  outline: 2px solid #2e8fff !important;
  outline-offset: 1px !important; }

input:focus-visible + label {
  outline: 2px solid #2e8fff !important;
  outline-offset: 1px !important; }

.aria-description--hidden {
  height: 1px;
  left: 0;
  margin-left: -10000px;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 1px; }

.card {
  border: 1px solid var(--light-gray, #ededed);
  height: 100%;
  margin: 0 auto 30px;
  padding-bottom: 15px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .card {
      margin-bottom: 44px;
      padding-bottom: 25px; } }
  .card:focus-within .card-figcaption {
    opacity: 1; }
  .card.focus-within .card-figcaption {
    opacity: 1; }
  .card.login-required {
    position: relative; }
    .card.login-required .card-img-container::after {
      background-color: rgba(255, 255, 255, 0.5);
      bottom: 0;
      content: "";
      left: 0;
      position: absolute;
      right: 0;
      top: 0; }
    .card.login-required .login-lock {
      left: 50%;
      position: absolute;
      top: 30%;
      transform: translate(-50%, -50%);
      z-index: 1; }
      @media only screen and (min-width: 768px) {
        .card.login-required .login-lock {
          top: 40%; } }
      .card.login-required .login-lock .icon--lock {
        height: 50px;
        width: 50px; }
        @media only screen and (min-width: 768px) {
          .card.login-required .login-lock .icon--lock {
            height: 120px;
            width: 120px; } }
  .card .productCard-figure {
    margin: 0;
    max-height: 100%;
    padding-top: 38px; }
    .card .productCard-figure .slick-slider {
      margin-bottom: 0;
      overflow: hidden; }
  .card .slick-arrow,
  .card .slick-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5); }
  @media only screen and (max-width: 500px) {
    .card .slick-arrow {
      height: 34px;
      width: 34px; }
      .card .slick-arrow svg {
        height: 15px;
        width: 9px; } }
  .card .slick-dots {
    bottom: -12px;
    margin-left: 10px;
    position: relative;
    visibility: hidden;
    z-index: 3; }
    .card .slick-dots li {
      margin-right: 10px; }
      .card .slick-dots li button {
        height: 2px;
        margin-right: 0;
        width: 20px; }
  .card .slick-slide img {
    margin: 0 auto; }
  .card:hover .slick-dots {
    visibility: visible; }

.card-badge {
  background-color: #1e1e1e;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  left: 10px;
  letter-spacing: 1px;
  line-height: 1;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  z-index: 1; }
  .card-badge .badge-text {
    padding: 4px 8px 2px; }
  .card-badge.red {
    background-color: #b83232; }
  .card-badge.blue {
    background-color: #0a468e; }
  .card-badge.grey {
    background-color: #d3dde2;
    color: #1e1e1e; }
  .card-badge.black {
    background-color: #1e1e1e; }

.card-figure {
  margin: 0 0 10px;
  position: relative;
  text-align: center; }
  .card-figure .card-figcaption {
    bottom: 0;
    left: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    z-index: 3; }
  .card-figure:hover .card-figcaption {
    opacity: 1; }
  .card-figure:hover .card-img-container {
    opacity: 0.6; }

.slider-wrapper-outer {
  margin: 0 auto;
  max-width: 344px; }

.slider-wrapper {
  overflow: hidden;
  position: relative; }
  .slider-wrapper::after {
    content: "";
    display: block;
    height: 0;
    padding-bottom: 100%;
    width: 100%; }
  .slider-wrapper > div {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0; }

.card-square-images .card-figure > a {
  display: block;
  padding-top: 100%;
  position: relative; }
  .card-square-images .card-figure > a img {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 50%;
    width: 100%; }

.card-figcaption {
  display: none;
  pointer-events: none; }
  @media only screen and (min-width: 768px) {
    .card-figcaption {
      display: block; } }

.card-figcaption-body {
  display: block;
  pointer-events: all; }
  .card-figcaption-body .button, .card-figcaption-body #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .card-figcaption-body .yotpo-bottomline-2-boxes > .yotpo-default-button, .card-figcaption-body #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .card-figcaption-body .yotpo-default-button {
    width: 100%; }

.card-image {
  border: 0;
  display: flex;
  margin: auto;
  width: auto; }

.card-title {
  margin: 15px 0 0; }
  .card-title > a {
    color: inherit;
    display: inline-block;
    padding: 7px 0 9px;
    text-decoration: none; }
    .card-title > a:hover {
      color: inherit;
      opacity: 0.5; }

.card-text {
  display: inline-flex;
  gap: 10px; }
  .card-text abbr {
    border: 0;
    color: inherit;
    font-size: inherit; }

.card-action {
  overflow: hidden; }

.card-figcaption-button + .card-figcaption-button {
  margin-top: 5px; }

.card-body {
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .card-body {
      padding: 0 10px; } }
  .card-body .yotpo-display-wrapper > .yotpo-clr:first-child {
    text-align: center; }
    .card-body .yotpo-display-wrapper > .yotpo-clr:first-child::after {
      color: #57575b !important;
      content: "No Reviews";
      display: inline-block;
      font-size: 14px;
      margin-top: 3px; }
  .card-body .reviews-stars {
    margin-bottom: 10px; }
    .card-body .reviews-stars svg {
      height: 15px;
      width: 15px; }
  .card-body .price-section {
    display: inline-block; }
    .card-body .price-section.non-sale-price--withoutTax {
      color: #1e1e1e;
      margin-right: 4px;
      text-decoration: line-through; }
    .card-body .price-section .price--rrp {
      color: #949598;
      font-size: 14px; }
    .card-body .price-section .price--withoutTax.sale-price {
      color: #e0110f;
      font-weight: 900;
      margin-top: -2px; }
  @media only screen and (max-width: 990px) {
    .card-body .reviews-stars .yotpo-sr-bottom-line-text {
      font-size: 14px !important; }
    .card-body .reviews-stars .star-container svg {
      height: 12px;
      width: 12px; }
    .card-body .reviews-stars .yotpo-sr-bottom-line-summary {
      flex-wrap: wrap;
      justify-content: center;
      padding: 10px 10px 0; }
    .card-body .reviews-stars .yotpo-sr-bottom-line-text,
    .card-body .reviews-stars .yotpo-sr-bottom-line-summary > div {
      height: auto !important;
      line-height: normal !important; } }
  .card-body .reviews-stars .yotpo-reviews-star-ratings-widget {
    justify-content: center !important; }

.price--rrp,
.price--discounted {
  text-decoration: line-through; }

.product-carousel-wrap {
  padding: 0 50px; }
  .product-carousel-wrap .slick-track {
    display: flex; }
    .product-carousel-wrap .slick-track .slick-slide {
      height: auto;
      padding: 0 11px; }

.js .productCarousel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 600ms ease-out; }

.productCarousel.slick-initialized {
  max-height: 1000px;
  opacity: 1;
  overflow: initial; }

.productCarousel .slick-prev,
.productCarousel .slick-next {
  top: 50%; }

.productCarousel .slick-prev {
  left: -50px; }

.productCarousel .slick-next {
  right: -50px; }

.productCarousel-slide .card {
  margin-bottom: 0; }
  .productCarousel-slide .card .card-title {
    overflow-wrap: break-word; }

.card-swatches {
  font-size: 0; }
  .card-swatches .swatch-single {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid #979797;
    cursor: pointer;
    display: inline-block;
    height: auto;
    height: 45px;
    line-height: normal;
    margin-right: 6px;
    overflow: hidden;
    padding: 0;
    position: relative;
    vertical-align: top;
    width: 45px; }
    .card-swatches .swatch-single.is-active {
      border-color: #1e1e1e; }
    .card-swatches .swatch-single:last-child {
      margin-right: 0; }
    .card-swatches .swatch-single.swatch-color svg {
      height: 45px;
      transform: rotate(90deg);
      width: 45px; }
    .card-swatches .swatch-single.swatch-color.is-active::after {
      border: 2px solid #fff;
      bottom: 0;
      content: "";
      left: 0;
      position: absolute;
      right: 0;
      top: 0; }
    .card-swatches .swatch-single.swatch-more {
      border-color: #1e1e1e;
      color: #1e1e1e; }
      .card-swatches .swatch-single.swatch-more .swatch-content {
        line-height: 45px; }
      .card-swatches .swatch-single.swatch-more .icon {
        fill: currentColor;
        height: 16px;
        position: relative;
        top: 7px;
        transition: 0s ease all;
        width: 16px; }
      .card-swatches .swatch-single.swatch-more:hover {
        background-color: #1e1e1e;
        color: #fff; }

.variant-swatches {
  height: 20px; }
  .variant-swatches .card-swatches.flex {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 3; }
  .variant-swatches .card-swatches .more-swatches a {
    color: #57575b;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.29px;
    text-decoration: none;
    width: fit-content; }
  .variant-swatches .card-swatches .color-swatch-selector,
  .variant-swatches .card-swatches .color-swatch {
    border-radius: 10px;
    height: 20px;
    width: 20px; }
  .variant-swatches .card-swatches .color-swatch-selector {
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0; }
    .variant-swatches .card-swatches .color-swatch-selector.half-circle {
      flex-direction: row;
      transform: rotate(90deg); }
  .variant-swatches .card-swatches .color-swatch {
    border: 1px solid #949598;
    display: inline-block; }
    .variant-swatches .card-swatches .color-swatch.twotone-swatch-left {
      border-right: none; }
    .variant-swatches .card-swatches .color-swatch.twotone-swatch-right {
      border-left: none; }
    .variant-swatches .card-swatches .color-swatch.color--white {
      border-color: #949598; }
  @media only screen and (max-width: 767px) {
    .variant-swatches .card-small--hide {
      display: none !important; } }

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .complete-the-look .yotpo-bottomline {
    flex-direction: column; }
    .complete-the-look .yotpo-bottomline .yotpo-stars {
      margin-bottom: 5px; } }

.complete-the-look .card-img-container .card-image {
  height: auto;
  width: auto; }

.twotone-swatch-left {
  border-radius: 12rem 0 0 12rem !important;
  width: 10px !important; }

.twotone-swatch-right {
  border-radius: 0 12rem 12rem 0 !important;
  width: 10px !important; }

.navList,
.navBar {
  display: block;
  list-style: none;
  margin-left: 0; }

.navList-action,
.navBar-action {
  text-decoration: none; }
  .navList-action:hover,
  .navBar-action:hover {
    text-decoration: underline; }
    .navList-action:hover .dot,
    .navBar-action:hover .dot {
      background-color: #1e1e1e; }

.navList-action.is-active {
  font-weight: 500; }

.navList-item {
  margin-bottom: 15px; }
  .navList-item:last-of-type {
    margin-bottom: 0; }
  .navList-item a:hover {
    font-weight: 900; }

.navList-action--checkbox {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  width: 100%; }
  .navList-action--checkbox::before, .navList-action--checkbox::after {
    display: block;
    position: absolute;
    top: 50%; }
  .navList-action--checkbox::before {
    border: 1px solid #1e1e1e;
    border-radius: 0;
    content: "";
    height: 10px;
    left: 0;
    margin-top: -6px;
    width: 10px; }
  .navList-action--checkbox.is-checked::before, .navList-action--checkbox.is-selected::before {
    background-color: #1e1e1e; }

.navList-action-close {
  background: #eee;
  border-radius: 100%;
  display: inline-block;
  float: right;
  line-height: 0;
  opacity: 0;
  padding: 3px;
  transition: opacity 0.3s ease;
  visibility: hidden; }
  .navList-action-close .icon {
    fill: #1e1e1e;
    height: 13px;
    width: 13px; }
  .navList-action.is-selected:hover .navList-action-close {
    opacity: 1;
    visibility: visible; }

.navBar--sub {
  border-bottom: 1px solid #979797;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .navBar--sub {
      margin-bottom: 50px; } }
  .navBar--sub .navBar-section {
    float: none;
    margin: 0; }
  .navBar--sub .navBar-item {
    float: none; }
    @media only screen and (min-width: 768px) {
      .navBar--sub .navBar-item {
        display: inline-block; } }
    @media only screen and (min-width: 991px) {
      .navBar--sub .navBar-item {
        margin: 0 10px; } }
    .navBar--sub .navBar-item,
    .navBar--sub .navBar-item .navBar-action {
      color: #1e1e1e;
      line-height: 40px; }
    .navBar--sub .navBar-item.is-active {
      padding: 0 10px; }
      .navBar--sub .navBar-item.is-active,
      .navBar--sub .navBar-item.is-active > .navBar-action {
        color: #1e1e1e; }
    @media only screen and (min-width: 768px) {
      .navBar--sub .navBar-item.navBar-item--separate {
        border-left: 1px solid #9c9c9c;
        margin: 0;
        padding-left: 10px; } }
  .navBar--sub .navBar-action {
    display: block;
    padding: 0 8px; }
    @media only screen and (min-width: 991px) {
      .navBar--sub .navBar-action {
        padding: 0 10px; } }
    .navBar--sub .navBar-action:hover {
      color: #1e1e1e; }
  .navBar--sub.navBar--left {
    text-align: left; }
    .navBar--sub.navBar--left .navBar-section {
      background-color: #fff;
      border: 1px solid #e8e8e8;
      padding: 5px 20px; }
    .navBar--sub.navBar--left .navBar-item {
      border-bottom: 1px solid #e8e8e8;
      display: block;
      margin: 0;
      padding: 10px 0; }
      .navBar--sub.navBar--left .navBar-item:last-child {
        border-bottom: none; }

.icons-svg-sprite {
  display: none; }

.icon,
.icon svg {
  transition: all 0.15s ease; }

.form-field {
  position: relative; }
  .form-field .search-icon {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    line-height: 1;
    position: absolute;
    right: 0;
    top: 50%; }
    .form-field .search-icon svg {
      display: block;
      fill: #000 !important;
      height: 20px;
      max-width: 18px;
      stroke: #000 !important;
      stroke-width: 0 !important; }

a.close {
  height: 34px;
  padding: 7px 5px;
  position: absolute;
  right: 0;
  top: 0;
  width: 34px;
  z-index: 99; }
  a.close svg {
    fill: #fff; }

.left-off-canvas-menu,
.right-off-canvas-menu {
  position: fixed;
  top: 104px; }
  .left-off-canvas-menu a.close,
  .right-off-canvas-menu a.close {
    right: 10px;
    top: 15px; }
    .left-off-canvas-menu a.close svg,
    .right-off-canvas-menu a.close svg {
      fill: #1e1e1e; }

.left-off-canvas-menu {
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
  display: none; }
  .offcanvas-overlap-right .left-off-canvas-menu {
    display: block; }

.right-off-canvas-menu {
  box-shadow: -1px 1px 7px rgba(0, 0, 0, 0.25); }

.left-submenu,
.right-submenu {
  list-style: none;
  position: fixed;
  top: 104px; }
  .left-submenu .back > a,
  .right-submenu .back > a {
    color: #000;
    font-size: 20px;
    padding: 13px 30px; }
    .left-submenu .back > a:hover,
    .right-submenu .back > a:hover {
      color: #fff; }

.off-canvas-list {
  font-size: 16px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative; }
  .off-canvas-list .has-submenu .icon {
    float: right;
    height: 15px;
    margin-right: 5px;
    pointer-events: none;
    width: 7px; }
  .off-canvas-list li.offcanvas-divider {
    border-bottom: 1px solid #ededed;
    height: 44px; }
  .off-canvas-list li.loadingOverlay {
    top: 35px; }

.off-canvas-list-menu li .offcanvasLabel,
.sidebar-offcanvas li .offcanvasLabel,
.off-canvas-list-cart li .offcanvasLabel {
  background: #fff;
  border-bottom: 1px solid #ededed;
  color: #1e1e1e;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 13px 30px;
  padding-bottom: 20px;
  padding-top: 21px;
  text-transform: uppercase; }

.off-canvas-list-menu li a {
  font-weight: 500;
  letter-spacing: 2.29px;
  padding-right: 20px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase; }
  .off-canvas-list-menu li a.button, .off-canvas-list-menu li #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > a.yotpo-default-button, #MainContent .yotpo .main-widget .off-canvas-list-menu li .yotpo-bottomline-2-boxes > a.yotpo-default-button, .off-canvas-list-menu li #MainContent .yotpo .main-widget form a.yotpo-default-button, #MainContent .yotpo .main-widget form .off-canvas-list-menu li a.yotpo-default-button {
    border-bottom: 0; }
  .off-canvas-list-menu li a .icon {
    margin-right: 5px;
    position: relative;
    top: 2px; }

.off-canvas-list-menu li.back > a::before,
.off-canvas-list-menu li.has-submenu > a::after {
  border: 1px solid #1e1e1e;
  border-left: 0 none;
  border-top: 0 none;
  height: 11px;
  margin-right: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 11px; }

.off-canvas-list-menu li.back > a {
  color: #fff;
  padding-left: 60px; }
  .off-canvas-list-menu li.back > a::before {
    -webkit-transform: translate(0, -50%) rotateZ(135deg);
    -khtml-transform: translate(0, -50%) rotateZ(135deg);
    -moz-transform: translate(0, -50%) rotateZ(135deg);
    -ms-transform: translate(0, -50%) rotateZ(135deg);
    -o-transform: translate(0, -50%) rotateZ(135deg);
    transform: translate(0, -50%) rotateZ(135deg);
    border-color: #fff;
    content: "" !important;
    left: 30px; }

.off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) {
  list-style: none;
  margin-left: 0; }
  .off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) > li > a:not(.heading-all) svg {
    display: inline-block;
    fill: currentColor;
    height: 24px;
    left: 8px;
    position: absolute;
    stroke: none;
    stroke-width: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 24px; }

.off-canvas-list-menu li a[href="/sale/"] {
  color: #da0f0f; }

.offcanvas-search {
  border-bottom: 1px solid #ededed;
  display: block;
  margin: 0;
  padding: 15px 30px;
  position: relative; }
  .offcanvas-search .form {
    margin: 0;
    position: relative; }
    .offcanvas-search .form label {
      margin-right: 10px; }
    .offcanvas-search .form .form-input {
      height: 35px;
      padding-left: 11px;
      padding-right: 40px;
      width: 210px; }
    .offcanvas-search .form button {
      height: 100%;
      padding: 0 10px;
      position: absolute;
      right: 0;
      top: 0; }
      .offcanvas-search .form button .icon {
        display: block;
        font-size: 0;
        height: 15px;
        padding: 0;
        width: 15px; }

.off-canvas-list-cart li.loadingOverlay {
  top: 78px; }

.off-canvas-list-cart li.offcanvas-subtotal {
  background-color: #dae4eb;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  padding: 13px 30px;
  text-align: right;
  text-transform: uppercase; }

.off-canvas-list-cart li.offcanvasAction-checkout, .off-canvas-list-cart li.offcanvasAction-viewCart {
  float: left;
  white-space: nowrap;
  width: 50%; }
  .off-canvas-list-cart li.offcanvasAction-checkout .button, .off-canvas-list-cart li.offcanvasAction-checkout #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .off-canvas-list-cart li.offcanvasAction-checkout .yotpo-bottomline-2-boxes > .yotpo-default-button, .off-canvas-list-cart li.offcanvasAction-checkout #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .off-canvas-list-cart li.offcanvasAction-checkout .yotpo-default-button, .off-canvas-list-cart li.offcanvasAction-viewCart .button, .off-canvas-list-cart li.offcanvasAction-viewCart #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .off-canvas-list-cart li.offcanvasAction-viewCart .yotpo-bottomline-2-boxes > .yotpo-default-button, .off-canvas-list-cart li.offcanvasAction-viewCart #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .off-canvas-list-cart li.offcanvasAction-viewCart .yotpo-default-button {
    padding: 0 15px; }

.off-canvas-list-cart li.offcanvasCart-emptyBody {
  clear: both;
  padding: 30px; }

.off-canvas-list-cart li.offcanvasAction-continueShopping {
  clear: both;
  margin-left: 30px;
  padding-bottom: 30px;
  padding-top: 30px; }
  .off-canvas-list-cart li.offcanvasAction-continueShopping a {
    color: #9c9c9c;
    text-transform: uppercase; }
    .off-canvas-list-cart li.offcanvasAction-continueShopping a .icon {
      display: inline-block;
      fill: #9c9c9c;
      height: 20px;
      position: relative;
      top: -2px;
      vertical-align: middle;
      width: 20px; }
    .off-canvas-list-cart li.offcanvasAction-continueShopping a:hover {
      color: #1e1e1e; }
      .off-canvas-list-cart li.offcanvasAction-continueShopping a:hover .icon {
        fill: #1e1e1e; }

.off-canvas-list-cart li.offcanvasAction-checkout {
  padding-left: 15px; }

.off-canvas-list-cart li.offcanvasAction-viewCart {
  padding-right: 15px;
  text-align: right; }

.offcanvasAction-additionalCheckoutButton {
  float: left;
  margin-top: 20px;
  padding: 0 10px;
  width: 50%; }
  .navUser .offcanvasAction-additionalCheckoutButton {
    padding: 10px 5px 0; }
  .offcanvasAction-additionalCheckoutButton.odd {
    clear: both;
    padding-left: 5px; }
    .apple-pay-supported .offcanvasAction-additionalCheckoutButton.odd {
      padding-left: 10px;
      padding-right: 5px; }
  .offcanvasAction-additionalCheckoutButton.even {
    padding-right: 5px; }
    .apple-pay-supported .offcanvasAction-additionalCheckoutButton.even {
      padding-left: 5px;
      padding-right: 10px; }
  .offcanvasAction-additionalCheckoutButton .PayPalExpressCheckout p, .offcanvasAction-additionalCheckoutButton .PayPalExpressCheckout .p {
    display: none;
    text-align: center; }
  .offcanvasAction-additionalCheckoutButton .PayPalExpressCheckout #PayPalExpressCheckoutButton {
    width: 100%; }
  .offcanvasAction-additionalCheckoutButton .braintree-paypal-button,
  .offcanvasAction-additionalCheckoutButton .paypal-button-parent {
    width: 100% !important; }
  .apple-pay-supported .offcanvasAction-additionalCheckoutButton .apple-pay-checkout-button {
    display: block;
    float: none;
    width: 100%; }

.offcanvasCartItem {
  padding: 27px 30px; }
  .offcanvasCartItem + .offcanvasCartItem {
    border-top: 1px solid #979797; }

.offcanvasCartItem-image {
  float: left;
  padding: 0;
  width: 110px; }

.offcanvasCartItem-content {
  color: inherit;
  display: block;
  overflow: hidden;
  padding-left: 12px;
  width: auto; }
  .offcanvasCartItem-content h6, .offcanvasCartItem-content .h6 {
    font-size: 100%;
    margin-bottom: 10px;
    white-space: normal; }
  .offcanvasCartItem-content .offcanvasCartItem-options {
    list-style: none;
    margin: 0 0 10px;
    padding: 0; }
    .offcanvasCartItem-content .offcanvasCartItem-options li {
      color: #9c9c9c;
      font-size: 100%; }
  .offcanvasCartItem-content .offcanvasCartItem-price,
  .offcanvasCartItem-content .offcanvasCartItem-options {
    color: inherit;
    display: block; }
  .offcanvasCartItem-content .offcanvasCartItem-price {
    color: #636467;
    font-size: 100%; }
  .offcanvasCartItem-content .offcanvasCartItem-options dl {
    font-size: 13px;
    line-height: 1.2; }
    .offcanvasCartItem-content .offcanvasCartItem-options dl dt {
      clear: left;
      float: left;
      line-height: 1.2;
      margin-bottom: 0;
      margin-right: 0.25em; }
    .offcanvasCartItem-content .offcanvasCartItem-options dl dd {
      line-height: 1.2;
      overflow: hidden; }

.sidebar-offcanvas .accordion-block {
  border-bottom: 1px solid #979797; }
  .sidebar-offcanvas .accordion-block .accordion-title {
    display: block;
    font-size: 16px;
    font-size: 700;
    margin: 0;
    padding: 18px 0 15px 20px;
    text-transform: uppercase; }
  .sidebar-offcanvas .accordion-block .accordion-navigation-actions {
    top: 19px; }
  .sidebar-offcanvas .accordion-block .accordion-content {
    padding: 0 0 15px 50px; }
  .sidebar-offcanvas .accordion-block .navList-item {
    font-size: 14px; }
    .sidebar-offcanvas .accordion-block .navList-item:not(:last-of-type) {
      margin-bottom: 15px; }
  .sidebar-offcanvas .accordion-block .navList-action--checkbox {
    padding-left: 28px; }
    .sidebar-offcanvas .accordion-block .navList-action--checkbox::before {
      margin-top: -9px; }

.mobile-facet-footer {
  font-size: 0;
  padding: 20px 0;
  text-align: center; }
  .mobile-facet-footer .button, .mobile-facet-footer #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .mobile-facet-footer .yotpo-bottomline-2-boxes > .yotpo-default-button, .mobile-facet-footer #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .mobile-facet-footer .yotpo-default-button {
    margin: 0 10px;
    width: 132px; }

.socialLinks {
  list-style: none;
  margin: 0;
  padding: 0; }
  @media only screen and (max-width: 990px) {
    .socialLinks {
      margin-bottom: 22px; } }
  .socialLinks .icon {
    color: #fff;
    height: 25px !important;
    margin: 0;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    width: 25px !important; }
    .socialLinks .icon:hover {
      opacity: 0.5; }
    .socialLinks .icon svg {
      fill: currentColor;
      height: 25px !important;
      transition: 0s;
      width: 25px !important; }

.socialLinks-item {
  display: inline-block;
  font-size: 0; }
  .socialLinks .socialLinks-item {
    margin-bottom: 0;
    margin-right: 25px; }
    .socialLinks .socialLinks-item:last-child {
      margin-right: 0; }

.socialLinks--alt .icon {
  height: 30px;
  width: 30px; }

.socialLinks--alt svg {
  fill: #1e1e1e; }

.socialLinks--flex {
  display: flex;
  justify-content: space-between; }
  .socialLinks--flex .socialLinks-item {
    margin: 0; }

.body .heroCarousel {
  margin: 0; }

.play-pause-wrap {
  margin: 0 22px 22px 22px;
  position: relative; }

.play-pause-buttons {
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  height: 30px;
  left: 0;
  position: absolute;
  width: 30px; }
  @media only screen and (min-width: 768px) {
    .play-pause-buttons {
      height: 50px;
      width: 50px; } }
  .play-pause-buttons a {
    display: block;
    height: 30px;
    padding: 10px; }
    @media only screen and (min-width: 768px) {
      .play-pause-buttons a {
        height: 50px; } }
  .play-pause-buttons img {
    max-height: 100%;
    max-width: 100%; }

.js .heroCarousel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 600ms ease-out; }

.heroCarousel.slick-initialized {
  max-height: 1000px;
  opacity: 1; }

.heroCarousel .slick-next,
.heroCarousel .slick-prev {
  z-index: 2; }
  @media only screen and (min-width: 768px) {
    .heroCarousel .slick-next,
    .heroCarousel .slick-prev {
      top: 50%; } }

.heroCarousel .slick-next {
  right: 15px; }
  @media only screen and (min-width: 768px) {
    .heroCarousel .slick-next {
      right: 25px; } }

.heroCarousel .slick-prev {
  left: 15px; }
  @media only screen and (min-width: 768px) {
    .heroCarousel .slick-prev {
      left: 25px; } }

.heroCarousel .slick-dots {
  background-color: rgba(255, 255, 255, 0.75);
  bottom: 0;
  padding: 16px 30px; }
  @media only screen and (min-width: 768px) {
    .heroCarousel .slick-dots {
      left: auto;
      right: 0;
      transform: none; } }
  .heroCarousel .slick-dots li {
    margin: 0;
    vertical-align: middle; }
    .heroCarousel .slick-dots li button {
      height: 4px;
      width: 25px; }
  .heroCarousel .slick-dots::before, .heroCarousel .slick-dots::after {
    display: inline-block;
    font-family: Avenir, Helvetica, Arial, sans-serif;
    position: relative;
    top: 1px;
    vertical-align: middle; }
  .heroCarousel .slick-dots::before {
    content: attr(data-current);
    margin-right: 10px; }
  .heroCarousel .slick-dots::after {
    content: attr(data-total);
    margin-left: 10px; }

.heroCarousel-slide {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .heroCarousel-slide a {
    text-decoration: none; }

@media only screen and (min-width: 991px) {
  .heroCarousel-slide--stretch {
    background-size: 100% 100%; } }

@media only screen and (min-width: 768px) {
  .heroCarousel-image {
    visibility: hidden; } }

.heroCarousel-content {
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-content {
      left: 0;
      margin: 0 auto;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%); }
      .heroCarousel-content.heroCarousel-content--empty {
        background-color: transparent; } }

.heroCarousel-slide--custom {
  background-position: center;
  background-size: cover;
  height: 300px;
  position: relative;
  text-align: center; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .heroCarousel-slide--custom {
      height: 450px; } }
  @media only screen and (min-width: 991px) and (max-width: 1199px) {
    .heroCarousel-slide--custom {
      height: 600px; } }
  @media only screen and (min-width: 1200px) {
    .heroCarousel-slide--custom {
      height: 800px; } }
  .heroCarousel-slide--custom .heroCarousel-content--custom {
    transform: translate(0, -50%);
    left: 0;
    padding: 0 22px;
    position: absolute;
    right: 0;
    top: 50%; }
  .heroCarousel-slide--custom .wrapper {
    height: 100%; }
  .heroCarousel-slide--custom .content-light .heroCarousel-title {
    color: #fff; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom.slide-layering .heroCarousel-content--custom {
      left: 0;
      right: auto;
      text-align: left; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom.slide-shirts .heroCarousel-content--custom {
      left: 0;
      right: auto;
      text-align: left; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom.slide-headwear .heroCarousel-content--custom {
      left: auto;
      right: 0;
      text-align: left; } }

.heroCarousel-title {
  font-size: 22px;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  text-transform: uppercase; }
  .heroCarousel-title + .heroCarousel-action {
    margin-top: 25px; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-title + .heroCarousel-action {
        margin-top: 40px; } }

@media only screen and (min-width: 768px) {
  .heroCarousel-description {
    font-size: 20px;
    margin-bottom: 50px; } }

.heroCarousel-description::before {
  top: 10px; }

.productView-images {
  margin: 0 auto 20px;
  max-width: 732px; }
  @media only screen and (min-width: 768px) {
    .productView-images {
      margin-bottom: 0;
      margin-left: 0; } }

.productView-image-wrapper {
  position: relative; }
  .productView-image-wrapper .more-images {
    background-color: rgba(255, 255, 255, 0.9);
    bottom: 20px;
    display: block;
    padding: 10px;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 100; }
    @media only screen and (min-width: 768px) {
      .productView-image-wrapper .more-images {
        display: none; } }
    .productView-image-wrapper .more-images a {
      display: block;
      text-decoration: none; }
      .productView-image-wrapper .more-images a:hover {
        opacity: 0.6; }
    .productView-image-wrapper .more-images .icon {
      color: currentColor;
      height: 45px;
      width: 50px; }
    .productView-image-wrapper .more-images .icon-wrapper {
      margin-bottom: 10px; }

.productView-image {
  margin: 0 auto;
  max-width: 732px;
  overflow: hidden;
  position: relative; }
  .productView-image .productView-img-container {
    text-align: center; }
  .productView-image > a {
    display: block;
    width: 100%; }
  .productView-image img {
    width: 100%; }
  .productView-image .productView-image--default {
    width: auto; }

.thumbnails-section {
  display: none; }
  @media only screen and (min-width: 768px) {
    .thumbnails-section {
      display: block; } }

.thumbnails-wrapper .more-images svg {
  height: 100%;
  max-height: 100px;
  width: 100%; }

.thumbnails-wrapper .slick-prev {
  left: -50px; }

.thumbnails-wrapper .slick-next {
  right: -50px; }

.productView-thumbnail {
  cursor: pointer;
  outline: 0; }
  .productView-thumbnail a {
    border: 1px solid transparent;
    display: block;
    padding-top: 100%;
    position: relative; }
    .productView-thumbnail a img {
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      left: 50%;
      max-height: 100%;
      max-width: 100%;
      position: absolute;
      top: 50%;
      width: 100%; }
    .productView-thumbnail a:hover, .productView-thumbnail a.is-active {
      border-color: #1e1e1e; }

@media only screen and (max-width: 767px) {
  .productView-details {
    padding-bottom: 20px; } }

.productView--quickView .productView-details {
  position: relative; }

.productView-product > :last-child {
  margin-bottom: 0; }

.productView-product .product-sku {
  margin-bottom: 15px;
  margin-top: 15px; }

.productView-title {
  margin-bottom: 5px; }

.productView-brand {
  font-size: 22px;
  margin: 0 0 10px; }
  @media only screen and (min-width: 991px) {
    .productView-brand {
      font-size: 20px;
      margin: -2px 0 25px; } }

.productView-price {
  display: inline-block;
  margin-bottom: 7px; }
  @media only screen and (min-width: 768px) {
    .productView-price {
      margin-bottom: 10px; } }
  .productView-price .price-section--saving {
    font-size: 22px; }
    .productView-price .price-section--saving .saved-percentage {
      color: #da0f0f; }
  .productView-price abbr {
    border: 0;
    color: inherit;
    font-size: inherit; }

.star-rating {
  margin: 14px 0;
  width: 179px; }

.productView-rating {
  margin-bottom: 15px; }

.productView-reviewLink {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0;
  vertical-align: middle; }
  .productView-reviewLink .icon {
    display: inline-block;
    margin-right: 0; }
    .productView-reviewLink .icon svg {
      height: 10px;
      width: 10px; }
  .productView-reviewLink--new {
    margin-left: 5px; }
  .productView-reviewLink.write-review-wrap {
    margin-left: 25px; }
    .productView-reviewLink.write-review-wrap a {
      text-decoration: underline; }

.productView-reviewLink--stars a {
  text-decoration: none; }

.productView-info {
  *zoom: 1;
  margin: 0; }
  .productView-info::after {
    clear: both;
    content: "";
    display: table; }

.productView-info-name,
.productView-info-value {
  color: #1e1e1e;
  float: left;
  line-height: 1.71429;
  margin: 0; }

.productView-info-name {
  clear: both; }

.productView-info-value {
  margin-left: 4px; }

.productView-options {
  *zoom: 1;
  position: relative; }
  .productView-options::after {
    clear: both;
    content: "";
    display: table; }
  .productView-options .wishlist-form-wrapper {
    bottom: 0;
    display: inline-block;
    min-width: 195px; }
    .productView-options .wishlist-form-wrapper.is-flex-item {
      margin-left: 20px; }
      @media screen and (min-width: 768px) and (max-width: 1289px) {
        .productView-options .wishlist-form-wrapper.is-flex-item {
          margin-left: 0; } }
      @media only screen and (max-width: 767px) {
        .productView-options .wishlist-form-wrapper.is-flex-item {
          margin-left: 0; } }
    .productView-options .wishlist-form-wrapper .form-wishlist .dropdown-menu-button {
      padding: 0 18px; }
    .productView-options .wishlist-form-wrapper .heart-icon {
      height: 22px;
      position: relative;
      top: 5px;
      width: 25px; }
  @media only screen and (min-width: 768px) and (max-width: 810px) {
    .productView-options .add-increment-wrap {
      margin-bottom: 20px; } }
  @media only screen and (min-width: 480px) {
    .productView-options .form-input[type="number"] {
      width: 16.6667%; } }
  .productView-options input[type="file"] {
    font-size: 14px; }
  .productView-options .form-label .required-star {
    display: none; }
  .productView-options .form-label--inlineSmall {
    color: #57575b;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase; }
    .productView-options .form-label--inlineSmall ~ .form-option {
      display: inline-block;
      vertical-align: middle; }
    .productView-options .form-label--inlineSmall ~ .form-select {
      display: inline-block;
      padding-right: 30px;
      vertical-align: middle;
      width: auto; }
    .productView-options .form-label--inlineSmall [data-option-value] {
      display: inline-block;
      margin-left: 2px; }
  .productView-options .options-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; }
  .productView-options .form-field {
    font-size: 0;
    margin-bottom: 20px; }
    .productView-options .form-field > .form-checkbox + .form-label,
    .productView-options .form-field > .form-radio + .form-label {
      display: inline-block;
      margin-left: 20px;
      width: auto; }
      @media only screen and (min-width: 480px) {
        .productView-options .form-field > .form-checkbox + .form-label,
        .productView-options .form-field > .form-radio + .form-label {
          margin-left: 0;
          width: 100%; } }
    .productView-options .form-field > .form-label:nth-of-type(2) {
      margin-left: 0; }
    @media only screen and (min-width: 768px) {
      .productView-options .form-field.form-field--increments {
        margin-bottom: 40px; } }
  .productView-options .form-action {
    width: auto; }
    .productView-options .form-action .button, .productView-options .form-action #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .productView-options .form-action .yotpo-bottomline-2-boxes > .yotpo-default-button, .productView-options .form-action #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .productView-options .form-action .yotpo-default-button {
      width: auto; }
    .productView-options .form-action #form-action-addToCart {
      position: relative; }

.size-chart-link-wrapper {
  margin-left: 15px; }
  .size-chart-link-wrapper a {
    font-size: 16px; }

.productOptions-list {
  border: 1px solid #979797;
  list-style: none;
  margin: 0;
  max-height: 400px;
  overflow-y: auto; }

.productOptions-list-item {
  padding: 20px; }
  .productOptions-list-item + .productOptions-list-item {
    border-top: 1px solid #979797; }
  .productOptions-list-item .form-label {
    text-align: left;
    top: -2px; }

.productOptions-list-item-figure,
.productOptions-list-item-content {
  display: table-cell;
  vertical-align: middle; }

.productOptions-list-item-figure {
  width: 40px; }

.productOptions-list-item-content {
  padding-left: 28px; }

.shareProduct {
  text-align: center; }

.productView {
  padding-top: 25px; }
  @media only screen and (min-width: 768px) {
    .productView {
      padding-top: 60px; } }
  .modal .productView {
    padding-bottom: 0;
    padding-top: 0; }

@media only screen and (min-width: 768px) {
  .productView-top {
    padding-bottom: 40px; } }

.productView--quickView .socialLinks-item--print {
  display: none; }

.reviews-content-header {
  border-bottom: 1px solid #979797;
  padding-bottom: 20px; }
  .reviews-content-header .reviews-count {
    color: #9c9c9c;
    margin-right: 10px; }
  @media only screen and (max-width: 767px) {
    .reviews-content-header .reviews-stars {
      margin-bottom: 20px; } }

.productReviews {
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .productReviews {
      margin-bottom: 50px; } }

.productReviews-list {
  list-style: none; }

.productReview {
  border-bottom: 1px solid #979797;
  padding: 20px 0; }
  .productReview:last-child {
    border-bottom: 0; }

.productReview-title {
  margin: 0;
  text-transform: none; }

.productReview-author {
  margin-bottom: 10px; }

.productReview-name {
  color: #1e1e1e;
  font-size: 20px;
  font-weight: 500; }

.productReview-date {
  color: #9c9c9c;
  font-size: 14px; }

.productReview-rating {
  display: inline-block;
  margin-bottom: 5px; }

.productReview-ratingNumber {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px; }

.productView-description {
  margin: 0 0 25px;
  max-width: 609px; }

.imageGallerySlide {
  position: relative; }

.easyzoom-flyout {
  background-color: #fff;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99; }
  .easyzoom-flyout img {
    max-width: none;
    width: auto;
    z-index: 99; }

.related-products {
  padding: 40px 0; }
  @media only screen and (min-width: 768px) {
    .related-products {
      padding: 60px; } }

.size-chart-wrapper {
  margin: 0 auto;
  max-width: 1146px; }
  @media only screen and (min-width: 768px) {
    .size-chart-wrapper .h1 {
      margin-bottom: 40px; } }

.size-chart-content + .size-chart-content {
  margin-top: 30px; }

.size-chart-content .chart-title {
  margin: 0; }

.size-chart-content .chart-description {
  margin-bottom: 30px; }

.size-chart-content .table {
  border-spacing: 5px 2px;
  margin: 0;
  table-layout: fixed;
  width: 1146px; }
  .size-chart-content .table td,
  .size-chart-content .table th {
    text-align: center; }
  .size-chart-content .table th {
    padding: 0 10px 12px;
    vertical-align: top; }
  .size-chart-content .table td {
    padding: 8px 10px; }
  .size-chart-content .table tr:nth-of-type(even) td {
    background-color: #ededed; }

.product-tech-section {
  margin-bottom: 0;
  padding: 30px 0; }
  @media only screen and (min-width: 768px) {
    .product-tech-section {
      padding: 58px 0 0; } }
  .product-tech-section hr {
    margin-bottom: 50px; }
  .product-tech-section .tech-intro .tech-intro-text {
    position: relative;
    top: 30px; }
  .product-tech-section .tech-intro .icon-wrapper {
    margin-bottom: 30px; }
    .product-tech-section .tech-intro .icon-wrapper .icon {
      height: 80px;
      width: 79px; }
  .product-tech-section .tech-intro p, .product-tech-section .tech-intro .p {
    margin-bottom: 30px; }
  .product-tech-section .tech-image {
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .product-tech-section .tech-image {
        margin-bottom: 50px; } }
  @media only screen and (min-width: 991px) {
    .product-tech-section .tech-description .grid {
      display: flex;
      justify-content: center; } }
  .product-tech-section .tech-description .icon {
    fill: currentColor;
    height: 60px;
    width: 60px; }
    .product-tech-section .tech-description .icon.icon-dunning-logo {
      width: 150px; }
  .product-tech-section .tech-description .icon-single {
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .product-tech-section .tech-description .icon-single {
        margin-bottom: 50px; } }
  .product-tech-section .care-materials .material-description {
    float: none;
    margin: 0 auto 30px;
    max-width: 466px; }
    @media only screen and (min-width: 768px) {
      .product-tech-section .care-materials .material-description {
        float: left;
        margin-bottom: 40px; } }
    .product-tech-section .care-materials .material-description:last-child {
      margin-bottom: 0; }
    .product-tech-section .care-materials .material-description .h4 {
      margin-bottom: 10px; }
    .product-tech-section .care-materials .material-description p:last-child, .product-tech-section .care-materials .material-description .p:last-child {
      margin-bottom: 0; }
  .product-tech-section .care-materials img {
    margin-bottom: 20px; }

.image-gallery-wrapper {
  display: inline-block;
  padding-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .image-gallery-wrapper {
      padding-top: 35px; } }
  .image-gallery-wrapper .image-gallery {
    aspect-ratio: 1;
    overflow: hidden; }
  .image-gallery-wrapper img {
    margin: 0 auto; }
  .image-gallery-wrapper .slick-prev {
    left: -50px; }
  .image-gallery-wrapper .slick-next {
    right: -50px; }

[data-content-region="product_below_price"] > div > div {
  margin: 20px 0 0; }
  [data-content-region="product_below_price"] > div > div #paypal-commerce-proddetails-messaging-banner {
    display: inline-block; }
    [data-content-region="product_below_price"] > div > div #paypal-commerce-proddetails-messaging-banner > span {
      min-width: 242px; }

.promo-on-pdp {
  margin-top: -10px; }
  .promo-on-pdp p, .promo-on-pdp .p {
    color: #a4343a; }

.predict-placement {
  margin-bottom: 20px; }

.image-gallery-sidebar {
  display: inline-block;
  height: 100%;
  max-width: 140px;
  padding: 60px 0;
  padding-left: 28px; }
  .image-gallery-sidebar .imageGalleryNavSlide {
    margin: 0 auto;
    max-width: 100px;
    padding: 6px 0; }

html {
  scroll-padding-top: 110px; }

@media only screen and (max-width: 768px) {
  .yotpo-regular-box.yotpo-bottomline.bottom-line-items-container .yotpo-filter-stars,
  .yotpo-regular-box.yotpo-bottomline.bottom-line-items-container .reviews-qa-labels-container {
    float: none; }
  .yotpo-regular-box.yotpo-bottomline.bottom-line-items-container .reviews-qa-labels-container {
    position: relative; } }

.product-points {
  margin-left: 12px; }

.accordion-section {
  margin-bottom: 10px; }

.atc-box {
  display: flex; }
  @media screen and (min-width: 768px) and (max-width: 1289px) {
    .atc-box {
      flex-direction: column; } }
  @media only screen and (max-width: 767px) {
    .atc-box {
      flex-direction: column; } }
  .atc-box .atc-container {
    display: flex;
    width: 100%; }
    @media screen and (min-width: 768px) and (max-width: 1289px) {
      .atc-box .atc-container {
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      .atc-box .atc-container {
        margin-bottom: 20px; } }
    .atc-box .atc-container .atc-select {
      background-color: #1e1e1e;
      border: none;
      color: #fff;
      font-weight: 900;
      height: 50px;
      padding-left: 20px;
      padding-top: 4px;
      width: 80px; }
    .atc-box .atc-container .atc-button {
      width: 100% !important; }

.product-image-thumbnail {
  height: 64px;
  width: 64px; }

.complete-the-look .card-body {
  margin-top: 10px; }

.promoted-products-box {
  display: none !important; }

.pdp-badge {
  display: flex;
  margin-bottom: 15px;
  text-transform: uppercase;
  width: fit-content; }
  .pdp-badge span {
    border: 2px solid #1e1e1e;
    font-weight: 400;
    padding: 4px 4px 0; }

.notify-me-form {
  padding: 20px 0; }
  .notify-me-form form {
    margin: 0 !important; }
    .notify-me-form form * {
      font-family: inherit !important; }
    .notify-me-form form button {
      border: 1px solid #1e1e1e !important;
      transition: all 0.3s ease !important; }
      .notify-me-form form button:hover {
        background-color: #ededed !important;
        color: #1e1e1e !important; }

.custom-login-modal {
  overflow-y: auto;
  padding-bottom: 0; }
  .custom-login-modal .modal-content {
    padding-bottom: 0; }
  .custom-login-modal .modal-close {
    background-color: transparent;
    border: 0;
    color: #000; }
  .custom-login-modal .register-benefits {
    padding: 30px 20px 20px; }
    @media only screen and (min-width: 768px) {
      .custom-login-modal .register-benefits {
        padding: 20px 30px 10px; } }
    .custom-login-modal .register-benefits .benefits-logo {
      margin-bottom: 40px; }
    .custom-login-modal .register-benefits img {
      margin: 0 auto;
      max-width: 100%;
      width: 250px; }
  .custom-login-modal .login-row .new-customer,
  .custom-login-modal .login-row .login-wrap {
    height: auto;
    margin-bottom: 0;
    padding: 20px; }
  .custom-login-modal .login-row .login-form {
    padding: 0 20px;
    width: 100%; }
  .custom-login-modal .login-row .new-customer-info-wrap {
    margin-bottom: 0; }
    .custom-login-modal .login-row .new-customer-info-wrap .new-customer-fact-list {
      margin-bottom: 20px;
      text-align: left; }

.compareTable {
  border-top: 1px solid #979797;
  table-layout: fixed;
  width: 100%; }

.compareTable-row {
  vertical-align: top; }
  .compareTable-row + .compareTable-row .compareTable-heading,
  .compareTable-row + .compareTable-row .compareTable-item {
    border-top: 1px solid #979797; }
  .compareTable-row + .compareTable-row .compareTable-heading:empty {
    border-top: 0; }

.compareTable-heading {
  font-size: 22px;
  padding: 28px 25px;
  position: relative;
  text-align: right;
  width: 0; }

.compareTable-headingText {
  position: absolute;
  top: 28px;
  white-space: nowrap; }
  @media only screen and (min-width: 768px) {
    .compareTable-headingText {
      position: inherit;
      top: inherit; } }

.compareTable-item {
  padding: 43px 25px 28px; }
  @media only screen and (min-width: 768px) {
    .compareTable-item {
      padding-top: 28px; } }

.compareTable-removeProduct {
  background-color: container("fill", "dark");
  border-radius: 50%;
  height: 45px;
  position: absolute;
  right: -25px;
  top: -25px;
  transition: background-color 0.15s ease;
  width: 45px; }
  .compareTable-removeProduct .icon {
    fill: #1e1e1e;
    height: 20px;
    margin-top: 7px;
    width: 20px; }

.compareTable-product {
  padding: 27px 25px 28px; }
  .compareTable-product .card {
    margin-bottom: 0; }
  .compareTable-product .card-body {
    min-height: 80px;
    padding-top: 25px; }

.compareTable-action {
  padding: 0 25px 25px; }
  .compareTable-action .button, .compareTable-action #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .compareTable-action .yotpo-bottomline-2-boxes > .yotpo-default-button, .compareTable-action #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .compareTable-action .yotpo-default-button {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%; }

.toggle {
  border-top: 1px solid #979797;
  margin-bottom: 30px; }
  .toggle:last-of-type {
    margin-bottom: 60px; }

.toggle-title {
  margin-bottom: 30px; }

.toggleLink {
  color: #1e1e1e; }
  .toggle-title .toggleLink {
    float: right;
    line-height: 24px; }

.toggleLink-text {
  font-size: 14px; }

.toggleLink-text--off {
  display: inline-block; }
  .toggleLink.is-open .toggleLink-text--off {
    display: none; }

.toggleLink-text--on {
  display: none; }
  .toggleLink.is-open .toggleLink-text--on {
    display: inline-block; }

.toggle-content {
  display: none; }
  .toggle-content.is-open {
    display: block; }

@media only screen and (max-width: 767px) {
  .mobile-advanced-filters {
    font-size: 0;
    margin-bottom: 30px; }
    .mobile-advanced-filters > div {
      display: inline-block;
      width: 50%; }
      .mobile-advanced-filters > div:first-child {
        padding-right: 10px; }
      .mobile-advanced-filters > div:last-child {
        padding-left: 10px; } }

.filter-toggle {
  width: 100%; }

.category-banner {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 50px; }
  @media only screen and (min-width: 991px) {
    .category-banner {
      grid-template-columns: 7fr 5fr; } }
  .category-banner img {
    min-height: 39vw;
    width: 100%; }
    @media only screen and (min-width: 991px) {
      .category-banner img {
        min-height: 23vw; } }
  .category-banner .category-banner-text-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .category-banner .category-banner-text-section h1, .category-banner .category-banner-text-section .h1 {
      margin-bottom: 5px; }

#product-listing-container {
  text-align: center; }

.productGrid.grid--flex {
  margin-bottom: 44px;
  row-gap: 22px; }
  @media only screen and (min-width: 768px) {
    .productGrid.grid--flex {
      row-gap: 44px; } }
  .productGrid.grid--flex .card {
    margin: 0 auto; }

.int-cat-hero {
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .int-cat-hero {
      border-bottom-width: 0;
      flex-direction: column;
      margin-bottom: 50px; } }
  .int-cat-hero h1, .int-cat-hero .h1 {
    margin-bottom: 10px; }
  .int-cat-hero h2, .int-cat-hero .h2, .int-cat-hero #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span, #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .int-cat-hero span {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 50px;
    text-transform: none; }
    @media only screen and (min-width: 768px) {
      .int-cat-hero h2, .int-cat-hero .h2, .int-cat-hero #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span, #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .int-cat-hero span {
        margin-bottom: 60px; } }
  .int-cat-hero .hero-container {
    background-position: center;
    height: 300px;
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .int-cat-hero .hero-container {
        height: 535px;
        margin-bottom: 0; } }

@media only screen and (min-width: 480px) {
  .small-up--wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1484px;
    padding: 0 22px;
    position: relative;
    width: 100%; } }

.int-cat-page,
.custom-landing-page {
  margin: 0 auto;
  max-width: 1680px; }
  @media only screen and (max-width: 479px) {
    .int-cat-page .grid,
    .custom-landing-page .grid {
      margin-left: 0; }
      .int-cat-page .grid > .grid__item,
      .custom-landing-page .grid > .grid__item {
        padding-left: 0; } }
  .int-cat-page .shop-grid,
  .custom-landing-page .shop-grid {
    margin-bottom: 50px; }
    .int-cat-page .shop-grid .image-wrapper,
    .custom-landing-page .shop-grid .image-wrapper {
      position: relative;
      margin-bottom: 20px; }
      .int-cat-page .shop-grid .image-wrapper::after,
      .custom-landing-page .shop-grid .image-wrapper::after {
        content: "";
        display: block;
        height: 0;
        padding-bottom: 123.90671%;
        width: 100%; }
      .int-cat-page .shop-grid .image-wrapper img,
      .custom-landing-page .shop-grid .image-wrapper img {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0; }
    .int-cat-page .shop-grid .item-heading,
    .custom-landing-page .shop-grid .item-heading {
      border-bottom: 1px solid #eaeaea; }
  .int-cat-page .item-heading,
  .custom-landing-page .item-heading {
    margin-bottom: 20px;
    padding-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .int-cat-page .item-heading,
      .custom-landing-page .item-heading {
        margin: 0; } }
    .int-cat-page .item-heading a,
    .custom-landing-page .item-heading a {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 1.73px;
      text-decoration: none;
      text-transform: capitalize; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .item-heading a,
        .custom-landing-page .item-heading a {
          text-transform: uppercase; } }
  .int-cat-page .two-grid,
  .custom-landing-page .two-grid {
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .int-cat-page .two-grid,
      .custom-landing-page .two-grid {
        margin-bottom: 50px; } }
    .int-cat-page .two-grid .image-wrapper,
    .custom-landing-page .two-grid .image-wrapper {
      position: relative;
      margin-bottom: 0; }
      .int-cat-page .two-grid .image-wrapper::after,
      .custom-landing-page .two-grid .image-wrapper::after {
        content: "";
        display: block;
        height: 0;
        padding-bottom: 86.47343%;
        width: 100%; }
      .int-cat-page .two-grid .image-wrapper img,
      .custom-landing-page .two-grid .image-wrapper img {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0; }
    .int-cat-page .two-grid .item-heading,
    .custom-landing-page .two-grid .item-heading {
      border-bottom: 1px solid #eaeaea;
      min-height: 100px;
      padding-top: 30px; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .two-grid .item-heading,
        .custom-landing-page .two-grid .item-heading {
          min-height: auto; } }
      .int-cat-page .two-grid .item-heading > a,
      .custom-landing-page .two-grid .item-heading > a {
        text-transform: uppercase; }
    .int-cat-page .two-grid .grid__item:first-of-type .item-heading,
    .custom-landing-page .two-grid .grid__item:first-of-type .item-heading {
      border-right: 1px solid #eaeaea; }
    .int-cat-page .two-grid .grid__item:last-of-type .item-heading,
    .custom-landing-page .two-grid .grid__item:last-of-type .item-heading {
      border-left: 1px solid #eaeaea; }
  .int-cat-page #featured-products-section,
  .custom-landing-page #featured-products-section {
    padding: 0; }
    .int-cat-page #featured-products-section .section-header,
    .custom-landing-page #featured-products-section .section-header {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 24px; }
  .int-cat-page .banner-above-text,
  .custom-landing-page .banner-above-text {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 50px; }
    .int-cat-page .banner-above-text .image-container,
    .custom-landing-page .banner-above-text .image-container {
      background-position: center;
      height: 300px;
      margin-bottom: 30px; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .banner-above-text .image-container,
        .custom-landing-page .banner-above-text .image-container {
          height: 655px; } }
    .int-cat-page .banner-above-text .h1,
    .custom-landing-page .banner-above-text .h1 {
      margin-bottom: 15px; }
    .int-cat-page .banner-above-text p, .int-cat-page .banner-above-text .p,
    .int-cat-page .banner-above-text .h1,
    .int-cat-page .banner-above-text .button-container,
    .custom-landing-page .banner-above-text p,
    .custom-landing-page .banner-above-text .p,
    .custom-landing-page .banner-above-text .h1,
    .custom-landing-page .banner-above-text .button-container {
      margin-left: auto;
      margin-right: auto;
      max-width: 770px; }
    .int-cat-page .banner-above-text p, .int-cat-page .banner-above-text .p,
    .custom-landing-page .banner-above-text p,
    .custom-landing-page .banner-above-text .p {
      margin-bottom: 25px;
      padding: 0 22px; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .banner-above-text p, .int-cat-page .banner-above-text .p,
        .custom-landing-page .banner-above-text p,
        .custom-landing-page .banner-above-text .p {
          font-size: 22px;
          padding: 0; } }
    .int-cat-page .banner-above-text .button, .int-cat-page .banner-above-text #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .int-cat-page .banner-above-text .yotpo-bottomline-2-boxes > .yotpo-default-button, .int-cat-page .banner-above-text #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .int-cat-page .banner-above-text .yotpo-default-button,
    .custom-landing-page .banner-above-text .button,
    .custom-landing-page .banner-above-text #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button,
    #MainContent .yotpo .main-widget .custom-landing-page .banner-above-text .yotpo-bottomline-2-boxes > .yotpo-default-button,
    .custom-landing-page .banner-above-text #MainContent .yotpo .main-widget form .yotpo-default-button,
    #MainContent .yotpo .main-widget form .custom-landing-page .banner-above-text .yotpo-default-button {
      margin-bottom: 30px;
      width: 220px; }
  .int-cat-page .banner-section,
  .custom-landing-page .banner-section {
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .int-cat-page .banner-section,
      .custom-landing-page .banner-section {
        margin-bottom: 50px; } }
    .int-cat-page .banner-section .image-container,
    .custom-landing-page .banner-section .image-container {
      background-position: center;
      height: 358px; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .banner-section .image-container,
        .custom-landing-page .banner-section .image-container {
          height: 750px; } }
  .int-cat-page .belt-section,
  .custom-landing-page .belt-section {
    margin-bottom: 80px; }
    .int-cat-page .belt-section .belt-image,
    .custom-landing-page .belt-section .belt-image {
      margin-bottom: 15px; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .belt-section .belt-image,
        .custom-landing-page .belt-section .belt-image {
          margin-bottom: 35px; } }
    .int-cat-page .belt-section .belt-heading,
    .custom-landing-page .belt-section .belt-heading {
      margin-bottom: 15px; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .belt-section .belt-heading,
        .custom-landing-page .belt-section .belt-heading {
          margin-bottom: 0; } }
      .int-cat-page .belt-section .belt-heading a,
      .custom-landing-page .belt-section .belt-heading a {
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 1.73px;
        text-decoration: none;
        text-transform: uppercase; }
    @media only screen and (min-width: 768px) {
      .int-cat-page .belt-section .belt-item,
      .custom-landing-page .belt-section .belt-item {
        height: 488px;
        margin: 0; } }
    .int-cat-page .belt-section .full-size-belt,
    .int-cat-page .belt-section .full-size-belt img,
    .custom-landing-page .belt-section .full-size-belt,
    .custom-landing-page .belt-section .full-size-belt img {
      height: 100%; }
    .int-cat-page .belt-section .grid .grid__item:last-child .belt-item,
    .custom-landing-page .belt-section .grid .grid__item:last-child .belt-item {
      border-bottom: 1px solid #eaeaea; }
  .int-cat-page .explore-tech-section,
  .custom-landing-page .explore-tech-section {
    border-width: 0;
    margin-bottom: 60px;
    padding: 0; }
    @media only screen and (min-width: 768px) {
      .int-cat-page .explore-tech-section,
      .custom-landing-page .explore-tech-section {
        margin-bottom: 80px; } }
    .int-cat-page .explore-tech-section .tech-item,
    .custom-landing-page .explore-tech-section .tech-item {
      margin-bottom: 20px; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .explore-tech-section .tech-item,
        .custom-landing-page .explore-tech-section .tech-item {
          margin-bottom: 0; } }
  .int-cat-page .best-sellers-grid h2, .int-cat-page .best-sellers-grid .h2, .int-cat-page .best-sellers-grid #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span, #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .int-cat-page .best-sellers-grid span,
  .custom-landing-page .best-sellers-grid h2,
  .custom-landing-page .best-sellers-grid .h2,
  .custom-landing-page .best-sellers-grid #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span,
  #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .custom-landing-page .best-sellers-grid span {
    font-size: 24px; }
  .int-cat-page .best-sellers-grid .image-wrapper,
  .custom-landing-page .best-sellers-grid .image-wrapper {
    position: relative;
    margin-bottom: 0; }
    .int-cat-page .best-sellers-grid .image-wrapper::after,
    .custom-landing-page .best-sellers-grid .image-wrapper::after {
      content: "";
      display: block;
      height: 0;
      padding-bottom: 85.2381%;
      width: 100%; }
    .int-cat-page .best-sellers-grid .image-wrapper img,
    .custom-landing-page .best-sellers-grid .image-wrapper img {
      bottom: 0;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      top: 0; }
    @media only screen and (min-width: 991px) {
      .int-cat-page .best-sellers-grid .image-wrapper,
      .custom-landing-page .best-sellers-grid .image-wrapper {
        height: calc(360px - 63px); }
        .int-cat-page .best-sellers-grid .image-wrapper img,
        .custom-landing-page .best-sellers-grid .image-wrapper img {
          height: 100%;
          object-fit: cover; } }
    @media only screen and (min-width: 1200px) {
      .int-cat-page .best-sellers-grid .image-wrapper,
      .custom-landing-page .best-sellers-grid .image-wrapper {
        height: calc(420px - 63px); } }
  .int-cat-page .best-sellers-grid .item-heading,
  .custom-landing-page .best-sellers-grid .item-heading {
    border-bottom: 1px solid #eaeaea;
    min-height: 90px;
    padding-top: 18px; }
    @media only screen and (max-width: 479px) {
      .int-cat-page .best-sellers-grid .item-heading,
      .int-cat-page .best-sellers-grid .item-heading a,
      .custom-landing-page .best-sellers-grid .item-heading,
      .custom-landing-page .best-sellers-grid .item-heading a {
        font-size: 16px; }
      .int-cat-page .best-sellers-grid .item-heading a,
      .custom-landing-page .best-sellers-grid .item-heading a {
        display: inline-block;
        min-height: 70px; } }
    @media only screen and (min-width: 768px) {
      .int-cat-page .best-sellers-grid .item-heading,
      .custom-landing-page .best-sellers-grid .item-heading {
        min-height: auto; } }
  .int-cat-page .best-sellers-grid .grid__item .grid__item:first-of-type .item-heading,
  .custom-landing-page .best-sellers-grid .grid__item .grid__item:first-of-type .item-heading {
    border-right: 1px solid #eaeaea; }
  .int-cat-page .full-size-container .image-container,
  .custom-landing-page .full-size-container .image-container {
    background-position: center;
    height: 300px;
    margin-bottom: 20px;
    width: 100%; }
    @media only screen and (min-width: 991px) and (max-width: 1199px) {
      .int-cat-page .full-size-container .image-container,
      .custom-landing-page .full-size-container .image-container {
        height: 360px;
        margin-bottom: 0; } }
    @media only screen and (min-width: 1200px) {
      .int-cat-page .full-size-container .image-container,
      .custom-landing-page .full-size-container .image-container {
        height: 420px;
        margin-bottom: 0; } }

@media only screen and (min-width: 480px) {
  .small-up--grid--rev {
    direction: rtl;
    text-align: left; }
    .small-up--grid--rev > .grid__item {
      direction: ltr;
      float: right;
      text-align: left; } }

.facetedSearch-toggle {
  border: 1px solid #979797;
  border-radius: 0;
  display: block;
  margin-bottom: 20px;
  padding: 7px 10px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .facetedSearch-toggle {
      display: none !important; } }
  .facetedSearch-toggle.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0; }
  .facetedSearch-toggle .facetedSearch-toggle-text {
    color: #636467;
    letter-spacing: 0;
    text-transform: uppercase; }
  .facetedSearch-toggle .facetedSearch-toggle-indicator {
    position: absolute;
    right: 10px;
    top: 8px; }
    .facetedSearch-toggle .facetedSearch-toggle-indicator svg {
      height: 16px;
      width: 16px; }

@media only screen and (min-width: 768px) {
  .facetedSearch {
    max-width: 220px; } }

.facetedSearch .accordion-content {
  display: block !important; }

.facetedSearch-navList {
  display: none; }
  @media only screen and (min-width: 768px) {
    .facetedSearch-navList {
      display: block !important; } }
  .facetedSearch-navList.is-open {
    display: block; }
    .facetedSearch-navList.is-open .accordion--navList,
    .facetedSearch-navList.is-open .accordion-block:first-child .accordion-navigation {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
  .facetedSearch-toggle + .facetedSearch-navList,
  .sidebarBlock + .facetedSearch-navList {
    margin-top: 20px; }
  @media only screen and (max-width: 767px) {
    .facetedSearch-toggle + .facetedSearch-navList.is-open,
    .sidebarBlock + .facetedSearch-navList.is-open {
      border-left: 1px solid #979797;
      border-right: 1px solid #979797;
      margin-top: -1px; }
      .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block,
      .sidebarBlock + .facetedSearch-navList.is-open .accordion-block {
        border-bottom: 1px solid #979797; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-title,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-title {
          font-size: 16px;
          margin: 0;
          padding: 18px 0 15px 20px; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-navigation-actions,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-navigation-actions {
          top: 19px; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-content,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-content {
          padding: 0 20px 15px; } }
      @media only screen and (max-width: 767px) and (min-width: 768px) {
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-content,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-content {
          padding: 0 0 15px 20px; } }
  @media only screen and (max-width: 767px) {
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-item,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-item {
          font-size: 14px; }
          .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-item:not(:last-of-type),
          .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-item:not(:last-of-type) {
            margin-bottom: 5px; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox {
          padding-left: 28px; }
          .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox::before,
          .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox::before {
            margin-top: -9px; } }
  @media only screen and (min-width: 768px) {
    .facetedSearch-toggle + .facetedSearch-navList.is-open,
    .sidebarBlock + .facetedSearch-navList.is-open {
      margin-top: 20px; } }
  .facetedSearch-navList .navList--inner {
    margin-left: 20px; }

.facet-quick-heading {
  text-transform: capitalize; }

.facetedSearch-optionColumns {
  column-count: 3;
  column-gap: 20px; }

.facetedSearch-content--rating .is-selected {
  font-weight: bold; }

.facetedSearch-refineFilters .navList-item {
  display: inline-block;
  margin-right: 5px; }

#facetedSearch-navList--filter-color,
#facetedSearch-navList--filter-length,
#facetedSearch-navList--filter-size,
#facetedSearch-navList--filter-waist {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px 11px; }
  #facetedSearch-navList--filter-color .navList-item,
  #facetedSearch-navList--filter-length .navList-item,
  #facetedSearch-navList--filter-size .navList-item,
  #facetedSearch-navList--filter-waist .navList-item {
    display: inline-block;
    margin: 0; }
  #facetedSearch-navList--filter-color .navList-action:hover,
  #facetedSearch-navList--filter-length .navList-action:hover,
  #facetedSearch-navList--filter-size .navList-action:hover,
  #facetedSearch-navList--filter-waist .navList-action:hover {
    font-weight: unset;
    text-decoration: none; }

.facetLabel {
  background-color: #ededed;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  display: block;
  min-width: 100px;
  padding: 5px 18px 2px 10px;
  position: relative;
  text-decoration: none; }
  .facetLabel .icon {
    display: inline-block;
    fill: #979797;
    height: 11px;
    position: absolute;
    right: 5px;
    top: 7px;
    width: 11px; }

.navList-count {
  color: #57575b;
  float: right;
  font-size: 14px; }

.dot {
  background-color: transparent;
  border: 1px solid #1e1e1e;
  border-radius: 50%;
  display: inline-block;
  height: 11px;
  margin-right: 13px;
  width: 11px; }

.facet-swatch {
  border: 1px solid transparent;
  display: block;
  min-height: 35px;
  min-width: 35px; }
  .facet-swatch.facet-swatch--color:hover + .swatch-popout {
    display: block; }
  .facet-swatch.facet-swatch--color[data-swatch-color="black"] {
    background-color: #000; }
    .facet-swatch.facet-swatch--color[data-swatch-color="black"]:hover {
      border-color: #979797; }
  .facet-swatch.facet-swatch--color[data-swatch-color="white"] {
    background-color: #fff;
    border-color: #979797; }
  .facet-swatch.facet-swatch--color[data-swatch-color="grey"] {
    background-color: #808080; }
  .facet-swatch.facet-swatch--color[data-swatch-color="blue"] {
    background-color: #0a468e; }
  .facet-swatch.facet-swatch--color[data-swatch-color="khaki"] {
    background-color: #d2b48c; }
  .facet-swatch.facet-swatch--color[data-swatch-color="red"] {
    background-color: #b22222; }
  .facet-swatch.facet-swatch--color[data-swatch-color="purple"] {
    background-color: #800080; }
  .facet-swatch.facet-swatch--color[data-swatch-color="pink"] {
    background-color: #ffc0cb; }
  .facet-swatch.facet-swatch--color[data-swatch-color="green"] {
    background-color: #006400; }
  .facet-swatch.facet-swatch--color[data-swatch-color="orange"] {
    background-color: #f27b36; }
  .facet-swatch.facet-swatch--color[data-swatch-color="yellow"] {
    background-color: #f0f78d; }
  .facet-swatch.facet-swatch--size {
    border-color: #979797;
    font-size: 14px;
    line-height: 19px;
    padding: 10px 9.5px 6px;
    text-align: center; }
    .facet-swatch.facet-swatch--size:hover {
      background-color: #ededed;
      border-color: #1e1e1e; }

.navList-action {
  position: relative; }
  .navList-action .swatch-popout {
    background-color: #1e1e1e;
    color: #fff;
    display: none;
    font-weight: 400;
    padding: 5px 10px;
    position: absolute;
    right: 50%;
    top: calc(-100% - 2px);
    transform: translateX(50%); }
    .navList-action .swatch-popout::after {
      background-color: #1e1e1e;
      content: "";
      display: block;
      height: 8px;
      position: absolute;
      right: calc(50% - 4px);
      transform: rotate(35deg) skew(-20deg);
      width: 8px; }

.reset-filters {
  display: none; }

.cart-main .alertBox {
  background-color: #dae4eb;
  margin-bottom: 30px;
  padding: 12px;
  text-align: center; }
  .cart-main .alertBox .alertBox-icon {
    display: none; }
  .cart-main .alertBox .alertBox-message {
    font-size: 12px;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      .cart-main .alertBox .alertBox-message {
        font-size: 15px; } }

.cart {
  border-collapse: collapse;
  display: block;
  margin-bottom: 27px;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .cart {
      display: table; } }

.cart-header {
  display: none; }
  @media only screen and (min-width: 768px) {
    .cart-header {
      display: table-header-group;
      text-align: left; } }

.cart-header-item {
  padding-bottom: 15px; }

.cart-list {
  border-top: 1px solid #979797;
  display: block; }
  @media only screen and (min-width: 768px) {
    .cart-list {
      display: table-row-group; } }

.cart-item {
  border-bottom: 1px solid #979797;
  clear: both;
  display: block;
  padding: 15px 0 30px; }
  @media only screen and (min-width: 480px) {
    .cart-item {
      *zoom: 1;
      padding-left: 25%;
      padding-top: 30px; }
      .cart-item::after {
        clear: both;
        content: "";
        display: table; } }
  @media only screen and (min-width: 768px) {
    .cart-item {
      display: table-row;
      padding-left: 0; }
      .cart-item::before, .cart-item::after {
        display: none; } }

.cart-item-block {
  display: block; }
  @media only screen and (min-width: 768px) {
    .cart-item-block {
      display: table-cell;
      padding-bottom: 30px;
      padding-top: 30px;
      vertical-align: top; } }
  .cart-item-block .definitionList {
    margin-bottom: 5px; }

.cart-item-figure {
  float: left;
  height: 140px;
  margin-bottom: 15px;
  text-align: right;
  width: 33.33333%; }
  @media only screen and (min-width: 480px) {
    .cart-item-figure {
      height: 175px;
      margin-bottom: 0;
      margin-left: -33.33333%;
      width: 33.33333%; } }
  @media only screen and (min-width: 768px) {
    .cart-item-figure {
      float: none;
      text-align: left;
      width: 16.6667%; } }

.cart-item-fixed-image {
  width: 100%; }

.cart-item-image {
  width: auto; }

.cart-item-title {
  display: table-cell;
  height: 140px;
  padding-left: 30px; }
  @media only screen and (min-width: 480px) {
    .cart-item-title {
      display: block;
      height: 175px;
      height: auto;
      margin-bottom: 30px;
      overflow: hidden; } }
  @media only screen and (min-width: 768px) {
    .cart-item-title {
      display: table-cell;
      margin-bottom: 0;
      position: relative; } }
  @media only screen and (min-width: 768px) {
    .cart-item-title .change-remove-wrap {
      bottom: 30px;
      position: absolute; } }
  .cart-item-title .change-remove-wrap a {
    display: inline-block;
    line-height: 0.94;
    text-decoration: none;
    vertical-align: middle; }
    .cart-item-title .change-remove-wrap a:hover {
      text-decoration: underline; }
    .cart-item-title .change-remove-wrap a + a {
      border-left: 1px solid #1e1e1e;
      margin-left: 1px;
      padding-left: 6px; }

.cart-item-info {
  clear: both;
  width: 100%; }
  @media only screen and (min-width: 480px) {
    .cart-item-info {
      clear: none;
      float: left;
      overflow: hidden;
      width: 33.33333%; }
      .cart-item-info + .cart-item-info {
        margin-top: 0; } }
  @media only screen and (min-width: 768px) {
    .cart-item-info {
      float: none;
      width: 16.66667%; } }
  .cart-item-info + .cart-item-info {
    margin-top: 10px; }

@media only screen and (min-width: 768px) {
  .cart-item-title,
  .cart-item-info {
    padding-top: 45px; } }

.cart-item-total .cart-item-value {
  font-weight: 500; }

.cart-item-quantity .form-input--incrementTotal,
.cart-item-quantity div.increment-buttons-wrap .button,
.cart-item-quantity div.increment-buttons-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button,
#MainContent .yotpo .main-widget .cart-item-quantity div.increment-buttons-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button,
.cart-item-quantity div.increment-buttons-wrap #MainContent .yotpo .main-widget form .yotpo-default-button,
#MainContent .yotpo .main-widget form .cart-item-quantity div.increment-buttons-wrap .yotpo-default-button {
  border-color: #979797; }

.cart-item-quantity .form-input--incrementTotal {
  font-size: 16px; }

@media only screen and (max-width: 767px) {
  .cart-item-quantity .form-increments-wrap {
    display: inline-block;
    padding-left: 15px;
    vertical-align: middle; } }

.cart-item-quantity .form-increment > div.increment-input-wrap {
  margin: 0;
  width: 35px; }

.cart-item-quantity .form-increment > div.increment-button-wrap {
  width: 35px; }
  .cart-item-quantity .form-increment > div.increment-button-wrap .button, .cart-item-quantity .form-increment > div.increment-button-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .cart-item-quantity .form-increment > div.increment-button-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button, .cart-item-quantity .form-increment > div.increment-button-wrap #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .cart-item-quantity .form-increment > div.increment-button-wrap .yotpo-default-button {
    height: 30px;
    line-height: 20px; }
    .cart-item-quantity .form-increment > div.increment-button-wrap .button .icon, .cart-item-quantity .form-increment > div.increment-button-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, #MainContent .yotpo .main-widget .cart-item-quantity .form-increment > div.increment-button-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, .cart-item-quantity .form-increment > div.increment-button-wrap #MainContent .yotpo .main-widget form .yotpo-default-button .icon, #MainContent .yotpo .main-widget form .cart-item-quantity .form-increment > div.increment-button-wrap .yotpo-default-button .icon {
      height: 8px;
      width: 8px; }
  .cart-item-quantity .form-increment > div.increment-button-wrap:first-child .button, .cart-item-quantity .form-increment > div.increment-button-wrap:first-child #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .cart-item-quantity .form-increment > div.increment-button-wrap:first-child .yotpo-bottomline-2-boxes > .yotpo-default-button, .cart-item-quantity .form-increment > div.increment-button-wrap:first-child #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .cart-item-quantity .form-increment > div.increment-button-wrap:first-child .yotpo-default-button {
    line-height: 0px; }
    .cart-item-quantity .form-increment > div.increment-button-wrap:first-child .button .icon, .cart-item-quantity .form-increment > div.increment-button-wrap:first-child #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, #MainContent .yotpo .main-widget .cart-item-quantity .form-increment > div.increment-button-wrap:first-child .yotpo-bottomline-2-boxes > .yotpo-default-button .icon, .cart-item-quantity .form-increment > div.increment-button-wrap:first-child #MainContent .yotpo .main-widget form .yotpo-default-button .icon, #MainContent .yotpo .main-widget form .cart-item-quantity .form-increment > div.increment-button-wrap:first-child .yotpo-default-button .icon {
      height: 2px; }

.cart-item-quantity .form-increment .form-input--incrementTotal {
  height: 30px;
  line-height: 30px; }

.cart-item-label {
  display: inline-block;
  text-align: right;
  vertical-align: middle;
  width: 33.33333%; }
  @media only screen and (min-width: 480px) {
    .cart-item-label {
      display: block;
      margin-bottom: 5px;
      padding-left: 15px;
      text-align: left;
      width: 100%; } }
  @media only screen and (min-width: 768px) {
    .cart-item-label {
      display: none; } }

.cart-item-value {
  padding-left: 15px; }
  @media only screen and (min-width: 768px) {
    .cart-item-value {
      font-size: 18px;
      padding-left: 0; } }

.cart-item-brand {
  margin-bottom: 2px; }

.cart-item-name {
  font-weight: 500;
  margin: 0; }
  .cart-item-name + .definitionList {
    margin-top: 5px; }
    @media only screen and (min-width: 768px) {
      .cart-item-name + .definitionList {
        padding-bottom: 30px; } }

.cart-item-options--giftWrapping {
  margin-top: 15px; }
  .cart-item-options--giftWrapping .cart-item-option-description {
    color: #1e1e1e; }

.cart-remove.cart-remove--spacer {
  visibility: hidden; }

.cart-remove.icon {
  border-radius: 50%;
  cursor: pointer;
  float: right;
  height: 18px;
  margin-top: 2px;
  padding: 2px;
  transition: background-color 0.15s ease;
  width: 18px; }
  @media only screen and (min-width: 480px) {
    .cart-remove.icon {
      margin-left: 25px; } }
  .cart-remove.icon > svg {
    fill: #1e1e1e; }

@media only screen and (max-width: 767px) {
  [data-cart-totals] {
    margin-left: auto;
    max-width: 350px; } }

.cart-totals {
  list-style: none;
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .cart-totals {
      margin-left: auto;
      max-width: 389px; } }

@media only screen and (min-width: 768px) {
  .coupon-certificate {
    max-width: 389px; } }

.cart-total {
  *zoom: 1;
  margin-bottom: 10px; }
  .cart-total::after {
    clear: both;
    content: "";
    display: table; }
  .cart-total .form-inlineMessage {
    text-align: left; }

.cart-total-label,
.cart-total-value {
  float: left;
  width: 50%; }

@media only screen and (min-width: 768px) {
  .cart-total-label {
    display: block;
    padding-left: 0;
    text-align: left; } }

.cart-total-value {
  text-align: right; }

.cart-action-button {
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: none;
  border: 0 none;
  color: #1e1e1e;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  text-decoration: underline;
  transition: opacity 0.15s ease; }
  .cart-action-button:hover {
    opacity: 0.5; }

.estimator-form {
  margin-bottom: 0;
  position: relative;
  text-align: right;
  top: 24px; }
  .estimator-form dl {
    margin-bottom: 30px; }
  .estimator-form .estimator-form-label {
    text-align: left; }
  .estimator-form .estimator-form-input {
    margin: 0 0 18px; }
    .estimator-form .estimator-form-input:last-of-type {
      margin-bottom: 30px; }
  .estimator-form .form-input,
  .estimator-form .form-select {
    margin: 0;
    width: 100%; }

.estimator-form-label {
  clear: both;
  float: left;
  font-weight: 400;
  margin-bottom: 0; }
  .estimator-form-label .form-label {
    line-height: 32px;
    margin-bottom: 0; }

.estimator-form-label-text {
  margin-left: 10px; }

.estimator-form-input {
  float: right;
  margin-bottom: 20px;
  width: 60%; }
  .estimator-form-input .form-input,
  .estimator-form-input .form-select {
    margin-bottom: 0; }

.estimator-form-input--price {
  width: 30%; }

.estimator-form--default {
  margin-bottom: 30px; }

.estimator-form-row {
  *zoom: 1; }
  .estimator-form-row::after {
    clear: both;
    content: "";
    display: table; }
  .estimator-form-row :last-child {
    margin-bottom: 0; }

.estimator-form-toggleUPSRate {
  display: block;
  margin-bottom: 1em; }

.shipping-quotes {
  *zoom: 1;
  padding: 20px 0;
  text-align: right; }
  .shipping-quotes::after {
    clear: both;
    content: "";
    display: table; }
  .shipping-quotes ul {
    list-style: none; }

.shipping-estimate-value #shipping-cost-discounted {
  margin-left: 5px; }

.cart-form {
  clear: both;
  padding-bottom: 18px;
  padding-top: 13px; }

.cart-actions {
  *zoom: 1;
  clear: both; }
  .cart-actions::after {
    clear: both;
    content: "";
    display: table; }
  .cart-actions .button, .cart-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .cart-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .cart-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .cart-actions .yotpo-default-button {
    display: block;
    margin-bottom: 0; }
    @media only screen and (min-width: 480px) {
      .cart-actions .button, .cart-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .cart-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .cart-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .cart-actions .yotpo-default-button {
        display: inline-block;
        float: right; } }
  .cart-actions .checkoutMultiple {
    clear: right;
    display: block;
    float: right;
    padding-top: 5px; }
  .cart-actions.cart-actions-top {
    margin-bottom: 30px; }

.cart-additionalCheckoutButtons, .previewCart-additionalCheckoutButtons {
  *zoom: 1;
  margin-top: 10px; }
  .cart-additionalCheckoutButtons::after, .previewCart-additionalCheckoutButtons::after {
    clear: both;
    content: "";
    display: table; }
  .cart-additionalCheckoutButtons .FloatRight, .previewCart-additionalCheckoutButtons .FloatRight {
    *zoom: 1; }
    .cart-additionalCheckoutButtons .FloatRight::after, .previewCart-additionalCheckoutButtons .FloatRight::after {
      clear: both;
      content: "";
      display: table; }
    @media only screen and (min-width: 768px) {
      .cart-additionalCheckoutButtons .FloatRight div, .previewCart-additionalCheckoutButtons .FloatRight div {
        float: right; } }
    .cart-additionalCheckoutButtons .FloatRight p, .previewCart-additionalCheckoutButtons .FloatRight p, .cart-additionalCheckoutButtons .FloatRight .p, .previewCart-additionalCheckoutButtons .FloatRight .p {
      float: none !important;
      margin: 7px 0;
      text-align: right; }

.previewCart-additionalCheckoutButtons {
  padding-right: 1.5rem; }

.empty-cart-wrap .empty-cart-main {
  margin-bottom: 45px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .empty-cart-wrap .empty-cart-main {
      margin-bottom: 80px; } }
  .empty-cart-wrap .empty-cart-main h3, .empty-cart-wrap .empty-cart-main .h3 {
    margin-bottom: 30px; }

.empty-cart-wrap #top-sellers-section {
  margin-bottom: 0; }

@media only screen and (min-width: 768px) {
  .previewCart .productView {
    display: flex;
    margin: 0;
    padding-bottom: 0;
    padding-top: 0;
    width: 75%; }
  .previewCart .productView-image {
    display: flex;
    flex-direction: column;
    width: 58.333%; }
  .previewCart .productView-image--cart {
    align-self: flex-start;
    margin: 0 auto;
    width: auto; }
  .previewCart .productView-details {
    width: 41.667%; } }

.previewCart .productView-title {
  margin-top: 0; }

.previewCartCheckout {
  float: right;
  padding: 25px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .previewCartCheckout {
      padding: 20px;
      width: 25%; } }
  .previewCartCheckout .button, .previewCartCheckout #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .previewCartCheckout .yotpo-bottomline-2-boxes > .yotpo-default-button, .previewCartCheckout #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .previewCartCheckout .yotpo-default-button {
    display: block;
    margin: 0;
    width: 100%; }
    .previewCartCheckout .button + .button, .previewCartCheckout #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .button, #MainContent .yotpo .main-widget .previewCartCheckout .yotpo-bottomline-2-boxes > .yotpo-default-button + .button, .previewCartCheckout #MainContent .yotpo .main-widget form .yotpo-default-button + .button, #MainContent .yotpo .main-widget form .previewCartCheckout .yotpo-default-button + .button, .previewCartCheckout #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button + .yotpo-default-button, #MainContent .yotpo .main-widget .previewCartCheckout .yotpo-bottomline-2-boxes > .button + .yotpo-default-button, .previewCartCheckout #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget .previewCartCheckout .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, .previewCartCheckout #MainContent .yotpo .main-widget form .button + .yotpo-default-button, #MainContent .yotpo .main-widget form .previewCartCheckout .button + .yotpo-default-button, .previewCartCheckout #MainContent .yotpo .main-widget form .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget .previewCartCheckout form .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, .previewCartCheckout #MainContent .yotpo .main-widget form .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget form .previewCartCheckout .yotpo-default-button + .yotpo-default-button,
    .previewCartCheckout .button + p,
    .previewCartCheckout #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + p,
    #MainContent .yotpo .main-widget .previewCartCheckout .yotpo-bottomline-2-boxes > .yotpo-default-button + p,
    .previewCartCheckout #MainContent .yotpo .main-widget form .yotpo-default-button + p,
    #MainContent .yotpo .main-widget form .previewCartCheckout .yotpo-default-button + p,
    .previewCartCheckout .button + .p,
    .previewCartCheckout #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .p,
    #MainContent .yotpo .main-widget .previewCartCheckout .yotpo-bottomline-2-boxes > .yotpo-default-button + .p,
    .previewCartCheckout #MainContent .yotpo .main-widget form .yotpo-default-button + .p,
    #MainContent .yotpo .main-widget form .previewCartCheckout .yotpo-default-button + .p {
      margin-top: 10px; }

.previewCartCheckout-price {
  display: block;
  font-size: 28px;
  font-weight: bold;
  text-align: center; }

.previewCartCheckout-subtotal {
  display: block;
  margin-bottom: 20px;
  margin-top: 20px; }

.previewCartCheckout-additionalCheckoutButtons p, .previewCartCheckout-additionalCheckoutButtons .p {
  float: none !important;
  margin: 7px 0; }

.suggestiveCart {
  display: none;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .suggestiveCart {
      display: block; } }

.previewCart {
  text-align: left; }
  .previewCart .previewCartHeader {
    border-bottom: 1px solid #979797;
    padding: 20px; }
    .previewCart .previewCartHeader h4, .previewCart .previewCartHeader .h4, .previewCart .previewCartHeader .card-body .price-section, .card-body .previewCart .previewCartHeader .price-section, .previewCart .previewCartHeader #MainContent .yotpo .main-widget .y-label.yotpo-header-title, #MainContent .yotpo .main-widget .previewCart .previewCartHeader .y-label.yotpo-header-title,
    .previewCart .previewCartHeader h3,
    .previewCart .previewCartHeader .h3 {
      margin: 0; }
  .previewCart .previewCartList {
    border-collapse: collapse;
    list-style: none;
    margin: 0;
    max-height: calc(100vh - (50px + 160px));
    overflow-y: auto;
    padding: 0;
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .previewCart .previewCartList {
        max-height: calc(90vh - (38px + 75px + 86px)); } }
  .previewCart .previewCartItem {
    padding: 20px; }
    .previewCart .previewCartItem + .previewCartItem {
      border-top: 1px solid #979797; }
  .previewCart .previewCartItem-image {
    text-align: center; }
  .previewCart .previewCartItem-name {
    margin-bottom: 10px;
    text-transform: none; }
    .previewCart .previewCartItem-name > a {
      text-decoration: none; }
  .previewCart .previewCartItem-options {
    list-style: none;
    margin: 0; }
  .previewCart .previewCartItem-price {
    display: block;
    font-weight: 500;
    margin-top: 10px; }
  .previewCart .previewCartAction {
    border-top: 1px solid #979797;
    display: block;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    text-align: left; }
  .previewCart .previewCartAction-checkoutMultiple {
    clear: both;
    padding-left: 5px;
    padding-top: 10px; }
  .previewCart .previewCartAction-viewCart .button, .previewCart .previewCartAction-viewCart #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .previewCart .previewCartAction-viewCart .yotpo-bottomline-2-boxes > .yotpo-default-button, .previewCart .previewCartAction-viewCart #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .previewCart .previewCartAction-viewCart .yotpo-default-button {
    border: 1px solid #1e1e1e; }
  .previewCart .previewCart-emptyBody {
    padding: 40px;
    text-align: center; }

.previewCartAction-additionalCheckoutButton {
  float: left;
  margin-top: 20px;
  padding: 0 10px;
  width: 50%; }
  .navUser .previewCartAction-additionalCheckoutButton {
    padding: 10px 5px 0; }
  .previewCartAction-additionalCheckoutButton.odd {
    clear: both;
    padding-left: 5px; }
    .apple-pay-supported .previewCartAction-additionalCheckoutButton.odd {
      padding-left: 10px;
      padding-right: 5px; }
  .previewCartAction-additionalCheckoutButton.even {
    padding-right: 5px; }
    .apple-pay-supported .previewCartAction-additionalCheckoutButton.even {
      padding-left: 5px;
      padding-right: 10px; }
  .previewCartAction-additionalCheckoutButton .PayPalExpressCheckout p, .previewCartAction-additionalCheckoutButton .PayPalExpressCheckout .p {
    display: none;
    text-align: center; }
  .previewCartAction-additionalCheckoutButton .PayPalExpressCheckout #PayPalExpressCheckoutButton {
    width: 100%; }
  .previewCartAction-additionalCheckoutButton .braintree-paypal-button,
  .previewCartAction-additionalCheckoutButton .paypal-button-parent {
    width: 100% !important; }
  .apple-pay-supported .previewCartAction-additionalCheckoutButton .apple-pay-checkout-button {
    display: block;
    float: none;
    width: 100%; }

.search-suggestion {
  margin-bottom: 27px; }
  .search-suggestion > :last-child {
    margin-bottom: 0; }

.suggestion-title {
  margin-top: 0;
  text-transform: inherit; }

.advancedSearch-form {
  margin-bottom: 40px; }
  .advancedSearch-form .form-row {
    margin-bottom: -20px; }

.quickSearchResults {
  margin-top: 20px; }
  @media only screen and (min-width: 768px) {
    .quickSearchResults {
      margin-top: 0; } }
  .quickSearchResults .modal-close {
    display: none; }
    @media only screen and (min-width: 768px) {
      .quickSearchResults .modal-close {
        display: block; } }

.advancedSearch-separator {
  display: none; }

.advancedSearch-title {
  margin: 0 0 20px;
  text-transform: inherit; }

.search-price-range label {
  display: inline; }
  .search-price-range label input {
    display: block;
    padding-left: 20px; }
    @media only screen and (min-width: 480px) {
      .search-price-range label input {
        display: inline;
        width: 96px; } }
  @media only screen and (min-width: 480px) {
    .search-price-range label span {
      display: inline;
      padding-left: 20px;
      padding-right: 20px; } }

.category-suggestion-list {
  list-style-type: none; }

.category-suggestion {
  font-size: 22px;
  width: 33.333%; }

.search-refine {
  margin-left: 20px; }

.quickSearchMessage {
  font-size: 30px;
  margin: 20px 0 0;
  text-align: center; }

.no-results .no-results-text {
  margin-bottom: 30px; }

.no-results .search-form-wrap {
  margin: 0 auto 76px;
  max-width: 489px; }

.account-main {
  padding-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .account-main {
      padding-bottom: 80px; } }

.forgot-password-form {
  margin: 0 auto;
  max-width: 388px; }
  .forgot-password-form .form-field .form-input {
    width: 100%; }

.login-wrap {
  border: 1px solid #979797;
  margin-bottom: 22px; }
  .login-wrap .login-form {
    margin: 0 auto;
    max-width: 388px; }
    .login-wrap .login-form .form-field .form-input {
      width: 100%; }
    .login-wrap .login-form .form-field.smaller-margin {
      margin-bottom: 16px; }
  .login-wrap .forgot-password {
    text-decoration: underline; }
  .login-wrap .form-actions {
    margin-top: 26px; }

.new-customer {
  background-color: #f8f7f6; }
  .new-customer .new-customer-info-wrap {
    margin: 0 auto 25px;
    max-width: 450px; }
    .new-customer .new-customer-info-wrap .new-customer-fact-list {
      list-style: outside disc none;
      margin: 0;
      margin-left: 20px; }
    .new-customer .new-customer-info-wrap .new-customer-intro {
      margin-bottom: 23px; }
    @media only screen and (min-width: 768px) {
      .new-customer .new-customer-info-wrap .new-customer-intro,
      .new-customer .new-customer-info-wrap .new-customer-fact-list {
        font-size: 18px; } }
    .new-customer .new-customer-info-wrap .new-customer-fact {
      padding-left: 0; }

.login-wrap,
.new-customer {
  padding: 25px 22px; }
  @media only screen and (min-width: 768px) {
    .login-wrap,
    .new-customer {
      height: 500px;
      padding: 25px 10px 0; } }
  @media only screen and (min-width: 768px) {
    .login-wrap h2, .login-wrap .h2, .login-wrap #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span, #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .login-wrap span,
    .new-customer h2,
    .new-customer .h2,
    .new-customer #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span,
    #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .new-customer span {
      margin-bottom: 38px; } }
  .login-wrap .button, .login-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .login-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button, .login-wrap #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .login-wrap .yotpo-default-button,
  .new-customer .button,
  .new-customer #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button,
  #MainContent .yotpo .main-widget .new-customer .yotpo-bottomline-2-boxes > .yotpo-default-button,
  .new-customer #MainContent .yotpo .main-widget form .yotpo-default-button,
  #MainContent .yotpo .main-widget form .new-customer .yotpo-default-button {
    min-width: 214px; }

@media only screen and (min-width: 768px) {
  .new-customer {
    padding-top: 70px; } }

.create-account-main {
  background-color: #f8f7f6;
  margin: 0 auto;
  max-width: 994px;
  padding: 20px 25px 30px; }
  @media only screen and (min-width: 768px) {
    .create-account-main {
      padding: 80px 103px; } }

.account-head {
  margin-bottom: 40px;
  text-align: center; }
  .account-head .alertBox {
    padding-left: 40px;
    padding-right: 40px;
    text-align: left; }

.account-body {
  margin: 0 auto;
  max-width: 994px; }
  .account-body .card {
    margin-bottom: 35px; }

.account-banner {
  background: #f1f1f1;
  height: 200px;
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .account-banner {
      margin-bottom: 40px; } }
  .account-banner .wrapper {
    height: 100%; }
  .account-banner .h1 {
    margin-bottom: 15px; }
    @media only screen and (min-width: 768px) {
      .account-banner .h1 {
        margin: 0; } }
  .account-banner .button, .account-banner #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .account-banner .yotpo-bottomline-2-boxes > .yotpo-default-button, .account-banner #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .account-banner .yotpo-default-button {
    margin: 0; }
  .account-banner .text-layer {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .account-banner .text-layer {
        display: table;
        text-align: left;
        width: 100%; }
        .account-banner .text-layer > div {
          display: table-cell;
          vertical-align: middle; }
          .account-banner .text-layer > div:last-of-type {
            text-align: right; } }

.mobile-dropdown-nav {
  margin: 0 auto 30px;
  max-width: 300px; }

.account-heading {
  border-bottom: 1px solid #979797;
  margin: 0;
  margin-bottom: 22px;
  padding-bottom: 22px; }
  @media only screen and (min-width: 768px) {
    .account-heading {
      margin-bottom: 30px;
      padding-bottom: 25px; } }

.account-list {
  list-style: none;
  margin-left: 0; }

.account-listItem {
  border-bottom: 1px solid #979797;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative; }
  .account-listItem img {
    width: 100%; }
  .account-listItem .account-product-image {
    width: auto; }
  .account-listItem p:last-of-type, .account-listItem .p:last-of-type {
    margin-bottom: 0; }

.account-listShipping {
  border-bottom: 1px solid #979797;
  font-weight: 500;
  padding: 27px 0; }
  .account-listShipping .account-listShipping-title {
    margin: 0;
    text-transform: inherit; }

.account-product-figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 27px 0 0;
  position: relative;
  width: 110px; }

.account-product-download {
  border-radius: 50%;
  height: 33px;
  padding: 0;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 33px;
  z-index: 1; }
  .account-product-download .icon {
    height: 20px;
    margin-top: 5px;
    width: 20px; }
  .account-product-download svg {
    fill: color("whites", "bright"); }

.account-product-body {
  overflow: hidden;
  padding-bottom: 25px;
  position: relative; }
  @media only screen and (min-width: 480px) {
    .account-product-body {
      padding-bottom: 0; } }
  .account-product-body .definitionList {
    margin-bottom: 0; }
    .account-product-body .definitionList .definitionList-key,
    .account-product-body .definitionList .definitionList-value {
      color: inherit; }

.account-product-title {
  margin-bottom: 8px; }
  .account-product-title > a {
    color: #1e1e1e;
    text-decoration: none; }
  .account-product-title + .definitionList {
    margin-top: 10px; }

.account-product-subtitle {
  font-size: 22px;
  margin: -2px 0 25px;
  text-transform: inherit; }

.account-product-price {
  float: right; }

.account-product-description + .definitionList {
  border-top: 1px solid #979797;
  margin: 14px 0 0;
  max-width: 287px;
  padding-top: 16px; }
  .account-product-description + .definitionList .definitionList-key {
    float: none;
    margin-bottom: 7px; }
  .account-product-description + .definitionList .definitionList-value {
    margin-bottom: 21px; }

.account-product-refundQty {
  margin-bottom: 0; }

.account-product-detail + .account-product-detail {
  margin-top: 25px; }
  @media only screen and (min-width: 480px) {
    .account-product-detail + .account-product-detail {
      margin-top: 0; } }

@media only screen and (min-width: 480px) {
  .account-product-detail + .account-product-detail--full {
    margin-top: 20px; } }

.account-product-detail--full {
  width: 100%; }

.account-product-detail:not(:last-of-type) {
  margin-bottom: 22px; }

.account-product-detail .account-product-detail-heading {
  margin-bottom: 7px; }

.account-product-detail span {
  color: #9c9c9c; }

.account-product--alignTop {
  display: table;
  width: 100%; }
  .account-product--alignTop .account-product-checkItem {
    display: table-cell;
    position: relative;
    vertical-align: top;
    width: 32px; }
    @media only screen and (min-width: 991px) {
      .account-product--alignTop .account-product-checkItem {
        left: -40px; } }
    .account-product--alignTop .account-product-checkItem .form-label {
      height: 20px;
      margin: 0;
      padding: 0;
      width: 20px; }
  .account-product--alignTop .account-product-figure,
  .account-product--alignTop .account-product-body {
    display: table-cell;
    vertical-align: top; }
  .account-product--alignTop .account-product-figure {
    float: none;
    margin-right: 0; }
    @media only screen and (min-width: 991px) {
      .account-product--alignTop .account-product-figure {
        left: -32px; } }
  .account-product--alignTop .account-product-body {
    padding-left: 32px; }
    @media only screen and (min-width: 991px) {
      .account-product--alignTop .account-product-body {
        padding-left: 0; } }

@media only screen and (min-width: 768px) {
  .account-orderTotal {
    margin-left: auto;
    max-width: 388px; } }

.account-orderTotal-line {
  margin-bottom: 24px; }

.account-orderTotal-grandTotal {
  background-color: #dae4eb;
  margin-bottom: 30px;
  padding: 17px 20px; }
  @media only screen and (min-width: 768px) {
    .account-orderTotal-grandTotal {
      margin-left: -20px; } }
  .account-orderTotal-grandTotal .account-orderTotal-value {
    font-weight: 500; }

.account-orderTotal-key,
.account-orderTotal-value {
  float: left;
  margin: 0; }

.account-orderTotal-key {
  font-weight: 500;
  width: 70%; }

.account-orderTotal-value {
  text-align: right;
  width: 30%; }

@media only screen and (min-width: 480px) {
  .account-orderStatus {
    float: right;
    text-align: right; } }

.account-message .account-orderStatus span {
  color: #9c9c9c; }

.account-orderStatus-label {
  background-color: #9c9c9c;
  color: #fff;
  display: inline-block;
  margin: 0 0 15px;
  min-width: 186px;
  padding: 13px 10px;
  text-align: center; }
  .account-orderStatus-label.background-secondary {
    background-color: #1e1e1e; }

.account-orderStatus-action {
  color: #9c9c9c;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase; }
  @media only screen and (min-width: 480px) {
    .account-orderStatus-action {
      margin-left: 0;
      text-align: right; } }

.account .pagination {
  margin-top: 40px;
  text-align: center; }

.order-status {
  margin-top: 11px; }
  @media only screen and (min-width: 768px) {
    .order-status {
      max-width: 388px; } }

.order-status-line {
  float: left;
  width: 50%; }
  .order-status-line .order-status-key {
    margin-bottom: 8px; }
  .order-status-line .order-status-value {
    color: #9c9c9c; }

.account-order-block + .account-order-block {
  margin-top: 25px; }

.account-order-block .account-heading {
  border-bottom: 0 none;
  margin-bottom: 6px;
  padding-bottom: 0; }

.account-actions {
  border-top: 1px solid #979797;
  margin-top: 30px;
  padding-top: 30px; }
  @media only screen and (min-width: 768px) {
    .account-actions {
      margin-top: 10px; } }
  .account-actions .order-details-info .button:last-child, .account-actions .order-details-info #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:last-child, #MainContent .yotpo .main-widget .account-actions .order-details-info .yotpo-bottomline-2-boxes > .yotpo-default-button:last-child, .account-actions .order-details-info #MainContent .yotpo .main-widget form .yotpo-default-button:last-child, #MainContent .yotpo .main-widget form .account-actions .order-details-info .yotpo-default-button:last-child {
    margin-left: 30px; }
    @media only screen and (min-width: 768px) {
      .account-actions .order-details-info .button:last-child, .account-actions .order-details-info #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:last-child, #MainContent .yotpo .main-widget .account-actions .order-details-info .yotpo-bottomline-2-boxes > .yotpo-default-button:last-child, .account-actions .order-details-info #MainContent .yotpo .main-widget form .yotpo-default-button:last-child, #MainContent .yotpo .main-widget form .account-actions .order-details-info .yotpo-default-button:last-child {
        margin-left: 50px; } }

.account-order-address {
  list-style: none; }

.account-reorder-form {
  display: inline-block; }

.order-payments-description {
  color: #1e1e1e;
  margin-top: 20px; }

.account-sidebar-image {
  margin: 0 0 20px; }

.account-downloads-summary {
  border-bottom: 1px solid #979797;
  margin-bottom: 25px;
  padding-bottom: 25px; }

.account-downloadsList {
  list-style: none; }

.account-downloadsItem {
  margin-bottom: 20px; }
  .account-downloadsItem > :last-child {
    margin-bottom: 0; }

.account-downloadsItem-title {
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: inherit; }

.account-downloadsItem-description {
  margin-bottom: 6px; }

.account-downloadsItem-availability {
  color: #9c9c9c; }

.address {
  border-bottom: 1px solid #979797;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative; }
  .address .address-actions {
    margin-top: 20px; }
    @media only screen and (min-width: 768px) {
      .address .address-actions {
        margin-top: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 160px; } }
    .address .address-actions .button, .address .address-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .address .address-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .address .address-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .address .address-actions .yotpo-default-button {
      margin-bottom: 6px;
      margin-left: 0; }
      @media only screen and (min-width: 768px) {
        .address .address-actions .button, .address .address-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .address .address-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .address .address-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .address .address-actions .yotpo-default-button {
          display: block;
          min-width: 0;
          width: 100%; } }

.addressList,
.address-details {
  list-style: none;
  margin: 0; }

.address-title {
  margin: 0; }

.no-addresses-title {
  border-bottom: 1px solid #979797;
  margin-bottom: 30px;
  min-height: 120px;
  padding-bottom: 43px; }

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

@media only screen and (max-width: 767px) {
  .account--addReturn .table tr {
    display: block;
    padding: 20px 0; } }

@media only screen and (max-width: 767px) {
  .account--addReturn .table th,
  .account--addReturn .table td {
    display: block;
    padding: 0; } }

.account--addReturn .table .return-itemTitle + .definitionList {
  margin-top: 2px; }

.account--addReturn .table-thead {
  display: none; }
  @media only screen and (min-width: 480px) {
    .account--addReturn .table-thead {
      display: table-header-group; } }
  .account--addReturn .table-thead th:first-child {
    width: 60%; }

.account--addReturn .table-tbody {
  display: block; }
  @media only screen and (min-width: 480px) {
    .account--addReturn .table-tbody {
      display: table-row-group;
      vertical-align: top; } }

.return-itemName .return-itemImage {
  float: left;
  margin-right: 20px; }

.return-itemName .return-itemTitle {
  display: block;
  margin-bottom: 15px; }

.return-itemName .definitionList-label {
  float: left; }

.return-itemName .definitionList-description {
  margin-bottom: 11px;
  margin-left: 0; }

@media only screen and (max-width: 767px) {
  .return-itemPrice {
    margin-bottom: 10px;
    text-align: center; } }

.return-itemQuantity .form-select {
  max-width: 74px; }

.return-itemQuantity .form-label {
  display: inline;
  margin-right: 5px; }
  @media only screen and (min-width: 480px) {
    .return-itemQuantity .form-label {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute !important;
      width: 1px; } }

#wishlistname {
  margin-left: 5px;
  min-width: 230px; }

.wishlist-header {
  display: none;
  text-align: center; }

.modal .wishlist-header {
  display: block; }

.wishlist-form {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px; }
  .wishlist-form .form-field {
    width: 100%; }

.share-wishlist {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
  text-align: center; }

.send-message-form .form-field .form-label,
.return-form .form-field .form-label {
  display: block; }

.send-message-form .form-field input[type="text"],
.send-message-form .form-field .form-select,
.return-form .form-field input[type="text"],
.return-form .form-field .form-select {
  max-width: 489px;
  width: 100%; }

.forgot-password-content {
  margin: 0 auto 40px;
  max-width: 792px; }
  @media only screen and (min-width: 768px) {
    .forgot-password-content {
      margin-bottom: 80px; } }
  .forgot-password-content p, .forgot-password-content .p {
    margin-bottom: 28px; }

.forgot-password-form {
  margin: 0 auto;
  max-width: 590px; }
  @media only screen and (max-width: 767px) {
    .forgot-password-form {
      display: block !important;
      text-align: center; }
      .forgot-password-form .form-field {
        margin-bottom: 22px !important;
        text-align: left; } }

.homepage-section {
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .homepage-section {
      margin-bottom: 50px; } }

.section-header {
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .section-header {
      margin-bottom: 41px; } }

#featured-products-section {
  padding: 33px 0; }
  @media only screen and (max-width: 767px) {
    #featured-products-section {
      margin-top: 35px;
      padding: 0 0 33px; } }
  #featured-products-section .product-carousel-wrap > .productCarousel > button.slick-prev {
    left: -50px; }
  #featured-products-section .product-carousel-wrap > .productCarousel > button.slick-next {
    right: -50px; }
  #featured-products-section .productCarousel {
    margin-bottom: 0; }
    #featured-products-section .productCarousel .slick-dots {
      bottom: -40px; }
    #featured-products-section .productCarousel .card-img-container .slick-dots {
      bottom: -16px; }
    #featured-products-section .productCarousel .slick-list {
      overflow: hidden; }
    #featured-products-section .productCarousel .slick-cloned .card-img-container {
      display: none; }
    #featured-products-section .productCarousel .button, #featured-products-section .productCarousel #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget #featured-products-section .productCarousel .yotpo-bottomline-2-boxes > .yotpo-default-button, #featured-products-section .productCarousel #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form #featured-products-section .productCarousel .yotpo-default-button {
      position: absolute;
      z-index: 3; }
    #featured-products-section .productCarousel .slick-prev {
      left: 0; }
    #featured-products-section .productCarousel .slick-next {
      right: 0; }

.standard-height-banner {
  background-position: center;
  background-size: cover;
  height: 350px; }
  @media only screen and (min-width: 768px) {
    .standard-height-banner {
      height: 840px; } }

.offset-bg-section {
  padding: 50px 0;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .offset-bg-section {
      height: 750px;
      padding-top: 100px; } }
  .offset-bg-section.homepage-section {
    display: none; }
    @media only screen and (min-width: 768px) {
      .offset-bg-section.homepage-section {
        display: block; } }
  .offset-bg-section .bg-holder {
    background-repeat: no-repeat;
    bottom: 0;
    position: absolute;
    top: 0;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .offset-bg-section .bg-holder {
        background-position: 100%;
        height: 222px; } }
    @media only screen and (min-width: 768px) {
      .offset-bg-section .bg-holder {
        width: 72.5%; } }
  .offset-bg-section .content-box {
    background: #fff;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .offset-bg-section .content-box {
        margin: 0 auto; } }
    @media only screen and (min-width: 768px) {
      .offset-bg-section .content-box {
        display: table;
        height: 550px;
        width: 587px; }
        .offset-bg-section .content-box > div {
          display: table-cell;
          vertical-align: middle; } }
    .offset-bg-section .content-box p, .offset-bg-section .content-box .p {
      margin-bottom: 30px; }
      @media only screen and (min-width: 768px) {
        .offset-bg-section .content-box p, .offset-bg-section .content-box .p {
          margin-bottom: 50px; } }

#promotional-banner-section {
  background-color: #1e1e1e;
  padding: 30px 0;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    #promotional-banner-section {
      padding: 45px 0; } }
  #promotional-banner-section .content-wrapper {
    border: 6px solid #fff;
    padding: 30px 20px 15px; }
    @media only screen and (min-width: 768px) {
      #promotional-banner-section .content-wrapper {
        padding: 80px 20px 15px; } }
  #promotional-banner-section .h1 {
    border: 2px solid #fff;
    letter-spacing: 5.6px;
    margin: 0 auto;
    margin-bottom: 15px;
    max-width: 387px; }
    #promotional-banner-section .h1 .line-1 {
      background-color: #fff;
      display: block;
      padding-top: 5px; }
      @media only screen and (min-width: 768px) {
        #promotional-banner-section .h1 .line-1 {
          font-size: 70px; } }
    #promotional-banner-section .h1 .line-2 {
      color: #fff;
      display: block;
      padding-top: 12px; }
      @media only screen and (min-width: 768px) {
        #promotional-banner-section .h1 .line-2 {
          font-size: 65px; } }
  #promotional-banner-section .h3 {
    letter-spacing: 2.23px;
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      #promotional-banner-section .h3 {
        font-size: 36px;
        margin-bottom: 53px; } }
  #promotional-banner-section p, #promotional-banner-section .p {
    color: #fff; }
  #promotional-banner-section .h5 {
    margin-bottom: 5px; }

.video-section .iframe-container {
  padding-top: 50%;
  position: relative; }
  .video-section .iframe-container iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }

.video-section .video-banner-content {
  padding: 50px 0; }
  .video-section .video-banner-content .content-title .h1 {
    margin-bottom: 5px; }
  .video-section .video-banner-content .title-subtext {
    margin-bottom: 30px; }
  .video-section .video-banner-content .video-banner-links .button, .video-section .video-banner-content .video-banner-links #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .video-section .video-banner-content .video-banner-links .yotpo-bottomline-2-boxes > .yotpo-default-button, .video-section .video-banner-content .video-banner-links #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .video-section .video-banner-content .video-banner-links .yotpo-default-button {
    min-width: 260px; }
    @media only screen and (max-width: 767px) {
      .video-section .video-banner-content .video-banner-links .button:first-child, .video-section .video-banner-content .video-banner-links #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:first-child, #MainContent .yotpo .main-widget .video-section .video-banner-content .video-banner-links .yotpo-bottomline-2-boxes > .yotpo-default-button:first-child, .video-section .video-banner-content .video-banner-links #MainContent .yotpo .main-widget form .yotpo-default-button:first-child, #MainContent .yotpo .main-widget form .video-section .video-banner-content .video-banner-links .yotpo-default-button:first-child {
        margin-bottom: 20px; } }
    @media only screen and (min-width: 768px) {
      .video-section .video-banner-content .video-banner-links .button:first-child, .video-section .video-banner-content .video-banner-links #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:first-child, #MainContent .yotpo .main-widget .video-section .video-banner-content .video-banner-links .yotpo-bottomline-2-boxes > .yotpo-default-button:first-child, .video-section .video-banner-content .video-banner-links #MainContent .yotpo .main-widget form .yotpo-default-button:first-child, #MainContent .yotpo .main-widget form .video-section .video-banner-content .video-banner-links .yotpo-default-button:first-child {
        margin-right: 15px; } }

#featured-products-section,
.complete-the-look {
  background-color: white;
  padding: 30px 0; }
  @media only screen and (min-width: 768px) {
    #featured-products-section,
    .complete-the-look {
      padding: 50px 0; } }
  #featured-products-section .product-wrapper,
  .complete-the-look .product-wrapper {
    padding: 0 30px 30px; }

.category-section-blocks .block-image.image-tall {
  position: relative; }
  .category-section-blocks .block-image.image-tall::after {
    content: "";
    display: block;
    height: 0;
    padding-bottom: 135.13514%;
    width: 100%; }
  .category-section-blocks .block-image.image-tall img {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0; }
  .category-section-blocks .block-image.image-tall img {
    height: 100%;
    max-height: 100%;
    width: auto; }

.category-section-blocks .block-image.image-wide {
  position: relative; }
  .category-section-blocks .block-image.image-wide::after {
    content: "";
    display: block;
    height: 0;
    padding-bottom: 61.38889%;
    width: 100%; }
  .category-section-blocks .block-image.image-wide img {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0; }
  .category-section-blocks .block-image.image-wide img {
    height: auto;
    max-width: 100%;
    width: 100%; }

.home-hero-section {
  padding: 38px 0; }
  .home-hero-section .h1 {
    margin-bottom: 5px; }
  .home-hero-section p, .home-hero-section .p {
    margin-bottom: 30px; }

.ajax-category-section .text-side {
  padding: 30px; }
  @media only screen and (min-width: 768px) {
    .ajax-category-section .text-side {
      padding: 0 22px; } }
  @media only screen and (min-width: 1200px) {
    .ajax-category-section .text-side {
      padding: 0 57px; } }

.ajax-category-section .text-wrapper {
  margin: 0 auto 20px; }
  @media only screen and (min-width: 768px) {
    .ajax-category-section .text-wrapper {
      margin-bottom: 40px;
      max-width: 523px; } }
  .ajax-category-section .text-wrapper :last-child {
    margin-bottom: 0; }

.ajax-category-section .card {
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .ajax-category-section .card {
      margin-bottom: 50px; } }

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .ajax-category-section .product:nth-of-type(2) {
    display: none; } }

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .ajax-category-section .product:nth-of-type(3) {
    display: none; } }

@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .ajax-category-section .product:nth-of-type(3) {
    display: none; } }

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ajax-category-section .product:nth-of-type(3) {
    display: none; } }

@media only screen and (min-width: 1400px) {
  .ajax-category-section .card-swatches .swatch-single:nth-child(4) {
    display: none; } }

#technology .bg-holder {
  right: 0; }

@media only screen and (min-width: 768px) {
  #technology .content-box {
    padding: 0 100px; } }

#content-with-bg-section > .wrapper {
  height: 100%; }

#content-with-bg-section .h5 {
  font-style: italic;
  margin-bottom: 35px; }
  @media only screen and (min-width: 768px) {
    #content-with-bg-section .h5 {
      margin-bottom: 60px; } }

#content-with-bg-section .text-box {
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 35px; }
  @media only screen and (min-width: 768px) {
    #content-with-bg-section .text-box {
      padding: 60px; } }

@media only screen and (min-width: 768px) {
  #image-text-section .right-side {
    height: 840px; }
    #image-text-section .right-side .photo-top-right {
      height: 50%; }
    #image-text-section .right-side .collaborations-content {
      display: table;
      height: 50%;
      width: 100%; }
      #image-text-section .right-side .collaborations-content > div {
        display: table-cell;
        vertical-align: middle; }
      #image-text-section .right-side .collaborations-content p, #image-text-section .right-side .collaborations-content .p {
        margin: 0 auto 50px;
        max-width: 440px; } }

@media only screen and (max-width: 767px) {
  #image-text-section .collaborations-content {
    padding: 30px; } }

@media only screen and (min-width: 768px) {
  #home-rewards-section .content-box {
    margin-left: auto;
    padding: 0 75px; } }

@media only screen and (min-width: 991px) {
  .lifestyle-section:hover .lifestyle-text {
    max-height: 190px;
    max-width: 464px;
    top: 70%; }
    .lifestyle-section:hover .lifestyle-text .h1 {
      font-size: 24px; }
    .lifestyle-section:hover .lifestyle-text h3, .lifestyle-section:hover .lifestyle-text .h3 {
      font-size: 18px;
      margin-bottom: 17px; }
    .lifestyle-section:hover .lifestyle-text a {
      text-decoration: none; }
  .lifestyle-section .lifestyle-image-left,
  .lifestyle-section .lifestyle-image-right {
    transition: all 0.5s ease; }
    .lifestyle-section .lifestyle-image-left:hover,
    .lifestyle-section .lifestyle-image-right:hover {
      width: 66%; }
      .lifestyle-section .lifestyle-image-left:hover .lifestyle-text,
      .lifestyle-section .lifestyle-image-right:hover .lifestyle-text {
        background-color: rgba(255, 255, 255, 0.8);
        margin: 0 auto;
        max-height: 240px;
        max-width: 588px;
        padding: 38px 0;
        position: relative;
        text-align: center;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.5s ease;
        width: 100%; } }
      @media only screen and (min-width: 991px) and (max-width: 767px) {
        .lifestyle-section .lifestyle-image-left:hover .lifestyle-text,
        .lifestyle-section .lifestyle-image-right:hover .lifestyle-text {
          padding: 38px 0 0;
          transform: none; } }
      @media only screen and (min-width: 991px) and (min-width: 768px) {
        .lifestyle-section .lifestyle-image-left:hover .lifestyle-text,
        .lifestyle-section .lifestyle-image-right:hover .lifestyle-text {
          margin: 0 auto;
          top: 66%;
          transform: none; } }

@media only screen and (min-width: 991px) {
        .lifestyle-section .lifestyle-image-left:hover .lifestyle-text .h1,
        .lifestyle-section .lifestyle-image-right:hover .lifestyle-text .h1 {
          font-size: 25px;
          margin-bottom: 5px;
          text-decoration: none;
          transition: all 0.5s ease; } }
        @media only screen and (min-width: 991px) and (min-width: 991px) {
          .lifestyle-section .lifestyle-image-left:hover .lifestyle-text .h1,
          .lifestyle-section .lifestyle-image-right:hover .lifestyle-text .h1 {
            font-size: 37px; } }

@media only screen and (min-width: 991px) {
        .lifestyle-section .lifestyle-image-left:hover .lifestyle-text h3, .lifestyle-section .lifestyle-image-left:hover .lifestyle-text .h3,
        .lifestyle-section .lifestyle-image-right:hover .lifestyle-text h3,
        .lifestyle-section .lifestyle-image-right:hover .lifestyle-text .h3 {
          font-size: 18px;
          margin-bottom: 30px;
          text-decoration: none;
          transition: all 0.5s ease; } }
        @media only screen and (min-width: 991px) and (min-width: 991px) {
          .lifestyle-section .lifestyle-image-left:hover .lifestyle-text h3, .lifestyle-section .lifestyle-image-left:hover .lifestyle-text .h3,
          .lifestyle-section .lifestyle-image-right:hover .lifestyle-text h3,
          .lifestyle-section .lifestyle-image-right:hover .lifestyle-text .h3 {
            font-size: 21px; } }

@media only screen and (min-width: 991px) {
        .lifestyle-section .lifestyle-image-left:hover .lifestyle-text a,
        .lifestyle-section .lifestyle-image-right:hover .lifestyle-text a {
          text-decoration: none; } }

@media only screen and (max-width: 767px) {
  .lifestyle-image-left {
    margin-bottom: 30px; } }

.lifestyle-text {
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  max-height: 240px;
  max-width: 588px;
  padding: 38px 0;
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .lifestyle-text {
      padding: 38px 0 0;
      transform: none; } }
  @media only screen and (min-width: 768px) {
    .lifestyle-text {
      margin: 0 auto;
      top: 66%;
      transform: none; } }
  .lifestyle-text .h1 {
    font-size: 25px;
    margin-bottom: 5px;
    text-decoration: none;
    transition: all 0.5s ease; }
    @media only screen and (min-width: 991px) {
      .lifestyle-text .h1 {
        font-size: 37px; } }
  .lifestyle-text h3, .lifestyle-text .h3 {
    font-size: 18px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: all 0.5s ease; }
    @media only screen and (min-width: 991px) {
      .lifestyle-text h3, .lifestyle-text .h3 {
        font-size: 21px; } }
  .lifestyle-text a {
    text-decoration: none; }
  @media only screen and (max-width: 767px) {
    .lifestyle-text {
      max-width: 317px; } }
  .lifestyle-text.newbanner-small-text {
    margin-bottom: 30px; }

.new-hero-banner {
  background-position: center;
  background-size: contain;
  height: 840px; }

.newbanner--text {
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  max-height: 240px;
  max-width: 588px;
  padding: 38px 0;
  position: relative;
  text-align: center;
  transform: translate(0, -120%);
  z-index: 9; }
  .newbanner--text h3, .newbanner--text .h3 {
    margin-bottom: 30px; }

@media only screen and (min-width: 768px) {
  .new-hero-banner-section {
    margin-bottom: -200px; } }

.lifestyle-category {
  text-align: center; }
  .lifestyle-category .lifestyle-category-left,
  .lifestyle-category .lifestyle-category-right {
    border: 1px solid #d9d9d9;
    border-top: none; }
    .lifestyle-category .lifestyle-category-left .standard-height-banner,
    .lifestyle-category .lifestyle-category-right .standard-height-banner {
      background-position: center;
      background-size: cover;
      height: 360px; }
      @media only screen and (min-width: 991px) {
        .lifestyle-category .lifestyle-category-left .standard-height-banner,
        .lifestyle-category .lifestyle-category-right .standard-height-banner {
          height: 716px; } }
    .lifestyle-category .lifestyle-category-left .lifestyle-category-text,
    .lifestyle-category .lifestyle-category-right .lifestyle-category-text {
      font-size: 18px;
      padding: 30px 0; }
      .lifestyle-category .lifestyle-category-left .lifestyle-category-text a,
      .lifestyle-category .lifestyle-category-right .lifestyle-category-text a {
        font-weight: 800;
        text-decoration: none; }
  .lifestyle-category .lifestyle-category-right {
    border-left: none; }
  .lifestyle-category img {
    background-color: #f8f7f6;
    height: 350px;
    object-fit: cover;
    object-position: center;
    width: 100%; }
    @media only screen and (min-width: 991px) {
      .lifestyle-category img {
        height: 455px; } }

@media only screen and (max-width: 767px) {
  .lifestyle-category-text {
    margin: 0 auto;
    max-width: 316px; } }

.explore-tech-section {
  border-top: 1px solid #979797;
  padding: 30px 0; }
  @media only screen and (min-width: 768px) {
    .explore-tech-section {
      padding: 50px 0; } }
  .explore-tech-section .tech-item {
    margin-bottom: 40px; }
    .explore-tech-section .tech-item .icon-wrapper {
      margin-bottom: 20px; }
    .explore-tech-section .tech-item .icon {
      height: 80px;
      width: 80px; }
    .explore-tech-section .tech-item > :last-child {
      margin-bottom: 0; }
  .explore-tech-section .description {
    margin: 0 auto 50px;
    max-width: 707px;
    text-align: center; }
  .explore-tech-section .explore-button {
    text-align: center; }

@media only screen and (min-width: 768px) {
  .category-header {
    padding: 62px 0; } }

.category-header .shirt-content {
  text-align: center; }

.category-header h2, .category-header .h2, .category-header #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span, #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .category-header span {
  margin-bottom: 5px; }

.category-header p, .category-header .p {
  font-weight: 300;
  line-height: 29px;
  margin: auto;
  width: 709px; }

.hero-banner {
  display: flex;
  position: relative; }
  .hero-banner--bg-desktop, .hero-banner--bg-mobile {
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }
  .hero-banner--wrapper {
    display: flex;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1484px;
    padding: 22px;
    width: 100%; }
  .hero-banner--content {
    padding: 22px;
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      .hero-banner--content {
        padding: 22px 0; } }
    .hero-banner--content .hero-banner--title,
    .hero-banner--content .hero-banner--subtitle {
      color: inherit;
      margin-bottom: 22px; }
    .hero-banner--content .hero-banner--subtitle {
      font-family: Avenir, Helvetica, Arial, sans-serif;
      font-size: 20px;
      font-weight: 300;
      line-height: 1.2; }
      @media only screen and (min-width: 768px) {
        .hero-banner--content .hero-banner--subtitle {
          font-size: 24px; } }
  .hero-banner--small {
    height: 300px; }
  .hero-banner--medium {
    height: 500px; }
  .hero-banner--large {
    height: 650px; }

.swatch-halo {
  background-color: #223349;
  fill: #223349; }

.swatch-dark-charcoal {
  background-color: #47444a;
  fill: #47444a; }

.swatch-white {
  background-color: #ffffff;
  fill: #ffffff; }

.swatch-black {
  background-color: #231f20;
  fill: #231f20; }

.swatch-charcoal {
  background-color: #6c6868;
  fill: #6c6868; }

.swatch-mid-dusk {
  background-color: #bfc7d6;
  fill: #bfc7d6; }

.swatch-fragment {
  background-color: #556577;
  fill: #556577; }

.swatch-beach-glass {
  background-color: #9cd6ca;
  fill: #9cd6ca; }

.swatch-dew-mist {
  background-color: #88c2d3;
  fill: #88c2d3; }

.swatch-sky-blue {
  background-color: #4abbd5;
  fill: #4abbd5; }

.swatch-light-pink {
  background-color: #ec9abe;
  fill: #ec9abe; }

.swatch-surf-blue {
  background-color: #5b7ebe;
  fill: #5b7ebe; }

.swatch-light-yellow {
  background-color: #f9e198;
  fill: #f9e198; }

.swatch-sintra {
  background-color: #00549c;
  fill: #00549c; }

.swatch-iris {
  background-color: #4a638d;
  fill: #4a638d; }

.swatch-glyph {
  background-color: #4e91c6;
  fill: #4e91c6; }

.swatch-agate {
  background-color: #7a9dcb;
  fill: #7a9dcb; }

.swatch-lane {
  background-color: #a5b3cc;
  fill: #a5b3cc; }

.swatch-fig {
  background-color: #581f47;
  fill: #581f47; }

.swatch-pall {
  background-color: #363151;
  fill: #363151; }

.swatch-duke {
  background-color: #09577b;
  fill: #09577b; }

.swatch-fray {
  background-color: #2b6a8b;
  fill: #2b6a8b; }

.swatch-pine {
  background-color: #4d7e86;
  fill: #4d7e86; }

.swatch-moss {
  background-color: #474e4d;
  fill: #474e4d; }

.swatch-fin {
  background-color: #aad4da;
  fill: #aad4da; }

.swatch-cinder {
  background-color: #444854;
  fill: #444854; }

.swatch-storm {
  background-color: #677283;
  fill: #677283; }

.swatch-shore {
  background-color: #386192;
  fill: #386192; }

.swatch-aura {
  background-color: #668dc5;
  fill: #668dc5; }

.swatch-caper {
  background-color: #8dadd3;
  fill: #8dadd3; }

.swatch-vale {
  background-color: #6e7e99;
  fill: #6e7e99; }

.swatch-mane {
  background-color: #39373b;
  fill: #39373b; }

.swatch-oak {
  background-color: #2f2d30;
  fill: #2f2d30; }

.swatch-dijon {
  background-color: #545245;
  fill: #545245; }

.swatch-plank {
  background-color: #979fa5;
  fill: #979fa5; }

.swatch-forest {
  background-color: #39515d;
  fill: #39515d; }

.swatch-arid {
  background-color: #1a576c;
  fill: #1a576c; }

.swatch-kale {
  background-color: #2f6472;
  fill: #2f6472; }

.swatch-hazel {
  background-color: #4a4b4d;
  fill: #4a4b4d; }

.swatch-merlot {
  background-color: #483954;
  fill: #483954; }

.swatch-aver {
  background-color: #ddc5d3;
  fill: #ddc5d3; }

.swatch-peach {
  background-color: #f4cab2;
  fill: #f4cab2; }

.swatch-apricot {
  background-color: #f8ce97;
  fill: #f8ce97; }

.swatch-creme {
  background-color: #f5edd6;
  fill: #f5edd6; }

.swatch-fog {
  background-color: #c2beb6;
  fill: #c2beb6; }

.swatch-sangria {
  background-color: #765269;
  fill: #765269; }

.swatch-mauve {
  background-color: #bb69a1;
  fill: #bb69a1; }

.swatch-willow {
  background-color: #a692ba;
  fill: #a692ba; }

.swatch-manor {
  background-color: #9cacbc;
  fill: #9cacbc; }

.swatch-lull {
  background-color: #93b4d7;
  fill: #93b4d7; }

.swatch-yonder {
  background-color: #016481;
  fill: #016481; }

.swatch-maya {
  background-color: #c6e2e0;
  fill: #c6e2e0; }

.swatch-lark {
  background-color: #5d96bc;
  fill: #5d96bc; }

.swatch-turf {
  background-color: #5b7e98;
  fill: #5b7e98; }

.swatch-eclipse {
  background-color: #104f67;
  fill: #104f67; }

.swatch-thyme {
  background-color: #34595a;
  fill: #34595a; }

.swatch-balm {
  background-color: #6a8988;
  fill: #6a8988; }

.swatch-basil {
  background-color: #a3cbc9;
  fill: #a3cbc9; }

.swatch-black-heather {
  background-color: #7f7c7c;
  fill: #7f7c7c; }

.swatch-halo-heather {
  background-color: #32465f;
  fill: #32465f; }

.swatch-mid-blue-heather {
  background-color: #798dbb;
  fill: #798dbb; }

.swatch-fragment-heather {
  background-color: #70798a;
  fill: #70798a; }

.swatch-grey-heather {
  background-color: #c6c6c9;
  fill: #c6c6c9; }

.swatch-navy-heather {
  background-color: #32465f;
  fill: #32465f; }

.swatch-turf-heather {
  background-color: #516d7c;
  fill: #516d7c; }

.swatch-light-grey-heather {
  background-color: #d9dcdc;
  fill: #d9dcdc; }

.swatch-agate-heather {
  background-color: #9db6d2;
  fill: #9db6d2; }

.swatch-vale-heather {
  background-color: #a1a7ba;
  fill: #a1a7ba; }

.swatch-vapor-blue-heather {
  background-color: #7ba5d7;
  fill: #7ba5d7; }

.swatch-deep-indigo-heather {
  background-color: #2a3768;
  fill: #2a3768; }

.swatch-indigo-heather {
  background-color: #2a3768;
  fill: #2a3768; }

.swatch-lark-heather {
  background-color: #7da6c6;
  fill: #7da6c6; }

.swatch-eclipse-heather {
  background-color: #1c6381;
  fill: #1c6381; }

.swatch-lull-heather {
  background-color: #a1b9d5;
  fill: #a1b9d5; }

.swatch-willow-heather {
  background-color: #ad9ebe;
  fill: #ad9ebe; }

.swatch-oatmeal-heather {
  background-color: #ede4d3;
  fill: #ede4d3; }

.swatch-light-blue-heather {
  background-color: #d0ddea;
  fill: #d0ddea; }

.swatch-aver-heather {
  background-color: #e3d0da;
  fill: #e3d0da; }

.swatch-peach-heather {
  background-color: #f6d4bf;
  fill: #f6d4bf; }

.swatch-mauve-heather {
  background-color: #cc8cb6;
  fill: #cc8cb6; }

.swatch-sintra-heather {
  background-color: #2164b0;
  fill: #2164b0; }

.swatch-red-heather {
  background-color: #ca3036;
  fill: #ca3036; }

.swatch-basil-heather {
  background-color: #a3cbc9;
  fill: #a3cbc9; }

.swatch-light-pink-heather {
  background-color: #ec9bbf;
  fill: #ec9bbf; }

.swatch-surf-blue-heather {
  background-color: #5b7fbe;
  fill: #5b7fbe; }

.swatch-mid-dusk-heather {
  background-color: #c6cdde;
  fill: #c6cdde; }

.swatch-dark-charcoal-heather {
  background-color: #414042;
  fill: #414042; }

.swatch-sky-blue-heather {
  background-color: #47bcd6;
  fill: #47bcd6; }

.swatch-mid-grey-heather {
  background-color: #a8a8ac;
  fill: #a8a8ac; }

.swatch-dark-beige {
  background-color: #ccae80;
  fill: #ccae80; }

.swatch-tan {
  background-color: #d4c9b7;
  fill: #d4c9b7; }

.swatch-winchester {
  background-color: #525355;
  fill: #525355; }

.swatch-pine-heather {
  background-color: #6D97A5;
  fill: #6D97A5; }

.swatch-cinder-heather {
  background-color: #363344;
  fill: #363344; }

.swatch-arid-heather {
  background-color: #5E8496;
  fill: #5E8496; }

.swatch-fig-heather {
  background-color: #904C6A;
  fill: #904C6A; }

.swatch-duke-heather {
  background-color: #225887;
  fill: #225887; }

.swatch-beach-glass-heather {
  background-color: #9BF5D1;
  fill: #9BF5D1; }

.swatch-grey {
  background-color: #6d6868;
  fill: #6d6868; }

.swatch-mull {
  background-color: #5aa1ed;
  fill: #5aa1ed; }

.swatch-mist-heather {
  background-color: #bce7f5;
  fill: #bce7f5; }

.swatch-orchid {
  background-color: #cf96e0;
  fill: #cf96e0; }

.swatch-orchid-heather {
  background-color: #e6c1e6;
  fill: #e6c1e6; }

.swatch-iron {
  background-color: #192273;
  fill: #192273; }

.swatch-iron-heather {
  background-color: #161e5e;
  fill: #161e5e; }

.swatch-jasper-heather {
  background-color: #225c37;
  fill: #225c37; }

.swatch-heron-heather {
  background-color: #1695c4;
  fill: #1695c4; }

.swatch-chateau-heather {
  background-color: #1c1c57;
  fill: #1c1c57; }

.swatch-tart-heather {
  background-color: #964b4b;
  fill: #964b4b; }

.swatch-citron-heather {
  background-color: #f7a45b;
  fill: #f7a45b; }

.swatch-citron {
  background-color: #f7a45b;
  fill: #f7a45b; }

.swatch-trent-heather {
  background-color: #3d4482;
  fill: #3d4482; }

.swatch-navy {
  background-color: #06116e;
  fill: #06116e; }

.swatch-dark-green {
  background-color: #0c520c;
  fill: #0c520c; }

.swatch-off-white {
  background-color: #dce0c3;
  fill: #dce0c3; }

.swatch-tan {
  background-color: #d3d4ae;
  fill: #d3d4ae; }

.swatch-blue {
  background-color: #8bbaf7;
  fill: #8bbaf7; }

@media screen and (-ms-high-contrast: active) {
  .high-contrast-hidden {
    display: none !important; }
  .options-wrap .form-radio {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: auto;
    position: relative !important;
    width: auto;
    top: 5px; } }

.is-high-contrast .high-contrast-hidden {
  display: none !important; }

.is-high-contrast .options-wrap .form-radio {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: auto;
  position: relative !important;
  width: auto;
  top: 5px; }

#MainContent .yotpo div,
#MainContent .yotpo span,
#MainContent .yotpo p,
#MainContent .yotpo .p,
#MainContent .yotpo a,
#MainContent .yotpo img,
#MainContent .yotpo i,
#MainContent .yotpo strong,
#MainContent .yotpo sup,
#MainContent .yotpo ul,
#MainContent .yotpo li,
#MainContent .yotpo form,
#MainContent .yotpo label {
  color: #1e1e1e;
  font-family: Avenir, Helvetica, Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375; }

#MainContent .yotpo .text-m {
  color: #57575b !important;
  font-size: 14px;
  margin-left: 2px;
  margin-top: 4px; }

#MainContent .yotpo.bottomLine .pull-left {
  float: none;
  justify-content: center;
  text-align: center; }

#MainContent .yotpo a.text-m {
  display: inline-block; }

@media only screen and (max-width: 767px) {
  #MainContent .yotpo .yotpo-bottomline {
    flex-direction: column; } }

#MainContent .yotpo .yotpo-bottomline,
#MainContent .yotpo .yotpo-bottomline .text-m {
  cursor: default !important; }

#MainContent .yotpo .yotpo-bottomline .review-stars {
  margin-bottom: 2px; }

#MainContent .yotpo .yotpo-bottomline .yotpo-icon {
  font-size: 14px;
  line-height: 1;
  margin-right: 2px; }

#MainContent .yotpo .yotpo-bottomline .yotpo-star-distribution-graph {
  margin-bottom: 13px; }

#MainContent .yotpo .yotpo-bottomline .yotpo-sum-reviews {
  margin-bottom: 1px; }

#MainContent .yotpo .main-widget > .yotpo-label.yotpo-small-box:first-child {
  display: none; }

#MainContent .yotpo .main-widget .yotpo-regular-box {
  border: 0;
  margin: 0;
  padding: 0; }

#MainContent .yotpo .main-widget .yotpo-small-box {
  padding: 0; }

#MainContent .yotpo .main-widget .yotpo-nav-content {
  padding-top: 40px; }

#MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab {
  padding-right: 10px; }
  @media only screen and (min-width: 768px) {
    #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab {
      padding-right: 30px; } }
  #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .yotpo-nav-wrapper {
    padding-bottom: 0; }
  #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab.yotpo-active .yotpo-nav-wrapper {
    border-bottom-width: 6px; }

#MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes {
  margin-bottom: 40px; }
  @media only screen and (max-width: 554px) {
    #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button {
      display: none !important; } }
  @media only screen and (max-width: 699px) {
    #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button {
      display: none !important; } }
  #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button .yotpo-icon {
    display: none; }
  #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button .yotpo-icon-button-text {
    color: inherit; }
  #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button.write-review-button {
    top: 0; }

#MainContent .yotpo .main-widget .yotpo-review {
  border-bottom: 1px solid #979797;
  margin-bottom: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    #MainContent .yotpo .main-widget .yotpo-review {
      padding-left: 60px;
      padding-right: 60px; } }
  @media only screen and (min-width: 991px) {
    #MainContent .yotpo .main-widget .yotpo-review {
      padding-left: 120px;
      padding-right: 120px; } }
  #MainContent .yotpo .main-widget .yotpo-review .yotpo-header .yotpo-icon-profile {
    display: none; }
  #MainContent .yotpo .main-widget .yotpo-review .yotpo-header .yotpo-review-stars {
    margin-bottom: 10px; }
    #MainContent .yotpo .main-widget .yotpo-review .yotpo-header .yotpo-review-stars .yotpo-icon {
      font-size: 22px; }
  #MainContent .yotpo .main-widget .yotpo-review .yotpo-main {
    margin: 0 0 31px;
    max-width: 600px; }
  #MainContent .yotpo .main-widget .yotpo-review .yotpo-footer {
    margin: 0; }

#MainContent .yotpo .main-widget .yotpo-read-more {
  text-decoration: underline; }

.yotpo-reviews-main-widget .yotpo-bottom-line-summary .yotpo-bottom-line-score,
.yotpo-reviews-main-widget .yotpo-bottom-line-summary .yotpo-bottom-line-text {
  font-size: 21px !important;
  font-weight: 900 !important; }

.yotpo-reviews-main-widget .yotpo-bottom-line-summary svg {
  height: 18px !important;
  width: 18px !important; }

.yotpo-reviews-main-widget .yotpo-main-reviews-widget .yotpo-review-border-smooth,
.yotpo-reviews-main-widget .yotpo-empty-state .yotpo-body-text,
.yotpo-reviews-main-widget .yotpo-empty-state svg {
  display: none !important; }

.yotpo-reviews-main-widget .yotpo-header-head::before,
.yotpo-reviews-main-widget .yotpo-head::before {
  content: none !important; }

.yotpo-reviews-main-widget .yotpo-empty-state.yotpo-qna-empty-state {
  margin-top: 30px !important; }

.yotpo-reviews-main-widget .yotpo-ask-question-btn-wrapper .yotpo-question-btn,
.yotpo-reviews-main-widget .yotpo-new-review-btn-wrapper .yotpo-new-review-btn {
  background-color: #fff !important;
  border: 1px solid #1e1e1e !important;
  border-radius: 0 !important;
  height: 50px !important;
  padding: 0 30px !important;
  width: auto !important; }

.yotpo-reviews-main-widget .yotpo-ask-question-btn-wrapper .yotpo-question-btn,
.yotpo-reviews-main-widget .yotpo-new-review-btn-wrapper .yotpo-new-review-btn,
.yotpo-reviews-main-widget .yotpo-layout-header-wrapper .yotpo-new-review-btn,
.yotpo-reviews-main-widget .yotpo-ask-question-btn-wrapper .yotpo-question-btn span {
  color: #1e1e1e !important;
  font-family: Avenir, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 2.29px !important;
  line-height: 50px !important;
  text-transform: uppercase !important; }
  .yotpo-reviews-main-widget .yotpo-ask-question-btn-wrapper .yotpo-question-btn:hover,
  .yotpo-reviews-main-widget .yotpo-new-review-btn-wrapper .yotpo-new-review-btn:hover,
  .yotpo-reviews-main-widget .yotpo-layout-header-wrapper .yotpo-new-review-btn:hover,
  .yotpo-reviews-main-widget .yotpo-ask-question-btn-wrapper .yotpo-question-btn span:hover {
    background-color: #1e1e1e !important;
    border-color: #1e1e1e !important;
    color: #fff !important; }
    .yotpo-reviews-main-widget .yotpo-ask-question-btn-wrapper .yotpo-question-btn:hover span,
    .yotpo-reviews-main-widget .yotpo-new-review-btn-wrapper .yotpo-new-review-btn:hover span,
    .yotpo-reviews-main-widget .yotpo-layout-header-wrapper .yotpo-new-review-btn:hover span,
    .yotpo-reviews-main-widget .yotpo-ask-question-btn-wrapper .yotpo-question-btn span:hover span {
      color: #fff !important; }

.yotpo-reviews-main-widget .yotpo-review {
  margin-bottom: 60px !important; }
  @media only screen and (min-width: 768px) {
    .yotpo-reviews-main-widget .yotpo-review {
      margin-bottom: 75px !important; } }

.body {
  min-height: 50vh;
  overflow: hidden; }
  .header.fixed ~ .body {
    margin-top: 104px; }
    @media only screen and (min-width: 991px) {
      .header.fixed ~ .body {
        margin-top: 113px; } }

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1484px;
  padding: 0 22px;
  position: relative;
  width: 100%; }
  .wrapper.ten-columns {
    max-width: 1240.33333px; }
  .wrapper.eight-columns {
    max-width: 996.66667px; }
  .wrapper.six-columns {
    max-width: 753px; }
  .wrapper.wrapper-753 {
    max-width: 797px; }

.header.fixed {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1004; }

.header .header-main {
  background-color: #fff;
  position: relative;
  z-index: 102; }
  @media only screen and (max-width: 990px) {
    .header .header-main {
      box-shadow: 0 2px 4px 0 rgba(30, 30, 30, 0.15); } }
  .header .header-main .wrapper {
    position: static; }

.header .page-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 101; }
  .header .page-overlay.is-active {
    opacity: 1; }

.header-logo {
  font-size: 0;
  height: 50px;
  line-height: 50px;
  max-width: 150px; }
  @media only screen and (max-width: 990px) {
    .header-logo {
      margin: 0 auto; } }
  @media only screen and (min-width: 991px) {
    .header-logo {
      height: 75px;
      line-height: 75px;
      max-width: 222px;
      padding: 0; } }
  .header-logo > a {
    color: #1e1e1e;
    display: inline-block;
    position: relative;
    text-decoration: none;
    width: 100%;
    z-index: 5; }
    @media only screen and (min-width: 991px) {
      .header-logo > a {
        background: none;
        border-bottom: 0;
        display: inline-block;
        padding: 0; } }
    .header-logo > a:hover, .header-logo > a:active {
      color: #1e1e1e; }

.header-logo-text {
  display: block;
  font-size: 14px;
  letter-spacing: 5px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 3px 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap; }
  @media only screen and (min-width: 480px) {
    .header-logo-text {
      padding-bottom: 0;
      padding-top: 0; } }
  @media only screen and (min-width: 768px) {
    .header-logo-text {
      display: inline;
      font-size: 16px;
      margin-left: 0;
      margin-right: -9px;
      max-width: none;
      overflow: auto;
      white-space: normal; } }

.header-logo-image {
  color: #000;
  max-height: 50px; }
  @media only screen and (min-width: 991px) {
    .header-logo-image {
      max-height: 75px; } }

.promo-slick {
  display: grid;
  grid-auto-rows: 38px;
  grid-template-columns: 46px minmax(0, 360px) 46px;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 500px;
  /* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */ }
  @media only screen and (max-width: 990px) {
    .promo-slick {
      padding: 8px 0; } }
  .grid__item:has(.promo-slick) {
    padding: 0; }

.promo-slick--controls {
  display: flex; }
  .promo-slick--controls button {
    color: #fff;
    height: 100%;
    margin: unset;
    padding: 10px 5px;
    position: unset;
    transform: unset; }
    .promo-slick--controls button:hover {
      opacity: 0.5; }
    .promo-slick--controls button,
    .promo-slick--controls button .autoplay--contents {
      align-items: center;
      display: flex; }
    .promo-slick--controls button svg {
      fill: currentColor;
      height: 17px;
      width: 17px; }
  .promo-slick--controls .autoplay-toggle:hover {
    background-color: unset; }
  .promo-slick--controls .slick-prev,
  .promo-slick--controls .slick-next {
    transition: opacity 300ms ease-out; }
    .promo-slick--controls .slick-prev::before,
    .promo-slick--controls .slick-next::before {
      content: unset; }
    .promo-slick--controls .slick-prev svg,
    .promo-slick--controls .slick-next svg {
      width: 9px; }

.promo-slick--carousel {
  align-self: center; }
  .promo-slick--carousel[data-slick]:not(.slick-initialized) * {
    visibility: hidden; }
  .promo-slick--carousel .announcement-text {
    align-items: center;
    color: #fff;
    display: flex;
    height: 32px;
    justify-content: center;
    text-overflow: ellipsis; }
    @media only screen and (min-width: 991px) {
      .promo-slick--carousel .announcement-text {
        height: 16px; } }
  .promo-slick--carousel .line-clamp {
    -webkit-box-orient: vertical;
    /* autoprefixer: off */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden; }
    @media only screen and (min-width: 991px) {
      .promo-slick--carousel .line-clamp {
        -webkit-line-clamp: 1; } }

.mobileMenu-toggle {
  display: inline-block;
  font-size: 0;
  height: 75px;
  left: 0;
  overflow: hidden;
  padding: 0 18px;
  position: absolute;
  width: 75px;
  z-index: 10; }
  @media only screen and (min-width: 768px) {
    .mobileMenu-toggle {
      display: none; } }
  .mobileMenu-toggle .mobileMenu-toggleIcon,
  .mobileMenu-toggle .mobileMenu-toggleIcon::before,
  .mobileMenu-toggle .mobileMenu-toggleIcon::after {
    background: #1e1e1e;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transform: rotate(0deg);
    transition: transform 100ms ease-in, top 100ms ease-in 150ms, bottom 100ms ease-in 150ms;
    width: 20px; }
  .mobileMenu-toggle .mobileMenu-toggleIcon {
    top: 27px;
    transition: background-color 10ms ease-in 100ms; }
  .mobileMenu-toggle .mobileMenu-toggleIcon::before {
    top: -8px; }
  .mobileMenu-toggle .mobileMenu-toggleIcon::after {
    bottom: -8px; }
  .mobileMenu-toggle.is-open .mobileMenu-toggleIcon {
    background-color: transparent;
    transition-delay: 100ms; }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::before, .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::after {
      background-color: #1e1e1e;
      bottom: auto;
      top: auto;
      transition: transform 100ms ease-in 150ms, top 100ms ease-in, bottom 100ms ease-in; }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::before {
      top: 0;
      transform: rotate(45deg); }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::after {
      bottom: 0;
      transform: rotate(-45deg); }

.navPage-childList {
  border-left: 1px solid #ddd;
  margin: 5px 10px;
  padding-left: 10px; }

.has-activeNavPages {
  overflow: hidden;
  -webkit-overflow-scrolling: auto; }

.navPages-container {
  -webkit-overflow-scrolling: touch;
  z-index: 2; }
  .navPages-container.is-open {
    display: block;
    padding-top: 75px;
    z-index: 0; }
  .navPages-container .wrapper {
    position: static; }

.navPages {
  font-size: 0;
  overflow: visible; }
  .navPages ul {
    list-style: none; }
  .navPages .navPage-subMenu-list {
    list-style: none;
    text-align: center; }

.navPages-item {
  display: inline-block;
  vertical-align: middle; }

[data-content-region="mega-menu"] {
  display: inline-block; }

.navPages-list {
  font-size: 0;
  margin: 0;
  text-align: center; }

.navPages-action {
  display: block;
  position: relative;
  text-decoration: none; }
  @media only screen and (min-width: 991px) and (max-width: 1199px) {
    .navPages-action {
      font-size: 14px; } }
  .navPages-action.is-open,
  .has-hover:focus + .navPages-action,
  .has-hover:hover + .navPages-action {
    background-color: #fff;
    font-weight: 800; }
    .navPages-action.is-open svg,
    .has-hover:focus + .navPages-action svg,
    .has-hover:hover + .navPages-action svg {
      stroke: #1e1e1e; }
  .navPages-action:hover svg {
    stroke: #1e1e1e; }
  .navPages-action svg {
    fill: currentColor;
    stroke: #1e1e1e;
    transition: all 0.15s ease; }

.navPages-action-moreIcon {
  height: 8px;
  margin-left: 5px;
  transform: rotate(-90deg);
  width: 8px; }
  @media only screen and (min-width: 768px) {
    .navPages-action-moreIcon {
      transform: none; } }
  .has-subMenu.is-open .navPages-action-moreIcon,
  .has-hover:hover .has-subMenu .navPages-action-moreIcon,
  .has-hover:focus .has-subMenu .navPages-action-moreIcon {
    transform: rotate(0); }

.navPage-childList {
  display: none; }
  @media only screen and (min-width: 768px) {
    .navPage-childList {
      border: 0;
      display: block; } }
  .navPage-childList.is-open, .navPage-childList.has-hover:hover,
  .navPage-childList .has-hover:focus {
    display: block; }

.navPage-subMenu {
  background-color: #fff;
  border-top: 1px solid #979797;
  display: none;
  min-width: 188px;
  outline: 0;
  padding: 55px 0;
  position: absolute;
  text-align: left;
  top: 100%; }
  .navPage-subMenu .navPages-action-moreIcon {
    display: none; }
  .navPage-subMenu.is-open,
  .has-hover:hover .navPage-subMenu,
  .has-hover:focus .navPage-subMenu, .navPage-subMenu:hover, .navPage-subMenu:focus,
  .is-active .navPage-subMenu {
    display: block; }

.button-open-submenu {
  background-color: transparent;
  border: 0;
  font-family: inherit;
  font-size: 100%;
  padding: 0; }

.has-subMenu.is-root + .navPage-subMenu-horizontal {
  border-left: 0;
  left: inherit;
  margin: auto;
  top: inherit;
  width: 215px; }

.navPage-subMenu-horizontal.is-open, .navPage-subMenu-horizontal:hover,
.has-hover:hover .navPage-subMenu-horizontal,
.has-hover:focus .navPage-subMenu-horizontal {
  border-left: 1px solid;
  display: inherit;
  height: 242px;
  margin-left: 215px;
  padding: 0 !important;
  top: 0;
  width: 216px; }

@media only screen and (min-width: 768px) {
  .navPage-subMenu-horizontal .navPages-action-moreIcon {
    display: inline-block;
    transform: rotate(-90deg); } }

.navPage-subMenu-item {
  display: block; }
  .navPage-subMenu-item .navPages-action {
    width: 100%; }
  .navPage-subMenu-item:last-of-type > .navPage-subMenu-action {
    border-bottom: 0 none; }

.navPage-item--dropdown .navPage-subMenu-item {
  padding: 0; }
  .navPage-item--dropdown .navPage-subMenu-item a {
    line-height: 33px; }

.navPage-subMenu-item-child,
.navPage-subMenu-item-parent {
  width: 100%; }
  .navPage-subMenu-item-child .navPage-subMenu-action,
  .navPage-subMenu-item-parent .navPage-subMenu-action {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%; }
  .navPage-subMenu-item-child .navPage-subMenu-action.is-open,
  .navPage-subMenu-item-child .navPage-subMenu-action:hover,
  .navPage-subMenu-item-parent .navPage-subMenu-action.is-open,
  .navPage-subMenu-item-parent .navPage-subMenu-action:hover {
    background: #c8bdb2;
    color: #000;
    font-weight: 500;
    opacity: 0.3; }

.menuNav .navPages-list > li > a:hover::after,
.menuNav .navPages-list > li > a:focus::after {
  background-color: #1e1e1e;
  bottom: 2px;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  width: 100%; }

.menuNav .navPages-list > li > a:hover svg,
.menuNav .navPages-list > li > a:focus svg {
  transform: rotate(-180deg); }

.navPage-childList-action {
  padding: 0 0 5px; }

.navPages-list > .navPages-item.navPage-item--mega {
  padding: 0 20px;
  position: static; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu {
    background-color: #fff;
    left: 0;
    max-width: 100%;
    min-width: auto;
    padding-top: 17px 0 20px;
    right: 0;
    width: 100%; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 871px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .navPage-item--heading {
      margin-bottom: 24px;
      margin-top: 24px; }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .navPage-item--heading > a {
        margin-bottom: 10px; }
        .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .navPage-item--heading > a:hover {
          color: #1e1e1e; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading {
    display: inline-block;
    margin-right: 50px;
    vertical-align: top; }
    @media only screen and (min-width: 1200px) and (max-width: 1399px) {
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading {
        margin-right: 70px; } }
    @media only screen and (min-width: 1400px) {
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading {
        margin-right: 150px; } }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading:last-of-type {
      margin-right: 0; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading > a {
      padding: 15px 0 5px;
      position: relative; }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading > a::after {
        border-bottom: 2px solid #1e1e1e;
        bottom: -2px;
        content: "";
        left: 0;
        opacity: 0;
        position: absolute;
        right: 0;
        z-index: 2; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading.is-active > a {
      color: #1e1e1e; }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading.is-active > a::after {
        opacity: 1; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading.is-active .mega-menu-list {
      display: block !important; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list {
    background-color: #f8f7f6;
    border-top: 1px solid #979797;
    display: none;
    left: 0;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 100%; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .mega-menu-list-inner {
      display: flex;
      justify-content: space-between; }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .mega-menu-list-inner .navPage-mega--column {
        padding-right: 20px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading + .navPage-item--column-heading {
      margin-top: 38px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading h5, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .h5, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .tab .tab-title, .tab .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .tab-title, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .promo-bar, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .productView-options .form-label, .productView-options .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .form-label, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .productView-options .form-field [data-option-value], .productView-options .form-field .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading [data-option-value], .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .cart-header-item, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .cart-total-label,
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .cart-total-value, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .account-product-description + .definitionList .definitionList-key, .account-product-description + .definitionList .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .definitionList-key, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .mobile-cart a, .mobile-cart .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading a, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .footer-bottom p, .footer-bottom .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading p, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .footer-bottom .p, .footer-bottom .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .p,
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .footer-bottom a, .footer-bottom .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading a {
      margin-bottom: 8px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-subMenu-list .navPage-subMenu-item {
      margin-bottom: 7px; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--heading {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--heading::before, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--heading::after {
      content: none;
      display: none; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--heading > .navPage-subMenu-item {
      margin-bottom: 5px;
      text-align: left; }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--heading > .navPage-subMenu-item > .navPages-action {
        position: relative; }
        .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--heading > .navPage-subMenu-item > .navPages-action span {
          display: block;
          line-height: 1; }

.navPages-list > .navPages-item > a {
  height: 75px;
  line-height: inherit;
  line-height: 75px;
  min-width: 76px;
  position: relative;
  z-index: 9; }
  .navPages-list > .navPages-item > a > .link-text-wrap {
    position: relative; }
    .navPages-list > .navPages-item > a > .link-text-wrap::before {
      border-color: #1e1e1e transparent transparent transparent;
      border-style: solid;
      border-width: 4px 4px 0;
      content: "";
      height: 0;
      position: absolute;
      right: -15px;
      top: 50%;
      transform: translateY(-50%);
      width: 0; }
    .navPages-list > .navPages-item > a > .link-text-wrap::after {
      bottom: -1px;
      content: "";
      display: block;
      height: 2px;
      left: 50%;
      opacity: 0;
      position: absolute;
      right: 50%;
      top: 100%;
      transition: all ease-in-out 0.2s;
      width: auto; }
  .navPages-list > .navPages-item > a:hover > .link-text-wrap::before,
  .navPages-list > .navPages-item > a.is-open > .link-text-wrap::before {
    border-color: #1e1e1e transparent transparent transparent; }
  .navPages-list > .navPages-item > a:hover > .link-text-wrap::after,
  .navPages-list > .navPages-item > a.is-open > .link-text-wrap::after {
    left: 0;
    opacity: 1;
    right: 0; }
  .navPages-list > .navPages-item > a.is-open, .navPages-list > .navPages-item > a.has-hover:hover {
    background-color: transparent; }

.navPages-list > .navPages-item.navPages-quickSearch .navPages-action {
  max-width: 162px;
  padding: 0 5px 0 10px; }

.navPages-list > .navPages-item:last-of-type {
  margin-right: 0; }
  .navPages-list > .navPages-item:last-of-type:hover::after {
    display: none; }

.navPage-item--static-dropdown {
  position: relative !important; }
  .navPage-item--static-dropdown > a {
    position: relative; }

.navPage-static-dropdown {
  background: transparent;
  border-top: 0;
  left: 50%;
  padding: 19px 0 20px;
  transform: translateX(-49%); }
  .navPage-static-dropdown .bg-holder {
    background-color: #fff;
    border-top: 1px solid #979797;
    height: 240px;
    left: -9999px;
    position: absolute;
    right: -9999px;
    top: 0; }

.static-dropdown-content {
  position: relative;
  width: 501px; }
  .static-dropdown-content > div {
    display: inline-block;
    font-size: 16px;
    vertical-align: top; }
  .static-dropdown-content .image-wrapper {
    border-right: 1px solid #979797;
    padding-right: 24px; }
  .static-dropdown-content .text-wrapper {
    padding-left: 19px;
    width: 256px; }
    .static-dropdown-content .text-wrapper p, .static-dropdown-content .text-wrapper .p {
      margin-bottom: 30px; }

.navPage-mega-new-dropdown {
  background: transparent;
  border-top: 0;
  left: 50%;
  max-width: 1480px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%; }
  .navPage-mega-new-dropdown .bg-holder {
    background-color: #fff;
    border-top: 1px solid #eee;
    height: 400px;
    left: -9999px;
    position: absolute;
    right: -9999px;
    top: 0; }

.navPages-mega-mobile,
.mega-menu-headingMobile {
  color: #1e1e1e;
  display: block;
  font-weight: 500;
  letter-spacing: 2.29px;
  padding: 11px 30px;
  padding-right: 20px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 300ms ease; }
  .navPages-mega-mobile:hover,
  .mega-menu-headingMobile:hover {
    cursor: pointer; }
  .navPages-mega-mobile svg,
  .mega-menu-headingMobile svg {
    transition: all 0.5s; }
  .navPages-mega-mobile.is-open svg,
  .mega-menu-headingMobile.is-open svg {
    transform: rotate(-180deg); }

.navPages-mega-mobile {
  border-bottom: 1px solid #ededed;
  padding-block: 13px 9px; }

.navPages-mega-mobileSub {
  display: none; }
  .navPages-mega-mobileSub.is-open {
    display: block; }
  .navPages-mega-mobileSub .single-link {
    font-weight: 800;
    padding: 0; }
    .navPages-mega-mobileSub .single-link.sale-link, .navPages-mega-mobileSub .single-link.sale-link:hover {
      color: #da0f0f; }
    .navPages-mega-mobileSub .single-link:hover {
      background-color: transparent;
      color: initial; }

.mega-menu-headingMobile,
.mega-menu-headingMobile-shopAll {
  background-color: #eaeaea;
  font-weight: 800;
  padding-left: 40px; }

.mega-menu-headingMobile-shopAll a {
  font-size: 14px;
  font-weight: 800 !important;
  padding: 13px 0 9px !important; }

.mega-menu-mobileList .mega-menu-mobileLink {
  display: none;
  padding: 11px 0; }
  .mega-menu-mobileList .mega-menu-mobileLink:last-child {
    border-bottom: 1px solid #ededed;
    padding-bottom: 9px; }
  .mega-menu-mobileList .mega-menu-mobileLink.is-open {
    display: block; }
  .mega-menu-mobileList .mega-menu-mobileLink a {
    border-bottom: 0 none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 21px;
    padding: 0;
    padding-left: 50px;
    text-transform: capitalize; }
    .mega-menu-mobileList .mega-menu-mobileLink a:hover {
      background: none; }

.mega-dropdown-content {
  left: 0;
  margin: 0 auto;
  position: absolute;
  width: 100%; }
  .mega-dropdown-content .menu-items-wrapper {
    padding: 0 22px;
    width: 100%; }
    .mega-dropdown-content .menu-items-wrapper .menu-items-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%; }
      .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column {
        width: 16.66%; }
        .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column.image-column {
          margin-left: auto;
          max-width: 345px;
          width: 33.33%; }
          .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column.image-column.image-tall img {
            max-height: 250px; }
        .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column a {
          text-decoration: none; }
        .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-image-caption {
          font-weight: 800;
          letter-spacing: 2px;
          margin-bottom: 0;
          margin-top: 10px; }
          .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-image-caption:hover {
            text-decoration: underline; }
        .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-list {
          list-style: none; }
          .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-list.column-extend {
            padding-top: 20px; }
          .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-list .mega-menu-list-item {
            margin-bottom: 12px;
            padding-right: 0; }
            .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-list .mega-menu-list-item.heading-link a:hover {
              text-decoration: underline; }
            .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-list .mega-menu-list-item.sale-link a {
              color: #da0f0f;
              font-size: 14px; }
          .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-list .mega-menu-heading {
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 25px;
            text-transform: uppercase; }
          .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-list .mega-menu-link {
            font-size: 16px;
            font-weight: 300;
            height: auto;
            letter-spacing: normal;
            line-height: 24px;
            text-transform: unset;
            width: fit-content; }
            .mega-dropdown-content .menu-items-wrapper .menu-items-inner .mega-menu-column .mega-menu-list .mega-menu-link:hover {
              text-decoration: underline; }

.navPages-item {
  margin-right: 20px; }
  @media only screen and (min-width: 1200px) {
    .navPages-item {
      margin-right: 30px; } }
  .navPages-item:last-child {
    padding-right: 0; }
  .navPages-item .navPages-action {
    height: 75px;
    line-height: 75px; }
    .navPages-item .navPages-action svg {
      display: inline-block;
      height: 10px;
      margin-left: 5px;
      top: 30px;
      transition: all 0.3s;
      width: 10px; }
  .navPages-item.is-active .navPages-action svg {
    transform: rotate(-180deg); }
  .navPages-item.sale a {
    color: #da0f0f; }
    .navPages-item.sale a::after {
      background-color: #da0f0f !important; }

.navUser-section {
  line-height: inherit;
  list-style: none;
  margin: 0; }

.navUser {
  padding: 0;
  transform: none; }
  .navUser p, .navUser .p {
    color: inherit; }
  .navUser .dropdown-menu {
    background-color: #fff;
    box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
    display: none;
    position: absolute;
    z-index: 101; }
    @media only screen and (max-width: 990px) {
      .navUser .dropdown-menu {
        left: auto !important;
        max-width: 100%;
        right: 0 !important;
        top: 98% !important;
        width: 400px; } }
    .navUser .dropdown-menu.is-open {
      display: block; }
      .navUser .dropdown-menu.is-open::before, .navUser .dropdown-menu.is-open::after {
        pointer-events: none; }
      .navUser .dropdown-menu.is-open::before {
        border: inset 10px;
        content: "";
        display: block;
        height: 0;
        width: 0;
        border-color: transparent transparent #e8e8e8 transparent;
        border-bottom-style: solid;
        bottom: 100%;
        position: absolute;
        right: 40px; }
      .navUser .dropdown-menu.is-open::after {
        border: inset 8px;
        content: "";
        display: block;
        height: 0;
        width: 0;
        border-color: transparent transparent #ffffff transparent;
        border-bottom-style: solid;
        bottom: 100%;
        position: absolute;
        right: 42px; }

.navUser-action {
  color: #fff;
  letter-spacing: 2px;
  padding: 0;
  text-decoration: none;
  transition: all 0.15s ease; }
  .navUser-action:hover, .navUser-action.is-open {
    color: #fff;
    opacity: 0.5; }
    .navUser-action:hover .text-wrap, .navUser-action.is-open .text-wrap {
      text-decoration: underline; }
  .navUser-action svg {
    display: inline-block;
    fill: currentColor;
    stroke-width: 0;
    transition: 0s none;
    vertical-align: middle; }
  .navUser-action .dropdown-menu.is-open::before, .navUser-action .dropdown-menu.is-open::after {
    left: auto; }
  .navUser-action .dropdown-menu.is-open::before {
    right: 14px; }
  .navUser-action .dropdown-menu.is-open::after {
    right: 16px; }
  .navUser-action .text-wrap.player-rewards,
  .navUser-action .swell-point-balance {
    position: relative;
    top: 2px; }

.navUser-action--storeCredit + .dropdown-menu {
  max-width: 300px;
  padding: 20px; }
  .navUser-action--storeCredit + .dropdown-menu::before {
    left: 140px !important; }
  .navUser-action--storeCredit + .dropdown-menu::after {
    left: 142px !important; }

.navUser-action-divider {
  border-right: 1px solid #979797;
  color: #9c9c9c;
  display: inline-block;
  padding: 0 20px 0 0;
  text-decoration: none; }

.navUser-item {
  display: inline-block;
  margin-right: 17px; }
  @media only screen and (min-width: 991px) and (max-width: 1199px) {
    .navUser-item {
      margin-right: 15px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .navUser-item {
      margin-right: 35px; } }
  @media only screen and (min-width: 1400px) {
    .navUser-item {
      margin-right: 45px; } }
  .navUser-item:last-child {
    margin-right: 0; }
  .navUser-item.navUser-item--social {
    margin-top: 5px;
    padding-right: 5px; }
  .navUser-item.navUser-item--divider {
    font-size: 25px;
    margin-top: 8px;
    padding-left: 2px; }
  .navUser-item > a {
    display: block;
    position: relative; }
  .navUser-item .icon {
    margin-right: 2px;
    position: relative;
    top: -2px; }

.navUser-item--account .icon {
  width: 14px; }

.navUser-item--cart {
  margin-left: 42px; }
  .navUser-item--cart .navUser-action {
    color: black; }
    .navUser-item--cart .navUser-action .text-wrap {
      margin-right: 0; }
  .navUser-item--cart .icon {
    height: 18px;
    width: 18px; }

.icon-gift {
  fill: currentColor;
  fill-rule: evenodd;
  height: 16px;
  width: 12px; }

.off-canvas-list-menu .has-submenu .icon-account,
.off-canvas-list-menu .icon-account {
  fill: currentColor;
  float: none !important;
  height: 15px;
  width: 15px; }

@media only screen and (min-width: 768px) {
  .navUser-item .dropdown-menu {
    min-width: 400px; } }

#cart-preview-dropdown {
  background-color: #fff;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
  display: none;
  max-width: 100%;
  position: absolute;
  z-index: 101; }
  @media only screen and (max-width: 990px) {
    #cart-preview-dropdown {
      left: auto !important;
      max-width: 100%;
      right: 0 !important;
      top: 98% !important;
      width: 400px; } }
  @media only screen and (min-width: 768px) {
    #cart-preview-dropdown {
      max-width: 580px;
      min-width: 400px; } }
  #cart-preview-dropdown.is-open {
    display: block; }
    #cart-preview-dropdown.is-open::before, #cart-preview-dropdown.is-open::after {
      pointer-events: none; }
    #cart-preview-dropdown.is-open::before {
      border: inset 10px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: transparent transparent #e8e8e8 transparent;
      border-bottom-style: solid;
      bottom: 100%;
      position: absolute;
      right: 40px; }
    #cart-preview-dropdown.is-open::after {
      border: inset 8px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: transparent transparent #ffffff transparent;
      border-bottom-style: solid;
      bottom: 100%;
      position: absolute;
      right: 42px; }

.navUser-item-cartLabel {
  display: none; }
  @media only screen and (min-width: 480px) {
    .navUser-item-cartLabel {
      display: inline;
      text-transform: uppercase; } }

.navUser-item--compare {
  display: none; }
  .navUser-item--compare.show {
    display: block; }

.navUser-item--account .navUser-or + .navUser-action {
  margin-right: -8px; }

.navUser-item--account .navUser-action {
  display: inline-block; }

.navUser-or {
  color: #fff;
  cursor: default;
  display: inline-block;
  margin: 0 -12px;
  padding: 0 2px;
  position: relative;
  z-index: 1; }

.header-search-wrap {
  position: relative; }
  .header-search-wrap a {
    display: inline-block;
    height: 75px;
    line-height: 75px;
    text-decoration: none; }
    .header-search-wrap a .button, .header-search-wrap a #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .header-search-wrap a .yotpo-bottomline-2-boxes > .yotpo-default-button, .header-search-wrap a #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .header-search-wrap a .yotpo-default-button {
      height: 35px;
      line-height: 37px;
      padding: 0 10px; }
    .header-search-wrap a .text-wrap {
      margin-right: 8px; }
      @media only screen and (min-width: 991px) and (max-width: 1199px) {
        .header-search-wrap a .text-wrap {
          border: 0;
          clip: rect(0 0 0 0);
          height: 1px;
          margin: -1px;
          overflow: hidden;
          padding: 0;
          position: absolute !important;
          width: 1px; } }

.navUser-action--quickSearch.is-open {
  position: relative; }
  .navUser-action--quickSearch.is-open::before {
    border: inset 10px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: transparent transparent #eeeeee transparent;
    border-bottom-style: solid;
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%); }

.dropdown--quickSearch {
  display: none; }
  .dropdown--quickSearch::before, .dropdown--quickSearch::after {
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    display: none;
    height: 0;
    height: 20px;
    left: 50px;
    position: absolute;
    right: auto;
    top: -10px;
    width: 0;
    width: 20px; }
  .dropdown--quickSearch::before {
    box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25); }
  .dropdown--quickSearch::after {
    background: #fff; }
  .dropdown--quickSearch .dropdown-inner {
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(30, 30, 30, 0.25);
    padding: 11px 18px;
    position: relative; }
  .dropdown--quickSearch.is-open {
    display: block;
    left: unset !important;
    max-width: 470px;
    min-width: 344px;
    outline: none;
    right: 0 !important;
    top: 100% !important;
    width: 100% !important;
    z-index: 10; }
  .dropdown--quickSearch .form {
    margin: auto; }
  .dropdown--quickSearch .form,
  .dropdown--quickSearch .form-field {
    margin-bottom: 0; }
  .dropdown--quickSearch .form-input {
    display: inline-block;
    vertical-align: middle;
    width: 206px !important; }
  .dropdown--quickSearch .form-input,
  .dropdown--quickSearch .button,
  .dropdown--quickSearch #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button,
  #MainContent .yotpo .main-widget .dropdown--quickSearch .yotpo-bottomline-2-boxes > .yotpo-default-button,
  .dropdown--quickSearch #MainContent .yotpo .main-widget form .yotpo-default-button,
  #MainContent .yotpo .main-widget form .dropdown--quickSearch .yotpo-default-button {
    height: 35px !important;
    line-height: 37px !important; }
  
  .dropdown--quickSearch .button,
  .dropdown--quickSearch #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button,
  #MainContent .yotpo .main-widget .dropdown--quickSearch .yotpo-bottomline-2-boxes > .yotpo-default-button,
  .dropdown--quickSearch #MainContent .yotpo .main-widget form .yotpo-default-button,
  #MainContent .yotpo .main-widget form .dropdown--quickSearch .yotpo-default-button {
    padding: 0 10px; }
  .dropdown--quickSearch label {
    margin-right: 7px; }
  .dropdown--quickSearch .productGrid {
    padding: 20px 0 0; }
    @media only screen and (min-width: 480px) {
      .dropdown--quickSearch .productGrid {
        padding: 40px 0 0; } }

.countPill {
  display: inline-block;
  margin-left: 2px;
  text-align: center; }

.countPill--alt {
  background-color: #eee;
  color: #666; }

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

.mobile-cart a {
  text-decoration: none; }

.mobile-cart .icon {
  height: 16px;
  position: relative;
  top: 3px;
  width: 18px; }

.menu-icons {
  text-decoration: none; }
  .menu-icons .icon {
    fill: currentColor;
    height: 16px; }
  .menu-icons .icon-hamburger {
    display: block;
    width: 23px; }
  .menu-icons .icon-close {
    display: none;
    width: 17px; }
  .menu-icons[aria-expanded="true"] .icon-hamburger {
    display: none; }
  .menu-icons[aria-expanded="true"] .icon-close {
    display: block; }

@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .custom-width--4 {
    width: 4%; }
  .custom-width--21 {
    width: 21%; } }

.has-submenu .navPages-mega-mobile .unstyle-link {
  border-bottom: 0 none;
  display: inline;
  margin: 0;
  padding: 0; }
  .has-submenu .navPages-mega-mobile .unstyle-link:active, .has-submenu .navPages-mega-mobile .unstyle-link:hover {
    background-color: transparent; }

.footer {
  background-color: #1e1e1e; }

.newsletter-row {
  background-color: #f8f7f6;
  padding-block: 30px; }
  @media only screen and (min-width: 768px) {
    .newsletter-row {
      padding-block: 36px 43px; } }

.footer-top {
  color: white;
  padding-top: 30px; }
  @media only screen and (min-width: 768px) {
    .footer-top {
      padding-top: 51px; } }

.footer-info-col {
  margin-bottom: 30px; }

.footer-info-heading {
  color: #fff;
  margin-bottom: 10px; }

.footer-info-list {
  list-style: none;
  margin-left: 0; }
  .footer-info-list li {
    margin-bottom: 0; }
  .footer-info-list a {
    color: #fff;
    font-size: 16px;
    text-decoration: none; }
    .footer-info-list a:hover {
      opacity: 0.5;
      text-decoration: underline; }

.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin-left: 0;
  height: 40px;
  margin-top: 20px; }
  @media only screen and (min-width: 768px) {
    .footer-payment-icons {
      margin-top: 40px; } }
  .footer-payment-icons .footer-payment-icon {
    height: 100%;
    margin: 5px;
    vertical-align: middle;
    width: 50px; }
  .footer-payment-icons svg {
    fill: #1e1e1e; }

@media only screen and (min-width: 480px) {
  .footer-geotrust-ssl-seal {
    bottom: 0;
    position: absolute;
    right: 16px; } }

.footer-geotrust-ssl-seal table {
  margin: auto; }

.footer-bottom {
  color: #fff;
  padding: 20px 0; }
  @media only screen and (min-width: 991px) {
    .footer-bottom {
      padding: 21px 0 53px; } }
  @media only screen and (min-width: 991px) {
    .footer-bottom p, .footer-bottom .p {
      margin: 0; } }
  .footer-bottom p, .footer-bottom .p,
  .footer-bottom a {
    color: inherit; }
  .footer-bottom a {
    text-decoration: none; }
    .footer-bottom a:hover {
      opacity: 0.5;
      text-decoration: underline; }
  .footer-bottom .terms-seperator {
    padding-left: 7px;
    padding-right: 7px; }

.banner-blog {
  margin-bottom: 50px; }
  @media only screen and (min-width: 768px) {
    .banner-blog {
      margin-bottom: 100px; } }
  @media only screen and (min-width: 768px) {
    .banner-blog .banner-content {
      padding-top: 36px; } }
  .banner-blog h1, .banner-blog .h1,
  .banner-blog h2,
  .banner-blog .h2,
  .banner-blog #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span,
  #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .banner-blog span {
    color: #fff; }
  .banner-blog h1, .banner-blog .h1 {
    margin-bottom: 10px; }
  
  .banner-blog h2,
  .banner-blog .h2,
  .banner-blog #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span,
  #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .banner-blog span {
    margin-bottom: 0; }

.blog-post {
  border-bottom: 1px solid #bababb;
  margin: 0 auto 50px;
  max-width: 585px;
  padding-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .blog-post {
      margin-bottom: 80px;
      max-width: 100%;
      padding-bottom: 32px; } }
  .blog-post .blog-title {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .blog-post .blog-title {
        min-height: 48px; } }
    .blog-post .blog-title a {
      text-decoration: none; }
  .blog-post .blog-thumbnail {
    margin: 0 0 28px; }
    .blog-post .blog-thumbnail a {
      display: block;
      overflow: hidden;
      padding-top: calc(180 / 583 * 100%);
      position: relative;
      width: 100%; }
      .blog-post .blog-thumbnail a img {
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%); }
  .blog-post .blog-meta {
    margin-bottom: 24px; }
  .blog-post .blog-read-more {
    color: #1e1e1e; }
  .grid__item:nth-last-of-type(-n + 2) .blog-post {
    margin-bottom: 40px; }

.blog-meta {
  color: #9c9c9c;
  text-align: center; }

.blog-single .blog-thumbnail {
  margin: 0 0 30px; }
  @media only screen and (min-width: 768px) {
    .blog-single .blog-thumbnail {
      margin-bottom: 76px; } }

.blog-single .blog-title {
  color: #1e1e1e;
  margin: 0 auto 25px;
  max-width: 630px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .blog-single .blog-title {
      margin-bottom: 45px; } }

.blog-single .social-share-wrap {
  margin-bottom: 35px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .blog-single .social-share-wrap {
      margin-bottom: 73px; } }

.blog-single .blog-post-body {
  padding-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .blog-single .blog-post-body {
      padding-bottom: 60px; } }

.blog-single .blog-post-content ul,
.blog-single .blog-post-content ol,
.blog-single .blog-post-content dl,
.blog-single .blog-post-content p,
.blog-single .blog-post-content .p,
.blog-single .blog-post-content .p {
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .blog-single .blog-post-content ul,
    .blog-single .blog-post-content ol,
    .blog-single .blog-post-content dl,
    .blog-single .blog-post-content p,
    .blog-single .blog-post-content .p,
    .blog-single .blog-post-content .p {
      font-size: 18px;
      line-height: 25px;
      margin-bottom: 25px; } }

/************ Blog Sidebar **********/
.blog-sidebar-inner {
  margin-left: auto;
  margin-right: 25px;
  max-width: 200px; }
  .blog-sidebar-inner .blog-block {
    margin-bottom: 75px; }
    .blog-sidebar-inner .blog-block h3, .blog-sidebar-inner .blog-block .h3 {
      margin-bottom: 24px; }
    .blog-sidebar-inner .blog-block .blog-sidebar-list {
      list-style: none;
      margin: 0; }
      .blog-sidebar-inner .blog-block .blog-sidebar-list li {
        margin-bottom: 8px; }
        .blog-sidebar-inner .blog-block .blog-sidebar-list li a {
          color: #9c9c9c; }
          .blog-sidebar-inner .blog-block .blog-sidebar-list li a:hover {
            color: #1e1e1e; }

.productList {
  list-style: none; }
  .productList .product + .product {
    margin-top: 100px; }

@media only screen and (min-width: 480px) {
  .listItem {
    display: table;
    width: 100%; } }

@media only screen and (min-width: 480px) {
  .listItem-figure,
  .listItem-body {
    display: table-cell;
    vertical-align: top; } }

@media only screen and (min-width: 991px) {
  .listItem-figure,
  .listItem-body {
    vertical-align: middle; } }

.listItem-figure {
  margin: 0 0 20px; }
  @media only screen and (min-width: 480px) {
    .listItem-figure {
      margin-bottom: 0; } }

.listItem-image {
  width: 100%; }

@media only screen and (min-width: 991px) {
  .listItem-content {
    display: table; } }

@media only screen and (min-width: 991px) {
  .listItem-details,
  .listItem-actions {
    display: table-cell;
    vertical-align: top; } }

@media only screen and (min-width: 991px) {
  .listItem-details {
    padding-right: 80px; }
    .listItem-details > :last-child {
      margin-bottom: 0; } }

.listItem-rating {
  margin-bottom: 5px; }

.listItem-brand {
  font-size: 16px;
  margin: 0 0 2px; }
  @media only screen and (min-width: 768px) {
    .listItem-brand {
      font-size: 22px;
      margin-bottom: 0; } }

.listItem-title {
  font-size: 22px;
  margin: 0 0 2px; }
  @media only screen and (min-width: 768px) {
    .listItem-title {
      font-size: 20px; } }
  .listItem-title > a {
    text-decoration: none; }

.listItem-price {
  margin-bottom: 25px; }
  @media only screen and (min-width: 768px) {
    .listItem-price {
      font-size: 20px; } }

@media only screen and (min-width: 991px) {
  .listItem-actions {
    vertical-align: middle;
    width: 22%; } }

.listItem-actions .button, .listItem-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .listItem-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .listItem-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .listItem-actions .yotpo-default-button {
  margin-bottom: 0; }
  @media only screen and (min-width: 991px) {
    .listItem-actions .button, .listItem-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .listItem-actions .yotpo-bottomline-2-boxes > .yotpo-default-button, .listItem-actions #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .listItem-actions .yotpo-default-button {
      width: 100%; }
      .listItem-actions .button + .button, .listItem-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .button, #MainContent .yotpo .main-widget .listItem-actions .yotpo-bottomline-2-boxes > .yotpo-default-button + .button, .listItem-actions #MainContent .yotpo .main-widget form .yotpo-default-button + .button, #MainContent .yotpo .main-widget form .listItem-actions .yotpo-default-button + .button, .listItem-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .button + .yotpo-default-button, #MainContent .yotpo .main-widget .listItem-actions .yotpo-bottomline-2-boxes > .button + .yotpo-default-button, .listItem-actions #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget .listItem-actions .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, .listItem-actions #MainContent .yotpo .main-widget form .button + .yotpo-default-button, #MainContent .yotpo .main-widget form .listItem-actions .button + .yotpo-default-button, .listItem-actions #MainContent .yotpo .main-widget form .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget .listItem-actions form .yotpo-bottomline-2-boxes > .yotpo-default-button + .yotpo-default-button, .listItem-actions #MainContent .yotpo .main-widget form .yotpo-default-button + .yotpo-default-button, #MainContent .yotpo .main-widget form .listItem-actions .yotpo-default-button + .yotpo-default-button {
        margin: 10px 0 0; } }

@media only screen and (min-width: 991px) {
  .page-sidebar + .page-content .productList .listItem-details {
    padding-right: 40px; } }

@media only screen and (min-width: 991px) {
  .page-sidebar + .page-content .productList .listItem-actions {
    width: 30%; } }

[data-product-attribute] .form-option.form-option-swatch {
  height: 64px;
  margin-bottom: 10px;
  overflow: hidden;
  width: 64px; }

.form-option-expanded {
  background-color: #fff;
  border: 1px solid;
  left: calc(100% + 55px);
  opacity: 0;
  padding: 3px;
  position: absolute;
  top: calc(100% + 5px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden; }

.form-option:hover .form-option-expanded {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
  z-index: 5000; }

.form-option-image {
  display: block;
  height: 100px;
  width: 100px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover; }

.single-swatch-option {
  margin-right: 15px;
  position: relative; }
  .single-swatch-option.is-current img {
    border: 1px solid #000; }
  .single-swatch-option .sale-image {
    bottom: 18px;
    box-shadow: 0 4px 9px 0 #000;
    height: 20px;
    left: 0;
    position: absolute;
    width: 38px;
    z-index: 9; }
  .single-swatch-option .image-wrapper {
    margin-bottom: 10px; }
  .single-swatch-option .form-option-swatch {
    border: none;
    margin-left: 0;
    margin-right: 0; }

.related-swatches-links.sale-items span {
  color: #e0115f; }

.related-swatches-links.sale-items .linked-color-callout,
.related-swatches-links .linked-color-callout {
  color: #1e1e1e; }

.contact-form {
  margin: 0 auto 30px;
  max-width: 500px; }

.contact-info-content h4, .contact-info-content .h4, .contact-info-content .card-body .price-section, .card-body .contact-info-content .price-section, .contact-info-content #MainContent .yotpo .main-widget .y-label.yotpo-header-title, #MainContent .yotpo .main-widget .contact-info-content .y-label.yotpo-header-title {
  margin-bottom: 10px; }

.contact-info-content p, .contact-info-content .p {
  margin-bottom: 20px; }

.manual-captcha-input-container {
  align-items: center;
  display: flex; }
  .manual-captcha-input-container .question {
    font-size: 1.25rem;
    margin-right: 1rem; }
  .manual-captcha-input-container .form-input {
    flex: 1; }

.technology-page-section {
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .technology-page-section {
      margin-bottom: 50px; } }
  .technology-page-section:last-of-type {
    margin-bottom: 0; }
  .technology-page-section .content-side {
    margin: 0 auto;
    max-width: 439px;
    padding: 30px 0;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .technology-page-section .content-side {
        padding: 200px 0 0; } }
    .technology-page-section .content-side .description,
    .technology-page-section .content-side .h4,
    .technology-page-section .content-side .icon-wrapper {
      margin-bottom: 30px; }
    .technology-page-section .content-side .icon {
      height: 80px;
      width: 79px; }
  .technology-page-section .image-icons-side .image-wrapper {
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .technology-page-section .image-icons-side .image-wrapper {
        margin-bottom: 63px; } }
    .technology-page-section .image-icons-side .image-wrapper img {
      display: block;
      width: 100%; }
  .technology-page-section .image-icons-side .icons-rows {
    font-size: 0;
    margin: 0 auto;
    max-width: 750px; }
    .technology-page-section .image-icons-side .icons-rows .single-item {
      display: inline-block;
      font-size: 16px;
      margin: 0 15px;
      margin-bottom: 30px;
      vertical-align: top;
      width: 220px; }
      @media only screen and (min-width: 768px) {
        .technology-page-section .image-icons-side .icons-rows .single-item {
          margin-bottom: 50px; } }
  .technology-page-section .image-icons-side .icon {
    height: 60px;
    width: 60px; }

#section-bottoms .image-icons-side .icons-rows,
#section-natural-hand-shirts .image-icons-side .icons-rows {
  max-width: 500px; }

#section-layering .content-side .icon {
  height: 80px;
  width: 90px; }

@media only screen and (max-width: 767px) {
  .offset-bg-section#rewards-intro .bg-holder {
    background-image: none !important; }
  .offset-bg-section .wrapper {
    margin-bottom: 160px;
    top: 200px; } }

.collaborations-page-section {
  margin-bottom: 30px; }
  @media only screen and (min-width: 991px) {
    .collaborations-page-section {
      margin-bottom: 50px; } }
  .collaborations-page-section:last-of-type {
    margin-bottom: 0; }
  .collaborations-page-section img {
    display: block;
    width: 100%; }
  .collaborations-page-section .content-side {
    margin: 0 auto;
    max-width: 439px;
    padding: 30px 0;
    text-align: center; }
    @media only screen and (min-width: 991px) {
      .collaborations-page-section .content-side {
        padding: 0; } }
    .collaborations-page-section .content-side .logo-wrapper {
      margin: 0 auto 30px; }
      @media only screen and (min-width: 1200px) {
        .collaborations-page-section .content-side .logo-wrapper {
          margin-bottom: 50px; } }
      .collaborations-page-section .content-side .logo-wrapper img {
        display: inline-block;
        width: auto; }
    .collaborations-page-section .content-side h2, .collaborations-page-section .content-side .h2, .collaborations-page-section .content-side #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span, #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab .collaborations-page-section .content-side span {
      margin-bottom: 10px; }
    .collaborations-page-section .content-side .description {
      margin-bottom: 30px; }
  .collaborations-page-section [data-ajax-category] {
    padding-top: 45px; }
    @media only screen and (min-width: 991px) and (max-width: 1199px) {
      .collaborations-page-section [data-ajax-category] .product:nth-of-type(3) {
        display: none; } }
    @media only screen and (min-width: 1200px) and (max-width: 1399px) {
      .collaborations-page-section [data-ajax-category] .product:nth-of-type(3) {
        display: none; } }
  .collaborations-page-section .card {
    margin-bottom: 30px;
    max-width: 220px; }

#dormie-workshop .logo-wrapper {
  max-width: 135px; }

#bubba-whips .logo-wrapper {
  max-width: 150px; }

#gitman-vintage .logo-wrapper {
  max-width: 215px; }

#imperial-headwear .logo-wrapper {
  max-width: 215px; }

.rewards-page .buttons-wrap {
  font-size: 0; }
  .rewards-page .buttons-wrap .button, .rewards-page .buttons-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .rewards-page .buttons-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button, .rewards-page .buttons-wrap #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .rewards-page .buttons-wrap .yotpo-default-button {
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .rewards-page .buttons-wrap .button, .rewards-page .buttons-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button, #MainContent .yotpo .main-widget .rewards-page .buttons-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button, .rewards-page .buttons-wrap #MainContent .yotpo .main-widget form .yotpo-default-button, #MainContent .yotpo .main-widget form .rewards-page .buttons-wrap .yotpo-default-button {
        margin-bottom: 30px;
        margin-right: 20px; } }
    .rewards-page .buttons-wrap .button:last-child, .rewards-page .buttons-wrap #MainContent .yotpo .main-widget .yotpo-bottomline-2-boxes > .yotpo-default-button:last-child, #MainContent .yotpo .main-widget .rewards-page .buttons-wrap .yotpo-bottomline-2-boxes > .yotpo-default-button:last-child, .rewards-page .buttons-wrap #MainContent .yotpo .main-widget form .yotpo-default-button:last-child, #MainContent .yotpo .main-widget form .rewards-page .buttons-wrap .yotpo-default-button:last-child {
      margin-bottom: 0;
      margin-right: 0; }

.rewards-page .page-header .text-holder {
  max-width: 593px; }

.rewards-page-section {
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .rewards-page-section {
      margin-bottom: 50px; } }
  .rewards-page-section .section-header {
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .rewards-page-section .section-header {
        margin-bottom: 40px; } }

#ways-to-earn .swell-campaign-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  position: relative; }

#ways-to-earn .campaign {
  border-bottom: 1px solid #979797;
  border-right: 1px solid #979797;
  min-height: 180px;
  padding: 20px 10px;
  position: relative;
  text-align: center; }
  @media only screen and (min-width: 480px) {
    #ways-to-earn .campaign {
      min-height: 156px;
      padding: 20px 0 10px;
      text-align: left; } }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    #ways-to-earn .campaign {
      padding: 43px 0 10px; } }
  @media only screen and (min-width: 991px) {
    #ways-to-earn .campaign {
      padding: 43px 0 10px;
      width: 25%; }
      #ways-to-earn .campaign:nth-child(n + 5) {
        border-bottom: 0; }
      #ways-to-earn .campaign:nth-child(4n) {
        border-right: 0; } }
  @media only screen and (max-width: 990px) {
    #ways-to-earn .campaign {
      width: 50%; }
      #ways-to-earn .campaign:nth-child(n + 7) {
        border-bottom: 0; }
      #ways-to-earn .campaign:nth-child(2n) {
        border-right: 0; } }
  #ways-to-earn .campaign:nth-child(n + 9) {
    display: none; }
  #ways-to-earn .campaign p, #ways-to-earn .campaign .p {
    margin-bottom: 0; }
    #ways-to-earn .campaign p.large-font, #ways-to-earn .campaign .large-font.p, #ways-to-earn .campaign .page-header .rte p, .page-header .rte #ways-to-earn .campaign p, #ways-to-earn .campaign .page-header .rte .p, .page-header .rte #ways-to-earn .campaign .p {
      margin-bottom: 10px; }

@media only screen and (min-width: 480px) {
  #ways-to-earn .campaign-content {
    display: table;
    table-layout: fixed;
    width: 100%; }
    #ways-to-earn .campaign-content > div {
      display: table-cell;
      vertical-align: middle; } }

@media only screen and (min-width: 480px) {
  #ways-to-earn .campaign-content .icon-wrapper {
    text-align: right;
    width: 30.74792%; } }

#ways-to-earn .campaign-content .icon-wrapper .icon {
  height: 55px;
  width: 45px; }

@media only screen and (min-width: 480px) {
  #ways-to-earn .campaign-content .text-wrapper {
    padding-left: 30px; } }

@media only screen and (min-width: 1400px) {
  #ways-to-earn .campaign-content .text-wrapper {
    padding-left: 50px; } }

#ways-to-earn .icon-birthday {
  fill-rule: evenodd; }

#how-it-works {
  border-bottom: 1px solid #979797; }
  @media only screen and (min-width: 768px) {
    #how-it-works {
      padding-bottom: 50px; } }
  @media only screen and (max-width: 767px) {
    #how-it-works .how-it-works-item {
      margin-bottom: 40px; } }
  #how-it-works .how-it-works-item .icon-wrapper {
    margin-bottom: 30px; }
    #how-it-works .how-it-works-item .icon-wrapper .icon {
      height: 95px;
      width: 92px; }
  #how-it-works .icon-golf-bag {
    fill-rule: evenodd; }

#vip-tiers {
  padding: 42px 0 50px; }
  #vip-tiers .vip-tier {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      #vip-tiers .vip-tier {
        margin-bottom: 30px; } }
    #vip-tiers .vip-tier .current-status {
      font-weight: 900;
      margin-bottom: 20px;
      visibility: hidden; }
    #vip-tiers .vip-tier .icon-wrapper {
      background-color: #f8f7f6;
      border-radius: 50%;
      display: inline-block;
      margin-bottom: 15px;
      padding: 10px;
      position: relative; }
    #vip-tiers .vip-tier .icon {
      display: block;
      fill: currentColor;
      height: 40px;
      width: 40px; }
    #vip-tiers .vip-tier .vip-tier-name {
      margin-bottom: 0; }
    #vip-tiers .vip-tier.is-active .current-status {
      visibility: visible; }
    #vip-tiers .vip-tier.is-active .icon-wrapper {
      border: 2px solid #1e1e1e;
      padding: 8px; }
  #vip-tiers .vip-tiers-container {
    position: relative; }
  #vip-tiers .vip-tiers-line {
    background-color: #1e1e1e;
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 124px; }
    @media only screen and (max-width: 767px) {
      #vip-tiers .vip-tiers-line {
        display: none; } }
    #vip-tiers .vip-tiers-line .single-dot {
      background-color: #1e1e1e;
      border-radius: 50%;
      height: 11px;
      overflow: hidden;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 11px; }
      #vip-tiers .vip-tiers-line .single-dot.dot-1 {
        left: 0;
        transform: translateY(-50%); }
      #vip-tiers .vip-tiers-line .single-dot.dot-2 {
        left: 8.33333%; }
      #vip-tiers .vip-tiers-line .single-dot.dot-3 {
        left: 25%; }
      #vip-tiers .vip-tiers-line .single-dot.dot-4 {
        left: 33.33333%; }
      #vip-tiers .vip-tiers-line .single-dot.dot-5 {
        left: 41.66667%; }
      #vip-tiers .vip-tiers-line .single-dot.dot-6 {
        left: 58.33333%; }
      #vip-tiers .vip-tiers-line .single-dot.dot-7 {
        left: 66.66667%; }
      #vip-tiers .vip-tiers-line .single-dot.dot-8 {
        left: 75%; }
      #vip-tiers .vip-tiers-line .single-dot.dot-9 {
        left: 91.66667%; }
      #vip-tiers .vip-tiers-line .single-dot.dot-10 {
        right: 0;
        transform: translateY(-50%); }

@media only screen and (min-width: 768px) {
  #refer-a-friend .content-box {
    margin-left: auto;
    padding: 0 95px; } }

@media only screen and (max-width: 767px) {
  #refer-a-friend .content-box {
    width: 330px; } }

#redeem-for-discounts .bg-holder {
  right: 0; }

@media only screen and (min-width: 768px) {
  #redeem-for-discounts .content-box {
    padding: 0 100px; } }

@media only screen and (max-width: 767px) {
  #redeem-for-discounts .content-box {
    margin-right: auto;
    width: 330px; } }

#redeem-for-discounts .content-box .swell-redemption-option-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none; }
  #redeem-for-discounts .content-box .swell-redemption-option-list .swell-static-redemption-option {
    border-left: 1px solid #979797;
    border-top: 1px solid #979797;
    padding: 17px 5px;
    width: 50%; }
    #redeem-for-discounts .content-box .swell-redemption-option-list .swell-static-redemption-option:nth-of-type(odd) {
      border-left: 0 none; }
    #redeem-for-discounts .content-box .swell-redemption-option-list .swell-static-redemption-option:nth-of-type(-n + 2) {
      border-top: 0 none;
      padding-top: 0; }
    #redeem-for-discounts .content-box .swell-redemption-option-list .swell-static-redemption-option:nth-last-of-type(-n + 2) {
      padding-bottom: 0; }
    #redeem-for-discounts .content-box .swell-redemption-option-list .swell-static-redemption-option p:last-child, #redeem-for-discounts .content-box .swell-redemption-option-list .swell-static-redemption-option .p:last-child {
      margin-bottom: 0; }

#rewards-intro .bg-holder {
  right: 0; }

#rewards-intro .content-box {
  position: relative; }
  @media only screen and (min-width: 768px) {
    #rewards-intro .content-box {
      padding: 0 73px 0 93px;
      width: auto; } }
  @media only screen and (min-width: 768px) {
    #rewards-intro .content-box .h2 {
      margin-bottom: 25px; }
      #rewards-intro .content-box .h2:last-of-type {
        margin-bottom: 50px; } }

/*******************
Refer Page
******************/
.referral-content .small-line {
  border: 0 none;
  border-bottom: 1px solid #979797;
  margin: 0 0 20px;
  max-width: 250px; }

.referral-content .refer-share-links {
  list-style: none; }
  .referral-content .refer-share-links li {
    display: inline-block;
    margin-right: 20px; }
    .referral-content .refer-share-links li:last-child {
      margin-right: 0; }
    .referral-content .refer-share-links li a {
      display: block;
      text-decoration: none; }
      .referral-content .refer-share-links li a .icon {
        fill: currentColor;
        height: 12px;
        width: 15px; }
      .referral-content .refer-share-links li a .icon-wrapper,
      .referral-content .refer-share-links li a .text-wrapper {
        display: inline-block; }
      .referral-content .refer-share-links li a:hover {
        border-bottom: 1px solid; }

@media only screen and (max-width: 767px) {
  #referral-main .left-side {
    margin: 0 auto;
    max-width: 430px;
    padding: 40px 20px; } }

@media only screen and (min-width: 768px) {
  #referral-main .left-side {
    margin-left: auto;
    margin-right: 60px;
    max-width: 390px;
    padding-top: 68px; } }

@media only screen and (min-width: 1200px) {
  #referral-main .left-side {
    margin-right: 190px;
    padding-top: 128px; } }

#referral-main .right-side {
  height: 600px;
  position: relative; }
  #referral-main .right-side .bg-holder {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0; }
  #referral-main .right-side .overlay {
    background-color: rgba(30, 30, 30, 0.9);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0; }
  #referral-main .right-side .content-holder {
    position: relative; }
    @media only screen and (max-width: 767px) {
      #referral-main .right-side .content-holder {
        margin: 0 auto;
        max-width: 430px;
        padding: 40px 20px; } }
    @media only screen and (min-width: 768px) {
      #referral-main .right-side .content-holder {
        padding-left: 40px;
        padding-top: 40px; } }
    @media only screen and (min-width: 1200px) {
      #referral-main .right-side .content-holder {
        padding-left: 105px;
        padding-top: 105px; } }
    #referral-main .right-side .content-holder h2, #referral-main .right-side .content-holder .h2, #referral-main .right-side .content-holder #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab span, #MainContent .yotpo .main-widget .yotpo-nav ul .yotpo-nav-tab #referral-main .right-side .content-holder span,
    #referral-main .right-side .content-holder p,
    #referral-main .right-side .content-holder .p {
      color: #fff; }
    #referral-main .right-side .content-holder .redeem-description {
      margin-bottom: 27px; }
  #referral-main .right-side .table-wrapper {
    margin-bottom: 20px;
    max-height: 170px;
    overflow-y: auto; }
  #referral-main .right-side .table {
    margin: 0; }
  #referral-main .right-side #custom-referrals-container th,
  #referral-main .right-side #custom-referrals-container td {
    color: #fff;
    font-weight: 300;
    padding: 5px 30px 5px 0;
    text-align: left; }

@media only screen and (min-width: 768px) {
  #referralPopup {
    padding-bottom: 60px; } }

#referralPopup .link-wrap {
  margin-bottom: 30px; }

#referralPopup .button-wrap {
  margin-bottom: 20px; }

#referralPopup .large-font, #referralPopup .page-header .rte p, .page-header .rte #referralPopup p, #referralPopup .page-header .rte .p, .page-header .rte #referralPopup .p {
  margin-bottom: 0; }

@media only screen and (min-width: 768px) {
  #postCheckoutReferralPopup {
    padding-bottom: 60px;
    padding-top: 50px; } }

#postCheckoutReferralPopup .referral-content {
  margin: 0 auto;
  max-width: 390px; }

#postCheckoutReferralPopup .popup-header {
  color: #fff;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: -50px; }

.page--newsletter-sign-up {
  margin-left: auto;
  margin-right: auto;
  max-width: 1680px; }
  .page--newsletter-sign-up .css-grid {
    display: grid;
    gap: 22px; }
  .page--newsletter-sign-up .section {
    margin-bottom: 60px; }
  .page--newsletter-sign-up [data-bg] {
    background-repeat: no-repeat;
    background-size: cover; }
  .page--newsletter-sign-up .text-heading,
  .page--newsletter-sign-up .text-body {
    margin: 0 0 20px; }
  .page--newsletter-sign-up .body-large {
    font-size: 16px;
    line-height: calc(22/16); }
    @media only screen and (min-width: 768px) {
      .page--newsletter-sign-up .body-large {
        font-size: 20px;
        line-height: 1.5; } }
  .page--newsletter-sign-up .section--banner {
    margin-bottom: 30px;
    padding-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      .page--newsletter-sign-up .section--banner {
        border-bottom: 1px solid #979797; } }
    @media only screen and (min-width: 768px) {
      .page--newsletter-sign-up .section--banner {
        margin-bottom: 20px; } }
    .page--newsletter-sign-up .section--banner [data-bg] {
      aspect-ratio: 360 / 165;
      margin-bottom: 20px;
      min-height: 165px;
      width: 100%; }
      @media only screen and (min-width: 768px) {
        .page--newsletter-sign-up .section--banner [data-bg] {
          aspect-ratio: 1680 / 665;
          margin-bottom: 30px; } }
    .page--newsletter-sign-up .section--banner .content-wrap {
      align-items: center;
      display: flex;
      flex-direction: column; }
    .page--newsletter-sign-up .section--banner .text-heading {
      margin-bottom: 10px; }
      @media only screen and (max-width: 767px) {
        .page--newsletter-sign-up .section--banner .text-heading {
          max-width: 300px; } }
      @media only screen and (min-width: 768px) {
        .page--newsletter-sign-up .section--banner .text-heading {
          margin-bottom: 15px; } }
    .page--newsletter-sign-up .section--banner .text-body {
      margin-bottom: 20px;
      max-width: 733px; }
  .page--newsletter-sign-up .section--form-grid .css-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr; }
    @media only screen and (min-width: 768px) {
      .page--newsletter-sign-up .section--form-grid .css-grid {
        grid-template-columns: 1fr 1fr; } }
  .page--newsletter-sign-up .section--form-grid .grid_item {
    height: 100%; }
  .page--newsletter-sign-up .section--form-grid [data-bg] {
    background-position: center;
    height: 100%;
    min-height: 344px; }
    @media only screen and (max-width: 767px) {
      .page--newsletter-sign-up .section--form-grid [data-bg] {
        aspect-ratio: 360 / 344; } }
  .page--newsletter-sign-up .section--form-grid .flex-container {
    display: flex;
    justify-content: center; }
  .page--newsletter-sign-up .section--form-grid form.klaviyo-form {
    max-width: 466px !important;
    padding: 0 20px !important;
    width: 100vw !important; }
    @media only screen and (min-width: 768px) {
      .page--newsletter-sign-up .section--form-grid form.klaviyo-form {
        padding-left: 0 !important;
        width: calc(50vw - 11px) !important; } }
  .page--newsletter-sign-up .section--benefit-cards {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (min-width: 768px) {
      .page--newsletter-sign-up .section--benefit-cards {
        margin-bottom: 30px; } }
    .page--newsletter-sign-up .section--benefit-cards .css-grid {
      gap: 20px 0;
      grid-template-columns: repeat(2, 1fr);
      margin: 0 auto;
      max-width: max-content; }
      @media only screen and (min-width: 768px) {
        .page--newsletter-sign-up .section--benefit-cards .css-grid {
          grid-template-columns: repeat(4, 1fr);
          max-width: 1200px; } }
    .page--newsletter-sign-up .section--benefit-cards .benefit-card {
      margin: 0 auto;
      max-width: 220px;
      padding: 0 20px; }
    .page--newsletter-sign-up .section--benefit-cards img {
      height: 80px;
      margin-bottom: 20px; }
    .page--newsletter-sign-up .section--benefit-cards .text-body {
      font-weight: 500;
      letter-spacing: 2.29px; }
  .page--newsletter-sign-up .section--aux-image {
    margin-bottom: 0; }
    @media only screen and (min-width: 768px) {
      .page--newsletter-sign-up .section--aux-image {
        margin-bottom: 40px; } }
    @media only screen and (max-width: 767px) {
      .page--newsletter-sign-up .section--aux-image [data-bg] {
        background-position: left 27% center;
        background-size: cover;
        height: 344px; } }
    @media only screen and (min-width: 768px) {
      .page--newsletter-sign-up .section--aux-image [data-bg] {
        aspect-ratio: 1680 / 630;
        width: 100%; } }
  .page--newsletter-sign-up #featured-products-section {
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .page--newsletter-sign-up #featured-products-section {
        padding-bottom: 0; } }

@media only screen and (min-width: 768px) {
  .page--catalog .body-large {
    font-size: 21px;
    line-height: calc(29/21); } }

.page--catalog .section--banner {
  margin: 0 auto 30px; }
  .page--catalog .section--banner .banner-image {
    aspect-ratio: 120 / 47;
    background-position: bottom center;
    background-size: cover;
    margin-bottom: 50px;
    max-height: 535px;
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .page--catalog .section--banner .banner-image {
        aspect-ratio: 336 / 107; } }
  .page--catalog .section--banner .content-wrap {
    align-items: center;
    display: flex;
    flex-direction: column; }
  .page--catalog .section--banner .text-heading {
    margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      .page--catalog .section--banner .text-heading {
        font-size: 25px; } }
  .page--catalog .section--banner .text-body {
    margin-bottom: 20px;
    max-width: 770px; }

.page--catalog .section--catalog {
  margin-bottom: 20px; }
  .page--catalog .section--catalog iframe {
    height: 80vh;
    max-height: 600px;
    width: 100%; }

.page--catalog #featured-products-section {
  margin-bottom: 0;
  padding-bottom: 0; }

.splash-page .klaviyo-form {
  margin-top: 0; }

.splash-page [data-testid="form-row"]:not(:nth-child(1)) {
  margin: 0 auto;
  max-width: 100%;
  width: 400px; }
