@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.
*/
/* stylelint-disable string-quotes */
/* stylelint-disable indentation */
/*================ 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
==============================================================================*/
.grid {
  /* stylelint-disable-next-line order/order */
  *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--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .grid--flex::before, .grid--flex::after {
    content: none;
    display: none; }
  .grid--flex > .grid__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }

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

.grid--table {
  display: table;
  table-layout: fixed;
  width: calc(100% + 22px); }
  .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__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__item {
      display: table-cell;
      float: none;
      vertical-align: middle; }
    .grid-large-up--table::after {
      display: none; } }

.grid--15 {
  margin-left: -15px; }
  .grid--15 > .grid__item {
    padding-left: 15px; }

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

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

.form-field {
  margin-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .form-field {
      margin-bottom: 30px; } }
  .form-field .form-select:focus-visible {
    -webkit-outline: 5px auto #e59700;
    -moz-outline: 5px auto #e59700;
    -ms-outline: 5px auto #e59700;
    -o-outline: 5px auto #e59700;
    outline: 5px auto #e59700; }

.form-input,
.form-select {
  background-color: #fff;
  border-color: #000;
  border-radius: 0;
  border-style: solid;
  border-width: 2px;
  color: #000;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  height: 45px;
  letter-spacing: 0;
  outline: 0 none;
  padding: 0 12px; }
  .form-input.placeholder,
  .form-select.placeholder {
    color: #bababb; }
  .form-input:-moz-placeholder,
  .form-select:-moz-placeholder {
    color: #bababb; }
  .form-input::-moz-placeholder,
  .form-select::-moz-placeholder {
    color: #bababb; }
  .form-input:-ms-input-placeholder,
  .form-select:-ms-input-placeholder {
    color: #bababb; }
  .form-input::-webkit-input-placeholder,
  .form-select::-webkit-input-placeholder {
    color: #bababb; }

.add-increment-wrap .form-input,
.add-increment-wrap .form-select {
  border-width: 2px; }

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

textarea.form-input {
  padding-top: 6px; }

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='m.0403052.889746 4.8476348 5.475934c.06024.06804.16388.06804.22412 0l4.84763-5.475934c.12121-.136896-.05483-.375067-.21181-.28752-1.19539.666684-3.24066 1.667334-4.74788 1.667334s-3.55249-1.00065-4.747882-1.667334c-.1569765-.087547-.3330016.150624-.2118128.28752z' fill='rgba(0, 0, 0, 0.999)' /%3E%3C/svg%3E");
  background-position: right 4px top 16px;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 0 19px 0 15px; }
  @media only screen and (min-width: 768px) {
    .form-select {
      padding: 0 20px 0 12px; } }

.form-label {
  display: inline-block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase; }

label[for] {
  cursor: pointer; }

.form-label--inlineSmall {
  display: inline-block; }
  .form-label--inlineSmall small {
    color: #9c9c9c;
    float: none;
    font-size: inherit;
    font-weight: 400;
    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-inlineMessage {
  display: block; }

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

.form-field--error .form-inlineMessage {
  color: #9f3238;
  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='rgba(159, 50, 56, 0.999)' /%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='rgba(0, 104, 43, 0.999)' /%3E%3C/svg%3E");
  background-position: right 9px center;
  background-repeat: no-repeat; }

.form-field--success .form-input[name="credit_card_number"] {
  background-position: right spacing("single")spacing("half") center; }

.form-field--success .form-input[name="cvv"] {
  background-position: right spacing("single")spacing("half") center; }

.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 #000;
    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: #005f88; }
  .form-checkbox:focus + .form-label::after,
  .form-radio:focus + .form-label::after {
    -webkit-outline: 5px auto #e59700;
    -moz-outline: 5px auto #e59700;
    -ms-outline: 5px auto #e59700;
    -o-outline: 5px auto #e59700;
    outline: 5px auto #e59700; }

.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 input,
  .form-actions a {
    vertical-align: top; }
    @media only screen and (min-width: 480px) {
      .form-actions .button + .button,
      .form-actions .button + input,
      .form-actions .button + a,
      .form-actions input + .button,
      .form-actions input + input,
      .form-actions input + a,
      .form-actions a + .button,
      .form-actions a + input,
      .form-actions a + a {
        margin: 0 0 0 10px; } }
    @media only screen and (max-width: 767px) {
      .form-actions .button + .button,
      .form-actions .button + input,
      .form-actions .button + a,
      .form-actions input + .button,
      .form-actions input + input,
      .form-actions input + a,
      .form-actions a + .button,
      .form-actions a + input,
      .form-actions a + a {
        margin-bottom: 10px; } }
  @media only screen and (max-width: 767px) {
    .form-actions #wishlistBtn {
      margin-bottom: 5px; } }

.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: 14px;
  max-width: 280px;
  padding: 4px 7px;
  padding-right: 20px; }

.form-select--short {
  max-width: 84px;
  width: 63px; }

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

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

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

.form-prefixPostfix {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .form-prefixPostfix .button {
    font-size: 16px;
    height: 45px;
    line-height: 40px;
    width: 100%; }
    .form-prefixPostfix .button:hover {
      border-color: #0076a8 #007a33 #a4343a #d19000;
      color: #000; }
  .form-prefixPostfix.wrap {
    flex-wrap: wrap; }
  .form-prefixPostfix .form-input,
  .form-prefixPostfix .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 {
      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--centeredColumn.wrap {
  flex-direction: column; }

.form-prefixPostfix--centeredColumn .g-recaptcha {
  margin: 2em auto 0; }

@media only screen and (min-width: 991px) {
  .form-prefixPostfix--centeredColumn .form-prefixPostfix-button--postfix {
    margin: 1em 0 spacing("half"); } }

.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 .form-label {
  display: block; }

.add-increment-wrap .form-field--increments {
  display: block;
  margin-bottom: 0 !important; }
  .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 {
    width: 117px; }
  .form-increment > div.increment-button-wrap {
    width: 45px; }
    .form-increment > div.increment-button-wrap .button {
      background-color: #000;
      border: 0 none;
      color: #fff;
      display: block;
      height: 45px;
      line-height: 50px;
      margin: 0;
      padding: 0;
      width: 100%; }
      .form-increment > div.increment-button-wrap .button .icon {
        height: 25px;
        width: 25px; }
    .form-increment > div.increment-button-wrap:first-child .button {
      line-height: 20px; }

.form-input--incrementTotal {
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: center;
  width: 100%; }
  .form-field--success .form-input--incrementTotal {
    float: none; }

.options-wrap {
  font-size: 0; }

.single-swatch-option {
  display: inline-block;
  margin-bottom: 15px;
  vertical-align: top; }
  .single-swatch-option .form-radio:checked + .form-option svg {
    border-color: #000; }

.form-option-wrapper:not(.single-swatch-option) .form-radio:checked + .form-option {
  border-color: #000; }

.form-option {
  border: 1px solid #b1b3b3;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 44px;
  line-height: 44px;
  margin-bottom: 7px;
  margin-right: 6px;
  min-width: 44px;
  padding: 0;
  transition: all 0.15s ease; }
  .form-option:hover {
    border-color: #000; }
  .form-option .image-wrapper {
    background-color: #fff;
    left: 0;
    position: absolute;
    top: 0; }
    .form-option .image-wrapper img {
      display: block;
      height: 50px;
      width: 50px; }
  .form-option.form-option-swatch {
    border-color: transparent;
    height: 48px;
    margin-right: 10px;
    width: 48px; }

.form-option-variant {
  color: #000;
  display: block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 42px;
  padding: 0 10px;
  pointer-events: none;
  text-align: center; }

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

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

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

.form-minMaxRow {
  /* stylelint-disable-next-line order/order */
  *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: 50%; }
    @media only screen and (max-width: 1199px) {
      .form-minMaxRow .form-field {
        width: 25%; } }
    .form-minMaxRow .form-field input {
      height: 58px;
      max-width: 100%;
      padding: 0;
      padding-left: 5px; }
    .form-minMaxRow .form-field:last-child {
      width: 100%; }
    .form-minMaxRow .form-field .button {
      margin-top: 5px; }
  .form-minMaxRow .button {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%; }
    @media only screen and (max-width: 1199px) {
      .form-minMaxRow .button {
        width: 50%; } }

.form-row--half {
  /* stylelint-disable-next-line order/order */
  *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:nth-child(odd) {
        clear: left; } }
  .form-row--half > .form-field .form-input {
    width: 100%; }

.form-row--third {
  /* stylelint-disable-next-line order/order */
  *zoom: 1; }
  .form-row--third::after {
    clear: both;
    content: '';
    display: table; }
  @media only screen and (min-width: 480px) {
    .form-row--third {
      margin-left: -22px; } }
  @media only screen and (min-width: 480px) {
    .form-row--third > .form-field {
      float: left;
      padding-left: 22px;
      width: 33.333%; }
      .form-row--third > .form-field:nth-child(3n-2) {
        clear: left; } }
  .form-row--third > .form-field .form-input {
    width: 100%; }

[data-product-attribute] .form-option {
  overflow: hidden;
  position: relative; }
  [data-product-attribute] .form-option.unavailable {
    background-color: #fff; }
    [data-product-attribute] .form-option.unavailable::before {
      background: linear-gradient(to left top, transparent 45.5%, #d8d8d8 47.5%, #d8d8d8 51.5%, transparent 36.5%);
      bottom: 0;
      content: "";
      left: 0;
      position: absolute;
      right: 0;
      top: 0; }
    [data-product-attribute] .form-option.unavailable.form-option-swatch::before {
      background: #d8d8d8;
      height: 3px;
      left: 1;
      top: 23px;
      transform: rotate(-45deg);
      width: 102%;
      z-index: 9; }

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

.form.display-flex {
  display: flex;
  width: 100%; }
  .form.display-flex .form-field,
  .form.display-flex .form-input,
  .form.display-flex .form-select {
    height: 58px;
    margin: 0;
    width: 100%; }

.page-layout {
  margin: auto;
  max-width: 900px; }

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

body {
  background: #fff;
  color: #000;
  cursor: auto;
  font-family: "Karla", Helvetica, Arial, sans-serif;
  font-size: 14px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative; }

a {
  transition: color 0.15s ease; }

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

h0,
.h0, h1,
.h1,
h2,
.h2,
.yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .headline,
h3,
.h3,
.off-canvas-list-menu .custom-mobile-submenu .link-header,
.productView-price .price,
h4,
.h4,
h5,
.h5,
.productView-options [data-option-value],
.yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-title,
.yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-num-of-reviews,
h6,
.h6,
.actionBar-section .form-select,
.card .price-section {
  color: #000;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 0; }
  @media only screen and (min-width: 768px) {
    h0,
    .h0, h1,
    .h1,
    h2,
    .h2,
    .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .headline,
    h3,
    .h3,
    .off-canvas-list-menu .custom-mobile-submenu .link-header,
    .productView-price .price,
    h4,
    .h4,
    h5,
    .h5,
    .productView-options [data-option-value],
    .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-title,
    .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-num-of-reviews,
    h6,
    .h6,
    .actionBar-section .form-select,
    .card .price-section {
      font-weight: 600; } }
  h0 a, .h0 a, h1 a, .h1 a,
  h2 a,
  .h2 a,
  .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .headline a,
  h3 a,
  .h3 a,
  .off-canvas-list-menu .custom-mobile-submenu .link-header a,
  .productView-price .price a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  .productView-options [data-option-value] a,
  .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-title a,
  .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-num-of-reviews a,
  h6 a,
  .h6 a,
  .actionBar-section .form-select a,
  .card .price-section a {
    color: inherit; }

h0,
.h0, h1,
.h1 {
  font-size: 32px;
  text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    h0,
    .h0, h1,
    .h1 {
      font-size: 40px; } }


h2,
.h2,
.yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .headline {
  font-size: 26px;
  text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    
    h2,
    .h2,
    .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .headline {
      font-size: 30px; } }


h3,
.h3,
.off-canvas-list-menu .custom-mobile-submenu .link-header,
.productView-price .price {
  font-size: 20px; }
  @media only screen and (min-width: 768px) {
    
    h3,
    .h3,
    .off-canvas-list-menu .custom-mobile-submenu .link-header,
    .productView-price .price {
      font-size: 25px; } }


h4,
.h4 {
  font-size: 16px;
  text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    
    h4,
    .h4 {
      font-size: 20px; } }


h5,
.h5,
.productView-options [data-option-value],
.yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-title,
.yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-num-of-reviews {
  font-size: 14px; }
  @media only screen and (min-width: 768px) {
    
    h5,
    .h5,
    .productView-options [data-option-value],
    .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-title,
    .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-num-of-reviews {
      font-size: 18px; } }


h6,
.h6,
.actionBar-section .form-select,
.card .price-section {
  font-size: 12px; }
  @media only screen and (min-width: 768px) {
    
    h6,
    .h6,
    .actionBar-section .form-select,
    .card .price-section {
      font-size: 16px; } }

h0,
.h0 {
  font-size: 40px;
  line-height: normal;
  margin-bottom: 0; }
  @media only screen and (min-width: 768px) {
    h0,
    .h0 {
      font-size: 70px; } }

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

a {
  color: #000; }
  @media (hover: hover) {
    a:hover {
      color: #000; } }

#skip-to-main-content-link {
  text-decoration: underline; }

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

address {
  font-style: normal; }

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

.color-secondary {
  color: #d19000; }

.rte ul,
.rte ol {
  margin-bottom: 20px;
  padding-left: 20px; }
  @media only screen and (min-width: 768px) {
    .rte ul,
    .rte ol {
      margin-bottom: 40px;
      padding-left: 40px; } }
  .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; }

.body-small, .sku-display, .page-sidebar > nav .form-label {
  font-family: "Karla", Helvetica, Arial, sans-serif;
  font-size: 12px; }

.body-small.bold {
  font-weight: 700; }

.body-large, .productView-options .form-label--inlineSmall, .productView-options .form-field.form-field--increments .increment-button-wrap .form-input,
.productView-options .form-field.form-field--increments .increment-button-wrap .form-select,
.productView-options .form-field.form-field--increments .increment-input-wrap .form-input,
.productView-options .form-field.form-field--increments .increment-input-wrap .form-select, .productView-options .size-chart-link-wrapper, .category-header .rte p {
  font-family: "Karla", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5; }

.body-large.bold {
  font-weight: 700; }

.body-normal, .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-body, .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-author {
  color: #000;
  font-family: "Karla", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5; }

.body-normal.bold {
  font-weight: 700; }

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

.text-link {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 16px; }
  @media only screen and (min-width: 768px) {
    .text-link {
      font-size: 20px; } }

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

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

.button {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 4px solid #000;
  border-radius: 0;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 54px;
  letter-spacing: 0;
  line-height: 48px;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap; }
  @media only screen and (min-width: 768px) {
    .button {
      font-size: 20px; } }
  .button svg {
    fill: currentColor; }
  .button .icon {
    height: 12px;
    width: 12px; }
  @media (hover: hover) {
    .button :hover {
      background-color: #fff;
      color: #000; } }
  .button[disabled] {
    cursor: not-allowed; }
  .button.button--primary {
    background-color: #fff;
    color: #000;
    min-width: 186px; }
    .button.button--primary.button--white {
      border-color: #fff; }
    .button.button--primary:hover {
      background-color: #fff;
      border-color: #005f88 #00682b #9f3238 #d19000;
      color: #000; }
  .button.button--secondary {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    width: 195px; }
    .button.button--secondary:hover {
      background-color: #fff;
      color: #000; }
  .button.button--border {
    background-color: transparent;
    border: 1px solid #005f88;
    color: #005f88;
    line-height: 56px; }
    .button.button--border:hover {
      background-color: #00682b;
      border-color: #00682b;
      color: #000; }
  .button.button--wishlist {
    background-color: #000;
    color: #fff; }
    .button.button--wishlist:hover {
      background-color: #fff;
      border-color: #000;
      color: #000; }
  .button.button--red {
    background-color: #9f3238;
    border-color: #9f3238;
    color: #fff; }
  .button.button--dropdown {
    border: 1px solid #000; }
    .button.button--dropdown:hover {
      border: 4px solid #000;
      color: #000; }
  .button.button--text {
    background-color: transparent;
    border: 0;
    color: #000;
    font-size: 16px;
    height: auto;
    line-height: 1;
    text-decoration: underline; }
    .button.button--text.button--text__white {
      color: #fff; }
  .button.button--small {
    font-size: 12px;
    height: 54px;
    line-height: 54px; }
    .button.button--small.button--border {
      line-height: 52px; }
  .button.button--big {
    background-color: #fff;
    color: #000;
    width: 315px; }
    .button.button--big:hover {
      background-color: #fff;
      border-color: #005f88 #00682b #9f3238 #d19000;
      color: #000; }
  .button.button--refer {
    background-color: #000;
    color: #fff;
    min-width: 238px; }
    .button.button--refer:hover {
      background-color: #fff;
      border-color: #000;
      color: #000; }
  .button.button--rewards {
    background-color: #000;
    color: #fff;
    min-width: 186px; }
    .button.button--rewards:hover {
      background-color: transparent;
      border-color: #000;
      color: #000; }
  .button.button--rewards-2 {
    background-color: transparent;
    color: #000;
    min-width: 186px; }
    .button.button--rewards-2:hover {
      background-color: #000;
      color: #fff; }
  .button.dropdown-button {
    height: auto !important;
    padding-bottom: 10px !important;
    padding-top: 10px !important; }

.button--unstyled {
  background: transparent;
  border: 0;
  height: auto;
  line-height: normal;
  padding: 0; }

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

.page-banner {
  background-color: #f5f5f5;
  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: 265px;
      margin-bottom: 60px;
      text-align: left; } }
  .page-banner .wrapper {
    height: 100%; }
  .page-banner :last-child {
    margin-bottom: 0; }

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

.lowercase {
  text-transform: lowercase; }

.uppercase {
  text-transform: uppercase; }

.buttons-wrap .single-button {
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    .buttons-wrap .single-button {
      display: inline-block;
      margin-bottom: 0;
      margin-right: 40px; }
      .buttons-wrap .single-button:last-child {
        margin-right: 0; } }

.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: #9f3238;
    font-size: 12px;
    margin-bottom: 0; }
  .coupon-callout .coupon-text {
    font-weight: 700; }

/* stylelint-disable-next-line scss/at-function-pattern */
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%;
  /* stylelint-disable-next-line order/order */
  *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: 80px;
  position: absolute;
  top: 0;
  width: 80px;
  border-right: none 0 transparent;
  left: 0; }

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

.menu-icon {
  color: #000;
  display: block;
  height: 80px;
  padding: 0;
  position: relative;
  transform: translate3d(0, 0, 0);
  width: 80px; }

.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: 323px;
  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: 323px;
  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: 323px;
  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: 323px;
  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: 2px solid #fff;
  color: #000;
  display: block;
  padding: 15px 35px;
  transition: background 300ms ease; }
  .off-canvas-list-menu li a:hover {
    background: #ecf3f5;
    color: #000; }
  .off-canvas-list-menu li a:active {
    background: #ecf3f5;
    color: #000; }

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

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

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

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

.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(255, 255, 255, 0.3);
  bottom: 0;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .move-top .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.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(255, 255, 255, 0.3);
  bottom: 0;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .move-bottom .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.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(255, 255, 255, 0.3);
  bottom: 0;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.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(255, 255, 255, 0.3);
  bottom: 0;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap-left .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.offcanvas-overlap-right .left-off-canvas-menu {
  border: 1px solid #585858;
  -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(255, 255, 255, 0.3);
  bottom: 0;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap-right .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.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(255, 255, 255, 0.3);
  bottom: 0;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap-top .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.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(255, 255, 255, 0.3);
  bottom: 0;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  transition: background 300ms ease;
  z-index: 1002; }
  @media only screen and (min-width: 768px) {
    .offcanvas-overlap-bottom .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

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

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

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

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

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

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

.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: 323px;
  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: #005f88;
    border-bottom: 1px solid #000;
    border-top: none;
    color: #1e1e1e;
    font-weight: 700;
    margin: 0;
    padding: 15px 35px;
    text-transform: uppercase; }
    .left-submenu .back > a:hover {
      background: #005f88;
      border-bottom: 1px solid #000;
      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: 323px;
  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: #005f88;
    border-bottom: 1px solid #000;
    border-top: none;
    color: #1e1e1e;
    font-weight: 700;
    margin: 0;
    padding: 15px 35px;
    text-transform: uppercase; }
    .right-submenu .back > a:hover {
      background: #005f88;
      border-bottom: 1px solid #000;
      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: 323px;
  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: #005f88;
    border-bottom: 1px solid #000;
    border-top: none;
    color: #1e1e1e;
    font-weight: 700;
    margin: 0;
    padding: 15px 35px;
    text-transform: uppercase; }
    .top-submenu .back > a:hover {
      background: #005f88;
      border-bottom: 1px solid #000;
      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: 323px;
  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: #005f88;
    border-bottom: 1px solid #000;
    border-top: none;
    color: #1e1e1e;
    font-weight: 700;
    margin: 0;
    padding: 15px 35px;
    text-transform: uppercase; }
    .bottom-submenu .back > a:hover {
      background: #005f88;
      border-bottom: 1px solid #000;
      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: #0b0b0b;
  filter: alpha(opacity=80);
  height: 100%;
  left: 0;
  opacity: 0.8;
  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: "Karla", Helvetica, Arial, sans-serif;
  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: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  padding-right: 6px;
  right: -6px;
  text-align: right;
  width: 100%; }

.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-holder .mfp-close {
  top: -40px; }

.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;
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px;
  position: relative;
  width: auto; }

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

.mfp-close.custom-close {
  color: #fff;
  font-size: 14px;
  left: auto;
  line-height: 1;
  opacity: 1;
  padding: 0;
  text-align: center;
  top: -70px;
  width: auto; }
  .mfp-close.custom-close:hover {
    opacity: 0.5; }
  .mfp-close.custom-close svg {
    fill: currentColor;
    height: 40px;
    width: 40px; }
  .mfp-close.custom-close .close-text {
    font-size: 14px; }
  .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.8; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.65; }
  .slick-prev:before,
  .slick-next:before {
    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    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.8; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: inherit;
        font-size: 9px;
        line-height: 20px;
        text-align: center;
        color: #000;
        opacity: 0.65;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: #000;
      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 #e59700;
    -moz-outline: 5px auto #e59700;
    -ms-outline: 5px auto #e59700;
    -o-outline: 5px auto #e59700;
    outline: 5px auto #e59700; }
  .slick-next.custom-arrow,
  .slick-prev.custom-arrow {
    background-color: transparent;
    border: none;
    color: #000;
    height: 44px;
    margin-top: 0;
    padding: 10px;
    transition: 0.3s ease all;
    width: 44px; }
    .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: 24px;
      width: 14px; }
  .slick-next.custom-nav-arrow,
  .slick-prev.custom-nav-arrow {
    background-color: transparent;
    border: none;
    color: #000;
    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: currentColor;
      height: 16px;
      width: 32px; }

.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-bottom: 10px;
      margin-right: 10px; }
    .slick-dots li button {
      background: #adadad;
      border: 0 none;
      border-radius: 50%;
      display: block;
      height: 9px;
      margin: 0;
      opacity: 0.65;
      padding: 0;
      position: relative;
      text-align: center;
      width: 9px; }
      .slick-dots li button::before {
        display: none; }
      .slick-dots li button:hover {
        background: #000;
        opacity: 0.8; }
      .slick-dots li button:focus-visible {
        -webkit-outline: 5px auto #e59700;
        -moz-outline: 5px auto #e59700;
        -ms-outline: 5px auto #e59700;
        -o-outline: 5px auto #e59700;
        outline: 5px auto #e59700; }
    .slick-dots li button {
      display: block;
      transition: background 100ms ease-out; }
    .slick-dots li.slick-active button {
      background: #000;
      opacity: 1; }

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

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

@media only screen and (min-width: 991px) {
  .custom-nav-arrow {
    left: 20px !important; } }

@media only screen and (min-width: 1400px) {
  .custom-nav-arrow {
    left: 10px !important; } }

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

.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: 700;
    letter-spacing: 0;
    padding-bottom: 7px;
    padding-top: 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 #000; }
  .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 {
    display: inline-block;
    margin-bottom: 0;
    width: auto; }
    @media only screen and (max-width: 767px) {
      .table-actions .button {
        margin-bottom: 5px;
        min-width: 100px;
        padding: 0; } }
    @media only screen and (min-width: 480px) {
      .table-actions .button + .button {
        margin-left: 5px; } }

@media only screen and (min-width: 768px) {
  .size-section-container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; } }

.size-section-container:first-child {
  margin-bottom: 30px; }

.size-section-container > p {
  max-width: 820px; }

.size-section-container .chart-content {
  flex: 1; }

.size-table-container {
  overflow-x: scroll;
  text-align: center; }
  .size-table-container table {
    min-width: 750px;
    table-layout: fixed; }
    .size-table-container table td {
      background-color: #c9c9c9;
      font-size: 14px;
      width: 10%; }
    .size-table-container table th {
      font-weight: 400;
      text-align: center;
      width: 50px; }
      @media only screen and (min-width: 768px) {
        .size-table-container table th {
          width: 14%; } }
    .size-table-container table colgroup .size-letter {
      background-color: #595959;
      color: #fff; }
      @media only screen and (max-width: 479px) {
        .size-table-container table colgroup .size-letter {
          width: 49px; } }
    .size-table-container table thead tr {
      background-color: #f5f5f5; }
    .size-table-container table thead th:first-child {
      background-color: #f5f5f5;
      font-weight: 700;
      left: 0;
      position: sticky;
      z-index: 10; }
    .size-table-container table tbody tr {
      border-color: #c9c9c9; }
    .size-table-container table tbody th {
      color: #fff;
      max-width: 100px; }
      .size-table-container table tbody th:first-child {
        background-color: #595959;
        left: 0;
        position: sticky;
        z-index: 10; }

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

.dropdown-menu {
  display: none; }
  .dropdown-menu.is-loading .loadingOverlay {
    background: none;
    padding: 56px 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 {
  display: inline-block; }
  @media only screen and (max-width: 479px) {
    .form-wishlist {
      margin-right: auto; } }

.dropdown-menu-button {
  height: 30px;
  width: 100%; }
  .dropdown-menu-button.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .dropdown-menu-button .icon {
    float: right;
    margin-left: 10px; }

#wishlist-dropdown {
  list-style: none; }
  #wishlist-dropdown.is-open {
    background: transparent;
    left: 0 !important;
    right: auto !important;
    z-index: 2; }
    @media only screen and (max-width: 1199px) {
      #wishlist-dropdown.is-open {
        left: 0 !important; } }
    #wishlist-dropdown.is-open:focus {
      outline: none; }
    #wishlist-dropdown.is-open [data-wishlist] {
      margin-bottom: 0;
      width: 100%; }
    #wishlist-dropdown.is-open .button {
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-width: 2px;
      width: 100%; }
      #wishlist-dropdown.is-open .button:hover {
        border-color: #9f3238; }
    #wishlist-dropdown.is-open .button--has-items {
      font-weight: 700; }
    #wishlist-dropdown.is-open li:not(:last-child) .button {
      border-radius: 0;
      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;
  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;
  position: fixed;
  top: 50% !important;
  transform: translate(-50%, -50%);
  width: 900px;
  z-index: 1005; }
  .modal .form-field {
    position: relative; }

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

.modal--alert {
  background-color: #fff;
  border-radius: 0;
  padding: 40px 20px 20px;
  text-align: center; }
  .modal--alert .button-container {
    margin: 25px 0 0; }
  .modal--alert .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--alert .error-icon {
    animation: animate-icon 0.5s;
    border-color: #f27474;
    color: #f27474; }
    .modal--alert .error-icon .icon-content {
      animation: animate-icon-content 0.5s;
      flex-grow: 1;
      position: relative; }
      .modal--alert .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--alert .error-icon .icon-content .line-left {
          left: 1.0625em;
          transform: rotate(45deg); }
        .modal--alert .error-icon .icon-content .line-right {
          right: 1em;
          transform: rotate(-45deg); }
  .modal--alert .warning-icon {
    animation: animate-icon 0.5s;
    border-color: #facea8;
    color: #f8bb86; }
    .modal--alert .warning-icon .icon-content {
      align-items: center;
      animation: animate-icon-content 0.5s;
      display: flex;
      font-size: 3.75em; }

.modal-header {
  border-bottom: 1px solid #000;
  padding-left: 16px;
  padding-right: 32px; }

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

.modal-close {
  background-color: transparent;
  border: 0 none;
  color: #005f88;
  font-size: 26px;
  height: 32px;
  line-height: 32px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  width: 32px;
  z-index: 10; }
  .modal-close:focus-visible::before {
    border-color: transparent transparent #595959 transparent;
    border-style: solid;
    border-width: 10px;
    content: " ";
    position: absolute;
    right: 15px;
    top: 50%; }
  .modal-close:focus-visible::after {
    background-color: #595959;
    border-radius: 8px;
    color: white;
    content: attr(title);
    cursor: default;
    font-size: 1rem;
    padding: 4px 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-close::before {
    right: 50%;
    transform: translateX(50%); }
  .modal-close::after {
    right: 50%;
    transform: translateX(10px); }

.modal-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px; }

.hide-content {
  opacity: 0; }

.pagination-list {
  /* stylelint-disable-next-line order/order */
  *zoom: 1;
  margin-bottom: 16px;
  position: relative;
  text-align: center; }
  .pagination-list::after {
    clear: both;
    content: '';
    display: table; }
  .pagination-list .pagination-item {
    display: inline-block;
    text-transform: uppercase; }

.pagination-item {
  line-height: 1; }
  @media only screen and (max-width: 767px) {
    .pagination-item {
      font-size: 16px; } }
  .pagination-item .pagination-link {
    color: inherit;
    text-decoration: none; }
  .pagination-item.pagination-item--page {
    margin: 0 4px; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .pagination-item.pagination-item--page {
        margin: 0 8px; } }
    @media only screen and (min-width: 991px) {
      .pagination-item.pagination-item--page {
        margin: 0 25px; } }
    .pagination-item.pagination-item--page a {
      display: block;
      padding: 0 5px; }
  .pagination-item.pagination-item--current {
    border-bottom: 3px solid; }
  .pagination-item.pagination-item--previous, .pagination-item.pagination-item--next {
    position: absolute;
    top: 0; }
    .pagination-item.pagination-item--previous .icon, .pagination-item.pagination-item--next .icon {
      height: 24px;
      position: relative;
      top: 7px;
      width: 24px; }
      .pagination-item.pagination-item--previous .icon > svg, .pagination-item.pagination-item--next .icon > svg {
        height: 24px;
        width: 24px; }
  .pagination-item.pagination-item--previous {
    left: 0; }
  .pagination-item.pagination-item--next {
    right: 0; }

.tabs {
  /* stylelint-disable-next-line order/order */
  *zoom: 1;
  border-bottom: 1px solid #000;
  list-style: none;
  margin: 0; }
  .tabs::after {
    clear: both;
    content: '';
    display: table; }

.tab {
  border: 0 none;
  float: none;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .tab {
      float: left;
      margin-right: 45px; } }
  .tab::after {
    background-color: #d19000;
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0; }
  .tab .tab-title {
    color: inherit;
    display: block;
    padding: 10px;
    text-align: center;
    text-decoration: none; }
    @media only screen and (min-width: 768px) {
      .tab .tab-title {
        padding: 10px 20px; } }
  .tab.is-active, .tab:hover {
    color: #d19000; }
    .tab.is-active::after, .tab:hover::after {
      opacity: 1; }
    .tab.is-active .tab-title, .tab:hover .tab-title {
      color: inherit; }

.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; }
  .accordion-content.is-open {
    display: block; }
  .accordion-content .form:only-child {
    margin-bottom: 0; }

.accordion-title {
  margin: 0; }
  .accordion-title.details-subheader {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize; }

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

.accordion-nav-clear-holder {
  position: relative; }
  .accordion-nav-clear-holder .facetedSearch-clearLink {
    color: #9c9c9c;
    position: absolute;
    right: 17px;
    top: 0; }

@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 {
    margin-top: 25px; } }

.accordion--navList .accordion-heading {
  line-height: calc(22/18);
  margin: 0; }
  @media only screen and (min-width: 768px) {
    .accordion--navList .accordion-heading {
      margin-bottom: 15px; } }

.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;
  right: 90px; }
  .accordion-navigation-actions > a {
    color: #9c9c9c;
    vertical-align: middle; }
    .accordion-navigation-actions > a:hover {
      color: #d19000; }

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

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

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

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

.definitionList {
  /* stylelint-disable-next-line order/order */
  *zoom: 1; }
  .definitionList::after {
    clear: both;
    content: '';
    display: table; }

.definitionList-key {
  color: #9c9c9c;
  float: left;
  font-weight: 400;
  margin: 0 5px 0 0; }

.definitionList-value {
  color: #9c9c9c;
  margin: 0; }

html,
body {
  height: auto; }

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

.actionBar-section .form-label {
  margin-bottom: 0;
  margin-right: 10px;
  text-transform: uppercase; }

.actionBar-section .form-input,
.actionBar-section .form-select {
  width: auto; }

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

.actionBar-section .form-select {
  text-transform: uppercase;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .actionBar-section .form-select {
      width: 222px; } }

@media only screen and (max-width: 767px) {
  .actionBar-section.actionBar--advanced .form-fieldset {
    border: 0 none; }
  .actionBar-section.actionBar--advanced .form-label {
    background-color: #005f88;
    border: 0 none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: "Karla", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 36px;
    letter-spacing: 0;
    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; } }

.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: #00682b;
  stroke-miterlimit: 10; }

.icon--ratingFull svg {
  fill: #00682b;
  stroke: #00682b;
  stroke-miterlimit: 10; }

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

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

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

.videoGallery-main {
  height: 0;
  margin-bottom: 16px;
  overflow: hidden;
  padding-bottom: 67.5%;
  padding-top: 25px;
  position: relative;
  margin-bottom: 21px;
  padding-top: 0; }
  .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: 21px;
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 100ms ease-out; }
  @media only screen and (min-width: 768px) {
    .video {
      margin-bottom: 21px; } }
  .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: 14px;
  margin-bottom: 0; }

.alertBox {
  color: #4f4f4f; }

.alertBox-icon {
  float: left; }
  .alertBox-icon .icon {
    height: 25px;
    width: 25px; }

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

.textTruncate {
  padding-bottom: 16px;
  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 {
  /* stylelint-disable-next-line order/order */
  *zoom: 1; }
  .quickView::after {
    clear: both;
    content: '';
    display: table; }

.banners {
  background-color: #005f88;
  color: #fff; }
  .banners p:last-child {
    margin-bottom: 0; }

.banner p {
  line-height: inherit; }

.banner a {
  color: #fff; }

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

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  margin: 0;
  padding: 16px 0; }
  @media only screen and (min-width: 768px) {
    .breadcrumbs {
      padding: 24px 0 16px; } }

.breadcrumb {
  display: flex;
  float: none; }
  .breadcrumb.is-active > .breadcrumb-label {
    cursor: text; }
  .breadcrumb .icon-wrap {
    display: inline-block;
    margin: 0; }
    .breadcrumb .icon-wrap:last-child {
      padding-right: 8px; }
      @media only screen and (min-width: 768px) {
        .breadcrumb .icon-wrap:last-child {
          padding-right: 10px; } }
  .breadcrumb .icon {
    height: 12px;
    position: relative;
    top: 0;
    width: 7px; }
  .breadcrumb:first-child > .breadcrumb-label {
    padding-left: 0; }
  .breadcrumb > .breadcrumb-label {
    padding-right: 8px; }
    @media only screen and (min-width: 768px) {
      .breadcrumb > .breadcrumb-label {
        padding-right: 10px; } }

.breadcrumb:not(.is-active) .breadcrumb-label {
  text-decoration: underline; }

.breadcrumb,
.breadcrumb-label {
  color: #000;
  text-transform: uppercase; }

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

.sidebarBlock .accordion-title {
  margin-bottom: 15px;
  text-transform: uppercase; }

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

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

.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 #0f7fff !important;
  outline-offset: 1px !important; }

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

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

.card {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .card {
      margin: 0 auto 30px;
      max-width: 287px; } }
  @media only screen and (min-width: 768px) {
    .card {
      margin-bottom: 64px; } }
  .card .price-section {
    display: inline-block; }
    .card .price-section.non-sale-price--withoutTax {
      color: #005f88;
      margin-right: 4px;
      text-decoration: line-through; }
  .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: 50%;
      transform: translate(-50%, -50%);
      z-index: 1; }
      .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 .yotpo-sr-bottom-line-summary {
    justify-content: flex-start !important; }
  .card .card-body {
    padding-right: 8px; }

.card-badge {
  background-color: #005f88;
  display: inline-block;
  font-size: 12px;
  left: 0;
  min-width: 58px;
  padding: 4px;
  position: absolute;
  text-transform: capitalize;
  top: 0;
  width: auto;
  z-index: 1; }
  .card-badge .badge-text {
    align-items: center;
    color: #fff;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%; }
  .card-badge.red {
    background-color: #9f3238; }
  .card-badge.blue {
    background-color: #005f88; }
  .card-badge.green {
    background-color: #00682b; }

.card-figure {
  position: relative;
  margin: 0 0 8px;
  padding-top: 26px;
  position: relative;
  text-align: center; }
  .card-figure::after {
    content: '';
    display: block;
    height: 0;
    padding-bottom: 100%;
    width: 100%; }
  .card-figure img {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0; }
  .card-figure .hover-image {
    background-color: #fff;
    bottom: 0;
    display: none;
    left: 0;
    margin: auto;
    max-width: 345px;
    position: absolute;
    right: 0;
    top: 0; }
    @media only screen and (min-width: 1400px) {
      .card-figure .hover-image .card-image {
        padding: 0 !important; } }
  .card-figure:hover .hover-image {
    display: block; }

.card-img-container {
  padding: 30px 30px 5px; }
  .card-img-container .card-image {
    border: 0;
    display: flex;
    height: auto;
    margin: auto;
    width: auto; }
    @media only screen and (min-width: 1400px) {
      .card-img-container .card-image:hover {
        padding: 30px; } }

.card-square-images .card-figure > a {
  display: block;
  overflow: hidden;
  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: inline-block;
  pointer-events: all; }

.card-title {
  font-family: "Karla", Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 8px; }
  .card-title > a {
    color: inherit;
    text-decoration: none; }
    .card-title > a:hover {
      color: inherit; }

.card-text abbr {
  border: 0;
  color: inherit;
  font-size: inherit; }

.card-action {
  overflow: hidden; }

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

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

.productCarousel {
  margin-left: -11px;
  margin-right: -11px;
  max-height: 1000px; }
  .productCarousel .productCarousel-slide {
    padding-left: 11px;
    padding-right: 11px; }
  .js .productCarousel {
    opacity: 0;
    overflow: hidden;
    transition: all 600ms ease-out; }
  .productCarousel.slick-initialized {
    opacity: 1;
    overflow: initial; }
  .productCarousel .slick-next::before {
    background-color: transparent;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS40NTY3OSAxLjAwNzQ2MTQ3bDIxIDIwLjAyNDgyMTQzTDEuNTA4ODUgNDEuMDA3NDYxNSIgc3Ryb2tlPSIjMkQyRDJEIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+");
    padding: 10px; }
  .productCarousel .slick-next:hover {
    border: 1px solid black;
    color: black; }
  .productCarousel .slick-prev::before {
    background-color: transparent;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjIuNDU3MjA3NCAxLjAwNzQ2MTQ3bC0yMSAyMC4wMjQ4MjE0MyAyMC45NDc5Mzk3IDE5Ljk3NTE3ODYiIHN0cm9rZT0iIzJEMkQyRCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==");
    padding: 10px; }
  .productCarousel .slick-prev:hover {
    border: 1px solid black;
    color: black; }

.productCarousel-slide .card {
  background-color: white;
  margin-bottom: 0;
  padding: 30px 9px; }
  .productCarousel-slide .card .card-title {
    overflow-wrap: break-word; }

.productCarousel-slide .card-swatches {
  margin: 8px 0; }

.productCarousel .card-img-container .card-image {
  height: auto;
  width: auto; }

.productCarousel .card-figure .hover-image {
  max-width: 100%; }

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

.card-swatches {
  display: flex;
  gap: 10px;
  margin: 8px 0; }
  @media only screen and (min-width: 768px) {
    .card-swatches {
      font-size: 0; } }
  .card-swatches .swatch-single {
    -webkit-appearance: none;
    appearance: none;
    aspect-ratio: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    overflow: hidden;
    padding: 0;
    position: relative;
    vertical-align: top; }
    @media only screen and (max-width: 767px) {
      .card-swatches .swatch-single {
        flex: 1;
        max-width: 45px; } }
    .card-swatches .swatch-single.is-active {
      border: 3px solid #000; }
    .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 {
      background-color: #fff;
      border: 1px solid #000;
      color: #000;
      display: grid;
      place-content: center; }
      .card-swatches .swatch-single.swatch-more .swatch-content {
        display: contents; }
      .card-swatches .swatch-single.swatch-more .icon {
        fill: currentColor;
        height: 25px;
        width: 25px; }

.card-rating {
  min-height: 24px; }
  .card-rating .text-m {
    font-size: 14px; }
  .card-rating .bottomLine .pull-left {
    float: none;
    justify-content: center;
    text-align: center; }
  .card-rating a.text-m {
    display: inline-block; }

.sale-price {
  color: #9f3238;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700; }

.price-section.price-section--saving {
  color: #9f3238;
  font-weight: 700; }

.price-section .rrp-label {
  display: none; }

.variant-swatches .card-swatches.flex {
  display: flex;
  gap: 6px;
  position: relative;
  z-index: 3; }

.variant-swatches .card-swatches .more-swatches a {
  color: #000;
  font-size: 14px;
  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: 0;
  cursor: pointer;
  display: flex;
  padding: 0; }
  .variant-swatches .card-swatches .color-swatch-selector.selected .color-swatch {
    border-color: #000; }
  .variant-swatches .card-swatches .color-swatch-selector.half-circle {
    flex-direction: row;
    transform: rotate(90deg); }

.variant-swatches .card-swatches .color-swatch {
  border: 1px solid #b1b3b3;
  display: inline-block; }
  .variant-swatches .card-swatches .color-swatch.twotone-swatch-left {
    border-right: 0; }
  .variant-swatches .card-swatches .color-swatch.twotone-swatch-right {
    border-left: 0; }
  .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; } }

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

.navList-action {
  color: #000; }
  .navList-action .facet-name {
    display: flex; }
    @media only screen and (min-width: 768px) {
      .navList-action .facet-name {
        justify-content: space-between; }
        .navList-action .facet-name > span {
          margin-left: 0; } }
    .navList-action .facet-name > span {
      margin-left: 5px; }

.navList-action,
.navBar-action {
  text-decoration: none; }

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

.navList-item {
  margin-bottom: 8px; }
  .navList-item:last-of-type {
    margin-bottom: 0; }

.navList-action--checkbox:not(.swatch--checkbox) {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  width: 100%; }
  .navList-action--checkbox:not(.swatch--checkbox)::before, .navList-action--checkbox:not(.swatch--checkbox)::after {
    display: block;
    position: absolute;
    top: 50%; }
  .navList-action--checkbox:not(.swatch--checkbox)::before {
    border: 1px solid #1e1e1e;
    border-radius: 100px;
    content: "";
    height: 13px;
    left: 0;
    margin-top: -6.5px;
    width: 13px; }
  .navList-action--checkbox:not(.swatch--checkbox)::after {
    background-color: #000;
    border-radius: 50%;
    color: rgba(79, 79, 79, 0.999);
    content: "";
    font-size: 9px;
    height: 9px;
    left: 2px;
    line-height: 1;
    opacity: 0;
    text-align: center;
    top: 6px;
    width: 9px; }
  .navList-action--checkbox:not(.swatch--checkbox):hover::after {
    background-color: #585858;
    height: 9px;
    left: 2px;
    opacity: 1;
    top: 6px;
    width: 9px; }
  .navList-action--checkbox:not(.swatch--checkbox).is-checked::after, .navList-action--checkbox:not(.swatch--checkbox).is-selected::after {
    opacity: 1; }

.swatch--checkbox {
  display: block; }
  .swatch--checkbox.is-selected {
    border: 1px solid #000; }
    .swatch--checkbox.is-selected .swatch-popout {
      top: calc(-100% + 5px); }
  .swatch--checkbox .facet-swatch {
    margin: 5px; }

.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: #000;
    height: 13px;
    width: 13px; }
  .navList-action.is-selected:hover .navList-action-close {
    opacity: 1;
    visibility: visible; }

.navBar--sub {
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .navBar--sub {
      margin-bottom: 50px; } }
  .navBar--sub .navBar-section {
    float: none;
    list-style: none;
    margin: 0; }
  .navBar--sub .navBar-item {
    float: none;
    margin: 0 10px; }
    @media only screen and (min-width: 768px) {
      .navBar--sub .navBar-item {
        display: inline-block; } }
    .navBar--sub .navBar-item.is-active {
      padding: 10px; }
      .navBar--sub .navBar-item.is-active,
      .navBar--sub .navBar-item.is-active > .navBar-action {
        color: #d19000; }
      .navBar--sub .navBar-item.is-active > .navBar-action {
        padding: 0; }
    @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: 10px; }
    .navBar--sub .navBar-action:hover {
      color: #d19000; }
  .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: 0; }

.navBar--account ul {
  display: flex;
  flex-direction: column; }
  .navBar--account ul li {
    font-size: 20px;
    font-weight: 500;
    padding: 20px 30px; }
    .navBar--account ul li.is-active, .navBar--account ul li.log-out {
      font-weight: 700; }
    .navBar--account ul li a {
      color: #1e1e1e; }

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

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

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

.left-off-canvas-menu,
.right-off-canvas-menu {
  position: fixed;
  top: 116px; }
  .left-off-canvas-menu .close,
  .right-off-canvas-menu .close {
    right: 10px;
    top: 15px; }
    .left-off-canvas-menu .close svg,
    .right-off-canvas-menu .close svg {
      fill: #1e1e1e; }
  .left-off-canvas-menu.side-menus,
  .right-off-canvas-menu.side-menus {
    max-width: 100%;
    width: 584px;
    z-index: 1005; }
    @media only screen and (min-width: 768px) {
      .left-off-canvas-menu.side-menus,
      .right-off-canvas-menu.side-menus {
        top: 0; } }
    .left-off-canvas-menu.side-menus .close,
    .right-off-canvas-menu.side-menus .close {
      top: 2px; }
      .left-off-canvas-menu.side-menus .close svg,
      .right-off-canvas-menu.side-menus .close svg {
        height: 30px;
        width: 30px; }

.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; }
  .left-off-canvas-menu .offcanvas-overlap-right .account-slideout {
    display: block !important;
    position: relative;
    top: 116px; }

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

.left-submenu,
.right-submenu {
  list-style: none;
  position: fixed; }
  .left-submenu .back > a,
  .right-submenu .back > a {
    color: #000;
    font-size: 20px;
    padding: 15px 35px; }
    .left-submenu .back > a:hover,
    .right-submenu .back > a:hover {
      color: #fff; }
  .left-submenu p,
  .right-submenu p {
    color: #000;
    font-family: "Karla", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 24px;
    text-transform: none;
    width: 249px; }

.off-canvas-list {
  font-size: 16px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative; }
  .off-canvas-list li.offcanvas-divider label {
    font-weight: 700; }
  .off-canvas-list li.loadingOverlay {
    top: 35px; }
  .off-canvas-list .shoes-subcat {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 600; }

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

.off-canvas-list-menu li a {
  font-weight: 700;
  position: relative;
  text-decoration: none;
  text-transform: uppercase; }
  .off-canvas-list-menu li a.button {
    border-bottom: 0; }

.off-canvas-list-menu li.back > a::before,
.off-canvas-list-menu li.has-submenu > a:not(.top-level-menu)::after {
  border-color: #404040 transparent transparent;
  border-style: solid;
  border-width: 8px 7.5px 0;
  height: 0;
  margin-right: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 0; }

.off-canvas-list-menu li.back > a {
  color: #fff;
  padding-left: 70px; }
  .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: 35px; }

.off-canvas-list-menu li.has-submenu > a::after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
  -khtml-transform: translate(0, -50%) rotate(0deg);
  -moz-transform: translate(0, -50%) rotate(0deg);
  -ms-transform: translate(0, -50%) rotate(0deg);
  -o-transform: translate(0, -50%) rotate(0deg);
  transform: translate(0, -50%) rotate(0deg);
  content: "" !important;
  right: 35px; }

.off-canvas-list-menu li.has-submenu.is-active > a::after {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -khtml-transform: translate(0, -50%) rotate(180deg);
  -moz-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  -o-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
  content: "" !important;
  right: 35px; }

.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) {
    padding-left: 38px; }
    .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.mobile-rewards-link a {
  color: #005f88;
  display: flex;
  gap: 5px; }
  .off-canvas-list-menu li.mobile-rewards-link a svg {
    fill: currentColor;
    height: 18px;
    vertical-align: middle;
    width: 18px; }

.off-canvas-list-menu li.account-menu-trigger a {
  display: flex;
  font-weight: 300;
  gap: 15px;
  text-transform: none; }
  .off-canvas-list-menu li.account-menu-trigger a svg {
    fill: currentColor;
    height: 26px;
    width: 26px; }

.off-canvas-list-menu .mobileMenu-accordion-navigation {
  position: relative; }
  .off-canvas-list-menu .mobileMenu-accordion-navigation:focus {
    border-bottom: 2px solid #000; }
  .off-canvas-list-menu .mobileMenu-accordion-navigation .accordion-navigation-actions {
    right: 15px;
    top: 0; }
    .off-canvas-list-menu .mobileMenu-accordion-navigation .accordion-navigation-actions .icon {
      fill: currentColor;
      height: 20px;
      padding: 0;
      width: 20px; }
    .off-canvas-list-menu .mobileMenu-accordion-navigation .accordion-navigation-actions .toggleLink-text--off {
      display: inline-block; }
    .off-canvas-list-menu .mobileMenu-accordion-navigation .accordion-navigation-actions .toggleLink-text--on {
      display: none; }

.off-canvas-list-menu .custom-mobile-submenu {
  background-color: #ecf3f5;
  display: none;
  padding: 0; }
  .off-canvas-list-menu .custom-mobile-submenu .has-submenu {
    margin-bottom: 20px; }
    .off-canvas-list-menu .custom-mobile-submenu .has-submenu .custom-mobile-submenu {
      padding-bottom: 0; }
  .off-canvas-list-menu .custom-mobile-submenu .mobileMenu-accordion-navigation {
    padding-bottom: 0;
    padding-top: 0; }
  .off-canvas-list-menu .custom-mobile-submenu .mobileMenu-accordion-title {
    background: none;
    display: block;
    font-size: 15px;
    font-weight: 300;
    padding: 0;
    text-transform: uppercase; }
  .off-canvas-list-menu .custom-mobile-submenu p {
    font-weight: 300;
    margin-top: 5px;
    text-transform: none; }

.off-canvas-list-menu .is-active > .custom-mobile-submenu {
  display: block; }

.offcanvas-search {
  display: block;
  margin: 0;
  padding: 15px 35px;
  position: relative; }
  .offcanvas-search .search-box-show {
    display: inline-block; }
    .offcanvas-search .search-box-show .icon {
      height: 20px;
      vertical-align: middle;
      width: 25px; }
    .offcanvas-search .search-box-show .h4 {
      display: inline;
      font-weight: 300;
      margin-bottom: 0;
      margin-left: 15px;
      text-transform: none;
      vertical-align: middle; }
  .offcanvas-search .form {
    display: none;
    margin: 0;
    position: relative; }
    .offcanvas-search .form .form-field {
      margin: 0; }
      .offcanvas-search .form .form-field .form-input {
        border: 0;
        border-bottom: 1px solid #595959;
        display: block;
        padding-left: 45px;
        width: 75%; }
    .offcanvas-search .form button.go-box {
      background-color: #fff;
      border: 3px solid #000;
      height: 40px;
      padding: 0 3px;
      position: absolute;
      right: 5px;
      text-align: center;
      top: 5px;
      width: 40px; }
      .offcanvas-search .form button.go-box p {
        line-height: 36px;
        margin-bottom: 0;
        text-align: center;
        vertical-align: middle; }

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

.off-canvas-list-cart li.offcanvas-subtotal {
  background-color: #595959;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 15px 35px;
  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-viewCart .button {
    padding: 0 15px; }

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

.off-canvas-list-cart li.offcanvasAction-continueShopping {
  clear: both;
  margin-left: 35px;
  padding-bottom: 35px;
  padding-top: 35px; }
  .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: #d19000; }
      .off-canvas-list-cart li.offcanvasAction-continueShopping a:hover .icon {
        fill: #d19000; }

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

.off-canvas-list-cart li.offcanvasAction-viewCart {
  padding-right: 17.5px;
  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 {
    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 35px; }
  .offcanvasCartItem + .offcanvasCartItem {
    border-top: 1px solid #000; }

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

.offcanvasCartItem-content {
  color: inherit;
  display: block;
  overflow: hidden;
  padding-left: 12px;
  width: auto; }
  .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: #9f3238;
    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 #000; }
  .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 {
    margin: 0 10px;
    width: 132px; }

.account-slideout#account-slideout-mobile .h4 {
  padding: 0 30px;
  text-align: left; }

.account-slideout#account-slideout-mobile .slideout-login-signup .button {
  min-width: auto; }

.account-slideout .rewards-cart-banner {
  margin-bottom: 0; }

.account-slideout .slideout-cart-header h3,
.account-slideout .slideout-account-header h3 {
  line-height: 50px;
  margin-bottom: 0; }

.account-slideout .slideout-login-signup {
  background-color: #ecf3f5;
  margin-bottom: 12px;
  padding: 10px; }
  @media only screen and (min-width: 768px) {
    .account-slideout .slideout-login-signup {
      margin-bottom: 28px; } }
  .account-slideout .slideout-login-signup h3 {
    margin-bottom: 15px; }
  .account-slideout .slideout-login-signup .button {
    margin: 0 auto 10px;
    min-width: auto;
    padding: 0 35px;
    width: fit-content; }
    @media only screen and (min-width: 768px) {
      .account-slideout .slideout-login-signup .button {
        margin: 0 auto 25px; } }
  .account-slideout .slideout-login-signup .rewards-user-name {
    margin-bottom: 0; }
  .account-slideout .slideout-login-signup p,
  .account-slideout .slideout-login-signup a {
    color: #1e1e1e;
    font-weight: 700;
    margin-bottom: 0;
    padding: 0; }
  .account-slideout .slideout-login-signup p {
    align-items: center;
    display: flex;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 14px;
    gap: 10px;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .account-slideout .slideout-login-signup p {
        width: auto; } }
  .account-slideout .slideout-login-signup p a {
    border: 0;
    font-weight: 700;
    text-decoration: underline; }

.account-slideout .slideout-account-links a {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 12px 30px;
  text-transform: none; }
  @media only screen and (min-width: 768px) {
    .account-slideout .slideout-account-links a {
      font-size: 20px; } }
  .account-slideout .slideout-account-links a:hover {
    background-color: transparent;
    text-decoration: underline; }

.exit-off-canvas {
  z-index: 1005;
  background: transparent;
  border: none;
  box-shadow: none; }

.socialLinks {
  list-style: none;
  margin: 0;
  padding: 0; }
  .socialLinks .icon {
    color: #005f88;
    display: block;
    height: 76px !important;
    margin: 0;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    width: 76px !important; }
    .socialLinks .icon:hover {
      color: #000; }
    .socialLinks .icon svg {
      fill: currentColor;
      height: 76px;
      transition: all 0.15s ease;
      width: 76px; }

.socialLinks-item {
  display: inline-block;
  font-size: 0; }
  .socialLinks .socialLinks-item {
    margin-bottom: 5px;
    margin-right: 25px; }
    .socialLinks .socialLinks-item:last-child {
      margin-right: 0; }
  .socialLinks-item .socialLinks__link {
    height: 2rem;
    position: relative; }
    .socialLinks-item .socialLinks__link:focus-visible::before {
      border-color: transparent transparent #595959 transparent;
      border-style: solid;
      border-width: 10px;
      content: " ";
      position: absolute;
      right: 15px;
      top: 50%; }
    .socialLinks-item .socialLinks__link:focus-visible::after {
      background-color: #595959;
      border-radius: 8px;
      color: white;
      content: attr(title);
      cursor: default;
      font-size: 1rem;
      padding: 4px 6px;
      position: absolute;
      right: 0;
      top: 100%;
      white-space: nowrap; }
    .socialLinks-item .socialLinks__link:focus::after {
      left: 0;
      right: auto;
      z-index: zIndex("low"); }

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

.socialLinks--alt svg {
  fill: #9c9c9c; }

.socialLinks--flex {
  display: flex;
  gap: 22px; }
  .socialLinks--flex .socialLinks-item {
    margin: 0; }

.js .heroCarousel {
  margin-bottom: 40px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 600ms ease-out; }
  @media only screen and (min-width: 768px) {
    .js .heroCarousel {
      margin-bottom: 80px; } }

.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 {
  bottom: 23px; }

.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; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom {
      height: 670px; } }
  .heroCarousel-slide--custom .wrapper {
    height: 100%; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom .heroCarousel-content--custom {
      margin: 0 auto;
      max-width: 494px; } }

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

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

.custom-773 {
  width: 77.3%; }

.custom-227 {
  width: 22.7%; }

.productView-details {
  margin-bottom: 40px;
  position: relative;
  z-index: 9; }
  @media only screen and (max-width: 767px) {
    .productView-details {
      padding: 0 22px; } }
  .productView--quickView .productView-details {
    position: relative; }

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

.productView-product .yotpo-sr-bottom-line-text {
  text-decoration: underline !important; }

.productView-title {
  display: inline-block;
  margin-bottom: 0;
  max-width: 464px;
  padding-top: 26px; }

.productView-sku {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 0; }

.productView-brand {
  margin: 0 0 10px; }
  @media only screen and (min-width: 991px) {
    .productView-brand {
      margin: -2px 0 15px; } }

.pdp-promo {
  margin-bottom: 30px; }
  .pdp-promo .promo-sale-banner {
    background-color: #9f3238;
    color: #fff;
    font-size: 18px;
    padding: 14px 18px; }
    @media only screen and (max-width: 767px) {
      .pdp-promo .promo-sale-banner {
        font-size: 12px; } }

.product-header-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
  position: relative; }
  @media only screen and (min-width: 480px) {
    .product-header-container {
      flex-wrap: nowrap; } }
  @media only screen and (max-width: 767px) {
    .product-header-container .card-badge {
      display: none; } }

.productView-price {
  display: flex; }
  .productView-price .price {
    display: inline-block;
    margin-bottom: 0; }
  .productView-price abbr {
    border: 0;
    color: inherit;
    font-size: inherit; }

.price--rrp {
  color: #585858;
  font-size: 16px;
  font-weight: 400; }

.product-subheader-container {
  align-items: center;
  display: flex;
  justify-content: space-between; }
  .product-subheader-container.subheader-saving {
    align-items: flex-start; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .product-subheader-container.subheader-saving {
        align-items: center;
        flex-direction: row;
        justify-content: space-between; } }
    .product-subheader-container.subheader-saving .productView-price {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 15px; }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .product-subheader-container.subheader-saving .productView-price {
          margin-bottom: 0; } }
      @media only screen and (min-width: 991px) {
        .product-subheader-container.subheader-saving .productView-price {
          width: 100%; } }
      .product-subheader-container.subheader-saving .productView-price .price-section {
        margin-right: 10px; }
  .product-subheader-container .productView-price {
    margin: 0 0 20px; }
    @media only screen and (min-width: 480px) {
      .product-subheader-container .productView-price {
        margin: 0; } }
  .product-subheader-container .productView-price {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600; }
  .product-subheader-container .yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-summary {
    padding: 10px 0; }

.productView-header-description {
  line-height: 1.375;
  margin-bottom: 15px; }
  .productView-header-description p {
    font-size: 14px; }

.productView-reviewLink {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0;
  vertical-align: middle; }
  .productView-reviewLink .icon {
    display: inline-block; }
  .productView-reviewLink--new {
    padding: 0; }
  .productView-reviewLink a {
    color: #9c9c9c; }

.productView-info {
  /* stylelint-disable-next-line order/order */
  *zoom: 1;
  margin: 0; }
  .productView-info::after {
    clear: both;
    content: '';
    display: table; }
  .productView-info > :last-child {
    margin-bottom: 20px; }

.productView-info-name,
.productView-info-value {
  float: none; }
  @media only screen and (min-width: 480px) {
    .productView-info-name,
    .productView-info-value {
      float: left; } }

.productView-info-name {
  clear: both;
  font-weight: 700;
  margin-bottom: 2px;
  margin-right: 5px; }

.productView-info-value {
  margin-bottom: 5px;
  margin-left: 0; }

.productView-options {
  /* stylelint-disable-next-line order/order */
  *zoom: 1;
  margin-bottom: 16px; }
  .productView-options::after {
    clear: both;
    content: '';
    display: table; }
  @media only screen and (min-width: 480px) {
    .productView-options .form-input[type="number"] {
      width: 16.6667%; } }
  .productView-options .form {
    vertical-align: bottom; }
    @media only screen and (min-width: 768px) {
      .productView-options .form {
        display: inline-block; } }
    @media only screen and (min-width: 1200px) {
      .productView-options .form {
        width: 502px; } }
    .productView-options .form .add-increment-wrap .increment-button-wrap .icon {
      height: 100%;
      width: 100%; }
  .productView-options .add-increment-wrap {
    display: flex;
    flex-direction: row;
    margin-bottom: 0; }
  .productView-options input[type="file"] {
    font-size: 14px; }
  .productView-options .form-label--inlineSmall {
    font-size: 16px;
    margin-bottom: 4px;
    text-transform: none; }
    @media only screen and (min-width: 768px) {
      .productView-options .form-label--inlineSmall {
        margin-bottom: 12px; } }
  .productView-options [data-option-value] {
    text-transform: uppercase; }
  .productView-options .form-field {
    margin-bottom: 15px; }
    .productView-options .form-field--error > .form-inlineMessage {
      font-size: 1rem; }
    .productView-options .form-field > .form-checkbox + .form-label,
    .productView-options .form-field > .form-radio + .form-label {
      display: inline-block;
      margin-left: 16px;
      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; }
    .productView-options .form-field.form-field--increments {
      margin-right: 6px; }
      .productView-options .form-field.form-field--increments .form-label {
        font-weight: 600; }
      .productView-options .form-field.form-field--increments .increment-button-wrap,
      .productView-options .form-field.form-field--increments .increment-input-wrap {
        height: 54px;
        width: 76px; }
        .productView-options .form-field.form-field--increments .increment-button-wrap .form-input,
        .productView-options .form-field.form-field--increments .increment-button-wrap .form-select,
        .productView-options .form-field.form-field--increments .increment-input-wrap .form-input,
        .productView-options .form-field.form-field--increments .increment-input-wrap .form-select {
          background-position: right 0 top 21px;
          border-radius: 2px;
          font-weight: 700;
          height: 100%;
          padding-left: 22px;
          text-align: left; }
        .productView-options .form-field.form-field--increments .increment-button-wrap .button,
        .productView-options .form-field.form-field--increments .increment-input-wrap .button {
          background-color: #fff;
          border: 1px solid #000;
          color: #000;
          height: 100%; }
          .productView-options .form-field.form-field--increments .increment-button-wrap .button .icon,
          .productView-options .form-field.form-field--increments .increment-input-wrap .button .icon {
            height: 20px; }
    .productView-options .form-field.hidden-field {
      left: -9999px;
      position: absolute;
      visibility: hidden; }
  .productView-options .form-action {
    flex: 1;
    width: 100%; }
    @media only screen and (min-width: 480px) {
      .productView-options .form-action {
        float: left;
        padding: 0 10px 0 0; } }
    @media only screen and (min-width: 768px) {
      .productView-options .form-action {
        float: none;
        padding: 0; } }
    @media only screen and (min-width: 991px) {
      .productView-options .form-action {
        display: inline-block; } }
    .productView-options .form-action .button {
      border-radius: 2px;
      width: 100%; }
  .productView-options .size-chart-link-wrapper {
    float: right; }

.wishlist-form-wrapper {
  margin-top: 8px;
  position: relative; }
  .wishlist-form-wrapper .button {
    border: 1px solid black; }
  .wishlist-form-wrapper .button--wishlist {
    background-color: #fff;
    border: 0;
    color: #000;
    line-height: 30px;
    padding: 0 22px;
    position: relative;
    width: auto !important; }
    .wishlist-form-wrapper .button--wishlist .filled-heart {
      display: none; }
    .wishlist-form-wrapper .button--wishlist.is-open .icon-arrow {
      top: 40%;
      transform: rotate(180deg); }
    .wishlist-form-wrapper .button--wishlist.is-open .filled-heart {
      display: block; }
    .wishlist-form-wrapper .button--wishlist span {
      text-decoration: underline;
      text-transform: none !important; }
    .wishlist-form-wrapper .button--wishlist svg {
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
      .wishlist-form-wrapper .button--wishlist svg.icon-heart {
        height: 14px;
        left: 0;
        top: 50%;
        vertical-align: middle;
        width: 14px; }
      .wishlist-form-wrapper .button--wishlist svg.icon-arrow {
        height: 7px;
        right: 6px;
        width: 12px; }
    .wishlist-form-wrapper .button--wishlist span {
      font-size: 16px; }

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

.productOptions-list-item {
  padding: 16px; }
  .productOptions-list-item + .productOptions-list-item {
    border-top: 1px solid #000; }
  .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: 50px; } }
  .modal .productView {
    padding-bottom: 0;
    padding-top: 0; }

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

.video-container {
  display: block;
  height: 398px;
  margin: auto;
  width: 705px; }

.rating-price-container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  min-height: 60px; }

.card-price-rating {
  width: 100%; }

#product-reviews {
  margin-bottom: 50px; }
  #product-reviews .reviews-header {
    margin-bottom: 30px; }
    #product-reviews .reviews-header h2 {
      margin: 0; }
  @media only screen and (max-width: 479px) {
    #product-reviews .yotpo .bottom-line-items-container-desktop {
      height: auto !important;
      margin: 0 0 20px !important;
      padding: 0 !important; }
      #product-reviews .yotpo .bottom-line-items-container-desktop .bottom-line-items-wrapper {
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        left: unset !important;
        position: unset !important;
        transform: unset !important;
        width: 100% !important; }
      #product-reviews .yotpo .bottom-line-items-container-desktop .avg-score,
      #product-reviews .yotpo .bottom-line-items-container-desktop .yotpo-star-distribution-wrapper,
      #product-reviews .yotpo .bottom-line-items-container-desktop .bottom-line-items,
      #product-reviews .yotpo .bottom-line-items-container-desktop .yotpo-star-distribution-wrapper,
      #product-reviews .yotpo .bottom-line-items-container-desktop .yotpo-filter-stars.rating-stars-container,
      #product-reviews .yotpo .bottom-line-items-container-desktop .reviews-qa-labels-container,
      #product-reviews .yotpo .bottom-line-items-container-desktop .reviews-qa-label {
        display: block !important;
        float: none !important;
        height: auto !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: unset !important;
        width: auto !important; }
      #product-reviews .yotpo .bottom-line-items-container-desktop .bottom-line-items {
        margin-bottom: 20px !important; } }
  #product-reviews .yotpo .main-widget .bottom-line-items {
    text-align: left; }
  #product-reviews .yotpo .yotpo-label-container,
  #product-reviews .yotpo .yotpo-icon-profile,
  #product-reviews .yotpo .filters-container-title,
  #product-reviews .yotpo .free-text-search,
  #product-reviews .yotpo .yotpo-reviews-header,
  #product-reviews .yotpo .footer-actions {
    display: none; }
  #product-reviews .yotpo .yotpo-main {
    margin-left: 0; }
  #product-reviews .yotpo .yotpo-footer {
    margin-left: 0; }
  #product-reviews .yotpo .filters-dropdown {
    text-align: left; }
    #product-reviews .yotpo .filters-dropdown .yotpo-icon::before {
      bottom: 0;
      position: relative; }
  #product-reviews .yotpo .yotpo-reviews.yotpo-active .content-title {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase; }
  #product-reviews .yotpo .yotpo-reviews.yotpo-active .content-review {
    color: #000;
    font-size: 14px;
    font-weight: 400; }
  #product-reviews .yotpo .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-2 .yotpo-star-distribution .yotpo-star-distribution-content .yotpo-distibutions-stars .review-stars .yotpo-icon-star,
  #product-reviews .yotpo .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-2 .yotpo-star-distribution .yotpo-star-distribution-content .yotpo-distibutions-stars .review-stars .yotpo-icon-half-star,
  #product-reviews .yotpo .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-2 .yotpo-star-distribution .yotpo-star-distribution-content .yotpo-distibutions-stars .review-stars .yotpo-icon-empty-star {
    font-size: 20px;
    margin-right: 0 !important; }
  #product-reviews .yotpo .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-2 .yotpo-star-distribution .yotpo-star-distribution-content .yotpo-distibutions-sum-reviews .yotpo-sum-reviews {
    font-size: 16px;
    margin-bottom: 8px; }
  #product-reviews .yotpo .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-2 .yotpo-star-distribution .yotpo-star-distribution-content .yotpo-distributions-graphs {
    padding-top: 2px; }
    #product-reviews .yotpo .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-2 .yotpo-star-distribution .yotpo-star-distribution-content .yotpo-distributions-graphs .yotpo-star-distribution-graph {
      height: 16px; }
  @media only screen and (min-width: 991px) {
    #product-reviews .yotpo .suggested-topics {
      text-align: rigtht !important; } }
  #product-reviews .yotpo .suggested-topics .suggested-topic {
    background-color: #000; }
    #product-reviews .yotpo .suggested-topics .suggested-topic .suggested-topic-text {
      color: #fff; }
  #product-reviews .yotpo .yotpo-hidden-mobile {
    text-align: right !important; }
  #product-reviews .yotpo .yotpo-nav-tab {
    margin-bottom: 0; }
  #product-reviews .yotpo .yotpo-nav-wrapper span {
    color: #000; }
  #product-reviews .yotpo .write-question-review-buttons-container .yotpo-default-button {
    border: 4px solid #000 !important;
    padding: 0 17px !important; }
    @media only screen and (max-width: 479px) {
      #product-reviews .yotpo .write-question-review-buttons-container .yotpo-default-button {
        margin: 0 auto 10px !important;
        width: 100% !important; } }
    #product-reviews .yotpo .write-question-review-buttons-container .yotpo-default-button .yotpo-icon {
      display: none !important; }
    #product-reviews .yotpo .write-question-review-buttons-container .yotpo-default-button .write-question-review-button-text {
      color: #000;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase; }
  #product-reviews .yotpo-review-title {
    text-transform: none; }
  #product-reviews .yotpo-smart-topics-see-more-label {
    font-weight: 400 !important; }

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

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

.productReview {
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  padding-top: 25px; }

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

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

.productReview-name {
  color: #005f88;
  font-size: 20px;
  font-weight: 700; }

.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-container h2 {
  margin-bottom: 30px; }

.productView-description-container .description-container {
  padding: 30px 0; }
  .productView-description-container .description-container .details-subheader {
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase; }
  .productView-description-container .description-container .grid__item {
    vertical-align: top; }
  .productView-description-container .description-container .productView-description {
    max-width: 585px; }
    .productView-description-container .description-container .productView-description ul {
      padding-left: 20px; }
  .productView-description-container .description-container.custom-fields {
    margin-bottom: 20px; }
  .productView-description-container .description-container .product-details-list {
    margin: 0 0 30px; }
    .productView-description-container .description-container .product-details-list li {
      margin-bottom: 10px; }

.productView-description-container .tab-content {
  padding-top: 20px; }
  @media only screen and (min-width: 991px) {
    .productView-description-container .tab-content {
      padding-top: 40px; } }

.tech-logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  width: 100%; }

.product-details-list li:first-child {
  display: none; }

.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: 80px 0 100px; } }

.tour-shark-customizer .tour-shark-checkbox {
  cursor: pointer;
  font-size: 0;
  margin-bottom: 30px; }
  .tour-shark-customizer .tour-shark-checkbox .tour-shark-checkbox-symbol {
    background-color: #000;
    display: inline-block;
    height: 45px;
    margin-right: 5px;
    position: relative;
    vertical-align: middle;
    width: 45px; }
    .tour-shark-customizer .tour-shark-checkbox .tour-shark-checkbox-symbol .icon {
      fill: #fff;
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
      .tour-shark-customizer .tour-shark-checkbox .tour-shark-checkbox-symbol .icon .icon-remove {
        display: none; }
  .tour-shark-customizer .tour-shark-checkbox .tour-shark-checkbox-text {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle; }
    .tour-shark-customizer .tour-shark-checkbox .tour-shark-checkbox-text p {
      font-size: 14px;
      margin: 0;
      padding-left: 5px; }
  .tour-shark-customizer .tour-shark-checkbox .tour-shark-checkbox-image {
    display: inline-block;
    padding-left: 10px;
    vertical-align: middle; }
    @media only screen and (max-width: 767px) {
      .tour-shark-customizer .tour-shark-checkbox .tour-shark-checkbox-image {
        margin-top: 15px; } }
    .tour-shark-customizer .tour-shark-checkbox .tour-shark-checkbox-image .image-wrap img {
      display: block;
      max-height: 52px; }
  .tour-shark-customizer .tour-shark-checkbox.active .tour-shark-checkbox-symbol .logo-remove {
    display: block; }
  .tour-shark-customizer .tour-shark-checkbox.active .tour-shark-checkbox-symbol .logo-add {
    display: none; }

.tour-shark-customizer .tour-shark-content {
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
  display: none;
  margin-bottom: 30px;
  margin-top: 10px;
  padding-top: 15px; }
  .tour-shark-customizer .tour-shark-content .tour-shark-select {
    margin-bottom: 10px; }
    .tour-shark-customizer .tour-shark-content .tour-shark-select .tour-shark-select-patches {
      font-size: 0; }
      .tour-shark-customizer .tour-shark-content .tour-shark-select .tour-shark-select-patches .tour-shark-select-single {
        display: inline-block;
        font-size: 14px;
        max-width: 215px;
        width: 48%; }
        .tour-shark-customizer .tour-shark-content .tour-shark-select .tour-shark-select-patches .tour-shark-select-single:first-of-type {
          margin-right: 4%; }
        .tour-shark-customizer .tour-shark-content .tour-shark-select .tour-shark-select-patches .tour-shark-select-single .tour-shark-image {
          margin-bottom: 10px;
          padding: 5px; }
        .tour-shark-customizer .tour-shark-content .tour-shark-select .tour-shark-select-patches .tour-shark-select-single .tour-shark-text {
          text-align: center; }
        .tour-shark-customizer .tour-shark-content .tour-shark-select .tour-shark-select-patches .tour-shark-select-single.active .tour-shark-text {
          color: #2f7de1; }

[data-content-region="product_below_price"] > div > div {
  margin-bottom: 20px; }
  [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 p {
  color: #9f3238;
  margin: 0; }

.promo-on-pdp svg {
  height: 13px;
  width: 25px; }

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

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

#imageGalleryModal {
  max-width: 1440px; }
  @media only screen and (min-width: 991px) {
    #imageGalleryModal {
      height: 881px;
      padding: 0; } }
  #imageGalleryModal .grid,
  #imageGalleryModal .grid__item {
    height: 100%; }
  #imageGalleryModal .mfp-close {
    color: #555;
    height: 25px;
    right: 0;
    top: 0;
    width: 25px; }
    @media only screen and (min-width: 1200px) {
      #imageGalleryModal .mfp-close {
        right: 30px;
        top: 30px; } }
    #imageGalleryModal .mfp-close svg {
      height: 100%;
      width: 100%; }

.image-gallery-wrapper {
  display: inline-block;
  margin: 0 4px;
  padding-bottom: 0; }
  @media only screen and (min-width: 768px) {
    .image-gallery-wrapper {
      margin: 0;
      padding-top: 35px; } }
  .image-gallery-wrapper .productView-image-container {
    position: relative; }
    .image-gallery-wrapper .productView-image-container .slider-controls {
      left: auto;
      margin-bottom: 16px;
      position: relative;
      transform: none;
      width: 100%; }
    .image-gallery-wrapper .productView-image-container .slick-dots {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 auto !important;
      max-width: calc(100% - (44px * 2));
      top: 8px !important; }
    .image-gallery-wrapper .productView-image-container .custom-arrow {
      padding-top: 0;
      top: 0;
      transform: none; }
    .image-gallery-wrapper .productView-image-container .productView--mobile-badge .card-badge {
      left: 18px;
      position: relative; }
  .image-gallery-wrapper .image-gallery {
    aspect-ratio: 1;
    overflow: hidden; }
    .image-gallery-wrapper .image-gallery.slick-slider {
      margin-bottom: 8px; }
  .image-gallery-wrapper img {
    margin: 0 auto; }

.image-gallery-sidebar {
  display: inline-block;
  height: 100%;
  max-width: 140px;
  padding: 60px 0; }
  .image-gallery-sidebar .imageGalleryNavSlide {
    cursor: pointer;
    float: none;
    margin: 0 auto;
    max-width: 100px;
    padding: 6px 0; }
    .image-gallery-sidebar .imageGalleryNavSlide.slick-current img {
      border: 1px solid #000; }

.more-images {
  height: 99px;
  text-align: center; }
  .more-images .open-popup-link {
    align-items: center;
    color: #000;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase; }
  .more-images svg {
    height: 43px;
    width: 49px; }

@media only screen and (min-width: 1680px) {
  .pdp-carousel .slick-arrow {
    background-color: transparent;
    height: 70px;
    transform: translateY(-50%);
    width: 50px; } }

@media only screen and (min-width: 768px) {
  .pdp-carousel .slick-next {
    right: -20px;
    z-index: 999; } }

@media only screen and (min-width: 768px) {
  .pdp-carousel .slick-prev {
    left: -40px;
    z-index: 999; } }

@media only screen and (min-width: 1680px) {
  .pdp-carousel .slick-prev {
    left: 10px; }
    .pdp-carousel .slick-prev::before {
      position: relative; } }

.pdp-carousel.productView-carousel,
#featured-products-carousel.productView-carousel {
  margin-bottom: 0;
  padding-bottom: 0; }
  .pdp-carousel.productView-carousel .product-wrapper,
  #featured-products-carousel.productView-carousel .product-wrapper {
    padding-bottom: 10px; }

@media only screen and (max-width: 990px) {
  .pdp-carousel .card-swatches .swatch-single,
  #featured-products-carousel .card-swatches .swatch-single {
    height: 40px;
    margin-right: 5px;
    width: 40px; }
    .pdp-carousel .card-swatches .swatch-single .icon,
    #featured-products-carousel .card-swatches .swatch-single .icon {
      height: 20px;
      width: 20px; } }

@media only screen and (min-width: 1680px) {
  .pdp-carousel .productCarousel-slide,
  #featured-products-carousel .productCarousel-slide {
    padding: 0 25px; } }

@media only screen and (max-width: 1680px) {
  .pdp-carousel .mobile-wrapper,
  #featured-products-carousel .mobile-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1484px;
    padding: 0 22px;
    position: relative;
    width: 100%; } }

.pdp-carousel .card-figure,
#featured-products-carousel .card-figure {
  background-color: #fff; }

.pdp-carousel .card,
#featured-products-carousel .card {
  background-color: transparent;
  padding-bottom: 0;
  padding-top: 0; }
  @media only screen and (min-width: 768px) {
    .pdp-carousel .card,
    #featured-products-carousel .card {
      margin-bottom: 0; } }

.pdp-carousel .card-text,
#featured-products-carousel .card-text {
  font-size: 18px;
  margin-bottom: 0; }
  @media only screen and (min-width: 1440px) {
    .pdp-carousel .card-text,
    #featured-products-carousel .card-text {
      font-size: 23px; } }

.pdp-carousel .card-rating,
#featured-products-carousel .card-rating {
  min-height: unset; }

#isp-related-widget-1 {
  display: none; }

.accordion-section {
  border-bottom: 1px solid #b1b3b3;
  border-top: 1px solid #b1b3b3;
  margin-bottom: 15px;
  padding: 15px 0; }

.price-section--saving {
  position: relative;
  right: -10px; }

.saved-percentage {
  color: #9f3238;
  font-weight: 700; }

.rrp-price--withoutTax {
  margin-right: 10px; }
  .rrp-price--withoutTax span:not(.price) {
    display: none; }

@media only screen and (max-width: 767px) {
  .complete-the-look .wrapper {
    padding: 0; } }

.product-details-list.accordion-content {
  margin-bottom: 15px; }

.distinc .accordion-navigation {
  display: block;
  text-align: left;
  width: 100%; }

.distinc .accordion-title {
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 0;
  text-transform: uppercase; }

.custom-login-modal {
  overflow-y: auto; }
  .custom-login-modal .modal-close {
    color: #000; }
  .custom-login-modal .register-benefits {
    padding: 20px 30px 10px; }
    .custom-login-modal .register-benefits .benefits-logo {
      margin-bottom: 30px; }
    .custom-login-modal .register-benefits img {
      margin: 0 auto;
      max-width: 150px; }
  .custom-login-modal .login-row .new-customer,
  .custom-login-modal .login-row .login-wrap {
    padding: 15px 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; }

.compareTable {
  border-top: 1px solid #000;
  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 #000; }
  .compareTable-row + .compareTable-row .compareTable-heading:empty {
    border-top: 0; }

.compareTable-heading {
  font-weight: 400;
  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: 41px;
  position: absolute;
  right: -25px;
  top: -25px;
  transition: background-color 0.15s ease;
  width: 41px; }
  .compareTable-removeProduct .icon {
    fill: #005f88;
    height: 16px;
    margin-top: 7px;
    width: 16px; }

.compareTable-product {
  font-weight: 400;
  padding: 23px 25px 28px; }
  .compareTable-product .card {
    margin-bottom: 0; }
  .compareTable-product .card-body {
    min-height: 64px;
    padding-top: 25px; }

.compareTable-action {
  padding: 0 25px 25px; }
  .compareTable-action .button {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%; }

.toggle {
  border-top: 1px solid #000;
  margin-bottom: 26px; }
  .toggle:last-of-type {
    margin-bottom: 52px; }

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

.toggleLink {
  color: #000;
  text-transform: uppercase; }
  .toggleLink:hover {
    color: #d19000; }
  .toggle-title .toggleLink {
    float: right;
    line-height: 24px; }
  .toggleLink .icon {
    height: 12px;
    width: 12px; }

.toggleLink-text {
  font-weight: 400; }

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

.category-content-top {
  display: flex;
  margin-bottom: 24px; }
  @media only screen and (max-width: 767px) {
    .category-content-top {
      flex-direction: column;
      margin-bottom: 8px; } }
  @media only screen and (min-width: 768px) {
    .category-content-top {
      align-items: center;
      justify-content: space-between; } }
  .category-content-top .listing-count-container p {
    margin-bottom: 0; }

@media only screen and (max-width: 767px) {
  .listing-count-container,
  .page-sidebar nav {
    padding: 0 22px; } }

@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-image-wrapper {
  position: relative;
  max-height: 450px; }
  .category-image-wrapper::after {
    content: '';
    display: block;
    height: 0;
    padding-bottom: 26.78571%;
    width: 100%; }
  .category-image-wrapper img {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0; }
  .category-image-wrapper img {
    max-height: 100%; }

.category-header {
  margin-bottom: 8px; }
  .category-header .category-title {
    margin-bottom: 8px; }
  .category-header .rte p:last-child {
    margin-bottom: 0; }

.int-cat-page {
  margin-top: 30px; }
  .int-cat-page .button-container {
    display: flex;
    justify-content: center;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .int-cat-page .button-container.mobile-margin-bottom {
        margin-bottom: 39px; } }
  .int-cat-page .three-grid {
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      .int-cat-page .three-grid {
        margin-bottom: 0;
        padding: 0; } }
    .int-cat-page .three-grid .item-heading {
      margin: 25px 0; }
      @media only screen and (max-width: 767px) {
        .int-cat-page .three-grid .item-heading {
          margin-bottom: 20px;
          margin-top: 10px; } }
    .int-cat-page .three-grid .image-wrapper {
      position: relative; }
      .int-cat-page .three-grid .image-wrapper::after {
        content: '';
        display: block;
        height: 0;
        padding-bottom: 95.69892%;
        width: 100%; }
      .int-cat-page .three-grid .image-wrapper img {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0; }
  .int-cat-page .featured-products {
    background-color: #ecf3f5;
    margin-bottom: 50px;
    padding-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      .int-cat-page .featured-products {
        margin-bottom: 25px; } }
    .int-cat-page .featured-products .no-margin {
      margin-bottom: 0 !important; }
  .int-cat-page .banner-above-text {
    padding-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      .int-cat-page .banner-above-text {
        padding-bottom: 40px; } }
    .int-cat-page .banner-above-text .image-holder {
      background-position: 70% center;
      height: 358px;
      margin-bottom: 20px; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .banner-above-text .image-holder {
          height: 665px;
          margin-bottom: 30px; } }
    .int-cat-page .banner-above-text.blue {
      background-color: #ecf3f5; }
      @media only screen and (min-width: 768px) {
        .int-cat-page .banner-above-text.blue .image-holder {
          height: 630px; } }
    .int-cat-page .banner-above-text .h1 {
      margin-bottom: 15px; }
      @media only screen and (max-width: 767px) {
        .int-cat-page .banner-above-text .h1 {
          margin-bottom: 20px; } }
    .int-cat-page .banner-above-text p {
      margin: 0 auto;
      margin-bottom: 25px;
      width: 44%; }
      @media only screen and (max-width: 767px) {
        .int-cat-page .banner-above-text p {
          width: 90%; } }
  .int-cat-page .two-grid {
    margin-bottom: 70px; }
    .int-cat-page .two-grid .h2 {
      margin: 20px; }
    .int-cat-page .two-grid .image-wrapper {
      position: relative; }
      .int-cat-page .two-grid .image-wrapper::after {
        content: '';
        display: block;
        height: 0;
        padding-bottom: 93.08324%;
        width: 100%; }
      .int-cat-page .two-grid .image-wrapper img {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0; }
  .int-cat-page .logo-row {
    margin-bottom: 50px; }
    .int-cat-page .logo-row .img-container {
      align-items: center;
      display: flex;
      height: 136px;
      justify-content: center;
      margin-bottom: 20px;
      width: 100%; }

.child-list-container {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  padding-bottom: 20px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .child-list-container {
      border-color: transparent;
      padding-bottom: 0; } }

.block-image-container {
  margin-bottom: 10px;
  max-width: 100px; }
  .block-image-container > div {
    position: relative; }
    .block-image-container > div img {
      height: 100px;
      object-fit: cover;
      width: 100px; }

.category-block-link {
  margin: auto;
  max-width: 100px;
  position: relative; }
  .category-block-link .absolute-link {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100; }
  .category-block-link p {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-weight: 600;
    margin: 0;
    text-align: center; }

@media only screen and (min-width: 768px) {
  .category-layout.filters-hidden .page-sidebar {
    left: -100%;
    max-width: 0;
    opacity: 0;
    padding-left: 0; } }

.category-layout.filters-hidden .page-content {
  min-width: 100%; }
  @media only screen and (min-width: 1400px) {
    .category-layout.filters-hidden .page-content .card-img-container .card-image,
    .category-layout.filters-hidden .page-content .card-figure .hover-image {
      max-height: 100%;
      max-width: 100%;
      width: 100%; } }

.category-layout.filters-hidden .filter-toggle-desktop .hide-filters {
  align-items: center;
  display: flex; }

.category-layout.filters-hidden .filter-toggle-desktop .show-filters {
  display: none; }

.page-sidebar {
  opacity: 1;
  transition: all 0.1s ease-in; }
  .page-sidebar > nav {
    align-items: flex-start;
    display: flex;
    gap: 16px; }
    @media only screen and (min-width: 768px) {
      .page-sidebar > nav {
        position: relative; } }
    .page-sidebar > nav .form-label {
      margin-bottom: 0;
      text-transform: none; }
    .page-sidebar > nav .facetedSearch {
      flex: 1; }
    .page-sidebar > nav .mobile-filter-wrapper {
      flex: 1; }

.page-content {
  min-width: 75%;
  transition: all 0.1s ease-in; }

.filter-wrapper {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
  z-index: 9; }
  @media only screen and (min-width: 768px) {
    .filter-wrapper {
      padding-top: 16px; } }
  .filter-wrapper .filter-toggle-desktop-container {
    margin-right: 40px; }
    .filter-wrapper .filter-toggle-desktop-container .filter-toggle-desktop {
      align-items: center;
      background: none;
      border: 0;
      color: inherit;
      cursor: pointer;
      display: flex;
      text-transform: uppercase; }
    .filter-wrapper .filter-toggle-desktop-container .icon {
      height: 20px;
      margin-left: 8px;
      width: 20px; }
  .filter-wrapper .hide-filters {
    display: none; }
  .filter-wrapper .show-filters {
    align-items: center;
    display: flex; }
  .filter-wrapper .form-field {
    margin-bottom: 0; }

@media only screen and (max-width: 767px) {
  .actionBar {
    width: 100%; } }

@media only screen and (min-width: 768px) {
  .sticky-sidebar {
    height: 0;
    margin-bottom: 0;
    padding-bottom: 16px;
    padding-top: 16px;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 101px; } }

.sticky-content,
.sticky-content .body {
  overflow: visible; }

.productGrid {
  list-style-type: none; }
  @media only screen and (max-width: 767px) {
    .productGrid {
      padding: 0 4px; } }
  .productGrid .grid__item {
    padding-left: 4px; }

.category-promotions {
  padding-top: 24px; }

.promo-banner-carousel {
  background-color: #005f88;
  margin: 0 auto;
  max-width: calc(100% - 12px);
  opacity: 0;
  padding: 8px 0 22px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .promo-banner-carousel {
      padding: 0 44px; } }
  .promo-banner-carousel.carousel-initialized {
    opacity: 1; }
  .promo-banner-carousel .promo-slick--carousel {
    margin: 0 auto;
    max-width: 710px;
    text-align: center; }
  .promo-banner-carousel .slick-dots {
    bottom: -20px; }
  .promo-banner-carousel .promo-banner--controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
    .promo-banner-carousel .promo-banner--controls .autoplay-toggle {
      padding: 10px; }
  .promo-banner-carousel .controls--left {
    left: 0; }
  .promo-banner-carousel .controls--right {
    right: 0; }
  .promo-banner-carousel .slick-dots li button {
    height: 4px;
    width: 4px; }
  .promo-banner-carousel .promo-banner--item * {
    color: #fff; }
  .promo-banner-carousel .promo-banner--item .promo-banner--text,
  .promo-banner-carousel .promo-banner--item .promo-banner--code {
    margin-bottom: 4px;
    text-transform: uppercase; }

.category-promotions {
  margin-top: 16px; }
  @media only screen and (min-width: 768px) {
    .category-promotions {
      margin-top: 24px; } }

@media only screen and (min-width: 768px) {
  #facetedSearch {
    display: grid;
    grid-template-rows: auto 1fr;
    max-height: calc(100dvh - 36px - 80px - 22px); } }

.facetedSearch-toggle {
  border: 1px solid #000;
  border-color: #000;
  border-radius: 0;
  border-width: 2px;
  color: #000;
  display: block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 600;
  height: 45px;
  line-height: 2.75;
  margin-bottom: 0;
  padding: 0 19px 0 15px;
  position: relative;
  text-decoration: none; }
  @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:hover {
    color: inherit; }
  .facetedSearch-toggle .facetedSearch-toggle-text {
    text-transform: uppercase; }
  .facetedSearch-toggle .facetedSearch-toggle-indicator {
    font-size: 0;
    position: absolute;
    right: 10px;
    top: 12px; }
    .facetedSearch-toggle .facetedSearch-toggle-indicator svg {
      height: 16px;
      width: 16px; }

@media only screen and (max-width: 767px) {
  .facetedSearch {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px; }
    .facetedSearch .facetedSearch-refineFilters {
      margin: 8px 0 0;
      order: 2; }
    .facetedSearch .accordion-navigation-actions {
      font-size: 0; }
      .facetedSearch .accordion-navigation-actions .icon {
        height: 12px;
        width: 12px; }
    .facetedSearch .navList {
      margin: 0; } }

.clear-all-link {
  color: #000;
  font-size: 14px;
  text-transform: capitalize; }

.facetedSearch-navList {
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin; }
  @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; }
  @media only screen and (min-width: 991px) {
    .facetedSearch-navList .accordion--navList {
      padding-right: 12px; } }
  .facetedSearch-navList .toggleLink {
    text-decoration: none; }
    .facetedSearch-navList .toggleLink .accordion-indicator.toggleLink-text--on {
      transform: rotate(180deg); }
  @media only screen and (max-width: 767px) {
    .facetedSearch-toggle + .facetedSearch-navList.is-open,
    .sidebarBlock + .facetedSearch-navList.is-open {
      background: white;
      border-color: #000;
      border-left: 1px solid #000;
      border-right: 1px solid #000;
      left: 0;
      margin: -1px auto 0;
      max-width: calc(100% - 44px);
      position: absolute;
      right: 0;
      top: 93px;
      z-index: 10; }
      .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block,
      .sidebarBlock + .facetedSearch-navList.is-open .accordion-block {
        border-bottom: 1px solid #000;
        border-color: #000; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-title,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-title {
          display: flex;
          margin: 0;
          padding: 0 19px 0 15px; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-navigation,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-navigation {
          padding: 12px 0; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-navigation-actions,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-navigation-actions {
          top: 15px; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-content,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-content {
          padding: 10px 15px 20px; }
        .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: 15px; } }
    @media only screen and (max-width: 767px) and (min-width: 768px) {
      .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox:not(.swatch--checkbox),
      .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox:not(.swatch--checkbox) {
        margin-left: 28px; } }
  @media only screen and (max-width: 767px) {
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox:not(.swatch--checkbox)::before,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox:not(.swatch--checkbox)::before {
          margin-top: -6.5px; } }
  .facetedSearch-navList .navList--inner {
    margin-left: 16px; }
  .facetedSearch-navList .show-more-less {
    color: #000;
    display: block;
    padding-top: 10px; }
    .facetedSearch-navList .show-more-less svg {
      margin-left: 5px; }

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

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

.facetedSearch-refineFilters {
  display: block;
  margin-bottom: 24px; }
  @media only screen and (min-width: 768px) {
    .facetedSearch-refineFilters {
      border-bottom: 1px solid #eaeaea; } }

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

.reset-filters {
  display: none; }

.facetedSearch-refineFilters .navList-item {
  display: inline-block;
  margin-bottom: 13px;
  margin-right: 13px; }
  .facetedSearch-refineFilters .navList-item.clear-all-item {
    display: block;
    margin-bottom: 25px; }

.facetLabel {
  background: #ecf3f5;
  border: 1px solid;
  border-radius: 2px;
  color: #000;
  display: block;
  min-width: 86px;
  padding: 7px 30px 7px 10px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase; }
  .facetLabel .icon {
    display: inline-block;
    fill: currentColor;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 16px; }

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

.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: #000; }
  .facet-swatch.facet-swatch--color[data-swatch-color="white"] {
    background-color: #fff;
    border-color: #000; }
  .facet-swatch.facet-swatch--color[data-swatch-color="gray"] {
    background-color: #b0b0b0; }
  .facet-swatch.facet-swatch--color[data-swatch-color="blue"] {
    background-color: #1e65d1; }
  .facet-swatch.facet-swatch--color[data-swatch-color="red"] {
    background-color: #e81c1c; }
  .facet-swatch.facet-swatch--color[data-swatch-color="purple"] {
    background-color: #6612c7; }
  .facet-swatch.facet-swatch--color[data-swatch-color="pink"] {
    background-color: #e8abed; }
  .facet-swatch.facet-swatch--color[data-swatch-color="green"] {
    background-color: #1f750e; }
  .facet-swatch.facet-swatch--color[data-swatch-color="orange"] {
    background-color: #fa9512; }
  .facet-swatch.facet-swatch--color[data-swatch-color="yellow"] {
    background-color: #fce808; }
  .facet-swatch.facet-swatch--color[data-swatch-color="tan"] {
    background-color: #bda871; }
  .facet-swatch.facet-swatch--color[data-swatch-color="brown"] {
    background-color: #473515; }
  .facet-swatch.facet-swatch--color[data-swatch-color="navy"] {
    background-color: #0e2f61; }
  .facet-swatch.facet-swatch--color[data-swatch-color="silver"] {
    background-color: #c2bec2; }
  .facet-swatch.facet-swatch--size {
    border-color: #000;
    font-size: 14px;
    line-height: 19px;
    padding: 10px 10px 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% - 5px);
    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; }

.cart-main .alertBox {
  background-color: #f5f5f5;
  margin-bottom: 16px;
  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 #000;
  display: block; }
  @media only screen and (min-width: 768px) {
    .cart-list {
      display: table-row-group; } }

.cart-item {
  border-bottom: 1px solid #000;
  clear: both;
  display: block;
  padding: 8px 0 16px; }
  @media only screen and (min-width: 480px) {
    .cart-item {
      /* stylelint-disable-next-line order/order */
      *zoom: 1;
      padding-left: 25%;
      padding-top: 16px; }
      .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: 16px;
      padding-top: 16px;
      vertical-align: top; } }
  .cart-item-block .definitionList {
    margin-bottom: 5px; }

.cart-item-figure {
  float: left;
  height: 140px;
  margin-bottom: 16px;
  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-bottom: 20px;
  padding-left: 30px; }
  @media only screen and (min-width: 480px) {
    .cart-item-title {
      display: block;
      height: 175px;
      height: auto;
      margin-bottom: 16px;
      overflow: hidden;
      padding-bottom: 0; } }
  @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: 16px;
      position: absolute; } }
  .cart-item-title .change-remove-wrap a {
    color: #9c9c9c;
    display: inline-block;
    line-height: 0.94;
    text-decoration: underline;
    vertical-align: middle; }
    .cart-item-title .change-remove-wrap a:hover {
      color: #d19000; }
    .cart-item-title .change-remove-wrap a + a {
      border-left: 1px solid #9c9c9c;
      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: 31px; } }

@media only screen and (max-width: 479px) {
  .cart-item-quantity .form-increments-wrap {
    display: inline-block;
    padding-left: 16px; } }

.cart-item-quantity .form-increment {
  display: flex; }
  .cart-item-quantity .form-increment > div.increment-input-wrap {
    width: 60px; }
    @media only screen and (max-width: 767px) {
      .cart-item-quantity .form-increment > div.increment-input-wrap {
        width: 80px; } }
    .cart-item-quantity .form-increment > div.increment-input-wrap .form-input {
      font-size: 16px;
      height: 30px; }
  .cart-item-quantity .form-increment > div.increment-button-wrap {
    width: 30px; }
    .cart-item-quantity .form-increment > div.increment-button-wrap .button {
      height: 30px;
      line-height: 15px; }

.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: 16px;
      text-align: left;
      width: 100%; } }
  @media only screen and (min-width: 768px) {
    .cart-item-label {
      display: none; } }

.cart-item-value {
  padding-left: 16px; }
  @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: 400;
  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: #000; }

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

.cart-totals {
  list-style: none;
  margin-bottom: 16px; }
  @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 {
  /* stylelint-disable-next-line order/order */
  *zoom: 1;
  margin-bottom: 10px; }
  .cart-total::after {
    clear: both;
    content: '';
    display: table; }
  .cart-total .form-inlineMessage {
    text-align: left; }
  .cart-total.cart-grandTotal .cart-total-value {
    font-weight: 700; }

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

.cart-total-label {
  font-weight: 700; }
  @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: #9c9c9c;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  text-decoration: none;
  transition: color 0.15s ease; }
  .cart-action-button:hover {
    color: #d19000; }

.estimator-form {
  margin-bottom: 0;
  padding-top: 34px;
  text-align: right; }
  .estimator-form dl {
    margin-bottom: 16px; }
  .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: 16px; }
  .estimator-form .form-input,
  .estimator-form .form-select {
    margin: 0;
    width: 100%; }

.shipping-quotes ul {
  list-style: none; }

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

.cart-actions {
  /* stylelint-disable-next-line order/order */
  *zoom: 1;
  clear: both; }
  .cart-actions::after {
    clear: both;
    content: '';
    display: table; }
  .cart-actions .button {
    display: block;
    margin-bottom: 0; }
    @media only screen and (min-width: 480px) {
      .cart-actions .button {
        display: inline-block;
        float: right; } }
    @media only screen and (max-width: 479px) {
      .cart-actions .button {
        width: 100%; } }
  .cart-actions.checkout-button .button {
    width: 300px; }
    @media only screen and (max-width: 479px) {
      .cart-actions.checkout-button .button {
        width: 100%; } }
  .cart-actions .checkoutMultiple {
    clear: right;
    display: block;
    float: right;
    padding-top: 5px; }
  .cart-actions.cart-actions-top {
    margin-bottom: 16px; }

.cart-additionalCheckoutButtons, .previewCart-additionalCheckoutButtons {
  /* stylelint-disable-next-line order/order */
  *zoom: 1;
  margin-top: 10px; }
  .cart-additionalCheckoutButtons::after, .previewCart-additionalCheckoutButtons::after {
    clear: both;
    content: '';
    display: table; }
  .cart-additionalCheckoutButtons .FloatRight, .previewCart-additionalCheckoutButtons .FloatRight {
    /* stylelint-disable-next-line order/order */
    *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 {
      float: none !important;
      margin: 7px 0;
      text-align: right; }

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

.shipping-estimate-value #shipping-cost-discounted {
  margin-left: spacing("quarter"); }

.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 {
    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: 16px;
      width: 25%; } }
  .previewCartCheckout .button {
    display: block;
    margin: 0;
    width: 100%; }
    .previewCartCheckout .button + p {
      margin-top: 10px; }
    .previewCartCheckout .button:not(:last-child) {
      margin-bottom: spacing("half"); }

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

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

.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 h4,
  .previewCart .previewCartHeader h3 {
    margin: 0; }
  .previewCart .previewCartList {
    border-collapse: collapse;
    list-style: none;
    margin: 0;
    max-height: calc(100vh - (100px + 200px));
    overflow-y: auto;
    padding: 0;
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .previewCart .previewCartList {
        max-height: calc(90vh - (36px + 64px + 86px)); } }
  .previewCart .previewCartItem {
    padding: 20px; }
    .previewCart .previewCartItem + .previewCartItem {
      border-top: 1px solid #000; }
  .previewCart .previewCartItem-image {
    text-align: center; }
  .previewCart .previewCartItem-name {
    margin: 0;
    text-transform: none; }
    .previewCart .previewCartItem-name > a {
      color: #000;
      text-decoration: none; }
  .previewCart .previewCartItem-brand,
  .previewCart .previewCartItem-name {
    margin-bottom: 2px; }
  .previewCart .previewCartItem-options {
    list-style: none;
    margin: 0; }
    .previewCart .previewCartItem-options li {
      color: #595959; }
  .previewCart .previewCartItem-price {
    color: #000;
    display: block;
    font-weight: 700; }
  .previewCart .previewCartAction {
    border-top: 1px solid #000;
    display: block;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    text-align: left; }
    .previewCart .previewCartAction .button {
      min-width: 150px;
      padding: 0 20px; }
  .previewCart .previewCartAction-checkoutMultiple {
    clear: both;
    padding-left: 5px;
    padding-top: 10px; }
  .previewCart .previewCart-emptyBody {
    padding: 40px;
    text-align: center;
    z-index: 101; }

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

.previewCartItem-content {
  align-items: flex-start;
  display: flex;
  justify-content: space-between; }

.search-suggestion {
  margin-bottom: 23px; }
  .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: -16px; }

.quickSearchResults {
  margin-top: 16px; }
  @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 16px;
  text-transform: inherit; }

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

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

.category-suggestion {
  width: 33.333%; }

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

.quickSearchMessage {
  font-size: 30px;
  margin: 16px 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; } }

.navBar--account .navBar-section {
  display: flex;
  justify-content: space-between; }
  .navBar--account .navBar-section .navBar-item {
    display: block;
    margin: 0; }

.login-wrap {
  border: 1px solid #000; }
  @media only screen and (min-width: 768px) {
    .login-wrap {
      border-right: 0 none; } }
  .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: #f5f5f5; }
  .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; }
  .new-customer .new-customer-button {
    padding-top: 20px; }

.login-wrap,
.new-customer {
  padding: 20px 25px 25px; }
  @media only screen and (min-width: 768px) {
    .login-wrap,
    .new-customer {
      height: 500px;
      padding: 74px 10px 30px; } }
  @media only screen and (min-width: 768px) {
    .login-wrap h2,
    .new-customer h2 {
      margin-bottom: 38px; } }
  .login-wrap .button,
  .new-customer .button {
    min-width: 214px; }

.create-account-main {
  margin: 0 auto;
  max-width: 994px; }

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

.account-heading {
  border-bottom: 1px solid #000;
  margin: 0;
  margin-bottom: 30px;
  padding-bottom: 25px; }

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

.account-listItem {
  border-bottom: 1px solid #000;
  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 {
    margin-bottom: 0; }

.account-listShipping {
  border-bottom: 1px solid #000;
  font-weight: 700;
  padding: 23px 0; }
  .account-listShipping .account-listShipping-title {
    margin: 0;
    text-transform: inherit; }

.account-product-figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 23px 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: 16px;
    margin-top: 5px;
    width: 16px; }
  .account-product-download svg {
    fill: #fff; }

.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: #d19000;
    text-decoration: none; }
  .account-product-title + .definitionList {
    margin-top: 10px; }

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

.account-product-description + .definitionList {
  border-top: 1px solid #000;
  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 {
    color: #9c9c9c;
    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: 16px; } }

.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: 28px; }
    @media only screen and (min-width: 991px) {
      .account-product--alignTop .account-product-checkItem {
        left: -35px; } }
    .account-product--alignTop .account-product-checkItem .form-label {
      height: 16px;
      margin: 0;
      padding: 0;
      width: 16px; }
  .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: -28px; } }
  .account-product--alignTop .account-product-body {
    padding-left: 28px; }
    @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: #595959;
  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: 700; }

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

.account-orderTotal-key {
  font-weight: 700;
  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;
  font-weight: 400;
  margin: 0 0 15px;
  min-width: 186px;
  padding: 13px 10px;
  text-align: center; }
  .account-orderStatus-label.background-secondary {
    background-color: #d19000; }

.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-orderStatus-action:hover {
    color: #d19000; }

.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 #000;
  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 {
    margin-left: 30px; }
    @media only screen and (min-width: 768px) {
      .account-actions .order-details-info .button:last-child {
        margin-left: 50px; } }

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

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

.order-payments-description {
  color: #005f88;
  font-weight: 400;
  margin-top: 16px; }

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

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

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

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

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

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

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

.address {
  border-bottom: 1px solid #000;
  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; } }
    .address .address-actions .button {
      margin-bottom: 6px;
      margin-left: 0; }
      @media only screen and (min-width: 768px) {
        .address .address-actions .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 #000;
  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: 16px 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; }

.wishlist-title {
  font-weight: 400; }

.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 {
    margin-bottom: 28px; }

.forgot-password-form {
  margin: 0 auto;
  max-width: 300px;
  text-align: center; }
  .forgot-password-form .form-label {
    display: block;
    text-align: left; }
  .forgot-password-form .form-input {
    width: 100%; }

#mobile-account-nav {
  margin-bottom: 20px; }

.gift-certificate-form .form-field .form-label.amount {
  display: block; }

.homepage-section {
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .homepage-section {
      margin-bottom: 80px; } }

@media only screen and (min-width: 768px) {
  .section-header {
    margin-bottom: 41px; } }

#featured-products-section {
  padding: 30px 0; }
  @media only screen and (min-width: 768px) {
    #featured-products-section {
      padding: 40px 0; } }
  #featured-products-section .product-wrapper {
    padding: 0 30px 30px; }

.card-rating .yotpo-bottomline {
  left: 50%;
  position: relative;
  transform: translateX(-50%); }

.promo-banner {
  align-items: center;
  background-color: #9f3238;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 14px;
  padding: 14px; }
  .promo-banner .promo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: calc(22/18);
    margin: 0; }
  .promo-banner .button {
    border: 0;
    height: unset;
    line-height: calc(22/16);
    padding: 10px 29px; }

.predict-placement .wair-css .wr_transition-colors {
  border: 0 !important;
  border-width: 0 !important; }
  .predict-placement .wair-css .wr_transition-colors.wr_underline-none {
    text-decoration: underline; }

.predict-placement .wair-launch-btn {
  border-width: 0; }

.predict-placement .wr_underline-none {
  color: #000 !important; }
  .predict-placement .wr_underline-none svg {
    display: none; }

@media only screen and (max-width: 767px) {
  .shark-homepage-section .wrapper {
    padding: 0 13px; } }

.homepage-shark-rewards {
  border: 3px solid #005f88;
  padding: 30px 0; }
  @media only screen and (min-width: 991px) {
    .homepage-shark-rewards {
      padding: 50px 0; } }
  .homepage-shark-rewards .rewards-header {
    margin: 0 auto;
    max-width: 575px; }
    @media only screen and (max-width: 990px) {
      .homepage-shark-rewards .rewards-header {
        padding: 0 25px; } }
    .homepage-shark-rewards .rewards-header .section-header {
      line-height: 1.2;
      margin-bottom: 15px; }
    .homepage-shark-rewards .rewards-header .rewards-subtext {
      margin-bottom: 0; }
  .homepage-shark-rewards .benefits-section {
    margin-bottom: 20px;
    padding: 30px 99.83333px 0; }
    @media only screen and (max-width: 990px) {
      .homepage-shark-rewards .benefits-section {
        margin-bottom: 30px;
        padding: 30px; }
        .homepage-shark-rewards .benefits-section .grid__item:not(:last-child) .benefit-block {
          margin-bottom: 20px; } }
    .homepage-shark-rewards .benefits-section .benefit-block {
      margin: 0 auto;
      max-width: 240px; }
      .homepage-shark-rewards .benefits-section .benefit-block .image-container {
        margin-bottom: 20px; }
      .homepage-shark-rewards .benefits-section .benefit-block .benefits-title {
        margin-bottom: 5px; }
      .homepage-shark-rewards .benefits-section .benefit-block p {
        margin-bottom: 0; }
  .homepage-shark-rewards .ways-to-earn {
    margin-bottom: 40px;
    padding: 15px 0 0 30px; }
    @media only screen and (min-width: 991px) {
      .homepage-shark-rewards .ways-to-earn {
        padding: 40px 121.83333px; } }
    .homepage-shark-rewards .ways-to-earn .earn-grid {
      display: flex; }
      @media only screen and (max-width: 990px) {
        .homepage-shark-rewards .ways-to-earn .earn-grid {
          overflow: scroll; } }
      @media only screen and (min-width: 991px) {
        .homepage-shark-rewards .ways-to-earn .earn-grid {
          display: grid;
          grid-auto-flow: column;
          grid-column-gap: 22px;
          grid-row-gap: 40px;
          grid-template-columns: repeat(3, 1fr);
          grid-template-rows: repeat(2, 1fr); } }
      @media only screen and (min-width: 1400px) {
        .homepage-shark-rewards .ways-to-earn .earn-grid {
          grid-column-gap: 100px; } }
    .homepage-shark-rewards .ways-to-earn .earn-block {
      align-items: center;
      display: flex;
      flex-direction: row;
      width: max-content; }
      @media only screen and (max-width: 990px) {
        .homepage-shark-rewards .ways-to-earn .earn-block {
          margin-right: 20px;
          min-width: fit-content;
          padding-bottom: 15px; } }
      .homepage-shark-rewards .ways-to-earn .earn-block:last-child {
        padding-right: 20px; }
      .homepage-shark-rewards .ways-to-earn .earn-block .earn-image {
        height: 44px;
        margin-right: 20px;
        width: 44px; }
        @media only screen and (max-width: 767px) {
          .homepage-shark-rewards .ways-to-earn .earn-block .earn-image {
            margin-right: 10px; } }
      .homepage-shark-rewards .ways-to-earn .earn-block .earn-title {
        margin-bottom: 2px; }
      .homepage-shark-rewards .ways-to-earn .earn-block p {
        margin-bottom: 0; }
        @media only screen and (max-width: 990px) {
          .homepage-shark-rewards .ways-to-earn .earn-block p {
            font-size: 16px; } }

.offset-bg-section {
  padding: 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .offset-bg-section .offset-bg-section#rewards-intro .bg-holder {
      background-image: none !important; } }
  @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-position: center;
    background-repeat: no-repeat;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .offset-bg-section .bg-holder {
        height: 222px; } }
    @media only screen and (min-width: 768px) {
      .offset-bg-section .bg-holder {
        bottom: 0;
        position: absolute;
        top: 0;
        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;
        padding: 20px 0 30px; } }
    @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 {
      margin-bottom: 30px; }
      @media only screen and (min-width: 768px) {
        .offset-bg-section .content-box p {
          margin-bottom: 50px; } }

@media only screen and (max-width: 767px) {
  #featured-products-section {
    margin-top: 35px; } }

#featured-products-section .section-header {
  font-weight: 800; }

#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 {
    position: absolute;
    z-index: 3; }
  #featured-products-section .productCarousel .slick-prev {
    left: 0; }
  #featured-products-section .productCarousel .slick-next {
    right: 0; }

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

.benefits-icon-carousel {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 30px; }
  .benefits-icon-carousel .icon-wrap {
    color: #fff;
    margin-bottom: 16px; }
    .benefits-icon-carousel .icon-wrap img {
      height: 95px;
      margin: 0 auto;
      width: auto; }
  .benefits-icon-carousel .title-wrap {
    margin: 0 auto;
    max-width: 220px; }
    .benefits-icon-carousel .title-wrap .benefit-title,
    .benefits-icon-carousel .title-wrap .benefit-subtitle {
      margin-bottom: 8px; }

.category-toggle-blocks {
  margin-bottom: 32px; }
  .category-toggle-blocks .section-header {
    margin-bottom: 8px; }
  .category-toggle-blocks .category-toggle {
    margin-bottom: 16px; }
    .category-toggle-blocks .category-toggle .button {
      color: #595959;
      font-weight: 700;
      padding: 10px;
      text-decoration: none; }
      .category-toggle-blocks .category-toggle .button.button--text {
        margin-right: 10px;
        padding: 0; }
      .category-toggle-blocks .category-toggle .button.is-active {
        color: #000; }
        .category-toggle-blocks .category-toggle .button.is-active::after {
          background-color: #000;
          content: "";
          display: block;
          height: 3px;
          margin-top: 10px;
          width: 100%; }
  .category-toggle-blocks .category-toggle-section {
    display: none; }
    @media only screen and (max-width: 767px) {
      .category-toggle-blocks .category-toggle-section .grid {
        margin-left: -6px; } }
    @media only screen and (max-width: 767px) {
      .category-toggle-blocks .category-toggle-section .grid__item {
        padding-left: 6px; } }
    .category-toggle-blocks .category-toggle-section.is-active {
      display: block; }
    .category-toggle-blocks .category-toggle-section .block-image {
      position: relative;
      margin-bottom: 8px; }
      .category-toggle-blocks .category-toggle-section .block-image::after {
        content: '';
        display: block;
        height: 0;
        padding-bottom: 122.09302%;
        width: 100%; }
      .category-toggle-blocks .category-toggle-section .block-image img {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0; }
      .category-toggle-blocks .category-toggle-section .block-image img {
        height: 100%; }
    .category-toggle-blocks .category-toggle-section .block-link {
      text-decoration: none; }
  .category-toggle-blocks .section-link {
    font-size: 20px;
    font-weight: 600; }

.homepage-carousel .slick-slider {
  margin-bottom: 0;
  padding-bottom: 45px; }
  .homepage-carousel .slick-slider .slick-dots {
    bottom: 0; }

.slider-controls {
  align-items: center;
  bottom: 0;
  display: flex;
  left: 50%;
  position: absolute;
  transform: translateX(-50%); }
  .slider-controls .homepage-arrow {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 8px 15px; }
    .slider-controls .homepage-arrow svg {
      fill: currentColor;
      height: 24px;
      width: 14px; }
  .slider-controls .homepage-pagination {
    flex: 1; }
    .slider-controls .homepage-pagination .slick-dots {
      bottom: auto;
      left: auto;
      margin: 0 5px;
      position: relative;
      top: 0;
      transform: none; }

@media only screen and (min-width: 768px) {
  .featured-products-widget {
    padding-top: 32px; } }

.featured-products-widget .slick-dotted.slick-slider {
  margin-bottom: 0; }

.featured-products-widget .slider-controls .homepage-arrow {
  color: #000 !important; }

.featured-products-widget .slick-dots .slick-active button {
  background-color: #000 !important; }

.featured-products-widget .slick-dots button {
  background-color: #d9d9d9; }

@media only screen and (max-width: 767px) {
  #promo-images-section {
    margin-bottom: 0; } }

#promo-images-section .promo-link {
  display: block;
  position: relative;
  text-decoration: none; }
  #promo-images-section .promo-link:hover .overlay {
    opacity: 0.5; }

#promo-images-section .promo-image img {
  display: block;
  width: 100%; }

#promo-images-section .overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s ease all; }

#promo-images-section .promo-content {
  left: 0;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); }

#promo-images-section .promo-heading {
  color: #fff; }
  #promo-images-section .promo-heading:last-child {
    margin-bottom: 0; }

#promo-images-section.use-bg .promo-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 56.25% 0 0;
  position: relative; }
  #promo-images-section.use-bg .promo-background .promo-content {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0; }
    #promo-images-section.use-bg .promo-background .promo-content .promo-heading {
      margin: 0;
      padding: 20px; }
    #promo-images-section.use-bg .promo-background .promo-content .promo-description {
      bottom: 0;
      left: 0;
      padding: 20px;
      position: absolute;
      top: 70px;
      width: 100%; }
      #promo-images-section.use-bg .promo-background .promo-content .promo-description .button {
        margin: 0; }

#content-with-bg-section {
  background-image: url("https://via.placeholder.com/1920x550.jpg");
  background-position: center;
  background-size: cover;
  height: 300px;
  margin-bottom: 0; }
  @media only screen and (min-width: 768px) {
    #content-with-bg-section {
      height: 550px; } }
  #content-with-bg-section > .wrapper {
    height: 100%; }
  @media only screen and (min-width: 768px) {
    #content-with-bg-section .content {
      max-width: 768px; } }

.hero-image-section {
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 15px;
  position: relative;
  width: 100%; }
  @media only screen and (max-width: 990px) {
    .hero-image-section {
      background-image: none !important; } }
  @media only screen and (min-width: 991px) {
    .hero-image-section {
      height: 730px; } }
  .hero-image-section .hero-content-box {
    padding: 15px 0; }
    @media only screen and (min-width: 991px) {
      .hero-image-section .hero-content-box {
        background-color: #fff;
        box-shadow: 0 5px 6px 1px rgba(0, 0, 0, 0.5);
        height: 250px;
        left: 0;
        padding: 36px 39px 39px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        width: 600px; } }
    .hero-image-section .hero-content-box .hero-information {
      text-align: center; }
    .hero-image-section .hero-content-box .unique {
      color: #000;
      font-family: "Montserrat", Helvetica, Arial, sans-serif;
      font-size: 25px;
      font-weight: 700px;
      margin-bottom: 0; }
    .hero-image-section .hero-content-box .performance {
      color: #000;
      font-family: "Montserrat", Helvetica, Arial, sans-serif;
      font-size: 25px;
      font-weight: bold;
      margin-bottom: 50px; }

.background-wrapper {
  background-position: center;
  height: 546px; }
  @media only screen and (min-width: 768px) {
    .background-wrapper {
      height: 650px; } }
  @media only screen and (min-width: 768px) {
    .background-wrapper.desktop-text--white h2,
    .background-wrapper.desktop-text--white p {
      color: white; } }
  @media only screen and (max-width: 767px) {
    .background-wrapper.mobile-text--white h2,
    .background-wrapper.mobile-text--white p {
      color: white; } }
  .background-wrapper .wrapper {
    height: 100%; }
    .background-wrapper .wrapper .text-wrapper {
      align-items: center;
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: flex-end;
      padding: 30px 0;
      text-align: center; }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .background-wrapper .wrapper .text-wrapper {
          justify-content: center;
          width: 70%; } }
      @media only screen and (min-width: 991px) {
        .background-wrapper .wrapper .text-wrapper {
          justify-content: center;
          width: 50%; } }
      .background-wrapper .wrapper .text-wrapper.text--top {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left; }
        .background-wrapper .wrapper .text-wrapper.text--top p {
          max-width: 220px; }
      @media only screen and (min-width: 768px) {
        .background-wrapper .wrapper .text-wrapper.text--right {
          margin-left: auto; } }
      @media only screen and (min-width: 768px) {
        .background-wrapper .wrapper .text-wrapper.text--left {
          margin-right: auto; } }
      @media only screen and (min-width: 768px) {
        .background-wrapper .wrapper .text-wrapper.text--center {
          margin: 0 auto; } }

.hero-image-wrapper {
  margin-bottom: 15px; }
  .hero-image-wrapper .hero-content {
    padding: 30px 0; }
  .hero-image-wrapper .h1 {
    margin-bottom: 10px; }
  .hero-image-wrapper .image-link {
    position: relative;
    display: block; }
    .hero-image-wrapper .image-link::after {
      content: '';
      display: block;
      height: 0;
      padding-bottom: 44.61806%;
      width: 100%; }
    .hero-image-wrapper .image-link img {
      bottom: 0;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      top: 0; }

.apparel-section .apparel-content img {
  width: 100%; }

@media only screen and (min-width: 768px) {
  .apparel-section .apparel-content .information-container {
    background-color: #f5f5f5;
    min-height: 218px; } }

.apparel-section .apparel-content .information {
  padding: 30px 22px; }
  @media only screen and (min-width: 768px) {
    .apparel-section .apparel-content .information {
      margin: 0 auto;
      max-width: 360px;
      padding: 24px 0 36px; } }
  .apparel-section .apparel-content .information .title {
    margin-bottom: 15px; }
  .apparel-section .apparel-content .information .info {
    margin-bottom: 8; }
  .apparel-section .apparel-content .information .button {
    padding: 0;
    text-transform: uppercase; }

.shark-shop-section {
  position: relative; }
  @media only screen and (min-width: 768px) {
    .shark-shop-section {
      margin-bottom: 145px; } }
  @media only screen and (max-width: 990px) {
    .shark-shop-section .shark-content img {
      display: block;
      margin: auto; } }
  .shark-shop-section .shark-content .shark-information {
    padding: 30px 22px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .shark-shop-section .shark-content .shark-information {
        padding: 55px 20px; } }
    .shark-shop-section .shark-content .shark-information .title {
      margin-bottom: 15px; }
    .shark-shop-section .shark-content .shark-information .info {
      line-height: 38px;
      margin-bottom: 30px; }
      @media only screen and (min-width: 768px) {
        .shark-shop-section .shark-content .shark-information .info {
          min-height: 152px; } }

.our-story-section {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .our-story-section {
      height: 600px; } }
  @media only screen and (min-width: 991px) {
    .our-story-section {
      height: 800px; } }
  @media only screen and (max-width: 767px) {
    .our-story-section::before {
      background-color: rgba(255, 255, 255, 0.8);
      bottom: 0;
      content: "";
      left: 0;
      position: absolute;
      right: 0;
      top: 0; } }
  .our-story-section img,
  .our-story-section svg {
    bottom: 0;
    position: absolute; }
    @media only screen and (max-width: 767px) {
      .our-story-section img,
      .our-story-section svg {
        display: none; } }
  @media only screen and (max-width: 767px) {
    .our-story-section .story-information {
      padding: 30px 0; } }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .our-story-section .story-information {
      max-width: 590px;
      padding-top: 140px; } }
  @media only screen and (min-width: 991px) {
    .our-story-section .story-information {
      max-width: 624px;
      padding-top: 293px; } }
  @media only screen and (min-width: 991px) {
    .our-story-section .story-information h2 {
      margin-bottom: 50px; } }

iframe {
  margin-bottom: 0; }

.performance-design {
  padding: 20px 0; }
  @media only screen and (min-width: 768px) {
    .performance-design {
      padding: 30px 0; } }
  .performance-design .design-content {
    text-align: center; }
    .performance-design .design-content h1 {
      font-weight: 600;
      margin-bottom: 15px; }
    .performance-design .design-content p {
      margin-bottom: 30px; }
    .performance-design .design-content .video-button-container {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
    .performance-design .design-content .button {
      margin: 10px;
      max-width: 100%; }
      @media only screen and (min-width: 768px) {
        .performance-design .design-content .button {
          margin: 0 10px; } }

.video-hero-container {
  display: flex;
  flex-direction: column; }
  .video-hero-container .performance-design.place-top {
    order: -1; }
  .video-hero-container .link-overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100; }

.yotpo-reviews-widget {
  padding-bottom: 40px; }
  @media only screen and (max-width: 767px) {
    .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper #carousel-top-panel .headline {
      line-height: 1.5; } }
  .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-title {
    margin-bottom: 5px; }
  .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-body {
    margin-bottom: 5px; }
  .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-carousel .carousel-review-author {
    font-weight: 700; }
  .yotpo-reviews-widget .yotpo-reviews-carousel .carousel-display-wrapper .yotpo-num-of-reviews {
    text-transform: uppercase; }
  .yotpo-reviews-widget .yotpo-reviews-carousel.yotpo-size-4 .headline, .yotpo-reviews-widget .yotpo-reviews-carousel.yotpo-size-3 .headline {
    display: block !important; }
  .yotpo-reviews-widget .yotpo-reviews-carousel.yotpo-size-4 .carousel-display-wrapper .carousel-reviews-bottom-line, .yotpo-reviews-widget .yotpo-reviews-carousel.yotpo-size-3 .carousel-display-wrapper .carousel-reviews-bottom-line {
    float: none; }

.yotpo {
  align-items: center; }
  .yotpo .yotpo-icon-star,
  .yotpo .yotpo-icon-half-star,
  .yotpo .yotpo-icon-empty-star {
    font-size: 20px;
    margin-right: 3.96px !important; }
  .yotpo .text-m {
    color: #595959 !important;
    font-family: "Karla", Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400;
    margin-left: 15x;
    text-decoration: underline !important; }
  .yotpo .yotpo-promoted-product .yotpo-icon {
    font-size: 10px !important; }
  .yotpo .yotpo-clr {
    text-align: center; }
    .yotpo .yotpo-clr:first-child::after {
      color: #595959 o !important;
      content: "No Reviews";
      display: inline-block;
      font-size: 14px;
      margin-top: 3px; }

@media only screen and (max-width: 767px) {
  .card-rating .yotpo-sr-bottom-line-summary {
    flex-wrap: wrap; } }

@media only screen and (max-width: 990px) {
  .card-rating .yotpo-sr-bottom-line-text {
    font-size: 14px !important; }
  .card-rating .star-container svg {
    height: 12px;
    width: 12px; }
  .card-rating .yotpo-sr-bottom-line-summary {
    align-items: center !important;
    justify-content: center;
    padding: 10px 10px 0; }
  .card-rating .yotpo-sr-bottom-line-text,
  .card-rating .yotpo-sr-bottom-line-summary > div {
    height: auto !important;
    line-height: normal !important; } }

@media only screen and (max-width: 767px) {
  .card-rating .yotpo-bottomline {
    flex-direction: column; } }

.card-rating .yotpo-bottomline,
.card-rating .yotpo-bottomline .text-m {
  cursor: default !important;
  text-decoration: none !important; }
  .card-rating .yotpo-bottomline:hover,
  .card-rating .yotpo-bottomline .text-m:hover {
    color: #585858 !important;
    text-decoration: none !important; }

@media only screen and (max-width: 767px) {
  .yotpo-reviews-main-widget .yotpo-header-container .yotpo-layout-header-wrapper .yotpo-bottom-line {
    flex-direction: column !important; }
  .yotpo-reviews-main-widget .yotpo-header-container .yotpo-layout-header-wrapper .yotpo-new-review-btn-wrapper {
    align-self: center !important; } }

.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-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: transparent !important;
  border: 4px solid #000 !important;
  border-radius: 0 !important;
  height: 58px !important;
  padding: 0 10px !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: #000 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 56px !important;
  text-transform: uppercase; }
  .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: #00682b;
    border-color: #00682b;
    color: #000; }

.yotpo-reviews-main-widget .yotpo-base-layout {
  width: 100% !important; }

@media only screen and (max-width: 990px) {
  .yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-text {
    font-size: 14px !important; }
  .yotpo-reviews-star-ratings-widget .star-container svg {
    height: 12px;
    width: 12px; }
  .yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-summary {
    align-items: center !important;
    column-gap: 10px;
    flex-wrap: wrap;
    justify-content: center; }
  .yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-text,
  .yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-summary > div {
    height: auto !important;
    line-height: normal !important; }
  .yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-summary > div {
    margin-right: 0 !important; } }

.yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-text,
.yotpo-reviews-star-ratings-widget .yotpo-sr-bottom-line-summary > div {
  color: #595959 !important;
  font-family: "Karla", Helvetica, Arial, sans-serif !important;
  font-weight: 500 !important; }

.yotpo-reviews-carousel-header {
  text-transform: uppercase !important; }

@media only screen and (max-width: 990px) {
  .yotpo-reviews-widget .yotpo-reviews-carousel-header,
  .yotpo-reviews-widget .yotpo-reviews-carousel-bottomline-container {
    justify-content: center;
    text-align: center; } }

@media (min-width: 1450px) {
  .yotpo-reviews-widget .yotpo-reviews-carousel-bottomline-container {
    padding-left: 24px; } }

.page--holiday-gift-guide {
  margin: 0 auto;
  max-width: 1680px; }
  @media only screen and (min-width: 768px) {
    .page--holiday-gift-guide section:not(#featured-products-section) .h1 {
      font-size: 40px;
      line-height: calc(49 / 40);
      margin: 30px 0 15px; }
    .page--holiday-gift-guide section:not(#featured-products-section) .body-large {
      font-size: 20px;
      line-height: calc(30 / 20);
      margin-bottom: 25px; }
    .page--holiday-gift-guide section:not(#featured-products-section) .buttons-wrap {
      margin-bottom: 55px; } }
  .page--holiday-gift-guide section:not(#featured-products-section) .h1 {
    font-size: 24px;
    line-height: calc(29 / 24);
    margin: 20px 0; }
  .page--holiday-gift-guide section:not(#featured-products-section) .body-large {
    font-size: 16px;
    line-height: calc(19 / 16);
    margin-bottom: 30px; }
  .page--holiday-gift-guide section:not(#featured-products-section) .buttons-wrap {
    margin-bottom: 38px; }
  .page--holiday-gift-guide section:not(#featured-products-section).cyber-week-banner img {
    width: 100%; }
  @media only screen and (min-width: 768px) {
    .page--holiday-gift-guide section:not(#featured-products-section).gift-guides .h1 {
      font-size: 30px; } }
  .page--holiday-gift-guide section:not(#featured-products-section).gift-guides .apparel-content {
    display: flex;
    flex-direction: column;
    padding: 0 17px; }
    @media only screen and (min-width: 991px) {
      .page--holiday-gift-guide section:not(#featured-products-section).gift-guides .apparel-content {
        padding: 0 28px; } }
  .page--holiday-gift-guide section:not(#featured-products-section).category-tiles {
    display: grid;
    gap: 22px;
    grid-template-columns: auto; }
    @media only screen and (min-width: 768px) {
      .page--holiday-gift-guide section:not(#featured-products-section).category-tiles {
        grid-template-columns: auto auto; } }
    @media only screen and (min-width: 1200px) {
      .page--holiday-gift-guide section:not(#featured-products-section).category-tiles {
        grid-template-columns: repeat(4, auto); } }
    .page--holiday-gift-guide section:not(#featured-products-section).category-tiles .tile {
      align-items: center;
      background-color: grey;
      display: flex;
      flex-direction: column;
      padding: 30px 10px; }
      .page--holiday-gift-guide section:not(#featured-products-section).category-tiles .tile .h1 {
        color: #fff;
        font-size: 30px;
        margin: 0 0 25px;
        max-width: 230px;
        text-align: center; }
      .page--holiday-gift-guide section:not(#featured-products-section).category-tiles .tile:nth-child(1) {
        background-color: #096936; }
      .page--holiday-gift-guide section:not(#featured-products-section).category-tiles .tile:nth-child(2) {
        background-color: #92222c; }
      .page--holiday-gift-guide section:not(#featured-products-section).category-tiles .tile:nth-child(3) {
        background-color: #c47e2a; }
      .page--holiday-gift-guide section:not(#featured-products-section).category-tiles .tile:nth-child(4) {
        background-color: #0176a8; }
    .page--holiday-gift-guide section:not(#featured-products-section).category-tiles .button {
      border-color: transparent;
      width: 185px; }

.page--newsletter-signup {
  margin-left: auto;
  margin-right: auto;
  max-width: 1680px; }
  .page--newsletter-signup .css-grid {
    display: grid;
    gap: 22px; }
  .page--newsletter-signup .section {
    margin-bottom: 60px; }
  .page--newsletter-signup [data-bg] {
    background-repeat: no-repeat;
    background-size: cover; }
  .page--newsletter-signup .text-heading,
  .page--newsletter-signup .text-body {
    margin: 0 0 20px; }
  .page--newsletter-signup .body-large {
    font-size: 16px;
    line-height: calc(19/16); }
    @media only screen and (min-width: 768px) {
      .page--newsletter-signup .body-large {
        font-size: 20px;
        line-height: 1.5; } }
  @media only screen and (max-width: 767px) {
    .page--newsletter-signup .section--banner {
      border-bottom: 1px solid #000;
      margin-bottom: 20px; } }
  .page--newsletter-signup .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-signup .section--banner [data-bg] {
        aspect-ratio: 1680 / 665; } }
  .page--newsletter-signup .section--banner .content-wrap {
    align-items: center;
    display: flex;
    flex-direction: column; }
  @media only screen and (max-width: 767px) {
    .page--newsletter-signup .section--banner .text-heading {
      max-width: 300px; } }
  @media only screen and (min-width: 768px) {
    .page--newsletter-signup .section--banner .text-heading {
      margin-bottom: 15px; } }
  .page--newsletter-signup .section--banner .text-body {
    max-width: 733px; }
  .page--newsletter-signup .section--form-grid .css-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr; }
    @media only screen and (min-width: 768px) {
      .page--newsletter-signup .section--form-grid .css-grid {
        grid-template-columns: 1fr 1fr; } }
  .page--newsletter-signup .section--form-grid .grid_item {
    height: 100%; }
  .page--newsletter-signup .section--form-grid [data-bg] {
    height: 100%;
    min-height: 344px; }
  .page--newsletter-signup .section--form-grid .flex-container {
    display: flex;
    justify-content: center; }
  .page--newsletter-signup .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-signup .section--form-grid form.klaviyo-form {
        padding-left: 0 !important;
        width: calc(50vw - 11px) !important; } }
  .page--newsletter-signup .section--benefit-cards {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto; }
    .page--newsletter-signup .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-signup .section--benefit-cards .css-grid {
          grid-template-columns: repeat(4, 1fr);
          max-width: 1030px; } }
    .page--newsletter-signup .section--benefit-cards .benefit-card {
      margin: 0 auto;
      max-width: 220px;
      padding: 0 20px; }
    .page--newsletter-signup .section--benefit-cards img {
      height: 80px;
      margin-bottom: 20px; }
    .page--newsletter-signup .section--benefit-cards .text-body {
      font-weight: 600; }
  .page--newsletter-signup .section--aux-image {
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .page--newsletter-signup .section--aux-image {
        margin-bottom: 50px; } }
    .page--newsletter-signup .section--aux-image [data-bg] {
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        .page--newsletter-signup .section--aux-image [data-bg] {
          background-position: left 27% center;
          background-size: cover;
          height: 344px; } }
      @media only screen and (min-width: 768px) {
        .page--newsletter-signup .section--aux-image [data-bg] {
          aspect-ratio: 1680 / 630;
          width: 100%; } }

.page--sms-signup {
  margin-left: auto;
  margin-right: auto;
  max-width: 1680px; }
  .page--sms-signup .section {
    margin-bottom: 65px; }
  .page--sms-signup .section--form .page-heading {
    margin-bottom: 20px; }
  .page--sms-signup .section--form .wrapper {
    display: flex;
    justify-content: center; }
  .page--sms-signup .section--form .klaviyo-form-RuyLWm {
    max-width: 600px;
    width: 100%; }

.hero-banner {
  display: flex;
  margin-bottom: 8px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .hero-banner {
      margin-bottom: 16px; } }
  .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; }
    .hero-banner--content .hero-banner--title,
    .hero-banner--content .hero-banner--subtitle {
      color: inherit;
      margin-bottom: 22px; }
    .hero-banner--content .hero-banner--subtitle {
      font-size: 20px; }
      @media only screen and (min-width: 768px) {
        .hero-banner--content .hero-banner--subtitle {
          font-size: 24px; } }
  @media only screen and (min-width: 768px) {
    .hero-banner--small {
      height: 300px; } }
  @media only screen and (min-width: 768px) {
    .hero-banner--medium {
      height: 500px; } }
  @media only screen and (min-width: 768px) {
    .hero-banner--large {
      height: 650px; } }

.body {
  min-height: 50vh;
  overflow: hidden; }
  .header.fixed ~ .body {
    margin-top: 116px; }
    @media only screen and (min-width: 991px) {
      .header.fixed ~ .body {
        margin-top: 100px; } }

.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.wide {
    max-width: 1876px; }
  .wrapper.full {
    padding: 0; }
  .wrapper.large-page-width {
    max-width: 2644px; }
  @media only screen and (max-width: 767px) {
    .wrapper.mobile-full {
      padding: 0; } }

.header.fixed {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1004; }

.header .header-main {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 99; }
  .header .header-main .wrapper {
    position: static; }
  .header .header-main .mobile-cart {
    line-height: 77px; }
    .header .header-main .mobile-cart a {
      text-decoration: none; }
    .header .header-main .mobile-cart svg {
      fill: #000; }
    .header .header-main .mobile-cart .icon {
      height: 35px;
      position: relative;
      top: 10px;
      width: 24px; }

.header .page-overlay {
  background-color: rgba(74, 73, 73, 0.9);
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.3s ease all;
  width: 100%;
  z-index: 1; }
  .header .page-overlay.is-active {
    opacity: 1; }

@media only screen and (min-width: 991px) {
  .scrolled .header-main .wrapper {
    position: relative; }
  .scrolled .logo-wrap {
    margin-top: 6px;
    position: absolute; }
  .scrolled .header-logo {
    height: 52px;
    width: 102px; } }

.header-logo {
  font-size: 0;
  margin: 0 auto;
  max-width: 100px; }
  @media only screen and (min-width: 991px) {
    .header-logo {
      margin: 0;
      padding: 0; } }
  .header-logo > a {
    color: #000;
    display: inline-block;
    position: relative;
    text-decoration: none;
    width: 100%;
    z-index: 5; }
    @media only screen and (min-width: 768px) {
      .header-logo > a {
        align-items: center;
        background: none;
        border-bottom: 0;
        display: flex;
        height: 100%;
        justify-content: center;
        padding: 0; } }
    @media only screen and (min-width: 991px) {
      .header-logo > a {
        align-items: flex-end;
        display: flex;
        height: 100%;
        justify-content: center; } }
    .header-logo > a:hover, .header-logo > a:active {
      color: #000; }
  .header-logo .header-logo__link {
    align-items: center;
    display: flex;
    height: 80px;
    padding: 7px 0; }
    @media only screen and (min-width: 991px) {
      .header-logo .header-logo__link {
        height: 64px; } }

.promo-bar {
  background-color: #9f3238;
  color: #fff;
  position: relative;
  z-index: 100; }
  .promo-bar .promo-text {
    line-height: 36px; }

.promo-slick {
  display: grid;
  grid-auto-rows: 36px;
  grid-template-columns: 46px minmax(0, 300px) 46px;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 500px;
  /* stylelint-disable-next-line scss/selector-no-redundant-nesting-selector */ }
  .grid__item:has(.promo-slick) {
    padding: 0; }

.promo-slick--controls,
.promo-banner-controls {
  display: flex; }
  .promo-slick--controls button,
  .promo-banner-controls button {
    color: #fff;
    height: 100%;
    margin: unset;
    padding: 10px 5px;
    position: unset;
    transform: unset; }
    .promo-slick--controls button:hover,
    .promo-banner-controls button:hover {
      color: #fff !important;
      opacity: 0.5; }
    .promo-slick--controls button,
    .promo-slick--controls button .autoplay--contents,
    .promo-banner-controls button,
    .promo-banner-controls button .autoplay--contents {
      align-items: center;
      display: flex; }
    .promo-slick--controls button svg,
    .promo-banner-controls button svg {
      fill: currentColor;
      height: 17px;
      width: 17px; }
  .promo-slick--controls .autoplay-toggle:hover,
  .promo-banner-controls .autoplay-toggle:hover {
    background-color: unset; }
  .promo-slick--controls .slick-prev,
  .promo-slick--controls .slick-next,
  .promo-banner-controls .slick-prev,
  .promo-banner-controls .slick-next {
    transition: opacity 300ms ease-out; }
    .promo-slick--controls .slick-prev::before,
    .promo-slick--controls .slick-next::before,
    .promo-banner-controls .slick-prev::before,
    .promo-banner-controls .slick-next::before {
      content: unset; }
    .promo-slick--controls .slick-prev svg,
    .promo-slick--controls .slick-next svg,
    .promo-banner-controls .slick-prev svg,
    .promo-banner-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: 2lh;
    justify-content: center;
    text-overflow: ellipsis; }
    @media only screen and (min-width: 991px) {
      .promo-slick--carousel .announcement-text {
        height: 1lh; } }
  .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: 64px;
  left: 0;
  overflow: hidden;
  padding: 0 18px;
  position: absolute;
  width: 64px;
  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: #000;
    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: -7px; }
  .mobileMenu-toggle .mobileMenu-toggleIcon::after {
    bottom: -7px; }
  .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: #000;
      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: 64px;
    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; }

.navPages-item {
  color: #000;
  display: inline-block;
  vertical-align: middle; }
  .navPages-item .top-level-link .rewards-icon {
    fill: #005f88;
    height: 22px;
    margin-right: 5px;
    vertical-align: middle;
    width: 20px; }

.navPages-list {
  display: flex;
  font-size: 0;
  justify-content: center;
  margin: 0; }

.navPages-action {
  color: #000;
  display: block;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-decoration: none; }
  @media only screen and (min-width: 1400px) {
    .navPages-action {
      font-size: 18px; } }
  .navPages-action.is-open,
  .has-hover:hover + .navPages-action {
    background-color: #f9f9f9; }
  .navPages-action:hover, .navPages-action.activePage {
    color: #000; }
  .navPages-action svg {
    fill: currentColor;
    transition: all 0.15s ease; }
  .navPages-action.navPage-subMenu-action {
    font-family: "Karla", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal; }

.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,
  .is-active + .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,
  .is-active + .navPage-childList {
    display: block; }

.navPage-subMenu {
  background-color: #f9f9f9;
  display: none;
  min-width: 221px;
  outline: 0;
  position: absolute;
  text-align: left;
  top: 100%; }
  .navPage-subMenu .navPages-action-moreIcon {
    display: none; }
  .navPage-subMenu.is-open,
  .is-active .navPage-subMenu {
    display: block; }

.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 {
  border-left: 1px solid #000;
  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;
  margin-bottom: 12px; }
  .navPage-subMenu-item.sale-red .navPages-action {
    color: #9f3238; }
  .navPage-subMenu-item.close-column {
    margin-bottom: 40px; }
  .navPage-subMenu-item .nav-menu-content a:hover {
    text-decoration: underline; }
  .navPage-subMenu-item .link-header {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize; }
  .navPage-subMenu-item .navPages-action {
    display: inline; }
  .navPage-subMenu-item:last-of-type > .navPage-subMenu-action {
    border-bottom: 0 none; }
  .navPage-subMenu-item.column-heading {
    margin-bottom: 16px; }
    .navPage-subMenu-item.column-heading .navPage-subMenu-action .link-header {
      font-weight: 600; }

.navPage-item--dropdown .navPage-subMenu-item {
  padding: 0; }
  .navPage-item--dropdown .navPage-subMenu-item a {
    color: #d19000;
    line-height: 56px;
    padding: 0 25px; }
    .navPage-item--dropdown .navPage-subMenu-item a:hover {
      background-color: #005f88;
      color: #fff; }

.shoes-subcat .navPages-action {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px; }

.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: 16px;
    padding-right: 16px;
    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; }

.navPage-childList-action {
  font-weight: 400;
  padding: 0 0 5px; }

.menu-icon svg {
  height: 100%;
  width: 30px; }

.navPages-list > .navPages-item.navPage-item--mega {
  position: static; }
  .navPages-list > .navPages-item.navPage-item--mega #navPages-women .menu-column .navPages-item:last-child {
    margin-bottom: 10px; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu {
    height: auto;
    left: 0;
    margin: auto;
    min-height: 455px;
    padding: 25px 0;
    right: 0; }
  .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 {
      font-weight: 700;
      margin-bottom: 10px; }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .navPage-item--heading > a:hover {
        color: #d19000; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard p {
    color: #000;
    font-family: "Karla", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .image-link-wrapper {
    text-decoration: none; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .image-link-wrapper div {
      font-weight: 700; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .image-link-wrapper img {
      margin-bottom: 10px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .image-link-wrapper:hover div {
      text-decoration: underline; }
  .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 {
      font-weight: 700;
      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 #d19000;
        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: #d19000; }
      .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: #f5f5f5;
    border-top: 1px solid #000;
    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 {
      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.navPage-item--mega .menu-inner {
    /* stylelint-disable-next-line order/order */
    *zoom: 1; }
    .navPages-list > .navPages-item.navPage-item--mega .menu-inner::after {
      clear: both;
      content: '';
      display: table; }
    .navPages-list > .navPages-item.navPage-item--mega .menu-inner .menu-items-wrapper {
      display: flex;
      justify-content: space-between; }
      .navPages-list > .navPages-item.navPage-item--mega .menu-inner .menu-items-wrapper .menu-column {
        flex-basis: 20%;
        width: 20%; }
        @media only screen and (min-width: 1200px) {
          .navPages-list > .navPages-item.navPage-item--mega .menu-inner .menu-items-wrapper .menu-column.image-column {
            flex-basis: auto;
            width: auto; }
            .navPages-list > .navPages-item.navPage-item--mega .menu-inner .menu-items-wrapper .menu-column.image-column .image-wrapper {
              height: 230px;
              max-height: 100%;
              width: 344px; } }
      .navPages-list > .navPages-item.navPage-item--mega .menu-inner .menu-items-wrapper.half-columns .menu-column, .navPages-list > .navPages-item.navPage-item--mega .menu-inner .menu-items-wrapper.half-columns .menu-column.image-column {
        flex-basis: 50%;
        width: 50%; }

.navPages-list > .navPages-item .link-button-holder .underline-wrapper {
  border-bottom: 3px solid transparent;
  height: 64px; }

.navPages-list > .navPages-item.is-active .link-button-holder .underline-wrapper {
  border-color: inherit; }

.navPages-list > .navPages-item.is-active .link-button-holder .button-open-submenu svg {
  transform: rotate(0); }

.navPages-list > .navPages-item .link-button-holder {
  align-items: center;
  display: flex;
  height: 64px;
  position: relative; }
  .navPages-list > .navPages-item .link-button-holder .underline-wrapper {
    align-items: center;
    display: flex;
    height: 64px;
    padding: 0 20px; }
  .navPages-list > .navPages-item .link-button-holder .button-open-submenu {
    color: inherit;
    height: 7px;
    position: absolute;
    right: 40px;
    top: 15px;
    z-index: 10; }
    .navPages-list > .navPages-item .link-button-holder .button-open-submenu svg {
      fill: currentColor;
      height: 7px;
      transform: rotate(180deg);
      width: 16px; }

.navPages-list > .navPages-item .top-level-link {
  font-weight: 700;
  padding: 0 25px;
  position: relative;
  text-transform: uppercase;
  width: max-content;
  z-index: 9; }
  .navPages-list > .navPages-item .top-level-link.has-subMenu .underline-wrapper {
    padding: 0 40px 0 20px; }
  .navPages-list > .navPages-item .top-level-link > .link-text-wrap {
    position: relative; }
    .navPages-list > .navPages-item .top-level-link > .link-text-wrap::before {
      border-color: #404040 transparent transparent;
      border-style: solid;
      border-width: 8px 8px 0;
      content: "";
      height: 0;
      position: absolute;
      right: -25px;
      top: 50%;
      transform: translateY(-50%);
      width: 0; }
  .navPages-list > .navPages-item .top-level-link:hover > .link-text-wrap::before,
  .navPages-list > .navPages-item .top-level-link.is-open > .link-text-wrap::before {
    border-color: #404040 transparent transparent; }
  .navPages-list > .navPages-item .top-level-link:hover > .link-text-wrap::after,
  .navPages-list > .navPages-item .top-level-link.is-open > .link-text-wrap::after {
    left: 0;
    opacity: 1;
    right: 0; }
  .navPages-list > .navPages-item .top-level-link.is-open,
  .is-active + .navPages-list > .navPages-item .top-level-link {
    background-color: transparent; }

.navPages-list > .navPages-item.navPages-quickSearch .navPages-action {
  max-width: 162px;
  padding: 0 5px 0 10px; }

.navPages-list > .navPages-item:first-of-type a {
  margin-left: 0; }

.navPages-list > .navPages-item.navPages-item--right {
  margin-left: auto;
  margin-right: 0; }
  .navPages-list > .navPages-item.navPages-item--right > a {
    padding-right: 0; }

.navUser-section {
  list-style: none;
  margin: 0; }

.navUser {
  padding: 0;
  transform: none; }
  .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: 10px; }
      .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: 12px; }

.navUser-action {
  color: #f5f5f5;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    .navUser-action {
      line-height: 36px; } }
  .navUser-action:hover span {
    text-decoration: underline; }
  .navUser-action svg {
    display: inline-block;
    fill: currentColor;
    transition: all 0.15s ease;
    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--currencySelector + .dropdown-menu::before,
.navUser-action--channelSelector + .dropdown-menu::before {
  left: auto !important;
  right: spacing("half"); }

.navUser-action--currencySelector + .dropdown-menu::after,
.navUser-action--channelSelector + .dropdown-menu::after {
  left: auto !important;
  right: spacing("half")2px; }

.navUser-action--storeCredit + .dropdown-menu {
  max-width: 300px;
  padding: 16px; }
  .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 #000;
  color: #9c9c9c;
  display: inline-block;
  padding: 0 20px 0 0;
  text-decoration: none; }

.navUser-item {
  display: inline-block;
  margin-right: 40px; }
  .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; }

.mobile-navUser-item {
  display: inline-block;
  margin-right: 40px; }
  .mobile-navUser-item:last-child {
    margin-right: 0; }
  .mobile-navUser-item.navUser-item--divider {
    font-size: 25px;
    margin-top: 8px;
    padding-left: 2px; }
  .mobile-navUser-item > a {
    display: block;
    position: relative; }
    .mobile-navUser-item > a span {
      color: #000;
      font-weight: 300;
      margin-left: 15px;
      text-transform: none;
      vertical-align: middle; }
    .mobile-navUser-item > a svg {
      fill: #000; }

.navUser-item--account svg {
  fill: #fff; }

.navUser-item--account .icon {
  height: 28px;
  width: 26px; }

.navUser-item--search .icon {
  height: 28px;
  width: 21px; }

.navUser-item--cart a {
  color: #fff; }

.navUser-item--cart .countPill {
  color: #fff;
  display: none;
  margin-left: 0;
  text-align: center; }
  .navUser-item--cart .countPill.countPill--positive {
    display: inline; }

.navUser-item--cart svg {
  fill: #fff; }

.navUser-item--cart .icon {
  fill: #fff;
  height: 25px;
  width: 18px; }

@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 {
  text-transform: none; }
  @media only screen and (min-width: 480px) {
    .navUser-item-cartLabel {
      display: inline; } }

.navUser-item--compare {
  display: none; }
  .navUser-item--compare.show {
    display: block; }

.navUser-item--account .navUser-or + .navUser-action {
  margin-right: -7px; }

.navUser-item--account .navUser-action {
  display: inline-block;
  text-transform: none; }

.navUser-or {
  color: #005f88;
  cursor: default;
  display: inline-block;
  margin: 0 -12px;
  padding: 0 2px;
  position: relative;
  z-index: 1; }

.navUser-action--quickSearch {
  text-transform: none; }
  .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%); }
  .navUser-action--quickSearch:hover {
    color: #f5f5f5; }

.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: "";
    height: 0;
    height: 20px;
    left: 160px;
    position: absolute;
    top: -5px;
    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: 1px 1px 7px rgba(0, 0, 0, 0.25);
    padding: 30px;
    position: relative; }
  .dropdown--quickSearch.is-open {
    display: block;
    left: auto !important;
    max-width: 505px;
    outline: none;
    right: 0 !important;
    top: 100% !important;
    width: 100% !important;
    z-index: 1005; }
  .dropdown--quickSearch .form {
    margin: auto; }
  .dropdown--quickSearch .form,
  .dropdown--quickSearch .form-field {
    margin-bottom: 0; }
  .dropdown--quickSearch .productGrid {
    padding: 16px 0 0; }
    @media only screen and (min-width: 480px) {
      .dropdown--quickSearch .productGrid {
        padding: 40px 0 0; } }

.mobile-cart .countPill {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  height: 16px;
  line-height: 16px;
  text-align: left;
  text-align: center;
  width: 16px; }

.countPill--positive {
  display: inline-block; }

.countPill--alt {
  background-color: #eee;
  color: #666; }

.sale,
.sale .top-level-link {
  color: #9f3238 !important;
  font-weight: 700; }

.navPages-item.shark-rewards,
.navPages-item.shark-rewards a {
  color: #005f88;
  font-weight: 700; }

.logo-wrap {
  display: flex; }

.announcement-banner {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal; }

.courtesy-link {
  color: #f5f5f5;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  vertical-align: middle; }

.menu-category {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: normal; }

.footer {
  transform: translateZ(0); }

.newsletter-row {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  text-align: center;
  width: 100%; }
  .newsletter-row .subscribe-newsletter {
    margin: 0 auto;
    max-width: 588px; }

.footer-top {
  background-color: #fff;
  padding: 20px 0 0; }
  .footer-top .header-logo-image-unknown-size {
    max-width: 100%;
    width: 344px; }

@media only screen and (min-width: 768px) {
  .footer-info-col {
    margin-bottom: 50px; }
    .footer-info-col:last-child {
      margin-bottom: 0; } }

@media only screen and (max-width: 767px) {
  .footer-info-col {
    margin-bottom: 30px; } }

@media only screen and (max-width: 767px) {
  .footer-info-col.footer-info-col--social .socialLinks {
    margin: 0;
    max-width: 295px;
    padding-top: 10px; } }

.footer-info-col.footer-info-col--social .socialLinks .icon {
  height: auto !important;
  width: auto !important; }

.footer-info-col.footer-info-col--social .socialLinks .social-image {
  height: 44px;
  width: 44px; }

.footer-info-col .accordion-navigation {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .footer-info-col .accordion-navigation {
      margin-bottom: 0;
      pointer-events: none; } }
  .footer-info-col .accordion-navigation.is-open svg {
    transform: rotate(180deg); }
  .footer-info-col .accordion-navigation .accordion-navigation-actions {
    right: 10px; }
    @media only screen and (min-width: 768px) {
      .footer-info-col .accordion-navigation .accordion-navigation-actions {
        display: none; } }
    .footer-info-col .accordion-navigation .accordion-navigation-actions svg {
      height: 14px;
      width: 24px; }

.footer-multi-column {
  display: flex; }
  @media only screen and (max-width: 990px) {
    .footer-multi-column {
      flex-direction: column;
      gap: 0; }
      .footer-multi-column .footer-info-list {
        margin-bottom: 0;
        padding-top: 0; } }
  @media only screen and (min-width: 991px) {
    .footer-multi-column {
      gap: 14%; } }

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

.footer-info-heading {
  margin-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .footer-info-heading {
      text-align: left; } }

.footer-info-list {
  list-style: none;
  margin-left: 0; }
  @media only screen and (max-width: 767px) {
    .footer-info-list {
      text-align: left; } }
  .footer-info-list li {
    margin-bottom: 25px; }
  .footer-info-list a {
    color: #000;
    text-decoration: none;
    text-transform: none; }

.footer-info-address-col {
  display: block; }
  @media only screen and (min-width: 768px) {
    .footer-info-address-col {
      margin-bottom: 214px; } }
  .footer-info-address-col .phone-number {
    margin-bottom: 8px; }
  .footer-info-address-col address {
    color: #000;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase; }

@media only screen and (max-width: 767px) {
  .norman-logo {
    margin-bottom: 30px; } }

.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin-left: 0;
  margin-top: 16px; }
  @media only screen and (min-width: 480px) {
    .footer-payment-icons {
      justify-content: normal; } }
  @media only screen and (min-width: 768px) {
    .footer-payment-icons {
      margin-top: 40px; } }
  .footer-payment-icons .footer-payment-icon {
    height: 40px;
    margin: 5px;
    vertical-align: middle;
    width: 50px; }
  .footer-payment-icons svg {
    fill: #005f88; }

.footer-bottom {
  background-color: #f5f5f5; }
  .footer-bottom .border-line {
    padding: 18px 0; }
  .footer-bottom p {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    margin: 0; }
  .footer-bottom p,
  .footer-bottom a {
    color: inherit;
    line-height: inherit; }

@media only screen and (max-width: 767px) {
  .newsletter-form-wrapper .form .button {
    background: transparent;
    border: 4px solid #fff;
    display: block;
    width: 100%; } }

.newsletter-form-wrapper .form .form-inner {
  width: 100%; }

.newsletter-form-wrapper .form .field_group {
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .newsletter-form-wrapper .form .field_group {
      margin-bottom: 50px; } }
  @media only screen and (max-width: 767px) {
    .newsletter-form-wrapper .form .field_group {
      margin-bottom: 22px; } }
  .newsletter-form-wrapper .form .field_group input {
    width: 100%; }

.newsletter-form-wrapper .form .form-input:focus-visible {
  outline: 5px auto #005f88; }

.truevault-polaris-privacy-notice.footer-sub {
  color: #fff;
  float: left; }

.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 h2 {
    color: #fff; }
  .banner-blog h1 {
    margin-bottom: 10px; }
  .banner-blog h2 {
    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: #d19000; }
  .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: #005f88;
  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 {
  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 {
      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 {
      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: #d19000; }

.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 16px; }
  @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 {
  margin: 0 0 2px; }
  @media only screen and (min-width: 768px) {
    .listItem-brand {
      margin-bottom: 0; } }

.listItem-title {
  margin: 0 0 2px; }
  .listItem-title > a {
    text-decoration: none; }

.listItem-price {
  margin-bottom: 25px; }

@media only screen and (min-width: 991px) {
  .listItem-actions {
    vertical-align: middle;
    width: 22%; } }

.listItem-actions .button {
  margin-bottom: 0; }
  @media only screen and (min-width: 991px) {
    .listItem-actions .button {
      width: 100%; }
      .listItem-actions .button + .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 {
  margin-bottom: 0;
  overflow: visible; }

.form-option-expanded {
  background-color: #fff;
  border: 1px solid #000;
  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 {
  position: relative; }
  .single-swatch-option:hover svg,
  .single-swatch-option:focus svg {
    border-color: #000 !important; }
  .single-swatch-option .form-option-swatch svg {
    border: 1px solid #b1b3b3;
    border-radius: 50%;
    padding: 2px; }
  .single-swatch-option .sale-image {
    height: 25px;
    left: 0;
    position: absolute;
    top: 0;
    width: 25px;
    z-index: 9; }

.contact-form {
  background-color: #f5f5f5;
  margin: auto;
  max-width: 960px;
  padding: 26px 20px 40px; }
  @media only screen and (min-width: 768px) {
    .contact-form {
      padding: 80px 70px; } }

.contact-info .contact-info-content {
  padding: 20px 40px; }
  @media only screen and (min-width: 768px) {
    .contact-info .contact-info-content {
      padding: 0 30px; } }

.contact-info .address-wrap {
  margin-bottom: 34px; }
  .contact-info .address-wrap h2 {
    margin-bottom: 15px; }
  .contact-info .address-wrap .phone-number {
    margin-bottom: 8px; }
  .contact-info .address-wrap address {
    line-height: 2.2; }

.truevault-polaris-privacy-notice {
  color: #000;
  margin-bottom: 20px; }

.technology-section .golfer-rain,
.technology-section .polo-tech {
  height: auto;
  width: 100%; }

.technology-section .leading-technology {
  background-color: #ecf3f5;
  padding: 15px 0;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .technology-section .leading-technology {
      padding: 30px 0; } }
  .technology-section .leading-technology h1 {
    margin-bottom: 15px; }
  .technology-section .leading-technology p {
    margin: auto;
    max-width: 733px; }

.technology-section .polo-tech {
  padding: 25px 0; }
  @media only screen and (min-width: 768px) {
    .technology-section .polo-tech {
      padding: 50px 0; } }

.technology-info {
  border-bottom: 1px solid #000;
  padding: 15px 0;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .technology-info {
      padding: 30px 0; } }
  .technology-info:last-child {
    border-bottom: 0; }
  .technology-info h2 {
    margin-bottom: 15px; }
  .technology-info p {
    margin: auto;
    margin-bottom: 30px;
    max-width: 709px; }
  @media only screen and (max-width: 990px) {
    .technology-info .weatherknit img {
      margin-bottom: 50px; } }
  .technology-info .ml75 {
    padding: 0 50px;
    vertical-align: top; }
    @media only screen and (max-width: 767px) {
      .technology-info .ml75 {
        margin-bottom: 25px; } }
    .technology-info .ml75:first-of-type, .technology-info .ml75:last-child {
      padding: 0; }

.performance-design-tech {
  background-color: #ecf3f5;
  padding: 20px 0; }
  @media only screen and (min-width: 768px) {
    .performance-design-tech {
      padding: 30px 0; } }
  .performance-design-tech h4 {
    text-align: center; }
  .performance-design-tech .performance {
    margin: auto;
    text-align: center; }
    @media only screen and (max-width: 990px) {
      .performance-design-tech .performance {
        margin-bottom: 20px; } }
    .performance-design-tech .performance .image-wrapper {
      display: inline-flex;
      margin-bottom: 10px;
      min-height: 70px; }
      @media only screen and (min-width: 991px) {
        .performance-design-tech .performance .image-wrapper {
          margin-bottom: 20px; } }
    .performance-design-tech .performance p {
      font-weight: 700;
      margin: 0 auto;
      max-width: 136px;
      text-align: center; }

.yotpo-widget-hero-section .yotpo-text-on-background:before {
  background: url("https://cdn11.bigcommerce.com/s-ybxns/images/stencil/original/image-manager/shark-rewards-hero-desktop.jpg?t=1750886335") no-repeat center/cover !important; }

@media only screen and (max-width: 767px) {
  .shark-reward .body-large {
    font-size: 18px; } }

.shark-reward img {
  width: 100%; }
  .shark-reward img.yotpo-widget-campaign-widget-custom-icon {
    height: auto;
    width: auto; }
  .shark-reward img.yotpo-custom-step-icon {
    width: auto; }

.shark-reward .page-header {
  background-color: #ecf3f5; }

.shark-reward .text-holder {
  padding: 30px 0;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .shark-reward .text-holder {
      padding: 30px 0 50px; } }
  .shark-reward .text-holder h1 {
    margin-bottom: 15px;
    padding: 0; }
  @media only screen and (min-width: 768px) {
    .shark-reward .text-holder .body-large {
      margin-bottom: 50px; } }

.rewards-intro-section {
  padding: 20px 0; }
  .rewards-intro-section .content-wrap .h2 {
    margin-bottom: 0; }
    .rewards-intro-section .content-wrap .h2.title-points {
      margin-bottom: 15px; }
  .rewards-intro-section .content-wrap :last-child {
    margin-bottom: 0; }
  .rewards-intro-section .buttons-wrap {
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      .rewards-intro-section .buttons-wrap {
        margin-bottom: 30px; } }
  .rewards-intro-section .line-break {
    border-bottom: 1px solid #595959; }

.rewards-page-section {
  padding: 25px 0; }
  @media only screen and (min-width: 768px) {
    .rewards-page-section {
      padding: 50px 0; } }
  @media only screen and (max-width: 990px) {
    .rewards-page-section .how-it-works-item {
      margin-bottom: 20px; } }
  .rewards-page-section .how-it-works-item svg {
    height: 43px;
    margin-bottom: 5px;
    width: 43px; }
  .rewards-page-section .how-it-works-item p {
    margin-bottom: 0; }
  .rewards-page-section .how-it-works-item .h4 {
    margin-bottom: 5px; }

#ways-to-earn {
  background-color: #ecf3f5;
  padding: 25px 0 35px; }
  @media only screen and (min-width: 768px) {
    #ways-to-earn {
      padding: 50px 0; } }
  #ways-to-earn h2 {
    text-align: center; }
  #ways-to-earn .section-header {
    margin-bottom: 0; }
  #ways-to-earn .swell-campaign-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative; }
  #ways-to-earn .campaign {
    padding-top: 30px;
    position: relative;
    text-align: center;
    width: 50%; }
    @media only screen and (min-width: 991px) {
      #ways-to-earn .campaign {
        width: 33.33333%; } }
    #ways-to-earn .campaign:nth-child(n + 7) {
      display: none; }
    #ways-to-earn .campaign p {
      margin-bottom: 0; }
    #ways-to-earn .campaign .h4 {
      margin-bottom: 5px; }
  @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 {
        vertical-align: middle; } }
  @media only screen and (min-width: 480px) {
    #ways-to-earn .campaign-content .icon-wrapper {
      text-align: center; } }
  #ways-to-earn .campaign-content .icon-wrapper .icon {
    height: 45px;
    width: 45px; }
  #ways-to-earn .icon-birthday {
    fill-rule: evenodd; }

.give-five-section {
  padding-top: 25px; }
  @media only screen and (min-width: 768px) {
    .give-five-section {
      padding-top: 50px; } }
  .give-five-section .friend-grid {
    border: 3px solid #000; }
  .give-five-section .refer-friend-info {
    padding: 15px;
    position: relative; }
    @media only screen and (min-width: 991px) {
      .give-five-section .refer-friend-info {
        padding: 0 40px 0 50px; } }
    @media only screen and (min-width: 1400px) {
      .give-five-section .refer-friend-info {
        padding: 0 75px 0 101px; } }
    .give-five-section .refer-friend-info p {
      margin-bottom: 15px; }
    .give-five-section .refer-friend-info .body-large {
      margin-bottom: 30px; }
    .give-five-section .refer-friend-info h2 {
      line-height: 1.225;
      margin-bottom: 15px; }
    @media only screen and (max-width: 990px) {
      .give-five-section .refer-friend-info .button {
        font-size: 14px; } }

.vip-earn-tier {
  padding: 25px 0; }
  @media only screen and (min-width: 768px) {
    .vip-earn-tier {
      padding: 50px 0; } }
  .vip-earn-tier h2 {
    margin-bottom: 14px;
    text-align: center; }
  .vip-earn-tier .vip-tier-amounts {
    margin-bottom: 25px; }
    @media only screen and (min-width: 768px) {
      .vip-earn-tier .vip-tier-amounts {
        margin-bottom: 50px; } }
    .vip-earn-tier .vip-tier-amounts .vip-tier-name {
      margin-bottom: 2px; }
      @media only screen and (max-width: 767px) {
        .vip-earn-tier .vip-tier-amounts .vip-tier-name {
          font-size: 14px; } }
    .vip-earn-tier .vip-tier-amounts hr {
      border: 0 none;
      border-bottom: 2px solid transparent;
      margin: 0 auto 2px;
      max-width: 125px; }
    .vip-earn-tier .vip-tier-amounts .vip-tier--silver hr {
      border-color: #b0b0b0; }
    .vip-earn-tier .vip-tier-amounts .vip-tier--gold hr {
      border-color: #d19000; }
    .vip-earn-tier .vip-tier-amounts .vip-tier--platinum hr {
      border-color: #005f88; }
    .vip-earn-tier .vip-tier-amounts :last-child {
      margin-bottom: 0; }
    .vip-earn-tier .vip-tier-amounts .body-large {
      font-size: 16px; }
  .vip-earn-tier .vip-tier .current-status {
    color: #005f88;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    visibility: hidden; }
    .vip-earn-tier .vip-tier .current-status::after {
      border-color: #005f88 transparent transparent transparent;
      border-style: solid;
      border-width: 17px 17.5px 0;
      content: "";
      height: 0;
      left: 50%;
      position: absolute;
      top: 100%;
      transform: translateX(-50%);
      width: 0; }
  .vip-earn-tier .vip-tier.is-active .current-status {
    visibility: visible; }
  .vip-earn-tier .row-title {
    margin-bottom: 10px; }
  .vip-earn-tier .vip-tier-section {
    margin-bottom: 15px; }
    @media only screen and (min-width: 768px) {
      .vip-earn-tier .vip-tier-section {
        margin-bottom: 30px; } }
    .vip-earn-tier .vip-tier-section:last-child {
      margin-bottom: 0; }
  .vip-earn-tier .vip-tier-row {
    background-color: #ecf3f5;
    padding: 10px 0;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .vip-earn-tier .vip-tier-row {
        padding: 5px 10px; }
        .vip-earn-tier .vip-tier-row p {
          font-size: 14px; }
        .vip-earn-tier .vip-tier-row .grid__item {
          padding-left: 12px; } }
    .vip-earn-tier .vip-tier-row p {
      margin-bottom: 0; }
    .vip-earn-tier .vip-tier-row .h4 {
      margin-bottom: 5px; }
    .vip-earn-tier .vip-tier-row .icon {
      height: 22px;
      width: 22px; }

.discount-section .redeem-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 22px;
  padding: 20px 22px; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .discount-section .redeem-section {
      height: 300px; } }
  @media only screen and (min-width: 991px) {
    .discount-section .redeem-section {
      height: 435px;
      margin-bottom: 0;
      padding: 0; } }
  .discount-section .redeem-section .discount-content {
    margin: 0 auto;
    max-width: 546px; }
    .discount-section .redeem-section .discount-content h2 {
      color: #fff; }
      @media only screen and (min-width: 991px) {
        .discount-section .redeem-section .discount-content h2 {
          margin-bottom: 30px; } }
    .discount-section .redeem-section .discount-content .body-large {
      color: #fff; }
      @media only screen and (min-width: 991px) {
        .discount-section .redeem-section .discount-content .body-large {
          margin-bottom: 30px; } }
    .discount-section .redeem-section .discount-content h4 {
      color: #fff; }
      @media only screen and (min-width: 991px) {
        .discount-section .redeem-section .discount-content h4 {
          margin-bottom: 0; } }
  .discount-section .redeem-section .contents-info {
    margin: 0 auto;
    max-width: 750px;
    text-align: center; }
    .discount-section .redeem-section .contents-info .redemption-grid .swell-redemption-option-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      list-style: none;
      margin-bottom: 10px; }
      @media only screen and (min-width: 991px) {
        .discount-section .redeem-section .contents-info .redemption-grid .swell-redemption-option-list {
          margin-bottom: 50px; } }
    .discount-section .redeem-section .contents-info .redemption-grid .swell-static-redemption-option p {
      color: #fff;
      padding: 0 15px; }
    .discount-section .redeem-section .contents-info .redemption-grid .swell-static-redemption-option .swell-static-redemption-option-title {
      color: #fff;
      margin-bottom: 0; }
      @media only screen and (min-width: 991px) {
        .discount-section .redeem-section .contents-info .redemption-grid .swell-static-redemption-option .swell-static-redemption-option-title {
          border-left: 1px solid #fff;
          margin-bottom: 20px; } }
    .discount-section .redeem-section .contents-info .redemption-grid .swell-static-redemption-option:first-child .swell-static-redemption-option-title {
      border-left: 0; }

/*******************
Refer Page
******************/
@media only screen and (max-width: 767px) {
  #referral-main .body-medium,
  #referral-main .body-large {
    font-size: 18px; } }

#referral-main img {
  width: 100%; }

#referral-main .refer-box {
  border: 3px solid #000;
  margin: 30px 0;
  padding: 25px 5px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    #referral-main .refer-box {
      margin: 50px 0;
      padding: 50px 0; } }

#referral-main .referrals {
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    #referral-main .referrals {
      margin: 0 auto 100px;
      max-width: 710px; } }
  #referral-main .referrals .content-holder {
    position: relative;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      #referral-main .referrals .content-holder {
        margin: 0 auto;
        max-width: 430px; } }
    #referral-main .referrals .content-holder .redeem-description {
      margin-bottom: 27px; }
    #referral-main .referrals .content-holder .check-balance {
      color: #000; }
    #referral-main .referrals .content-holder .how-to-header {
      text-transform: capitalize; }
    #referral-main .referrals .content-holder .small-margin-bottom {
      margin: 35px 0 22px; }
      @media only screen and (max-width: 767px) {
        #referral-main .referrals .content-holder .small-margin-bottom {
          margin: 15px 0; } }
  #referral-main .referrals .table-wrapper {
    margin: 0 auto 20px;
    max-width: 465px;
    overflow-y: auto; }
  #referral-main .referrals .table {
    border-collapse: collapse;
    margin: 0;
    width: 100%; }
  #referral-main .referrals #custom-referrals-container th,
  #referral-main .referrals #custom-referrals-container td {
    border-bottom: 1px solid #000;
    font-weight: 300;
    padding: 15px 30px 15px 0;
    text-align: left; }

.referral-content h4 {
  margin-bottom: 30px; }

.referral-content .small-line {
  border: 0 none;
  border-bottom: 1px solid #595959;
  margin: 0 auto 20px;
  max-width: 707px; }
  @media only screen and (min-width: 768px) {
    .referral-content .small-line {
      margin-bottom: 50px; } }

.referral-content .single-share-item a {
  color: #000;
  display: flex; }
  .referral-content .single-share-item a .icon {
    margin-right: 5px;
    vertical-align: middle; }

.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: 16px;
        width: 20px; }
      .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; }

.referral-content .referral-form {
  margin: 0 auto 15px;
  max-width: 637px;
  width: 90%; }
  @media only screen and (min-width: 768px) {
    .referral-content .referral-form {
      margin-bottom: 30px; } }
  .referral-content .referral-form .form-input {
    display: block;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .referral-content .referral-form .form-input {
        font-size: 16px; } }
  .referral-content .referral-form .form-label {
    display: block;
    text-align: left; }

@media only screen and (min-width: 768px) {
  #referralPopup {
    padding-bottom: 80px;
    padding-top: 80px; } }

#referralPopup .link-wrap {
  margin-bottom: 30px; }

#referralPopup .button-wrap {
  margin-bottom: 20px; }

#referralPopup .body-large {
  margin-bottom: 0; }

#vip-tiers .vip-tiers-header {
  font-size: 36px; }

#redeem-your-discounts {
  margin-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    #redeem-your-discounts {
      margin-bottom: 20px; } }
  #redeem-your-discounts:last-child {
    margin-bottom: 0; }

#postCheckoutReferralPopup {
  text-align: center; }
  @media only screen and (min-width: 768px) {
    #postCheckoutReferralPopup {
      padding-top: 60px; } }
  #postCheckoutReferralPopup .popup-line {
    border: 0 none;
    border-bottom: 1px solid #595959;
    margin: 0 auto 20px;
    max-width: 300px; }
    @media only screen and (min-width: 768px) {
      #postCheckoutReferralPopup .popup-line {
        margin-bottom: 30px; } }

.rewards-toc {
  background-color: white;
  border-bottom: 1px solid #979797;
  position: fixed;
  top: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease-in;
  width: 100%;
  z-index: 99; }
  @media only screen and (max-width: 767px) {
    .rewards-toc {
      display: none; } }
  .rewards-toc.active {
    top: 100px;
    transform: none;
    z-index: 999; }
  .rewards-toc .productView-toc-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    max-width: 1320px;
    padding: 30px 0; }
    .rewards-toc .productView-toc-list li {
      display: inline-block;
      margin-bottom: 0; }
      @media only screen and (min-width: 991px) and (max-width: 1199px) {
        .rewards-toc .productView-toc-list li a {
          font-size: 16px;
          min-width: 170px; } }
      @media only screen and (min-width: 1400px) {
        .rewards-toc .productView-toc-list li a {
          padding: 0 35px; } }

.dropdown-menu .rewards-cart-banner a {
  font-size: 14px; }

.rewards-cart-banner {
  margin-bottom: 28px; }
  @media only screen and (max-width: 767px) {
    .rewards-cart-banner {
      margin-left: -22px;
      margin-right: -22px; } }
  .rewards-cart-banner > div {
    padding: 12px 0; }
  .rewards-cart-banner a {
    font-size: 14px;
    font-weight: 700; }
  .rewards-cart-banner .rewards-user-info {
    background-color: #005f88; }
    .rewards-cart-banner .rewards-user-info button,
    .rewards-cart-banner .rewards-user-info a {
      color: #fff;
      cursor: pointer;
      text-decoration: underline; }
    .rewards-cart-banner .rewards-user-info svg {
      fill: currentColor;
      height: 18px;
      margin-right: 10px;
      vertical-align: middle;
      width: 16px; }
  .rewards-cart-banner .rewards-learn-container {
    background-color: #ecf3f5; }
    .rewards-cart-banner .rewards-learn-container a,
    .rewards-cart-banner .rewards-learn-container span {
      color: #1e1e1e;
      font-size: 14px;
      font-weight: 700; }
    .rewards-cart-banner .rewards-learn-container a {
      text-decoration: underline; }
      .rewards-cart-banner .rewards-learn-container a:hover {
        color: #005f88; }
  .rewards-cart-banner .rewards-user-name,
  .rewards-cart-banner .rewards-user-info button {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-weight: 700; }

.cart-main .rewards-user-name,
.cart-main .rewards-user-info button,
.cart-main .rewards-learn-container .rewards-learn-more {
  font-size: 18px; }

.login-modal {
  max-width: 100%;
  overflow: visible; }
  @media only screen and (min-width: 768px) {
    .login-modal {
      max-width: 424px; } }
  .login-modal .modal-close {
    color: #000; }
  .login-modal .login-wrap,
  .login-modal .new-customer {
    height: auto;
    padding: 40px 40px 15px; }
  .login-modal .new-customer {
    background-color: #fff;
    padding-bottom: 30px; }
    .login-modal .new-customer .h4 {
      margin-bottom: 15px; }
  .login-modal .h4 {
    margin-bottom: 10px; }

.reward-modal-content .new-customer .new-customer-fact-list {
  list-style-type: none; }
  .reward-modal-content .new-customer .new-customer-fact-list li {
    margin-bottom: 7px; }
  .reward-modal-content .new-customer .new-customer-fact-list .rewards-icon {
    height: 36px;
    margin-right: 15px;
    vertical-align: middle;
    width: 32px; }

.navBar--account .rewards-styles.is-active {
  background-color: #ecf3f5;
  border: 1px solid #005f88;
  border-right: 1px solid transparent;
  position: relative; }
  .navBar--account .rewards-styles.is-active::after {
    background-color: #ecf3f5;
    content: "";
    display: block;
    height: fill-available;
    min-height: 100%;
    position: absolute;
    right: -2px;
    top: 0;
    width: 1px; }

.shark-rewards-content {
  background-color: #ecf3f5;
  border: 1px solid #005f88; }

.ways-to-earn {
  background-color: #ecf3f5; }

.rewards-history {
  border-top: 5px solid #fff;
  padding: 30px 0 50px; }
  .rewards-history .wrapper {
    overflow-x: auto; }
  .rewards-history .rewards-history-table {
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 700px;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .rewards-history .rewards-history-table {
        width: 500px; } }
  .rewards-history .rewards-history-table th,
  .rewards-history .rewards-history-table td {
    background-color: #fff;
    border: 1px solid #005f88;
    padding: 8px;
    text-align: left; }
  .rewards-history .rewards-history-table thead th {
    background-color: #005f88;
    color: #fff; }

.circle-graph {
  align-items: center;
  background-color: #fff;
  border: 35px solid #595959;
  /* Change the color based on tier status */
  border-radius: 50%;
  display: flex;
  height: 300px;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  width: 300px; }

.circle-graph-title {
  border-bottom: 2px solid #595959;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase; }

.circle-graph-inner {
  align-items: center;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 140px;
  justify-content: center;
  width: 140px; }

.circle-graph-percentage {
  font-size: 24px; }

@media only screen and (max-width: 767px) {
  .yotpo-widget-visual-redemption-widget .yotpo-tile-wrapper,
  .yotpo-widget-visual-redemption-widget .swiper-container {
    padding-bottom: 0 !important; } }

@media only screen and (max-width: 767px) {
  .yotpo-widget-visual-redemption-widget .yotpo-redemption-reward {
    margin-bottom: 10px; } }

#redeem-points .yotpo-widget-visual-redemption-widget .yotpo-redemption-options-wrapper {
  column-gap: 0; }
  @media only screen and (min-width: 768px) {
    #redeem-points .yotpo-widget-visual-redemption-widget .yotpo-redemption-options-wrapper .yotpo-redemption-item {
      max-width: 20%; } }

.yotpo-redemption-item::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100px;
  margin-bottom: 20px; }

.swiper-slide-item:nth-child(1) .yotpo-redemption-item::before {
  background-image: url("../img/swells-reward/100-points.svg"); }

.swiper-slide-item:nth-child(2) .yotpo-redemption-item::before {
  background-image: url("../img/swells-reward/250-points.svg"); }

.swiper-slide-item:nth-child(3) .yotpo-redemption-item::before {
  background-image: url("../img/swells-reward/300-points.svg"); }

.swiper-slide-item:nth-child(4) .yotpo-redemption-item::before {
  background-image: url("../img/swells-reward/350-points.svg"); }

.swiper-slide-item:nth-child(5) .yotpo-redemption-item::before {
  background-image: url("../img/swells-reward/500-points.svg"); }

@media only screen and (min-width: 768px) {
  .yotpo-redemption-item:nth-child(1)::before {
    background-image: url("../img/swells-reward/100-points.svg"); }
  .yotpo-redemption-item:nth-child(2)::before {
    background-image: url("../img/swells-reward/250-points.svg"); }
  .yotpo-redemption-item:nth-child(3)::before {
    background-image: url("../img/swells-reward/300-points.svg"); }
  .yotpo-redemption-item:nth-child(4)::before {
    background-image: url("../img/swells-reward/350-points.svg"); }
  .yotpo-redemption-item:nth-child(5)::before {
    background-image: url("../img/swells-reward/500-points.svg"); } }

.my-shark-rewards-page > .wrapper {
  margin-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .my-shark-rewards-page > .wrapper {
      padding: 0; } }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget,
.my-shark-rewards-page .yotpo-background {
  background: #ecf3f5 !important; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-grid {
  height: auto !important; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-action-buttons-tile .yotpo-inactive-button {
  display: none; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-action-buttons-tile .yotpo-action-button {
  background-color: #fff !important;
  border: 4px solid #000 !important;
  color: #000 !important;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  min-width: 186px !important; }
  .my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-action-buttons-tile .yotpo-action-button:hover {
    background-color: #fff !important;
    border-color: #005f88 #00682b #9f3238 #d19000 !important;
    color: #000 !important; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-rewards-history-title {
  text-align: center !important; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-grid-row-headers .yotpo-row-display {
  background-color: #005f88; }
  .my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-grid-row-headers .yotpo-row-display .yotpo-inner-text {
    color: #fff !important; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-shadow-gap-desktop,
.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-grid::before {
  display: none !important; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-grid-row {
  margin-bottom: 0; }
  .my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-grid-row .border-style-rectangular {
    border-color: #005f88 !important;
    border-radius: 0 !important; }
    @media only screen and (min-width: 768px) {
      .my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-grid-row .border-style-rectangular {
        border-top: 0 !important; } }
  .my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-grid-row .row-points-column .yotpo-inner-text {
    color: #000 !important; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-close-btn-wrapper svg {
  color: #000 !important; }

.my-shark-rewards-page .yotpo-widget-my-rewards-widget .yotpo-rewards-history-wrapper .yotpo-rewards-history {
  background-color: #ecf3f5; }

.yotpo-vip-tiers-widget .yotpo-active .yotpo-grid-vip-tier .yotpo-vip-tiers-grid-benefit-status:last-child {
  border-color: #000 !important; }
