@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: -20px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }

.grid__item {
  float: left;
  padding-left: 20px;
  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; }

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

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

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Elevenths */
.one-eleventh {
  width: 9.09091%; }

.two-elevenths {
  width: 18.18182%; }

.three-elevenths {
  width: 27.27273%; }

.four-elevenths {
  width: 36.36364%; }

.five-elevenths {
  width: 45.45455%; }

.six-elevenths {
  width: 54.54545%; }

.seven-elevenths {
  width: 63.63636%; }

.eight-elevenths {
  width: 72.72727%; }

.nine-elevenths {
  width: 81.81818%; }

.ten-elevenths {
  width: 90.90909%; }

/* 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%; }
  /* Eighths */
  .xsmall--one-eighth {
    width: 12.5%; }
  .xsmall--two-eighths {
    width: 25%; }
  .xsmall--three-eighths {
    width: 37.5%; }
  .xsmall--four-eighths {
    width: 50%; }
  .xsmall--five-eighths {
    width: 62.5%; }
  .xsmall--six-eighths {
    width: 75%; }
  .xsmall--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .xsmall--one-tenth {
    width: 10%; }
  .xsmall--two-tenths {
    width: 20%; }
  .xsmall--three-tenths {
    width: 30%; }
  .xsmall--four-tenths {
    width: 40%; }
  .xsmall--five-tenths {
    width: 50%; }
  .xsmall--six-tenths {
    width: 60%; }
  .xsmall--seven-tenths {
    width: 70%; }
  .xsmall--eight-tenths {
    width: 80%; }
  .xsmall--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .xsmall--one-eleventh {
    width: 9.09091%; }
  .xsmall--two-elevenths {
    width: 18.18182%; }
  .xsmall--three-elevenths {
    width: 27.27273%; }
  .xsmall--four-elevenths {
    width: 36.36364%; }
  .xsmall--five-elevenths {
    width: 45.45455%; }
  .xsmall--six-elevenths {
    width: 54.54545%; }
  .xsmall--seven-elevenths {
    width: 63.63636%; }
  .xsmall--eight-elevenths {
    width: 72.72727%; }
  .xsmall--nine-elevenths {
    width: 81.81818%; }
  .xsmall--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }
  .small--two-eighths {
    width: 25%; }
  .small--three-eighths {
    width: 37.5%; }
  .small--four-eighths {
    width: 50%; }
  .small--five-eighths {
    width: 62.5%; }
  .small--six-eighths {
    width: 75%; }
  .small--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small--one-tenth {
    width: 10%; }
  .small--two-tenths {
    width: 20%; }
  .small--three-tenths {
    width: 30%; }
  .small--four-tenths {
    width: 40%; }
  .small--five-tenths {
    width: 50%; }
  .small--six-tenths {
    width: 60%; }
  .small--seven-tenths {
    width: 70%; }
  .small--eight-tenths {
    width: 80%; }
  .small--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .small--one-eleventh {
    width: 9.09091%; }
  .small--two-elevenths {
    width: 18.18182%; }
  .small--three-elevenths {
    width: 27.27273%; }
  .small--four-elevenths {
    width: 36.36364%; }
  .small--five-elevenths {
    width: 45.45455%; }
  .small--six-elevenths {
    width: 54.54545%; }
  .small--seven-elevenths {
    width: 63.63636%; }
  .small--eight-elevenths {
    width: 72.72727%; }
  .small--nine-elevenths {
    width: 81.81818%; }
  .small--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .small-down--one-eighth {
    width: 12.5%; }
  .small-down--two-eighths {
    width: 25%; }
  .small-down--three-eighths {
    width: 37.5%; }
  .small-down--four-eighths {
    width: 50%; }
  .small-down--five-eighths {
    width: 62.5%; }
  .small-down--six-eighths {
    width: 75%; }
  .small-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small-down--one-tenth {
    width: 10%; }
  .small-down--two-tenths {
    width: 20%; }
  .small-down--three-tenths {
    width: 30%; }
  .small-down--four-tenths {
    width: 40%; }
  .small-down--five-tenths {
    width: 50%; }
  .small-down--six-tenths {
    width: 60%; }
  .small-down--seven-tenths {
    width: 70%; }
  .small-down--eight-tenths {
    width: 80%; }
  .small-down--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .small-down--one-eleventh {
    width: 9.09091%; }
  .small-down--two-elevenths {
    width: 18.18182%; }
  .small-down--three-elevenths {
    width: 27.27273%; }
  .small-down--four-elevenths {
    width: 36.36364%; }
  .small-down--five-elevenths {
    width: 45.45455%; }
  .small-down--six-elevenths {
    width: 54.54545%; }
  .small-down--seven-elevenths {
    width: 63.63636%; }
  .small-down--eight-elevenths {
    width: 72.72727%; }
  .small-down--nine-elevenths {
    width: 81.81818%; }
  .small-down--ten-elevenths {
    width: 90.90909%; }
  /* 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: 480px) {
  /** Whole */
  .small-up--one-whole {
    width: 100%; }
  /* Halves */
  .small-up--one-half {
    width: 50%; }
  /* Thirds */
  .small-up--one-third {
    width: 33.33333%; }
  .small-up--two-thirds {
    width: 66.66667%; }
  /* Quarters */
  .small-up--one-quarter {
    width: 25%; }
  .small-up--two-quarters {
    width: 50%; }
  .small-up--three-quarters {
    width: 75%; }
  /* Fifths */
  .small-up--one-fifth {
    width: 20%; }
  .small-up--two-fifths {
    width: 40%; }
  .small-up--three-fifths {
    width: 60%; }
  .small-up--four-fifths {
    width: 80%; }
  /* Sixths */
  .small-up--one-sixth {
    width: 16.66667%; }
  .small-up--two-sixths {
    width: 33.33333%; }
  .small-up--three-sixths {
    width: 50%; }
  .small-up--four-sixths {
    width: 66.66667%; }
  .small-up--five-sixths {
    width: 83.33333%; }
  /* Eighths */
  .small-up--one-eighth {
    width: 12.5%; }
  .small-up--two-eighths {
    width: 25%; }
  .small-up--three-eighths {
    width: 37.5%; }
  .small-up--four-eighths {
    width: 50%; }
  .small-up--five-eighths {
    width: 62.5%; }
  .small-up--six-eighths {
    width: 75%; }
  .small-up--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small-up--one-tenth {
    width: 10%; }
  .small-up--two-tenths {
    width: 20%; }
  .small-up--three-tenths {
    width: 30%; }
  .small-up--four-tenths {
    width: 40%; }
  .small-up--five-tenths {
    width: 50%; }
  .small-up--six-tenths {
    width: 60%; }
  .small-up--seven-tenths {
    width: 70%; }
  .small-up--eight-tenths {
    width: 80%; }
  .small-up--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .small-up--one-eleventh {
    width: 9.09091%; }
  .small-up--two-elevenths {
    width: 18.18182%; }
  .small-up--three-elevenths {
    width: 27.27273%; }
  .small-up--four-elevenths {
    width: 36.36364%; }
  .small-up--five-elevenths {
    width: 45.45455%; }
  .small-up--six-elevenths {
    width: 54.54545%; }
  .small-up--seven-elevenths {
    width: 63.63636%; }
  .small-up--eight-elevenths {
    width: 72.72727%; }
  .small-up--nine-elevenths {
    width: 81.81818%; }
  .small-up--ten-elevenths {
    width: 90.90909%; }
  /* Twelfths */
  .small-up--one-twelfth {
    width: 8.33333%; }
  .small-up--two-twelfths {
    width: 16.66667%; }
  .small-up--three-twelfths {
    width: 25%; }
  .small-up--four-twelfths {
    width: 33.33333%; }
  .small-up--five-twelfths {
    width: 41.66667%; }
  .small-up--six-twelfths {
    width: 50%; }
  .small-up--seven-twelfths {
    width: 58.33333%; }
  .small-up--eight-twelfths {
    width: 66.66667%; }
  .small-up--nine-twelfths {
    width: 75%; }
  .small-up--ten-twelfths {
    width: 83.33333%; }
  .small-up--eleven-twelfths {
    width: 91.66667%; }
  .grid--flex .small-up--auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .grid--flex .small-up--expand {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }
  .grid--flex .small-up--one-whole {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .grid--flex .small-up--one-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-up--one-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small-up--two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small-up--one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small-up--two-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-up--three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small-up--one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .small-up--two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .small-up--three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .small-up--four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .small-up--one-sixth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .small-up--two-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small-up--three-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-up--four-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small-up--five-sixths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .small-up--one-eighth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }
  .grid--flex .small-up--two-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small-up--three-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%; }
  .grid--flex .small-up--four-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-up--five-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%; }
  .grid--flex .small-up--six-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small-up--seven-eighths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%; }
  .grid--flex .small-up--one-tenth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .grid--flex .small-up--two-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .grid--flex .small-up--three-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%; }
  .grid--flex .small-up--four-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .grid--flex .small-up--five-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-up--six-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .grid--flex .small-up--seven-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%; }
  .grid--flex .small-up--eight-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .grid--flex .small-up--nine-tenths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .grid--flex .small-up--one-twelfth {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .grid--flex .small-up--two-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .grid--flex .small-up--three-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .grid--flex .small-up--four-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .grid--flex .small-up--five-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .grid--flex .small-up--six-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .grid--flex .small-up--seven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .grid--flex .small-up--eight-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .grid--flex .small-up--nine-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .grid--flex .small-up--ten-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .grid--flex .small-up--eleven-twelfths {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .small-up--flex-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important; }
  .small-up--flex-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important; }
  .small-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; }
  .small-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; }
  .small-up--flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .small-up--flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .small-up--flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .small-up--flex-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important; }
  .small-up--flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important; }
  .small-up--flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important; }
  .small-up--flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .small-up--flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .small-up--justify-content-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important; }
  .small-up--justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important; }
  .small-up--justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important; }
  .small-up--justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    justify-content: space-between !important; }
  .small-up--justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .small-up--align-items-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important; }
  .small-up--align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important; }
  .small-up--align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important; }
  .small-up--align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important; }
  .small-up--align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important; }
  .small-up--align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .small-up--align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .small-up--align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .small-up--align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .small-up--align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .small-up--align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .small-up--align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .small-up--align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .small-up--align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .small-up--align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .small-up--align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .small-up--align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; }
  .small-up--order-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }
  .small-up--order-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13; }
  .small-up--order-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0; }
  .small-up--order-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }
  .small-up--order-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2; }
  .small-up--order-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3; }
  .small-up--order-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4; }
  .small-up--order-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5; }
  .small-up--order-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6; }
  .small-up--order-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7; }
  .small-up--order-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8; }
  .small-up--order-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9; }
  .small-up--order-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10; }
  .small-up--order-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11; }
  .small-up--order-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12; }
  .grid--uniform .small-up--one-half:nth-child(2n+1),
  .grid--uniform .small-up--one-third:nth-child(3n+1),
  .grid--uniform .small-up--one-quarter:nth-child(4n+1),
  .grid--uniform .small-up--one-fifth:nth-child(5n+1),
  .grid--uniform .small-up--one-sixth:nth-child(6n+1),
  .grid--uniform .small-up--two-sixths:nth-child(3n+1),
  .grid--uniform .small-up--three-sixths:nth-child(2n+1),
  .grid--uniform .small-up--one-eighth:nth-child(8n+1),
  .grid--uniform .small-up--two-eighths:nth-child(4n+1),
  .grid--uniform .small-up--four-eighths:nth-child(2n+1),
  .grid--uniform .small-up--five-tenths:nth-child(2n+1),
  .grid--uniform .small-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .small-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .small-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .small-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .small-up--six-twelfths:nth-child(2n+1) {
    clear: both; }
  .small-up--show {
    display: block !important; }
  .small-up--hide {
    display: none !important; }
  .small-up--text-left {
    text-align: left !important; }
  .small-up--text-right {
    text-align: right !important; }
  .small-up--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%; }
  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }
  .medium--two-eighths {
    width: 25%; }
  .medium--three-eighths {
    width: 37.5%; }
  .medium--four-eighths {
    width: 50%; }
  .medium--five-eighths {
    width: 62.5%; }
  .medium--six-eighths {
    width: 75%; }
  .medium--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium--one-tenth {
    width: 10%; }
  .medium--two-tenths {
    width: 20%; }
  .medium--three-tenths {
    width: 30%; }
  .medium--four-tenths {
    width: 40%; }
  .medium--five-tenths {
    width: 50%; }
  .medium--six-tenths {
    width: 60%; }
  .medium--seven-tenths {
    width: 70%; }
  .medium--eight-tenths {
    width: 80%; }
  .medium--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .medium--one-eleventh {
    width: 9.09091%; }
  .medium--two-elevenths {
    width: 18.18182%; }
  .medium--three-elevenths {
    width: 27.27273%; }
  .medium--four-elevenths {
    width: 36.36364%; }
  .medium--five-elevenths {
    width: 45.45455%; }
  .medium--six-elevenths {
    width: 54.54545%; }
  .medium--seven-elevenths {
    width: 63.63636%; }
  .medium--eight-elevenths {
    width: 72.72727%; }
  .medium--nine-elevenths {
    width: 81.81818%; }
  .medium--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%; }
  .medium-up--two-eighths {
    width: 25%; }
  .medium-up--three-eighths {
    width: 37.5%; }
  .medium-up--four-eighths {
    width: 50%; }
  .medium-up--five-eighths {
    width: 62.5%; }
  .medium-up--six-eighths {
    width: 75%; }
  .medium-up--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium-up--one-tenth {
    width: 10%; }
  .medium-up--two-tenths {
    width: 20%; }
  .medium-up--three-tenths {
    width: 30%; }
  .medium-up--four-tenths {
    width: 40%; }
  .medium-up--five-tenths {
    width: 50%; }
  .medium-up--six-tenths {
    width: 60%; }
  .medium-up--seven-tenths {
    width: 70%; }
  .medium-up--eight-tenths {
    width: 80%; }
  .medium-up--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .medium-up--one-eleventh {
    width: 9.09091%; }
  .medium-up--two-elevenths {
    width: 18.18182%; }
  .medium-up--three-elevenths {
    width: 27.27273%; }
  .medium-up--four-elevenths {
    width: 36.36364%; }
  .medium-up--five-elevenths {
    width: 45.45455%; }
  .medium-up--six-elevenths {
    width: 54.54545%; }
  .medium-up--seven-elevenths {
    width: 63.63636%; }
  .medium-up--eight-elevenths {
    width: 72.72727%; }
  .medium-up--nine-elevenths {
    width: 81.81818%; }
  .medium-up--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .large-up--one-eighth {
    width: 12.5%; }
  .large-up--two-eighths {
    width: 25%; }
  .large-up--three-eighths {
    width: 37.5%; }
  .large-up--four-eighths {
    width: 50%; }
  .large-up--five-eighths {
    width: 62.5%; }
  .large-up--six-eighths {
    width: 75%; }
  .large-up--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large-up--one-tenth {
    width: 10%; }
  .large-up--two-tenths {
    width: 20%; }
  .large-up--three-tenths {
    width: 30%; }
  .large-up--four-tenths {
    width: 40%; }
  .large-up--five-tenths {
    width: 50%; }
  .large-up--six-tenths {
    width: 60%; }
  .large-up--seven-tenths {
    width: 70%; }
  .large-up--eight-tenths {
    width: 80%; }
  .large-up--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .large-up--one-eleventh {
    width: 9.09091%; }
  .large-up--two-elevenths {
    width: 18.18182%; }
  .large-up--three-elevenths {
    width: 27.27273%; }
  .large-up--four-elevenths {
    width: 36.36364%; }
  .large-up--five-elevenths {
    width: 45.45455%; }
  .large-up--six-elevenths {
    width: 54.54545%; }
  .large-up--seven-elevenths {
    width: 63.63636%; }
  .large-up--eight-elevenths {
    width: 72.72727%; }
  .large-up--nine-elevenths {
    width: 81.81818%; }
  .large-up--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }
  .large--two-eighths {
    width: 25%; }
  .large--three-eighths {
    width: 37.5%; }
  .large--four-eighths {
    width: 50%; }
  .large--five-eighths {
    width: 62.5%; }
  .large--six-eighths {
    width: 75%; }
  .large--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large--one-tenth {
    width: 10%; }
  .large--two-tenths {
    width: 20%; }
  .large--three-tenths {
    width: 30%; }
  .large--four-tenths {
    width: 40%; }
  .large--five-tenths {
    width: 50%; }
  .large--six-tenths {
    width: 60%; }
  .large--seven-tenths {
    width: 70%; }
  .large--eight-tenths {
    width: 80%; }
  .large--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .large--one-eleventh {
    width: 9.09091%; }
  .large--two-elevenths {
    width: 18.18182%; }
  .large--three-elevenths {
    width: 27.27273%; }
  .large--four-elevenths {
    width: 36.36364%; }
  .large--five-elevenths {
    width: 45.45455%; }
  .large--six-elevenths {
    width: 54.54545%; }
  .large--seven-elevenths {
    width: 63.63636%; }
  .large--eight-elevenths {
    width: 72.72727%; }
  .large--nine-elevenths {
    width: 81.81818%; }
  .large--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .xlarge-up--one-eighth {
    width: 12.5%; }
  .xlarge-up--two-eighths {
    width: 25%; }
  .xlarge-up--three-eighths {
    width: 37.5%; }
  .xlarge-up--four-eighths {
    width: 50%; }
  .xlarge-up--five-eighths {
    width: 62.5%; }
  .xlarge-up--six-eighths {
    width: 75%; }
  .xlarge-up--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .xlarge-up--one-tenth {
    width: 10%; }
  .xlarge-up--two-tenths {
    width: 20%; }
  .xlarge-up--three-tenths {
    width: 30%; }
  .xlarge-up--four-tenths {
    width: 40%; }
  .xlarge-up--five-tenths {
    width: 50%; }
  .xlarge-up--six-tenths {
    width: 60%; }
  .xlarge-up--seven-tenths {
    width: 70%; }
  .xlarge-up--eight-tenths {
    width: 80%; }
  .xlarge-up--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .xlarge-up--one-eleventh {
    width: 9.09091%; }
  .xlarge-up--two-elevenths {
    width: 18.18182%; }
  .xlarge-up--three-elevenths {
    width: 27.27273%; }
  .xlarge-up--four-elevenths {
    width: 36.36364%; }
  .xlarge-up--five-elevenths {
    width: 45.45455%; }
  .xlarge-up--six-elevenths {
    width: 54.54545%; }
  .xlarge-up--seven-elevenths {
    width: 63.63636%; }
  .xlarge-up--eight-elevenths {
    width: 72.72727%; }
  .xlarge-up--nine-elevenths {
    width: 81.81818%; }
  .xlarge-up--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .xlarge-down--one-eighth {
    width: 12.5%; }
  .xlarge-down--two-eighths {
    width: 25%; }
  .xlarge-down--three-eighths {
    width: 37.5%; }
  .xlarge-down--four-eighths {
    width: 50%; }
  .xlarge-down--five-eighths {
    width: 62.5%; }
  .xlarge-down--six-eighths {
    width: 75%; }
  .xlarge-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .xlarge-down--one-tenth {
    width: 10%; }
  .xlarge-down--two-tenths {
    width: 20%; }
  .xlarge-down--three-tenths {
    width: 30%; }
  .xlarge-down--four-tenths {
    width: 40%; }
  .xlarge-down--five-tenths {
    width: 50%; }
  .xlarge-down--six-tenths {
    width: 60%; }
  .xlarge-down--seven-tenths {
    width: 70%; }
  .xlarge-down--eight-tenths {
    width: 80%; }
  .xlarge-down--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .xlarge-down--one-eleventh {
    width: 9.09091%; }
  .xlarge-down--two-elevenths {
    width: 18.18182%; }
  .xlarge-down--three-elevenths {
    width: 27.27273%; }
  .xlarge-down--four-elevenths {
    width: 36.36364%; }
  .xlarge-down--five-elevenths {
    width: 45.45455%; }
  .xlarge-down--six-elevenths {
    width: 54.54545%; }
  .xlarge-down--seven-elevenths {
    width: 63.63636%; }
  .xlarge-down--eight-elevenths {
    width: 72.72727%; }
  .xlarge-down--nine-elevenths {
    width: 81.81818%; }
  .xlarge-down--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .xlarge--one-eighth {
    width: 12.5%; }
  .xlarge--two-eighths {
    width: 25%; }
  .xlarge--three-eighths {
    width: 37.5%; }
  .xlarge--four-eighths {
    width: 50%; }
  .xlarge--five-eighths {
    width: 62.5%; }
  .xlarge--six-eighths {
    width: 75%; }
  .xlarge--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .xlarge--one-tenth {
    width: 10%; }
  .xlarge--two-tenths {
    width: 20%; }
  .xlarge--three-tenths {
    width: 30%; }
  .xlarge--four-tenths {
    width: 40%; }
  .xlarge--five-tenths {
    width: 50%; }
  .xlarge--six-tenths {
    width: 60%; }
  .xlarge--seven-tenths {
    width: 70%; }
  .xlarge--eight-tenths {
    width: 80%; }
  .xlarge--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .xlarge--one-eleventh {
    width: 9.09091%; }
  .xlarge--two-elevenths {
    width: 18.18182%; }
  .xlarge--three-elevenths {
    width: 27.27273%; }
  .xlarge--four-elevenths {
    width: 36.36364%; }
  .xlarge--five-elevenths {
    width: 45.45455%; }
  .xlarge--six-elevenths {
    width: 54.54545%; }
  .xlarge--seven-elevenths {
    width: 63.63636%; }
  .xlarge--eight-elevenths {
    width: 72.72727%; }
  .xlarge--nine-elevenths {
    width: 81.81818%; }
  .xlarge--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }
  .medium-down--two-eighths {
    width: 25%; }
  .medium-down--three-eighths {
    width: 37.5%; }
  .medium-down--four-eighths {
    width: 50%; }
  .medium-down--five-eighths {
    width: 62.5%; }
  .medium-down--six-eighths {
    width: 75%; }
  .medium-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }
  .medium-down--two-tenths {
    width: 20%; }
  .medium-down--three-tenths {
    width: 30%; }
  .medium-down--four-tenths {
    width: 40%; }
  .medium-down--five-tenths {
    width: 50%; }
  .medium-down--six-tenths {
    width: 60%; }
  .medium-down--seven-tenths {
    width: 70%; }
  .medium-down--eight-tenths {
    width: 80%; }
  .medium-down--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .medium-down--one-eleventh {
    width: 9.09091%; }
  .medium-down--two-elevenths {
    width: 18.18182%; }
  .medium-down--three-elevenths {
    width: 27.27273%; }
  .medium-down--four-elevenths {
    width: 36.36364%; }
  .medium-down--five-elevenths {
    width: 45.45455%; }
  .medium-down--six-elevenths {
    width: 54.54545%; }
  .medium-down--seven-elevenths {
    width: 63.63636%; }
  .medium-down--eight-elevenths {
    width: 72.72727%; }
  .medium-down--nine-elevenths {
    width: 81.81818%; }
  .medium-down--ten-elevenths {
    width: 90.90909%; }
  /* 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%; }
  /* Eighths */
  .widescreen--one-eighth {
    width: 12.5%; }
  .widescreen--two-eighths {
    width: 25%; }
  .widescreen--three-eighths {
    width: 37.5%; }
  .widescreen--four-eighths {
    width: 50%; }
  .widescreen--five-eighths {
    width: 62.5%; }
  .widescreen--six-eighths {
    width: 75%; }
  .widescreen--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .widescreen--one-tenth {
    width: 10%; }
  .widescreen--two-tenths {
    width: 20%; }
  .widescreen--three-tenths {
    width: 30%; }
  .widescreen--four-tenths {
    width: 40%; }
  .widescreen--five-tenths {
    width: 50%; }
  .widescreen--six-tenths {
    width: 60%; }
  .widescreen--seven-tenths {
    width: 70%; }
  .widescreen--eight-tenths {
    width: 80%; }
  .widescreen--nine-tenths {
    width: 90%; }
  /* Elevenths */
  .widescreen--one-eleventh {
    width: 9.09091%; }
  .widescreen--two-elevenths {
    width: 18.18182%; }
  .widescreen--three-elevenths {
    width: 27.27273%; }
  .widescreen--four-elevenths {
    width: 36.36364%; }
  .widescreen--five-elevenths {
    width: 45.45455%; }
  .widescreen--six-elevenths {
    width: 54.54545%; }
  .widescreen--seven-elevenths {
    width: 63.63636%; }
  .widescreen--eight-elevenths {
    width: 72.72727%; }
  .widescreen--nine-elevenths {
    width: 81.81818%; }
  .widescreen--ten-elevenths {
    width: 90.90909%; }
  /* 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% + 20px); }
  .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% + 20px); }
    .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% + 20px); }
    .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: 45px;
  color: #1E1E1E;
  outline: 0 none;
  letter-spacing: 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding: 0 12px;
  background-color: #ffffff;
  border-color: #DEDEDE;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px;
  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:focus, .form-input:active {
  border-color: #720021;
  background-color: #ffffff; }

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z' fill='rgba(0, 0, 0, 0.999)' /%3E%3C/svg%3E");
  background-position: right 4px top 6px;
  border-radius: 0px;
  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: #737373;
    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,
  .form-radio + .form-label {
    position: relative;
    padding-left: 25px; }
    .form-checkbox + .form-label:last-child,
    .form-radio + .form-label:last-child {
      display: block; }
    .form-checkbox + .form-label::before,
    .form-radio + .form-label::before {
      content: "";
      width: 14px;
      height: 14px;
      border: 1px solid #1E1E1E;
      background: #fff;
      position: absolute;
      top: 3px;
      left: 0; }
    .form-checkbox + .form-label::after,
    .form-radio + .form-label::after {
      content: "";
      width: 8px;
      height: 8px;
      background: #720021;
      position: absolute;
      left: 3px;
      top: 6px;
      opacity: 0; }
  .form-checkbox:checked + .form-label,
  .form-radio:checked + .form-label {
    color: #720021; }
    .form-checkbox:checked + .form-label::before,
    .form-radio:checked + .form-label::before {
      border-color: #720021; }
    .form-checkbox:checked + .form-label::after,
    .form-radio:checked + .form-label::after {
      opacity: 1; }

.form-radio + .form-label::before, .form-radio + .form-label::after {
  border-radius: 50%; }

.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 #DEDEDE;
  border-radius: 0px;
  padding: 20px; }

.form-prefixPostfix .button {
  height: 45px;
  line-height: 45px; }

.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 {
  display: table;
  width: 60px; }
  .form-increment > div {
    display: table-cell;
    vertical-align: middle; }
    .form-increment > div.increment-input-wrap {
      width: 50%; }
    .form-increment > div.increment-buttons-wrap {
      width: 50%; }
      .form-increment > div.increment-buttons-wrap .button {
        margin: 0;
        padding: 0;
        display: block;
        height: 22.5px;
        line-height: 22.5px;
        width: 100%;
        border: 1px solid #DEDEDE;
        border-left: 0 none; }
        .form-increment > div.increment-buttons-wrap .button:first-child {
          border-bottom: 0 none; }
        .form-increment > div.increment-buttons-wrap .button svg {
          height: 12px;
          width: 12px;
          fill: #1E1E1E; }
        .form-increment > div.increment-buttons-wrap .button:hover svg {
          fill: #fff; }

.form-input--incrementTotal {
  display: block;
  overflow: hidden;
  padding: 0;
  margin: 0;
  text-align: center;
  height: 45px;
  width: 100%; }
  .form-input--incrementTotal, .form-input--incrementTotal:focus {
    background: #fff; }

.add-increment-wrap {
  display: table;
  width: 100%; }
  .add-increment-wrap > div {
    display: table-cell;
    vertical-align: middle; }
    .add-increment-wrap > div.form-action .button {
      width: 100%; }

.add-increment-flex {
  display: flex;
  flex-direction: column; }
  .add-increment-flex .form-action {
    order: 2; }

.form-option {
  border: 1px solid #DEDEDE;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  margin-bottom: 7px;
  margin-right: 12px;
  padding: 5px 14px;
  transition: all 0.15s ease;
  color: #737373; }
  .form-option:hover, .form-radio:checked + .form-option {
    border-color: #720021;
    color: #720021; }

.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: 30px;
  width: 30px;
  min-width: initial;
  padding: 0; }

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

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

.form-minMaxRow {
  *zoom: 1;
  margin-left: -5px; }
  .form-minMaxRow::after {
    content: '';
    display: table;
    clear: both; }
  .form-minMaxRow .form-field {
    width: 25%;
    margin-bottom: 0;
    padding-left: 5px;
    float: left; }
    .form-minMaxRow .form-field input {
      max-width: 100%;
      padding: 0;
      padding-left: 5px;
      height: 45px; }
    .form-minMaxRow .form-field:last-child {
      width: 50%; }
  .form-minMaxRow .button {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%; }

#facet-range-form .form-field {
  width: 40%; }

#facet-range-form .flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; }
  #facet-range-form .flex .flex-item:first-child {
    flex-basis: 40%;
    width: 80%; }
    @media only screen and (max-width: 990px) {
      #facet-range-form .flex .flex-item:first-child {
        width: 72%; } }
  #facet-range-form .flex .flex-item:last-child {
    margin-top: 5px; }

.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: -20px; } }
  @media only screen and (min-width: 480px) {
    .form-row--half > .form-field {
      padding-left: 20px;
      width: 50%;
      float: left; } }
  .form-row--half > .form-field .form-input {
    width: 100%; }

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

[data-product-attribute] .form-option {
  overflow: hidden;
  position: relative; }
  [data-product-attribute] .form-option.unavailable {
    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-radio:not(:checked).disabled + .form-option {
  cursor: none;
  pointer-events: none;
  opacity: 0.3; }

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

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

.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", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.333;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

a {
  transition: color 0.15s ease; }

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  color: #1E1E1E;
  font-family: "Playfair Display", Georgia, Times, serif;
  font-weight: 400;
  text-transform: none; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    color: inherit; }

h1, .h1 {
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 1.45; }
  @media only screen and (min-width: 768px) {
    h1, .h1 {
      font-size: 40px; } }

h2, .h2 {
  font-size: 24px; }
  @media only screen and (min-width: 768px) {
    h2, .h2 {
      font-size: 32px; } }

h3, .h3 {
  font-size: 22px; }
  @media only screen and (min-width: 768px) {
    h3, .h3 {
      font-size: 26px; } }

h4, .h4 {
  font-size: 18px;
  letter-spacing: 0.25px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    h4, .h4 {
      font-size: 18px; } }

h5, .h5 {
  font-size: 16px;
  letter-spacing: 0.45px; }
  @media only screen and (min-width: 768px) {
    h5, .h5 {
      font-size: 18px; } }

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

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

a {
  text-decoration: none;
  color: #720021; }
  a:hover {
    color: #000000; }

address {
  font-style: normal; }

.color-primary {
  color: #720021; }

.color-textSecondary {
  color: #737373; }

.color-secondary {
  color: #000000; }

.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: 20px; }
    .rte ul.spaced-list > li:last-of-type, .rte ol.spaced-list > li:last-of-type {
      margin-bottom: 0; }

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

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

.button {
  white-space: nowrap;
  padding: 0 50px;
  line-height: 45px;
  height: 45px;
  text-transform: uppercase;
  border: 0 none;
  letter-spacing: 0.5px;
  font-size: 16px;
  border-radius: 0px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  background-color: #720021;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none; }
  .button svg {
    fill: #ffffff; }
  .button .icon {
    width: 12px;
    height: 12px; }
  .button:hover {
    color: #ffffff;
    background-color: #3E0018; }
    .button:hover svg {
      fill: #ffffff; }
  .button[disabled] {
    cursor: not-allowed;
    background-color: #DEDEDE !important;
    color: #ffffff !important;
    cursor: not-allowed; }
    .button[disabled] svg {
      fill: #ffffff !important; }
  .button.button--primary {
    color: #ffffff;
    background-color: #720021; }
    .button.button--primary svg {
      fill: #ffffff; }
    .button.button--primary:hover {
      color: #ffffff;
      background-color: #3E0018; }
      .button.button--primary:hover svg {
        fill: #ffffff; }
  .button.button--secondary {
    color: #720021;
    background-color: #ffffff; }
    .button.button--secondary svg {
      fill: #720021; }
    .button.button--secondary:hover {
      color: #ffffff;
      background-color: #720021; }
      .button.button--secondary:hover svg {
        fill: #ffffff; }
  .button.button--border {
    background-color: transparent;
    border: 1px solid #720021;
    color: #720021;
    line-height: 43px; }
    .button.button--border svg {
      fill: #720021; }
    .button.button--border:hover {
      color: #ffffff;
      background-color: #3E0018;
      border-color: #3E0018; }
      .button.button--border:hover svg {
        fill: #ffffff; }
    .button.button--border.border--white {
      border-color: #ffffff;
      color: #ffffff; }
      .button.button--border.border--white:hover {
        background-color: #ffffff;
        border-color: #ffffff;
        color: #720021; }
  .button.button--text {
    background-color: transparent;
    color: #737373; }
    .button.button--text:hover {
      color: #000000; }
  .button.button--small {
    height: 41px;
    line-height: 41px;
    font-size: 14px; }
    .button.button--small.button--border {
      line-height: 39px; }
  .button.dropdown-button {
    height: auto !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important; }

.text-link {
  padding: 0;
  border: 0 none;
  transition: all 0.3s ease;
  color: #720021;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: underline;
  font-size: 16px;
  font-family: "Roboto", Helvetica, Arial, sans-serif; }

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

.page-banner {
  background-color: #000000;
  background-size: cover;
  background-position: center;
  height: 88px;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden; }
  .page-banner * {
    color: #fff; }
  .page-banner .wrapper {
    height: 100%; }
  .page-banner :last-child {
    margin-bottom: 0; }

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

.grey-box {
  background-color: #F2F2F1; }

.disclaimer-text {
  color: #737373;
  font-size: 14px; }

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

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: 1px solid #000;
  background-color: #fff;
  opacity: 0.8;
  width: 24px;
  height: 24px;
  text-align: center; }
  .back-to-top .icon {
    width: 16px;
    height: 8px;
    position: relative;
    top: -2px; }

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

@font-face {
  font-family: "Clear Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/clearsans/clearsans-regular-webfont.woff2") format("woff2"), url("../fonts/clearsans/clearsans-regular-webfont.woff") format("woff"); }

@font-face {
  font-family: "Clear Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/clearsans/clearsans-bold-webfont.woff2") format("woff2"), url("../fonts/clearsans/clearsans-bold-webfont.woff") format("woff"); }

.swal2-popup.swal2-toast {
  flex-direction: row;
  align-items: center;
  width: auto;
  padding: 0.625em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 0.625em #d9d9d9; }
  .swal2-popup.swal2-toast .swal2-header {
    flex-direction: row;
    padding: 0; }
  .swal2-popup.swal2-toast .swal2-title {
    flex-grow: 1;
    justify-content: flex-start;
    margin: 0 0.6em;
    font-size: 1em; }
  .swal2-popup.swal2-toast .swal2-footer {
    margin: 0.5em 0 0;
    padding: 0.5em 0 0;
    font-size: 0.8em; }
  .swal2-popup.swal2-toast .swal2-close {
    position: static;
    width: 0.8em;
    height: 0.8em;
    line-height: 0.8; }
  .swal2-popup.swal2-toast .swal2-content {
    justify-content: flex-start;
    padding: 0;
    font-size: 1em; }
  .swal2-popup.swal2-toast .swal2-icon {
    width: 2em;
    min-width: 2em;
    height: 2em;
    margin: 0; }
    .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
      display: flex;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold; }
      @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
          font-size: .25em; } }
    .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
      width: 2em;
      height: 2em; }
    .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
      top: .875em;
      width: 1.375em; }
      .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
        left: .3125em; }
      .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
        right: .3125em; }
  .swal2-popup.swal2-toast .swal2-actions {
    flex-basis: auto !important;
    width: auto;
    height: auto;
    margin: 0 .3125em; }
  .swal2-popup.swal2-toast .swal2-styled {
    margin: 0 .3125em;
    padding: .3125em .625em;
    font-size: 1em; }
    .swal2-popup.swal2-toast .swal2-styled:focus {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4); }
  .swal2-popup.swal2-toast .swal2-success {
    border-color: #a5dc86; }
    .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'] {
      position: absolute;
      width: 1.6em;
      height: 3em;
      transform: rotate(45deg);
      border-radius: 50%; }
      .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'][class$='left'] {
        top: -.8em;
        left: -.5em;
        transform: rotate(-45deg);
        transform-origin: 2em 2em;
        border-radius: 4em 0 0 4em; }
      .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'][class$='right'] {
        top: -.25em;
        left: .9375em;
        transform-origin: 0 1.5em;
        border-radius: 0 4em 4em 0; }
    .swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
      width: 2em;
      height: 2em; }
    .swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
      top: 0;
      left: .4375em;
      width: .4375em;
      height: 2.6875em; }
    .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'] {
      height: .3125em; }
      .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'][class$='tip'] {
        top: 1.125em;
        left: .1875em;
        width: .75em; }
      .swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'][class$='long'] {
        top: .9375em;
        right: .1875em;
        width: 1.375em; }
    .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
      animation: swal2-toast-animate-success-line-tip .75s; }
    .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
      animation: swal2-toast-animate-success-line-long .75s; }
  .swal2-popup.swal2-toast.swal2-show {
    animation: swal2-toast-show 0.5s; }
  .swal2-popup.swal2-toast.swal2-hide {
    animation: swal2-toast-hide 0.1s forwards; }

.swal2-container {
  display: flex;
  position: fixed;
  z-index: 1060;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch; }
  .swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
    background: rgba(0, 0, 0, 0.4); }
  .swal2-container.swal2-backdrop-hide {
    background: transparent !important; }
  .swal2-container.swal2-top {
    align-items: flex-start; }
  .swal2-container.swal2-top-start, .swal2-container.swal2-top-left {
    align-items: flex-start;
    justify-content: flex-start; }
  .swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
    align-items: flex-start;
    justify-content: flex-end; }
  .swal2-container.swal2-center {
    align-items: center; }
  .swal2-container.swal2-center-start, .swal2-container.swal2-center-left {
    align-items: center;
    justify-content: flex-start; }
  .swal2-container.swal2-center-end, .swal2-container.swal2-center-right {
    align-items: center;
    justify-content: flex-end; }
  .swal2-container.swal2-bottom {
    align-items: flex-end; }
  .swal2-container.swal2-bottom-start, .swal2-container.swal2-bottom-left {
    align-items: flex-end;
    justify-content: flex-start; }
  .swal2-container.swal2-bottom-end, .swal2-container.swal2-bottom-right {
    align-items: flex-end;
    justify-content: flex-end; }
  .swal2-container.swal2-bottom > :first-child,
  .swal2-container.swal2-bottom-start > :first-child,
  .swal2-container.swal2-bottom-left > :first-child,
  .swal2-container.swal2-bottom-end > :first-child,
  .swal2-container.swal2-bottom-right > :first-child {
    margin-top: auto; }
  .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-start, .swal2-container.swal2-grow-column.swal2-center-start, .swal2-container.swal2-grow-column.swal2-bottom-start, .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-end, .swal2-container.swal2-grow-column.swal2-center-end, .swal2-container.swal2-grow-column.swal2-bottom-end, .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.swal2-no-transition {
    transition: none !important; }
  .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
    margin: auto; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .swal2-container .swal2-modal {
      margin: 0 !important; } }

.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  width: 32em;
  max-width: 100%;
  padding: 1.25em;
  border: none;
  border-radius: 0.3125em;
  background: #fff;
  font-family: inherit;
  font-size: 1rem; }
  .swal2-popup:focus {
    outline: none; }
  .swal2-popup.swal2-loading {
    overflow-y: hidden; }

.swal2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.8em; }

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding: 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word; }

.swal2-actions {
  display: flex;
  z-index: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.25em auto 0; }
  .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
    opacity: .4; }
  .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }
  .swal2-actions:not(.swal2-loading) .swal2-styled:active {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }
  .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
    box-sizing: border-box;
    width: 2.5em;
    height: 2.5em;
    margin: .46875em;
    padding: 0;
    animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    border: .25em solid transparent;
    border-radius: 100%;
    border-color: transparent;
    background-color: transparent !important;
    color: transparent !important;
    cursor: default;
    user-select: none; }
  .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
    margin-right: 30px;
    margin-left: 30px; }
  .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    border: 3px solid #999999;
    border-radius: 50%;
    border-right-color: transparent;
    box-shadow: 1px 1px 1px #fff; }

.swal2-styled {
  margin: .3125em;
  padding: .625em 2em;
  box-shadow: none;
  font-weight: 500; }
  .swal2-styled:not([disabled]) {
    cursor: pointer; }
  .swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #3085d6;
    color: #fff;
    font-size: 1.0625em; }
  .swal2-styled.swal2-cancel {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #aaa;
    color: #fff;
    font-size: 1.0625em; }
  .swal2-styled:focus {
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4); }
  .swal2-styled::-moz-focus-inner {
    border: 0; }

.swal2-footer {
  justify-content: center;
  margin: 1.25em 0 0;
  padding: 1em 0 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em; }

.swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.25em;
  overflow: hidden;
  border-bottom-right-radius: 0.3125em;
  border-bottom-left-radius: 0.3125em; }

.swal2-timer-progress-bar {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2); }

.swal2-image {
  max-width: 100%;
  margin: 1.25em auto; }

.swal2-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s ease-out;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #cccccc;
  font-family: serif;
  font-size: 2.5em;
  line-height: 1.2;
  cursor: pointer; }
  .swal2-close:hover {
    transform: none;
    background: transparent;
    color: #f27474; }
  .swal2-close::-moz-focus-inner {
    border: 0; }

.swal2-content {
  z-index: 1;
  justify-content: center;
  margin: 0;
  padding: 0 1.6em;
  color: #545454;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word; }

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
  margin: 1em auto; }

.swal2-input,
.swal2-file,
.swal2-textarea {
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: 1.125em; }
  .swal2-input.swal2-inputerror,
  .swal2-file.swal2-inputerror,
  .swal2-textarea.swal2-inputerror {
    border-color: #f27474 !important;
    box-shadow: 0 0 2px #f27474 !important; }
  .swal2-input:focus,
  .swal2-file:focus,
  .swal2-textarea:focus {
    border: 1px solid #b4dbed;
    outline: none;
    box-shadow: 0 0 3px #c4e6f5; }
  .swal2-input::placeholder,
  .swal2-file::placeholder,
  .swal2-textarea::placeholder {
    color: #cccccc; }

.swal2-range {
  margin: 1em auto;
  background: #fff; }
  .swal2-range input {
    width: 80%; }
  .swal2-range output {
    width: 20%;
    color: inherit;
    font-weight: 600;
    text-align: center; }
  .swal2-range input,
  .swal2-range output {
    height: 2.625em;
    padding: 0;
    font-size: 1.125em;
    line-height: 2.625em; }

.swal2-input {
  height: 2.625em;
  padding: 0 0.75em; }
  .swal2-input[type='number'] {
    max-width: 10em; }

.swal2-file {
  background: inherit;
  font-size: 1.125em; }

.swal2-textarea {
  height: 6.75em;
  padding: 0.75em; }

.swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: .375em .625em;
  background: inherit;
  color: inherit;
  font-size: 1.125em; }

.swal2-radio,
.swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit; }
  .swal2-radio label,
  .swal2-checkbox label {
    margin: 0 .6em;
    font-size: 1.125em; }
  .swal2-radio input,
  .swal2-checkbox input {
    margin: 0 .4em; }

.swal2-validation-message {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300; }
  .swal2-validation-message::before {
    content: '!';
    display: inline-block;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    margin: 0 .625em;
    border-radius: 50%;
    background-color: #f27474;
    color: #fff;
    font-weight: 600;
    line-height: 1.5em;
    text-align: center; }

.swal2-icon {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.25em auto 1.875em;
  border: .25em solid transparent;
  border-radius: 50%;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  user-select: none; }
  .swal2-icon .swal2-icon-content {
    display: flex;
    align-items: center;
    font-size: 3.75em; }
  .swal2-icon.swal2-error {
    border-color: #f27474;
    color: #f27474; }
    .swal2-icon.swal2-error .swal2-x-mark {
      position: relative;
      flex-grow: 1; }
    .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
      display: block;
      position: absolute;
      top: 2.3125em;
      width: 2.9375em;
      height: .3125em;
      border-radius: .125em;
      background-color: #f27474; }
      .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
        left: 1.0625em;
        transform: rotate(45deg); }
      .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
        right: 1em;
        transform: rotate(-45deg); }
    .swal2-icon.swal2-error.swal2-icon-show {
      animation: swal2-animate-error-icon .5s; }
      .swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
        animation: swal2-animate-error-x-mark .5s; }
  .swal2-icon.swal2-warning {
    border-color: #facea8;
    color: #f8bb86; }
  .swal2-icon.swal2-info {
    border-color: #9de0f6;
    color: #3fc3ee; }
  .swal2-icon.swal2-question {
    border-color: #c9dae1;
    color: #87adbd; }
  .swal2-icon.swal2-success {
    border-color: #a5dc86;
    color: #a5dc86; }
    .swal2-icon.swal2-success [class^='swal2-success-circular-line'] {
      position: absolute;
      width: 3.75em;
      height: 7.5em;
      transform: rotate(45deg);
      border-radius: 50%; }
      .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='left'] {
        top: -.4375em;
        left: -2.0635em;
        transform: rotate(-45deg);
        transform-origin: 3.75em 3.75em;
        border-radius: 7.5em 0 0 7.5em; }
      .swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='right'] {
        top: -.6875em;
        left: 1.875em;
        transform: rotate(-45deg);
        transform-origin: 0 3.75em;
        border-radius: 0 7.5em 7.5em 0; }
    .swal2-icon.swal2-success .swal2-success-ring {
      position: absolute;
      z-index: 2;
      top: -.25em;
      left: -.25em;
      box-sizing: content-box;
      width: 100%;
      height: 100%;
      border: 0.25em solid rgba(165, 220, 134, 0.3);
      border-radius: 50%; }
    .swal2-icon.swal2-success .swal2-success-fix {
      position: absolute;
      z-index: 1;
      top: .5em;
      left: 1.625em;
      width: .4375em;
      height: 5.625em;
      transform: rotate(-45deg); }
    .swal2-icon.swal2-success [class^='swal2-success-line'] {
      display: block;
      position: absolute;
      z-index: 2;
      height: .3125em;
      border-radius: .125em;
      background-color: #a5dc86; }
      .swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
        top: 2.875em;
        left: .8125em;
        width: 1.5625em;
        transform: rotate(45deg); }
      .swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
        top: 2.375em;
        right: .5em;
        width: 2.9375em;
        transform: rotate(-45deg); }
    .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
      animation: swal2-animate-success-line-tip .75s; }
    .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
      animation: swal2-animate-success-line-long .75s; }
    .swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
      animation: swal2-rotate-success-circular-line 4.25s ease-in; }

.swal2-progress-steps {
  align-items: center;
  margin: 0 0 1.25em;
  padding: 0;
  background: inherit;
  font-weight: 600; }
  .swal2-progress-steps li {
    display: inline-block;
    position: relative; }
  .swal2-progress-steps .swal2-progress-step {
    z-index: 20;
    width: 2em;
    height: 2em;
    border-radius: 2em;
    background: #3085d6;
    color: #fff;
    line-height: 2em;
    text-align: center; }
    .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
      background: #3085d6; }
      .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
        background: #add8e6;
        color: #fff; }
      .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
        background: #add8e6; }
  .swal2-progress-steps .swal2-progress-step-line {
    z-index: 10;
    width: 2.5em;
    height: .4em;
    margin: 0 -1px;
    background: #3085d6; }

[class^='swal2'] {
  -webkit-tap-highlight-color: transparent; }

.swal2-show {
  animation: swal2-show 0.3s; }

.swal2-hide {
  animation: swal2-hide 0.15s forwards; }

.swal2-noanimation {
  transition: none; }

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.swal2-rtl .swal2-close {
  right: auto;
  left: 0; }

.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto; }

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

@-moz-document url-prefix() {
  .swal2-close:focus {
    outline: 2px solid rgba(50, 100, 150, 0.4); } }

@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg); }
  33% {
    transform: translateY(0) rotateZ(-2deg); }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg); }
  100% {
    transform: translateY(0) rotateZ(0deg); } }

@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0; } }

@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: .5625em;
    left: .0625em;
    width: 0; }
  54% {
    top: .125em;
    left: .125em;
    width: 0; }
  70% {
    top: .625em;
    left: -.25em;
    width: 1.625em; }
  84% {
    top: 1.0625em;
    left: .75em;
    width: .5em; }
  100% {
    top: 1.125em;
    left: .1875em;
    width: .75em; } }

@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0; }
  65% {
    top: 1.25em;
    right: .9375em;
    width: 0; }
  84% {
    top: .9375em;
    right: 0;
    width: 1.125em; }
  100% {
    top: .9375em;
    right: .1875em;
    width: 1.375em; } }

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

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

@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: .0625em;
    width: 0; }
  54% {
    top: 1.0625em;
    left: .125em;
    width: 0; }
  70% {
    top: 2.1875em;
    left: -.375em;
    width: 3.125em; }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em; }
  100% {
    top: 2.8125em;
    left: .8125em;
    width: 1.5625em; } }

@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0; }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0; }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em; }
  100% {
    top: 2.375em;
    right: .5em;
    width: 2.9375em; } }

@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg); } }

@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0; }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0; }
  80% {
    margin-top: -.375em;
    transform: scale(1.15); }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1; } }

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

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

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden; }

body.swal2-height-auto {
  height: auto !important; }

body.swal2-no-backdrop .swal2-container {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  max-width: calc(100% - 0.625em * 2);
  background-color: transparent !important; }
  body.swal2-no-backdrop .swal2-container > .swal2-modal {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }
  body.swal2-no-backdrop .swal2-container.swal2-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%); }
  body.swal2-no-backdrop .swal2-container.swal2-top-start, body.swal2-no-backdrop .swal2-container.swal2-top-left {
    top: 0;
    left: 0; }
  body.swal2-no-backdrop .swal2-container.swal2-top-end, body.swal2-no-backdrop .swal2-container.swal2-top-right {
    top: 0;
    right: 0; }
  body.swal2-no-backdrop .swal2-container.swal2-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  body.swal2-no-backdrop .swal2-container.swal2-center-start, body.swal2-no-backdrop .swal2-container.swal2-center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
  body.swal2-no-backdrop .swal2-container.swal2-center-end, body.swal2-no-backdrop .swal2-container.swal2-center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%); }
  body.swal2-no-backdrop .swal2-container.swal2-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
  body.swal2-no-backdrop .swal2-container.swal2-bottom-start, body.swal2-no-backdrop .swal2-container.swal2-bottom-left {
    bottom: 0;
    left: 0; }
  body.swal2-no-backdrop .swal2-container.swal2-bottom-end, body.swal2-no-backdrop .swal2-container.swal2-bottom-right {
    right: 0;
    bottom: 0; }

@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important; }
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden='true'] {
      display: none; }
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
      position: static !important; } }

body.swal2-toast-shown .swal2-container {
  background-color: transparent; }
  body.swal2-toast-shown .swal2-container.swal2-top {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%); }
  body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto; }
  body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0; }
  body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    transform: translateY(-50%); }
  body.swal2-toast-shown .swal2-container.swal2-center {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%); }
  body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-50%); }
  body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0; }
  body.swal2-toast-shown .swal2-container.swal2-bottom {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
  body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto; }

body.swal2-toast-column .swal2-toast {
  flex-direction: column;
  align-items: stretch; }
  body.swal2-toast-column .swal2-toast .swal2-actions {
    flex: 1;
    align-self: stretch;
    height: 2.2em;
    margin-top: .3125em; }
  body.swal2-toast-column .swal2-toast .swal2-loading {
    justify-content: center; }
  body.swal2-toast-column .swal2-toast .swal2-input {
    height: 2em;
    margin: .3125em auto;
    font-size: 1em; }
  body.swal2-toast-column .swal2-toast .swal2-validation-message {
    font-size: 1em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.off-canvas-list-menu li a {
  border-bottom: 1px solid #DEDEDE;
  color: #720021;
  display: block;
  padding: 17px 20px;
  transition: background 300ms ease; }
  .off-canvas-list-menu li a:hover {
    background: #720021;
    color: #fff; }
  .off-canvas-list-menu li a:active {
    background: #720021;
    color: #fff; }

.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 only screen and (min-width: 768px) {
    .move-right .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.move-left > .inner-wrap {
  -webkit-transform: translate3d(-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 only screen and (min-width: 768px) {
    .move-left .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

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

.move-top .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  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 only screen and (min-width: 768px) {
    .move-top .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

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

.move-bottom .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  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 only screen and (min-width: 768px) {
    .move-bottom .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

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

.offcanvas-overlap .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  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 only screen and (min-width: 768px) {
    .offcanvas-overlap .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

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

.offcanvas-overlap-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  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 only screen and (min-width: 768px) {
    .offcanvas-overlap-left .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.offcanvas-overlap-right .left-off-canvas-menu {
  -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 only screen and (min-width: 768px) {
    .offcanvas-overlap-right .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

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

.offcanvas-overlap-top .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  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 only screen and (min-width: 768px) {
    .offcanvas-overlap-top .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

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

.offcanvas-overlap-bottom .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  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 only screen and (min-width: 768px) {
    .offcanvas-overlap-bottom .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.3); } }

.no-csstransforms .left-off-canvas-menu {
  left: -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: #720021;
    border-bottom: 1px solid #DEDEDE;
    border-top: none;
    color: #720021;
    font-weight: 700;
    padding: 17px 20px;
    text-transform: uppercase;
    margin: 0; }
    .left-submenu .back > a:hover {
      background: #720021;
      border-bottom: 1px solid #DEDEDE;
      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: #720021;
    border-bottom: 1px solid #DEDEDE;
    border-top: none;
    color: #720021;
    font-weight: 700;
    padding: 17px 20px;
    text-transform: uppercase;
    margin: 0; }
    .right-submenu .back > a:hover {
      background: #720021;
      border-bottom: 1px solid #DEDEDE;
      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: #720021;
    border-bottom: 1px solid #DEDEDE;
    border-top: none;
    color: #720021;
    font-weight: 700;
    padding: 17px 20px;
    text-transform: uppercase;
    margin: 0; }
    .top-submenu .back > a:hover {
      background: #720021;
      border-bottom: 1px solid #DEDEDE;
      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: #720021;
    border-bottom: 1px solid #DEDEDE;
    border-top: none;
    color: #720021;
    font-weight: 700;
    padding: 17px 20px;
    text-transform: uppercase;
    margin: 0; }
    .bottom-submenu .back > a:hover {
      background: #720021;
      border-bottom: 1px solid #DEDEDE;
      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); }

/* 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: #720021;
    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: 17px;
        line-height: 20px;
        text-align: center;
        color: #ffffff;
        opacity: 0.65;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: #ffffff;
      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: -18px; }
  @media only screen and (min-width: 991px) {
    .slick-next {
      right: -45px; } }
  .slick-next::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS40NTY3OSAxLjAwNzQ2MTQ3bDIxIDIwLjAyNDgyMTQzTDEuNTA4ODUgNDEuMDA3NDYxNSIgc3Ryb2tlPSIjMkQyRDJEIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+"); }
  .slick-next:hover::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS40NTY3OSAxLjAwNzQ2MTQ3bDIxIDIwLjAyNDgyMTQzTDEuNTA4ODUgNDEuMDA3NDYxNSIgc3Ryb2tlPSIjOTg5ODk4IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+"); }

.slick-prev {
  left: -18px; }
  @media only screen and (min-width: 991px) {
    .slick-prev {
      left: -45px; } }
  .slick-prev::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjIuNDU3MjA3NCAxLjAwNzQ2MTQ3bC0yMSAyMC4wMjQ4MjE0MyAyMC45NDc5Mzk3IDE5Ljk3NTE3ODYiIHN0cm9rZT0iIzJEMkQyRCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg=="); }
  .slick-prev:hover::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjIuNDU3MjA3NCAxLjAwNzQ2MTQ3bC0yMSAyMC4wMjQ4MjE0MyAyMC45NDc5Mzk3IDE5Ljk3NTE3ODYiIHN0cm9rZT0iIzk4OTg5OCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg=="); }

.custom-arrows .slick-next, .custom-arrows .slick-prev {
  height: 121px;
  width: 48px;
  background-color: #720021;
  border: 1px solid #720021;
  transition: 0.3s ease all; }
  .custom-arrows .slick-next svg, .custom-arrows .slick-prev svg {
    height: 14px;
    width: 14px;
    fill: #fff;
    transition: 0.3s ease all; }
  .custom-arrows .slick-next::before, .custom-arrows .slick-prev::before {
    display: none; }
  .custom-arrows .slick-next:hover, .custom-arrows .slick-prev:hover {
    background-color: #fff; }
    .custom-arrows .slick-next:hover svg, .custom-arrows .slick-prev:hover svg {
      fill: #720021; }

.custom-arrows .slick-prev {
  left: -25px; }
  @media only screen and (min-width: 480px) {
    .custom-arrows .slick-prev {
      left: -35px; } }
  @media only screen and (min-width: 1400px) {
    .custom-arrows .slick-prev {
      left: -74px; } }

.custom-arrows .slick-next {
  right: -25px; }
  @media only screen and (min-width: 480px) {
    .custom-arrows .slick-next {
      right: -35px; } }
  @media only screen and (min-width: 1400px) {
    .custom-arrows .slick-next {
      right: -74px; } }

.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 #ffffff;
      display: block;
      margin: 0;
      padding: 0;
      position: relative;
      text-align: center;
      width: 17px;
      height: 17px;
      background: transparent;
      border-radius: 50%; }
      .slick-dots li button::before {
        display: none; }
      .slick-dots li button:hover {
        background: #ffffff; }
    .slick-dots li button {
      display: block;
      transition: background 100ms ease-out; }
    .slick-dots li.slick-active button {
      background: #ffffff; }

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

@media only screen and (min-width: 480px) {
  .wishlist-add .form-actions .button {
    margin-left: 60px;
    min-width: 230px; } }

.wishlists-table .table-actions .button--text {
  padding: 0 20px; }

.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;
    color: #720021;
    background-color: #ffffff; }
  .dropdown-menu-button .icon {
    float: right;
    margin-left: 10px; }

#wishlist-dropdown, #alternative-wishlist-dropdown {
  list-style: none;
  width: 100%; }
  #wishlist-dropdown.is-open, #alternative-wishlist-dropdown.is-open {
    background: transparent;
    z-index: 2; }
    #wishlist-dropdown.is-open:focus, #alternative-wishlist-dropdown.is-open:focus {
      outline: none; }
    #wishlist-dropdown.is-open [data-wishlist], #alternative-wishlist-dropdown.is-open [data-wishlist] {
      margin-bottom: 0px;
      width: 100%; }
    #wishlist-dropdown.is-open .button, #alternative-wishlist-dropdown.is-open .button {
      background-color: #ffffff;
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      width: 100%;
      padding: 10px; }
      #wishlist-dropdown.is-open .button:hover, #alternative-wishlist-dropdown.is-open .button:hover {
        background-color: #3E0018; }
      #wishlist-dropdown.is-open .button:last-of-type, #alternative-wishlist-dropdown.is-open .button:last-of-type {
        margin-top: 10px; }
    #wishlist-dropdown.is-open .button--has-items, #alternative-wishlist-dropdown.is-open .button--has-items {
      font-weight: 700; }
    #wishlist-dropdown.is-open li:not(:last-child) .button, #alternative-wishlist-dropdown.is-open li:not(:last-child) .button {
      border-radius: 0px;
      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%); }

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

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

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

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

.modal-close {
  height: 32px;
  width: 32px;
  color: #720021;
  font-size: 26px;
  line-height: 32px;
  padding: 0;
  position: absolute;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  right: 0; }
  @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; }

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

.pagination-item {
  line-height: 1; }
  .pagination-item .pagination-link {
    text-decoration: none;
    color: inherit; }
  .pagination-item.pagination-item--page a {
    display: block;
    width: 19px;
    height: 19px;
    line-height: 19px; }
  .pagination-item.pagination-item--current {
    background-color: #720021;
    color: #fff; }
  .pagination-item.pagination-item--previous .icon, .pagination-item.pagination-item--next .icon {
    height: 14px;
    width: 14px;
    position: relative;
    top: 2px; }
    .pagination-item.pagination-item--previous .icon > svg, .pagination-item.pagination-item--next .icon > svg {
      height: 14px;
      width: 14px;
      fill: #720021; }
  .pagination-item.pagination-item--previous > a, .pagination-item.pagination-item--next > a {
    border: 1px solid #720021;
    color: #720021;
    padding: 12px 15px;
    display: inline-block; }
  .pagination-item.pagination-item--previous {
    margin-right: 60px; }
    .pagination-item.pagination-item--previous .icon {
      margin-right: 3px; }
    @media only screen and (max-width: 479px) {
      .pagination-item.pagination-item--previous {
        margin-right: 0; } }
  .pagination-item.pagination-item--next {
    margin-left: 60px; }
    .pagination-item.pagination-item--next .icon {
      margin-left: 3px; }
    @media only screen and (max-width: 479px) {
      .pagination-item.pagination-item--next {
        margin-left: 0; } }

.tabs {
  list-style: none;
  *zoom: 1;
  margin: 0;
  border-bottom: 1px solid #DEDEDE; }
  .tabs::after {
    content: '';
    display: table;
    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: #000000; }
  .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.is-active, .tab:hover {
    color: #000000; }
    .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: 5px;
    width: 10px;
    fill: #1E1E1E; }
  .accordion-navigation .accordion-title {
    padding-right: 5px;
    margin-right: 7px; }

.accordion-nav-clear-holder {
  position: relative; }
  .accordion-nav-clear-holder .facetedSearch-clearLink {
    color: #737373;
    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 {
    margin-bottom: 20px; } }

.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--navList .accordion-navigation-actions {
  right: 10px;
  top: 12px;
  padding-left: 5px; }
  @media only screen and (min-width: 768px) {
    .accordion--navList .accordion-navigation-actions {
      right: 0;
      top: 0; } }

.accordion-block:first-child {
  margin-top: 0; }
  .accordion-block:first-child .accordion-navigation {
    border-radius: 0 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: #737373;
    vertical-align: middle; }
    .accordion-navigation-actions > a:hover {
      color: #000000; }

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

.page-heading {
  padding-top: 40px;
  margin-bottom: 40px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .page-heading {
      padding-top: 75px;
      margin-bottom: 70px; } }
  .page-heading.about-the-kjv-store-heading {
    padding-top: 20px;
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .page-heading.about-the-kjv-store-heading {
        padding-top: 40px; } }

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

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

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

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: all 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); }

@media only screen and (min-width: 768px) {
  .actionBar {
    position: absolute;
    top: 0;
    right: 0; } }

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

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

.actionBar-section .form-input,
.actionBar-section .form-select {
  width: auto;
  border: 1px solid #DEDEDE; }

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

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

.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: #f4f4f4;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #DEDEDE; }
  .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: #E2BF5A;
  stroke-miterlimit: 10; }

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

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

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

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

.videoGallery-main {
  height: 0;
  margin-bottom: 16px;
  overflow: hidden;
  padding-bottom: 67.5%;
  padding-top: 25px;
  position: relative;
  margin-bottom: 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: 20px;
  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 {
  color: #4f4f4f; }

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

.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 {
  *zoom: 1; }
  .quickView::after {
    content: '';
    display: table;
    clear: both; }

.banners {
  background-color: #720021;
  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: #f4f4f4;
  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;
  display: none;
  float: left;
  font-family: "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; }
  @media only screen and (min-width: 768px) {
    .adminBar {
      display: block; } }
  .adminBar .svg-icon {
    align-self: center;
    display: inline-flex; }
  .adminBar .svg-icon svg {
    height: 1em;
    width: 1em; }
  .adminBar .svg-icon.svg-baseline svg {
    position: relative;
    top: 0.125em; }

.adminBar-logo {
  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; }
  .adminBar-content a {
    color: #4b71fc;
    text-decoration: none; }

.adminBar-private {
  margin-right: auto;
  text-align: left;
  /* Tooltip container */
  /* Tooltip text */
  /* Show the tooltip text when you mouse over the tooltip container */ }
  .adminBar-private a {
    padding: 10px; }
  .adminBar-private span {
    white-space: nowrap; }
  .adminBar-private .tooltip {
    display: inline-block;
    position: relative; }
  .adminBar-private .tooltip .tooltiptext {
    background-color: #313440;
    border-radius: 6px;
    color: #fff;
    padding: 5px 10px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    text-align: center;
    visibility: hidden;
    width: auto;
    z-index: 1; }
  .adminBar-private .tooltip-bottom {
    left: 50%;
    margin-left: -60px;
    top: 135%; }
  .adminBar-private .tooltip:hover .tooltiptext {
    visibility: visible; }

.adminBar-links {
  margin-left: auto;
  padding-right: 5px;
  text-align: right; }
  .adminBar-links a {
    padding: 10px; }
  .adminBar-links span {
    white-space: nowrap; }

.adminBar-large {
  display: none; }
  @media only screen and (min-width: 991px) {
    .adminBar-large {
      display: initial; } }

.adminBar-close span {
  margin-bottom: 0.25em;
  margin-right: 5px;
  padding: 10px; }

.adminBar-close span:hover {
  background-color: #f0f3fe;
  border-radius: 5px; }

.adminBar-close span svg {
  height: 100%;
  width: 100%; }

.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;
  width: 100%; }
  @media only screen and (min-width: 480px) {
    .apple-pay-supported .apple-pay-checkout-button {
      display: inline-block; } }

#cart-preview-dropdown .previewCart-additionalCheckoutButtons {
  max-width: 340px;
  padding: 0 16px 20px 20px;
  display: flex;
  justify-content: center;
  margin: auto; }
  @media screen and (min-width: 901px) {
    #cart-preview-dropdown .previewCart-additionalCheckoutButtons {
      margin: 0 0 0 auto; } }

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

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

.breadcrumb {
  display: inline-block;
  float: none;
  font-size: 16px;
  margin-right: 5px;
  color: #720021; }
  .breadcrumb.is-active > .breadcrumb-label {
    cursor: text; }
  .breadcrumb::before {
    content: '>';
    display: inline-block; }
  .breadcrumb:first-child::before {
    display: none; }

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

.sidebarBlock {
  margin-bottom: 25px; }
  @media only screen and (min-width: 768px) {
    .sidebarBlock {
      margin-bottom: 45px; } }
  .sidebarBlock .accordion-title, .sidebarBlock .sidebarBlock-heading {
    margin-bottom: 10px;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 8px; }

.category-sidebar-block .sidebar-subcategories {
  margin-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .category-sidebar-block .sidebar-subcategories {
      margin-bottom: 30px; } }

.category-sidebar-block .sidebarBlock-heading {
  border: 0;
  padding-bottom: 0;
  padding-right: 12px; }

.category-sidebar-block .accordion-navigation-actions {
  top: 0;
  right: 0;
  cursor: pointer; }
  .category-sidebar-block .accordion-navigation-actions .icon {
    height: 5px;
    width: 10px; }

.category-sidebar-block .toggleLink {
  padding-right: 11px; }

.category-sidebar-block .navList {
  padding-left: 18px;
  border-left: 2px solid #DEDEDE; }

.category-sidebar-block .navList-action {
  color: #1E1E1E; }
  .category-sidebar-block .navList-action:hover, .category-sidebar-block .navList-action.is-active {
    color: #720021;
    text-decoration: underline;
    font-weight: 500; }

.category-sidebar-block .navList-action--has-children {
  padding-right: 12px; }

.category-sidebar-block .accordion-navigation {
  margin-bottom: 10px;
  display: block;
  cursor: default; }

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

.swal2-icon {
  display: flex; }

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

@media only screen and (max-width: 767px) {
  .card {
    max-width: 287px;
    margin: 0 auto 30px; } }

@media only screen and (min-width: 768px) {
  .card {
    margin-bottom: 60px; } }

.card a {
  display: block;
  transition: 0.3s ease all;
  background-color: #fff; }
  .card a:hover {
    box-shadow: 0 0 15px 0 #DEDEDE;
    border: 1px solid #720021;
    padding: 18px;
    zoom: 1.07;
    margin: -18px; }
    .card a:hover .card-figcaption {
      opacity: 1; }
    .card a:hover .card-img-container::before {
      opacity: 0.5; }

.card-badge {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 35px;
  padding: 0 30px;
  z-index: 1; }
  .card-badge.badge-sale {
    background-color: #720021;
    color: #fff; }

.card-figure {
  margin: 0 0 20px;
  text-align: center;
  position: relative;
  padding: 0 10px; }
  .card-figure .card-figcaption {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3; }
  .card-figure .card-img-container {
    position: relative; }
    .card-figure .card-img-container::before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #DEDEDE;
      opacity: 0;
      transition: 0.3s ease all;
      content: '';
      pointer-events: none;
      z-index: 2; }

.card-square-images .card-figure > .card-img-container {
  padding-top: 100%;
  position: relative;
  display: block;
  overflow: hidden; }
  .card-square-images .card-figure > .card-img-container > div {
    -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: 100%;
    height: 100%;
    display: flex; }
  .card-square-images .card-figure > .card-img-container img {
    height: auto;
    max-width: 100%;
    max-height: 100%; }

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

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

.card-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 0;
  display: flex;
  margin: auto;
  width: auto; }

.card-title {
  text-transform: none;
  margin-bottom: 15px;
  color: #720021;
  line-height: 1.44444; }
  @media only screen and (min-width: 768px) {
    .card-title {
      min-height: 75px; } }
  .card-title > a {
    text-decoration: none;
    color: inherit;
    display: block; }
    .card-title > a:hover {
      color: inherit; }

.card-text {
  margin-bottom: 10px; }
  .card-text abbr {
    border: 0;
    color: inherit;
    font-size: inherit; }

.card-action {
  overflow: hidden; }

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

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

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

.productCarousel-wrap {
  padding: 0 10px; }

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

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

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

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

.card-price {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 11px;
  margin-bottom: 13px; }

.card-short-description {
  color: #1E1E1E; }

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

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

.navList-item {
  margin-bottom: 10px; }
  .navList-item:last-of-type {
    margin-bottom: 0; }
  .navList-item a {
    color: #1E1E1E; }

.navList-action--checkbox {
  display: inline-block;
  padding-left: 22px;
  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: -6px;
    border-radius: 0;
    border: 1px solid #1E1E1E;
    width: 12px;
    height: 12px; }
  .navList-action--checkbox:after {
    height: 5px;
    left: 3px;
    opacity: 0;
    top: 8px;
    width: 7px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 7 5.37'%3E%3Cpath d='m7 1.05a.43.43 0 0 1 -.13.3l-3.87 3.89a.44.44 0 0 1 -.31.13.43.43 0 0 1 -.3-.13l-2.26-2.24a.44.44 0 0 1 -.13-.32.43.43 0 0 1 .13-.3l.61-.62a.44.44 0 0 1 .31-.13.43.43 0 0 1 .3.13l1.33 1.33 3-3a.43.43 0 0 1 .32-.09.44.44 0 0 1 .31.13l.61.61a.44.44 0 0 1 .08.31z' fill='rgba(114, 0, 33, 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: 10px;
    line-height: 1;
    text-align: center; }
  .navList-action--checkbox.is-checked, .navList-action--checkbox.is-selected {
    color: #720021; }
    .navList-action--checkbox.is-checked::after, .navList-action--checkbox.is-selected::after {
      opacity: 1; }
    .navList-action--checkbox.is-checked:before, .navList-action--checkbox.is-selected:before {
      border-color: #720021; }
  .navList-action--checkbox.is-close:after {
    height: 10px;
    left: 0px;
    top: 5px;
    width: 12px;
    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='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(114, 0, 33, 0.999)' /%3E%3C/svg%3E"); }

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

.navBar--sub {
  text-align: center;
  border-bottom: 1px solid #DEDEDE; }
  @media only screen and (min-width: 768px) {
    .navBar--sub {
      margin-bottom: 50px; } }
  .navBar--sub .navBar-section {
    float: none;
    margin: 0; }
  .navBar--sub .navBar-item {
    float: none;
    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: #000000; }
      .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 #737373;
        margin: 0;
        padding-left: 10px; } }
  .navBar--sub .navBar-action {
    padding: 10px;
    display: block; }
    .navBar--sub .navBar-action:hover {
      color: #000000; }
  .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; }

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

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

.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;
  margin: 0;
  padding: 0; }
  .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 #DEDEDE;
  color: #720021;
  display: block;
  font-size: 20px;
  font-weight: 700;
  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 #720021;
  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 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 #DEDEDE;
  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: #000000;
  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: #737373;
    text-transform: uppercase; }
    .off-canvas-list-cart li.offcanvasAction-continueShopping a .icon {
      width: 20px;
      height: 20px;
      display: inline-block;
      vertical-align: middle;
      fill: #737373;
      position: relative;
      top: -2px; }
    .off-canvas-list-cart li.offcanvasAction-continueShopping a:hover {
      color: #000000; }
      .off-canvas-list-cart li.offcanvasAction-continueShopping a:hover .icon {
        fill: #000000; }

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

.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: #737373; }
  .offcanvasCartItem-content .offcanvasCartItem-price,
  .offcanvasCartItem-content .offcanvasCartItem-options {
    display: block;
    color: inherit; }
  .offcanvasCartItem-content .offcanvasCartItem-price {
    font-size: 100%;
    color: #3E0018; }
  .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 #DEDEDE; }
  .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 {
    height: 20px !important;
    width: 20px !important;
    margin: 0;
    overflow: hidden;
    text-decoration: none;
    text-align: left; }
    .socialLinks .icon:hover svg {
      fill: #000; }
    .socialLinks .icon svg {
      fill: #720021;
      transition: all 0.15s ease; }

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

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

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

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

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

.heroCarousel.is-visible {
  opacity: 1; }

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

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

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

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

.heroCarousel .slick-dots {
  bottom: -31px; }
  @media only screen and (min-width: 768px) {
    .heroCarousel .slick-dots {
      bottom: 31px; } }
  @media only screen and (max-width: 767px) {
    .heroCarousel .slick-dots li button {
      border-color: #000000; }
      .heroCarousel .slick-dots li button:hover {
        background: #000000; }
    .heroCarousel .slick-dots li.slick-active button {
      background: #000000; } }

.heroCarousel-slide {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .heroCarousel-slide a {
    text-decoration: none; }
  .heroCarousel-slide.stretch .heroCarousel-image {
    object-fit: cover;
    object-position: 50% 50%; }
  .heroCarousel-slide.stretch.compat-object-fit .heroCarousel-image {
    height: 100%;
    width: 100%; }
  .heroCarousel-slide.is-square-image-type .heroCarousel-image-wrapper {
    height: 100vw; }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .heroCarousel-slide.is-square-image-type .heroCarousel-image-wrapper {
        height: 56.25vw; } }
  .heroCarousel-slide.is-vertical-image-type .heroCarousel-image-wrapper {
    height: 110vw; }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .heroCarousel-slide.is-vertical-image-type .heroCarousel-image-wrapper {
        height: 56.25vw; } }
  .heroCarousel-slide .heroCarousel-image-wrapper {
    align-items: flex-start;
    display: flex;
    height: 250px;
    height: 56.25vw;
    justify-content: center; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide .heroCarousel-image-wrapper {
        max-height: 600px; } }

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

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

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

.heroCarousel-slide--custom {
  position: relative;
  height: 192px; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom {
      height: 620px; } }
  @media only screen and (min-width: 768px) and (max-width: 1099px) {
    .heroCarousel-slide--custom.mobile-small .heroCarousel-content--custom {
      width: 540px; } }
  @media only screen and (max-width: 767px) {
    .heroCarousel-slide--custom.mobile-small .heroCarousel-content--custom {
      width: 270px; } }
  @media only screen and (min-width: 768px) and (max-width: 1099px) {
    .heroCarousel-slide--custom.mobile-small .heroCarousel-title {
      font-size: 32px; } }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .heroCarousel-slide--custom.mobile-small .heroCarousel-subtitle {
      font-size: 24px; } }
  .heroCarousel-slide--custom.mobile-small .heroCarousel-description {
    font-size: 18px; }
  @media only screen and (max-width: 767px) {
    .heroCarousel-slide--custom .table-100 {
      display: block;
      padding-top: 10px; }
      .heroCarousel-slide--custom .table-100 > div {
        display: block; } }
  .heroCarousel-slide--custom .wrapper {
    height: 100%; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .wrapper {
        padding-right: 0; } }
  .heroCarousel-slide--custom .heroCarousel-slide--bg {
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .heroCarousel-slide--custom .heroCarousel-content--custom {
    width: 245px; }
    .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-subtitle, .heroCarousel-slide--custom .heroCarousel-content--custom .right-of-button-text {
      margin-bottom: 5px; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom {
        display: flex;
        flex-direction: column;
        align-items: flex-start; }
        .heroCarousel-slide--custom .heroCarousel-content--custom .button-wrap {
          order: 1;
          margin-right: 0; }
        .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-title {
          margin-bottom: 2px;
          text-align: right; } }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom {
        max-width: 78%;
        width: 689px; } }
  .heroCarousel-slide--custom .heroCarousel-title {
    margin-bottom: 7px; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .heroCarousel-title {
        margin-bottom: 10px;
        font-size: 20px; }
        .heroCarousel-slide--custom .heroCarousel-title span {
          display: none; } }
  .heroCarousel-slide--custom .heroCarousel-subtitle {
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .heroCarousel-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: right; } }
  .heroCarousel-slide--custom.light-theme {
    background-color: #000; }
    .heroCarousel-slide--custom.light-theme .heroCarousel-title, .heroCarousel-slide--custom.light-theme .heroCarousel-subtitle, .heroCarousel-slide--custom.light-theme h4, .heroCarousel-slide--custom.light-theme .h4, .heroCarousel-slide--custom.light-theme .right-of-button-text, .heroCarousel-slide--custom.light-theme .heroCarousel-description, .heroCarousel-slide--custom.light-theme .heroCarousel-description * {
      color: #fff; }
  .heroCarousel-slide--custom.align-content-right .heroCarousel-content--custom {
    align-items: flex-end;
    margin-right: 20px !important;
    margin-left: auto; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom.align-content-right .heroCarousel-content--custom {
        margin-right: 20px; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom.align-content-extra-right.align-content-right .heroCarousel-content--custom {
      margin-right: 0;
      width: 590px; } }
  .heroCarousel-slide--custom .heroCarousel-description {
    margin-bottom: 20px;
    margin-top: 20px;
    display: none; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom .heroCarousel-description {
        display: block;
        margin-top: 40px;
        margin-bottom: 40px;
        font-size: 20px; } }
    .heroCarousel-slide--custom .heroCarousel-description ul {
      padding-left: 26px;
      list-style-type: none; }
      @media only screen and (min-width: 768px) {
        .heroCarousel-slide--custom .heroCarousel-description ul {
          padding-left: 13px; } }
      .heroCarousel-slide--custom .heroCarousel-description ul .bullets {
        display: inline-block;
        height: 14px;
        width: 14px;
        margin-right: 11px; }
      .heroCarousel-slide--custom .heroCarousel-description ul li {
        margin-bottom: 7px; }
        @media only screen and (min-width: 768px) {
          .heroCarousel-slide--custom .heroCarousel-description ul li {
            margin-bottom: 12px; } }
        .heroCarousel-slide--custom .heroCarousel-description ul li:last-child {
          margin-bottom: 0; }
    .heroCarousel-slide--custom .heroCarousel-description :last-child {
      margin-bottom: 0; }
  .heroCarousel-slide--custom .above-button-text {
    margin-bottom: 20px; }
  .heroCarousel-slide--custom .button-wrap, .heroCarousel-slide--custom .right-of-button-text {
    display: inline-block;
    vertical-align: middle; }
  .heroCarousel-slide--custom .right-of-button-text {
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .right-of-button-text {
        font-size: 14px; } }
  .heroCarousel-slide--custom .button-wrap {
    margin-right: 20px;
    margin-bottom: 0; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom .button-wrap {
        margin-right: 50px; } }
  @media only screen and (max-width: 767px) {
    .heroCarousel-slide--custom .heroCarousel-action {
      padding: 0 12px;
      height: 33px;
      line-height: 33px; } }

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

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

.productView-image {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  position: relative;
  max-width: 500px;
  margin: 0 auto; }
  .productView-image > a {
    width: 100%;
    display: block; }
  .productView-image img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /* Object-fit polyfill */
    font-family: 'object-fit: contain;';
    object-fit: contain;
    width: 100%; }
  .productView-image .productView-image--default {
    width: 100%; }
  .productView-image + .productView-thumbnails {
    margin-top: 30px;
    margin-bottom: 15px; }

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

.productView-thumbnails {
  margin-left: 25px;
  margin-right: 25px; }
  .productView-thumbnails .slick-next, .productView-thumbnails .slick-prev {
    height: 95px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #720021;
    transition: 0.3s ease all;
    padding: 0;
    top: 0;
    margin-top: 0;
    transform: none; }
    .productView-thumbnails .slick-next svg, .productView-thumbnails .slick-prev svg {
      height: 10px;
      width: 10px;
      fill: #720021;
      transition: 0.3s ease all; }
    .productView-thumbnails .slick-next::before, .productView-thumbnails .slick-prev::before {
      display: none; }
    .productView-thumbnails .slick-next:hover, .productView-thumbnails .slick-prev:hover {
      background-color: #720021; }
      .productView-thumbnails .slick-next:hover svg, .productView-thumbnails .slick-prev:hover svg {
        fill: #fff; }
  @media only screen and (min-width: 1400px) {
    .productView-thumbnails .slick-prev {
      left: -25px; } }
  @media only screen and (min-width: 1400px) {
    .productView-thumbnails .slick-next {
      right: -25px; } }

.productView-thumbnail {
  padding-left: 3px;
  padding-right: 3px; }

.productView-thumbnail-link {
  border: 0;
  display: block;
  text-align: center;
  width: 100%;
  opacity: .5;
  position: relative;
  transition: 0.3s ease opacity; }
  .productView-thumbnail-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    transition: 0.3s ease opacity;
    opacity: 0; }
  .productView-thumbnail-link:hover, .productView-thumbnail-link.is-active {
    opacity: 1; }
    .productView-thumbnail-link:hover::after, .productView-thumbnail-link.is-active::after {
      opacity: 0.5; }

.productView--quickView {
  position: relative; }

.productView-product {
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    .productView-product {
      margin-bottom: 30px; } }
  .productView-product > :last-child {
    margin-bottom: 0; }

.productView-title {
  margin-bottom: 15px;
  max-width: 466px; }

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

.sku-stars {
  display: table;
  width: 100%;
  margin-bottom: 10px; }
  .sku-stars > div {
    display: table-cell;
    vertical-align: middle; }
    .sku-stars > div:last-of-type {
      text-align: right; }

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

.productView-stars {
  font-size: 0; }

.price-sku-disclaimer {
  margin-bottom: 20px; }

.product-info-box .product-info-box-top {
  padding: 15px; }

.product-info-box .product-info-single {
  margin-bottom: 15px; }
  .product-info-box .product-info-single:last-child {
    margin-bottom: 0; }
  .product-info-box .product-info-single > div {
    display: inline; }
    .product-info-box .product-info-single > div.product-info-name {
      font-weight: 500; }

.product-info-box .product-info-box-bottom {
  border-top: 1px solid #DEDEDE;
  padding: 15px; }
  .product-info-box .product-info-box-bottom .overview-title {
    font-weight: 500;
    margin-bottom: 10px; }
  .product-info-box .product-info-box-bottom :last-child {
    margin-bottom: 0; }

.productView-info {
  *zoom: 1;
  margin: 0;
  display: none; }
  .productView-info::after {
    content: '';
    display: table;
    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 {
  position: relative;
  padding-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .productView-options {
      padding-bottom: 40px; } }
  @media only screen and (min-width: 480px) {
    .productView-options .form-input[type="number"] {
      width: 16.6667%; } }
  .productView-options .form {
    display: block;
    max-width: 470px; }
  .productView-options input[type="file"] {
    font-size: 14px; }
  .productView-options .form-label .required-star {
    display: none; }
  .productView-options .form-label--inlineSmall {
    margin-bottom: 10px;
    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; }
    .productView-options .form-field .single-radio-item {
      display: inline-block;
      margin-right: 30px;
      width: auto; }
      .productView-options .form-field .single-radio-item:last-of-type {
        margin-right: 0; }
    .productView-options .form-field > .form-checkbox + .form-label {
      display: inline-block;
      margin-left: 30px;
      width: auto; }
    .productView-options .form-field > .form-label:first-of-type {
      margin-left: 0; }
  .productView-options .form-input {
    width: 100%; }
  .productView-options .form-action {
    display: inline-block;
    vertical-align: middle;
    position: relative; }
  .productView-options .set-radio.has-images .form-radio + .form-label::before {
    top: 7px; }
  .productView-options .set-radio.has-images .form-radio + .form-label::after {
    top: 10px; }
  .productView-options .personalization-disclaimer {
    margin-bottom: 10px;
    padding-top: 5px;
    color: #720021; }
    .productView-options .personalization-disclaimer span {
      text-decoration: underline; }
  .productView-options .rl-allan-disclaimer {
    color: #720021;
    font-weight: 500; }
  .productView-options .personalization-title {
    margin-bottom: 15px; }
  .productView-options .personalization-details-link {
    margin-bottom: 30px; }

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

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

.personalization-options {
  position: relative; }
  .personalization-options .form-field .single-radio-item {
    display: block;
    margin-bottom: 15px;
    padding-left: 20px; }
    .personalization-options .form-field .single-radio-item:last-child {
      margin-bottom: 10px; }
    .personalization-options .form-field .single-radio-item .form-label {
      display: inline-block;
      margin-bottom: 0; }
  .personalization-options .personalization-line {
    margin-bottom: 10px; }

.thumb-indexing-link {
  margin-bottom: 15px; }

.option-details-popup {
  border: 1px solid #979797;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  padding: 30px;
  position: absolute;
  z-index: 2; }
  .option-details-popup.is-open::before, .option-details-popup.is-open::after {
    pointer-events: none; }
  .option-details-popup.is-open::before {
    position: absolute; }
    @media only screen and (max-width: 767px) {
      .option-details-popup.is-open::before {
        border: inset 14px;
        content: "";
        display: block;
        height: 0;
        width: 0;
        border-color: transparent transparent rgba(0, 0, 0, 0.35) transparent;
        border-bottom-style: solid;
        top: -28px;
        left: 20px; } }
    @media only screen and (min-width: 768px) {
      .option-details-popup.is-open::before {
        border: inset 14px;
        content: "";
        display: block;
        height: 0;
        width: 0;
        border-color: transparent transparent transparent rgba(0, 0, 0, 0.35);
        border-left-style: solid;
        top: 39px;
        right: -28px; } }
  .option-details-popup.is-open::after {
    position: absolute; }
    @media only screen and (max-width: 767px) {
      .option-details-popup.is-open::after {
        border: inset 12px;
        content: "";
        display: block;
        height: 0;
        width: 0;
        border-color: transparent transparent #ffffff transparent;
        border-bottom-style: solid;
        top: -24px;
        left: 22px; } }
    @media only screen and (min-width: 768px) {
      .option-details-popup.is-open::after {
        border: inset 12px;
        content: "";
        display: block;
        height: 0;
        width: 0;
        border-color: transparent transparent transparent #ffffff;
        border-left-style: solid;
        top: 40px;
        right: -24px; } }
  .option-details-popup .modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 17px;
    height: auto;
    width: auto; }
    .option-details-popup .modal-close .icon {
      width: 22px;
      height: 22px; }

.thumb-indexing-popup {
  width: 315px; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .thumb-indexing-popup {
      width: 370px; } }
  @media only screen and (min-width: 991px) {
    .thumb-indexing-popup {
      width: 400px; } }
  .thumb-indexing-popup.is-open {
    top: 70px !important; }
    @media only screen and (min-width: 768px) {
      .thumb-indexing-popup.is-open {
        top: -16px !important;
        left: -390px !important; } }
    @media only screen and (min-width: 991px) {
      .thumb-indexing-popup.is-open {
        left: -420px !important; } }

.personalization-details-popup {
  width: 589px; }
  .personalization-details-popup.is-open {
    top: 7px !important;
    left: -609px !important; }
  .personalization-details-popup .split-section {
    font-size: 0; }
    .personalization-details-popup .split-section .split-item {
      font-size: 16px;
      display: inline-block;
      width: 50%;
      vertical-align: top; }
      .personalization-details-popup .split-section .split-item:first-child {
        padding-right: 21px; }
      .personalization-details-popup .split-section .split-item:last-child {
        padding-left: 21px; }

.price-add-box {
  margin-top: 30px; }
  .price-add-box .price-add-box-top {
    padding: 22px 15px; }
    .price-add-box .price-add-box-top h4, .price-add-box .price-add-box-top .h4,
    .price-add-box .price-add-box-top span {
      display: inline-block;
      vertical-align: middle; }
    .price-add-box .price-add-box-top h4, .price-add-box .price-add-box-top .h4 {
      margin-bottom: 0;
      margin-right: 16px; }
    .price-add-box .price-add-box-top .price {
      color: #720021; }
  .price-add-box .price-add-box-bottom {
    align-items: flex-start;
    display: flex;
    gap: 15px 20px;
    padding: 17px 0 0;
    flex-wrap: wrap; }
    .price-add-box .price-add-box-bottom .form-field--increments {
      align-items: center;
      display: flex;
      margin: 0; }
  .price-add-box .buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1 1 auto; }
  .price-add-box .buttons-container--cart-wishlist {
    display: flex;
    flex: 1 1 auto;
    gap: 5px; }
    .price-add-box .buttons-container--cart-wishlist .form-action {
      flex: 1 1 auto; }
      .price-add-box .buttons-container--cart-wishlist .form-action input {
        width: 100%; }

.checkout-buttons-container,
.wishlist-container {
  max-width: 470px;
  padding-left: 124px; }
  @media screen and (max-width: 421px), screen and (min-width: 768px) and (max-width: 862px) {
    .checkout-buttons-container,
    .wishlist-container {
      padding-left: 0; } }
  .checkout-buttons-container.out-of-stock,
  .wishlist-container.out-of-stock {
    padding-left: 0; }
    @media only screen and (min-width: 768px) {
      .checkout-buttons-container.out-of-stock,
      .wishlist-container.out-of-stock {
        max-width: 329px; } }
  .checkout-buttons-container > div,
  .wishlist-container > div {
    margin-top: 15px; }
  .checkout-buttons-container .apple-pay-checkout-button,
  .wishlist-container .apple-pay-checkout-button {
    background-size: 100% 50%; }

.shareProduct {
  text-align: center; }

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

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

.reviews-content-header {
  padding-bottom: 20px; }
  .reviews-content-header .reviews-count {
    color: #737373;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .reviews-content-header .reviews-count {
        margin-bottom: 0;
        margin-right: 30px; } }
  .reviews-content-header .reviews-number {
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .reviews-content-header .reviews-number {
        margin-bottom: 0; } }
  .reviews-content-header .reviews-stars {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0; }
    @media only screen and (min-width: 768px) {
      .reviews-content-header .reviews-stars {
        margin-bottom: 0;
        margin-right: 30px; } }
    .reviews-content-header .reviews-stars .icon {
      margin-right: 7px; }
      .reviews-content-header .reviews-stars .icon:last-of-type {
        margin-right: 0; }
  .reviews-content-header .reviews-header-content > div {
    display: inline-block;
    vertical-align: middle; }

.productReviews {
  padding-top: 40px;
  border-top: 1px solid #DEDEDE; }
  .productReviews .pagination {
    padding-bottom: 40px; }
    .productReviews .pagination .pagination-list {
      text-align: right; }
      .productReviews .pagination .pagination-list .pagination-item.pagination-item--previous {
        margin-right: 40px; }
      .productReviews .pagination .pagination-list .pagination-item.pagination-item--next {
        margin-left: 40px; }

.productReviews-list {
  list-style: none;
  margin-bottom: 40px; }

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

.productReview-title {
  margin-bottom: 13px;
  color: #720021;
  text-transform: none; }

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

.productReview-name {
  font-size: 16px; }

.productReview-date {
  color: #737373 !important;
  font-size: 14px;
  display: block; }

.productReview-rating {
  display: block;
  margin-bottom: 15px;
  font-size: 0; }
  .productReview-rating .icon {
    margin-right: 7px; }
    .productReview-rating .icon:last-of-type {
      margin-right: 0; }

.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 .tab-content {
  padding-top: 20px; }
  @media only screen and (min-width: 991px) {
    .productView-description .tab-content {
      padding-top: 40px; } }

.description-block {
  padding: 40px 0;
  border-top: 1px solid #DEDEDE; }
  .description-block .description-title {
    margin-bottom: 30px; }

.yotpo.yotpo-main-widget {
  font-family: Roboto, sans-serif !important; }
  .yotpo.yotpo-main-widget .promoted-products-box {
    display: none !important; }
  .yotpo.yotpo-main-widget .yotpo-small-box.yotpo-label, .yotpo.yotpo-main-widget .yotpo-small-box.yotpo-nav {
    border-bottom: none; }
  .yotpo.yotpo-main-widget .yotpo-display-wrapper > .yotpo-regular-box {
    margin: 0;
    border-top: none; }
  .yotpo.yotpo-main-widget .yotpo-default-button.yotpo-icon-btn {
    display: inline-block; }
  .yotpo.yotpo-main-widget .yotpo-bottomline-box-1.yotpo-stars-and-sum-reviews .text-m.ask-question {
    visibility: hidden; }
  .yotpo.yotpo-main-widget .yotpo-bottomline-box-1.yotpo-stars-and-sum-reviews .yotpo-stars .sr-only {
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    font-size: 18px;
    line-height: 1.44444;
    clip: auto;
    bottom: 60px;
    color: #000000; }
  @media screen and (max-width: 592px) {
    .yotpo.yotpo-main-widget .yotpo-bottomline-box-2 .yotpo-star-distribution {
      margin-top: 60px;
      margin-left: 0 !important;
      padding-left: 0 !important;
      border-left: none !important; } }
  .yotpo.yotpo-main-widget .yotpo-star-distribution-content .review-stars span, .yotpo.yotpo-main-widget .yotpo-star-distribution-content .review-stars .review-stars .yotpo-icon {
    font-size: 20px !important; }
  .yotpo.yotpo-main-widget .yotpo-star-distribution-content .yotpo-distibutions-sum-reviews .yotpo-sum-reviews {
    margin-bottom: 8px !important; }
  .yotpo.yotpo-main-widget .yotpo-star-distribution-content .yotpo-star-distribution-graph {
    height: 13px !important;
    width: 160px !important;
    margin-bottom: 12px !important;
    background-color: #2C2C2C; }
    .yotpo.yotpo-main-widget .yotpo-star-distribution-content .yotpo-star-distribution-graph .yotpo-star-distribution-score-wrapper {
      background-color: #DEDEDE !important; }
      .yotpo.yotpo-main-widget .yotpo-star-distribution-content .yotpo-star-distribution-graph .yotpo-star-distribution-score-wrapper .yotpo-star-distribution-graph-score {
        margin-bottom: 8px !important;
        height: 13px; }
  .yotpo.yotpo-main-widget .yotpo-default-button.yotpo-icon-btn, .yotpo.yotpo-main-widget .yotpo-default-button.write-review-button {
    background-color: #720021;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: Roboto; }
    .yotpo.yotpo-main-widget .yotpo-default-button.yotpo-icon-btn .yotpo-icon-button-text, .yotpo.yotpo-main-widget .yotpo-default-button.write-review-button .yotpo-icon-button-text {
      font-family: Roboto;
      font-size: 16px; }
    @media screen and (min-width: 698px) {
      .yotpo.yotpo-main-widget .yotpo-default-button.yotpo-icon-btn, .yotpo.yotpo-main-widget .yotpo-default-button.write-review-button {
        display: inline-block;
        padding: 12px 20px; } }
    @media screen and (min-width: 698px) {
      .yotpo.yotpo-main-widget .yotpo-default-button.yotpo-icon-btn span.yotpo-icon, .yotpo.yotpo-main-widget .yotpo-default-button.write-review-button span.yotpo-icon {
        display: none; } }
    @media screen and (min-width: 698px) {
      .yotpo.yotpo-main-widget .yotpo-default-button.yotpo-icon-btn.write-review-button, .yotpo.yotpo-main-widget .yotpo-default-button.yotpo-icon-btn.write-question-button, .yotpo.yotpo-main-widget .yotpo-default-button.write-review-button.write-review-button, .yotpo.yotpo-main-widget .yotpo-default-button.write-review-button.write-question-button {
        position: absolute;
        top: auto !important;
        bottom: 250px !important; } }
    @media screen and (min-width: 698px) {
      .yotpo.yotpo-main-widget .yotpo-default-button.yotpo-icon-btn.write-review-button, .yotpo.yotpo-main-widget .yotpo-default-button.write-review-button.write-review-button {
        right: 205px !important;
        width: 190px; } }
  .yotpo.yotpo-main-widget .write-first-question-button {
    background-color: #720021;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px; }
  .yotpo.yotpo-main-widget .yotpo-thank-you .yotpo-thankyou-footer, .yotpo.yotpo-main-widget .yotpo-thank-you .yotpo-thankyou-content {
    display: none; }
  .yotpo.yotpo-main-widget .write-review-wrapper span.y-label, .yotpo.yotpo-main-widget .write-question-wrapper span.y-label {
    font-size: 16px;
    color: #1E1E1E; }
  .yotpo.yotpo-main-widget .write-review-wrapper .submit-button, .yotpo.yotpo-main-widget .write-question-wrapper .submit-button {
    width: 100%; }
    .yotpo.yotpo-main-widget .write-review-wrapper .submit-button .yotpo-default-button.primary-color-btn.yotpo-submit, .yotpo.yotpo-main-widget .write-question-wrapper .submit-button .yotpo-default-button.primary-color-btn.yotpo-submit {
      font-size: 16px;
      font-weight: 500 !important;
      font-family: Roboto, sans-serif; }
  .yotpo.yotpo-main-widget .write-review-wrapper span.yotpo-mandatory-mark, .yotpo.yotpo-main-widget .write-question-wrapper span.yotpo-mandatory-mark {
    color: #720021; }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-header-title, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-header-title {
    text-transform: lowercase;
    color: #1E1E1E;
    font-size: 18px;
    font-family: Roboto, sans-serif; }
    .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-header-title:first-letter, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-header-title:first-letter {
      text-transform: uppercase; }
  @media screen and (min-width: 767px) {
    .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-header, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-header {
      width: 15%;
      float: left; } }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-header span.y-label, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-header span.y-label {
    font-size: 16px;
    color: #1E1E1E; }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-header span.stars-wrapper, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-header span.stars-wrapper {
    font-size: 24px; }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-header .yotpo-icon, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-header .yotpo-icon {
    font-size: 20px; }
  @media screen and (min-width: 767px) {
    .yotpo.yotpo-main-widget .write-review-wrapper .write-review-content, .yotpo.yotpo-main-widget .write-question-wrapper .write-review-content {
      width: 85%;
      display: inline-block;
      padding: 30px 0 0 74px; } }
  .yotpo.yotpo-main-widget .write-review-wrapper .write-review-content label, .yotpo.yotpo-main-widget .write-review-wrapper .write-review-content input, .yotpo.yotpo-main-widget .write-question-wrapper .write-review-content label, .yotpo.yotpo-main-widget .write-question-wrapper .write-review-content input {
    font-size: 16px;
    color: #1E1E1E; }
  .yotpo.yotpo-main-widget .write-review-wrapper .write-review-content input, .yotpo.yotpo-main-widget .write-question-wrapper .write-review-content input {
    height: 45px; }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-footer .socialize-wrapper, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-footer .socialize-wrapper {
    display: none !important; }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-footer label, .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-footer input, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-footer label, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-footer input {
    font-size: 16px;
    color: #1E1E1E; }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-footer label, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-footer label {
    padding-top: 0; }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-footer input, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-footer input {
    height: 45px; }
  .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-footer .connect-wrapper, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-footer .connect-wrapper {
    padding-left: 0; }
    @media screen and (min-width: 767px) {
      .yotpo.yotpo-main-widget .write-review-wrapper .yotpo-footer .connect-wrapper, .yotpo.yotpo-main-widget .write-question-wrapper .yotpo-footer .connect-wrapper {
        width: 85%;
        padding-left: 74px;
        float: right; } }
  @media screen and (min-width: 767px) {
    .yotpo.yotpo-main-widget .write-review-wrapper #write-question-tabpanel > div:first-of-type, .yotpo.yotpo-main-widget .write-question-wrapper #write-question-tabpanel > div:first-of-type {
      width: 15%;
      display: inline-block;
      float: left; } }
  .yotpo.yotpo-main-widget .write-review-wrapper #write-question-tabpanel .yotpo-mandatory-explain, .yotpo.yotpo-main-widget .write-question-wrapper #write-question-tabpanel .yotpo-mandatory-explain {
    display: none; }
  @media screen and (min-width: 767px) {
    .yotpo.yotpo-main-widget .write-review-wrapper #write-question-tabpanel .write-question-content, .yotpo.yotpo-main-widget .write-question-wrapper #write-question-tabpanel .write-question-content {
      width: 85%;
      float: right; } }
  .yotpo.yotpo-main-widget .write-review-wrapper #write-question-tabpanel .connect-wrapper.visible, .yotpo.yotpo-main-widget .write-question-wrapper #write-question-tabpanel .connect-wrapper.visible {
    padding-left: 0; }
  .yotpo.yotpo-main-widget .write-review-wrapper #write-question-tabpanel .submit-button, .yotpo.yotpo-main-widget .write-question-wrapper #write-question-tabpanel .submit-button {
    width: 100%; }
  .yotpo.yotpo-main-widget .yotpo-nav-primary {
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 30px; }
    .yotpo.yotpo-main-widget .yotpo-nav-primary ul li {
      margin: 0px 18px 0px 0px; }
      .yotpo.yotpo-main-widget .yotpo-nav-primary ul li span {
        font-size: 18px !important;
        line-height: 26px;
        color: #1E1E1E;
        font-weight: 400; }
        .yotpo.yotpo-main-widget .yotpo-nav-primary ul li span.yotpo-nav-tab-sum, .yotpo.yotpo-main-widget .yotpo-nav-primary ul li span.nav-tab-sum {
          font-size: 14px !important;
          color: #2C2C2C; }
  @media screen and (max-width: 550px) {
    .yotpo.yotpo-main-widget .yotpo-nav-dropdown .yotpo-dropdown-button {
      display: none; } }
  .yotpo.yotpo-main-widget .yotpo-nav-dropdown span {
    font-size: 16px !important;
    position: relative;
    bottom: 30px; }
    .yotpo.yotpo-main-widget .yotpo-nav-dropdown span.yotpo-icon:not(.yotpo-icon-down-triangle) {
      display: none; }
    .yotpo.yotpo-main-widget .yotpo-nav-dropdown span.selected {
      padding: 13px 164px 12px 10px;
      border: 1px solid #DEDEDE;
      left: 30px; }
    .yotpo.yotpo-main-widget .yotpo-nav-dropdown span:first-of-type {
      left: 30px; }
  @media screen and (min-width: 550px) {
    .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review {
      padding: 40px 0 22px;
      border-top: none; } }
  .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-main {
    position: relative;
    bottom: 55px;
    width: calc(100% - 200px);
    margin-left: 200px; }
    @media screen and (max-width: 550px) {
      .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-main {
        width: 100%;
        margin-left: 0;
        position: static; } }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-main {
        width: calc(100% - 150px);
        margin-left: 150px; } }
    .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-main .content-title {
      color: #720021;
      font-size: 18px !important;
      line-height: 1.44444;
      font-weight: 400; }
    .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-main .content-review, .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-main .rest-content-collapsed {
      color: #000000;
      font-size: 16px;
      line-height: 20px; }
  @media screen and (min-width: 551px) {
    .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-footer {
      margin-left: 200px; } }
  .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-footer, .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-review-date {
    color: #737373;
    opacity: 0.5;
    font-size: 14px !important; }
    .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-footer .y-label, .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-footer span.y-label, .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-review-date .y-label, .yotpo.yotpo-main-widget .yotpo-reviews .yotpo-review .yotpo-review-date span.y-label {
      font-size: 14px !important; }
  .yotpo.yotpo-main-widget .yotpo-header .yotpo-header-element .yotpo-icon-profile {
    background-color: #720021 !important; }
  .yotpo.yotpo-main-widget .yotpo-header .yotpo-header-element .yotpo-user-name {
    font-size: 14px !important;
    line-height: 1.21429;
    font-weight: 400;
    color: #000000 !important; }
  .yotpo.yotpo-main-widget .yotpo-header .yotpo-header-element .yotpo-user-title {
    font-size: 14px !important; }
  .yotpo.yotpo-main-widget .yotpo-header .yotpo-header-element .label-with-tooltip {
    float: none; }
  .yotpo.yotpo-main-widget .yotpo-header .yotpo-header-element .yotpo-review-stars {
    bottom: 45px;
    left: 0px;
    font-size: 30px; }
    @media screen and (min-width: 550px) {
      .yotpo.yotpo-main-widget .yotpo-header .yotpo-header-element .yotpo-review-stars {
        position: absolute !important; } }
    .yotpo.yotpo-main-widget .yotpo-header .yotpo-header-element .yotpo-review-stars .yotpo-icon {
      font-size: 20px; }
  .yotpo.yotpo-main-widget .yotpo-header .yotpo-header-element.yotpo-header-actions {
    position: absolute;
    bottom: 25px;
    right: 0; }
  .yotpo.yotpo-main-widget .yotpo-pager {
    padding-bottom: 40px; }
    .yotpo.yotpo-main-widget .yotpo-pager .goTo.yotpo-active {
      background-color: #720021 !important;
      color: #ffffff !important;
      padding: 1px 5px; }
    @media screen and (min-width: 550px) {
      .yotpo.yotpo-main-widget .yotpo-pager .yotpo_previous {
        padding: 13px 15px;
        margin-right: 100px !important;
        border: 1px solid #720021; }
        .yotpo.yotpo-main-widget .yotpo-pager .yotpo_previous::after {
          content: "Previous";
          text-transform: capitalize;
          font-size: 15px !important;
          font-family: "Roboto", Helvetica, Arial, sans-serif; }
        .yotpo.yotpo-main-widget .yotpo-pager .yotpo_previous::before {
          content: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='m.09 7.33 6.63 6.67a1.32 1.32 0 0 0 .93.38 1.3 1.3 0 0 0 .91-2.23l-3.56-3.66h7.72a1.21 1.21 0 0 0 1.19-1.3 1.21 1.21 0 0 0 -1.19-1.3h-7.72l3.56-3.68a1.25 1.25 0 0 0 .44-.91 1.25 1.25 0 0 0 -.44-.92 1.29 1.29 0 0 0 -.95-.38 1.31 1.31 0 0 0 -.93.39l-6.63 6.61c-.05.16-.05.23.04.33z' fill='rgba(114, 0, 33, 0.999)' /%3E%3C/svg%3E");
          position: relative;
          bottom: -12px; }
      .yotpo.yotpo-main-widget .yotpo-pager .yotpo_next {
        padding: 13px 15px;
        border: 1px solid #720021;
        font-size: 15px;
        margin-left: 100px !important; }
        .yotpo.yotpo-main-widget .yotpo-pager .yotpo_next::after {
          content: 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='m13.86 7.33-6.64 6.67a1.32 1.32 0 0 1 -.92.38 1.3 1.3 0 0 1 -.92-.38 1.29 1.29 0 0 1 0-1.85l3.53-3.66h-7.72a1.22 1.22 0 0 1 -1.19-1.3 1.22 1.22 0 0 1 1.19-1.3h7.72l-3.53-3.68a1.29 1.29 0 0 1 -.38-.91 1.29 1.29 0 0 1 .38-.92 1.26 1.26 0 0 1 .95-.38 1.29 1.29 0 0 1 .93.39l6.64 6.61c.1.16.1.23-.04.33z' fill='rgba(114, 0, 33, 0.999)' /%3E%3C/svg%3E");
          position: relative;
          bottom: -12px;
          left: 5px; }
        .yotpo.yotpo-main-widget .yotpo-pager .yotpo_next::before {
          content: "Next";
          padding-right: 5px;
          font-size: 15px !important;
          font-family: "Roboto", Helvetica, Arial, sans-serif; } }

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

.related-products {
  padding: 40px 0;
  border-top: 1px solid #DEDEDE; }

.duplicate-wishlist-container {
  display: inline-block; }
  .duplicate-wishlist-container > .form-wishlist {
    height: 45px; }
  .duplicate-wishlist-container .button {
    padding: 13px 12px;
    line-height: 22px;
    color: #ffffff;
    border: 1px solid #720021; }
    .duplicate-wishlist-container .button.is-open, .duplicate-wishlist-container .button:hover {
      color: #720021;
      background-color: #ffffff; }
    .duplicate-wishlist-container .button .icon {
      margin: 0;
      width: 21px;
      height: 19px; }
      .duplicate-wishlist-container .button .icon svg {
        fill: currentColor; }

.wishlist-container.notify-active, .wishlist-container.out-of-stock {
  max-width: 100%;
  padding-left: 0; }
  @media only screen and (min-width: 768px) {
    .wishlist-container.notify-active, .wishlist-container.out-of-stock {
      max-width: 329px; } }

.wishlist-container .form-wishlist {
  margin: 0;
  padding: 0;
  width: 100%; }
  .wishlist-container .form-wishlist > a.is-open {
    background-color: #3E0018;
    color: #ffffff; }
    .wishlist-container .form-wishlist > a.is-open svg {
      transform: rotate(0); }

.wishlist-container .button {
  background-color: #ffffff;
  padding: 13px 12px;
  line-height: 22px;
  width: 100%; }
  .wishlist-container .button .icon {
    margin: 0;
    width: 21px;
    height: 19px;
    float: none; }
    .wishlist-container .button .icon svg {
      fill: currentColor;
      height: 9px;
      left: 2px;
      position: relative;
      top: -2px;
      transform: rotate(180deg);
      width: 14px; }

.productView-options.out-of-stock .price-add-box {
  display: none; }

@media only screen and (max-width: 479px) {
  .productView-options.out-of-stock .button.klaviyo-bis-trigger {
    padding: 0 10px; } }

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .productView-options.out-of-stock .button.klaviyo-bis-trigger {
    padding: 0 30px; } }

.compareTable {
  border-top: 1px solid #DEDEDE;
  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 #DEDEDE; }
  .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: #720021;
    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 #DEDEDE;
  margin-bottom: 30px; }
  .toggle:last-of-type {
    margin-bottom: 60px; }

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

.toggleLink {
  color: #737373; }
  .toggleLink:hover {
    color: #000000; }
  .toggle-title .toggleLink {
    float: right;
    line-height: 24px; }

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

.toggleLink-text--off {
  display: inline-block; }
  .toggleLink.is-open .toggleLink-text--off,
  .accordion-navigation-actions.is-open .toggleLink-text--off {
    display: none; }

.toggleLink-text--on {
  display: none; }
  .toggleLink.is-open .toggleLink-text--on,
  .accordion-navigation-actions.is-open .toggleLink-text--on {
    display: inline-block; }

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

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

.filter-toggle {
  width: 100%; }

@media only screen and (min-width: 768px) {
  .productGrid {
    padding-top: 35px; } }

.category-header-image {
  width: 100%; }

.facetedSearch-toggle {
  border: 1px solid #DEDEDE;
  border-radius: 0px;
  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: 9px; }
  @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 #DEDEDE;
      border-right: 1px solid #DEDEDE; }
      .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block,
      .sidebarBlock + .facetedSearch-navList.is-open .accordion-block {
        border-bottom: 1px solid #DEDEDE; }
        .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: 18px 0 15px 20px; }
        .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; } }
  @media only screen and (min-width: 768px) {
    .facetedSearch-toggle + .facetedSearch-navList.is-open,
    .sidebarBlock + .facetedSearch-navList.is-open {
      margin-top: 20px; } }
  .facetedSearch-navList .navList--inner {
    margin-left: 20px; }

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

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

.facetedSearch-refineFilters {
  display: none;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .facetedSearch-refineFilters {
      display: block;
      margin-bottom: 0; } }
  @media only screen and (min-width: 1400px) {
    .facetedSearch-refineFilters .selected-filters-clear-filters,
    .facetedSearch-refineFilters .selected-filters-no-filters {
      position: absolute;
      right: 0;
      top: 0; } }
  .facetedSearch-refineFilters .sidebarBlock-heading {
    border-bottom: 1px solid #737373; }

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

.selected-filters-list {
  list-style: none;
  margin-bottom: 0;
  border-bottom: 1px solid #737373;
  padding-bottom: 10px; }

.cart-main .alertBox {
  text-align: center;
  background-color: #000000;
  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: 16px; } }

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

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

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

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

.cart-item {
  border-bottom: 1px solid #DEDEDE;
  clear: both;
  display: block;
  padding: 10px 0 20px; }
  @media only screen and (min-width: 480px) {
    .cart-item {
      padding-top: 20px;
      *zoom: 1;
      padding-left: 25%; }
      .cart-item::after {
        content: '';
        display: table;
        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;
  text-align: center;
  width: 33.33333%; }
  @media only screen and (min-width: 480px) {
    .cart-item-figure {
      height: 200px;
      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%; }

.cart-item-image {
  width: auto;
  max-height: 100%; }

.cart-item-title {
  display: table-cell;
  height: 140px;
  padding-left: 30px; }
  @media only screen and (min-width: 480px) {
    .cart-item-title {
      height: 200px;
      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: #737373;
    line-height: .94;
    display: inline-block;
    vertical-align: middle;
    text-decoration: underline; }
    .cart-item-title .change-remove-wrap a:hover {
      color: #000000; }
    .cart-item-title .change-remove-wrap a + a {
      margin-left: 1px;
      padding-left: 6px;
      border-left: 1px solid #737373; }

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

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

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

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

.cart-item-quantity .form-increment {
  width: 65px; }
  .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;
  text-align: right;
  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; }
  @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;
    font-size: 12px; }
    @media only screen and (min-width: 768px) {
      .cart-item-name + .definitionList {
        padding-bottom: 30px; } }
    .cart-item-name + .definitionList .definitionList-key, .cart-item-name + .definitionList .definitionList-value {
      color: inherit; }

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

.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 {
  *zoom: 1;
  margin-bottom: 10px; }
  .cart-total::after {
    content: '';
    display: table;
    clear: both; }
  .cart-total .form-inlineMessage {
    text-align: left; }
  .cart-total.cart-grandTotal .cart-total-value {
    font-weight: 500; }

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

.cart-total-label {
  font-weight: 500; }
  @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: #737373;
  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;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  background: none; }
  .cart-action-button:hover {
    color: #000000; }

.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 ul {
  list-style: none; }

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

.cart-actions {
  *zoom: 1;
  clear: both; }
  .cart-actions::after {
    content: '';
    display: table;
    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;
  max-width: 304px;
  margin-left: auto; }

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

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

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

.shipment-label-row {
  border-bottom: 1px solid #DEDEDE; }
  .shipment-label-row h2, .shipment-label-row .h2 {
    padding: 10px 0;
    margin-bottom: 0; }

.cart-additionalCheckoutButtons, .previewCart-additionalCheckoutButtons {
  *zoom: 1; }
  .cart-additionalCheckoutButtons::after, .previewCart-additionalCheckoutButtons::after {
    content: '';
    display: table;
    clear: both; }
  .cart-additionalCheckoutButtons .FloatRight, .previewCart-additionalCheckoutButtons .FloatRight {
    *zoom: 1; }
    .cart-additionalCheckoutButtons .FloatRight::after, .previewCart-additionalCheckoutButtons .FloatRight::after {
      content: '';
      display: table;
      clear: both; }
    .cart-additionalCheckoutButtons .FloatRight p, .previewCart-additionalCheckoutButtons .FloatRight p, .cart-additionalCheckoutButtons .FloatRight .p, .previewCart-additionalCheckoutButtons .FloatRight .p {
      float: none !important;
      margin: 7px 0;
      text-align: right; }
    .cart-additionalCheckoutButtons .FloatRight div, .previewCart-additionalCheckoutButtons .FloatRight div {
      float: right; }
  .cart-additionalCheckoutButtons .CheckoutButton, .previewCart-additionalCheckoutButtons .CheckoutButton {
    margin-bottom: 1rem; }
    .cart-additionalCheckoutButtons .CheckoutButton:first-child, .previewCart-additionalCheckoutButtons .CheckoutButton:first-child {
      margin-top: 21px; }
    .cart-additionalCheckoutButtons .CheckoutButton:last-child, .previewCart-additionalCheckoutButtons .CheckoutButton:last-child {
      margin-bottom: 21px; }

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

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

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

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

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

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

.login-wrap {
  border: 1px solid #DEDEDE; }
  @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: #f4f4f4; }
  .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: 74px 10px 0;
      height: 453px; } }
  @media only screen and (min-width: 768px) {
    .login-wrap h2, .login-wrap .h2, .new-customer h2, .new-customer .h2 {
      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 #DEDEDE;
  margin: 0;
  padding-bottom: 25px;
  margin-bottom: 30px; }

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

.account-listItem {
  border-bottom: 1px solid #DEDEDE;
  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 #DEDEDE;
  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: color("whites", "bright"); }

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

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

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

.account-product-description + .definitionList {
  margin: 14px 0 0;
  border-top: 1px solid #DEDEDE;
  padding-top: 16px;
  max-width: 287px; }
  .account-product-description + .definitionList .definitionList-key {
    float: none;
    margin-bottom: 7px; }
  .account-product-description + .definitionList .definitionList-value {
    color: #737373;
    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: #737373; }

.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 {
  margin-bottom: 30px; }
  .account-orderTotal-grandTotal .account-orderTotal-value {
    font-weight: 500; }

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

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

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

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

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

.account-orderStatus-label {
  background-color: #737373;
  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: #000000; }

.account-orderStatus-action {
  color: #737373;
  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: #000000; }

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

.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 #DEDEDE;
  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: #720021;
  font-weight: 400;
  margin-top: 20px; }

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

.account-downloads-summary {
  border-bottom: 1px solid #DEDEDE;
  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: #737373; }

.address {
  border-bottom: 1px solid #DEDEDE;
  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 #DEDEDE;
  min-height: 120px;
  margin-bottom: 30px; }

form .form-actions .button {
  margin-top: 10px !important; }

@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-field, .share-wishlist-container {
  display: none; }

.share-wishlist {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 37px;
  max-width: 650px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .share-wishlist .wishlist-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; } }
  .share-wishlist .form-input, .share-wishlist .button {
    margin: 0 10px; }
    @media only screen and (max-width: 767px) {
      .share-wishlist .form-input, .share-wishlist .button {
        display: block;
        width: 100%;
        max-width: 360px;
        margin: auto; } }

.wishlist-back {
  margin-bottom: 15px;
  display: inline-block;
  text-decoration: underline; }

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

@media only screen and (max-width: 479px) {
  .delete-all-wishlists {
    min-width: 216px; } }

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

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

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

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

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

#promo-images-section .single-promo {
  margin-bottom: 20px; }

#promo-images-section .promo-link {
  display: block;
  text-decoration: none;
  position: relative;
  height: 170px;
  position: relative;
  background-color: #000;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    #promo-images-section .promo-link {
      height: 289px; } }
  #promo-images-section .promo-link .image-holder {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transition: 0.3s ease all; }
  #promo-images-section .promo-link:hover .image-holder {
    left: -5px;
    right: -5px;
    bottom: -5px;
    top: -5px; }
  #promo-images-section .promo-link:hover .button--border {
    background: #fff;
    color: #720021; }

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

#promo-images-section .promo-heading {
  color: #fff;
  margin-bottom: 32px; }

#promo-images-section .button--border {
  color: #fff;
  border-color: #fff; }

#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: #720021;
  padding: 20px 0;
  margin-bottom: 1px; }
  @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; } }
  #icon-row-section .icon-row .icon-single {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      #icon-row-section .icon-row .icon-single {
        margin-bottom: 25px; } }
    #icon-row-section .icon-row .icon-single h6, #icon-row-section .icon-row .icon-single .h6 {
      color: #ffffff;
      margin: 0; }
    #icon-row-section .icon-row .icon-single .icon {
      margin-bottom: 5px;
      display: inline-block; }
      @media only screen and (min-width: 768px) {
        #icon-row-section .icon-row .icon-single .icon {
          margin-bottom: 25px; } }
      #icon-row-section .icon-row .icon-single .icon svg {
        width: 75px;
        height: 49px;
        fill: #ffffff; }

#number-1-source-section {
  background-color: #3E0018;
  padding: 25px 0;
  margin-bottom: 0; }
  #number-1-source-section .number-1-content {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #number-1-source-section .number-1-content {
        display: table;
        margin: 0 auto; } }
    #number-1-source-section .number-1-content > div {
      font-size: 16px; }
      @media only screen and (min-width: 768px) {
        #number-1-source-section .number-1-content > div {
          display: table-cell;
          vertical-align: middle; } }
      #number-1-source-section .number-1-content > div.header-wrap {
        margin-bottom: 10px; }
        @media only screen and (min-width: 768px) {
          #number-1-source-section .number-1-content > div.header-wrap {
            border-right: 2px solid #fff;
            padding-right: 30px;
            margin-bottom: 0; } }
      @media only screen and (min-width: 768px) {
        #number-1-source-section .number-1-content > div.tagline-wrap {
          padding-left: 30px; } }
  #number-1-source-section h2, #number-1-source-section .h2 {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    margin-bottom: 0;
    display: inline-block;
    color: #fff; }
  #number-1-source-section p, #number-1-source-section .p {
    font-style: italic;
    color: #fff; }
    @media only screen and (min-width: 768px) {
      #number-1-source-section p, #number-1-source-section .p {
        margin-bottom: 0; } }

.wrapper-for-yotpo {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  padding: 0 10px;
  max-width: 1331.66667px; }
  @media only screen and (min-width: 480px) {
    .wrapper-for-yotpo {
      max-width: 1351.66667px;
      padding: 0 40px; } }
  @media only screen and (min-width: 1400px) {
    .wrapper-for-yotpo {
      max-width: 1429.66667px; } }

.yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper {
  padding-bottom: 70px; }
  @media only screen and (max-width: 767px) {
    .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .carousel-tool-tip .yotpo-tool-tip {
      width: 285px; } }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .headline {
    font-family: "Playfair Display", Georgia, Times, serif;
    color: #1E1E1E;
    font-weight: 400; }
    @media only screen and (max-width: 767px) {
      .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .headline {
        width: 40%; } }
    @media only screen and (min-width: 991px) {
      .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .headline {
        font-size: 26px;
        width: auto; } }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .carousel-reviews-bottom-line .yotpo-num-of-reviews {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: #1E1E1E; }
    @media only screen and (min-width: 768px) {
      .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .carousel-reviews-bottom-line .yotpo-num-of-reviews {
        font-size: 18px; } }
  @media only screen and (min-width: 768px) {
    .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-review-stars {
      position: relative;
      bottom: 6px; }
    .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-icon-star, .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-icon-empty-star, .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-icon-half-star {
      font-size: 26px !important; } }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-page-element.yotpo-icon {
    background-color: #720021;
    height: 38px;
    width: 26px !important;
    display: inline-block;
    position: relative;
    top: -20px; }
    .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-page-element.yotpo-icon::before {
      position: absolute;
      top: 65%;
      left: 70%;
      transform: translateX(-50%) translateY(-50%); }
    @media only screen and (min-width: 768px) {
      .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-page-element.yotpo-icon.yotpo-icon-left-arrow-thin.yotpo_previous {
        margin-right: 20px; } }
    .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-page-element.yotpo-icon.yotpo-icon-left-arrow-thin.yotpo_previous::before {
      content: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='m.09 7.33 6.63 6.67a1.32 1.32 0 0 0 .93.38 1.3 1.3 0 0 0 .91-2.23l-3.56-3.66h7.72a1.21 1.21 0 0 0 1.19-1.3 1.21 1.21 0 0 0 -1.19-1.3h-7.72l3.56-3.68a1.25 1.25 0 0 0 .44-.91 1.25 1.25 0 0 0 -.44-.92 1.29 1.29 0 0 0 -.95-.38 1.31 1.31 0 0 0 -.93.39l-6.63 6.61c-.05.16-.05.23.04.33z' fill='white' /%3E%3C/svg%3E"); }
    .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper #carousel-top-panel .yotpo-page-element.yotpo-icon.yotpo-icon-right-arrow-thin.yotpo_next::before {
      content: 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='m13.86 7.33-6.64 6.67a1.32 1.32 0 0 1 -.92.38 1.3 1.3 0 0 1 -.92-.38 1.29 1.29 0 0 1 0-1.85l3.53-3.66h-7.72a1.22 1.22 0 0 1 -1.19-1.3 1.22 1.22 0 0 1 1.19-1.3h7.72l-3.53-3.68a1.29 1.29 0 0 1 -.38-.91 1.29 1.29 0 0 1 .38-.92 1.26 1.26 0 0 1 .95-.38 1.29 1.29 0 0 1 .93.39l6.64 6.61c.1.16.1.23-.04.33z' fill='white' /%3E%3C/svg%3E"); }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .carousel-review-title {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #720021; }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .single-carousel .carousel-review-date {
    font-style: normal !important;
    font-size: 14px;
    opacity: 0.5; }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .single-carousel .carousel-review-body {
    font-style: normal !important;
    color: #1E1E1E; }
    .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .single-carousel .carousel-review-body .carousel-read-more {
      opacity: 0.5;
      color: #1E1E1E; }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .single-carousel .carousel-review-author {
    color: #720021;
    font-size: 16px;
    font-weight: 400; }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .carousel-stars {
    bottom: -4px; }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .yotpo-icon-star, .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .yotpo-icon-empty-star, .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .yotpo-carousel .yotpo-icon-half-star {
    font-size: 18px !important; }
  .yotpo-reviews-carousel .yotpo-display-wrapper.carousel-display-wrapper .header-blue.tool-tip-header-span {
    color: #720021; }

.yotpo-reviews-carousel .scroller {
  min-height: 220px; }

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

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1526px;
  padding: 0 40px;
  position: relative;
  width: 100%; }
  .wrapper.ten-columns {
    max-width: 1281.66667px; }
  .wrapper.eight-columns {
    max-width: 1037.33333px; }
  .wrapper.six-columns {
    max-width: 793px; }
  .wrapper.large-wrapper {
    max-width: 1680px; }
  @media only screen and (max-width: 767px) {
    .wrapper {
      padding: 0 20px; } }

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

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

.header .header-main {
  background-color: #ffffff;
  z-index: 100;
  position: relative; }
  .header .header-main .wrapper {
    position: static; }

.header .page-overlay {
  display: none;
  z-index: 99;
  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 {
  font-size: 0;
  margin: 0 auto;
  height: 80px;
  line-height: 80px;
  max-width: 250px; }
  @media only screen and (min-width: 991px) {
    .header-logo {
      margin: 0;
      padding: 0;
      height: 124px;
      line-height: 124px;
      max-width: 312px; } }
  .header-logo__link {
    color: #720021;
    display: inline-block;
    position: relative;
    text-decoration: none;
    width: 100%;
    z-index: 5; }
    @media only screen and (min-width: 768px) {
      .header-logo__link {
        background: none;
        border-bottom: 0;
        display: inline-block;
        padding: 0; } }
    .header-logo__link:hover, .header-logo__link:active {
      color: #000000; }

.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: uppercase;
  white-space: nowrap; }
  @media only screen and (min-width: 480px) {
    .header-logo-text {
      padding-bottom: 0;
      padding-top: 0; } }
  @media only screen and (min-width: 768px) {
    .header-logo-text {
      display: inline;
      font-size: 16px;
      margin-left: 0;
      margin-right: -9px;
      max-width: none;
      overflow: auto;
      white-space: normal; } }

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

.promo-bar {
  background-color: #3E0018;
  color: #ffffff; }
  .promo-bar .promo-text {
    letter-spacing: 0;
    padding: 0 5px;
    line-height: 30px; }
    @media only screen and (min-width: 991px) {
      .promo-bar .promo-text {
        padding: 0;
        line-height: 45px; } }

.menu-icon {
  color: #000; }
  .menu-icon .icon-hamburger {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    left: 28px;
    fill: currentColor;
    width: 25px;
    height: 25px; }

.mobileMenu-toggle {
  width: 124px;
  height: 124px;
  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: 124px;
    z-index: 0; }
  .navPages-container .wrapper {
    position: static; }

.navPages {
  font-size: 0;
  overflow: visible;
  text-align: right; }
  .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; }

.navPages-action {
  color: #ffffff;
  display: block;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  display: block; }
  .navPages-action.is-open,
  .has-hover:hover + .navPages-action {
    background-color: #ffffff; }
    .navPages-action.is-open svg,
    .has-hover:hover + .navPages-action svg {
      fill: #ffffff;
      stroke: #ffffff; }
  .navPages-action:hover, .navPages-action.activePage {
    color: #ffffff; }
    .navPages-action:hover svg, .navPages-action.activePage svg {
      fill: #ffffff;
      stroke: #ffffff; }
  .navPages-action svg {
    fill: #ffffff;
    stroke: #ffffff;
    transition: all 0.15s 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;
  position: absolute;
  text-align: left;
  top: 100%;
  min-width: 221px; }
  .navPage-subMenu .navPages-action-moreIcon {
    display: none; }
  .navPage-subMenu.is-open,
  .is-active .navPage-subMenu {
    display: block; }

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

.navPage-subMenu-horizontal.is-open, .navPage-subMenu-horizontal:hover,
.has-hover:hover .navPage-subMenu-horizontal {
  border-left: 1px solid #DEDEDE;
  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: 0 25px;
    line-height: 56px;
    color: #000000; }
    .navPage-item--dropdown .navPage-subMenu-item a:hover {
      background-color: #720021;
      color: #fff; }

.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 span::after {
  width: 25px;
  left: 28px; }

.navPages-list > .navPages-item .mega-right-column {
  position: relative; }
  .navPages-list > .navPages-item .mega-right-column::after {
    content: '';
    position: absolute;
    top: 0;
    height: 152px;
    border-right: 1px solid #720021;
    left: 0; }
  .navPages-list > .navPages-item .mega-right-column > ul {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px; }

.navPages-list > .navPages-item.navPage-item--mega {
  position: static; }
  .navPages-list > .navPages-item.navPage-item--mega.is-active > a {
    background-color: #3E0018; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    background-color: #3E0018;
    padding: 40px 0 22px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-item {
      margin-bottom: 18px; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPages-action:hover {
      text-decoration: underline; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard {
    -webkit-column-count: 3;
    column-count: 3; }
    .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: #ffffff; }
  .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 #ffffff;
        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 {
      color: #ffffff; }
      .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 #DEDEDE;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #f4f4f4;
    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;
  line-height: inherit;
  height: 65px;
  line-height: 65px;
  padding: 0 15px; }
  @media only screen and (min-width: 991px) {
    .navPages-list > .navPages-item > a {
      padding: 0 32px; } }
  .navPages-list > .navPages-item > a.active {
    background-color: #3E0018; }

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

.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 {
        left: auto !important;
        right: 0 !important;
        max-width: 100%;
        width: 400px;
        top: 98% !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: #720021;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
  height: 80px;
  line-height: 80px; }
  @media only screen and (min-width: 991px) {
    .navUser-action {
      height: 124px;
      line-height: 124px; } }
  .navUser-action:hover, .navUser-action.is-open {
    color: #3E0018; }
    .navUser-action:hover svg, .navUser-action.is-open svg {
      fill: #3E0018;
      stroke: #3E0018; }
  .navUser-action svg {
    fill: #720021;
    stroke-width: 0;
    transition: all 0.15s ease;
    display: inline-block;
    vertical-align: middle; }
  .navUser-action .dropdown-menu.is-open:before, .navUser-action .dropdown-menu.is-open:after {
    left: auto; }
  .navUser-action .dropdown-menu.is-open:before {
    right: 14px; }
  .navUser-action .dropdown-menu.is-open:after {
    right: 16px; }

.navUser-action--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 #DEDEDE;
  color: #737373;
  display: inline-block;
  padding: 0 20px 0 0;
  text-decoration: none; }

.navUser-item {
  display: inline-block;
  margin-right: 20px; }
  @media only screen and (min-width: 1400px) {
    .navUser-item {
      margin-right: 30px; } }
  .navUser-item:last-child {
    margin-right: 0; }
  .navUser-item.navUser-item--social {
    margin-top: 5px;
    padding-right: 5px; }
  .navUser-item.navUser-item--divider {
    font-size: 25px;
    margin-top: 8px;
    padding-left: 2px; }
  .navUser-item > a {
    display: block;
    position: relative; }

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

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

.navUser-item--cart .icon {
  width: 35px;
  height: 25px; }

@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: 500px;
      min-width: 500px; } }

.navUser-item-cartLabel {
  display: none; }
  @media only screen and (min-width: 480px) {
    .navUser-item-cartLabel {
      display: inline; } }

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

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

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

.navUser-or {
  color: #720021;
  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 {
  background-color: #fff;
  border: 1px solid #720021;
  border-radius: 50%;
  color: #720021;
  display: none;
  font-size: 10px;
  font-weight: 500;
  height: 19px;
  line-height: 19px;
  text-align: center;
  width: 19px;
  position: absolute;
  top: 34%;
  right: -2px; }

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

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

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

.header-elements-wrapper > div {
  margin-right: 15px; }
  @media only screen and (min-width: 991px) {
    .header-elements-wrapper > div {
      margin-right: 25px; } }
  @media only screen and (min-width: 1400px) {
    .header-elements-wrapper > div {
      margin-right: 50px; } }
  .header-elements-wrapper > div:last-child {
    margin-right: 0; }
  .header-elements-wrapper > div.search-wrapper {
    flex-grow: 1; }
    .header-elements-wrapper > div.search-wrapper .form {
      position: relative; }
      .header-elements-wrapper > div.search-wrapper .form .form-field {
        margin: 0; }
      .header-elements-wrapper > div.search-wrapper .form .form-input {
        width: 100%; }
    .header-elements-wrapper > div.search-wrapper button {
      position: absolute;
      right: 0;
      height: 100%;
      top: 0;
      padding: 0 20px;
      -webkit-appearance: none;
      -khtml-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      -o-appearance: none;
      appearance: none;
      border: 0 none;
      cursor: pointer; }
      .header-elements-wrapper > div.search-wrapper button .icon {
        font-size: 0;
        display: block;
        padding: 0;
        width: 21px;
        height: 21px; }

.header-elements-wrapper .info-nav {
  list-style: none;
  margin: 0; }
  .header-elements-wrapper .info-nav li {
    display: inline-block;
    font-size: 16px;
    margin-right: 15px; }
    @media only screen and (min-width: 991px) {
      .header-elements-wrapper .info-nav li {
        margin-right: 25px; } }
    @media only screen and (min-width: 1400px) {
      .header-elements-wrapper .info-nav li {
        margin-right: 50px; } }
    .header-elements-wrapper .info-nav li:last-child {
      margin-right: 0; }
    .header-elements-wrapper .info-nav li a {
      height: 124px;
      line-height: 124px;
      color: #1E1E1E; }
      .header-elements-wrapper .info-nav li a:hover {
        color: #720021; }

.navPages-bar {
  background-color: #720021; }
  .navPages-bar .navPages-list {
    display: flex;
    justify-content: space-between; }

.footer-title-sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.newsletter-row {
  background-color: #2C2C2C;
  padding: 30px 0;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .newsletter-row {
      text-align: left; } }
  .newsletter-row .newsletter-heading {
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .newsletter-row .newsletter-heading {
        margin-bottom: 0;
        font-size: 25px; } }
  .newsletter-row .newsletter-intro {
    color: #ffffff; }
    @media only screen and (min-width: 768px) {
      .newsletter-row .newsletter-intro {
        margin-bottom: 0; } }
  .newsletter-row .form-content-wrap {
    max-width: 440px;
    margin: 0 auto; }
    @media only screen and (min-width: 768px) {
      .newsletter-row .form-content-wrap {
        max-width: 626px;
        margin-right: 0; } }
  .newsletter-row .success_message {
    color: #fff; }

.footer-top {
  background-color: #1E1E1E;
  padding: 30px 0; }
  @media only screen and (min-width: 768px) {
    .footer-top {
      padding: 40px 0; } }

.footer-info-col {
  margin-bottom: 30px; }
  .footer-info-col.footer-info-col--social {
    margin: 0 auto;
    max-width: 295px; }
    .footer-info-col.footer-info-col--social .socialLinks-item .icon svg {
      fill: #fff; }
    .footer-info-col.footer-info-col--social .socialLinks-item .icon:hover svg {
      opacity: 0.5; }

.footer-info-heading {
  margin-bottom: 15px;
  color: #fff;
  text-decoration: underline; }

.footer-info-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 20px; }
  .footer-info-list li {
    margin-bottom: 12px; }
  .footer-info-list a {
    color: #ffffff;
    text-decoration: none; }
    .footer-info-list a:hover {
      color: #ffffff;
      text-decoration: underline; }

.footer-top-divider {
  margin: 0 0 30px;
  border: 0;
  border-bottom: 1px solid #979797; }

.footer-info-address-col .phone-number {
  margin-bottom: 8px; }

.footer-info-address-col * {
  color: #fff; }

.address-div {
  line-height: 2;
  margin-bottom: 15px; }
  .address-div a {
    white-space: nowrap; }

.footer-disclaimer {
  font-size: 14px;
  max-width: 263px;
  text-align: center;
  margin: 0 auto; }
  @media only screen and (min-width: 768px) {
    .footer-disclaimer {
      margin-left: 0; } }

.footer-info-row-divider {
  height: 158px;
  position: relative; }
  .footer-info-row-divider::after {
    content: '';
    border-left: 1px solid #979797;
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%; }

.footer-payment-icons {
  height: 40px;
  margin-top: 20px; }
  @media only screen and (min-width: 768px) {
    .footer-payment-icons {
      margin-top: 40px; } }
  .footer-payment-icons .footer-payment-icon {
    height: 100%;
    margin: 5px;
    vertical-align: middle;
    width: 50px; }
  .footer-payment-icons svg {
    fill: #720021; }

@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: 10px 0;
  background-color: #2C2C2C;
  color: #fff;
  font-size: 14px; }
  @media only screen and (min-width: 768px) {
    .footer-bottom {
      padding: 0;
      line-height: 36px; } }
  .footer-bottom p, .footer-bottom .p {
    margin: 0; }
  .footer-bottom p, .footer-bottom .p, .footer-bottom a {
    line-height: inherit;
    color: inherit; }

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

.newsletter-form-wrapper .form .field_group {
  width: 100%; }
  @media only screen and (max-width: 479px) {
    .newsletter-form-wrapper .form .field_group {
      margin-bottom: 14px; } }
  .newsletter-form-wrapper .form .field_group input {
    width: 100%; }

.newsletter-form-wrapper .form .button {
  border-color: #fff;
  color: #fff; }
  @media only screen and (max-width: 479px) {
    .newsletter-form-wrapper .form .button {
      display: block;
      width: 100%; } }

.banner-blog {
  margin-bottom: 50px; }
  @media only screen and (min-width: 768px) {
    .banner-blog {
      margin-bottom: 100px; } }
  @media only screen and (min-width: 768px) {
    .banner-blog .banner-content {
      padding-top: 36px; } }
  .banner-blog h1, .banner-blog .h1, .banner-blog h2, .banner-blog .h2 {
    color: #fff; }
  .banner-blog h1, .banner-blog .h1 {
    margin-bottom: 10px; }
  .banner-blog h2, .banner-blog .h2 {
    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(180 / 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: #000000; }
  .grid__item:nth-last-of-type(-n + 2) .blog-post {
    margin-bottom: 40px; }

.blog-meta {
  color: #737373;
  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: #720021;
  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;
  margin-bottom: 35px; }
  @media only screen and (min-width: 768px) {
    .blog-single .social-share-wrap {
      margin-bottom: 73px; } }

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

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

/************ Blog Sidebar **********/
.blog-sidebar-inner {
  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 {
      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: #737373; }
          .blog-sidebar-inner .blog-block .blog-sidebar-list li a:hover {
            color: #000000; }

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

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

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

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

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

.listItem-image {
  width: 100%; }

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

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

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

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

.listItem-brand {
  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;
  padding: 3px; }

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

.form-option-expanded {
  background-color: #ffffff;
  border: 1px solid #DEDEDE;
  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 {
  padding: 26px 14px 40px;
  background-color: #f4f4f4; }
  @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 {
    margin-bottom: 15px; }
  .contact-info .address-wrap .phone-number {
    margin-bottom: 8px; }
  .contact-info .address-wrap address {
    line-height: 2.2; }

.reviews-heading {
  margin-bottom: 10px; }

@media screen and (min-width: 1101px) {
  .review-page-yotpo #yotpo-testimonials-custom-tab .testimonials .yotpo-reviews.yotpo-active {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap; } }

@media screen and (min-width: 1101px) {
  .review-page-yotpo #yotpo-testimonials-custom-tab .testimonials .yotpo-reviews.yotpo-active .yotpo-regular-box {
    width: 48%; } }

.review-page-yotpo #yotpo-testimonials-custom-tab .testimonials .yotpo-reviews [role='navigation'] {
  width: 100%; }
