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

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

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

.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 0px;
    flex: 1 1 0;
    max-width: 100%;
    width: auto;
    float: none; }

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

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

/* Ninths */
/* 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;
  width: auto;
  max-width: none; }

.grid--flex .expand {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  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 {
  -ms-flex-direction: row !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  flex-direction: row !important; }

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

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

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: 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 {
  -ms-flex: 1 1 auto !important;
  -webkit-box-flex: 1 !important;
  flex: 1 1 auto !important; }

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

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  -webkit-box-flex: 1 !important;
  flex-grow: 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 {
  -ms-flex-pack: start !important;
  -webkit-box-pack: start !important;
  justify-content: flex-start !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-12 {
  -ms-flex-order: 12;
  -webkit-box-ordinal-group: 13;
  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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .xsmall--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .xsmall--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .xsmall--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .xsmall--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .xsmall--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .xsmall--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .xsmall--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .xsmall--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .xsmall--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .xsmall--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .xsmall--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .xsmall--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .xsmall--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .xsmall--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .xsmall--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .xsmall--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .xsmall--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .xsmall--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .xsmall--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .xsmall--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .xsmall--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .xsmall--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .xsmall--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .xsmall--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .xsmall--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .xsmall--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .xsmall--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .xsmall--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .xsmall--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .xsmall--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .xsmall--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .xsmall--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .xsmall--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .xsmall--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .xsmall--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .xsmall--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .xsmall--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .xsmall--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .xsmall--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .xsmall--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .small--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .small--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .small--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .small--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .small--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .small--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .small--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .small--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .small--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .small--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .small--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .small--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .small--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .small--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .small--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .small--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .small--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .small--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .small--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .small--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .small--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .small--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .small--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .small--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .small--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .small--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .small--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .small--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .small--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .small--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .small--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .small--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .small--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .small--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .small--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .small--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .small--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .small--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .small--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .small--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .small-down--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .small-down--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .small-down--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .small-down--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .small-down--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .small-down--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .small-down--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .small-down--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .small-down--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .small-down--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .small-down--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .small-down--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .small-down--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .small-down--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .small-down--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .small-down--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .small-down--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .small-down--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .small-down--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .small-down--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .small-down--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .small-down--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .small-down--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .small-down--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .small-down--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .small-down--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .small-down--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .small-down--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .small-down--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .small-down--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .small-down--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .small-down--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .small-down--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .small-down--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .small-down--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .small-down--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .small-down--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .small-down--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .small-down--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .small-down--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .medium--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .medium--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .medium--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .medium--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .medium--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .medium--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .medium--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .medium--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .medium--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .medium--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .medium--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .medium--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .medium--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .medium--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .medium--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .medium--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .medium--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .medium--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .medium--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .medium--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .medium--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .medium--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .medium--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .medium--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .medium--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .medium--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .medium--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .medium--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .medium--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .medium--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .medium--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .medium--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .medium--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .medium--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .medium--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .medium--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .medium--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .medium--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .medium--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .medium--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .medium-up--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .medium-up--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .medium-up--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .medium-up--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .medium-up--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .medium-up--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .medium-up--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .medium-up--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .medium-up--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .medium-up--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .medium-up--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .medium-up--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .medium-up--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .medium-up--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .medium-up--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .medium-up--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .medium-up--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .medium-up--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .medium-up--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .medium-up--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .medium-up--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .medium-up--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .medium-up--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .medium-up--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .medium-up--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .medium-up--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .medium-up--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .medium-up--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .medium-up--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .medium-up--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .medium-up--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .medium-up--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .medium-up--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .medium-up--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .medium-up--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .medium-up--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .medium-up--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .medium-up--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .medium-up--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .medium-up--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .large-up--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .large-up--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .large-up--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .large-up--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .large-up--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .large-up--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .large-up--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .large-up--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .large-up--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .large-up--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .large-up--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .large-up--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .large-up--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .large-up--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .large-up--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .large-up--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .large-up--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .large-up--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .large-up--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .large-up--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .large-up--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .large-up--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .large-up--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .large-up--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .large-up--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .large-up--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .large-up--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .large-up--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .large-up--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .large-up--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .large-up--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .large-up--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .large-up--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .large-up--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .large-up--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .large-up--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .large-up--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .large-up--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .large-up--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .large-up--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .large--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .large--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .large--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .large--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .large--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .large--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .large--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .large--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .large--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .large--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .large--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .large--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .large--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .large--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .large--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .large--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .large--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .large--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .large--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .large--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .large--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .large--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .large--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .large--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .large--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .large--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .large--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .large--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .large--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .large--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .large--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .large--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .large--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .large--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .large--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .large--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .large--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .large--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .large--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .large--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12; }
  .grid--uniform .large--one-half:nth-child(2n+1),
  .grid--uniform .large--one-third:nth-child(3n+1),
  .grid--uniform .large--one-quarter:nth-child(4n+1),
  .grid--uniform .large--one-fifth:nth-child(5n+1),
  .grid--uniform .large--one-sixth:nth-child(6n+1),
  .grid--uniform .large--two-sixths:nth-child(3n+1),
  .grid--uniform .large--three-sixths:nth-child(2n+1),
  .grid--uniform .large--one-eighth:nth-child(8n+1),
  .grid--uniform .large--two-eighths:nth-child(4n+1),
  .grid--uniform .large--four-eighths:nth-child(2n+1),
  .grid--uniform .large--five-tenths:nth-child(2n+1),
  .grid--uniform .large--one-twelfth:nth-child(12n+1),
  .grid--uniform .large--two-twelfths:nth-child(6n+1),
  .grid--uniform .large--three-twelfths:nth-child(4n+1),
  .grid--uniform .large--four-twelfths:nth-child(3n+1),
  .grid--uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .large--show {
    display: block !important; }
  .large--hide {
    display: none !important; }
  .large--text-left {
    text-align: left !important; }
  .large--text-right {
    text-align: right !important; }
  .large--text-center {
    text-align: center !important; } }

@media only screen and (min-width: 1200px) {
  /** Whole */
  .xlarge-up--one-whole {
    width: 100%; }
  /* Halves */
  .xlarge-up--one-half {
    width: 50%; }
  /* Thirds */
  .xlarge-up--one-third {
    width: 33.33333%; }
  .xlarge-up--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .xlarge-up--one-quarter {
    width: 25%; }
  .xlarge-up--two-quarters {
    width: 50%; }
  .xlarge-up--three-quarters {
    width: 75%; }
  /* Fifths */
  .xlarge-up--one-fifth {
    width: 20%; }
  .xlarge-up--two-fifths {
    width: 40%; }
  .xlarge-up--three-fifths {
    width: 60%; }
  .xlarge-up--four-fifths {
    width: 80%; }
  /* Sixths */
  .xlarge-up--one-sixth {
    width: 16.66667%; }
  .xlarge-up--two-sixths {
    width: 33.33333%; }
  .xlarge-up--three-sixths {
    width: 50%; }
  .xlarge-up--four-sixths {
    width: 66.66667%; }
  .xlarge-up--five-sixths {
    width: 83.33333%; }
  /* Sevenths */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .xlarge-up--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .xlarge-up--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .xlarge-up--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .xlarge-up--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .xlarge-up--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .xlarge-up--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .xlarge-up--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .xlarge-up--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .xlarge-up--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .xlarge-up--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .xlarge-up--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .xlarge-up--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .xlarge-up--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .xlarge-up--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .xlarge-up--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .xlarge-up--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .xlarge-up--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .xlarge-up--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .xlarge-up--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .xlarge-up--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .xlarge-up--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .xlarge-up--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .xlarge-up--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .xlarge-up--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .xlarge-up--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .xlarge-up--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .xlarge-up--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .xlarge-up--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .xlarge-up--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .xlarge-up--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .xlarge-up--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .xlarge-up--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .xlarge-up--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .xlarge-up--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .xlarge-up--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .xlarge-up--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .xlarge-up--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .xlarge-up--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .xlarge-up--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .xlarge-up--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .xlarge-down--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .xlarge-down--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .xlarge-down--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .xlarge-down--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .xlarge-down--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .xlarge-down--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .xlarge-down--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .xlarge-down--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .xlarge-down--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .xlarge-down--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .xlarge-down--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .xlarge-down--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .xlarge-down--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .xlarge-down--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .xlarge-down--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .xlarge-down--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .xlarge-down--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .xlarge-down--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .xlarge-down--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .xlarge-down--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .xlarge-down--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .xlarge-down--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .xlarge-down--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .xlarge-down--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .xlarge-down--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .xlarge-down--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .xlarge-down--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .xlarge-down--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .xlarge-down--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .xlarge-down--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .xlarge-down--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .xlarge-down--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .xlarge-down--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .xlarge-down--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .xlarge-down--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .xlarge-down--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .xlarge-down--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .xlarge-down--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .xlarge-down--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .xlarge-down--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .xlarge--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .xlarge--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .xlarge--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .xlarge--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .xlarge--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .xlarge--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .xlarge--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .xlarge--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .xlarge--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .xlarge--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .xlarge--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .xlarge--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .xlarge--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .xlarge--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .xlarge--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .xlarge--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .xlarge--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .xlarge--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .xlarge--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .xlarge--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .xlarge--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .xlarge--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .xlarge--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .xlarge--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .xlarge--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .xlarge--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .xlarge--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .xlarge--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .xlarge--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .xlarge--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .xlarge--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .xlarge--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .xlarge--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .xlarge--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .xlarge--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .xlarge--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .xlarge--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .xlarge--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .xlarge--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .xlarge--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .medium-down--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .medium-down--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .medium-down--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .medium-down--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .medium-down--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .medium-down--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .medium-down--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .medium-down--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .medium-down--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .medium-down--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .medium-down--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .medium-down--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .medium-down--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .medium-down--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .medium-down--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .medium-down--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .medium-down--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .medium-down--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .medium-down--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .medium-down--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .medium-down--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .medium-down--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .medium-down--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .medium-down--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .medium-down--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .medium-down--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .medium-down--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .medium-down--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .medium-down--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .medium-down--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .medium-down--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .medium-down--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .medium-down--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .medium-down--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .medium-down--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .medium-down--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .medium-down--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .medium-down--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .medium-down--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .medium-down--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 */
  /* 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%; }
  /* Ninths */
  /* 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;
    width: auto;
    max-width: none; }
  .grid--flex .widescreen--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    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 {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .widescreen--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .widescreen--flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important; }
  .widescreen--flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: 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 {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .widescreen--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .widescreen--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 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 {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .widescreen--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .widescreen--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .widescreen--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-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 {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .widescreen--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .widescreen--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .widescreen--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .widescreen--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .widescreen--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .widescreen--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .widescreen--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .widescreen--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .widescreen--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .widescreen--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .widescreen--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .widescreen--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .widescreen--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .widescreen--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .widescreen--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .widescreen--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .widescreen--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .widescreen--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .widescreen--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .widescreen--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .widescreen--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .widescreen--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .widescreen--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .widescreen--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .widescreen--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .widescreen--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .widescreen--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .widescreen--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .widescreen--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .widescreen--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .widescreen--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    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 ================*/
.grid--table {
  display: table;
  table-layout: fixed;
  width: calc(100% + 22px); }
  .grid--table.grid--full {
    width: 100%; }
  .grid--table > .grid__item {
    display: table-cell;
    vertical-align: middle;
    float: none; }
  .grid--table::after {
    display: none; }

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

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

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

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

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

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

.form-input, .form-select {
  height: 30px;
  color: #1E1E1E;
  outline: 0 none;
  letter-spacing: 0;
  font-family: "Roboto", "Roboto Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding: 0 12px;
  background-color: #ffffff;
  border-color: #DADADA;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  font-size: 16px; }
  .form-input.placeholder, .form-select.placeholder {
    color: #1E1E1E; }
  .form-input:-moz-placeholder, .form-select:-moz-placeholder {
    color: #1E1E1E; }
  .form-input::-moz-placeholder, .form-select::-moz-placeholder {
    color: #1E1E1E; }
  .form-input:-ms-input-placeholder, .form-select:-ms-input-placeholder {
    color: #1E1E1E; }
  .form-input::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
    color: #1E1E1E; }

.form-input {
  border-radius: 4px; }
  .form-input:focus, .form-input:active {
    border-color: #1E1E1E;
    background-color: #ffffff; }

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='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z' fill='rgba(0, 0, 0, 0.999)' /%3E%3C/svg%3E");
  background-position: right 4px top 3px;
  border-radius: 4px;
  padding: 0 20px 0 12px;
  background-repeat: no-repeat; }

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

label[for] {
  cursor: pointer; }

.form-label--inlineSmall {
  display: inline-block; }
  .form-label--inlineSmall small {
    color: #979797;
    float: none;
    font-size: inherit;
    font-weight: 400;
    margin-left: 5px;
    text-transform: none; }

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

.form-inlineMessage {
  display: block; }

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

.form-field--error .form-inlineMessage {
  font-size: 14px;
  color: #ff7d7d; }
  .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(255, 125, 125, 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"] {
  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, 138, 6, 0.999)' /%3E%3C/svg%3E");
  background-position: right 9px center;
  background-repeat: no-repeat;
  padding-right: 40px; }

.form-checkbox,
.form-radio {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .form-checkbox + .form-label:last-child,
  .form-radio + .form-label:last-child {
    display: block;
    margin-bottom: -4px; }
  .form-checkbox + .form-label::before,
  .form-radio + .form-label::before {
    content: "";
    width: 21px;
    height: 21px;
    border: 1px solid #DADADA;
    background: #fff;
    display: inline-block;
    margin-left: 5px;
    margin-right: 10px;
    position: relative;
    top: 2px;
    border-radius: 21px; }
  .form-checkbox:checked + .form-label::before,
  .form-radio:checked + .form-label::before {
    background: #66BCFF;
    box-shadow: 0px 0px 0px 4px  white inset; }

.form-actions {
  display: block;
  text-align: center; }
  .form-actions .button,
  .form-actions input,
  .form-actions a {
    vertical-align: top; }
    .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-top: 10px; }
      @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; } }

#form-action-addToCart {
  margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    #form-action-addToCart {
      width: 100%; } }

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

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

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

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

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

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

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

.form-prefixPostfix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .form-prefixPostfix .button {
    height: 30px;
    line-height: 30px; }
  .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-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; } }

.form-field--increments {
  display: block;
  margin-bottom: 0; }
  .form-field--increments label {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
    vertical-align: middle; }
  .form-field--increments .form-increments-wrap {
    display: inline-block;
    vertical-align: middle; }

.form-increment {
  font-size: 0; }
  .form-increment > div {
    display: inline-block;
    vertical-align: middle; }
    .form-increment > div.increment-input-wrap {
      width: 37px;
      background-color: #ffffff; }
    .form-increment > div.increment-button-wrap {
      width: 36px; }
      .form-increment > div.increment-button-wrap .button {
        margin: 0;
        padding: 0;
        display: block;
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #DADADA;
        color: #1E1E1E; }
        .form-increment > div.increment-button-wrap .button .icon {
          display: block;
          margin: 0 auto; }
      .form-increment > div.increment-button-wrap:first-child .button {
        border-right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      .form-increment > div.increment-button-wrap:last-child .button {
        border-left: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }

.form-input--incrementTotal {
  display: block;
  overflow: hidden;
  font-size: 21px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  text-align: center;
  height: 45px;
  width: 100%;
  color: #1E1E1E;
  border-radius: 0; }
  .form-input--incrementTotal, .form-input--incrementTotal:focus {
    background: transparent; }

.add-increment-wrap {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 12px; }
  .add-increment-wrap > div.form-field--increments {
    flex-shrink: 0;
    margin-bottom: 0; }
    @media only screen and (min-width: 768px) {
      .add-increment-wrap > div.form-field--increments {
        margin-right: 30px; } }
  .add-increment-wrap > div.form-action {
    flex: 1;
    min-width: 0; }
  @media only screen and (max-width: 767px) {
    .add-increment-wrap {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: #fff;
      padding: 10px 12px;
      margin: 0;
      box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
      border-top: 1px solid #e8e8e8;
      gap: 10px;
      padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
      .add-increment-wrap > div.form-field--increments {
        margin-right: 0; }
      .add-increment-wrap > div.form-action {
        flex: 1;
        min-width: 0; } }

@media only screen and (max-width: 767px) {
  #form-action-addToCart {
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease; }
    #form-action-addToCart:active:not(:disabled) {
      transform: scale(0.98);
      background-color: #111111; }
    #form-action-addToCart:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      background-color: #ccc;
      border-color: #ccc;
      color: #666; }
    #form-action-addToCart[data-wait-message]:disabled::after {
      content: '...';
      animation: dots 1.5s infinite; } }

@keyframes dots {
  0%, 20% {
    content: '.'; }
  40% {
    content: '..'; }
  60%, 100% {
    content: '...'; } }

.form-option {
  border: 1px solid #DADADA;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  margin-bottom: 7px;
  margin-right: 12px;
  padding: 3px;
  transition: border-color 0.15s ease, background-color 0.15s ease; }
  .form-option:hover, .form-radio:checked + .form-option {
    border-color: #66BCFF; }

.form-option-variant {
  display: inline-block;
  font-size: 16px;
  min-width: 38px;
  padding: 1px 5px;
  pointer-events: none;
  text-align: center; }

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

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

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

.form-minMaxRow {
  font-size: 0; }
  .form-minMaxRow .form-field {
    width: 70px;
    margin-bottom: 0;
    margin-right: 10px;
    display: inline-block;
    font-size: 16px;
    vertical-align: bottom; }
    .form-minMaxRow .form-field input {
      max-width: 100%;
      padding: 0;
      padding-left: 10px;
      background-color: #F6F5F5;
      border-radius: 4px; }
    .form-minMaxRow .form-field:last-child {
      width: 100px;
      margin-right: 0; }
  .form-minMaxRow .form-label {
    margin-bottom: 0;
    font-size: 14px; }
  .form-minMaxRow .button {
    margin-bottom: 0; }

.form-row--half {
  *zoom: 1; }
  .form-row--half::after {
    content: '';
    display: table;
    clear: both; }
  @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 {
      padding-left: 22px;
      width: 50%;
      float: left; }
      .form-row--half > .form-field:nth-child(odd) {
        clear: left; } }
  .form-row--half > .form-field .form-input {
    width: 100%; }

.form-row--third {
  *zoom: 1; }
  .form-row--third::after {
    content: '';
    display: table;
    clear: both; }
  @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 {
      padding-left: 22px;
      width: 33.333%;
      float: left; }
      .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: #ddd;
    opacity: .3; }
    [data-product-attribute] .form-option.unavailable:before {
      background-color: #000;
      content: "";
      height: 2px;
      left: -5px;
      position: absolute;
      top: 11px;
      transform: rotate(-45deg);
      width: 141%; }

[data-product-attribute="set-radio"] .unavailable,
[data-product-attribute="product-list"] .unavailable {
  opacity: .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 {
    width: 100%;
    margin: 0;
    height: 45px; }

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

body {
  background: #ffffff;
  color: #1E1E1E;
  cursor: auto;
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 16px;
  font-family: "Roboto", "Roboto Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

a {
  transition: color 0.2s ease; }

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

h1, .h1, .productView-price .price--withoutTax, h2, .h2, .page-heading, h3, .h3, .card .price--withoutTax, .section-header, h4, .h4, .rte h3, .rte .h3, .rte .card .price--withoutTax, .card .rte .price--withoutTax, .rte .section-header, .actionBar-section .form-label, h5, .h5, h6, .h6 {
  margin-top: 0;
  color: #1E1E1E;
  font-family: "Roboto", "Roboto Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase; }
  h1 a, .h1 a, .productView-price .price--withoutTax a, h2 a, .h2 a, .page-heading a, h3 a, .h3 a, .card .price--withoutTax a, .section-header a, h4 a, .h4 a, .rte h3 a, .rte .h3 a, .rte .card .price--withoutTax a, .card .rte .price--withoutTax a, .rte .section-header a, .actionBar-section .form-label a, h5 a, .h5 a, h6 a, .h6 a {
    color: inherit; }

h1, .h1, .productView-price .price--withoutTax {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem; }
  @media only screen and (min-width: 768px) {
    h1, .h1, .productView-price .price--withoutTax {
      font-size: 42px;
      margin-bottom: 1.5rem; } }
  @media only screen and (min-width: 991px) {
    h1, .h1, .productView-price .price--withoutTax {
      font-size: 50px; } }

h2, .h2, .page-heading {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 0.875rem; }
  @media only screen and (min-width: 768px) {
    h2, .h2, .page-heading {
      font-size: 28px;
      margin-bottom: 1.25rem; } }

h3, .h3, .card .price--withoutTax, .section-header {
  font-size: 18px;
  margin-bottom: 0.75rem; }
  @media only screen and (min-width: 768px) {
    h3, .h3, .card .price--withoutTax, .section-header {
      font-size: 21px;
      margin-bottom: 1rem; } }

h4, .h4, .rte h3, .rte .h3, .rte .card .price--withoutTax, .card .rte .price--withoutTax, .rte .section-header, .actionBar-section .form-label {
  font-size: 16px;
  margin-bottom: 0.625rem; }
  @media only screen and (min-width: 768px) {
    h4, .h4, .rte h3, .rte .h3, .rte .card .price--withoutTax, .card .rte .price--withoutTax, .rte .section-header, .actionBar-section .form-label {
      font-size: 18px; } }

h5, .h5 {
  font-size: 14px;
  margin-bottom: 0.625rem; }
  @media only screen and (min-width: 768px) {
    h5, .h5 {
      font-size: 16px; } }

h6, .h6 {
  font-size: 12px; }
  @media only screen and (min-width: 768px) {
    h6, .h6 {
      font-size: 14px; } }

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

a {
  text-decoration: none;
  color: #1E1E1E; }
  a:hover {
    color: #1E1E1E; }

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

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

address {
  font-style: normal; }

.color-textSecondary {
  color: #979797; }

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

.rte ul, .rte ol {
  padding-left: 20px;
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .rte ul, .rte ol {
      padding-left: 40px;
      margin-bottom: 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 {
  color: #1A9BFF; }
  .rte a:hover {
    text-decoration: underline; }

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

.button {
  border-radius: 4px;
  white-space: nowrap;
  padding: 0 40px;
  line-height: 41px;
  height: 45px;
  text-transform: uppercase;
  border: 2px solid transparent;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  background-color: #66BCFF;
  font-family: "Roboto", "Roboto Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none; }
  .button svg {
    fill: currentColor; }
  .button .icon {
    width: 15px;
    height: 15px; }
  .button:hover {
    color: #1E1E1E;
    background-color: #ffffff;
    border-color: #66BCFF;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
  .button:active {
    transform: translateY(0); }
  .button[disabled] {
    cursor: not-allowed;
    opacity: 0.6; }
    .button[disabled]:hover {
      transform: none;
      box-shadow: none; }
  .button.button--primary {
    color: #ffffff;
    background-color: #66BCFF; }
    .button.button--primary:hover {
      color: #000000;
      background-color: #ffffff; }
  .button.button--secondary {
    color: #ffffff;
    background-color: #1E1E1E; }
    .button.button--secondary:hover {
      color: #1E1E1E;
      background-color: #ffffff;
      border-color: #1E1E1E; }
  .button.button--border {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    line-height: 43px; }
    .button.button--border:hover {
      color: #ffffff;
      background-color: #66BCFF;
      border-color: #66BCFF; }
  .button.button--text {
    background-color: transparent;
    color: #979797; }
    .button.button--text:hover {
      color: #1E1E1E;
      background-color: transparent;
      box-shadow: none;
      transform: none; }
  .button.button--small {
    height: 35px;
    line-height: 31px;
    padding: 0 20px;
    font-size: 14px; }
    .button.button--small.button--border {
      line-height: 31px; }
  .button.dropdown-button {
    height: auto !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important; }

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

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

.page-banner {
  background-color: #000;
  padding: 37px 0;
  background-position: center;
  text-align: center;
  margin-bottom: 20px; }

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

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

.off-canvas-wrap, .body {
  overflow: visible !important; }

@media only screen and (min-width: 768px) {
  .sticky-sidebar {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 180px; } }

.text-white {
  color: #fff; }

/* Loads a custom font family
 *
 * @param $name (required)
 * @param $font-weights
 * @param $font-styles
 * @param $has-own-directory
 * @param $font-suffix
 * @param $font-location
 * @param $font-handle
 * @param $font-file-sep
 *
 */
body.swal2-shown {
  overflow-y: hidden; }

body.swal2-iosfix {
  position: fixed;
  left: 0;
  right: 0; }

.swal2-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  background-color: transparent;
  z-index: 1060; }
  .swal2-container.swal2-top {
    align-items: flex-start; }
  .swal2-container.swal2-top-left {
    align-items: flex-start;
    justify-content: flex-start; }
  .swal2-container.swal2-top-right {
    align-items: flex-start;
    justify-content: flex-end; }
  .swal2-container.swal2-center {
    align-items: center; }
  .swal2-container.swal2-center-left {
    align-items: center;
    justify-content: flex-start; }
  .swal2-container.swal2-center-right {
    align-items: center;
    justify-content: flex-end; }
  .swal2-container.swal2-bottom {
    align-items: flex-end; }
  .swal2-container.swal2-bottom-left {
    align-items: flex-end;
    justify-content: flex-start; }
  .swal2-container.swal2-bottom-right {
    align-items: flex-end;
    justify-content: flex-end; }
  .swal2-container.swal2-grow-fullscreen > .swal2-modal {
    display: flex !important;
    flex: 1;
    align-self: stretch;
    justify-content: center; }
  .swal2-container.swal2-grow-row > .swal2-modal {
    display: flex !important;
    flex: 1;
    align-content: center;
    justify-content: center; }
  .swal2-container.swal2-grow-column {
    flex: 1;
    flex-direction: column; }
    .swal2-container.swal2-grow-column.swal2-top, .swal2-container.swal2-grow-column.swal2-center, .swal2-container.swal2-grow-column.swal2-bottom {
      align-items: center; }
    .swal2-container.swal2-grow-column.swal2-top-left, .swal2-container.swal2-grow-column.swal2-center-left, .swal2-container.swal2-grow-column.swal2-bottom-left {
      align-items: flex-start; }
    .swal2-container.swal2-grow-column.swal2-top-right, .swal2-container.swal2-grow-column.swal2-center-right, .swal2-container.swal2-grow-column.swal2-bottom-right {
      align-items: flex-end; }
    .swal2-container.swal2-grow-column > .swal2-modal {
      display: flex !important;
      flex: 1;
      align-content: center;
      justify-content: center; }
  .swal2-container:not(.swal2-top):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-left):not(.swal2-bottom-right) > .swal2-modal {
    margin: auto; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .swal2-container .swal2-modal {
      margin: 0 !important; } }
  .swal2-container.swal2-fade {
    transition: background-color .1s; }
  .swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, 0.4); }

.swal2-modal {
  flex-direction: column;
  background-color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  position: relative;
  max-width: 100%; }
  .swal2-modal:focus {
    outline: none; }
  .swal2-modal.swal2-loading {
    overflow-y: hidden; }
  .swal2-modal .swal2-title {
    color: #595959;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 0 0 .4em;
    padding: 0;
    display: block;
    word-wrap: break-word; }
  .swal2-modal .swal2-buttonswrapper {
    margin-top: 15px; }
    .swal2-modal .swal2-buttonswrapper:not(.swal2-loading) .swal2-styled[disabled] {
      opacity: .4;
      cursor: no-drop; }
    .swal2-modal .swal2-buttonswrapper.swal2-loading .swal2-styled.swal2-confirm {
      box-sizing: border-box;
      border: 4px solid transparent;
      border-color: transparent;
      width: 40px;
      height: 40px;
      padding: 0;
      margin: 7.5px;
      vertical-align: top;
      background-color: transparent !important;
      color: transparent;
      cursor: default;
      border-radius: 100%;
      animation: rotate-loading 1.5s linear 0s infinite normal;
      user-select: none; }
    .swal2-modal .swal2-buttonswrapper.swal2-loading .swal2-styled.swal2-cancel {
      margin-left: 30px;
      margin-right: 30px; }
    .swal2-modal .swal2-buttonswrapper.swal2-loading :not(.swal2-styled).swal2-confirm::after {
      display: inline-block;
      content: '';
      margin-left: 5px;
      vertical-align: -1px;
      height: 15px;
      width: 15px;
      border: 3px solid #999999;
      box-shadow: 1px 1px 1px #fff;
      border-right-color: transparent;
      border-radius: 50%;
      animation: rotate-loading 1.5s linear 0s infinite normal; }
  .swal2-modal .swal2-styled {
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 15px 5px 0;
    padding: 10px 32px; }
    .swal2-modal .swal2-styled:focus {
      outline: none;
      box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4); }
  .swal2-modal .swal2-image {
    margin: 20px auto;
    max-width: 100%; }
  .swal2-modal .swal2-close {
    background: rgba(0, 0, 0, 0);
    border: 0;
    margin: 0;
    padding: 0;
    width: 38px;
    height: 40px;
    font-size: 36px;
    line-height: 40px;
    font-family: serif;
    position: absolute;
    top: 5px;
    right: 8px;
    cursor: pointer;
    color: #cccccc;
    transition: color .1s ease; }
    .swal2-modal .swal2-close:hover {
      color: #d55; }
  .swal2-modal > .swal2-input,
  .swal2-modal > .swal2-file,
  .swal2-modal > .swal2-textarea,
  .swal2-modal > .swal2-select,
  .swal2-modal > .swal2-radio,
  .swal2-modal > .swal2-checkbox {
    display: none; }
  .swal2-modal .swal2-content {
    font-size: 18px;
    text-align: center;
    font-weight: 300;
    position: relative;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    color: #545454;
    word-wrap: break-word; }
  .swal2-modal .swal2-input,
  .swal2-modal .swal2-file,
  .swal2-modal .swal2-textarea,
  .swal2-modal .swal2-select,
  .swal2-modal .swal2-radio,
  .swal2-modal .swal2-checkbox {
    margin: 20px auto; }
  .swal2-modal .swal2-input,
  .swal2-modal .swal2-file,
  .swal2-modal .swal2-textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
    transition: border-color .3s, box-shadow .3s; }
    .swal2-modal .swal2-input.swal2-inputerror,
    .swal2-modal .swal2-file.swal2-inputerror,
    .swal2-modal .swal2-textarea.swal2-inputerror {
      border-color: #f27474 !important;
      box-shadow: 0 0 2px #f27474 !important; }
    .swal2-modal .swal2-input:focus,
    .swal2-modal .swal2-file:focus,
    .swal2-modal .swal2-textarea:focus {
      outline: none;
      border: 1px solid #b4dbed;
      box-shadow: 0 0 3px #c4e6f5; }
    .swal2-modal .swal2-input::placeholder,
    .swal2-modal .swal2-file::placeholder,
    .swal2-modal .swal2-textarea::placeholder {
      color: #cccccc; }
  .swal2-modal .swal2-range input {
    float: left;
    width: 80%; }
  .swal2-modal .swal2-range output {
    float: right;
    width: 20%;
    font-size: 20px;
    font-weight: 600;
    text-align: center; }
  .swal2-modal .swal2-range input,
  .swal2-modal .swal2-range output {
    height: 43px;
    line-height: 43px;
    vertical-align: middle;
    margin: 20px auto;
    padding: 0; }
  .swal2-modal .swal2-input {
    height: 43px;
    padding: 0 12px; }
    .swal2-modal .swal2-input[type='number'] {
      max-width: 150px; }
  .swal2-modal .swal2-file {
    font-size: 20px; }
  .swal2-modal .swal2-textarea {
    height: 108px;
    padding: 12px; }
  .swal2-modal .swal2-select {
    color: #545454;
    font-size: inherit;
    padding: 5px 10px;
    min-width: 40%;
    max-width: 100%; }
  .swal2-modal .swal2-radio {
    border: 0; }
    .swal2-modal .swal2-radio label:not(:first-child) {
      margin-left: 20px; }
    .swal2-modal .swal2-radio input,
    .swal2-modal .swal2-radio span {
      vertical-align: middle; }
    .swal2-modal .swal2-radio input {
      margin: 0 3px 0 0; }
  .swal2-modal .swal2-checkbox {
    color: #545454; }
    .swal2-modal .swal2-checkbox input,
    .swal2-modal .swal2-checkbox span {
      vertical-align: middle; }
  .swal2-modal .swal2-validationerror {
    background-color: #f0f0f0;
    margin: 0 -20px;
    overflow: hidden;
    padding: 10px;
    color: gray;
    font-size: 16px;
    font-weight: 300;
    display: none; }
    .swal2-modal .swal2-validationerror::before {
      content: '!';
      display: inline-block;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #ea7d7d;
      color: #fff;
      line-height: 24px;
      text-align: center;
      margin-right: 10px; }

@supports (-ms-accelerator: true) {
  .swal2-range input {
    width: 100% !important; }
  .swal2-range output {
    display: none; } }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-range input {
    width: 100% !important; }
  .swal2-range output {
    display: none; } }

.swal2-icon {
  width: 80px;
  height: 80px;
  border: 4px solid transparent;
  border-radius: 50%;
  margin: 20px auto 30px;
  padding: 0;
  position: relative;
  box-sizing: content-box;
  cursor: default;
  user-select: none; }
  .swal2-icon.swal2-error {
    border-color: #f27474; }
    .swal2-icon.swal2-error .swal2-x-mark {
      position: relative;
      display: block; }
    .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
      position: absolute;
      height: 5px;
      width: 47px;
      background-color: #f27474;
      display: block;
      top: 37px;
      border-radius: 2px; }
      .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
        transform: rotate(45deg);
        left: 17px; }
      .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
        transform: rotate(-45deg);
        right: 16px; }
  .swal2-icon.swal2-warning {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #f8bb86;
    border-color: #facea8;
    font-size: 60px;
    line-height: 80px;
    text-align: center; }
  .swal2-icon.swal2-info {
    font-family: 'Open Sans', sans-serif;
    color: #3fc3ee;
    border-color: #9de0f6;
    font-size: 60px;
    line-height: 80px;
    text-align: center; }
  .swal2-icon.swal2-question {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #87adbd;
    border-color: #c9dae1;
    font-size: 60px;
    line-height: 80px;
    text-align: center; }
  .swal2-icon.swal2-success {
    border-color: #a5dc86; }
    .swal2-icon.swal2-success [class^='swal2-success-circular-line'] {
      border-radius: 50%;
      position: absolute;
      width: 60px;
      height: 120px;
      transform: rotate(45deg); }
      .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='left'] {
        border-radius: 120px 0 0 120px;
        top: -7px;
        left: -33px;
        transform: rotate(-45deg);
        transform-origin: 60px 60px; }
      .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='right'] {
        border-radius: 0 120px 120px 0;
        top: -11px;
        left: 30px;
        transform: rotate(-45deg);
        transform-origin: 0 60px; }
    .swal2-icon.swal2-success .swal2-success-ring {
      width: 80px;
      height: 80px;
      border: 4px solid rgba(165, 220, 134, 0.2);
      border-radius: 50%;
      box-sizing: content-box;
      position: absolute;
      left: -4px;
      top: -4px;
      z-index: 2; }
    .swal2-icon.swal2-success .swal2-success-fix {
      width: 7px;
      height: 90px;
      position: absolute;
      left: 28px;
      top: 8px;
      z-index: 1;
      transform: rotate(-45deg); }
    .swal2-icon.swal2-success [class^='swal2-success-line'] {
      height: 5px;
      background-color: #a5dc86;
      display: block;
      border-radius: 2px;
      position: absolute;
      z-index: 2; }
      .swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
        width: 25px;
        left: 14px;
        top: 46px;
        transform: rotate(45deg); }
      .swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
        width: 47px;
        right: 8px;
        top: 38px;
        transform: rotate(-45deg); }

.swal2-progresssteps {
  font-weight: 600;
  margin: 0 0 20px;
  padding: 0; }
  .swal2-progresssteps li {
    display: inline-block;
    position: relative; }
  .swal2-progresssteps .swal2-progresscircle {
    background: #3085d6;
    border-radius: 2em;
    color: #fff;
    height: 2em;
    line-height: 2em;
    text-align: center;
    width: 2em;
    z-index: 20; }
    .swal2-progresssteps .swal2-progresscircle:first-child {
      margin-left: 0; }
    .swal2-progresssteps .swal2-progresscircle:last-child {
      margin-right: 0; }
    .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
      background: #3085d6; }
      .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle {
        background: #add8e6; }
      .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
        background: #add8e6; }
  .swal2-progresssteps .swal2-progressline {
    background: #3085d6;
    height: .4em;
    margin: 0 -1px;
    z-index: 10; }

[class^='swal2'] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7); }
  45% {
    transform: scale(1.05); }
  80% {
    transform: scale(0.95); }
  100% {
    transform: scale(1); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0.5);
    opacity: 0; } }

.swal2-show {
  animation: showSweetAlert .3s; }
  .swal2-show.swal2-noanimation {
    animation: none; }

.swal2-hide {
  animation: hideSweetAlert .15s forwards; }
  .swal2-hide.swal2-noanimation {
    animation: none; }

@keyframes animate-success-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animate-success-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg); } }

.swal2-animate-success-line-tip {
  animation: animate-success-tip .75s; }

.swal2-animate-success-line-long {
  animation: animate-success-long .75s; }

.swal2-success.swal2-animate-success-icon .swal2-success-circular-line-right {
  animation: rotatePlaceholder 4.25s ease-in; }

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

.swal2-animate-error-icon {
  animation: animate-error-icon .5s; }

@keyframes animate-x-mark {
  0% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.swal2-animate-x-mark {
  animation: animate-x-mark .5s; }

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

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

html, body {
  height: 100%; }

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

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

body {
  background: #ffffff;
  color: #1E1E1E;
  cursor: auto;
  font-family: "Roboto", "Roboto Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative; }

a:hover {
  cursor: pointer; }

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

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

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

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

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

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

@media only screen and (max-width: 40em) {
  .small-only-text-left {
    text-align: left !important; }
  .small-only-text-right {
    text-align: right !important; }
  .small-only-text-center {
    text-align: center !important; }
  .small-only-text-justify {
    text-align: justify !important; } }

@media small-up {
  .small-text-left {
    text-align: left !important; }
  .small-text-right {
    text-align: right !important; }
  .small-text-center {
    text-align: center !important; }
  .small-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  .medium-only-text-left {
    text-align: left !important; }
  .medium-only-text-right {
    text-align: right !important; }
  .medium-only-text-center {
    text-align: center !important; }
  .medium-only-text-justify {
    text-align: justify !important; } }

@media medium-up {
  .medium-text-left {
    text-align: left !important; }
  .medium-text-right {
    text-align: right !important; }
  .medium-text-center {
    text-align: center !important; }
  .medium-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  .large-only-text-left {
    text-align: left !important; }
  .large-only-text-right {
    text-align: right !important; }
  .large-only-text-center {
    text-align: center !important; }
  .large-only-text-justify {
    text-align: justify !important; } }

@media large-up {
  .large-text-left {
    text-align: left !important; }
  .large-text-right {
    text-align: right !important; }
  .large-text-center {
    text-align: center !important; }
  .large-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  .xlarge-only-text-left {
    text-align: left !important; }
  .xlarge-only-text-right {
    text-align: right !important; }
  .xlarge-only-text-center {
    text-align: center !important; }
  .xlarge-only-text-justify {
    text-align: justify !important; } }

@media xlarge-up {
  .xlarge-text-left {
    text-align: left !important; }
  .xlarge-text-right {
    text-align: right !important; }
  .xlarge-text-center {
    text-align: center !important; }
  .xlarge-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  .xxlarge-only-text-left {
    text-align: left !important; }
  .xxlarge-only-text-right {
    text-align: right !important; }
  .xxlarge-only-text-center {
    text-align: center !important; }
  .xxlarge-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 120.0625em) {
  .xxlarge-text-left {
    text-align: left !important; }
  .xxlarge-text-right {
    text-align: right !important; }
  .xxlarge-text-center {
    text-align: center !important; }
  .xxlarge-text-justify {
    text-align: justify !important; } }

/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li, h1, .h1, .productView-price .price--withoutTax, h2, .h2, .page-heading, h3, .h3, .card .price--withoutTax, .section-header, h4, .h4, .rte h3, .rte .h3, .rte .card .price--withoutTax, .card .rte .price--withoutTax, .rte .section-header, .actionBar-section .form-label, h5, .h5, h6, .h6,
pre,
form, p, .p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

/* Default Link Styles */
a {
  color: #008CBA;
  line-height: inherit;
  text-decoration: none; }
  a:hover, a:focus {
    color: #0078a0; }
  a img {
    border: none; }

/* Default paragraph styles */
p, .p {
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility; }
  p.lead, .lead.p {
    font-size: 1.21875rem;
    line-height: 1.6; }
  p aside, .p aside {
    font-size: 0.875rem;
    font-style: italic;
    line-height: 1.35; }

/* Default header styles */
h1, .h1, .productView-price .price--withoutTax, h2, .h2, .page-heading, h3, .h3, .card .price--withoutTax, .section-header, h4, .h4, .rte h3, .rte .h3, .rte .card .price--withoutTax, .card .rte .price--withoutTax, .rte .section-header, .actionBar-section .form-label, h5, .h5, h6, .h6 {
  color: #1E1E1E;
  font-family: "Roboto", "Roboto Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  text-rendering: optimizeLegibility; }
  h1 small, .h1 small, .productView-price .price--withoutTax small, h2 small, .h2 small, .page-heading small, h3 small, .h3 small, .card .price--withoutTax small, .section-header small, h4 small, .h4 small, .rte h3 small, .rte .h3 small, .rte .card .price--withoutTax small, .card .rte .price--withoutTax small, .rte .section-header small, .actionBar-section .form-label small, h5 small, .h5 small, h6 small, .h6 small {
    color: #6d6d6d;
    font-size: 60%;
    line-height: 0; }

h1, .h1, .productView-price .price--withoutTax {
  font-size: 2.125rem; }

h2, .h2, .page-heading {
  font-size: 1.6875rem; }

h3, .h3, .card .price--withoutTax, .section-header {
  font-size: 1.375rem; }

h4, .h4, .rte h3, .rte .h3, .rte .card .price--withoutTax, .card .rte .price--withoutTax, .rte .section-header, .actionBar-section .form-label {
  font-size: 1.125rem; }

h5, .h5 {
  font-size: 1.125rem; }

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

.subheader {
  line-height: 1.4;
  color: #6d6d6d;
  font-weight: normal;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem; }

hr {
  border: solid #DDDDDD;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
  margin: 1.25rem 0 1.1875rem; }

/* Helpful Typography Defaults */
em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 60%;
  line-height: inherit; }

code {
  background-color: #f8f8f8;
  border-color: #dfdfdf;
  border-style: solid;
  border-width: 1px;
  color: #333333;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  padding: 0.125rem 0.3125rem 0.0625rem; }

/* Lists */
ul,
ol,
dl {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  list-style-position: outside;
  margin-bottom: 1.25rem; }

ul {
  margin-left: 1.1rem; }

/* Unordered Lists */
ul li ul,
ul li ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

ul.square li ul, ul.circle li ul, ul.disc li ul {
  list-style: inherit; }

ul.square {
  list-style-type: square;
  margin-left: 1.1rem; }

ul.circle {
  list-style-type: circle;
  margin-left: 1.1rem; }

ul.disc {
  list-style-type: disc;
  margin-left: 1.1rem; }

/* Ordered Lists */
ol {
  margin-left: 1.4rem; }
  ol li ul,
  ol li ol {
    margin-left: 1.25rem;
    margin-bottom: 0; }

.no-bullet {
  list-style-type: none;
  margin-left: 0; }
  .no-bullet li ul,
  .no-bullet li ol {
    margin-left: 1.25rem;
    margin-bottom: 0;
    list-style: none; }

/* Definition Lists */
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold; }

dl dd {
  margin-bottom: 0.75rem; }

/* Abbreviations */
abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #1E1E1E;
  cursor: help; }

abbr {
  text-transform: none; }
  abbr[title] {
    border-bottom: 1px dotted #DDDDDD; }

/* Blockquotes */
blockquote {
  margin: 0 0 1.25rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #DDDDDD; }
  blockquote cite {
    display: block;
    font-size: 0.8125rem;
    color: #525252; }
    blockquote cite:before {
      content: "\2014 \0020"; }
    blockquote cite a,
    blockquote cite a:visited {
      color: #525252; }

blockquote,
blockquote p,
blockquote .p {
  line-height: 1.6;
  color: #6d6d6d; }

/* Microformats */
.vcard {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  border: 1px solid #DDDDDD;
  padding: 0.625rem 0.75rem; }
  .vcard li {
    margin: 0;
    display: block; }
  .vcard .fn {
    font-weight: bold;
    font-size: 0.9375rem; }

.vevent .summary {
  font-weight: bold; }

.vevent abbr {
  cursor: default;
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0 0.0625rem; }

@media medium-up {
  h1, .h1, .productView-price .price--withoutTax, h2, .h2, .page-heading, h3, .h3, .card .price--withoutTax, .section-header, h4, .h4, .rte h3, .rte .h3, .rte .card .price--withoutTax, .card .rte .price--withoutTax, .rte .section-header, .actionBar-section .form-label, h5, .h5, h6, .h6 {
    line-height: 1.4; }
  h1, .h1, .productView-price .price--withoutTax {
    font-size: 2.75rem; }
  h2, .h2, .page-heading {
    font-size: 2.3125rem; }
  h3, .h3, .card .price--withoutTax, .section-header {
    font-size: 1.6875rem; }
  h4, .h4, .rte h3, .rte .h3, .rte .card .price--withoutTax, .card .rte .price--withoutTax, .rte .section-header, .actionBar-section .form-label {
    font-size: 1.4375rem; }
  h5, .h5 {
    font-size: 1.125rem; }
  h6, .h6 {
    font-size: 1rem; } }

/*
       * Print styles.
       *
       * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
       * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
      */
@media print {
  * {
    background: transparent !important;
    color: #000000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.34in; }
  p, .p, h2, .h2, .page-heading, h3, .h3, .card .price--withoutTax, .section-header {
    orphans: 3;
    widows: 3; }
  h2, .h2, .page-heading, h3, .h3, .card .price--withoutTax, .section-header {
    page-break-after: avoid; } }

.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%;
  -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:before, .inner-wrap:after {
    content: " ";
    display: table; }
  .inner-wrap:after {
    clear: both; }

.tab-bar {
  -webkit-backface-visibility: hidden;
  background: #fff;
  color: #000;
  height: 70px;
  line-height: 70px;
  position: relative; }
  .tab-bar h1, .tab-bar .h1, .tab-bar .productView-price .price--withoutTax, .productView-price .tab-bar .price--withoutTax, .tab-bar h2, .tab-bar .h2, .tab-bar .page-heading, .tab-bar h3, .tab-bar .h3, .tab-bar .card .price--withoutTax, .card .tab-bar .price--withoutTax, .tab-bar .section-header, .tab-bar h4, .tab-bar .h4, .tab-bar .rte h3, .rte .tab-bar h3, .tab-bar .rte .h3, .rte .tab-bar .h3, .tab-bar .rte .card .price--withoutTax, .rte .card .tab-bar .price--withoutTax, .tab-bar .card .rte .price--withoutTax, .card .rte .tab-bar .price--withoutTax, .tab-bar .rte .section-header, .rte .tab-bar .section-header, .tab-bar .actionBar-section .form-label, .actionBar-section .tab-bar .form-label, .tab-bar h5, .tab-bar .h5, .tab-bar h6, .tab-bar .h6 {
    color: #000;
    font-weight: 700;
    line-height: 1.6;
    margin: 0; }
  .tab-bar h1, .tab-bar .h1, .tab-bar .productView-price .price--withoutTax, .productView-price .tab-bar .price--withoutTax, .tab-bar h2, .tab-bar .h2, .tab-bar .page-heading, .tab-bar h3, .tab-bar .h3, .tab-bar .card .price--withoutTax, .card .tab-bar .price--withoutTax, .tab-bar .section-header, .tab-bar h4, .tab-bar .h4, .tab-bar .rte h3, .rte .tab-bar h3, .tab-bar .rte .h3, .rte .tab-bar .h3, .tab-bar .rte .card .price--withoutTax, .rte .card .tab-bar .price--withoutTax, .tab-bar .card .rte .price--withoutTax, .card .rte .tab-bar .price--withoutTax, .tab-bar .rte .section-header, .rte .tab-bar .section-header, .tab-bar .actionBar-section .form-label, .actionBar-section .tab-bar .form-label {
    font-size: 1.125rem; }

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

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

.tab-bar-section {
  height: 70px;
  padding: 0 10px;
  position: absolute;
  text-align: center;
  top: 0; }
  .tab-bar-section.left {
    text-align: left; }
  .tab-bar-section.right {
    text-align: right; }
  .tab-bar-section.left {
    left: 0;
    right: 70px; }
  .tab-bar-section.right {
    left: 70px;
    right: 0; }
  .tab-bar-section.middle {
    left: 70px;
    right: 70px; }

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

.left-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 325px;
  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: 325px;
  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: 325px;
  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: 325px;
  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; }

ul.off-canvas-list {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  ul.off-canvas-list li label {
    background: #fff;
    border-bottom: 1px solid #DADADA;
    border-top: 1px solid #DADADA;
    color: #66BCFF;
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 17px 20px;
    text-transform: uppercase; }
  ul.off-canvas-list li a {
    border-bottom: 1px solid #DADADA;
    color: #66BCFF;
    display: block;
    padding: 17px 20px;
    transition: background 300ms ease; }
    ul.off-canvas-list li a:hover {
      background: #66BCFF; }
    ul.off-canvas-list li a:active {
      background: #66BCFF; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.left-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 325px;
  height: auto;
  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;
  -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; }
  .left-submenu * {
    -webkit-backface-visibility: hidden; }
  .left-submenu .back > a {
    background: #66BCFF;
    border-bottom: 1px solid #DADADA;
    border-top: none;
    color: #66BCFF;
    font-weight: bold;
    padding: 17px 20px;
    text-transform: uppercase;
    margin: 0; }
    .left-submenu .back > a:hover {
      background: #66BCFF;
      border-bottom: 1px solid #DADADA;
      border-top: none; }
    .left-submenu .back > a:before {
      content: "\AB";
      margin-right: .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;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 325px;
  height: auto;
  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;
  -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; }
  .right-submenu * {
    -webkit-backface-visibility: hidden; }
  .right-submenu .back > a {
    background: #66BCFF;
    border-bottom: 1px solid #DADADA;
    border-top: none;
    color: #66BCFF;
    font-weight: bold;
    padding: 17px 20px;
    text-transform: uppercase;
    margin: 0; }
    .right-submenu .back > a:hover {
      background: #66BCFF;
      border-bottom: 1px solid #DADADA;
      border-top: none; }
    .right-submenu .back > a:after {
      content: "\BB";
      margin-left: .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;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 325px;
  height: auto;
  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%;
  -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; }
  .top-submenu * {
    -webkit-backface-visibility: hidden; }
  .top-submenu .back > a {
    background: #66BCFF;
    border-bottom: 1px solid #DADADA;
    border-top: none;
    color: #66BCFF;
    font-weight: bold;
    padding: 17px 20px;
    text-transform: uppercase;
    margin: 0; }
    .top-submenu .back > a:hover {
      background: #66BCFF;
      border-bottom: 1px solid #DADADA;
      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;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 325px;
  height: auto;
  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%;
  -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; }
  .bottom-submenu * {
    -webkit-backface-visibility: hidden; }
  .bottom-submenu .back > a {
    background: #66BCFF;
    border-bottom: 1px solid #DADADA;
    border-top: none;
    color: #66BCFF;
    font-weight: bold;
    padding: 17px 20px;
    text-transform: uppercase;
    margin: 0; }
    .bottom-submenu .back > a:hover {
      background: #66BCFF;
      border-bottom: 1px solid #DADADA;
      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); }

.left-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
  content: "\BB";
  margin-left: .5rem;
  display: inline; }

.right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
  content: "\AB";
  margin-right: .5rem;
  display: inline; }

/* 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: #66BCFF;
    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: 8px;
        line-height: 20px;
        text-align: center;
        color: #66BCFF;
        opacity: 0.65;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: #66BCFF;
      opacity: 1; }

.slick-next,
.slick-prev {
  height: 61px;
  margin-top: -15px;
  padding: 10px;
  width: 40px;
  z-index: 2; }
  .slick-next::before,
  .slick-prev::before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    height: 41px;
    width: 20px;
    content: ''; }
  .slick-next:hover, .slick-next:focus,
  .slick-prev:hover,
  .slick-prev:focus {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%; }

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

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

.slick-dots {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin: 0;
  width: auto;
  left: 50%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0; }
  .slick-dots li {
    width: auto;
    height: auto;
    margin: 0; }
    .slick-dots li:not(:last-of-type) {
      margin-right: 20px; }
    .slick-dots li button {
      border: 1px solid #66BCFF;
      display: block;
      margin: 0;
      padding: 0;
      position: relative;
      text-align: center;
      width: 8px;
      height: 8px;
      background: #66BCFF;
      opacity: 0.65; }
      .slick-dots li button::before {
        display: none; }
      .slick-dots li button:hover {
        background: #66BCFF;
        opacity: 0.8; }
    .slick-dots li button {
      display: block;
      transition: background 100ms ease-out; }
    .slick-dots li.slick-active button {
      opacity: 1; }

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

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

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

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

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

.table-actions {
  text-align: center;
  text-align: right; }
  .table-actions .form {
    margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .table-actions {
      width: 100px; } }
  .table-actions .button {
    display: inline-block;
    margin-bottom: 0;
    width: auto; }
    @media only screen and (max-width: 767px) {
      .table-actions .button {
        padding: 0;
        min-width: 100px; } }
    @media only screen and (min-width: 480px) {
      .table-actions .button + .button {
        margin-left: 5px; } }

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

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

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

.form-wishlist {
  position: relative; }

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

#wishlist-dropdown {
  list-style: none; }
  #wishlist-dropdown.is-open {
    background: transparent;
    left: auto !important;
    max-width: none !important;
    width: 100% !important;
    z-index: 2; }
    #wishlist-dropdown.is-open:focus {
      outline: none; }
    #wishlist-dropdown.is-open [data-wishlist] {
      border-top: none;
      margin-bottom: 0px;
      width: 100%; }
    #wishlist-dropdown.is-open .button {
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      width: 100%; }
    #wishlist-dropdown.is-open .button--has-items {
      font-weight: 700; }
    #wishlist-dropdown.is-open li:not(:last-child) .button {
      border-bottom: none;
      border-radius: 0px;
      border-top: none;
      margin-bottom: 0px; }

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

.modal {
  border-radius: 0;
  display: none;
  width: 900px;
  z-index: 1005;
  background-color: #fff;
  border: 0;
  box-shadow: none;
  position: fixed;
  left: 50%;
  margin: 0;
  max-height: 90%;
  max-width: 95%;
  min-height: 240px;
  outline: none;
  overflow: hidden;
  padding: 0;
  top: 50% !important;
  transform: translate(-50%, -50%); }
  .modal .tooltip {
    display: none; }

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

.modal--alert {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 40px 20px 20px 20px;
  text-align: center; }
  .modal--alert .button-container {
    margin: 25px 0 0; }

.modal-header {
  padding-left: 20px;
  padding-right: 32px;
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-bottom: 1px solid #DADADA; }

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

.modal-close {
  height: 32px;
  width: 32px;
  color: #66BCFF;
  font-size: 26px;
  line-height: 32px;
  padding: 0;
  position: absolute;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  right: 10px;
  top: 15px; }
  @media only screen and (min-width: 768px) {
    .modal-close {
      font-size: 32px; } }
  .modal-close:hover {
    color: #000; }

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

.pagination {
  text-align: center; }
  @media only screen and (min-width: 991px) {
    .pagination {
      text-align: right; } }

.pagination-list {
  margin-bottom: 20px;
  text-align: center;
  position: relative; }
  .pagination-list:before, .pagination-list:after {
    content: " ";
    display: table; }
  .pagination-list:after {
    clear: both; }
  .pagination-list .pagination-item {
    display: inline-block; }

.pagination-title, .pagination-list {
  display: inline-block; }

.pagination-title {
  margin-right: 10px; }
  .pagination-title h4, .pagination-title .h4, .pagination-title .rte h3, .rte .pagination-title h3, .pagination-title .rte .h3, .rte .pagination-title .h3, .pagination-title .rte .card .price--withoutTax, .rte .card .pagination-title .price--withoutTax, .pagination-title .card .rte .price--withoutTax, .card .rte .pagination-title .price--withoutTax, .pagination-title .rte .section-header, .rte .pagination-title .section-header, .pagination-title .actionBar-section .form-label, .actionBar-section .pagination-title .form-label {
    margin-bottom: 0; }

.pagination-item {
  line-height: 1;
  margin-bottom: 0; }
  .pagination-item .pagination-link {
    text-decoration: none;
    color: inherit; }
    .pagination-item .pagination-link:hover {
      text-decoration: underline; }
  .pagination-item.pagination-item--page {
    margin-right: 10px; }
    .pagination-item.pagination-item--page a {
      display: block; }
  .pagination-item.pagination-item--current {
    color: #979797;
    text-decoration: underline; }
  .pagination-item.pagination-item--previous, .pagination-item.pagination-item--next {
    text-decoration: underline;
    margin-left: 10px;
    margin-right: 10px; }
    .pagination-item.pagination-item--previous:last-child, .pagination-item.pagination-item--next:last-child {
      margin-right: 0; }

.tabs {
  list-style: none;
  margin: 0;
  border-bottom: 1px solid #DADADA; }
  .tabs:before, .tabs:after {
    content: " ";
    display: table; }
  .tabs:after {
    clear: both; }

.tab {
  border: 0 none;
  float: none;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .tab {
      float: left;
      margin-right: 45px; } }
  .tab::after {
    content: '';
    opacity: 0;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    background-color: #1E1E1E; }
  .tab .tab-title {
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    color: inherit; }
    @media only screen and (min-width: 768px) {
      .tab .tab-title {
        padding: 10px 20px; } }
    .tab .tab-title:focus {
      outline: none; }
  .tab.is-active, .tab:hover {
    color: #1E1E1E; }
    .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-navigation {
  margin-top: -1px;
  position: relative;
  text-decoration: none;
  cursor: pointer; }
  .accordion-navigation .icon {
    height: 11px;
    width: 11px; }
  .accordion-navigation .accordion-navigation-actions {
    right: 10px;
    top: 12px;
    position: absolute; }
    @media only screen and (min-width: 768px) {
      .accordion-navigation .accordion-navigation-actions {
        right: 0;
        top: 50%;
        transform: translateY(-50%); } }

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

@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 {
    padding-bottom: 10px;
    border-bottom: 1px solid #DADADA; } }

.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 {
  font-weight: normal;
  text-decoration: none;
  margin-bottom: 10px; }

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

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

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

.accordion-navigation-actions {
  position: absolute; }
  .accordion-navigation-actions > a {
    color: #979797;
    vertical-align: middle; }
    .accordion-navigation-actions > a:hover {
      color: #1E1E1E; }

/*
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 {
  max-width: 100%;
  height: auto; }

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 {
  padding-top: 40px;
  margin-bottom: 40px;
  text-align: center; }

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

.definitionList:after {
  clear: both; }

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

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

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);
  display: none;
  z-index: 5;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 1;
  right: 0;
  top: 0;
  transition: opacity 250ms ease-out, transform 250ms ease-out;
  width: 100%;
  position: absolute; }
  .loadingOverlay::before {
    height: 2.66667rem;
    width: 2.66667rem;
    border-radius: 2.66667rem;
    border: 2px solid;
    border-color: #fff #fff #989898 #989898;
    content: "";
    display: block;
    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;
    -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); }

.actionBar-section {
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .actionBar-section {
      margin-bottom: 0; }
      .actionBar-section .form-field {
        float: right; } }
  .actionBar-section .form-label {
    margin-bottom: 0;
    margin-right: 5px; }
  .actionBar-section .form-input,
  .actionBar-section .form-select {
    width: auto;
    border: 1px solid #DADADA; }
  .actionBar-section .form-label,
  .actionBar-section .form-input,
  .actionBar-section .form-select {
    display: inline-block; }
  .actionBar-section .form-field {
    margin-bottom: 0; }
  .actionBar-section .form-select {
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .actionBar-section .form-select {
        width: 180px; } }

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

.cookieMessage {
  display: none;
  position: fixed;
  z-index: 9999;
  background: #fafafa;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #DADADA; }
  .cookieMessage .cookieMessage-container {
    margin: 0 auto;
    padding: 20px; }
    @media only screen and (min-width: 768px) {
      .cookieMessage .cookieMessage-container {
        display: flex;
        justify-content: space-between;
        align-items: center; } }
  @media only screen and (min-width: 768px) {
    .cookieMessage .cookieMessage-text {
      padding-right: 20px; } }
  @media only screen and (min-width: 768px) {
    .cookieMessage .cookieMessage-text p, .cookieMessage .cookieMessage-text .p {
      margin: 0; } }
  .cookieMessage .button {
    width: 100%; }

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

.icon--ratingEmpty svg {
  fill: none;
  stroke: #0079a1;
  stroke-miterlimit: 10; }

.icon--ratingFull svg {
  fill: #0079a1;
  stroke: #0079a1;
  stroke-miterlimit: 10; }

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

.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: 25px; }
  .videoGallery-main.widescreen {
    padding-bottom: 56.34%; }
  .videoGallery-main.vimeo {
    padding-top: 0; }
  .videoGallery-main iframe,
  .videoGallery-main object,
  .videoGallery-main embed,
  .videoGallery-main video {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0; }

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

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

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

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

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

.alertBox {
  display: flex;
  color: #1E1E1E; }

.alertBox-icon {
  margin-right: 10px; }
  .alertBox-icon .icon {
    width: 25px;
    height: 25px; }
    .alertBox-icon .icon > svg {
      fill: #66BCFF; }

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

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

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

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

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

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

.quickView:after {
  clear: both; }

.banners {
  background-color: #66BCFF;
  color: #ffffff; }
  .banners p:last-child, .banners .p:last-child {
    margin-bottom: 0; }

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

.banner a {
  color: #ffffff; }

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

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

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

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

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

body.hasAdminBar {
  padding-top: 101px; }
  @media only screen and (min-width: 768px) {
    body.hasAdminBar {
      padding-top: 0; }
      body.hasAdminBar .banners {
        margin-top: 46px; }
      body.hasAdminBar .header {
        padding-top: 0; } }
  body.hasAdminBar .header {
    padding-top: 46px; }

.adminBar {
  background-color: #fff;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
  color: #626568;
  float: left;
  font-family: "Roboto", "Roboto Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  height: 46px;
  left: 0;
  position: fixed;
  text-decoration: none;
  top: 0;
  width: 100%;
  z-index: 10000; }

.adminBar-logo {
  background-color: #273a8a;
  float: left;
  height: 46px;
  width: 45px; }
  .adminBar-logo svg {
    height: 100%;
    padding: 7px 10px 11px 7px;
    width: 100%; }

.adminBar-content {
  align-items: center;
  display: flex;
  height: 46px;
  justify-content: space-between;
  margin-left: 45px;
  padding: 17px 20.5px 14px 20px; }
  .adminBar-content a {
    color: #4b71fc;
    font-weight: 600;
    text-decoration: none; }

.adminBar-private {
  float: right;
  text-align: right; }
  .adminBar-private span {
    white-space: nowrap; }

.preview {
  font-weight: 400;
  padding-left: 9px; }

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

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

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

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

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

.breadcrumb {
  display: inline-block;
  float: none;
  font-size: 16px; }
  .breadcrumb .separator {
    padding: 0 8px 0 4px; }
  .breadcrumb.is-active > .breadcrumb-label {
    cursor: text;
    text-decoration: none; }

.breadcrumb-label {
  text-decoration: underline; }

.sidebarBlock {
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .sidebarBlock {
      margin-bottom: 30px; } }
  .sidebarBlock .accordion-title {
    font-weight: 500;
    padding: 5px 0;
    margin-bottom: 5px; }

.sidebarBlock-heading {
  margin-bottom: 5px;
  border-bottom: 1px solid #DADADA;
  padding-bottom: 10px; }

.swal2-buttonswrapper .button {
  padding: 0 10px;
  min-width: 110px; }
  @media only screen and (min-width: 768px) {
    .swal2-buttonswrapper .button {
      min-width: 140px; } }

.swal2-buttonswrapper .button + .button {
  margin-left: 14px; }

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

.lazyload[data-bg],
.lazyloading[data-bg] {
  background-size: 150px !important;
  background-position: center !important;
  background-repeat: no-repeat !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; }

.common-banner {
  background-color: #000;
  padding: 37px 0;
  margin-bottom: 20px;
  background-position: center; }
  .common-banner * {
    color: #fff; }
  .common-banner.text-blue * {
    color: #66BCFF; }
  .common-banner .h2 {
    margin-bottom: 5px; }
  .common-banner :last-child {
    margin-bottom: 0; }

.card {
  padding-bottom: 10px;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .card.productCard {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid transparent; }
  .card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px); }
    .card:hover.productCard {
      border-color: #66BCFF; }
    .card:hover .card-figcaption {
      opacity: 1;
      pointer-events: auto;
      background-color: rgba(41, 41, 42, 0.15);
      height: 100%; }
      .card:hover .card-figcaption .card-figcaption-body {
        margin-top: 50%; }
  @media only screen and (max-width: 767px) {
    .card {
      max-width: 320px;
      margin: 0 auto 25px; } }
  @media only screen and (min-width: 768px) {
    .card {
      margin-bottom: 30px; } }
  @media only screen and (min-width: 991px) {
    .card {
      margin-bottom: 35px; } }

.card-badge {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 8px 14px;
  z-index: 1;
  font-weight: 700;
  border-radius: 4px 0 4px 0; }
  @media only screen and (min-width: 768px) {
    .card-badge {
      font-size: 15px;
      padding: 10px 16px; } }
  .card-badge.badge-sale {
    background-color: #66BCFF;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px; }
    .card-badge.badge-sale span {
      padding-left: 0; }

.card-figure {
  border: 1px solid #DADADA;
  margin: 0 0 10px;
  text-align: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .card-figure {
      margin: 0 0 12px; } }
  .card-figure .card-figcaption {
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 3; }
  .card-figure::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease;
    content: "";
    pointer-events: none;
    z-index: 2; }
  .card-figure:hover .card-figcaption {
    opacity: 1; }

.card-square-images .card-figure > a {
  padding-top: 100%;
  position: relative;
  display: block; }
  .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%;
    position: absolute;
    top: 50%;
    width: 99%;
    max-width: 100%;
    max-height: 100%; }

.card-figcaption {
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none; }

.card-figcaption-body {
  display: inline-block;
  pointer-events: all; }

.card-image {
  border: 0;
  display: flex;
  margin: auto;
  width: 100%;
  object-fit: contain;
  /* Object-fit polyfill */
  font-family: "object-fit: contain;"; }

.card-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f5; }

.card-title {
  margin-bottom: 12px;
  min-height: 40px;
  padding: 0 15px; }
  @media only screen and (min-width: 768px) {
    .card-title {
      padding: 0 20px;
      min-height: 48px; } }
  @media only screen and (min-width: 991px) {
    .card-title {
      padding: 0 25px; } }
  .card-title > a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease; }
    .card-title > a:hover {
      color: #66BCFF; }

.card-text {
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0; }
  .card-text abbr {
    border: 0;
    color: inherit;
    font-size: inherit; }

.card-action {
  overflow: hidden; }

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

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

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

.productCarousel {
  margin-left: -22px;
  margin-right: -11px; }
  .productCarousel .productCarousel-slide {
    padding: 0 11px 0 22px;
    height: 100%; }
  .js .productCarousel {
    max-height: 480px;
    opacity: 0;
    overflow: hidden;
    transition: opacity 300ms ease-out; }
  .productCarousel.slick-initialized {
    max-height: none;
    opacity: 1;
    overflow: visible; }

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

.price-section {
  display: inline-block; }
  .price-section.non-sale-price--withoutTax {
    color: #000000;
    text-decoration: line-through;
    margin-right: 4px; }
  .price-section .price--withoutTax {
    color: #66BCFF; }

.card .card-form {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px; }
  @media only screen and (min-width: 768px) {
    .card .card-form {
      padding: 0 20px; } }
  .card .card-form .button {
    width: 100%;
    max-width: 280px; }

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

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

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

.navList-action {
  margin-left: 10px;
  margin-bottom: 5px;
  display: block; }
  .navList-action.is-selected {
    text-decoration: underline; }

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

.navList-action--checkbox {
  display: inline-block;
  padding-left: 35px;
  position: relative;
  width: 100%; }
  .navList-action--checkbox:before, .navList-action--checkbox:after {
    display: block;
    position: absolute;
    top: 50%; }
  .navList-action--checkbox:before {
    left: 0;
    content: "";
    margin-top: -8px;
    border-radius: 0;
    border: 1px solid #66BCFF;
    width: 16px;
    height: 16px; }
  .navList-action--checkbox:after {
    height: 14px;
    left: 1px;
    opacity: 0;
    top: 1px;
    width: 14px;
    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(79, 79, 79, 0.999)' /%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    color: rgba(79, 79, 79, 0.999);
    content: "";
    font-size: 14px;
    line-height: 1;
    text-align: center; }
  .navList-action--checkbox.is-checked::after, .navList-action--checkbox.is-selected::after {
    opacity: 1; }

.navList-action-close {
  background: #eeeeee;
  border-radius: 100%;
  display: inline-block;
  float: right;
  margin-right: 5px;
  line-height: 0;
  opacity: 0;
  padding: 4px;
  transition: opacity 0.3s ease;
  visibility: hidden; }
  .navList-action-close .icon {
    height: 9px;
    width: 9px;
    fill: #1E1E1E; }

@media only screen and (max-width: 767px) {
  .navList-action.is-selected .navList-action-close {
    opacity: 1;
    visibility: visible; } }

.navBar--sub {
  text-align: center;
  border-bottom: 1px solid #DADADA;
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .navBar--sub {
      margin-bottom: 50px; } }
  .navBar--sub .navBar-section {
    float: none;
    margin: 0;
    list-style: none; }
  .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: #1E1E1E; }
      .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 #979797;
        margin: 0;
        padding-left: 10px; } }
  .navBar--sub .navBar-action {
    padding: 10px;
    display: block; }
    .navBar--sub .navBar-action:hover {
      color: #1E1E1E; }
  .navBar--sub.navBar--left {
    text-align: left; }
    .navBar--sub.navBar--left .navBar-section {
      background-color: #ffffff;
      border: 1px solid #e8e8e8;
      padding: 5px 20px; }
    .navBar--sub.navBar--left .navBar-item {
      border-bottom: 1px solid #e8e8e8;
      padding: 10px 0;
      margin: 0;
      display: block; }
      .navBar--sub.navBar--left .navBar-item:last-child {
        border-bottom: none; }

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

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

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

.left-off-canvas-menu,
.right-off-canvas-menu {
  position: fixed;
  top: 0; }
  .left-off-canvas-menu a.close,
  .right-off-canvas-menu a.close {
    top: 15px;
    right: 10px; }
    .left-off-canvas-menu a.close svg,
    .right-off-canvas-menu a.close svg {
      fill: #66BCFF; }

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

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

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

.off-canvas-list {
  position: relative;
  font-size: 16px;
  list-style-type: none;
  padding: 0;
  border-top: 1px solid #dadada; }
  .off-canvas-list li.offcanvas-divider label {
    font-weight: 700; }
  .off-canvas-list li.loadingOverlay {
    top: 35px; }

.off-canvas-list-menu li .offcanvasLabel,
.sidebar-offcanvas li .offcanvasLabel,
.off-canvas-list-cart li .offcanvasLabel {
  background: #fff;
  border-bottom: 1px solid #DADADA;
  color: #66BCFF;
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  padding: 17px 20px;
  text-transform: uppercase;
  padding-top: 21px;
  padding-bottom: 20px; }

.off-canvas-list-menu li a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700; }
  .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::after {
  position: absolute;
  margin-top: -1px;
  margin-right: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  border: 1px solid #66BCFF;
  border-left: 0 none;
  border-top: 0 none; }

.off-canvas-list-menu li.back > a {
  color: #fff;
  padding-left: 40px; }
  .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;
    left: 20px;
    content: "" !important; }

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

.off-canvas-list-menu li.has-submenu > a:hover::after {
  border-color: #fff; }

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

.offcanvas-search {
  border-bottom: 1px solid #DADADA;
  display: block;
  padding: 15px 20px;
  position: relative;
  margin: 0; }
  .offcanvas-search .form {
    margin: 0;
    position: relative; }
    .offcanvas-search .form .form-field {
      margin: 0; }
      .offcanvas-search .form .form-field .form-input {
        width: 100%;
        display: block;
        padding-left: 35px; }
    .offcanvas-search .form button {
      position: absolute;
      left: 0;
      height: 100%;
      top: 0;
      padding: 0 10px;
      -webkit-appearance: none;
      -khtml-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      -o-appearance: none;
      appearance: none;
      border: 0 none;
      background: transparent; }
      .offcanvas-search .form button .icon {
        font-size: 0;
        display: block;
        padding: 0;
        width: 20px;
        height: 20px; }

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

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

.off-canvas-list-cart li.offcanvasAction-checkout, .off-canvas-list-cart li.offcanvasAction-viewCart {
  width: 50%;
  float: left;
  white-space: nowrap; }
  .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: 20px; }

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

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

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

.offcanvasAction-additionalCheckoutButton {
  width: 50%;
  padding: 0 10px;
  float: left;
  margin-top: 20px; }
  .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-right: 10px;
      padding-left: 5px; }
  .offcanvasAction-additionalCheckoutButton .PayPalExpressCheckout p, .offcanvasAction-additionalCheckoutButton .PayPalExpressCheckout .p {
    text-align: center;
    display: none; }
  .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 {
    float: none;
    display: block;
    width: 100%; }

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

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

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

.sidebar-offcanvas .accordion-block {
  border-bottom: 1px solid #DADADA; }
  .sidebar-offcanvas .accordion-block .accordion-title {
    margin: 0;
    font-size: 16px;
    padding: 18px 0 15px 20px;
    display: block;
    text-transform: uppercase;
    font-size: 700; }
  .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 {
  padding: 20px 0;
  text-align: center;
  font-size: 0; }
  .mobile-facet-footer .button {
    width: 132px;
    margin: 0 10px; }

.socialLinks {
  list-style: none;
  margin: 0;
  padding: 0; }
  .socialLinks .icon {
    margin: 0;
    overflow: hidden;
    text-decoration: none;
    text-align: left;
    color: #66BCFF;
    display: block; }
    .socialLinks .icon:hover {
      color: #000; }
    .socialLinks .icon svg {
      fill: currentColor;
      transition: fill 0.15s ease, transform 0.15s ease;
      height: 30px;
      width: 30px; }

.socialLinks-item {
  display: inline-block;
  font-size: 0; }
  .socialLinks-item:not(:last-of-type) {
    padding-right: 10px; }
  .socialLinks .socialLinks-item {
    margin-bottom: 5px;
    margin-right: 25px; }
    .socialLinks .socialLinks-item:last-child {
      margin-right: 0; }

.socialLinks--alt svg {
  fill: #979797; }

.socialLinks--flex .socialLinks-item {
  margin: 0; }

.hero.wrapper {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto; }
  @media only screen and (min-width: 768px) {
    .hero.wrapper {
      margin-top: 1rem;
      grid-template-columns: 75% 25%; } }
  .hero.wrapper .hero-categories {
    display: none; }
    @media only screen and (min-width: 768px) {
      .hero.wrapper .hero-categories {
        height: 100%;
        display: flex;
        flex-direction: column; }
        .hero.wrapper .hero-categories .single-promo {
          margin: 0;
          padding: 0; }
          .hero.wrapper .hero-categories .single-promo .promo-heading-bar {
            margin-top: 0; }
        .hero.wrapper .hero-categories .single-promo:first-of-type {
          padding-bottom: 0.5rem; }
        .hero.wrapper .hero-categories .single-promo:last-of-type {
          padding-top: 0.5rem; } }

.heroCarousel {
  display: flex;
  overflow: visible;
  aspect-ratio: 2368/948; }
  .heroCarousel .slick-slide {
    height: 80vh;
    min-height: 180px;
    max-height: 400px;
    aspect-ratio: 2368/948; }
    @media only screen and (min-width: 768px) {
      .heroCarousel .slick-slide {
        min-height: 300px;
        max-height: 450px; } }
  .js .heroCarousel {
    overflow: hidden;
    min-height: 180px;
    max-height: 400px;
    margin-bottom: 25px; }
    @media only screen and (min-width: 768px) {
      .js .heroCarousel {
        min-height: 300px;
        max-height: 450px; } }
    @media only screen and (min-width: 991px) {
      .js .heroCarousel {
        margin-bottom: 0; } }
    .js .heroCarousel:not(.slick-initialized) > :first-child {
      display: block;
      opacity: 1; }
    .js .heroCarousel:not(.slick-initialized) > :not(:first-child) {
      display: none; }
  .heroCarousel.slick-initialized {
    opacity: 1;
    overflow: visible; }
  .heroCarousel .slick-next,
  .heroCarousel .slick-prev {
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    fill: #fff;
    width: 44px;
    height: 44px;
    min-height: 44px;
    min-width: 44px;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center; }
    .heroCarousel .slick-next:hover,
    .heroCarousel .slick-prev:hover {
      background: rgba(0, 0, 0, 0.7); }
    @media only screen and (min-width: 991px) {
      .heroCarousel .slick-next,
      .heroCarousel .slick-prev {
        width: 56px;
        height: 56px; } }
    .heroCarousel .slick-next svg,
    .heroCarousel .slick-prev svg {
      height: 28px;
      width: 28px; }
      @media only screen and (min-width: 991px) {
        .heroCarousel .slick-next svg,
        .heroCarousel .slick-prev svg {
          width: 36px;
          height: 36px; } }
  .heroCarousel .slick-next {
    right: 15px; }
    @media only screen and (min-width: 991px) {
      .heroCarousel .slick-next {
        right: 30px; } }
  .heroCarousel .slick-prev {
    left: 15px; }
    @media only screen and (min-width: 991px) {
      .heroCarousel .slick-prev {
        left: 30px; } }
  .heroCarousel .slick-dots {
    bottom: 12px; }
    @media only screen and (min-width: 768px) {
      .heroCarousel .slick-dots {
        bottom: 20px;
        z-index: 3; } }
    .heroCarousel .slick-dots li button {
      width: 10px;
      height: 10px;
      border: 2px solid #fff;
      background-color: transparent;
      border-radius: 50% !important;
      opacity: 0.7;
      transition: opacity 0.2s ease, background-color 0.2s ease; }
      @media only screen and (min-width: 768px) {
        .heroCarousel .slick-dots li button {
          width: 12px;
          height: 12px; } }
    .heroCarousel .slick-dots li.slick-active button {
      background-color: #66BCFF;
      border-color: #66BCFF;
      opacity: 1; }
    .heroCarousel .slick-dots li:hover button {
      opacity: 1; }

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

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

.heroCarousel-image-wrapper {
  height: 100%;
  max-height: 450px; }
  .heroCarousel-image-wrapper .heroCarousel-image {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center; }

.heroCarousel-slide--first .heroCarousel-content {
  margin: 0 auto; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--first .heroCarousel-content {
      margin: 1rem 8rem 1rem auto;
      text-align: end; } }

.heroCarousel-content {
  left: 0;
  margin: 0 auto;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 20px;
  max-width: 90%; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-content {
      max-width: 80%;
      padding: 30px; } }
  @media only screen and (min-width: 991px) {
    .heroCarousel-content {
      max-width: 70%;
      padding: 40px; } }
  .heroCarousel-content .heroCarousel-description {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 15px; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-content .heroCarousel-description {
        font-size: 22px;
        margin-bottom: 25px; } }
    @media only screen and (min-width: 991px) {
      .heroCarousel-content .heroCarousel-description {
        font-size: 28px;
        margin-bottom: 30px; } }
  .heroCarousel-content .heroCarousel-action.button {
    font-size: 14px;
    padding: 0 25px;
    height: 38px;
    line-height: 34px; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-content .heroCarousel-action.button {
        font-size: 16px;
        padding: 0 35px;
        height: 42px;
        line-height: 38px; } }
    @media only screen and (min-width: 991px) {
      .heroCarousel-content .heroCarousel-action.button {
        height: 45px;
        line-height: 41px;
        padding: 0 40px;
        font-size: 16px; } }
  .heroCarousel-content.heroCarousel-content--empty {
    background-color: transparent; }

.heroCarousel-slide--custom {
  height: 150px;
  background-size: contain;
  background-position: center;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom {
      height: 330px; } }
  @media only screen and (min-width: 991px) {
    .heroCarousel-slide--custom {
      height: 480px; } }
  .heroCarousel-slide--custom .wrapper {
    height: 100%;
    text-align: right; }
    @media only screen and (max-width: 990px) {
      .heroCarousel-slide--custom .wrapper {
        margin-right: 0px; } }
    .heroCarousel-slide--custom .wrapper.gst9 {
      margin-right: 0px; }
      @media only screen and (min-width: 1200px) {
        .heroCarousel-slide--custom .wrapper.gst9 {
          margin-right: auto; } }
  .heroCarousel-slide--custom .heroCarousel-content--custom {
    text-align: center;
    display: inline-block; }
    .heroCarousel-slide--custom .heroCarousel-content--custom.align-left {
      float: left;
      text-align: left; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom {
        padding-right: 44px; }
        .heroCarousel-slide--custom .heroCarousel-content--custom.align-left {
          padding-left: 144px; } }
  .heroCarousel-slide--custom .button {
    border-radius: 4px;
    padding: 0 40px;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .button {
        height: 28px;
        line-height: 24px;
        padding: 0 11px;
        font-size: 14px; } }
  .heroCarousel-slide--custom .large-bg,
  .heroCarousel-slide--custom .mobile-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none; }
  @media only screen and (min-width: 1760px) {
    .heroCarousel-slide--custom .large-bg {
      display: block; } }
  @media only screen and (max-width: 479px) {
    .heroCarousel-slide--custom .mobile-bg {
      display: block; } }

.heroCarousel-title,
.heroCarousel-description {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  line-height: 1.3; }

.heroCarousel-title {
  font-size: 20px;
  margin-bottom: 12px; }
  @media only screen and (min-width: 480px) {
    .heroCarousel-title {
      font-size: 24px;
      margin-bottom: 15px; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-title {
      font-size: 32px;
      margin-bottom: 20px; } }
  @media only screen and (min-width: 991px) {
    .heroCarousel-title {
      font-size: 42px;
      margin-bottom: 25px; } }
  @media only screen and (min-width: 1200px) {
    .heroCarousel-title {
      font-size: 52px;
      margin-bottom: 30px; } }
  .heroCarousel-title.heading {
    margin-bottom: 8px; }

@media only screen and (max-width: 767px) {
  .heroCarousel-description {
    margin-bottom: 20px; } }

@media only screen and (max-width: 990px) {
  .heroCarousel-description.main-text {
    margin-bottom: 10px;
    font-size: 18px; } }

@media only screen and (min-width: 768px) {
  .heroCarousel-description.main-text {
    font-size: 30px; } }

@media only screen and (min-width: 991px) {
  .heroCarousel-description.main-text {
    margin-bottom: 20px; } }

@media only screen and (min-width: 1200px) {
  .heroCarousel-description.main-text {
    margin-bottom: 30px;
    font-size: 52px; } }

.heroCarousel-description.shipping-text {
  font-size: 13px;
  margin-top: 15px; }
  @media only screen and (min-width: 480px) {
    .heroCarousel-description.shipping-text {
      font-size: 18px;
      margin-top: 10px; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-description.shipping-text {
      font-size: 22px;
      margin-top: 10px; } }
  @media only screen and (min-width: 991px) {
    .heroCarousel-description.shipping-text {
      font-size: 28px;
      margin-top: 20px; } }
  @media only screen and (min-width: 1200px) {
    .heroCarousel-description.shipping-text {
      font-size: 28px;
      margin-top: 32px; } }

@media only screen and (max-width: 767px) {
  .hero.wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden; }
  .heroCarousel,
  .heroCarousel.slick-initialized {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-height: 0;
    max-height: none; }
  .heroCarousel .slick-list {
    width: 100%;
    max-width: 100%;
    overflow: hidden; }
  .heroCarousel .slick-slide {
    max-width: 100%;
    overflow: hidden; }
  .heroCarousel .slick-slide.heroCarousel-slide--custom,
  .heroCarousel-slide--custom {
    width: 100%;
    height: calc(100vw * 948 / 2368) !important;
    min-height: 130px;
    max-height: 230px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat; }
  .heroCarousel .heroCarousel-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    max-height: none;
    overflow: hidden;
    line-height: 0; }
  .heroCarousel .heroCarousel-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    object-fit: contain;
    object-position: center center; } }

@keyframes bannerSweep {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(250%); } }

@keyframes bannerEdgePulse {
  0%, 100% {
    opacity: 0.5; }
  50% {
    opacity: 1; } }

@keyframes cornerShift {
  0%, 100% {
    opacity: 0.6; }
  50% {
    opacity: 1; } }

.heroCarousel .heroCarousel-slide--first,
.heroCarousel .heroCarousel-slide--custom.slide-1 {
  position: relative;
  overflow: hidden; }
  .heroCarousel .heroCarousel-slide--first::before,
  .heroCarousel .heroCarousel-slide--custom.slide-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    border: 2px solid white;
    box-shadow: 0 0 30px 8px rgba(102, 188, 255, 0.5), 0 0 60px 16px rgba(102, 188, 255, 0.2), inset 0 0 30px 4px rgba(102, 188, 255, 0.15);
    animation: bannerEdgePulse 2.5s ease-in-out infinite;
    will-change: opacity; }
    @media (prefers-reduced-motion: reduce) {
      .heroCarousel .heroCarousel-slide--first::before,
      .heroCarousel .heroCarousel-slide--custom.slide-1::before {
        animation: none;
        display: none; } }
  .heroCarousel .heroCarousel-slide--first .heroCarousel-image-wrapper::before,
  .heroCarousel .heroCarousel-slide--custom.slide-1 .heroCarousel-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0.12) 44%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.12) 56%, rgba(255, 255, 255, 0.04) 62%, transparent 75%);
    animation: bannerSweep 3.5s ease-in-out infinite;
    will-change: transform; }
    @media (prefers-reduced-motion: reduce) {
      .heroCarousel .heroCarousel-slide--first .heroCarousel-image-wrapper::before,
      .heroCarousel .heroCarousel-slide--custom.slide-1 .heroCarousel-image-wrapper::before {
        animation: none;
        display: none; } }
  .heroCarousel .heroCarousel-slide--first::after,
  .heroCarousel .heroCarousel-slide--custom.slide-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 0% 0%, rgba(102, 188, 255, 0.4) 0%, transparent 30%), radial-gradient(circle at 100% 0%, rgba(102, 188, 255, 0.4) 0%, transparent 30%), radial-gradient(circle at 0% 100%, rgba(102, 188, 255, 0.35) 0%, transparent 30%), radial-gradient(circle at 100% 100%, rgba(102, 188, 255, 0.35) 0%, transparent 30%);
    animation: cornerShift 3s ease-in-out infinite; }
  .heroCarousel .heroCarousel-slide--first .heroCarousel-content,
  .heroCarousel .heroCarousel-slide--custom.slide-1 .heroCarousel-content {
    z-index: 2; }
  .heroCarousel .heroCarousel-slide--first .heroCarousel-content--custom,
  .heroCarousel .heroCarousel-slide--custom.slide-1 .heroCarousel-content--custom {
    position: relative;
    z-index: 2; }
  .heroCarousel .heroCarousel-slide--first .heroCarousel-image-wrapper,
  .heroCarousel .heroCarousel-slide--custom.slide-1 .heroCarousel-image-wrapper {
    position: relative;
    z-index: 0; }
  .heroCarousel .heroCarousel-slide--first .heroCarousel-title,
  .heroCarousel .heroCarousel-slide--first .heroCarousel-description,
  .heroCarousel .heroCarousel-slide--custom.slide-1 .heroCarousel-title,
  .heroCarousel .heroCarousel-slide--custom.slide-1 .heroCarousel-description {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 40px rgba(102, 188, 255, 0.6), 0 0 80px rgba(102, 188, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.9); }

.heroCarousel .slick-prev,
.heroCarousel .slick-next {
  transition: filter 0.2s ease-out; }
  .heroCarousel .slick-prev:hover, .heroCarousel .slick-prev:focus-visible,
  .heroCarousel .slick-next:hover,
  .heroCarousel .slick-next:focus-visible {
    filter: drop-shadow(0 0 12px #66BCFF) drop-shadow(0 0 4px #ffffff); }

.heroCarousel .slick-dots li button {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out; }

.heroCarousel .slick-dots li:hover button {
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(102, 188, 255, 0.8); }

@media only screen and (min-width: 991px) {
  .productView-images {
    margin-bottom: 40px; } }

.productView-image {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative; }
  .productView-image + .productView-thumbnails {
    margin-top: 10px; }

.productView-img-container {
  position: relative;
  margin: auto;
  max-width: 709px;
  width: 100%; }
  .productView-img-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    /* Object-fit polyfill */
    font-family: "object-fit: contain;"; }
  .productView-img-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 75.03526%; }

.productView-thumbnails img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin: 0;
  width: 133px;
  object-fit: contain;
  /* Object-fit polyfill */
  font-family: "object-fit: contain;";
  position: relative; }

.productView-thumbnail-link {
  border: 1px solid transparent;
  padding: 2px;
  display: block;
  justify-content: center;
  transition: 0.3s ease;
  transform-origin: top; }
  .productView-thumbnail-link.is-active {
    opacity: 1;
    transform: scale(1.05); }
    @media only screen and (min-width: 991px) {
      .productView-thumbnail-link.is-active {
        transform: scale(1.1); } }
    .productView-thumbnail-link.is-active img {
      outline: 1px solid #ffffff;
      outline-offset: -3px; }

.product-thumbnails-wrapper {
  padding: 0 24px;
  margin: 0 auto;
  max-width: 617px; }
  @media only screen and (min-width: 768px) {
    .product-thumbnails-wrapper {
      padding: 0; } }
  @media only screen and (min-width: 480px) {
    .product-thumbnails-wrapper {
      margin: 10px auto 20px auto; } }
  .product-thumbnails-wrapper .slick-list {
    padding: 15px 0; }
  .product-thumbnails-wrapper .slick-next,
  .product-thumbnails-wrapper .slick-prev {
    padding: 0;
    margin-top: 0;
    width: 50px; }
    .product-thumbnails-wrapper .slick-next::before,
    .product-thumbnails-wrapper .slick-prev::before {
      height: auto; }
  .product-thumbnails-wrapper .slick-arrow svg {
    fill: #000000;
    width: 45px;
    height: 45px; }
  .product-thumbnails-wrapper .slick-prev {
    left: -30px; }
  .product-thumbnails-wrapper .slick-next {
    right: -40px; }
  @media (min-width: 1480px) {
    .product-thumbnails-wrapper .slick-arrow svg {
      width: 70px;
      height: 70px; }
    .product-thumbnails-wrapper .slick-prev {
      left: -50px; }
    .product-thumbnails-wrapper .slick-next {
      right: -40px; } }

.productView-thumbnails {
  margin-left: -7px; }

.productView-thumbnail {
  padding-left: 7px; }

.productView-thumbnail-link img {
  margin: 0 auto; }

.product_thumbnail_slider li {
  padding: 0 6px; }

.product_thumbnail_slider .slick-next,
.product_thumbnail_slider .slick-prev {
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  bottom: 0;
  height: auto;
  width: 33px;
  transform: translateY(0);
  padding: 0;
  margin: 0;
  z-index: 2; }
  .product_thumbnail_slider .slick-next::before,
  .product_thumbnail_slider .slick-prev::before {
    content: "";
    width: 100%;
    height: 100%;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    display: block; }

.product_thumbnail_slider .slick-prev {
  left: -30px; }

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

.product_thumbnail_slider.grid--inline {
  font-size: 0;
  text-align: center; }
  .product_thumbnail_slider.grid--inline .grid__item {
    float: none;
    display: inline-block; }

.productView-details {
  margin-bottom: 27px; }
  @media only screen and (min-width: 768px) {
    .productView-details {
      margin-bottom: 50px; } }
  .productView-details .sku-label {
    display: inline-block; }

.productView-product {
  background-color: #fafafa;
  padding: 1rem;
  border-bottom: 1px solid #66BCFF; }
  @media only screen and (min-width: 991px) {
    .productView-product {
      padding: 30px 40px 10px 30px; } }
  .productView-product > :last-child {
    margin-bottom: 0; }

.reviews-sku-wrap {
  margin-bottom: 5px; }
  @media only screen and (min-width: 1200px) {
    .reviews-sku-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center; } }
  .reviews-sku-wrap .productView-code {
    color: #979797; }

.productView-title {
  margin-bottom: 0; }

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

.productView-price abbr {
  border: 0;
  color: inherit;
  font-size: inherit; }

.productView-reviewLink {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  letter-spacing: 0; }
  .productView-reviewLink .icon {
    display: inline-block; }
  .productView-reviewLink + .productView-reviewLink {
    margin-left: 10px; }
  .productView-reviewLink a {
    color: #979797; }

.productView-info {
  margin: 0; }
  .productView-info:before, .productView-info:after {
    content: " ";
    display: table; }
  .productView-info:after {
    clear: both; }
  .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;
  margin-bottom: 2px;
  margin-right: 5px;
  font-weight: 700; }

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

.productView-options {
  text-align: center; }
  .productView-options:before, .productView-options:after {
    content: " ";
    display: table; }
  .productView-options:after {
    clear: both; }
  @media only screen and (min-width: 480px) {
    .productView-options {
      text-align: left; } }
  @media only screen and (min-width: 480px) {
    .productView-options .form-input[type="number"] {
      width: 16.6667%; } }
  @media (min-width: 1430px) {
    .productView-options .product-options {
      display: flex;
      flex-wrap: wrap; }
      .productView-options .product-options .form-field {
        max-width: 50%; } }
  .productView-options .product-options .form-label {
    position: relative; }
    @media (max-width: 445px) {
      .productView-options .product-options .form-label {
        display: flex;
        justify-content: space-between; }
        .productView-options .product-options .form-label .icon {
          width: 20px;
          height: 20px; } }
  .productView-options .product-options .additional-cost {
    text-transform: uppercase;
    color: #66BCFF;
    font-weight: 600;
    margin-left: 10px; }
  .productView-options .form {
    display: inline-block;
    vertical-align: bottom; }
  .productView-options input[type="file"] {
    font-size: 14px; }
  @media only screen and (max-width: 990px) {
    .productView-options .form-label {
      margin-left: 0; } }
  .productView-options .form-label .required-star {
    display: none; }
  .productView-options .form-label--inlineSmall {
    margin-bottom: 10px;
    vertical-align: middle;
    margin-right: 10px; }
    @media only screen and (max-width: 990px) {
      .productView-options .form-label--inlineSmall {
        display: block; } }
    .productView-options .form-label--inlineSmall ~ .form-option {
      display: inline-block;
      vertical-align: middle; }
    .productView-options .form-label--inlineSmall ~ .form-select {
      display: inline-block;
      vertical-align: middle;
      width: auto;
      padding-right: 30px; }
  .productView-options .form-field {
    margin-bottom: 20px;
    text-align: left; }
    .productView-options .form-field > .form-checkbox + .form-label,
    .productView-options .form-field > .form-radio + .form-label {
      display: inline-block;
      width: auto; }
      @media only screen and (min-width: 480px) {
        .productView-options .form-field > .form-checkbox + .form-label,
        .productView-options .form-field > .form-radio + .form-label {
          margin-left: 0;
          width: 100%; } }
    .productView-options .form-field > .form-label:nth-of-type(2) {
      margin-left: 0; }
  @media only screen and (min-width: 480px) {
    .productView-options .form-action {
      float: left;
      padding: 0 10px;
      width: auto; } }
  @media only screen and (min-width: 768px) {
    .productView-options .form-action {
      float: none;
      padding: 0;
      width: auto; } }
  @media only screen and (min-width: 991px) {
    .productView-options .form-action {
      display: inline-block; } }
  .productView-options .form-action .button {
    width: 100%; }
    @media only screen and (min-width: 991px) {
      .productView-options .form-action .button {
        width: auto; } }

.icon-car {
  height: 20px;
  width: 36.8px;
  stroke: #000000;
  margin-right: 20.5px;
  display: none; }
  @media only screen and (min-width: 480px) {
    .icon-car {
      display: inline-block; } }

.icon-tooltip {
  height: 15px;
  width: 15px;
  fill: #66BCFF;
  margin-left: 3px; }

.productOptions-list {
  border: 1px solid #DADADA;
  list-style: none;
  margin: 0; }

.productOptions-list-item {
  padding: 20px; }
  .productOptions-list-item + .productOptions-list-item {
    border-top: 1px solid #DADADA; }
  .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; }

#product-accordion .accordion-item {
  border-bottom: 1px solid #66BCFF;
  padding: 5px 20px; }
  #product-accordion .accordion-item .accordion-title {
    padding: 10px 0; }

.shareProduct {
  text-align: center; }

.modal .productView {
  padding-bottom: 0;
  padding-top: 0; }

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

.reviews-content-header {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .reviews-content-header {
      padding-bottom: 48px; } }
  .reviews-content-header .reviews-count {
    color: #979797;
    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 #DADADA;
  padding-bottom: 8px;
  padding-top: 25px; }

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

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

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

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

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

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

.productView-description a {
  color: #66BCFF;
  text-decoration: underline; }

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

.productView-description .icon {
  fill: #000000;
  width: 17px;
  height: 17px; }

.productView-image .easyzoom-flyout {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff; }
  .productView-image .easyzoom-flyout img {
    max-width: none;
    width: auto; }

.related-products {
  margin-bottom: 27px;
  padding-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .related-products {
      padding-bottom: 100px; } }

.free-shipping {
  margin-bottom: 17px;
  display: flex; }

.product-availability {
  color: #e02020;
  margin-top: -5px;
  margin-bottom: 20px; }

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

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

@media only screen and (max-width: 767px) {
  .trust-signals {
    display: none !important; } }

.compareTable {
  border-top: 1px solid #DADADA;
  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 #DADADA; }
  .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: 45px;
  position: absolute;
  right: -25px;
  top: -25px;
  transition: background-color 0.15s ease;
  width: 45px; }
  .compareTable-removeProduct .icon {
    fill: #66BCFF;
    height: 20px;
    margin-top: 7px;
    width: 20px; }

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

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

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

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

.toggleLink {
  color: #000000; }
  @media only screen and (min-width: 768px) {
    .toggleLink {
      fill: #DADADA; } }
  .toggleLink:hover {
    color: #1E1E1E; }
  .toggle-title .toggleLink {
    float: right;
    line-height: 24px; }

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

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

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

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

.filter-toggle {
  width: 100%; }

.has-mask {
  position: relative;
  padding-bottom: 36px;
  margin-bottom: 20px; }
  .has-mask .wrapper {
    position: static; }
  .has-mask .mask-layer {
    position: relative;
    height: 94px;
    overflow: hidden; }
    .has-mask .mask-layer::after {
      content: '';
      position: absolute;
      /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eeeeee+0,ffffff+100&0+0,1+100 */
      background: -moz-linear-gradient(top, rgba(238, 238, 238, 0) 0%, white 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(top, rgba(238, 238, 238, 0) 0%, white 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to bottom, rgba(238, 238, 238, 0) 0%, white 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00eeeeee', endColorstr='#ffffff',GradientType=0 );
      /* IE6-9 */
      left: 0;
      right: 0;
      bottom: 0;
      height: 48px; }
  .has-mask .toggle-button {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer; }
    .has-mask .toggle-button span {
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      display: block;
      text-decoration: underline; }
    .has-mask .toggle-button .toggle-less {
      display: none; }
  .has-mask.expanded .mask-layer {
    height: auto !important;
    overflow: initial; }
    .has-mask.expanded .mask-layer::after {
      display: none; }
  .has-mask.expanded .toggle-button .toggle-more {
    display: none; }
  .has-mask.expanded .toggle-button .toggle-less {
    display: block; }

@media only screen and (min-width: 768px) {
  .showing-items {
    margin-bottom: 0; } }

#product-listing-container .productGrid {
  margin-top: 5px; }

#faceted-search-container .accordion-block {
  padding: 9.5px 0 0 0; }

#faceted-search-container .accordion-content {
  padding-bottom: 10px; }

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

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

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

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

#facet-range-form .form-field {
  margin-top: 10px; }

.facetedSearch-refineFilters {
  padding-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .facetedSearch-refineFilters {
      padding-bottom: 9.5px;
      border-bottom: 1px solid #DADADA; } }
  .facetedSearch-refineFilters .remove-link {
    color: #66BCFF;
    display: inline-block;
    margin: 10px 0 0; }
    @media only screen and (min-width: 768px) {
      .facetedSearch-refineFilters .remove-link {
        margin: 5px 0 0; } }

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

.selected-facets-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .selected-facets-list li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px; }

.facetLabel {
  text-decoration: none;
  background-color: #f6f5f5;
  padding: 5px 34px 6px 11px;
  border: 1px solid #DADADA;
  border-radius: 4px;
  min-width: 100px;
  position: relative;
  display: block;
  font-size: 14px; }
  .facetLabel .icon {
    height: 10px;
    width: 10px;
    display: inline-block;
    position: absolute;
    top: 9px;
    right: 10px;
    fill: #DADADA; }

@media only screen and (min-width: 768px) {
  .sidebarBlock.subcategory-holder {
    border-bottom: 1px solid #DADADA;
    padding-bottom: 5px; }
    .sidebarBlock.subcategory-holder .navList {
      margin-bottom: 0; }
    .sidebarBlock.subcategory-holder .navList-item {
      margin-bottom: 0; }
      .sidebarBlock.subcategory-holder .navList-item .navList-action {
        padding: 5px 15px;
        transition: ease all 0.2s;
        display: block; }
        .sidebarBlock.subcategory-holder .navList-item .navList-action:hover {
          color: #fff;
          background-color: #66BCFF; } }

.cart-main .alertBox {
  text-align: center;
  background-color: #29292A;
  padding: 12px;
  margin-bottom: 20px; }
  .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 {
  display: block;
  margin-bottom: 27px;
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem; }
  @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-header-item:last-child {
    text-align: right; }

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

.cart-item {
  border-bottom: 1px solid #DADADA;
  clear: both;
  display: block;
  padding: 10px 0 20px; }
  @media only screen and (min-width: 480px) {
    .cart-item {
      padding-top: 20px;
      padding-left: 25%; }
      .cart-item:before, .cart-item:after {
        content: " ";
        display: table; }
      .cart-item:after {
        clear: both; } }
  @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;
      vertical-align: top;
      padding-top: 20px;
      padding-bottom: 20px; } }
  .cart-item-block .definitionList {
    margin-bottom: 5px; }

.cart-item-figure {
  float: left;
  height: 140px;
  margin-bottom: 20px;
  width: 33.33333%;
  position: relative; }
  @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;
      width: 16.6667%; } }

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

@media only screen and (min-width: 768px) {
  .cart-item-image {
    max-width: 175px; } }

@media only screen and (min-width: 768px) {
  .cart-item-image {
    margin-left: 0; } }

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

.cart-item-info {
  clear: both;
  width: 100%; }
  .cart-item-info + .cart-item-info {
    margin-top: 10px; }
  @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:last-child {
        text-align: right; } }
  @media only screen and (min-width: 480px) {
    .cart-item-info:not(.cart-item-quantity) .cart-item-value {
      padding-top: 8px; } }
  @media only screen and (min-width: 768px) {
    .cart-item-info:not(.cart-item-quantity) .cart-item-value {
      padding-top: 0; } }

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

.cart-item-quantity .form-input--incrementTotal, .cart-item-quantity div.increment-buttons-wrap .button {
  border-color: #DADADA; }

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

@media only screen and (max-width: 767px) {
  .cart-item-quantity .form-increments-wrap {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 0.5rem;
    float: right; } }

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

.cart-item-quantity .form-increment > div.increment-buttons-wrap {
  width: 30px; }

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

.cart-item-value {
  padding-left: 20px;
  float: right; }
  @media only screen and (min-width: 480px) {
    .cart-item-value {
      float: none; } }
  @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 {
  margin: 0;
  font-weight: 400; }
  .cart-item-name + .definitionList {
    margin-top: 5px; }
    @media only screen and (min-width: 768px) {
      .cart-item-name + .definitionList {
        padding-bottom: 30px; } }

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

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

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

.cart-totals {
  list-style: none;
  margin-bottom: 20px; }
  @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 {
  margin-bottom: 10px; }
  .cart-total:before, .cart-total:after {
    content: " ";
    display: table; }
  .cart-total:after {
    clear: both; }
  .cart-total .form-inlineMessage {
    text-align: left; }
  .cart-total.cart-grandTotal .cart-total-value {
    font-weight: 700; }

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

.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 {
  font-size: 16px;
  color: #979797;
  padding: 0;
  transition: color 0.15s ease;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: 0 none;
  cursor: pointer;
  text-decoration: none;
  background: none; }
  .cart-action-button:hover {
    color: #1E1E1E; }

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

.shipping-quotes {
  margin-top: 1rem; }
  .shipping-quotes ul {
    list-style: none; }

@media only screen and (max-width: 767px) {
  .shipping-estimate-submit {
    display: block;
    margin: 0 auto; } }

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

.cart-actions {
  clear: both; }
  .cart-actions:before, .cart-actions:after {
    content: " ";
    display: table; }
  .cart-actions:after {
    clear: both; }
  .cart-actions .button {
    display: block;
    margin-bottom: 0; }
    @media only screen and (min-width: 480px) {
      .cart-actions .button {
        display: inline-block;
        float: right; } }
  .cart-actions .checkoutMultiple {
    clear: right;
    display: block;
    float: right;
    padding-top: 5px; }
  .cart-actions.cart-actions-top {
    margin-bottom: 20px; }

.cart-additionalCheckoutButtons {
  margin-top: 10px; }
  .cart-additionalCheckoutButtons:before, .cart-additionalCheckoutButtons:after {
    content: " ";
    display: table; }
  .cart-additionalCheckoutButtons:after {
    clear: both; }
  .cart-additionalCheckoutButtons .FloatRight:before, .cart-additionalCheckoutButtons .FloatRight:after {
    content: " ";
    display: table; }
  .cart-additionalCheckoutButtons .FloatRight:after {
    clear: both; }
  .cart-additionalCheckoutButtons .FloatRight p, .cart-additionalCheckoutButtons .FloatRight .p {
    float: none !important;
    margin: 7px 0;
    text-align: right; }
  .cart-additionalCheckoutButtons .FloatRight div {
    float: right; }

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

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

@media only screen and (min-width: 768px) {
  .previewCart .productView {
    width: 75%;
    display: flex;
    margin: 0;
    padding-bottom: 0;
    padding-top: 0; }
  .previewCart .productView-image {
    width: 58.333%;
    display: flex;
    flex-direction: column; }
  .previewCart .productView-image--cart {
    align-self: flex-start;
    margin: 0 auto;
    width: 100%; }
  .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 {
      width: 25%;
      padding: 20px; } }
  .previewCartCheckout .button {
    display: block;
    margin: 0;
    width: 100%; }
    .previewCartCheckout .button + .button,
    .previewCartCheckout .button + p,
    .previewCartCheckout .button + .p {
      margin-top: 10px; }

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

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

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

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

.previewCart {
  text-align: left;
  position: relative; }
  .previewCart .previewCartHeader {
    padding: 20px;
    border-bottom: 1px solid #DADADA; }
    .previewCart .previewCartHeader h4, .previewCart .previewCartHeader .h4, .previewCart .previewCartHeader .rte h3, .rte .previewCart .previewCartHeader h3, .previewCart .previewCartHeader .rte .h3, .rte .previewCart .previewCartHeader .h3, .previewCart .previewCartHeader .rte .card .price--withoutTax, .rte .card .previewCart .previewCartHeader .price--withoutTax, .previewCart .previewCartHeader .card .rte .price--withoutTax, .card .rte .previewCart .previewCartHeader .price--withoutTax, .previewCart .previewCartHeader .rte .section-header, .rte .previewCart .previewCartHeader .section-header, .previewCart .previewCartHeader .actionBar-section .form-label, .actionBar-section .previewCart .previewCartHeader .form-label, .previewCart .previewCartHeader h3, .previewCart .previewCartHeader .h3, .previewCart .previewCartHeader .card .price--withoutTax, .card .previewCart .previewCartHeader .price--withoutTax, .previewCart .previewCartHeader .section-header {
      margin: 0; }
    @media only screen and (max-width: 767px) {
      .previewCart .previewCartHeader {
        padding-top: 28px; } }
  .previewCart .previewCartList {
    padding: 0;
    margin: 0;
    border-collapse: collapse;
    width: 100%;
    list-style: none;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
    .previewCart .previewCartList::-webkit-scrollbar {
      width: 8px; }
    .previewCart .previewCartList::-webkit-scrollbar-track {
      background: #f1f1f1; }
    .previewCart .previewCartList::-webkit-scrollbar-thumb {
      background: #66BCFF;
      border-radius: 4px; }
      .previewCart .previewCartList::-webkit-scrollbar-thumb:hover {
        background: #0079a1; }
  .previewCart .previewCartItem {
    padding: 20px 20px; }
    .previewCart .previewCartItem + .previewCartItem {
      border-top: 1px solid #DADADA; }
  .previewCart .previewCartItem-image {
    text-align: center; }
  .previewCart .previewCartItem-name {
    margin: 0 0 2px;
    text-transform: none;
    font-weight: 700; }
    .previewCart .previewCartItem-name > a {
      text-decoration: none; }
  .previewCart .previewCartItem-brand,
  .previewCart .previewCartItem-name {
    margin-bottom: 2px; }
  .previewCart .previewCartItem-options {
    list-style: none;
    margin: 4px 0 0; }
    .previewCart .previewCartItem-options li {
      color: #979797;
      font-size: 12px;
      line-height: 1.4; }
  .previewCart .previewCartItem-price {
    font-weight: 700;
    color: #1E1E1E;
    margin-top: 10px;
    display: block; }
  .previewCart .previewCartAction {
    border-top: 1px solid #DADADA;
    display: block;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 10px; }
    @media only screen and (max-width: 767px) {
      .previewCart .previewCartAction {
        flex-direction: column;
        position: sticky;
        bottom: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
        z-index: 5; } }
    .previewCart .previewCartAction .button {
      padding: 0 20px;
      min-width: 150px; }
      @media only screen and (max-width: 767px) {
        .previewCart .previewCartAction .button {
          width: 100%;
          text-align: center; } }
    @media only screen and (max-width: 767px) {
      .previewCart .previewCartAction .previewCartAction-checkout {
        order: -1; } }
  .previewCart .previewCartAction-checkoutMultiple {
    clear: both;
    padding-left: 5px;
    padding-top: 10px; }
  .previewCart .previewCart-emptyBody {
    padding: 40px;
    text-align: center; }
  .previewCart .previewCart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #666;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.15s ease, color 0.15s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .previewCart .previewCart-close:hover, .previewCart .previewCart-close:focus {
      background: #f0f0f0;
      color: #333;
      outline: none; }
    .previewCart .previewCart-close:focus-visible {
      outline: 2px solid #66BCFF;
      outline-offset: 2px; }
    .previewCart .previewCart-close svg {
      display: block; }
  .previewCart .previewCart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #DADADA;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10; }
  .previewCart .previewCart-headerTitle {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0; }
  .previewCart .previewCartItem-priceRow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 6px;
    margin-top: 12px;
    align-items: center; }
  .previewCart .previewCartItem-priceLabel {
    grid-row: 1;
    grid-column: 1; }
  .previewCart .previewCartItem-qtyLabel {
    grid-row: 1;
    grid-column: 2;
    text-align: center; }
  .previewCart .previewCartItem-totalLabel {
    grid-row: 1;
    grid-column: 3;
    text-align: right; }
  .previewCart .previewCartItem-price {
    grid-row: 2;
    grid-column: 1;
    align-self: center;
    padding-top: 6px; }
  .previewCart .previewCartItem-qtyCol {
    grid-row: 2;
    grid-column: 2;
    display: flex;
    justify-content: center; }
  .previewCart .previewCartItem-total {
    grid-row: 2;
    grid-column: 3;
    text-align: right;
    align-self: center;
    padding-top: 6px; }
  .previewCart .previewCartItem-priceCol,
  .previewCart .previewCartItem-totalCol {
    display: contents; }
  .previewCart .previewCartItem-priceLabel,
  .previewCart .previewCartItem-qtyLabel,
  .previewCart .previewCartItem-totalLabel {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px; }
  .previewCart .previewCartItem-price,
  .previewCart .previewCartItem-total {
    font-weight: 700;
    color: #1E1E1E;
    font-size: 15px;
    display: block; }
  .previewCart .previewCartItem-removeRow {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0; }
  .previewCart .previewCartItem-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    gap: 12px; }
  .previewCart .previewCartItem-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f8f8;
    border-radius: 6px;
    padding: 4px; }
  .previewCart .previewCartItem-qtyBtn {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: transform 0.15s ease, color 0.15s ease;
    flex-shrink: 0; }
    @media only screen and (max-width: 767px) {
      .previewCart .previewCartItem-qtyBtn {
        min-width: 36px;
        min-height: 36px;
        width: 36px;
        height: 36px; } }
    .previewCart .previewCartItem-qtyBtn:hover:not(:disabled) {
      background: #f0f0f0;
      border-color: #ccc; }
    .previewCart .previewCartItem-qtyBtn:active:not(:disabled) {
      transform: scale(0.95); }
    .previewCart .previewCartItem-qtyBtn:disabled {
      opacity: 0.4;
      cursor: not-allowed; }
    .previewCart .previewCartItem-qtyBtn svg {
      display: block; }
  .previewCart .previewCartItem-qtyValue {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 24px;
    text-align: center; }
  .previewCart .previewCartItem-remove {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      .previewCart .previewCartItem-remove {
        min-height: 36px;
        padding: 6px 12px; } }
    .previewCart .previewCartItem-remove svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0; }
    .previewCart .previewCartItem-remove:hover {
      color: #e53935;
      background: #ffebee; }
    .previewCart .previewCartItem-remove:active {
      transform: scale(0.98); }
  .previewCart .previewCartItem.is-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative; }
    .previewCart .previewCartItem.is-loading::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 24px;
      height: 24px;
      border: 3px solid #f3f3f3;
      border-top: 3px solid #66BCFF;
      border-radius: 50%;
      animation: spin 0.8s linear infinite; }

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); } }

.previewCartAction-additionalCheckoutButton {
  width: 50%;
  padding: 0 10px;
  float: left;
  margin-top: 20px; }
  .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-right: 10px;
      padding-left: 5px; }
  .previewCartAction-additionalCheckoutButton .PayPalExpressCheckout p, .previewCartAction-additionalCheckoutButton .PayPalExpressCheckout .p {
    text-align: center;
    display: none; }
  .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 {
    float: none;
    display: block;
    width: 100%; }

.instagram-feed > div {
  overflow: hidden; }

.instagram-feed.grid > div {
  padding-top: 22px; }

.instagram-feed.grid--full > div {
  padding-top: 0; }

.instagram-feed > div > a {
  overflow: hidden;
  padding-top: 100%;
  position: relative;
  display: block; }
  .instagram-feed > div > a img {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    left: 50%;
    max-height: 100%;
    max-width: none;
    position: absolute;
    top: 50%;
    width: auto; }
  .instagram-feed > div > a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.3s ease; }
  .instagram-feed > div > a .hover-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: opacity .15s ease; }
    .instagram-feed > div > a .hover-icon svg {
      height: 80px;
      width: 80px;
      top: 50%;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      fill: #414042; }
  .instagram-feed > div > a:hover::after {
    opacity: 1; }
  .instagram-feed > div > a:hover .hover-icon {
    opacity: 1; }

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

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

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

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

.advancedSearch-separator {
  display: none; }

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

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

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

.category-suggestion {
  width: 33.333%; }

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

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

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

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

.account-main {
  padding-bottom: 40px; }
  .account-main .button {
    margin-top: 0 !important; }
  @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 {
    margin: 0;
    display: block; }

.login-wrap {
  border: 1px solid #DADADA; }
  @media only screen and (min-width: 768px) {
    .login-wrap {
      border-right: 0 none; } }
  .login-wrap .login-form {
    max-width: 388px;
    margin: 0 auto; }
    .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: #fafafa; }
  .new-customer .new-customer-info-wrap {
    max-width: 450px;
    margin: 0 auto 25px; }
    .new-customer .new-customer-info-wrap .new-customer-fact-list {
      list-style: outside disc none;
      margin: 0;
      margin-left: 20px; }
    .new-customer .new-customer-info-wrap .new-customer-intro {
      margin-bottom: 23px; }
    @media only screen and (min-width: 768px) {
      .new-customer .new-customer-info-wrap .new-customer-intro, .new-customer .new-customer-info-wrap .new-customer-fact-list {
        font-size: 18px; } }
    .new-customer .new-customer-info-wrap .new-customer-fact {
      padding-left: 0; }

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

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

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

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

.account-banner {
  background: #f1f1f1;
  margin-bottom: 20px;
  height: 200px; }
  @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;
        width: 100%;
        text-align: left; }
        .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 #DADADA;
  margin: 0;
  padding-bottom: 25px;
  margin-bottom: 30px; }

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

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

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

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

.account-product-download {
  border-radius: 50%;
  height: 33px;
  padding: 0;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 33px;
  z-index: 1; }
  .account-product-download .icon {
    height: 20px;
    margin-top: 5px;
    width: 20px; }
  .account-product-download svg {
    fill: #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 {
    text-decoration: none; }
  .account-product-title + .definitionList {
    margin-top: 10px; }

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

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

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

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

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

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

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

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

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

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

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

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

.account-orderTotal-grandTotal {
  background-color: #29292A;
  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 {
  margin: 0;
  float: left; }

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

.account-orderStatus-label {
  background-color: #979797;
  color: #ffffff;
  display: inline-block;
  margin: 0 0 15px;
  padding: 13px 10px;
  min-width: 186px;
  text-align: center;
  font-weight: 400; }
  .account-orderStatus-label.background-secondary {
    background-color: #1E1E1E; }

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

.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 {
  width: 50%;
  float: left; }
  .order-status-line .order-status-key {
    margin-bottom: 8px; }
  .order-status-line .order-status-value {
    color: #979797; }

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

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

.account-actions {
  border-top: 1px solid #DADADA;
  padding-top: 30px;
  margin-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: #66BCFF;
  font-weight: 400;
  margin-top: 20px; }

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

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

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

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

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

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

.account-downloadsItem-availability {
  color: #979797; }

.address {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative; }
  .address .address-actions {
    margin-top: 20px; }
    @media only screen and (min-width: 768px) {
      .address .address-actions {
        margin-top: 0;
        width: 160px;
        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;
          width: 100%;
          min-width: 0; } }

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

.address-title {
  margin: 0; }

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

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

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

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

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

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

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

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

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

.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 {
      position: absolute !important;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0; } }

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

.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 {
  width: 100%;
  max-width: 489px; }

.forgot-password-content {
  max-width: 792px;
  margin: 0 auto 40px; }
  @media only screen and (min-width: 768px) {
    .forgot-password-content {
      margin-bottom: 80px; } }
  .forgot-password-content p, .forgot-password-content .p {
    margin-bottom: 28px; }

.forgot-password-form {
  max-width: 590px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .forgot-password-form {
      display: block !important;
      text-align: center; }
      .forgot-password-form .form-field {
        text-align: left;
        margin-bottom: 22px !important; } }

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

.section-header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px; }
  @media only screen and (min-width: 768px) {
    .section-header {
      margin-bottom: 40px;
      margin-top: 50px; } }
  @media only screen and (min-width: 991px) {
    .section-header {
      margin-bottom: 50px;
      margin-top: 60px; } }
  .section-header:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-bottom: 1px solid #DADADA; }
  .section-header span {
    background-color: #fff;
    position: relative;
    padding: 0 20px;
    display: inline-block; }
    @media only screen and (min-width: 768px) {
      .section-header span {
        padding: 0 40px; } }
    @media only screen and (min-width: 991px) {
      .section-header span {
        padding: 0 60px; } }

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

#promo-images-section {
  margin-bottom: 0; }
  @media only screen and (min-width: 768px) {
    #promo-images-section .grid__item:nth-of-type(-n+2) {
      display: none; } }

.single-promo {
  margin: 0 auto;
  margin-bottom: 20px;
  height: 100%; }
  .single-promo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #000000;
    aspect-ratio: 340/160; }
    .single-promo img[width="344"] {
      aspect-ratio: 344/210; }

.promo-image {
  padding: 0 15px; }
  .promo-image img {
    display: block;
    width: 100%; }

.promo-heading-bar {
  background-color: #29292A;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 4px;
  height: 3rem;
  max-height: 3rem;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), background-color 0.3s ease; }
  .promo-heading-bar .promo-details {
    display: none; }
    .promo-heading-bar .promo-details p, .promo-heading-bar .promo-details .p {
      color: #fff; }
  .promo-heading-bar:hover {
    background-color: #66BCFF; }

.promo-heading {
  color: #fff;
  margin: 0;
  line-height: 53px; }
  @media only screen and (min-width: 768px) {
    .promo-heading {
      line-height: 44px;
      font-size: 18px; } }
  @media only screen and (min-width: 480px) {
    .promo-heading {
      line-height: 44px;
      font-size: 14px; } }
  @media only screen and (max-width: 479px) {
    .promo-heading {
      line-height: 44px;
      font-size: 12px; } }

.shop-text-outer {
  padding: 0 12px; }
  @media only screen and (min-width: 991px) {
    .shop-text-outer {
      padding: 0 15px; } }

.shop-text-wrapper {
  margin-top: -26px;
  padding: 35px 0 20px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom; }
  @media only screen and (min-width: 991px) {
    .shop-text-wrapper {
      margin-top: -20px;
      padding: 34px 0 33px; } }

.shop-text {
  color: #fff;
  text-shadow: 0 0 4px #000000; }
  @media only screen and (max-width: 767px) {
    .shop-text {
      font-size: 24px; } }

.promo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  height: 100%; }
  .promo-link:hover .promo-heading-bar {
    max-height: 100%;
    background-color: rgba(41, 41, 42, 0.7); }
    .promo-link:hover .promo-heading-bar .promo-heading {
      background-color: #29292A; }
    .promo-link:hover .promo-heading-bar .promo-details {
      display: block; }
    .promo-link:hover .promo-heading-bar::before {
      border-color: transparent #000 transparent transparent; }
    .promo-link:hover .promo-heading-bar::after {
      border-color: #000 transparent transparent transparent; }

#promo-banner-section {
  margin-bottom: 20px; }
  #promo-banner-section div {
    position: relative;
    text-align: center; }
    #promo-banner-section div.promo-banner-background {
      height: 300px;
      background-position: center; }
    #promo-banner-section div img {
      display: inline-block; }
    #promo-banner-section div.text {
      max-width: 620px;
      min-width: 300px;
      position: absolute;
      top: 50%;
      right: 50%;
      transform: translate(50%, -50%); }
      #promo-banner-section div.text h2, #promo-banner-section div.text .h2, #promo-banner-section div.text .page-heading,
      #promo-banner-section div.text p,
      #promo-banner-section div.text .p {
        color: #ffffff; }
      @media only screen and (max-width: 990px) {
        #promo-banner-section div.text h2, #promo-banner-section div.text .h2, #promo-banner-section div.text .page-heading {
          font-size: 18px; } }
      @media only screen and (max-width: 990px) {
        
        #promo-banner-section div.text p,
        #promo-banner-section div.text .p {
          font-size: 14px; } }

#benefits-section div {
  position: relative;
  text-align: center; }
  #benefits-section div.benefit-items {
    background-position: center;
    margin-bottom: 50px; }
    @media only screen and (max-width: 1199px) {
      #benefits-section div.benefit-items {
        margin-bottom: 0; } }
    #benefits-section div.benefit-items h2, #benefits-section div.benefit-items .h2, #benefits-section div.benefit-items .page-heading {
      color: #ffffff;
      max-width: 620px;
      margin: 0 auto;
      padding: 50px 16px 30px 16px; }

#benefits-section .benefit-items .tabs {
  border-bottom: 0px;
  display: flex;
  max-width: 800px;
  margin: 0 auto; }
  @media only screen and (max-width: 1199px) {
    #benefits-section .benefit-items .tabs {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      justify-content: center; } }
  #benefits-section .benefit-items .tabs.is-active .dot {
    background-color: #29292a; }
  #benefits-section .benefit-items .tabs .tab {
    background-color: #d3d3d3;
    float: none;
    display: inline-block;
    padding-top: 15px;
    margin: 0 auto;
    transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 70vw; }
    #benefits-section .benefit-items .tabs .tab .details {
      height: 0; }
    #benefits-section .benefit-items .tabs .tab .details p, #benefits-section .benefit-items .tabs .tab .details .p {
      height: 0;
      opacity: 0;
      color: #29292a;
      transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1); }
    #benefits-section .benefit-items .tabs .tab.is-active {
      padding-top: 25px;
      background-color: #fff; }
      @media only screen and (max-width: 1199px) {
        #benefits-section .benefit-items .tabs .tab.is-active .details {
          height: 100%; }
          #benefits-section .benefit-items .tabs .tab.is-active .details p, #benefits-section .benefit-items .tabs .tab.is-active .details .p {
            height: 100%;
            opacity: 1; } }
    #benefits-section .benefit-items .tabs .tab:after {
      height: 0px; }
    #benefits-section .benefit-items .tabs .tab svg {
      fill: #1E1E1E;
      width: 50px;
      height: 50px; }
    #benefits-section .benefit-items .tabs .tab .tab-title h4, #benefits-section .benefit-items .tabs .tab .tab-title .h4, #benefits-section .benefit-items .tabs .tab .tab-title .rte h3, .rte #benefits-section .benefit-items .tabs .tab .tab-title h3, #benefits-section .benefit-items .tabs .tab .tab-title .rte .h3, .rte #benefits-section .benefit-items .tabs .tab .tab-title .h3, #benefits-section .benefit-items .tabs .tab .tab-title .rte .card .price--withoutTax, .rte .card #benefits-section .benefit-items .tabs .tab .tab-title .price--withoutTax, #benefits-section .benefit-items .tabs .tab .tab-title .card .rte .price--withoutTax, .card .rte #benefits-section .benefit-items .tabs .tab .tab-title .price--withoutTax, #benefits-section .benefit-items .tabs .tab .tab-title .rte .section-header, .rte #benefits-section .benefit-items .tabs .tab .tab-title .section-header, #benefits-section .benefit-items .tabs .tab .tab-title .actionBar-section .form-label, .actionBar-section #benefits-section .benefit-items .tabs .tab .tab-title .form-label {
      color: #1E1E1E;
      margin-bottom: 0; }

@media only screen and (max-width: 1199px) {
  #benefits-section .benefit-items .tabs-contents {
    display: none; } }

#benefits-section .benefit-items .tabs-contents .benefits-description {
  padding-top: 50px;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 25px; }
  #benefits-section .benefit-items .tabs-contents .benefits-description a {
    text-decoration: underline; }

#benefits-section .benefit-items .tabs-contents .dot {
  height: 25px;
  width: 25px;
  background-color: #DADADA;
  border-radius: 50%;
  display: inline-block; }

#info-section div {
  position: relative;
  text-align: center; }
  #info-section div.info-items {
    height: 437px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 30px; }
  #info-section div .info-single {
    position: relative; }
    #info-section div .info-single:after {
      height: 80%;
      width: 1px;
      position: absolute;
      right: 0;
      bottom: 0;
      background-color: #66BCFF; }
      @media only screen and (min-width: 991px) {
        #info-section div .info-single:after {
          content: ""; } }
    #info-section div .info-single.last:after {
      width: 0px; }
    @media only screen and (max-width: 767px) {
      #info-section div .info-single {
        margin-bottom: 20px; } }
    @media only screen and (min-width: 991px) {
      #info-section div .info-single {
        padding-right: 20px; } }
    #info-section div .info-single svg {
      margin-top: 50px;
      margin-bottom: 28px;
      fill: #fff;
      width: 120px;
      height: 96px; }
    #info-section div .info-single h4, #info-section div .info-single .h4, #info-section div .info-single .rte h3, .rte #info-section div .info-single h3, #info-section div .info-single .rte .h3, .rte #info-section div .info-single .h3, #info-section div .info-single .rte .card .price--withoutTax, .rte .card #info-section div .info-single .price--withoutTax, #info-section div .info-single .card .rte .price--withoutTax, .card .rte #info-section div .info-single .price--withoutTax, #info-section div .info-single .rte .section-header, .rte #info-section div .info-single .section-header, #info-section div .info-single .actionBar-section .form-label, .actionBar-section #info-section div .info-single .form-label {
      color: #66BCFF; }
    #info-section div .info-single h3, #info-section div .info-single .h3, #info-section div .info-single .card .price--withoutTax, .card #info-section div .info-single .price--withoutTax, #info-section div .info-single .section-header {
      color: #ffffff; }
    #info-section div .info-single p, #info-section div .info-single .p {
      color: #fff;
      margin-bottom: 0;
      min-width: 250px; }

#content-with-bg-section {
  background-image: url("https://via.placeholder.com/1920x550.jpg");
  background-size: cover;
  background-position: center;
  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; } }

#icon-row-section {
  background-color: #fafafa;
  padding: 20px 0 0;
  border-bottom: 1px solid #DADADA;
  margin-bottom: 0; }
  @media only screen and (min-width: 768px) {
    #icon-row-section {
      padding: 30px 0; } }
  @media only screen and (min-width: 768px) {
    #icon-row-section .icon-row {
      display: flex;
      justify-content: space-between; } }
  @media only screen and (max-width: 767px) {
    #icon-row-section .icon-row .icon-single {
      text-align: center;
      margin-bottom: 20px; } }
  @media only screen and (min-width: 768px) {
    #icon-row-section .icon-row .icon-single > div {
      display: inline-block;
      vertical-align: middle; }
      #icon-row-section .icon-row .icon-single > div.icon-wrap {
        margin-right: 8px; } }
  #icon-row-section .icon-row .icon-single > div h4, #icon-row-section .icon-row .icon-single > div .h4, #icon-row-section .icon-row .icon-single > div .rte h3, .rte #icon-row-section .icon-row .icon-single > div h3, #icon-row-section .icon-row .icon-single > div .rte .h3, .rte #icon-row-section .icon-row .icon-single > div .h3, #icon-row-section .icon-row .icon-single > div .rte .card .price--withoutTax, .rte .card #icon-row-section .icon-row .icon-single > div .price--withoutTax, #icon-row-section .icon-row .icon-single > div .card .rte .price--withoutTax, .card .rte #icon-row-section .icon-row .icon-single > div .price--withoutTax, #icon-row-section .icon-row .icon-single > div .rte .section-header, .rte #icon-row-section .icon-row .icon-single > div .section-header, #icon-row-section .icon-row .icon-single > div .actionBar-section .form-label, .actionBar-section #icon-row-section .icon-row .icon-single > div .form-label {
    color: #1E1E1E;
    margin: 0; }
  #icon-row-section .icon-row .icon-single > div .icon svg {
    width: 38px;
    height: 38px;
    fill: #1E1E1E; }
  #icon-row-section .icon-row .icon-single > div .icon.icon-recycle svg {
    width: 36px; }
  #icon-row-section .icon-row .icon-single > div .icon.earth-friendly svg {
    width: 37px;
    height: 29px; }

.tooltip {
  display: inline-block; }
  @media (min-width: 445px) {
    .tooltip {
      position: relative; } }
  .tooltip .tooltiptext {
    display: none;
    min-width: 110%;
    background-color: #ffffff;
    border: 2px solid #66BCFF;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
    color: #000000;
    padding: 15px 19px 15px;
    font-size: 14px;
    position: absolute;
    z-index: 1;
    top: -60%;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (min-width: 480px) {
      .tooltip .tooltiptext {
        min-width: 302px; } }
    @media only screen and (min-width: 768px) {
      .tooltip .tooltiptext {
        top: -100%;
        min-width: 250px;
        left: -160px;
        transform: none; } }
    @media only screen and (min-width: 1200px) {
      .tooltip .tooltiptext {
        padding: 15px 19px 15px 40px;
        left: -69px;
        transform: translateX(-25%);
        min-width: 302px; } }
  .tooltip:hover .tooltiptext {
    display: inline-block;
    cursor: pointer; }

.tooltiptext {
  position: relative;
  border-radius: 2px;
  padding: 20px;
  margin-top: 50px; }
  .tooltiptext:after, .tooltiptext:before {
    content: "";
    position: absolute;
    bottom: 100%; }
  .tooltiptext:before {
    right: 15px;
    border: 13px solid transparent;
    border-bottom-color: #66BCFF; }
    @media (min-width: 446px) {
      .tooltiptext:before {
        right: unset;
        left: 140px; } }
    @media only screen and (min-width: 768px) {
      .tooltiptext:before {
        left: 155px; } }
    @media only screen and (min-width: 1200px) {
      .tooltiptext:before {
        left: 140px; } }
  .tooltiptext:after {
    right: 17px;
    border: 11px solid transparent;
    border-bottom-color: #ffffff; }
    @media (min-width: 446px) {
      .tooltiptext:after {
        right: unset;
        left: 142px; } }
    @media only screen and (min-width: 768px) {
      .tooltiptext:after {
        left: 157px; } }
    @media only screen and (min-width: 1200px) {
      .tooltiptext:after {
        left: 142px; } }

.readymill-sizing-table {
  width: 100%;
  border-spacing: 0;
  font-size: 14px; }
  @media only screen and (min-width: 991px) {
    .readymill-sizing-table {
      font-size: 16px; } }
  .readymill-sizing-table tr:nth-child(odd) {
    background-color: #fafafa; }
  .readymill-sizing-table td:nth-child(2) {
    border-right: 0.5px solid #DADADA; }
  .readymill-sizing-table td:nth-child(odd) {
    padding-left: 5px;
    font-weight: 500; }
    @media only screen and (min-width: 768px) {
      .readymill-sizing-table td:nth-child(odd) {
        padding-left: 10px; } }
    @media only screen and (min-width: 991px) {
      .readymill-sizing-table td:nth-child(odd) {
        padding-left: 20px; } }

.readymill-chart-details {
  margin-top: 15px;
  font-size: 14px; }
  @media only screen and (min-width: 768px) {
    .readymill-chart-details {
      margin: 15px 0 0 60px; } }
  .readymill-chart-details p, .readymill-chart-details .p {
    margin-bottom: 5px; }
  .readymill-chart-details ul {
    margin-left: 1rem; }

.yotpo a {
  color: #66BCFF !important; }

.yotpo .text-m {
  transition: none !important; }

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

.yotpo-icon-empty-star {
  color: #979797 !important; }

.yotpo-icon-star, .yotpo-icon-half-star {
  color: #66BCFF !important; }

.yotpo-stars {
  margin-right: 10px !important; }

@media only screen and (min-width: 768px) {
  .yotpo-regular-box .yotpo-default-button {
    float: right !important;
    position: relative !important;
    top: 10px !important;
    height: 45px !important;
    padding: 10px 20px !important; } }

.yotpo-default-button {
  background-color: #66BCFF !important;
  border-radius: 4px !important;
  font-family: Roboto !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 21px !important;
  border-style: inset !important;
  border: 2px solid #66bcff !important;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important; }
  .yotpo-default-button:hover {
    background-color: #ffffff !important; }
    .yotpo-default-button:hover,
    .yotpo-default-button:hover .yotpo-icon-button-text,
    .yotpo-default-button:hover .yotpo-icon {
      color: #1e1e1e !important; }

.yotpo-nav-tab.yotpo-active .yotpo-nav-wrapper {
  border-bottom: 6px solid #000000 !important; }

.yotpo-nav-tab .yotpo-nav-wrapper span {
  font-size: 21px !important;
  line-height: 28px !important;
  color: #000000 !important; }

#MainContent .card .yotpo.bottomLine {
  min-height: 22px;
  margin-bottom: 10px; }
  #MainContent .card .yotpo.bottomLine .pull-left {
    float: none;
    text-align: center;
    justify-content: center; }

.agegate-accepted .agegate {
  display: none !important; }

.agegate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  animation: agegate-fadein 0.3s ease; }

@keyframes agegate-fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.agegate__card {
  width: 90%;
  max-width: 420px;
  padding: 36px 32px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: center; }

.agegate__title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 8px; }

.agegate__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px; }

.agegate__actions {
  display: flex;
  gap: 12px; }

.agegate__btn {
  border-radius: 4px;
  cursor: pointer;
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  transition: background 0.15s, color 0.15s; }

.agegate__btn--confirm {
  background: #fff;
  border: 2px solid #fff;
  color: #000; }
  .agegate__btn--confirm:hover {
    background: #e0e0e0;
    border-color: #e0e0e0; }

.agegate__btn--decline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff; }
  .agegate__btn--decline:hover {
    border-color: #fff; }

@media only screen and (max-width: 480px) {
  .agegate__card {
    padding: 28px 20px; }
  .agegate__title {
    font-size: 18px; }
  .agegate__desc {
    font-size: 14px; }
  .agegate__actions {
    flex-direction: column; }
  .agegate__btn {
    padding: 14px 16px; } }

.fsb-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #fff;
  color: #111;
  border: 2px solid #111;
  border-radius: 9999px;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 0;
  transition: border-color 0.15s ease, color 0.15s ease; }

@media (min-width: 768px) {
  .navUser-section.navUser-section--alt {
    flex-wrap: nowrap; }
  .navUser-item--cart {
    position: relative;
    display: inline-flex;
    align-items: center; }
  .navUser-item--cart .navUser-action {
    display: inline-flex;
    align-items: center; }
  .navUser-item--cart .fsb-pill {
    position: absolute;
    top: calc(100% + 3px);
    right: 0;
    left: auto;
    margin: 0;
    z-index: 2;
    max-width: 360px; } }

@media (max-width: 767px) {
  .navUser-item--cart {
    display: inline-flex;
    align-items: center; }
  .navUser-item--cart .navUser-action {
    display: inline-flex;
    align-items: center; }
  .navUser-item--cart .fsb-pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -26px;
    margin: 0;
    font-size: 10px;
    padding: 3px 7px;
    max-width: calc(100vw - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    border-width: 1.5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); }
  .navUser-item--cart .fsb-pill .fsb-ico {
    width: 1em;
    height: 1em;
    margin-right: 0.35em; } }

.fsb-ico {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.45em;
  vertical-align: -0.12em; }

.fsb-ico svg {
  display: block;
  width: 1em;
  height: 1em; }

.fsb-ico svg path {
  fill: currentColor; }

.fsb-pill--unlocked .fsb-ico {
  color: #16a34a; }

.fsb-pill:not(.fsb-pill--unlocked) .fsb-ico {
  color: #4b5563; }

.fsb-pill--unlocked {
  border-color: #16a34a; }

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

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1410px;
  padding: 0 22px;
  position: relative;
  width: 100%; }
  .wrapper.ten-columns {
    max-width: 1178.66667px; }
  .wrapper.eight-columns {
    max-width: 947.33333px; }
  .wrapper.six-columns {
    max-width: 716px; }

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

.header.sticky-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 102; }

.header .header-main {
  background-color: #ffffff;
  z-index: 102;
  position: relative; }
  .header .header-main .header-top {
    background-color: #fff;
    position: relative; }
    @media only screen and (max-width: 990px) {
      .header .header-main .header-top {
        padding-bottom: 48px; } }
    @media only screen and (max-width: 767px) {
      .header .header-main .header-top {
        padding-bottom: 44px; } }
  .header .header-main .wrapper {
    position: static; }

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

.header-logo {
  margin: 0; }
  .header-logo img {
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .header-logo img {
        width: 140px;
        max-width: 140px; } }
    @media only screen and (max-width: 479px) {
      .header-logo img {
        width: 120px;
        max-width: 120px; } }
  .header-logo > a {
    color: #1E1E1E;
    display: inline-block;
    position: relative;
    text-decoration: none;
    width: 100%;
    z-index: 5; }
    @media only screen and (min-width: 768px) {
      .header-logo > a {
        background: none;
        border-bottom: 0;
        display: inline-block;
        padding: 0; } }

.header-logo--home > a {
  animation: logo-entrance 0.8s ease-out 0.3s 1 backwards; }

@keyframes logo-entrance {
  0% {
    opacity: 0;
    transform: scale(0.92); }
  100% {
    opacity: 1;
    transform: scale(1); } }

.header-logo-text {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 5px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 3px 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap; }
  @media only screen and (min-width: 480px) {
    .header-logo-text {
      padding-bottom: 0;
      padding-top: 0; } }
  @media only screen and (min-width: 768px) {
    .header-logo-text {
      display: inline;
      font-size: 16px;
      margin-left: 0;
      margin-right: -9px;
      max-width: none;
      overflow: auto;
      white-space: normal; } }

.header-logo-image {
  max-height: 70px; }
  @media only screen and (min-width: 991px) {
    .header-logo-image {
      max-height: 130px; } }

.promo-bar-top {
  background-color: #1E1E1E;
  color: #fff; }
  .promo-bar-top p, .promo-bar-top .p {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 15px;
    line-height: 35px; }
    @media only screen and (min-width: 768px) {
      .promo-bar-top p, .promo-bar-top .p {
        line-height: 40px; } }
    .promo-bar-top p .code-text, .promo-bar-top .p .code-text {
      color: #ff0000; }

.promo-bar {
  background-color: #1E1E1E;
  color: #fff;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px; }
  @media only screen and (max-width: 990px) {
    .promo-bar {
      height: 32px;
      padding: 6px 10px;
      font-size: 12px; } }
  @media only screen and (max-width: 767px) {
    .promo-bar {
      height: 30px;
      padding: 5px 8px;
      font-size: 11px; } }
  .promo-bar .promo-text-percent {
    color: #66BCFF;
    font-weight: bold; }
  .promo-bar p, .promo-bar .p {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 16px;
    line-height: 1.4; }
    @media only screen and (max-width: 990px) {
      .promo-bar p, .promo-bar .p {
        font-size: 13px;
        line-height: 1.3; } }
    @media only screen and (max-width: 767px) {
      .promo-bar p, .promo-bar .p {
        font-size: 12px;
        line-height: 1.3; } }
  .promo-bar a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease; }
    .promo-bar a:hover {
      opacity: 0.9; }
  .promo-bar .countdown-timer {
    color: #FF0000;
    font-size: 14px;
    margin-top: 4px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); }
    @media only screen and (max-width: 990px) {
      .promo-bar .countdown-timer {
        font-size: 12px;
        margin-top: 3px; } }
    @media only screen and (min-width: 768px) {
      .promo-bar .countdown-timer {
        font-size: 16px;
        margin-top: 5px; } }
  .promo-bar .icon-header-wrap {
    color: #fff;
    line-height: 35px; }
    @media only screen and (min-width: 768px) {
      .promo-bar .icon-header-wrap {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px; } }
    .promo-bar .icon-header-wrap .icon {
      fill: currentColor;
      display: block; }
    .promo-bar .icon-header-wrap .icon-wrap {
      margin-right: 10px; }
    .promo-bar .icon-header-wrap .icon-wrap,
    .promo-bar .icon-header-wrap p,
    .promo-bar .icon-header-wrap .p {
      display: inline-block;
      vertical-align: middle; }
  @media only screen and (min-width: 768px) {
    .promo-bar .icon-header-wrap-left {
      margin-right: 40px; } }
  .promo-bar .icon-header-wrap-left .icon {
    height: 14px;
    width: 30px; }
    @media only screen and (min-width: 768px) {
      .promo-bar .icon-header-wrap-left .icon {
        height: 20px;
        width: 42px; } }
  .promo-bar .icon-header-wrap-right .icon {
    height: 20px;
    width: 30px; }

.promo-bar-lower {
  background-color: #1E1E1E;
  color: #fff; }
  .promo-bar-lower p, .promo-bar-lower .p {
    color: #fff;
    margin: 0;
    font-size: 15px;
    line-height: 35px; }
    .promo-bar-lower p .color-brightGreen, .promo-bar-lower .p .color-brightGreen {
      font-weight: 700; }

.mobileMenu-toggle {
  width: 130px;
  height: 130px;
  display: inline-block;
  font-size: 0;
  left: 0;
  overflow: hidden;
  padding: 0 18px;
  position: absolute;
  z-index: 10; }
  @media only screen and (min-width: 768px) {
    .mobileMenu-toggle {
      display: none; } }
  .mobileMenu-toggle .mobileMenu-toggleIcon,
  .mobileMenu-toggle .mobileMenu-toggleIcon::before,
  .mobileMenu-toggle .mobileMenu-toggleIcon::after {
    background: #1E1E1E;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transform: rotate(0deg);
    transition: transform 100ms ease-in, top 100ms ease-in 150ms, bottom 100ms ease-in 150ms;
    width: 20px; }
  .mobileMenu-toggle .mobileMenu-toggleIcon {
    top: 27px;
    transition: background-color 10ms ease-in 100ms; }
  .mobileMenu-toggle .mobileMenu-toggleIcon::before {
    top: -8px; }
  .mobileMenu-toggle .mobileMenu-toggleIcon::after {
    bottom: -8px; }
  .mobileMenu-toggle.is-open .mobileMenu-toggleIcon {
    background-color: transparent;
    transition-delay: 100ms; }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::before, .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::after {
      background-color: #1E1E1E;
      bottom: auto;
      top: auto;
      transition: transform 100ms ease-in 150ms, top 100ms ease-in, bottom 100ms ease-in; }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::before {
      top: 0;
      transform: rotate(45deg); }
    .mobileMenu-toggle.is-open .mobileMenu-toggleIcon::after {
      bottom: 0;
      transform: rotate(-45deg); }

.navPage-childList {
  border-left: 1px solid #ddd;
  margin: 5px 10px;
  padding-left: 10px; }

.has-activeNavPages {
  overflow: hidden;
  -webkit-overflow-scrolling: auto; }

.navPages-container {
  -webkit-overflow-scrolling: touch;
  z-index: 2; }
  .navPages-container.is-open {
    display: block;
    padding-top: 130px;
    z-index: 0; }
  .navPages-container .wrapper {
    position: static; }

.navPages {
  font-size: 0;
  overflow: visible;
  text-align: center; }
  .navPages ul {
    list-style: none; }
  .navPages .navPage-subMenu-list {
    list-style: none; }

.navPages-item {
  display: inline-block;
  vertical-align: middle; }

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

.navPages-bar {
  background-color: #29292a;
  position: relative;
  z-index: 6;
  height: 50px; }
  @media only screen and (min-width: 991px) {
    .navPages-bar {
      height: 55px; } }
  .navPages-bar .wrapper {
    padding: 0 20px; }
    @media only screen and (min-width: 991px) {
      .navPages-bar .wrapper {
        padding: 0 40px; } }

.navPage-subMenu-item a {
  color: #000; }

.navPages-action {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease;
  padding: 16px 8px 15px; }
  @media only screen and (min-width: 991px) {
    .navPages-action {
      padding: 18px 12px 17px; } }
  .navPages-action.is-open,
  .has-hover:hover + .navPages-action {
    color: #66BCFF; }
    .navPages-action.is-open svg,
    .has-hover:hover + .navPages-action svg {
      stroke: #66BCFF; }
  .navPages-action:hover, .navPages-action.activePage {
    color: #66BCFF; }
    .navPages-action:hover svg, .navPages-action.activePage svg {
      stroke: #66BCFF; }
  .navPages-action svg {
    fill: currentColor;
    stroke: #66BCFF;
    transition: fill 0.2s ease, stroke 0.2s ease; }

.navPages-action-moreIcon {
  width: 8px;
  height: 8px;
  margin-left: 5px;
  transform: rotate(-90deg); }
  @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 {
  display: none;
  outline: 0;
  background-color: #ffffff;
  border-top: 1px solid #DADADA;
  position: absolute;
  text-align: left;
  top: 100%;
  min-width: 240px;
  margin-left: -1.1rem;
  border: 1px solid #DADADA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px; }
  .navPage-subMenu .navPages-action-moreIcon {
    display: none; }
  .navPage-subMenu.is-open,
  .is-active .navPage-subMenu {
    display: block; }
  .navPage-subMenu .navPage-subMenu-list {
    margin-left: 0; }

.has-subMenu.is-root + .navPage-subMenu-horizontal {
  border-left: 0;
  left: inherit;
  margin: auto;
  top: inherit;
  width: 215px; }

.navPage-subMenu-horizontal.is-open, .navPage-subMenu-horizontal:hover,
.has-hover:hover .navPage-subMenu-horizontal {
  border-left: 1px solid #DADADA;
  display: inherit;
  height: 242px;
  margin-left: 215px;
  padding: 0 !important;
  top: 0;
  width: 216px; }

@media only screen and (min-width: 768px) {
  .navPage-subMenu-horizontal .navPages-action-moreIcon {
    display: inline-block;
    transform: rotate(-90deg); } }

.navPage-subMenu-item {
  display: block; }
  .navPage-subMenu-item .navPages-action {
    width: 100%; }
  .navPage-subMenu-item:last-of-type > .navPage-subMenu-action {
    border-bottom: 0 none; }

.navPage-item--dropdown .navPage-subMenu-item {
  padding: 0; }
  .navPage-item--dropdown .navPage-subMenu-item a {
    padding: 12px 20px;
    line-height: 1.4;
    transition: background-color 0.2s ease, color 0.2s ease; }
    .navPage-item--dropdown .navPage-subMenu-item a:hover {
      background-color: #29292A;
      color: #fff;
      padding-left: 24px; }

.navPage-subMenu-item-child,
.navPage-subMenu-item-parent {
  width: 100%; }
  .navPage-subMenu-item-child .navPage-subMenu-action,
  .navPage-subMenu-item-parent .navPage-subMenu-action {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%; }
  .navPage-subMenu-item-child .navPage-subMenu-action.is-open,
  .navPage-subMenu-item-child .navPage-subMenu-action:hover,
  .navPage-subMenu-item-parent .navPage-subMenu-action.is-open,
  .navPage-subMenu-item-parent .navPage-subMenu-action:hover {
    background: #c8bdb2;
    color: #000;
    font-weight: 500;
    opacity: 0.3; }

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

.menu-icon {
  padding: 0 10px;
  width: auto; }
  .menu-icon .icon {
    width: 18px;
    height: 14px;
    fill: currentColor; }

.navPages-list > .navPages-item.navPage-item--mega {
  position: static; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    background-color: #fafafa;
    padding-top: 5px; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard {
    max-width: 871px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
    .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: #1E1E1E; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading {
    display: inline-block;
    margin-right: 50px;
    vertical-align: top; }
    @media only screen and (min-width: 1200px) and (max-width: 1399px) {
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading {
        margin-right: 70px; } }
    @media only screen and (min-width: 1400px) {
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading {
        margin-right: 150px; } }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading:last-of-type {
      margin-right: 0; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .navPage-item--mega-heading > a {
      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 {
        content: "";
        border-bottom: 2px solid #1E1E1E;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        opacity: 0;
        z-index: 2; }
    .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 {
    border-top: 1px solid #DADADA;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #fafafa;
    padding: 15px 0 15px;
    display: none; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .mega-menu-list-inner {
      display: flex;
      justify-content: space-between; }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .mega-menu-list-inner .navPage-mega--column {
        padding-right: 20px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading + .navPage-item--column-heading {
      margin-top: 38px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading h5, .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-advanced .mega-menu-list .navPage-item--column-heading .h5 {
      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 {
      text-align: left;
      margin-bottom: 5px; }
      .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 {
          line-height: 1;
          display: block; }

.navPages-list > .navPages-item > a {
  position: relative;
  z-index: 9;
  padding: 16px 4px 15px; }

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

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

.navPages-list > .navPages-item:last-of-type {
  margin-right: 0; }
  .navPages-list > .navPages-item:last-of-type:hover::after {
    display: none; }

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

.navUser {
  padding: 0;
  transform: none; }
  .navUser p, .navUser .p {
    color: inherit; }
  .navUser .dropdown-menu {
    background-color: #ffffff;
    position: absolute;
    display: none;
    box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
    z-index: 101; }
    @media only screen and (max-width: 990px) {
      .navUser .dropdown-menu {
        right: 0 !important;
        max-width: 100%;
        width: 400px;
        top: 85% !important; } }
    @media only screen and (max-width: 767px) {
      .navUser .dropdown-menu {
        top: 55% !important; } }
    @media (max-width: 530px) {
      .navUser .dropdown-menu {
        top: 52% !important;
        left: auto !important;
        right: 0 !important;
        width: 100%; }
        .navUser .dropdown-menu.is-open::before {
          right: 98px !important; }
        .navUser .dropdown-menu.is-open::after {
          right: 100px !important; } }
    .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%;
        right: 10px;
        position: absolute; }
      .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%;
        right: 12px;
        position: absolute; }

.navUser-action {
  color: #000;
  font-size: 16px;
  padding: 0;
  text-decoration: none;
  height: 70px;
  line-height: 70px;
  transition: transform 0.2s ease, color 0.2s ease; }
  @media only screen and (min-width: 991px) {
    .navUser-action {
      height: 72px;
      line-height: 72px; } }
  .navUser-action:hover, .navUser-action.is-open {
    text-decoration: underline;
    color: #66BCFF; }
  .navUser-action svg {
    fill: currentColor;
    stroke-width: 0;
    transition: fill 0.2s ease, transform 0.2s ease;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px; }
    @media only screen and (min-width: 768px) {
      .navUser-action svg {
        margin-right: 7px; } }
  .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; }
  @media only screen and (max-width: 767px) {
    .navUser-action .text-wrap {
      position: absolute !important;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0; } }

.navUser-action--storeCredit + .dropdown-menu {
  max-width: 300px;
  padding: 20px; }
  .navUser-action--storeCredit + .dropdown-menu:before {
    left: 140px !important; }
  .navUser-action--storeCredit + .dropdown-menu:after {
    left: 142px !important; }

.navUser-action-divider {
  border-right: 1px solid #DADADA;
  color: #979797;
  display: inline-block;
  padding: 0 20px 0 0;
  text-decoration: none; }

.navUser-item {
  display: inline-block;
  margin-left: 15px; }
  @media only screen and (max-width: 767px) {
    .navUser-item {
      margin-left: 10px; } }
  @media only screen and (min-width: 768px) {
    .navUser-item {
      margin-left: 30px; } }
  @media only screen and (min-width: 991px) {
    .navUser-item {
      margin-left: 40px; } }
  .navUser-item:first-child {
    margin-left: 0; }
  .navUser-item > a {
    display: block;
    position: relative;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center; }

@media only screen and (max-width: 767px) {
  .navUser-item--account {
    display: none; } }

.navUser-item--account .icon {
  height: 28px;
  width: 28px;
  fill: #66BCFF; }
  @media only screen and (min-width: 991px) {
    .navUser-item--account .icon {
      height: 30px;
      width: 32px; } }

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

@media only screen and (min-width: 768px) {
  .navUser-item--cart {
    position: relative; } }

.navUser-item--cart .icon {
  height: 28px;
  width: 28px; }
  @media only screen and (max-width: 767px) {
    .navUser-item--cart .icon {
      height: 26px;
      width: 26px; } }
  @media only screen and (min-width: 991px) {
    .navUser-item--cart .icon {
      height: 30px;
      width: 32px; } }

.navUser-item--cart .cart-subtotal {
  font-weight: 400;
  margin-left: 3px; }

.navUser-item--menu-toggle .navUser-action {
  font-size: 14px;
  font-weight: 600;
  padding: 0 8px; }
  @media only screen and (max-width: 767px) {
    .navUser-item--menu-toggle .navUser-action {
      padding: 0 6px;
      font-size: 13px; } }

@media only screen and (min-width: 768px) {
  .navUser-item .dropdown-menu {
    min-width: 400px; } }

.navUser-item--cart .dropdown-menu {
  max-width: 100%; }
  @media only screen and (min-width: 768px) {
    .navUser-item--cart .dropdown-menu {
      max-width: 580px;
      min-width: 480px; } }

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

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

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

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

.navUser-action--quickSearch.is-open {
  position: relative; }
  .navUser-action--quickSearch.is-open:before {
    border: inset 10px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: transparent transparent #eeeeee transparent;
    border-bottom-style: solid;
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%); }

.dropdown--quickSearch::before, .dropdown--quickSearch::after {
  content: "";
  position: absolute;
  right: 93px;
  top: -10px;
  width: 0;
  height: 0;
  height: 20px;
  width: 20px;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.dropdown--quickSearch::before {
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25); }

.dropdown--quickSearch::after {
  background: #ffffff; }

.dropdown--quickSearch .dropdown-inner {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
  position: relative; }

.dropdown--quickSearch.is-open {
  left: auto !important;
  outline: none;
  right: 0 !important;
  width: 100% !important;
  max-width: 505px;
  top: 100% !important;
  z-index: 10; }

.dropdown--quickSearch .form {
  margin: auto; }

.dropdown--quickSearch .form,
.dropdown--quickSearch .form-field {
  margin-bottom: 0; }

.dropdown--quickSearch .productGrid {
  padding: 20px 0 0; }
  @media only screen and (min-width: 480px) {
    .dropdown--quickSearch .productGrid {
      padding: 40px 0 0; } }

.countPill {
  display: inline-block; }

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

.countPill--alt {
  background-color: #eeeeee;
  color: #666666; }

.cart-quantity-wrapper {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  margin-left: 4px; }
  @media only screen and (max-width: 767px) {
    .cart-quantity-wrapper {
      background: #66BCFF;
      color: #000;
      border-radius: 12px;
      padding: 2px 8px;
      font-size: 13px;
      min-width: 28px;
      height: 22px;
      justify-content: center;
      margin-left: 6px; } }

@media only screen and (min-width: 991px) {
  .header-elements-wrapper {
    display: flex;
    align-items: center; } }

@media only screen and (max-width: 990px) {
  .header-elements-wrapper .search-wrapper {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 7px; } }

@media only screen and (max-width: 767px) {
  .header-elements-wrapper .search-wrapper {
    left: 10px;
    right: 10px;
    bottom: 6px; } }

@media only screen and (min-width: 991px) {
  .header-elements-wrapper .search-wrapper {
    flex-grow: 1;
    margin-right: 40px; } }

@media only screen and (min-width: 1400px) {
  .header-elements-wrapper .search-wrapper {
    margin-right: 60px; } }

.header-elements-wrapper .search-wrapper .form {
  position: relative; }
  @media only screen and (max-width: 990px) {
    .header-elements-wrapper .search-wrapper .form {
      max-width: 700px;
      margin: 0 auto; } }
  .header-elements-wrapper .search-wrapper .form .form-field {
    border-radius: 4px;
    border: 1px solid #ddd;
    margin: 0; }
    @media only screen and (max-width: 767px) {
      .header-elements-wrapper .search-wrapper .form .form-field {
        border-color: #e8e8e8; } }
  .header-elements-wrapper .search-wrapper .form .form-input {
    width: 100%;
    background-color: #fafafa;
    color: #000;
    height: 43px;
    border: 0 none;
    font-size: 16px; }
    @media only screen and (max-width: 767px) {
      .header-elements-wrapper .search-wrapper .form .form-input {
        height: 36px;
        font-size: 14px;
        background-color: #f8f8f8; } }
    .header-elements-wrapper .search-wrapper .form .form-input.placeholder {
      color: #666666; }
    .header-elements-wrapper .search-wrapper .form .form-input:-moz-placeholder {
      color: #666666; }
    .header-elements-wrapper .search-wrapper .form .form-input::-moz-placeholder {
      color: #666666; }
    .header-elements-wrapper .search-wrapper .form .form-input:-ms-input-placeholder {
      color: #666666; }
    .header-elements-wrapper .search-wrapper .form .form-input::-webkit-input-placeholder {
      color: #666666; }

.header-elements-wrapper .search-wrapper button {
  background-color: #66BCFF;
  position: absolute;
  right: 0;
  height: 100%;
  width: 43px;
  top: 0;
  padding: 0 8px;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: 0 none;
  cursor: pointer;
  color: #000;
  transition: background-color 0.2s ease, border-radius 0.2s ease;
  border-radius: 0 4px 4px 0; }
  @media only screen and (max-width: 767px) {
    .header-elements-wrapper .search-wrapper button {
      width: 36px; } }
  .header-elements-wrapper .search-wrapper button .icon {
    fill: #fff;
    font-size: 0;
    padding: 0;
    width: 20px;
    height: 20px; }
    @media only screen and (max-width: 767px) {
      .header-elements-wrapper .search-wrapper button .icon {
        width: 18px;
        height: 18px; } }
  .header-elements-wrapper .search-wrapper button:hover {
    background-color: #33a6ff; }

@media only screen and (max-width: 767px) {
  .ui-autocomplete {
    max-width: 335px !important; } }

.footer .socialLinks .icon {
  color: #fff;
  transition: color 0.2s ease; }
  .footer .socialLinks .icon:hover {
    color: #66BCFF; }

.newsletter-row {
  background-color: #ffffff;
  padding: 30px 0 25px;
  text-align: center;
  border-top: 2px solid #DADADA; }
  @media only screen and (min-width: 768px) {
    .newsletter-row {
      text-align: left;
      padding: 50px 0; } }
  @media only screen and (min-width: 991px) {
    .newsletter-row {
      padding: 60px 0; } }
  .newsletter-row .newsletter-heading {
    margin-bottom: 12px; }
    @media only screen and (min-width: 768px) {
      .newsletter-row .newsletter-heading {
        margin-bottom: 15px; } }
  .newsletter-row .newsletter-subtitle {
    margin-bottom: 20px;
    line-height: 1.5; }
    @media only screen and (max-width: 767px) {
      .newsletter-row .newsletter-subtitle {
        font-size: 14px; } }
    @media only screen and (min-width: 768px) {
      .newsletter-row .newsletter-subtitle {
        margin-bottom: 25px; } }
  .newsletter-row .form-content-wrap {
    max-width: 500px;
    margin: 0 auto; }

.footer-top {
  background-color: #29292a;
  padding: 35px 0; }
  @media only screen and (min-width: 768px) {
    .footer-top {
      padding: 50px 0; } }
  @media only screen and (min-width: 991px) {
    .footer-top {
      padding: 60px 0; } }
  .footer-top .flex {
    display: flex;
    justify-content: space-around; }

@media only screen and (max-width: 767px) {
  .footer-info-col {
    margin-bottom: 35px; }
    .footer-info-col:last-child {
      margin-bottom: 0; }
    .footer-info-col.footer-info-col--social {
      margin: 0 auto;
      max-width: 295px; } }

@media only screen and (min-width: 768px) {
  .footer-info-col.social-end {
    float: right; } }

.footer-info-heading {
  margin-bottom: 20px;
  color: #66BCFF;
  font-size: 18px; }
  @media only screen and (min-width: 768px) {
    .footer-info-heading {
      margin-bottom: 25px; } }

.footer-info-list {
  list-style: none;
  margin-left: 0;
  font-size: 16px; }
  .footer-info-list li {
    margin-bottom: 12px; }
    @media only screen and (min-width: 768px) {
      .footer-info-list li {
        margin-bottom: 15px; } }
  .footer-info-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease; }
    .footer-info-list a:hover {
      color: #66BCFF; }

.footer-info-address-col .number {
  color: #ffffff; }

.footer-info-address-col p, .footer-info-address-col .p {
  color: #ffffff; }

.footer-payment-icons {
  margin-top: 20px;
  font-size: 0; }
  @media only screen and (min-width: 768px) {
    .footer-payment-icons {
      margin-top: 40px; } }
  .footer-payment-icons .footer-payment-icon {
    height: 100%;
    margin-right: 10px;
    vertical-align: middle;
    width: 50px; }
    .footer-payment-icons .footer-payment-icon:last-child {
      margin-right: 0; }

@media only screen and (min-width: 480px) {
  .footer-geotrust-ssl-seal {
    bottom: 0;
    position: absolute;
    right: 16px; } }

.footer-geotrust-ssl-seal table {
  margin: auto; }

.footer-bottom {
  padding: 20px 0;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1.6; }
  @media only screen and (min-width: 768px) {
    .footer-bottom {
      padding: 18px 0;
      font-size: 16px; } }
  .footer-bottom p, .footer-bottom .p {
    margin: 8px 0; }
    @media only screen and (min-width: 768px) {
      .footer-bottom p, .footer-bottom .p {
        margin: 0; } }
  .footer-bottom p, .footer-bottom .p,
  .footer-bottom a {
    line-height: inherit;
    color: inherit;
    transition: color 0.2s ease; }
  .footer-bottom a:hover {
    color: #66BCFF; }
  .footer-bottom .powered-by {
    text-transform: uppercase; }

.cart-form .form .form-inner,
.no-results .form .form-inner,
.newsletter-form-wrapper .form .form-inner {
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .cart-form .form .form-inner,
    .no-results .form .form-inner,
    .newsletter-form-wrapper .form .form-inner {
      display: flex; } }

.cart-form .form button,
.cart-form .form input,
.no-results .form button,
.no-results .form input,
.newsletter-form-wrapper .form button,
.newsletter-form-wrapper .form input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-family: 'Capture It',sans-serif; }

.cart-form .form .field_group,
.no-results .form .field_group,
.newsletter-form-wrapper .form .field_group {
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .cart-form .form .field_group,
    .no-results .form .field_group,
    .newsletter-form-wrapper .form .field_group {
      margin-bottom: 22px; } }
  .cart-form .form .field_group input,
  .no-results .form .field_group input,
  .newsletter-form-wrapper .form .field_group input {
    width: 100%;
    height: 45px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }

@media only screen and (max-width: 767px) {
  .cart-form .form .button,
  .no-results .form .button,
  .newsletter-form-wrapper .form .button {
    display: block;
    width: 100%; } }

.klaviyo_messages {
  margin: 0 auto; }

.banner-blog {
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .banner-blog {
      margin-bottom: 50px; } }
  @media only screen and (min-width: 768px) {
    .banner-blog .banner-content {
      padding-top: 36px; } }
  .banner-blog h1, .banner-blog .h1, .banner-blog .productView-price .price--withoutTax, .productView-price .banner-blog .price--withoutTax, .banner-blog h2, .banner-blog .h2, .banner-blog .page-heading {
    color: #fff; }
  .banner-blog h1, .banner-blog .h1, .banner-blog .productView-price .price--withoutTax, .productView-price .banner-blog .price--withoutTax {
    margin-bottom: 10px; }
  .banner-blog h2, .banner-blog .h2, .banner-blog .page-heading {
    margin-bottom: 0; }

.blog-post {
  margin: 0 auto 50px;
  max-width: 585px;
  border-bottom: 1px solid #bababb;
  padding-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .blog-post {
      max-width: 100%;
      margin-bottom: 80px;
      padding-bottom: 32px; } }
  .blog-post .blog-title {
    text-align: center; }
    .blog-post .blog-title a {
      text-decoration: none; }
    @media only screen and (min-width: 768px) {
      .blog-post .blog-title {
        min-height: 48px; } }
  .blog-post .blog-thumbnail {
    margin: 0 0 28px; }
    .blog-post .blog-thumbnail a {
      padding-top: calc(300 / 583 * 100%);
      width: 100%;
      position: relative;
      display: block;
      overflow: hidden; }
      .blog-post .blog-thumbnail a img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .blog-post .blog-meta {
    margin-bottom: 24px; }
  .blog-post .blog-read-more {
    color: #1E1E1E; }
  .grid__item:nth-last-of-type(-n + 2) .blog-post {
    margin-bottom: 40px; }

.blog-meta {
  color: #979797;
  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: #66BCFF;
  max-width: 630px;
  margin: 0 auto 25px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .blog-single .blog-title {
      margin-bottom: 45px; } }

.blog-single .social-share-wrap {
  text-align: center; }

.blog-single .blog-post-body {
  padding-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .blog-single .blog-post-body {
      padding-bottom: 60px; } }

.blog-single .blog-post-content ul, .blog-single .blog-post-content ol, .blog-single .blog-post-content dl, .blog-single .blog-post-content p, .blog-single .blog-post-content .p, .blog-single .blog-post-content .p {
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .blog-single .blog-post-content ul, .blog-single .blog-post-content ol, .blog-single .blog-post-content dl, .blog-single .blog-post-content p, .blog-single .blog-post-content .p, .blog-single .blog-post-content .p {
      margin-bottom: 25px; } }

/************ Blog Sidebar **********/
.blog-sidebar-inner {
  max-width: 200px;
  margin-left: auto;
  margin-right: 25px; }
  .blog-sidebar-inner .blog-block {
    margin-bottom: 75px; }
    .blog-sidebar-inner .blog-block h3, .blog-sidebar-inner .blog-block .h3, .blog-sidebar-inner .blog-block .card .price--withoutTax, .card .blog-sidebar-inner .blog-block .price--withoutTax, .blog-sidebar-inner .blog-block .section-header {
      margin-bottom: 24px; }
    .blog-sidebar-inner .blog-block .blog-sidebar-list {
      margin: 0;
      list-style: none; }
      .blog-sidebar-inner .blog-block .blog-sidebar-list li {
        margin-bottom: 8px; }
        .blog-sidebar-inner .blog-block .blog-sidebar-list li a {
          color: #979797; }
          .blog-sidebar-inner .blog-block .blog-sidebar-list li a:hover {
            color: #1E1E1E; }

.productList {
  list-style: none; }
  .productList .product + .product {
    margin-top: 100px; }

@media only screen and (min-width: 480px) {
  .listItem {
    display: table; } }

@media only screen and (min-width: 480px) {
  .listItem-figure,
  .listItem-body {
    display: table-cell;
    vertical-align: top; } }

@media only screen and (min-width: 991px) {
  .listItem-figure,
  .listItem-body {
    vertical-align: middle; } }

.listItem-figure {
  margin: 0 0 20px; }
  @media only screen and (min-width: 480px) {
    .listItem-figure {
      margin-bottom: 0; } }

.listItem-image {
  width: 100%; }

@media only screen and (min-width: 991px) {
  .listItem-content {
    display: table; } }

@media only screen and (min-width: 991px) {
  .listItem-details,
  .listItem-actions {
    display: table-cell;
    vertical-align: top; } }

@media only screen and (min-width: 991px) {
  .listItem-details {
    padding-right: 80px; }
    .listItem-details > :last-child {
      margin-bottom: 0; } }

.listItem-rating {
  margin-bottom: 5px; }

.listItem-brand {
  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 {
  overflow: visible;
  margin-bottom: 0; }

.form-option-variant--color,
.form-option-variant--pattern {
  height: 22px;
  width: 22px; }

.form-option-expanded {
  background-color: #ffffff;
  border: 1px solid #DADADA;
  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 {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100px;
  width: 100px; }

/* jsTree default theme */
.jstree-node,
.jstree-children,
.jstree-container-ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none; }

.jstree-node {
  white-space: nowrap; }

.jstree-anchor {
  display: inline-block;
  color: black;
  white-space: nowrap;
  padding: 0 4px 0 1px;
  margin: 0;
  vertical-align: top; }

.jstree-anchor:focus {
  outline: 0; }

.jstree-anchor,
.jstree-anchor:link,
.jstree-anchor:visited,
.jstree-anchor:hover,
.jstree-anchor:active {
  text-decoration: none;
  color: inherit; }

.jstree-icon {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  text-align: center; }

.jstree-icon:empty {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  text-align: center; }

.jstree-ocl {
  cursor: pointer; }

.jstree-leaf > .jstree-ocl {
  cursor: default; }

.jstree .jstree-open > .jstree-children {
  display: block; }

.jstree .jstree-closed > .jstree-children,
.jstree .jstree-leaf > .jstree-children {
  display: none; }

.jstree-anchor > .jstree-themeicon {
  margin-right: 2px; }

.jstree-no-icons .jstree-themeicon,
.jstree-anchor > .jstree-themeicon-hidden {
  display: none; }

.jstree-hidden {
  display: none; }

.jstree-rtl .jstree-anchor {
  padding: 0 1px 0 4px; }

.jstree-rtl .jstree-anchor > .jstree-themeicon {
  margin-left: 2px;
  margin-right: 0; }

.jstree-rtl .jstree-node {
  margin-left: 0; }

.jstree-rtl .jstree-container-ul > .jstree-node {
  margin-right: 0; }

.jstree-wholerow-ul {
  position: relative;
  display: inline-block;
  min-width: 100%; }

.jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
  cursor: pointer; }

.jstree-wholerow-ul .jstree-anchor,
.jstree-wholerow-ul .jstree-icon {
  position: relative; }

.jstree-wholerow-ul .jstree-wholerow {
  width: 100%;
  cursor: pointer;
  position: absolute;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.vakata-context {
  display: none; }

.vakata-context,
.vakata-context ul {
  margin: 0;
  padding: 2px;
  position: absolute;
  background: #f5f5f5;
  border: 1px solid #979797;
  box-shadow: 2px 2px 2px #999999; }

.vakata-context ul {
  list-style: none;
  left: 100%;
  margin-top: -2.7em;
  margin-left: -4px; }

.vakata-context .vakata-context-right ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px; }

.vakata-context li {
  list-style: none;
  display: inline; }

.vakata-context li > a {
  display: block;
  padding: 0 2em 0 2em;
  text-decoration: none;
  width: auto;
  color: black;
  white-space: nowrap;
  line-height: 2.4em;
  text-shadow: 1px 1px 0 white;
  border-radius: 1px; }

.vakata-context li > a:hover {
  position: relative;
  background-color: #e8eff7;
  box-shadow: 0 0 2px #0a6aa1; }

.vakata-context li > a.vakata-context-parent {
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");
  background-position: right center;
  background-repeat: no-repeat; }

.vakata-context li > a:focus {
  outline: 0; }

.vakata-context .vakata-context-hover > a {
  position: relative;
  background-color: #e8eff7;
  box-shadow: 0 0 2px #0a6aa1; }

.vakata-context .vakata-context-separator > a,
.vakata-context .vakata-context-separator > a:hover {
  background: white;
  border: 0;
  border-top: 1px solid #e2e3e3;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  padding: 0;
  margin: 0 0 0 2.4em;
  border-left: 1px solid #e0e0e0;
  text-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  border-radius: 0; }

.vakata-context .vakata-contextmenu-disabled a,
.vakata-context .vakata-contextmenu-disabled a:hover {
  color: silver;
  background-color: transparent;
  border: 0;
  box-shadow: 0 0 0; }

.vakata-context li > a > i {
  text-decoration: none;
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  background: transparent;
  margin: 0 0 0 -2em;
  vertical-align: top;
  text-align: center;
  line-height: 2.4em; }

.vakata-context li > a > i:empty {
  width: 2.4em;
  line-height: 2.4em; }

.vakata-context li > a .vakata-contextmenu-sep {
  display: inline-block;
  width: 1px;
  height: 2.4em;
  background: white;
  margin: 0 0.5em 0 0;
  border-left: 1px solid #e2e3e3; }

.vakata-context .vakata-contextmenu-shortcut {
  font-size: 0.8em;
  color: silver;
  opacity: 0.5;
  display: none; }

.vakata-context-rtl ul {
  left: auto;
  right: 100%;
  margin-left: auto;
  margin-right: -4px; }

.vakata-context-rtl li > a.vakata-context-parent {
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");
  background-position: left center;
  background-repeat: no-repeat; }

.vakata-context-rtl .vakata-context-separator > a {
  margin: 0 2.4em 0 0;
  border-left: 0;
  border-right: 1px solid #e2e3e3; }

.vakata-context-rtl .vakata-context-left ul {
  right: auto;
  left: 100%;
  margin-left: -4px;
  margin-right: auto; }

.vakata-context-rtl li > a > i {
  margin: 0 -2em 0 0; }

.vakata-context-rtl li > a .vakata-contextmenu-sep {
  margin: 0 0 0 0.5em;
  border-left-color: white;
  background: #e2e3e3; }

#jstree-marker {
  position: absolute;
  top: 0;
  left: 0;
  margin: -5px 0 0 0;
  padding: 0;
  border-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0; }

#jstree-dnd {
  line-height: 16px;
  margin: 0;
  padding: 4px; }

#jstree-dnd .jstree-icon,
#jstree-dnd .jstree-copy {
  display: inline-block;
  text-decoration: none;
  margin: 0 2px 0 0;
  padding: 0;
  width: 16px;
  height: 16px; }

#jstree-dnd .jstree-ok {
  background: green; }

#jstree-dnd .jstree-er {
  background: red; }

#jstree-dnd .jstree-copy {
  margin: 0 2px 0 2px; }

.jstree-default .jstree-node,
.jstree-default .jstree-icon {
  background-repeat: no-repeat;
  background-color: transparent; }

.jstree-default .jstree-anchor,
.jstree-default .jstree-wholerow {
  transition: background-color 0.15s, box-shadow 0.15s; }

.jstree-default .jstree-hovered {
  background: #e7f4f9;
  border-radius: 2px;
  box-shadow: inset 0 0 1px #cccccc; }

.jstree-default .jstree-clicked {
  background: #beebff;
  border-radius: 2px;
  box-shadow: inset 0 0 1px #999999; }

.jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon {
  display: none; }

.jstree-default .jstree-disabled {
  background: transparent;
  color: #666666; }

.jstree-default .jstree-disabled.jstree-hovered {
  background: transparent;
  box-shadow: none; }

.jstree-default .jstree-disabled.jstree-clicked {
  background: #efefef; }

.jstree-default .jstree-disabled > .jstree-icon {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */ }

.jstree-default .jstree-search {
  font-style: italic;
  color: #8b0000;
  font-weight: bold; }

.jstree-default .jstree-no-checkboxes .jstree-checkbox {
  display: none !important; }

.jstree-default.jstree-checkbox-no-clicked .jstree-clicked {
  background: transparent;
  box-shadow: none; }

.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {
  background: #e7f4f9; }

.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {
  background: transparent; }

.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {
  background: #e7f4f9; }

.jstree-default > .jstree-striped {
  min-width: 100%;
  display: inline-block;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat; }

.jstree-default > .jstree-wholerow-ul .jstree-hovered,
.jstree-default > .jstree-wholerow-ul .jstree-clicked {
  background: transparent;
  box-shadow: none;
  border-radius: 0; }

.jstree-default .jstree-wholerow {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.jstree-default .jstree-wholerow-hovered {
  background: #e7f4f9; }

.jstree-default .jstree-wholerow-clicked {
  background: #beebff;
  background: -webkit-linear-gradient(top, #beebff 0%, #a8e4ff 100%);
  background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%); }

.jstree-default .jstree-node {
  min-height: 24px;
  line-height: 24px;
  margin-left: 24px;
  min-width: 24px; }

.jstree-default .jstree-anchor {
  line-height: 24px;
  height: 24px; }

.jstree-default .jstree-icon {
  width: 24px;
  height: 24px;
  line-height: 24px; }

.jstree-default .jstree-icon:empty {
  width: 24px;
  height: 24px;
  line-height: 24px; }

.jstree-default.jstree-rtl .jstree-node {
  margin-right: 24px; }

.jstree-default .jstree-wholerow {
  height: 24px; }

.jstree-default .jstree-node,
.jstree-default .jstree-icon {
  background-image: url("../img/vendor/jstree/32px.png"); }

.jstree-default .jstree-node {
  background-position: -292px -4px;
  background-repeat: repeat-y; }

.jstree-default .jstree-last {
  background: transparent; }

.jstree-default .jstree-open > .jstree-ocl {
  background-position: -132px -4px; }

.jstree-default .jstree-closed > .jstree-ocl {
  background-position: -100px -4px; }

.jstree-default .jstree-leaf > .jstree-ocl {
  background-position: -68px -4px; }

.jstree-default .jstree-themeicon {
  background-position: -260px -4px; }

.jstree-default > .jstree-no-dots .jstree-node,
.jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -36px -4px; }

.jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -4px -4px; }

.jstree-default .jstree-disabled {
  background: transparent; }

.jstree-default .jstree-disabled.jstree-hovered {
  background: transparent; }

.jstree-default .jstree-disabled.jstree-clicked {
  background: #efefef; }

.jstree-default .jstree-checkbox {
  background-position: -164px -4px; }

.jstree-default .jstree-checkbox:hover {
  background-position: -164px -36px; }

.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default .jstree-checked > .jstree-checkbox {
  background-position: -228px -4px; }

.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.jstree-default .jstree-checked > .jstree-checkbox:hover {
  background-position: -228px -36px; }

.jstree-default .jstree-anchor > .jstree-undetermined {
  background-position: -196px -4px; }

.jstree-default .jstree-anchor > .jstree-undetermined:hover {
  background-position: -196px -36px; }

.jstree-default .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */ }

.jstree-default > .jstree-striped {
  background-size: auto 48px; }

.jstree-default.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y; }

.jstree-default.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -132px -36px; }

.jstree-default.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -100px -36px; }

.jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -68px -36px; }

.jstree-default.jstree-rtl > .jstree-no-dots .jstree-node,
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -36px -36px; }

.jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -4px -36px; }

.jstree-default .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0; }

.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url("../img/vendor/jstree/throbber.gif") center center no-repeat; }

.jstree-default .jstree-file {
  background: url("../img/vendor/jstree/32px.png") -100px -68px no-repeat; }

.jstree-default .jstree-folder {
  background: url("../img/vendor/jstree/32px.png") -260px -4px no-repeat; }

.jstree-default > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0; }

#jstree-dnd.jstree-default {
  line-height: 24px;
  padding: 0 4px; }

#jstree-dnd.jstree-default .jstree-ok,
#jstree-dnd.jstree-default .jstree-er {
  background-image: url("../img/vendor/jstree/32px.png");
  background-repeat: no-repeat;
  background-color: transparent; }

#jstree-dnd.jstree-default i {
  background: transparent;
  width: 24px;
  height: 24px;
  line-height: 24px; }

#jstree-dnd.jstree-default .jstree-ok {
  background-position: -4px -68px; }

#jstree-dnd.jstree-default .jstree-er {
  background-position: -36px -68px; }

.jstree-default.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); }

.jstree-default.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default-small .jstree-node {
  min-height: 18px;
  line-height: 18px;
  margin-left: 18px;
  min-width: 18px; }

.jstree-default-small .jstree-anchor {
  line-height: 18px;
  height: 18px; }

.jstree-default-small .jstree-icon {
  width: 18px;
  height: 18px;
  line-height: 18px; }

.jstree-default-small .jstree-icon:empty {
  width: 18px;
  height: 18px;
  line-height: 18px; }

.jstree-default-small.jstree-rtl .jstree-node {
  margin-right: 18px; }

.jstree-default-small .jstree-wholerow {
  height: 18px; }

.jstree-default-small .jstree-node,
.jstree-default-small .jstree-icon {
  background-image: url("../img/vendor/jstree/32px.png"); }

.jstree-default-small .jstree-node {
  background-position: -295px -7px;
  background-repeat: repeat-y; }

.jstree-default-small .jstree-last {
  background: transparent; }

.jstree-default-small .jstree-open > .jstree-ocl {
  background-position: -135px -7px; }

.jstree-default-small .jstree-closed > .jstree-ocl {
  background-position: -103px -7px; }

.jstree-default-small .jstree-leaf > .jstree-ocl {
  background-position: -71px -7px; }

.jstree-default-small .jstree-themeicon {
  background-position: -263px -7px; }

.jstree-default-small > .jstree-no-dots .jstree-node,
.jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -39px -7px; }

.jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -7px -7px; }

.jstree-default-small .jstree-disabled {
  background: transparent; }

.jstree-default-small .jstree-disabled.jstree-hovered {
  background: transparent; }

.jstree-default-small .jstree-disabled.jstree-clicked {
  background: #efefef; }

.jstree-default-small .jstree-checkbox {
  background-position: -167px -7px; }

.jstree-default-small .jstree-checkbox:hover {
  background-position: -167px -39px; }

.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default-small .jstree-checked > .jstree-checkbox {
  background-position: -231px -7px; }

.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.jstree-default-small .jstree-checked > .jstree-checkbox:hover {
  background-position: -231px -39px; }

.jstree-default-small .jstree-anchor > .jstree-undetermined {
  background-position: -199px -7px; }

.jstree-default-small .jstree-anchor > .jstree-undetermined:hover {
  background-position: -199px -39px; }

.jstree-default-small .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */ }

.jstree-default-small > .jstree-striped {
  background-size: auto 36px; }

.jstree-default-small.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y; }

.jstree-default-small.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -135px -39px; }

.jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -103px -39px; }

.jstree-default-small.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -71px -39px; }

.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-node,
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -39px -39px; }

.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: -7px -39px; }

.jstree-default-small .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0; }

.jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url("../img/vendor/jstree/throbber.gif") center center no-repeat; }

.jstree-default-small .jstree-file {
  background: url("../img/vendor/jstree/32px.png") -103px -71px no-repeat; }

.jstree-default-small .jstree-folder {
  background: url("../img/vendor/jstree/32px.png") -263px -7px no-repeat; }

.jstree-default-small > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0; }

#jstree-dnd.jstree-default-small {
  line-height: 18px;
  padding: 0 4px; }

#jstree-dnd.jstree-default-small .jstree-ok,
#jstree-dnd.jstree-default-small .jstree-er {
  background-image: url("../img/vendor/jstree/32px.png");
  background-repeat: no-repeat;
  background-color: transparent; }

#jstree-dnd.jstree-default-small i {
  background: transparent;
  width: 18px;
  height: 18px;
  line-height: 18px; }

#jstree-dnd.jstree-default-small .jstree-ok {
  background-position: -7px -71px; }

#jstree-dnd.jstree-default-small .jstree-er {
  background-position: -39px -71px; }

.jstree-default-small.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg=="); }

.jstree-default-small.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default-large .jstree-node {
  min-height: 32px;
  line-height: 32px;
  margin-left: 32px;
  min-width: 32px; }

.jstree-default-large .jstree-anchor {
  line-height: 32px;
  height: 32px; }

.jstree-default-large .jstree-icon {
  width: 32px;
  height: 32px;
  line-height: 32px; }

.jstree-default-large .jstree-icon:empty {
  width: 32px;
  height: 32px;
  line-height: 32px; }

.jstree-default-large.jstree-rtl .jstree-node {
  margin-right: 32px; }

.jstree-default-large .jstree-wholerow {
  height: 32px; }

.jstree-default-large .jstree-node,
.jstree-default-large .jstree-icon {
  background-image: url("../img/vendor/jstree/32px.png"); }

.jstree-default-large .jstree-node {
  background-position: -288px 0px;
  background-repeat: repeat-y; }

.jstree-default-large .jstree-last {
  background: transparent; }

.jstree-default-large .jstree-open > .jstree-ocl {
  background-position: -128px 0px; }

.jstree-default-large .jstree-closed > .jstree-ocl {
  background-position: -96px 0px; }

.jstree-default-large .jstree-leaf > .jstree-ocl {
  background-position: -64px 0px; }

.jstree-default-large .jstree-themeicon {
  background-position: -256px 0px; }

.jstree-default-large > .jstree-no-dots .jstree-node,
.jstree-default-large > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default-large > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -32px 0px; }

.jstree-default-large > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: 0px 0px; }

.jstree-default-large .jstree-disabled {
  background: transparent; }

.jstree-default-large .jstree-disabled.jstree-hovered {
  background: transparent; }

.jstree-default-large .jstree-disabled.jstree-clicked {
  background: #efefef; }

.jstree-default-large .jstree-checkbox {
  background-position: -160px 0px; }

.jstree-default-large .jstree-checkbox:hover {
  background-position: -160px -32px; }

.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default-large .jstree-checked > .jstree-checkbox {
  background-position: -224px 0px; }

.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
.jstree-default-large .jstree-checked > .jstree-checkbox:hover {
  background-position: -224px -32px; }

.jstree-default-large .jstree-anchor > .jstree-undetermined {
  background-position: -192px 0px; }

.jstree-default-large .jstree-anchor > .jstree-undetermined:hover {
  background-position: -192px -32px; }

.jstree-default-large .jstree-checkbox-disabled {
  opacity: 0.8;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */ }

.jstree-default-large > .jstree-striped {
  background-size: auto 64px; }

.jstree-default-large.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  background-position: 100% 1px;
  background-repeat: repeat-y; }

.jstree-default-large.jstree-rtl .jstree-last {
  background: transparent; }

.jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl {
  background-position: -128px -32px; }

.jstree-default-large.jstree-rtl .jstree-closed > .jstree-ocl {
  background-position: -96px -32px; }

.jstree-default-large.jstree-rtl .jstree-leaf > .jstree-ocl {
  background-position: -64px -32px; }

.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-node,
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  background: transparent; }

.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-position: -32px -32px; }

.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-position: 0px -32px; }

.jstree-default-large .jstree-themeicon-custom {
  background-color: transparent;
  background-image: none;
  background-position: 0 0; }

.jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: url("../img/vendor/jstree/throbber.gif") center center no-repeat; }

.jstree-default-large .jstree-file {
  background: url("../img/vendor/jstree/32px.png") -96px -64px no-repeat; }

.jstree-default-large .jstree-folder {
  background: url("../img/vendor/jstree/32px.png") -256px 0px no-repeat; }

.jstree-default-large > .jstree-container-ul > .jstree-node {
  margin-left: 0;
  margin-right: 0; }

#jstree-dnd.jstree-default-large {
  line-height: 32px;
  padding: 0 4px; }

#jstree-dnd.jstree-default-large .jstree-ok,
#jstree-dnd.jstree-default-large .jstree-er {
  background-image: url("../img/vendor/jstree/32px.png");
  background-repeat: no-repeat;
  background-color: transparent; }

#jstree-dnd.jstree-default-large i {
  background: transparent;
  width: 32px;
  height: 32px;
  line-height: 32px; }

#jstree-dnd.jstree-default-large .jstree-ok {
  background-position: 0px -64px; }

#jstree-dnd.jstree-default-large .jstree-er {
  background-position: -32px -64px; }

.jstree-default-large.jstree-rtl .jstree-node {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg=="); }

.jstree-default-large.jstree-rtl .jstree-last {
  background: transparent; }

@media (max-width: 768px) {
  #jstree-dnd.jstree-dnd-responsive {
    line-height: 40px;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 1px 1px white; }
  #jstree-dnd.jstree-dnd-responsive > i {
    background: transparent;
    width: 40px;
    height: 40px; }
  #jstree-dnd.jstree-dnd-responsive > .jstree-ok {
    background-image: url("../img/vendor/jstree/40px.png");
    background-position: 0 -200px;
    background-size: 120px 240px; }
  #jstree-dnd.jstree-dnd-responsive > .jstree-er {
    background-image: url("../img/vendor/jstree/40px.png");
    background-position: -40px -200px;
    background-size: 120px 240px; }
  #jstree-marker.jstree-dnd-responsive {
    border-left-width: 10px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    margin-top: -10px; } }

@media (max-width: 768px) {
  .jstree-default-responsive {
    /*
	.jstree-open > .jstree-ocl,
	.jstree-closed > .jstree-ocl { border-radius:20px; background-color:white; }
	*/ }
  .jstree-default-responsive .jstree-icon {
    background-image: url("../img/vendor/jstree/40px.png"); }
  .jstree-default-responsive .jstree-node,
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
    background: transparent; }
  .jstree-default-responsive .jstree-node {
    min-height: 40px;
    line-height: 40px;
    margin-left: 40px;
    min-width: 40px;
    white-space: nowrap; }
  .jstree-default-responsive .jstree-anchor {
    line-height: 40px;
    height: 40px; }
  .jstree-default-responsive .jstree-icon,
  .jstree-default-responsive .jstree-icon:empty {
    width: 40px;
    height: 40px;
    line-height: 40px; }
  .jstree-default-responsive > .jstree-container-ul > .jstree-node {
    margin-left: 0; }
  .jstree-default-responsive.jstree-rtl .jstree-node {
    margin-left: 0;
    margin-right: 40px; }
  .jstree-default-responsive.jstree-rtl .jstree-container-ul > .jstree-node {
    margin-right: 0; }
  .jstree-default-responsive .jstree-ocl,
  .jstree-default-responsive .jstree-themeicon,
  .jstree-default-responsive .jstree-checkbox {
    background-size: 120px 240px; }
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
    background: transparent; }
  .jstree-default-responsive .jstree-open > .jstree-ocl {
    background-position: 0 0px !important; }
  .jstree-default-responsive .jstree-closed > .jstree-ocl {
    background-position: 0 -40px !important; }
  .jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl {
    background-position: -40px 0px !important; }
  .jstree-default-responsive .jstree-themeicon {
    background-position: -40px -40px; }
  .jstree-default-responsive .jstree-checkbox,
  .jstree-default-responsive .jstree-checkbox:hover {
    background-position: -40px -80px; }
  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
  .jstree-default-responsive .jstree-checked > .jstree-checkbox,
  .jstree-default-responsive .jstree-checked > .jstree-checkbox:hover {
    background-position: 0 -80px; }
  .jstree-default-responsive .jstree-anchor > .jstree-undetermined,
  .jstree-default-responsive .jstree-anchor > .jstree-undetermined:hover {
    background-position: 0 -120px; }
  .jstree-default-responsive .jstree-anchor {
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 1px 1px white; }
  .jstree-default-responsive > .jstree-striped {
    background: transparent; }
  .jstree-default-responsive .jstree-wholerow {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(64, 64, 64, 0.2);
    background: #ebebeb;
    height: 40px; }
  .jstree-default-responsive .jstree-wholerow-hovered {
    background: #e7f4f9; }
  .jstree-default-responsive .jstree-wholerow-clicked {
    background: #beebff; }
  .jstree-default-responsive .jstree-children .jstree-last > .jstree-wholerow {
    box-shadow: inset 0 -6px 3px -5px #666666; }
  .jstree-default-responsive .jstree-children .jstree-open > .jstree-wholerow {
    box-shadow: inset 0 6px 3px -5px #666666;
    border-top: 0; }
  .jstree-default-responsive .jstree-children .jstree-open + .jstree-open {
    box-shadow: none; }
  .jstree-default-responsive .jstree-node,
  .jstree-default-responsive .jstree-icon,
  .jstree-default-responsive .jstree-node > .jstree-ocl,
  .jstree-default-responsive .jstree-themeicon,
  .jstree-default-responsive .jstree-checkbox {
    background-image: url("../img/vendor/jstree/40px.png");
    background-size: 120px 240px; }
  .jstree-default-responsive .jstree-node {
    background-position: -80px 0;
    background-repeat: repeat-y; }
  .jstree-default-responsive .jstree-last {
    background: transparent; }
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
    background-position: -40px -120px; }
  .jstree-default-responsive .jstree-last > .jstree-ocl {
    background-position: -40px -160px; }
  .jstree-default-responsive .jstree-themeicon-custom {
    background-color: transparent;
    background-image: none;
    background-position: 0 0; }
  .jstree-default-responsive .jstree-file {
    background: url("../img/vendor/jstree/40px.png") 0 -160px no-repeat;
    background-size: 120px 240px; }
  .jstree-default-responsive .jstree-folder {
    background: url("../img/vendor/jstree/40px.png") -40px -40px no-repeat;
    background-size: 120px 240px; }
  .jstree-default-responsive > .jstree-container-ul > .jstree-node {
    margin-left: 0;
    margin-right: 0; } }

.contact-form {
  max-width: 960px;
  margin: 0 auto;
  padding: 26px 20px 40px;
  background-color: #fafafa; }
  @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, .contact-info .address-wrap .h2, .contact-info .address-wrap .page-heading {
    margin-bottom: 15px; }
  .contact-info .address-wrap .phone-number {
    margin-bottom: 8px; }
  .contact-info .address-wrap address {
    line-height: 2.2; }

.page-link {
  color: #1A9BFF; }
  .page-link:hover {
    color: #0000FF; }

#faq-section {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #dadada;
  background-color: #29292a; }
  #faq-section .faq-subsection {
    padding: 0;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 990px) {
      #faq-section .faq-subsection {
        padding: 0; } }
    #faq-section .faq-subsection:nth-of-type(2) {
      padding-top: 0; }
  #faq-section .question {
    background-color: #d3d3d3;
    font-size: 18px;
    padding: 0.5rem 1rem;
    max-width: 1024px;
    margin: auto;
    color: #29292a;
    cursor: pointer;
    display: flex; }
    #faq-section .question.opened:after {
      rotate: 180deg; }
    #faq-section .question:after {
      content: " ";
      height: 24px;
      display: block;
      width: 24px;
      margin-left: auto;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url("../icons/chevron-down.svg");
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
      color: #fff; }
    #faq-section .question:hover {
      text-decoration: underline; }
    @media only screen and (max-width: 990px) {
      #faq-section .question {
        font-size: 16px; } }
    #faq-section .question + div {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); }
      #faq-section .question + div p:first-of-type, #faq-section .question + div .p:first-of-type {
        padding-top: 1rem; }
    #faq-section .question.opened + div {
      max-height: 300px; }
      @media only screen and (max-width: 990px) {
        #faq-section .question.opened + div {
          max-height: 400px; } }
  #faq-section p, #faq-section .p, #faq-section li {
    text-align: justify;
    color: #fff;
    padding-left: 1rem; }
    @media only screen and (max-width: 990px) {
      #faq-section p, #faq-section .p, #faq-section li {
        font-size: 13px; } }
  #faq-section div.text {
    max-width: 1024px;
    min-width: 300px;
    margin: auto; }
    @media only screen and (max-width: 767px) {
      #faq-section div.text {
        min-width: 100%; } }
  #faq-section .section-header {
    color: #fff;
    font-size: xx-large; }
    #faq-section .section-header:before {
      content: none; }

.promo-bar {
  background: #29292a; }

.banner-large {
  height: auto; }

@media only screen and (max-width: 990px) {
  #promo-banner-section .promo-banner-background {
    padding: 12px 24px;
    height: auto !important; }
    #promo-banner-section .promo-banner-background div.text {
      width: 100%;
      position: relative;
      transform: none;
      top: 0;
      right: 0; }
      #promo-banner-section .promo-banner-background div.text h1, #promo-banner-section .promo-banner-background div.text .h1, #promo-banner-section .promo-banner-background div.text .productView-price .price--withoutTax, .productView-price #promo-banner-section .promo-banner-background div.text .price--withoutTax {
        font-size: 1.8rem; }
      #promo-banner-section .promo-banner-background div.text p, #promo-banner-section .promo-banner-background div.text .p {
        font-size: 0.8rem; } }

.footer-logo {
  margin-top: -56px; }

.newsletter-form-wrapper input {
  background: #d3d3d3; }
  .newsletter-form-wrapper input::placeholder {
    color: black;
    font-size: x-large; }
  .newsletter-form-wrapper input:focus {
    font-family: unset;
    font-size: unset; }

.newsletter-form-wrapper p, .newsletter-form-wrapper .p {
  font-size: smaller;
  color: #d3d3d3; }

.newsletter-form-wrapper button.button--primary {
  background: #29292a;
  padding-right: 56px;
  width: 100%; }
  .newsletter-form-wrapper button.button--primary:hover {
    background: black;
    color: #66bcff; }

.bg-primary {
  background: #66BCFF !important;
  color: #29292a; }

.productView-options .product-options .form-field {
  max-width: 100%; }

.eat-blog-content {
  width: 100%;
  clear: both;
  display: block;
  overflow: hidden;
  height: auto;
  padding: 20px 0px 50px; }

::-webkit-scrollbar {
  width: 12px; }

::-webkit-scrollbar-track {
  background: #f1f1f1; }

::-webkit-scrollbar-thumb {
  background: #66BCFF;
  border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover {
    background: #0079a1; }

* {
  scrollbar-width: thin;
  scrollbar-color: #66BCFF #f1f1f1; }
