@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 0 0 -22px;
  padding: 0;
  margin-left: -22px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }

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

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

.grid--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .grid--flex::before, .grid--flex::after {
    content: none;
    display: none; }
  .grid--flex + .grid__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    max-width: 100%;
    width: auto; }

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

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

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

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

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

.two-thirds {
  width: 66.66667%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

.grid--flex .auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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%; }
  /* 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 ================*/
@media only screen and (max-width: 479px) {
  /* Halves */
  .xsmall--push-one-half {
    left: 50%; }
  /* Thirds */
  .xsmall--push-one-third {
    left: 33.33333%; }
  .xsmall--push-two-thirds {
    left: 66.66667%; }
  /* Quarters */
  .xsmall--push-one-quarter {
    left: 25%; }
  .xsmall--push-two-quarters {
    left: 50%; }
  .xsmall--push-three-quarters {
    left: 75%; }
  /* Fifths */
  .xsmall--push-one-fifth {
    left: 20%; }
  .xsmall--push-two-fifths {
    left: 40%; }
  .xsmall--push-three-fifths {
    left: 60%; }
  .xsmall--push-four-fifths {
    left: 80%; }
  /* Sixths */
  .xsmall--push-one-sixth {
    left: 16.66667%; }
  .xsmall--push-two-sixths {
    left: 33.33333%; }
  .xsmall--push-three-sixths {
    left: 50%; }
  .xsmall--push-four-sixths {
    left: 66.66667%; }
  .xsmall--push-five-sixths {
    left: 83.33333%; }
  /* Eighths */
  .xsmall--push-one-eighth {
    left: 12.5%; }
  .xsmall--push-two-eighths {
    left: 25%; }
  .xsmall--push-three-eighths {
    left: 37.5%; }
  .xsmall--push-four-eighths {
    left: 50%; }
  .xsmall--push-five-eighths {
    left: 62.5%; }
  .xsmall--push-six-eighths {
    left: 75%; }
  .xsmall--push-seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .xsmall--push-one-tenth {
    left: 10%; }
  .xsmall--push-two-tenths {
    left: 20%; }
  .xsmall--push-three-tenths {
    left: 30%; }
  .xsmall--push-four-tenths {
    left: 40%; }
  .xsmall--push-five-tenths {
    left: 50%; }
  .xsmall--push-six-tenths {
    left: 60%; }
  .xsmall--push-seven-tenths {
    left: 70%; }
  .xsmall--push-eight-tenths {
    left: 80%; }
  .xsmall--push-nine-tenths {
    left: 90%; }
  /* Twelfths */
  .xsmall--push-one-twelfth {
    left: 8.33333%; }
  .xsmall--push-two-twelfths {
    left: 16.66667%; }
  .xsmall--push-three-twelfths {
    left: 25%; }
  .xsmall--push-four-twelfths {
    left: 33.33333%; }
  .xsmall--push-five-twelfths {
    left: 41.66667%; }
  .xsmall--push-six-twelfths {
    left: 50%; }
  .xsmall--push-seven-twelfths {
    left: 58.33333%; }
  .xsmall--push-eight-twelfths {
    left: 66.66667%; }
  .xsmall--push-nine-twelfths {
    left: 75%; }
  .xsmall--push-ten-twelfths {
    left: 83.33333%; }
  .xsmall--push-eleven-twelfths {
    left: 91.66667%; }
  .grid--flex .xsmall--push-one-half {
    margin-left: 50%;
    left: auto; }
  .grid--flex .xsmall--push-one-third {
    margin-left: 33.33333%;
    left: auto; }
  .grid--flex .xsmall--push-two-thirds {
    margin-left: 66.66667%;
    left: auto; }
  .grid--flex .xsmall--push-one-quarter {
    margin-left: 25%;
    left: auto; }
  .grid--flex .xsmall--push-two-quarters {
    margin-left: 50%;
    left: auto; }
  .grid--flex .xsmall--push-three-quarters {
    margin-left: 75%;
    left: auto; }
  .grid--flex .xsmall--push-one-fifth {
    margin-left: 20%;
    left: auto; }
  .grid--flex .xsmall--push-two-fifths {
    margin-left: 40%;
    left: auto; }
  .grid--flex .xsmall--push-three-fifths {
    margin-left: 60%;
    left: auto; }
  .grid--flex .xsmall--push-four-fifths {
    margin-left: 80%;
    left: auto; }
  .grid--flex .xsmall--push-one-sixth {
    margin-left: 16.66667%;
    left: auto; }
  .grid--flex .xsmall--push-two-sixths {
    margin-left: 33.33333%;
    left: auto; }
  .grid--flex .xsmall--push-three-sixths {
    margin-left: 50%;
    left: auto; }
  .grid--flex .xsmall--push-four-sixths {
    margin-left: 66.66667%;
    left: auto; }
  .grid--flex .xsmall--push-five-sixths {
    margin-left: 83.33333%;
    left: auto; }
  .grid--flex .xsmall--push-one-eighth {
    margin-left: 12.5%;
    left: auto; }
  .grid--flex .xsmall--push-two-eighths {
    margin-left: 25%;
    left: auto; }
  .grid--flex .xsmall--push-three-eighths {
    margin-left: 37.5%;
    left: auto; }
  .grid--flex .xsmall--push-four-eighths {
    margin-left: 50%;
    left: auto; }
  .grid--flex .xsmall--push-five-eighths {
    margin-left: 62.5%;
    left: auto; }
  .grid--flex .xsmall--push-six-eighths {
    margin-left: 75%;
    left: auto; }
  .grid--flex .xsmall--push-seven-eighths {
    margin-left: 87.5%;
    left: auto; }
  .grid--flex .xsmall--push-one-tenth {
    margin-left: 10%;
    left: auto; }
  .grid--flex .xsmall--push-two-tenths {
    margin-left: 20%;
    left: auto; }
  .grid--flex .xsmall--push-three-tenths {
    margin-left: 30%;
    left: auto; }
  .grid--flex .xsmall--push-four-tenths {
    margin-left: 40%;
    left: auto; }
  .grid--flex .xsmall--push-five-tenths {
    margin-left: 50%;
    left: auto; }
  .grid--flex .xsmall--push-six-tenths {
    margin-left: 60%;
    left: auto; }
  .grid--flex .xsmall--push-seven-tenths {
    margin-left: 70%;
    left: auto; }
  .grid--flex .xsmall--push-eight-tenths {
    margin-left: 80%;
    left: auto; }
  .grid--flex .xsmall--push-nine-tenths {
    margin-left: 90%;
    left: auto; }
  .grid--flex .xsmall--push-one-twelfth {
    margin-left: 8.33333%;
    left: auto; }
  .grid--flex .xsmall--push-two-twelfths {
    margin-left: 16.66667%;
    left: auto; }
  .grid--flex .xsmall--push-three-twelfths {
    margin-left: 25%;
    left: auto; }
  .grid--flex .xsmall--push-four-twelfths {
    margin-left: 33.33333%;
    left: auto; }
  .grid--flex .xsmall--push-five-twelfths {
    margin-left: 41.66667%;
    left: auto; }
  .grid--flex .xsmall--push-six-twelfths {
    margin-left: 50%;
    left: auto; }
  .grid--flex .xsmall--push-seven-twelfths {
    margin-left: 58.33333%;
    left: auto; }
  .grid--flex .xsmall--push-eight-twelfths {
    margin-left: 66.66667%;
    left: auto; }
  .grid--flex .xsmall--push-nine-twelfths {
    margin-left: 75%;
    left: auto; }
  .grid--flex .xsmall--push-ten-twelfths {
    margin-left: 83.33333%;
    left: auto; }
  .grid--flex .xsmall--push-eleven-twelfths {
    margin-left: 91.66667%;
    left: auto; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fade-left {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px); }
  50% {
    opacity: .3; }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); } }

@keyframes fade-right {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px); }
  50% {
    opacity: .3; }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); } }

@keyframes fade-down {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px); }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); } }

@keyframes fade-up {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px); }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); } }

@keyframes fade {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(2px); }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px); } }

@keyframes rotate-left {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: rotate(15deg) translateY(-20px); }
  100% {
    opacity: 1;
    visibility: visible;
    transform: rotate(0) translateY(0); } }

@keyframes rotate-right {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: rotate(-15deg) translateY(-20px); }
  100% {
    opacity: 1;
    visibility: visible;
    transform: rotate(0) translateY(0); } }

@keyframes bobble-right {
  0% {
    transform: translate(0, 0); }
  50% {
    transform: translate(8px, 10px); }
  100% {
    transform: translate(0, 0); } }

@keyframes bobble-left {
  0% {
    transform: translate(0, 0); }
  50% {
    transform: translate(-8px, 10px); }
  100% {
    transform: translate(0, 0); } }

@keyframes slide-right {
  0% {
    transform: translateX(-100px); }
  100% {
    transform: translateX(0); } }

@keyframes slide-left {
  0% {
    transform: translateX(100px); }
  100% {
    transform: translateX(0); } }

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

@keyframes imageAppear {
  0% {
    transform: scale(0.7);
    opacity: 0.1; }
  100% {
    transform: scale(1);
    opacity: 1; } }

@keyframes hostspotAppear {
  0% {
    transform: translate(0, 80px);
    opacity: 0.1; }
  100% {
    transform: translate(0, 0px);
    opacity: 1; } }

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

@keyframes masonryShow {
  0% {
    transform: translateZ(300px) translateY(200px) rotateX(-70deg);
    opacity: 0.1; }
  100% {
    transform: translateZ(0px) translateY(0px) rotateX(0deg);
    opacity: 1; } }

@keyframes fadeMoveDown {
  0% {
    transform: translate(0, -20px);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: translate(0, 20px);
    opacity: 0; } }

@keyframes slideDown {
  0% {
    height: 0%; }
  100% {
    height: 100%; } }

@keyframes expand {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }

@keyframes leftToRight {
  0% {
    transform: translate(-2.5%, 0);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes rightToLeft {
  0% {
    transform: translate(2.5%, 0);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes bottomToTop {
  0% {
    transform: translate(0, 2.5%);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes topToBottom {
  0% {
    transform: translate(0, -2.5%);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes leftToRightOpaque {
  0% {
    transform: translate(-2.5%, 0); }
  100% {
    transform: translate(0, 0); } }

@keyframes rightToLeftOpaque {
  0% {
    transform: translate(2.5%, 0); }
  100% {
    transform: translate(0, 0); } }

@keyframes bottomToTopOpaque {
  0% {
    transform: translate(0, 2.5%); }
  100% {
    transform: translate(0, 0); } }

@keyframes topToBottomOpaque {
  0% {
    transform: translate(0, -2.5%); }
  100% {
    transform: translate(0, 0); } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

@keyframes rotateInSmall {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -15deg);
    opacity: 0; }
  100% {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -22deg);
    opacity: 0; }
  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

@keyframes bgMove {
  0% {
    background-position: -31px 0; }
  100% {
    background-position: 0 0; } }

@keyframes captionRight {
  0% {
    transform: translate(2000px, 0);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes captionLeft {
  0% {
    transform: translate(-2000px, 0);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes captionTop {
  0% {
    transform: translate(0, -20px);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes captionBottom {
  0% {
    transform: translate(0, 20px);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 0.7; }
  100% {
    transform: scale(1);
    opacity: 0.0; } }

@keyframes sonarEffect {
  0% {
    opacity: 0.3; }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.5);
    opacity: 0; } }

.animated_image,
.animate-into-view {
  opacity: 0; }

.top-to-bottom-opaque {
  transform: translate(0, -2.5%);
  opacity: 1; }

.bottom-to-top-opaque {
  transform: translate(0, 2.5%);
  opacity: 1; }

.left-to-right-opaque {
  transform: translate(-2.5%, 0);
  opacity: 1; }

.right-to-left-opaque {
  transform: translate(2.5%, 0);
  opacity: 1; }

.start_delayed_animation.fade-in {
  animation: fadeIn 1.2s 1 ease-out;
  opacity: 1; }

.start_delayed_animation.pop-up {
  animation: imageAppear 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1; }

.start_delayed_animation.top-to-bottom {
  animation: topToBottom 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1; }

.start_delayed_animation.bottom-to-top {
  animation: bottomToTop 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1; }

.start_delayed_animation.left-to-right {
  animation: leftToRight 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1; }

.start_delayed_animation.right-to-left {
  animation: rightToLeft 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1; }

.start_delayed_animation.top-to-bottom-opaque {
  animation: topToBottomOpaque 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translate(0, 0);
  opacity: 1; }

.start_delayed_animation.bottom-to-top-opaque {
  animation: bottomToTopOpaque 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translate(0, 0);
  opacity: 1; }

.start_delayed_animation.left-to-right-opaque {
  animation: leftToRightOpaque 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translate(0, 0);
  opacity: 1; }

.start_delayed_animation.right-to-left-opaque {
  animation: rightToLeftOpaque 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translate(0, 0);
  opacity: 1; }

.start_delayed_animation.rotate-in {
  animation: rotateIn 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1; }
  .start_delayed_animation.rotate-in.small {
    animation-name: rotateInSmall; }

.start_delayed_animation.rotate-in-up-left {
  animation: rotateInUpLeft 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1; }

.start_delayed_animation.rotate-in-up-right {
  animation: rotateInUpRight 1.2s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1; }

.start_delayed_animation.ease {
  animation-timing-function: ease !important; }

.start_delayed_animation.linear {
  animation-timing-function: linear !important; }

.start_delayed_animation.slow {
  animation-duration: 2.4s !important; }

.start_delayed_animation.delayed_animation_complete.bobble-right {
  animation: bobble-right 6s infinite ease; }

.start_delayed_animation.delayed_animation_complete.bobble-left {
  animation: bobble-left 6s infinite ease; }

.animateUp {
  animation: fade-up 1.2s ease-in; }

.animateDown {
  animation: fade-down 1.2s ease-in; }

.animateRight {
  animation: fade-right 1.2s ease-in; }

.animateLeft {
  animation: fade-left 1.2s ease-in; }

.slideRight {
  animation: slide-right 1.2s ease-in-out; }

.slideLeft {
  animation: slide-left 1.2s ease-in-out; }

.rotateRight {
  animation: rotate-right 1.2s ease-in; }

.rotateLeft {
  animation: rotate-left 1.2s ease-in; }

.animateUp-mobileDown {
  animation: fade-down 1.2s ease-in; }
  @media only screen and (min-width: 991px) {
    .animateUp-mobileDown {
      animation: fade-up 1.2s ease-in; } }

.animateDown-mobileUp {
  animation: fade-up 1.2s ease-in; }
  @media only screen and (min-width: 991px) {
    .animateDown-mobileUp {
      animation: fade-down 1.2s ease-in; } }

.animateLeft-mobileDown {
  animation: fade-down 1.2s ease-in; }
  @media only screen and (min-width: 991px) {
    .animateLeft-mobileDown {
      animation: fade-left 1.2s ease-in; } }

.animateRight-mobileDown {
  animation: fade-down 1.2s ease-in; }
  @media only screen and (min-width: 991px) {
    .animateRight-mobileDown {
      animation: fade-right 1.2s ease-in; } }

.animateFade {
  animation: fade-down 1.2s ease-in; }
  @media only screen and (min-width: 991px) {
    .animateFade {
      animation: fade 1.2s ease-in; } }

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

.form-input, .form-select {
  height: 56px;
  color: #414042;
  letter-spacing: normal;
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 500;
  padding: 0 12px;
  background-color: #ffffff;
  border-color: #D3D3D3;
  border-style: solid;
  border-width: 1px;
  border-radius: 0px;
  font-size: 16px; }
  .form-input.placeholder, .form-select.placeholder {
    color: #414042; }
  .form-input:-moz-placeholder, .form-select:-moz-placeholder {
    color: #414042; }
  .form-input::-moz-placeholder, .form-select::-moz-placeholder {
    color: #414042; }
  .form-input:-ms-input-placeholder, .form-select:-ms-input-placeholder {
    color: #414042; }
  .form-input::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
    color: #414042; }

.form-input:focus, .form-input:active {
  border-color: #6235B6;
  background-color: #ffffff; }

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

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M6 6.174l5.313-4.96.23-.214.457.427-.23.214-5.51 5.146L6.03 7 6 6.972 5.97 7l-.23-.214L.23 1.64 0 1.428.458 1l.23.214L6 6.174z' fill='rgba(117, 117, 117, 0.999)' /%3E%3C/svg%3E");
  background-position: right 4px top 22px;
  background-size: 28px 28px;
  border-radius: 0px;
  padding: 0 20px 0 12px;
  background-repeat: no-repeat; }

.form-label {
  font-weight: 400;
  margin-bottom: 4px;
  display: inline-block;
  width: 100%;
  position: relative;
  font-size: 14px; }
  .form-label .required-label {
    float: right;
    font-size: 12px;
    position: relative;
    top: 5px; }

label[for] {
  cursor: pointer; }

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

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

.form-inlineMessage {
  display: block; }

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

.form-field--error .form-inlineMessage {
  font-size: 14px;
  color: #E13023; }
  .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(225, 48, 35, 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(112, 142, 101, 0.999)' /%3E%3C/svg%3E");
  background-position: right 9px center;
  background-repeat: no-repeat;
  border-color: #708E65;
  padding-right: 40px; }

.form-field--success .form-select {
  border-color: #708E65; }

.form-checkbox,
.form-radio {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px; }
  .form-checkbox + .form-label:last-child,
  .form-radio + .form-label:last-child {
    display: block;
    margin-bottom: -4px; }
  .form-checkbox + .form-label::before,
  .form-radio + .form-label::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #D3D3D3;
    background: #ffffff;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 2px; }
  .form-checkbox:checked + .form-label::before,
  .form-radio:checked + .form-label::before {
    background: #7B4CD2; }

.form-actions {
  display: block;
  text-align: center; }
  .form-actions .button,
  .form-actions input,
  .form-actions a {
    vertical-align: top; }

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

.form-prefixPostfix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .form-prefixPostfix.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; } }
  .form-prefixPostfix .button {
    height: 40px;
    line-height: 38px; }
    @media only screen and (min-width: 991px) {
      .form-prefixPostfix .button {
        margin: 0;
        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: 100px; }
  .form-increment > div {
    display: table-cell;
    vertical-align: middle; }
    .form-increment > div.increment-input-wrap {
      width: 37px; }
      .form-increment > div.increment-input-wrap input {
        border: none; }
    .form-increment > div.increment-buttons-wrap {
      width: 36px; }
      .form-increment > div.increment-buttons-wrap.add {
        transform: rotate(180deg); }
      .form-increment > div.increment-buttons-wrap .button {
        margin: 0;
        padding: 0;
        display: block;
        height: 26px;
        line-height: 26px;
        width: 100%;
        border: 1px solid #7B4CD2;
        background: #eeeeee; }
        .form-increment > div.increment-buttons-wrap .button svg {
          height: 12px;
          width: 8px;
          fill: #7B4CD2;
          stroke-width: 10; }

.form-input--incrementTotal {
  border: 1px solid #7B4CD2;
  color: #414042;
  display: block;
  font-size: 18px;
  font-weight: 400;
  height: 26px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
  width: 100%; }

.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: row;
  margin-bottom: 20px; }
  @media only screen and (max-width: 990px) {
    .add-increment-flex {
      flex-direction: column;
      align-items: flex-start; } }
  .add-increment-flex .form-action {
    order: 2; }
  @media only screen and (max-width: 990px) {
    .add-increment-flex .form-field--increments,
    .add-increment-flex [data-product-option-change] {
      text-align: left; } }

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

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

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

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

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

.form-minMaxRow {
  *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: 54px; }
    .form-minMaxRow .form-field:last-child {
      width: 50%; }
  .form-minMaxRow .button {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%; }

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

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

[data-product-attribute] .form-option {
  overflow: hidden;
  position: relative; }
  [data-product-attribute] .form-option.unavailable {
    background-color: #eeeeee;
    opacity: .3; }
    [data-product-attribute] .form-option.unavailable:before {
      background-color: #414042;
      content: "";
      height: 2px;
      left: -5px;
      position: absolute;
      top: 11px;
      transform: rotate(-45deg);
      width: 141%; }

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

.form.display-flex {
  display: flex;
  width: 100%; }
  .form.display-flex .form-field, .form.display-flex .form-input, .form.display-flex .form-select {
    width: 100%;
    margin: 0;
    height: 54px;
    text-transform: lowercase; }
  .form.display-flex .form-field {
    width: auto; }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .form.display-flex .form-field {
        text-align: center; } }
  @media only screen and (min-width: 480px) {
    .form.display-flex [name="email"] {
      width: 465px;
      margin-right: 25px; } }

.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: #414042;
  cursor: auto;
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 16px;
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 500;
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: lowercase; }

a {
  transition: color 0.15s ease; }

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  color: #414042;
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-transform: lowercase; }

h1, .h1 {
  font-size: 50px; }
  @media only screen and (min-width: 768px) {
    h1, .h1 {
      font-size: 80px; } }

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

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

h4, .h4 {
  font-size: 24px; }

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

h6, .h6 {
  font-size: 16px; }

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

a {
  text-decoration: none;
  color: #414042; }
  a:hover {
    color: #414042; }
  a.button:hover {
    text-decoration: none !important; }

.body-main-text {
  font-weight: 500; }

.body-heavy-text {
  font-weight: 700; }

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

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

address {
  font-style: normal; }

.color-textSecondary {
  color: #7B4CD2; }

.color-secondary {
  color: #6235B6; }

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

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

.button {
  white-space: nowrap;
  padding: 0 45px;
  line-height: 54px;
  height: 54px;
  border: 0 none;
  letter-spacing: normal;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  color: #414042;
  background-color: #ffffff;
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-transform: lowercase; }
  .button svg {
    fill: currentColor; }
  .button .icon {
    width: 12px;
    height: 12px; }
  .button:hover {
    color: #ffffff;
    background-color: #6235B6; }
  .button[disabled] {
    cursor: not-allowed; }
  .button.button-disabled {
    background-color: #eae7e6;
    border: 1px solid #414042;
    color: #414042;
    max-width: 100%;
    width: 222px; }
    @media only screen and (max-width: 479px) {
      .button.button-disabled {
        padding: 0 10px;
        height: 44px;
        line-height: 44px;
        width: 135px; } }
  .button.rounded {
    border-radius: 30px; }
  .button.button--primary {
    color: #ffffff;
    background-color: #7B4CD2;
    border-radius: 30px; }
    .button.button--primary:hover {
      color: #ffffff;
      background-color: #6235B6; }
    .button.button--primary.button--small {
      height: 46px;
      line-height: 46px;
      padding: 0 15px; }
    .button.button--primary.multi-style {
      background-color: #7B4CD2; }
      .button.button--primary.multi-style:hover {
        background-color: #6235B6 !important; }
    .button.button--primary.aluminum {
      border: 1px solid transparent;
      background: linear-gradient(to bottom, #665EC7, #ED2290, #F7941D, #32CBE8, #665EC7);
      color: #414042;
      font-size: 18px;
      font-weight: 500;
      position: relative;
      max-width: 222px;
      width: 100%;
      transition: none; }
      .button.button--primary.aluminum:before, .button.button--primary.aluminum:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 0;
        padding: 2px;
        border-radius: 30px; }
      .button.button--primary.aluminum:before {
        background: #ffffff; }
      .button.button--primary.aluminum:after {
        opacity: 0;
        background: linear-gradient(89.73deg, #7E57C6 34.8%, #6085C6 59.65%, #4DA1C6 86.09%, #31C9D5 103.78%);
        transition: opacity 0.3s ease;
        z-index: 1; }
      .button.button--primary.aluminum:hover {
        color: #ffffff;
        font-weight: 700; }
        .button.button--primary.aluminum:hover:after {
          opacity: 1; }
        .button.button--primary.aluminum:hover span {
          color: #ffffff; }
      .button.button--primary.aluminum span {
        position: relative;
        z-index: 2; }
  .button.button--secondary {
    color: #ffffff;
    background-color: #7B4CD2;
    line-height: 54px;
    height: 54px;
    border-radius: 30px; }
    .button.button--secondary:hover {
      color: #ffffff;
      background-color: #6235B6; }
  .button.set-width {
    padding: 0;
    width: 190px; }
  .button.button--white {
    color: #7B4CD2;
    background-color: #ffffff; }
    .button.button--white:hover {
      border-color: #ABABAB;
      background-color: #D0CCC8; }
    .button.button--white.button--previous {
      border: 1px solid #7B4CD2; }
  .button.button--grey {
    color: #7B4CD2;
    background-color: #eeeeee; }
  .button.button--border {
    background-color: #FFF;
    border: 1px solid #7B4CD2;
    color: #7B4CD2; }
    .button.button--border:hover {
      color: #ffffff;
      background-color: #6235B6;
      border-color: #6235B6; }
    .button.button--border.white {
      border-color: #ffffff;
      background-color: transparent;
      color: #ffffff; }
      .button.button--border.white:focus, .button.button--border.white:hover {
        background-color: rgba(255, 255, 255, 0.1); }
  .button.button--text {
    background-color: transparent;
    color: #7B4CD2; }
    .button.button--text:hover {
      color: #6235B6; }
  .button.dropdown-button {
    height: auto !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important; }
    .button.dropdown-button:hover {
      background: #414042; }
    .button.dropdown-button span, .button.dropdown-button p, .button.dropdown-button .p {
      color: #ffffff;
      text-transform: lowercase;
      text-align: left; }
  .button.button--large {
    height: 58px;
    line-height: 58px; }
  .button.button--tiny {
    height: 32px;
    line-height: 32px;
    padding: 0 10px; }
  .button.button--accent {
    background-color: #7E57C6; }
    .button.button--accent:hover {
      background-color: #412770; }

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

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

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

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

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

.off-canvas-wrap {
  background: #ffffff; }
  .ua-chrome .off-canvas-wrap {
    background: #ffffff; }
  .ua-chrome .off-canvas-wrap.Method_Aluminum-page-title, .ua-chrome .off-canvas-wrap.Method_For_Change-page-title {
    background: #F6F5F5; }

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

input[type="radio"]::after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: -1px;
  left: -1px;
  position: relative;
  background-color: #fff;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 1px solid #7B4CD2;
  cursor: pointer; }

input[type='radio']:checked::after {
  width: 14px;
  height: 14px;
  position: relative;
  background-color: #7B4CD2;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 3px solid white;
  box-shadow: 0 0 0 1px #7B4CD2; }

#MainContent .content-container {
  padding-top: 24px; }
  @media only screen and (max-width: 767px) {
    #MainContent .content-container {
      padding-top: 20px; } }
  #MainContent .content-container.category {
    padding-top: 0; }
  #MainContent .content-container.page-title-meet-aluminum, #MainContent .content-container.page-title-about {
    padding: 0; }
    #MainContent .content-container.page-title-meet-aluminum .page, #MainContent .content-container.page-title-about .page {
      padding-bottom: 0; }

.hidden {
  display: none !important; }

.empty-img {
  height: 1px;
  background: transparent; }
  .empty-img.small {
    height: 73.5px;
    width: 73.5px; }

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

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

#_evidon_banner ~ #_evidon_banner {
  display: none !important; }

/**
 * Loads a custom font family
 *
 * @param $name (required)
 * @param $font-weights
 * @param $font-styles
 * @param $has-own-directory
 * @param $font-suffix
 * @param $font-location
 * @param $font-handle
 * @param $font-file-sep
 */
@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"); }

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/AvenirLTPro-Heavy.woff2") format("woff2"), url("../fonts/AvenirLTPro-Heavy.woff") format("woff"); }

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/AvenirLTStd-Black.woff2") format("woff2"), url("../fonts/AvenirLTStd-Black.woff") format("woff"); }

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/AvenirLTStd-Medium.woff2") format("woff2"), url("../fonts/AvenirLTStd-Medium.woff") format("woff"); }

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/AvenirLTStd-Book.woff2") format("woff2"), url("../fonts/AvenirLTStd-Book.woff") format("woff"); }

body.swal2-shown {
  overflow-y: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 200ms ease;
  -moz-transition: -moz-transform 200ms ease;
  -ms-transition: -ms-transform 200ms ease;
  -o-transition: -o-transform 200ms ease;
  transition: transform 200ms ease; }
  .inner-wrap::after {
    content: '';
    display: table;
    clear: both; }

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

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

.menu-icon {
  color: #000; }
  .menu-icon .icon {
    width: 30px;
    height: 30px;
    vertical-align: middle; }

.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 200ms cubic-bezier(0.23, 1, 0.32, 1) 0s;
  width: 100%;
  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 200ms cubic-bezier(0.23, 1, 0.32, 1) 0s;
  width: 100%;
  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 200ms cubic-bezier(0.23, 1, 0.32, 1) 0s;
  width: 100%;
  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 200ms cubic-bezier(0.23, 1, 0.32, 1) 0s;
  width: 100%;
  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, .off-canvas-list-menu li span {
  color: #7B4CD2;
  display: block;
  padding: 15px 0;
  transition: background 300ms ease;
  text-transform: lowercase; }
  .off-canvas-list-menu li a:hover, .off-canvas-list-menu li a:focus, .off-canvas-list-menu li span:hover, .off-canvas-list-menu li span:focus {
    color: #7B4CD2;
    text-decoration: underline; }

.move-right > .inner-wrap {
  -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); }

.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(0, 0, 0, 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(0, 0, 0, 0.3); } }

.move-left > .inner-wrap {
  -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); }

.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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 0.3); } }

.no-csstransforms .left-off-canvas-menu {
  left: -100%; }

.no-csstransforms .right-off-canvas-menu {
  right: -100%; }

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

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

.no-csstransforms .move-left > .inner-wrap {
  right: 100%; }

.no-csstransforms .move-right > .inner-wrap {
  left: 100%; }

.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: 100%;
  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 200ms ease;
  -moz-transition: -moz-transform 200ms ease;
  -ms-transition: -ms-transform 200ms ease;
  -o-transition: -o-transform 200ms ease;
  transition: transform 200ms ease; }
  .left-submenu * {
    -webkit-backface-visibility: hidden; }
  .left-submenu .back > a {
    border-bottom: 1px solid #D3D3D3;
    border-top: none;
    color: #7B4CD2;
    font-weight: 700;
    margin: 0; }
    .left-submenu .back > a:hover {
      background: #ffffff;
      border-bottom: 1px solid #D3D3D3;
      border-top: none; }
  .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: 100%;
  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 200ms ease;
  -moz-transition: -moz-transform 200ms ease;
  -ms-transition: -ms-transform 200ms ease;
  -o-transition: -o-transform 200ms ease;
  transition: transform 200ms ease; }
  .right-submenu * {
    -webkit-backface-visibility: hidden; }
  .right-submenu .back > a {
    border-bottom: 1px solid #D3D3D3;
    border-top: none;
    color: #7B4CD2;
    font-weight: 700;
    margin: 0; }
    .right-submenu .back > a:hover {
      background: #ffffff;
      border-bottom: 1px solid #D3D3D3;
      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: 100%;
  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 200ms ease;
  -moz-transition: -moz-transform 200ms ease;
  -ms-transition: -ms-transform 200ms ease;
  -o-transition: -o-transform 200ms ease;
  transition: transform 200ms ease; }
  .top-submenu * {
    -webkit-backface-visibility: hidden; }
  .top-submenu .back > a {
    border-bottom: 1px solid #D3D3D3;
    border-top: none;
    color: #7B4CD2;
    font-weight: 700;
    margin: 0; }
    .top-submenu .back > a:hover {
      background: #ffffff;
      border-bottom: 1px solid #D3D3D3;
      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: 100%;
  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 200ms ease;
  -moz-transition: -moz-transform 200ms ease;
  -ms-transition: -ms-transform 200ms ease;
  -o-transition: -o-transform 200ms ease;
  transition: transform 200ms ease; }
  .bottom-submenu * {
    -webkit-backface-visibility: hidden; }
  .bottom-submenu .back > a {
    border-bottom: 1px solid #D3D3D3;
    border-top: none;
    color: #7B4CD2;
    font-weight: 700;
    margin: 0; }
    .bottom-submenu .back > a:hover {
      background: #ffffff;
      border-bottom: 1px solid #D3D3D3;
      border-top: none; }
  .bottom-submenu.move-top, .bottom-submenu.offcanvas-overlap-top, .bottom-submenu.offcanvas-overlap {
    -webkit-transform: translate3d(0, 0%, 0);
    -moz-transform: translate3d(0, 0%, 0);
    -ms-transform: translate(0, 0%);
    -o-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0); }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

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

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

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

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

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

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

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

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

.mfp-close {
  width: 20px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: 20px;
  top: 15px;
  text-decoration: none;
  text-align: center;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 20px;
  font-family: Arial, Baskerville, monospace;
  font-size: 40px; }
  @media only screen and (min-width: 768px) {
    .mfp-close {
      top: 32px;
      right: 32px; } }

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

.mfp-close-btn-in .mfp-close {
  color: #7B4CD2; }

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

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

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

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

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

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

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

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

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

.mfp-iframe-holder .mfp-close {
  top: -40px; }

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

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

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

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

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

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

.mfp-figure figure {
  margin: 0; }

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

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

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
    * Remove all paddings around the image on small screen
    */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

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

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

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

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

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

.white-popup {
  position: relative;
  background: #FFF;
  padding: 30px 20px 10px;
  width: auto;
  max-width: 1100px;
  margin: 20px auto;
  border-radius: 30px; }
  @media only screen and (min-width: 768px) {
    .white-popup {
      max-width: 700px;
      padding: 70px 20px 35px; } }

.custom-close-content {
  pointer-events: none; }

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

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

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

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

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

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

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

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 0.8; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.65; }
  .slick-prev:before,
  .slick-next:before {
    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    color: #7B4CD2;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

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

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

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

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

.slick-next,
.slick-prev {
  margin-top: -15px;
  padding: 10px;
  width: 44px;
  height: 44px;
  z-index: 2; }
  .slick-next:hover, .slick-next:focus,
  .slick-prev:hover,
  .slick-prev:focus {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%; }

.slick-next {
  right: -15px; }
  @media only screen and (min-width: 991px) {
    .slick-next {
      right: -30px; } }
  .slick-next:hover::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS40NTY3OSAxLjAwNzQ2MTQ3bDIxIDIwLjAyNDgyMTQzTDEuNTA4ODUgNDEuMDA3NDYxNSIgc3Ryb2tlPSIjOTg5ODk4IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+"); }

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

.slick-dots {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  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 #54565A;
      display: block;
      margin: 0;
      padding: 0;
      position: relative;
      text-align: center;
      width: 10px;
      height: 10px;
      background: #54565A;
      opacity: 0.65;
      border-radius: 50%; }
      .slick-dots li button::before {
        display: none; }
      .slick-dots li button:hover {
        background: #54565A;
        opacity: 0.8; }
    .slick-dots li button {
      display: block;
      transition: background 100ms ease-out; }
    .slick-dots li.slick-active button {
      opacity: 1; }

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

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

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

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

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

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

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

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

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

.form-wishlist {
  position: relative; }

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

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

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

.modal {
  border-radius: 4px;
  display: none;
  width: 900px;
  z-index: 1005;
  background-color: #fff;
  border: 0;
  box-shadow: none;
  position: fixed;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
  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--small {
  width: 700px; }

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

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

.modal-close {
  height: 32px;
  width: 32px;
  color: #7B4CD2;
  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: 20px;
  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;
  text-transform: lowercase; }
  .pagination-item .pagination-link {
    text-decoration: none;
    font-weight: 600; }
    .pagination-item .pagination-link svg {
      fill: #7B4CD2; }
  .pagination-item.pagination-item--page a {
    display: block;
    width: 25px;
    height: 25px;
    line-height: 26px; }
  .pagination-item.pagination-item--current {
    border: 1px solid #D3D3D3;
    border-radius: 5px; }
  .pagination-item.pagination-item--previous, .pagination-item.pagination-item--next {
    position: absolute;
    top: 0; }
    .pagination-item.pagination-item--previous .icon, .pagination-item.pagination-item--next .icon {
      height: 24px;
      width: 24px;
      position: relative;
      top: 7px; }
      .pagination-item.pagination-item--previous .icon > svg, .pagination-item.pagination-item--next .icon > svg {
        height: 24px;
        width: 24px; }
  .pagination-item.pagination-item--previous {
    left: 0; }
  .pagination-item.pagination-item--next {
    right: 0; }

.tabs {
  list-style: none;
  *zoom: 1;
  margin: 0;
  border-bottom: 1px solid #D3D3D3; }
  .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: #6235B6; }
  .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: #6235B6; }
    .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 {
    fill: #5F6064;
    height: 16px;
    width: 16px; }
  .accordion-navigation .accordion-navigation-actions {
    right: 6px;
    top: 12px;
    position: absolute; }
    @media only screen and (min-width: 768px) {
      .accordion-navigation .accordion-navigation-actions {
        right: 0;
        top: 50%;
        transform: translateY(-50%); } }

.accordion-nav-clear-holder {
  position: relative; }
  .accordion-nav-clear-holder .facetedSearch-clearLink {
    color: #7B4CD2;
    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-top: 35px; } }

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

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

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

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

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

.select-count {
  position: absolute;
  right: 65px;
  top: 50%;
  font-size: 14px;
  transform: translateY(-50%); }

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

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

.clearfix:after {
  clear: both; }

.hide {
  display: none; }

.invisible {
  visibility: hidden; }

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

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

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

select {
  width: 100%; }

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

.page-heading {
  font-weight: 500;
  margin-bottom: 10px;
  padding-top: 15px;
  text-align: left; }
  @media only screen and (min-width: 768px) {
    .page-heading {
      padding-top: 24px;
      margin-bottom: 15px; } }
  .page-heading.gc-heading {
    margin-bottom: 30px;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      .page-heading.gc-heading {
        font-size: 24px; } }

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

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

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

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

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

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

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

@media only screen and (max-width: 767px) {
  .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: auto;
      border: 0; } }

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

.blocker-container {
  position: relative; }

.cookieMessage {
  display: none;
  position: fixed;
  z-index: 9999;
  background: #5F7A86;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #D3D3D3; }
  .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: #eeeeee;
  stroke-miterlimit: 10; }

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

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

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

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

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

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

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

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

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

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

.alertBox {
  color: #4f4f4f; }

.alertBox-icon {
  float: left; }
  .alertBox-icon .icon {
    width: 25px;
    height: 25px; }
  .alertBox-icon svg {
    vertical-align: middle;
    margin-right: 5px; }

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

.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: #7B4CD2;
  color: #ffffff; }
  .banners p:last-child, .banners .p:last-child {
    margin-bottom: 0; }

.banner {
  color: #ffffff; }
  .banner p, .banner .p {
    line-height: inherit;
    margin-bottom: 0;
    color: 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;
  list-style-type: none; }
  .inlineList--labels > li {
    margin-left: 0; }
    @media only screen and (min-width: 768px) {
      .inlineList--labels > li {
        margin-bottom: 5px; } }
    .inlineList--labels > li .facetLabel {
      display: flex;
      align-items: center; }
      .inlineList--labels > li .facetLabel .icon {
        margin-left: 10px;
        height: 8px;
        width: 8px; }

.maintenanceNotice {
  background-color: #5F7A86;
  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: #ffffff;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
  color: #626568;
  float: left;
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  font-weight: 600;
  height: 46px;
  left: 0;
  position: fixed;
  text-decoration: none;
  top: 0;
  width: 100%;
  z-index: 10000; }

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

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

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

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

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

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

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

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

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

.breadcrumb {
  display: inline-block;
  float: none;
  font-size: 16px; }
  .breadcrumb.is-active > .breadcrumb-label {
    cursor: text; }

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

.sidebarBlock .accordion-title {
  margin-bottom: 23px; }

.sidebarBlock-heading {
  margin-bottom: 8px; }

.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:hover {
    background-color: #7B4CD2; }

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

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

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

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

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

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

.lazyloaded.opacity {
  opacity: 1; }

.paymentMethodList {
  list-style: none;
  margin-left: -spacing("half");
  margin-right: -spacing("half"); }
  .paymentMethodList .paymentMethod {
    margin-bottom: 25px; }
    .paymentMethodList .paymentMethod .panel {
      color: #5F7A86; }
  .paymentMethodList .panel-body {
    border: 1px solid #D3D3D3;
    border-radius: 3px;
    min-height: 225px;
    text-align: center;
    position: relative;
    background: #eeeeee; }
    .paymentMethodList .panel-body .paymentMethod-symbol {
      font-size: 50px; }
    .paymentMethodList .panel-body .paymentMethod-addNew {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .paymentMethodList .panel-body .paymentMethod-addNew .paymentMethod-title {
        font-size: 15px; }
    .paymentMethodList .panel-body .paymentMethod-card {
      padding: 21px;
      text-align: left;
      color: #7B4CD2;
      background: #ffffff; }
      .paymentMethodList .panel-body .paymentMethod-card .paymentMethod-brand {
        font-size: 14px;
        font-weight: 600; }
      .paymentMethodList .panel-body .paymentMethod-card .paymentMethod-expiry {
        font-size: 15px;
        margin-left: auto; }
    .paymentMethodList .panel-body .paymentMethod-icon {
      max-width: 42px; }
    .paymentMethodList .panel-body .paymentMethod-default {
      vertical-align: middle; }
      .paymentMethodList .panel-body .paymentMethod-default.icon {
        height: 18px;
        width: 18px;
        fill: #7B4CD2; }
  .paymentMethodList .expiry-default {
    float: right; }

@media only screen and (max-width: 767px) {
  [data-payment-method-form] .form-actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; } }

@media only screen and (max-width: 767px) {
  [data-payment-method-form] .form-actions .button {
    flex: 1;
    margin-bottom: 20px; } }

@media only screen and (min-width: 768px) {
  [data-payment-method-form] .form-actions .button:first-child {
    margin-right: 20px; } }

.paymentMethodForm .paymentMethodForm-inputs {
  width: 100%; }
  .paymentMethodForm .paymentMethodForm-inputs .form-input {
    width: 100%; }

@media only screen and (min-width: 480px) {
  .paymentMethodForm .paymentMethodForm-column {
    display: flex; }
    .paymentMethodForm .paymentMethodForm-column .paymentMethodForm-inputs:first-child {
      margin-right: 20px;
      width: 70%; }
      .paymentMethodForm .paymentMethodForm-column .paymentMethodForm-inputs:first-child .form-input {
        width: 100%; }
    .paymentMethodForm .paymentMethodForm-column .paymentMethodForm-inputs:last-child {
      width: 30%; }
      .paymentMethodForm .paymentMethodForm-column .paymentMethodForm-inputs:last-child .form-input {
        width: 100%; } }

.paymentMethodForm .paymentMethodForm-inputs {
  position: relative; }

.paymentMethodForm .paymentMethodForm-inputs-icon {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 5px;
  top: 40px;
  opacity: 0.4; }

.paymentMethod-details {
  padding: 21px;
  display: flex;
  text-align: left;
  margin: 0; }
  .paymentMethod-details .paymentMethod-label {
    font-size: 13px;
    width: 150px; }
    @media only screen and (max-width: 767px) {
      .paymentMethod-details .paymentMethod-label {
        text-align: left; } }
  .paymentMethod-details .paymentMethod-description {
    font-size: 13px;
    text-align: left;
    margin: 0; }

.paymentMethod-form {
  padding: 21px; }

.paymentMethodForm-heading {
  font-size: 22px; }

.paymentMethodForm-subheading {
  text-align: right; }

.paymentMethodForm-cards-icon {
  width: 34px; }

.paymentMethodForm-details {
  display: inline-block;
  margin-right: 40px; }
  .paymentMethodForm-details dt {
    margin-bottom: 10px; }
  .paymentMethodForm-details dd {
    margin: 0;
    font-weight: 700; }

.sitemap-heading {
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .sitemap-heading {
      margin-bottom: 60px; } }

.sitemap-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 85px; }
  .sitemap-list > li {
    margin-right: 20px; }
    @media only screen and (min-width: 768px) {
      .sitemap-list > li {
        margin-right: 52px; } }
    .sitemap-list > li:last-child {
      margin-right: 0; }
    .sitemap-list > li h2, .sitemap-list > li .h2 {
      font-weight: 500; }
  .sitemap-list ul {
    list-style: none;
    padding: 0; }
    .sitemap-list ul li {
      margin-bottom: 15px; }
      .sitemap-list ul li a {
        text-decoration: underline;
        font-weight: 500; }

.blend-fix {
  mix-blend-mode: multiply; }

.card {
  background-color: #ffffff;
  padding: 25px 34px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .card {
      max-width: 287px;
      margin: 0 auto 16px;
      padding: 0; } }
  @media only screen and (min-width: 768px) {
    .card {
      margin-bottom: 32px; } }
  @media only screen and (max-width: 1199px) {
    .card {
      padding: 15px 10px; } }
  .card:hover p, .card:hover .p {
    color: #6235B6; }
  .card:hover .card-figcaption {
    opacity: 1; }
  .card.category-card {
    padding: 25px 0 0; }
    @media only screen and (max-width: 1199px) {
      .card.category-card {
        padding: 15px 0 0; } }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .card.category-card {
        padding: 15px 0 0; } }
    @media only screen and (max-width: 479px) {
      .card.category-card {
        padding: 15px 0 0; } }
    .card.category-card .bv_averageRating_component_container .bv_text {
      display: none !important; }
  .card .card-img-container {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 100%;
    position: relative;
    display: block; }
    @media only screen and (min-width: 1200px) {
      .card .card-img-container {
        padding-left: 5px;
        padding-right: 5px; } }
    .card .card-img-container .card-image {
      transform: translate(-50%, -50%);
      left: 50%;
      position: absolute;
      top: 50%;
      width: 100%;
      max-width: 100%;
      max-height: 100%; }
  .card .card-link {
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    bottom: 2px;
    z-index: 5; }
  .card .product-tag {
    position: absolute;
    height: 32px;
    line-height: 32px;
    min-width: 85px;
    font-weight: 500;
    padding: 0 10px;
    text-align: center;
    top: 8px;
    left: 8px; }
  @media (max-width: 450px) {
    .card [data-bv-show] a {
      max-width: 90% !important; }
      .card [data-bv-show] a .bv_stars_component_container {
        max-width: 50px !important; }
      .card [data-bv-show] a .bv_text {
        font-size: 12px !important; } }
  @media (min-width: 451px) and (max-width: 850px) {
    .card [data-bv-show] a .bv_stars_component_container {
      max-width: 80px !important; } }
  .card .card-form {
    width: 100%;
    bottom: 38px;
    z-index: 99; }
    @media only screen and (max-width: 767px) {
      .card .card-form {
        bottom: 0; } }
    .card .card-form .card-figcaption-button {
      z-index: 100;
      width: 222px;
      max-width: 100%; }
  .card.productCard:hover .card-addtocart,
  .card.productCard:hover .button-disabled {
    display: block; }
  .card.productCard .card-addtocart,
  .card.productCard .button-disabled {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; }
    @media only screen and (max-width: 767px) {
      .card.productCard .card-addtocart,
      .card.productCard .button-disabled {
        display: block;
        padding: 0 10px; } }

.product-tag {
  background-color: #465DD9;
  border-radius: 8px;
  z-index: 5;
  padding: 4px 20px; }
  @media only screen and (max-width: 767px) {
    .product-tag {
      padding: 4px 5px; } }
  .product-tag > span {
    color: #ffffff;
    font-size: 16px; }

.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: #7B4CD2;
    color: #fff; }

.card-figcaption {
  opacity: 0;
  position: absolute;
  top: 40%;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  margin: 0;
  z-index: 6; }

.card-figure {
  padding-top: 10px;
  margin: 0 0 10px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .card-figure {
      position: relative; } }
  .card-figure .card-figcaption {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
    z-index: 6; }
  .card-figure::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0;
    transition: 0.3s ease all;
    content: '';
    pointer-events: none;
    z-index: 2; }
  .card-figure:hover .card-figcaption {
    opacity: 1; }

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

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

.card-figcaption-body {
  display: inline-block;
  pointer-events: all;
  width: 100%;
  text-align: center; }
  .card-figcaption-body .button {
    background-color: #54555A;
    padding: 0;
    width: 80%;
    max-width: 175px; }
    .card-figcaption-body .button:focus, .card-figcaption-body .button:hover {
      background-color: #414042; }

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

.card-title {
  color: #7B4CD2;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0; }
  .card-title > a {
    text-decoration: none;
    color: inherit; }

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

.card-action {
  overflow: hidden; }

@media only screen and (max-width: 479px) {
  .card-figcaption-button {
    padding: 0 10px;
    height: 44px;
    line-height: 44px; } }

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

.card-body {
  min-height: 97px; }
  @media only screen and (min-width: 768px) {
    .card-body {
      min-height: 125px; } }

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

.productCarousel {
  margin-left: -22px; }
  .productCarousel .productCarousel-slide {
    padding-left: 22px; }
  .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 {
  width: 344px; }
  .productCarousel-slide .card {
    margin-bottom: 0; }
    .productCarousel-slide .card .card-title {
      overflow-wrap: break-word;
      margin: 0; }
    @media only screen and (max-width: 767px) {
      .productCarousel-slide .card .card-form {
        bottom: 10px; } }

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

.product.featured .card-figcaption {
  display: none; }

.productGrid.related .card-figure {
  margin: 0; }

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .productGrid.related .card-title {
    min-height: 72px; } }

.product {
  position: relative; }

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

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

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

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

.navList-action--checkbox {
  display: inline-block;
  padding-left: 25px;
  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: -10px;
    border-radius: 0;
    border: 1px solid #414042;
    width: 20px;
    height: 20px; }
  .navList-action--checkbox:after {
    height: 18px;
    left: 1px;
    opacity: 0;
    width: 18px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='rgba(79, 79, 79, 0.999)' /%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    color: rgba(79, 79, 79, 0.999);
    content: "";
    font-size: 18px;
    line-height: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%); }
  .navList-action--checkbox.is-checked::after, .navList-action--checkbox.is-selected::after {
    opacity: 1; }

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

.navBar--sub {
  text-align: center;
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .navBar--sub {
      margin-bottom: 50px; } }
  .navBar--sub.gc-nav {
    text-align: left;
    margin-bottom: 25px; }
    @media only screen and (max-width: 767px) {
      .navBar--sub.gc-nav .navBar-item {
        display: table;
        margin: 0 0 10px; } }
    .navBar--sub.gc-nav .navBar-item.is-active {
      text-decoration: underline;
      border: none; }
      @media only screen and (max-width: 767px) {
        .navBar--sub.gc-nav .navBar-item.is-active {
          margin: 0 0 10px !important; } }
    .navBar--sub.gc-nav .navBar-item.is-active,
    .navBar--sub.gc-nav .navBar-item .navBar-action {
      font-size: 16px; }
  .navBar--sub .navBar-section {
    float: none;
    margin: 0;
    list-style: none; }
    .navBar--sub .navBar-section.giftcard-navigation .navBar-action:hover {
      text-decoration: underline;
      color: #7B4CD2; }
  .navBar--sub .navBar-item {
    float: none;
    margin: 0 12px;
    color: #757575;
    line-height: 1; }
    .navBar--sub .navBar-item:first-child {
      margin-left: 0; }
    @media only screen and (min-width: 768px) {
      .navBar--sub .navBar-item {
        display: inline-block; } }
    .navBar--sub .navBar-item.is-active {
      border-bottom: 1px solid #7B4CD2;
      margin: 0 12px; }
      .navBar--sub .navBar-item.is-active:first-child {
        margin-left: 0; }
      .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 #7B4CD2;
        margin: 0;
        padding-left: 10px; } }
  .navBar--sub .navBar-action {
    padding: 0;
    display: block; }
    .navBar--sub .navBar-action:hover {
      color: #7B4CD2; }
  .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: 0;
      margin: 0 12px;
      display: block; }
      .navBar--sub.navBar--left .navBar-item:last-child {
        border-bottom: none; }

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

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

a.close {
  text-align: left;
  margin-left: 10px;
  padding: 7px 5px; }
  a.close svg {
    height: 30px;
    width: 30px; }

.left-off-canvas-menu,
.right-off-canvas-menu {
  background-color: #ffffff;
  position: fixed;
  top: 0; }
  .left-off-canvas-menu a.close,
  .right-off-canvas-menu a.close {
    right: 10px;
    text-align: right; }
    .left-off-canvas-menu a.close svg,
    .right-off-canvas-menu a.close svg {
      fill: #414042;
      vertical-align: middle; }

.left-off-canvas-menu {
  width: 95%;
  max-width: 360px;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
  display: none; }
  .offcanvas-overlap-right .left-off-canvas-menu {
    display: block; }
  .left-off-canvas-menu .close-button {
    position: absolute;
    top: 42px;
    right: 18px; }
    .left-off-canvas-menu .close-button svg {
      position: relative !important;
      z-index: 99;
      right: 0; }
      .left-off-canvas-menu .close-button svg.icon {
        height: 15px;
        width: 15px; }

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

.left-submenu,
.right-submenu {
  position: fixed;
  list-style: none;
  width: 95%;
  max-width: 330px; }
  .left-submenu .back > a,
  .right-submenu .back > a {
    font-size: 30px;
    color: #000; }
    .left-submenu .back > a:hover,
    .right-submenu .back > a:hover {
      color: #fff; }
  .left-submenu .has-submenu:nth-last-child(2) li:last-child,
  .right-submenu .has-submenu:nth-last-child(2) li:last-child {
    border: none; }
  .left-submenu .mobile-submenu-link:hover,
  .right-submenu .mobile-submenu-link:hover {
    text-decoration: none; }
  .left-submenu .mobile-submenu-link .mens-label,
  .right-submenu .mobile-submenu-link .mens-label {
    color: #5F7A86; }
  .left-submenu .mobile-submenu-link .body-label,
  .right-submenu .mobile-submenu-link .body-label {
    color: #585C89; }
  .left-submenu .mobile-submenu-link .aluminum-label,
  .right-submenu .mobile-submenu-link .aluminum-label {
    color: #7B4CD2; }
  .left-submenu .offcanvas-title .close-button,
  .right-submenu .offcanvas-title .close-button {
    right: 0; }

.off-canvas-list {
  position: relative;
  font-size: 16px;
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .off-canvas-list #category-navList .navList-items {
    font-size: 16px; }
    .off-canvas-list #category-navList .navList-items.navList-item-current {
      background-color: #ffffff; }
  .off-canvas-list li.offcanvas-divider label {
    font-weight: 700; }
  .off-canvas-list li.loadingOverlay {
    top: 35px; }
  .off-canvas-list.off-canvas-list-menu {
    padding: 0 15px; }
    .off-canvas-list.off-canvas-list-menu li.navPage-link-item {
      border-bottom: 1px solid #D3D3D3; }
      .off-canvas-list.off-canvas-list-menu li.navPage-link-item.last-link {
        border-bottom: none; }
    .off-canvas-list.off-canvas-list-menu li.menu-item-mega--image {
      background: #ffffff; }
      @media only screen and (max-width: 767px) {
        .off-canvas-list.off-canvas-list-menu li.menu-item-mega--image {
          border: none; } }
      .off-canvas-list.off-canvas-list-menu li.menu-item-mega--image:hover .image-link-text {
        color: #7B4CD2; }
      @media only screen and (max-width: 767px) {
        .off-canvas-list.off-canvas-list-menu li.menu-item-mega--image img {
          margin-bottom: 10px; } }
      @media only screen and (max-width: 767px) {
        .off-canvas-list.off-canvas-list-menu li.menu-item-mega--image .image-link-text {
          text-decoration: underline; } }
    .off-canvas-list.off-canvas-list-menu li.offcanvas-title {
      border: none;
      padding: 20px 0 15px; }
      .off-canvas-list.off-canvas-list-menu li.offcanvas-title:hover {
        text-decoration: none; }
      .off-canvas-list.off-canvas-list-menu li.offcanvas-title.back {
        position: relative; }
        .off-canvas-list.off-canvas-list-menu li.offcanvas-title.back .icon-mobile-left {
          height: 16px;
          right: auto;
          left: 0;
          top: 50%;
          transform: rotate(90deg);
          vertical-align: middle;
          width: 26px;
          z-index: 99; }
      .off-canvas-list.off-canvas-list-menu li.offcanvas-title .mobile-logo {
        margin: 0; }
        .off-canvas-list.off-canvas-list-menu li.offcanvas-title .mobile-logo a {
          padding: 8px 0; }
        .off-canvas-list.off-canvas-list-menu li.offcanvas-title .mobile-logo img {
          vertical-align: unset; }
      .off-canvas-list.off-canvas-list-menu li.offcanvas-title a {
        padding: 0;
        margin: 0;
        border: none;
        text-align: center; }
        .off-canvas-list.off-canvas-list-menu li.offcanvas-title a .mobile-cart {
          height: 35px;
          width: 35px; }
        .off-canvas-list.off-canvas-list-menu li.offcanvas-title a:active, .off-canvas-list.off-canvas-list-menu li.offcanvas-title a:hover {
          background: none; }
    .off-canvas-list.off-canvas-list-menu li.login {
      display: flex;
      padding: 10px 0; }
      .off-canvas-list.off-canvas-list-menu li.login a {
        padding: 0; }
      .off-canvas-list.off-canvas-list-menu li.login span {
        padding: 0 5px; }
        .off-canvas-list.off-canvas-list-menu li.login span:hover {
          text-decoration: none; }
    .off-canvas-list.off-canvas-list-menu li.mobile-menu-divider span:hover {
      text-decoration: none;
      color: inherit !important; }
    .off-canvas-list.off-canvas-list-menu li a, .off-canvas-list.off-canvas-list-menu li span {
      position: relative;
      color: #5F6064;
      font-weight: 500; }
      .off-canvas-list.off-canvas-list-menu li a .navList-action-arrow, .off-canvas-list.off-canvas-list-menu li span .navList-action-arrow {
        position: absolute;
        right: 20px; }
        .off-canvas-list.off-canvas-list-menu li a .navList-action-arrow .icon, .off-canvas-list.off-canvas-list-menu li span .navList-action-arrow .icon {
          height: 20px;
          width: 20px;
          fill: #838488; }
    .off-canvas-list.off-canvas-list-menu > li {
      border-bottom: 1px solid #D3D3D3; }
      .off-canvas-list.off-canvas-list-menu > li:hover > a, .off-canvas-list.off-canvas-list-menu > li:focus > a {
        color: #7B4CD2; }
    .off-canvas-list.off-canvas-list-menu .mobile-logo {
      text-align: center; }
      .off-canvas-list.off-canvas-list-menu .mobile-logo img {
        width: 150px; }

.off-canvas-list-menu li .offcanvasLabel, .sidebar-offcanvas li .offcanvasLabel, .off-canvas-list-cart li .offcanvasLabel {
  background: #fff;
  border-bottom: 1px solid #979797;
  color: #7B4CD2;
  display: block;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  padding: 15px 0;
  text-transform: lowercase;
  padding-bottom: 8px;
  text-align: center; }
  .off-canvas-list-menu li .offcanvasLabel:hover, .sidebar-offcanvas li .offcanvasLabel:hover, .off-canvas-list-cart li .offcanvasLabel:hover {
    text-decoration: none; }

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

.off-canvas-list-menu li.back > a {
  color: #5F6064; }
  .off-canvas-list-menu li.back > a::before {
    border-color: #fff;
    content: '' !important; }

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

.off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) {
  list-style: none;
  margin-left: 0; }
  .off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) > li:hover > a, .off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) > li:focus > a {
    color: #7B4CD2; }
    .off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) > li:hover > a span, .off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) > li:focus > a span {
      color: #7B4CD2; }
  .off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) > li.navPage-link-item span {
    padding: 0; }
  .off-canvas-list-menu li.has-submenu ul:not(.left-submenu):not(.right-submenu) > li > a:not(.heading-all) {
    padding-left: 10px; }
    .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; }

.off-canvas-list-menu li.auxiliary-links {
  border-bottom: none; }
  .off-canvas-list-menu li.auxiliary-links.first-link {
    margin-top: 30px; }
  .off-canvas-list-menu li.auxiliary-links a {
    padding: 10px 0; }

.off-canvas-list-menu li.has-submenu .offcanvas-overlap-right {
  padding: 0 15px; }
  .off-canvas-list-menu li.has-submenu .offcanvas-overlap-right .offcanvasLabel {
    border: none; }
  .off-canvas-list-menu li.has-submenu .offcanvas-overlap-right .close-button {
    bottom: 30px;
    top: auto; }

.off-canvas-list-menu li.has-submenu .child-linklist li {
  border-bottom: 1px solid #D3D3D3; }

.off-canvas-list-menu li.has-submenu svg {
  height: 26px;
  width: 26px;
  position: absolute;
  right: 0;
  vertical-align: middle; }

.offcanvas-search {
  border-bottom: 1px solid #979797;
  display: block;
  padding: 15px 0;
  position: relative;
  margin: 0;
  background-color: #E5E5E5; }
  .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;
        height: 48px; }
    .offcanvas-search .form button {
      position: absolute;
      right: 0;
      height: 100%;
      top: 0;
      padding: 0 15px;
      -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: 16px;
        height: 16px; }

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

.off-canvas-list-cart li.offcanvas-subtotal {
  text-align: right;
  padding: 15px 0;
  font-weight: 700;
  font-size: 20px;
  background-color: #5f7a86;
  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: 0; }

.off-canvas-list-cart li.offcanvasAction-continueShopping {
  clear: both;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0; }
  .off-canvas-list-cart li.offcanvasAction-continueShopping a {
    color: #7B4CD2; }
    .off-canvas-list-cart li.offcanvasAction-continueShopping a .icon {
      width: 20px;
      height: 20px;
      display: inline-block;
      vertical-align: middle;
      fill: #7B4CD2;
      position: relative;
      top: -2px; }
    .off-canvas-list-cart li.offcanvasAction-continueShopping a:hover {
      color: #6235B6; }
      .off-canvas-list-cart li.offcanvasAction-continueShopping a:hover .icon {
        fill: #6235B6; }

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

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

.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: #7B4CD2; }
  .offcanvasCartItem-content .offcanvasCartItem-price,
  .offcanvasCartItem-content .offcanvasCartItem-options {
    display: block;
    color: inherit; }
  .offcanvasCartItem-content .offcanvasCartItem-price {
    font-size: 100%;
    color: #5F7A86; }
  .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,
.sidebar-offcanvas .offcanvas-sort {
  border-bottom: 1px solid #979797; }
  .sidebar-offcanvas .accordion-block .navigation-link:hover,
  .sidebar-offcanvas .offcanvas-sort .navigation-link:hover {
    color: #5F6064; }
  .sidebar-offcanvas .accordion-block .accordion-title,
  .sidebar-offcanvas .offcanvas-sort .accordion-title {
    color: #414042;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding: 18px 0;
    display: block; }
  .sidebar-offcanvas .accordion-block .accordion-toggle-icon,
  .sidebar-offcanvas .offcanvas-sort .accordion-toggle-icon {
    position: absolute;
    height: 22px;
    top: 50%;
    right: 0;
    transform: translateY(-50%); }
  .sidebar-offcanvas .accordion-block .toggleLink.is-open .accordion-indicator,
  .sidebar-offcanvas .offcanvas-sort .toggleLink.is-open .accordion-indicator {
    transform: rotate(-180deg); }
  .sidebar-offcanvas .accordion-block .accordion-content,
  .sidebar-offcanvas .offcanvas-sort .accordion-content {
    padding: 0; }
    .sidebar-offcanvas .accordion-block .accordion-content #category-navList .navList-item-link,
    .sidebar-offcanvas .offcanvas-sort .accordion-content #category-navList .navList-item-link {
      height: 48px;
      line-height: 48px;
      display: block;
      padding: 0 18px; }
      .sidebar-offcanvas .accordion-block .accordion-content #category-navList .navList-item-link .category-radio,
      .sidebar-offcanvas .offcanvas-sort .accordion-content #category-navList .navList-item-link .category-radio {
        float: right; }
        .sidebar-offcanvas .accordion-block .accordion-content #category-navList .navList-item-link .category-radio:after,
        .sidebar-offcanvas .offcanvas-sort .accordion-content #category-navList .navList-item-link .category-radio:after {
          height: 22px;
          width: 22px; }
    .sidebar-offcanvas .accordion-block .accordion-content .navList,
    .sidebar-offcanvas .offcanvas-sort .accordion-content .navList {
      margin-bottom: 15px; }
  .sidebar-offcanvas .accordion-block .navList-item,
  .sidebar-offcanvas .offcanvas-sort .navList-item {
    font-size: 16px;
    margin: 0; }
  .sidebar-offcanvas .accordion-block .navList-action--checkbox,
  .sidebar-offcanvas .offcanvas-sort .navList-action--checkbox {
    display: block;
    padding: 7px 18px 7px 35px; }
    .sidebar-offcanvas .accordion-block .navList-action--checkbox::before,
    .sidebar-offcanvas .offcanvas-sort .navList-action--checkbox::before {
      right: auto;
      height: 20px;
      width: 20px; }
    .sidebar-offcanvas .accordion-block .navList-action--checkbox::after,
    .sidebar-offcanvas .offcanvas-sort .navList-action--checkbox::after {
      content: '';
      background-color: #7B4CD2;
      background-image: none;
      border: 2px solid white;
      box-shadow: 0 0 0 1px #7B4CD2;
      height: 17px;
      right: auto;
      top: 50%;
      transform: translateY(-50%);
      width: 18px; }
  .sidebar-offcanvas .accordion-block .form-select,
  .sidebar-offcanvas .offcanvas-sort .form-select {
    margin: 15px 0; }

.mobile-facet-footer {
  padding: 16px 18px;
  text-align: center;
  font-size: 0;
  display: flex;
  flex-direction: column-reverse; }
  .mobile-facet-footer .button {
    width: 100%;
    margin: 0;
    height: 48px;
    line-height: 48px; }
  .mobile-facet-footer button {
    background-color: #5f7a86 !important; }
  .mobile-facet-footer .button:last-child {
    margin-bottom: 10px; }

#facetedSearch-mobile {
  height: 100%; }
  #facetedSearch-mobile .icon.close {
    position: absolute;
    right: 17px;
    top: 17px;
    margin: 0;
    z-index: 9; }
  #facetedSearch-mobile .offcanvas-title,
  #facetedSearch-mobile .accordion-block,
  #facetedSearch-mobile .offcanvas-sort {
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 0.5px solid #979797; }
    #facetedSearch-mobile .offcanvas-title.offcanvas-title,
    #facetedSearch-mobile .accordion-block.offcanvas-title,
    #facetedSearch-mobile .offcanvas-sort.offcanvas-title {
      padding-top: 30px;
      padding-bottom: 30px; }
      #facetedSearch-mobile .offcanvas-title.offcanvas-title button,
      #facetedSearch-mobile .accordion-block.offcanvas-title button,
      #facetedSearch-mobile .offcanvas-sort.offcanvas-title button {
        width: 100%;
        border-color: #414042;
        color: #414042; }
        #facetedSearch-mobile .offcanvas-title.offcanvas-title button:hover,
        #facetedSearch-mobile .accordion-block.offcanvas-title button:hover,
        #facetedSearch-mobile .offcanvas-sort.offcanvas-title button:hover {
          background-color: #ffffff; }
  #facetedSearch-mobile .accordion-block:last-child {
    border: none; }
  #facetedSearch-mobile .offcanvas-title .header-close {
    margin-bottom: 25px; }
  #facetedSearch-mobile .offcanvas-title .filtered-by {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; }
    #facetedSearch-mobile .offcanvas-title .filtered-by .filtered-by-label {
      font-family: 'Avenir Black';
      font-size: 16px;
      margin-bottom: 0; }
    #facetedSearch-mobile .offcanvas-title .filtered-by .clear-all-link {
      text-decoration: underline;
      color: #5F7A86; }

.socialLinks {
  list-style: none;
  margin: 0;
  padding: 0; }
  .socialLinks .icon {
    height: 20px;
    width: 20px;
    margin: 0;
    overflow: hidden;
    text-decoration: none;
    text-align: left;
    color: #7B4CD2;
    display: block; }
    .socialLinks .icon:hover {
      color: #000; }
    .socialLinks .icon svg {
      fill: currentColor;
      transition: all 0.15s ease;
      height: 15px;
      width: 15px; }
      @media only screen and (max-width: 767px) {
        .socialLinks .icon svg {
          height: 30px;
          width: 30px; } }

.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; }
  @media only screen and (max-width: 767px) {
    .socialLinks--alt .icon {
      height: 35px;
      width: 35px; } }

.socialLinks--alt svg {
  fill: #7B4CD2; }

.socialLinks--flex {
  display: flex;
  justify-content: flex-start; }
  @media only screen and (max-width: 767px) {
    .socialLinks--flex {
      justify-content: center; } }
  .socialLinks--flex .socialLinks-item {
    margin: 0;
    margin-right: 20px; }
    @media only screen and (max-width: 767px) {
      .socialLinks--flex .socialLinks-item {
        margin-right: 24px; }
        .socialLinks--flex .socialLinks-item:last-child {
          margin-right: 0; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .socialLinks--flex .socialLinks-item {
        margin-right: 8px; }
        .socialLinks--flex .socialLinks-item:last-child {
          margin-right: 0; } }

@media only screen and (max-width: 767px) {
  .heroCarousel {
    background-color: #eeeeee;
    padding-bottom: 40px; } }

.heroCarousel.homepage-carousel {
  padding-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .heroCarousel.homepage-carousel {
      margin-bottom: 50px !important; } }
  .heroCarousel.homepage-carousel .slick-dots {
    bottom: -30px; }
    .heroCarousel.homepage-carousel .slick-dots li {
      margin-right: 20px; }
      @media only screen and (max-width: 767px) {
        .heroCarousel.homepage-carousel .slick-dots li {
          margin-right: 15px; } }
      .heroCarousel.homepage-carousel .slick-dots li.slick-active button {
        border-color: #7B4CD2;
        background: #7B4CD2; }
      .heroCarousel.homepage-carousel .slick-dots li button {
        opacity: 1;
        height: 10px;
        width: 10px; }
        @media only screen and (min-width: 768px) {
          .heroCarousel.homepage-carousel .slick-dots li button {
            height: 16px;
            width: 16px; } }

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

@media screen and (max-width: 1440px) {
  .heroCarousel.wrapper {
    padding: 0; } }

.heroCarousel.slick-initialized {
  opacity: 1; }
  @media only screen and (min-width: 768px) {
    .heroCarousel.slick-initialized {
      max-height: 1000px; } }

.heroCarousel .slick-next,
.heroCarousel .slick-prev {
  z-index: 2; }
  .heroCarousel .slick-next::before,
  .heroCarousel .slick-prev::before {
    display: none; }
  @media only screen and (min-width: 768px) {
    .heroCarousel .slick-next,
    .heroCarousel .slick-prev {
      top: 50%; } }
  .heroCarousel .slick-next:hover, .heroCarousel .slick-next:focus,
  .heroCarousel .slick-prev:hover,
  .heroCarousel .slick-prev:focus {
    background-color: rgba(84, 85, 90, 0.85) !important; }
  .heroCarousel .slick-next svg,
  .heroCarousel .slick-prev svg {
    fill: #ffffff; }

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

.heroCarousel .slick-prev {
  left: 15px; }
  @media only screen and (min-width: 768px) {
    .heroCarousel .slick-prev {
      left: 20px; } }
  .heroCarousel .slick-prev svg {
    height: 20px;
    width: 20px;
    transform: rotate(180deg); }

.heroCarousel .slick-dots {
  bottom: -30px; }
  @media only screen and (max-width: 767px) {
    .heroCarousel .slick-dots {
      bottom: 20px; } }
  .heroCarousel .slick-dots li {
    margin-right: 20px; }
    .heroCarousel .slick-dots li:last-child {
      margin-right: 0; }
    .heroCarousel .slick-dots li button {
      height: 10px;
      width: 10px; }

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

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

.heroCarousel-wrapper {
  position: relative;
  height: 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; }
  .heroCarousel-slide--custom.homepage-slide {
    background-size: cover;
    background-position: top; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom.homepage-slide {
        background-image: none !important; } }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom.homepage-slide.type-full {
        height: 675px; } }
    .heroCarousel-slide--custom.homepage-slide.type-full .banner-container {
      height: 100%; }
      .heroCarousel-slide--custom.homepage-slide.type-full .banner-container .banner-content {
        width: 100%;
        background: transparent; }
      .heroCarousel-slide--custom.homepage-slide.type-full .banner-container .heroCarousel-wrapper {
        height: 100%; }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom.homepage-slide .content-left {
        flex-direction: row-reverse; } }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom.homepage-slide .heroCarousel-content--custom {
        height: 100%;
        max-width: 60%;
        margin: 0 auto; } }
    .heroCarousel-slide--custom.homepage-slide .heroCarousel-content--custom .heroCarousel-title {
      font-weight: 500;
      text-transform: lowercase; }
      @media only screen and (max-width: 767px) {
        .heroCarousel-slide--custom.homepage-slide .heroCarousel-content--custom .heroCarousel-title {
          font-size: 30px;
          margin-bottom: 10px; } }
    .heroCarousel-slide--custom.homepage-slide .heroCarousel-content--custom .button {
      height: 48px;
      line-height: 48px;
      max-width: 100%;
      width: 350px; }
      @media only screen and (min-width: 768px) {
        .heroCarousel-slide--custom.homepage-slide .heroCarousel-content--custom .button {
          max-width: 100%;
          width: 221px; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom.content-right .heroCarousel-wrapper {
      margin-left: auto; } }
  .heroCarousel-slide--custom.content-right .banner-container:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 42.1%;
    z-index: 1; }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom.content-left .banner-container {
      flex-direction: row-reverse; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom.content-left .heroCarousel-wrapper {
      margin-right: auto; } }
  .heroCarousel-slide--custom .banner-container {
    display: flex !important; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .banner-container {
        flex-direction: column; } }
    @media only screen and (min-width: 768px) {
      .heroCarousel-slide--custom .banner-container .banner-image {
        height: 675px;
        width: 57.9%; } }
    .heroCarousel-slide--custom .banner-container .banner-content {
      padding: 30px 0;
      width: 100%; }
      @media only screen and (min-width: 768px) {
        .heroCarousel-slide--custom .banner-container .banner-content {
          background: transparent;
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0; } }
      @media only screen and (min-width: 768px) {
        .heroCarousel-slide--custom .banner-container .banner-content .heroCarousel-wrapper {
          width: 42.1%;
          height: 100%;
          position: relative;
          z-index: 9; } }
  .heroCarousel-slide--custom .background-image-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    .heroCarousel-slide--custom .background-image-container.mobile img {
      width: 100%; }
  .heroCarousel-slide--custom .wrapper {
    height: 100%; }
  @media only screen and (max-width: 990px) {
    .heroCarousel-slide--custom .heroCarousel-content--container {
      text-align: center; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom .heroCarousel-content--container {
      position: absolute;
      text-align: left;
      background-color: none;
      padding-top: 0;
      top: 50%;
      transform: translateY(-50%); } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom .heroCarousel-content--custom.desktop-align-left {
      text-align: left; }
    .heroCarousel-slide--custom .heroCarousel-content--custom.desktop-align-center {
      text-align: center; }
    .heroCarousel-slide--custom .heroCarousel-content--custom.desktop-align-right {
      text-align: right; } }
  .heroCarousel-slide--custom .heroCarousel-content--custom.text-position-center {
    text-align: center; }
  .heroCarousel-slide--custom .heroCarousel-content--custom.text-position-right {
    text-align: right; }
    @media only screen and (max-width: 990px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom.text-position-right {
        text-align: center; } }
  .heroCarousel-slide--custom .heroCarousel-content--custom.text-position-center {
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom.text-position-center {
        text-align: center; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom .heroCarousel-content--custom.position-right {
      right: 8%;
      top: 20%; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide--custom .heroCarousel-content--custom.position-center {
      left: 50%;
      transform: translateX(-50%); } }
  @media only screen and (min-width: 991px) {
    .heroCarousel-slide--custom .heroCarousel-content--custom.position-left {
      left: 10%; } }
  @media (min-width: 768px) and (max-width: 1199px) {
    .heroCarousel-slide--custom .heroCarousel-content--custom.position-left {
      left: 5%; } }
  .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-title {
    margin-bottom: 5px;
    font-family: "Avenir", "Clear Sans";
    text-transform: uppercase;
    line-height: 1; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-title {
        font-size: 24px; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-title {
        font-size: 40px;
        margin-bottom: 0; } }
  .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-description {
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-description {
        font-size: 16px;
        margin-bottom: 10px; } }
    @media only screen and (min-width: 991px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-description {
        font-size: 20px;
        margin-bottom: 25px; } }
  .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-action {
    font-size: 18px;
    min-width: 170px;
    height: 48px;
    line-height: 46px; }
    @media only screen and (min-width: 991px) {
      .heroCarousel-slide--custom .heroCarousel-content--custom .heroCarousel-action {
        height: 72px;
        line-height: 70px;
        font-size: 24px; } }

.heroCarousel-slide-men--custom {
  position: relative; }
  .heroCarousel-slide-men--custom .banner-container {
    display: flex !important; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide-men--custom .banner-container {
        flex-direction: column; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .heroCarousel-slide-men--custom .banner-container .banner-image {
        height: 620px;
        width: 63.5%; } }
    @media only screen and (min-width: 991px) {
      .heroCarousel-slide-men--custom .banner-container .banner-image {
        height: 620px;
        width: 58.33%; } }
    .heroCarousel-slide-men--custom .banner-container .banner-content {
      background-color: #EBEBEB;
      padding: 20px;
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .heroCarousel-slide-men--custom .banner-container .banner-content {
          padding: 30px 20px; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .heroCarousel-slide-men--custom .banner-container .banner-content {
          width: 36.5%; } }
      @media only screen and (min-width: 991px) {
        .heroCarousel-slide-men--custom .banner-container .banner-content {
          width: 41.66%; } }
      @media only screen and (max-width: 767px) {
        .heroCarousel-slide-men--custom .banner-container .banner-content .wrapper {
          padding: 0; } }
  .heroCarousel-slide-men--custom .background-image-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    .heroCarousel-slide-men--custom .background-image-container.mobile img {
      width: 100%; }
  .heroCarousel-slide-men--custom .wrapper {
    height: 100%; }
  .heroCarousel-slide-men--custom .heroCarousel-content--container {
    padding-left: 30px;
    padding-right: 30px; }
    @media only screen and (max-width: 990px) {
      .heroCarousel-slide-men--custom .heroCarousel-content--container {
        text-align: center;
        padding-left: 0;
        padding-right: 0; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide-men--custom .heroCarousel-content--custom {
      position: absolute;
      top: 5%;
      text-align: left;
      background-color: none;
      max-width: 400px;
      padding-top: 0; }
      .heroCarousel-slide-men--custom .heroCarousel-content--custom.desktop-align-left {
        text-align: left; }
      .heroCarousel-slide-men--custom .heroCarousel-content--custom.desktop-align-center {
        text-align: center; }
      .heroCarousel-slide-men--custom .heroCarousel-content--custom.desktop-align-right {
        text-align: right; } }
  @media only screen and (max-width: 479px) {
    .heroCarousel-slide-men--custom .heroCarousel-content--custom {
      min-height: 240px; } }
  .heroCarousel-slide-men--custom .heroCarousel-content--custom.text-position-center {
    text-align: center; }
  .heroCarousel-slide-men--custom .heroCarousel-content--custom.text-position-right {
    text-align: right; }
    @media only screen and (max-width: 990px) {
      .heroCarousel-slide-men--custom .heroCarousel-content--custom.text-position-right {
        text-align: center; } }
  .heroCarousel-slide-men--custom .heroCarousel-content--custom.text-position-center {
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide-men--custom .heroCarousel-content--custom.text-position-center {
        text-align: center; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide-men--custom .heroCarousel-content--custom.position-right {
      right: 8%;
      top: 20%; } }
  @media only screen and (min-width: 768px) {
    .heroCarousel-slide-men--custom .heroCarousel-content--custom.position-center {
      left: 50%;
      transform: translateX(-50%); } }
  @media only screen and (min-width: 991px) {
    .heroCarousel-slide-men--custom .heroCarousel-content--custom.position-left {
      left: 10%; } }
  @media (min-width: 768px) and (max-width: 1199px) {
    .heroCarousel-slide-men--custom .heroCarousel-content--custom.position-left {
      left: 5%; } }
  .heroCarousel-slide-men--custom .heroCarousel-content--custom .heroCarousel-title {
    margin-bottom: 5px;
    font-family: "Avenir", "Clear Sans";
    text-transform: uppercase;
    line-height: 1; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide-men--custom .heroCarousel-content--custom .heroCarousel-title {
        font-size: 24px !important; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .heroCarousel-slide-men--custom .heroCarousel-content--custom .heroCarousel-title {
        font-size: 40px !important;
        margin-bottom: 0; } }
  .heroCarousel-slide-men--custom .heroCarousel-content--custom .heroCarousel-description {
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .heroCarousel-slide-men--custom .heroCarousel-content--custom .heroCarousel-description {
        font-size: 16px !important;
        margin-bottom: 10px; } }
    @media only screen and (min-width: 991px) {
      .heroCarousel-slide-men--custom .heroCarousel-content--custom .heroCarousel-description {
        font-size: 20px;
        margin-bottom: 25px; } }
  .heroCarousel-slide-men--custom .heroCarousel-content--custom .heroCarousel-action {
    font-size: 18px;
    border-radius: 0; }
    @media only screen and (min-width: 991px) {
      .heroCarousel-slide-men--custom .heroCarousel-content--custom .heroCarousel-action {
        font-size: 24px; } }

.productView-images {
  margin-bottom: 40px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .productView-images {
      margin-bottom: 20px; } }
  .productView-images .video-image {
    position: relative;
    text-align: center; }
    .productView-images .video-image .video-icon {
      height: 100px;
      width: 100px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.productView-image {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative;
  margin-bottom: 32px; }
  @media only screen and (max-width: 767px) {
    .productView-image {
      pointer-events: none; } }
  .productView-image + .productView-thumbnails {
    margin-top: 10px; }
    @media only screen and (min-width: 991px) {
      .productView-image + .productView-thumbnails {
        width: 71px;
        display: flex;
        flex-direction: column; } }

@media only screen and (max-width: 767px) {
  .productView-image,
  .video-image {
    margin-bottom: 28px; } }

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

.productView-thumbnails {
  display: flex;
  list-style-type: none; }
  @media only screen and (max-width: 767px) {
    .productView-thumbnails {
      text-align: center;
      margin-bottom: 0; } }
  .productView-thumbnails .productView-thumbnail {
    margin-right: 5px; }
    @media only screen and (max-width: 767px) {
      .productView-thumbnails .productView-thumbnail {
        margin: 0 9px; } }
  .productView-thumbnails img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin: 0;
    width: 100px;
    max-height: 100px;
    object-fit: contain;
    /* Object-fit polyfill */
    font-family: 'object-fit: contain;';
    position: relative; }
    @media only screen and (max-width: 767px) {
      .productView-thumbnails img {
        width: 65px;
        height: 65px; } }

@media only screen and (max-width: 767px) {
  .productView-thumbnail {
    display: inline-block;
    max-width: 24%; } }

.productView-thumbnail-link {
  border: 2px solid transparent;
  display: inline-flex;
  width: 100%;
  padding: 2px;
  justify-content: center;
  position: relative; }
  .productView-thumbnail-link:hover, .productView-thumbnail-link.is-active {
    border: 2px solid #6235B6; }
  .productView-thumbnail-link .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 26px;
    width: 26px; }

.video-image {
  display: none; }

.productView-details {
  margin-bottom: 27px; }
  .productView-details .description-header {
    margin-bottom: 0;
    font-weight: 700; }
  .productView-details .shopping-link {
    min-width: 222px;
    height: 54px; }

.promotion {
  display: flex;
  align-items: center; }
  .promotion .icon {
    color: #5F7A86; }
  .promotion svg {
    color: inherit;
    fill: #5F7A86;
    height: 18px;
    width: 18px;
    margin-right: 5px;
    vertical-align: middle; }
  .promotion span {
    font-weight: 700; }

.bundle-incentive .incentive-container {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #D3D3D3; }
  .bundle-incentive .incentive-container:last-child {
    border: none;
    margin-bottom: 0; }
  .bundle-incentive .incentive-container .icon {
    color: #6235B6; }
  .bundle-incentive .incentive-container svg {
    height: 28px;
    width: 28px;
    margin-right: 15px;
    fill: currentColor; }
  .bundle-incentive .incentive-container .incentive-content .incentive-title {
    font-weight: 700;
    margin-bottom: 0; }
  .bundle-incentive .incentive-container .incentive-content span {
    font-weight: 400; }

.productView-extra {
  padding-top: 20px; }
  .productView-extra .packaging-notice {
    margin-bottom: 5px; }

.shipping-copy {
  margin-bottom: 10px; }
  .shipping-copy p, .shipping-copy .p {
    font-size: 16px;
    margin-bottom: 0; }
  .shipping-copy .shipping-callout {
    color: #5F7A86;
    font-weight: 700; }

.tooltip {
  position: relative;
  font-weight: 400;
  color: #7B4CD2;
  padding: 0;
  font-size: 16px;
  border: none;
  background-color: transparent; }
  .tooltip .tooltip-container,
  .tooltip .tooltip-text,
  .tooltip .tooltip-click {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    position: absolute;
    left: 0;
    width: 300px;
    padding: 20px;
    margin-top: 7px;
    background: #fff;
    color: #414042;
    border-top: solid 7px #7B4CD2;
    height: auto;
    box-shadow: 0 0 8px #e5e5e5;
    z-index: 100;
    text-decoration: none;
    text-align: center;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
  .tooltip:focus .tooltip-container,
  .tooltip:focus .tooltip-text,
  .tooltip:focus .tooltip-click, .tooltip:hover .tooltip-container,
  .tooltip:hover .tooltip-text,
  .tooltip:hover .tooltip-click {
    display: block;
    clip: auto;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }

.add-increment-flex {
  margin-bottom: 0; }
  .add-increment-flex [data-product-option-change] {
    position: relative; }
  .add-increment-flex .tooltip-click {
    text-align: left; }
    .add-increment-flex .tooltip-click .tooltip-header {
      font-size: 15px;
      color: #5F7A86;
      margin-bottom: 0; }
    .add-increment-flex .tooltip-click .tooltip-content,
    .add-increment-flex .tooltip-click .tooltip-link {
      font-size: 12px; }
    .add-increment-flex .tooltip-click .tooltip-link {
      color: #5F7A86;
      text-decoration: underline; }
  .add-increment-flex label.form-label,
  .add-increment-flex .form-label--inlineSmall {
    display: block; }

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

@media only screen and (max-width: 767px) {
  .productView-product.desktop {
    display: none; } }

.productView-product.mobile {
  margin-bottom: 24px; }

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

.productView-product .product-tag {
  font-weight: 800;
  font-size: 14px;
  padding: 4px 18px;
  display: inline-block;
  margin-bottom: 10px; }

.productView-title {
  margin: 0 0 5px 0;
  line-height: 1;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    .productView-title {
      margin: 5px 0; } }

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

.productView-price {
  margin-bottom: 10px;
  display: flex;
  align-items: center; }
  .productView-price [data-bv-show="rating_summary"] {
    margin-bottom: 0; }
  .productView-price .price-section {
    padding-right: 8px;
    line-height: normal; }
    .productView-price .price-section .price {
      font-size: 16px; }
  .productView-price .product-size {
    font-size: 16px;
    margin-right: 15px; }
  .productView-price .product-bulkpricing {
    color: #5F7A86;
    font-size: 18px; }
  .productView-price abbr {
    border: 0;
    color: inherit;
    font-size: inherit; }

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

.productView-info {
  *zoom: 1;
  margin: 0; }
  .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 {
  *zoom: 1; }
  .productView-options::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (min-width: 768px) {
    .productView-options {
      margin-bottom: 24px; } }
  @media only screen and (max-width: 767px) {
    .productView-options {
      margin-bottom: 24px; } }
  @media only screen and (min-width: 480px) {
    .productView-options .form-input[type="number"] {
      width: 16.6667%; } }
  .productView-options .form {
    display: inline-block;
    vertical-align: bottom;
    width: 100%; }
    .productView-options .form .form-field--increments {
      margin-right: 16px; }
      @media only screen and (max-width: 990px) {
        .productView-options .form .form-field--increments {
          margin-bottom: 0; } }
      .productView-options .form .form-field--increments .form-label {
        margin-bottom: 5px; }
    .productView-options .form .form-increments-wrap .form-increment {
      width: auto; }
    .productView-options .form .form-increments-wrap .increment-buttons-wrap {
      width: 50px; }
      .productView-options .form .form-increments-wrap .increment-buttons-wrap .button {
        height: 45px;
        line-height: 45px;
        background: #6b6d70; }
        .productView-options .form .form-increments-wrap .increment-buttons-wrap .button svg {
          height: 40px;
          width: 45px;
          fill: #ffffff; }
    .productView-options .form .form-increments-wrap .increment-input-wrap {
      padding: 0; }
      .productView-options .form .form-increments-wrap .increment-input-wrap .form-input--incrementTotal {
        height: 56px;
        width: 73px;
        border: 1px solid #414042;
        font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        font-size: 16px; }
    .productView-options .form .alertBox {
      padding: 16px 18px;
      max-width: 365px;
      margin-bottom: 0;
      background-color: #eae7e6; }
      @media only screen and (max-width: 767px) {
        .productView-options .form .alertBox {
          max-width: 100%; } }
      .productView-options .form .alertBox .alertBox-icon {
        display: none !important; }
      .productView-options .form .alertBox .alertBox-message {
        text-align: center;
        font-size: 16px;
        font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        margin-bottom: 0; }
    .productView-options .form .add-to-cart-container {
      display: flex;
      align-items: flex-end; }
      @media only screen and (max-width: 479px) {
        .productView-options .form .add-to-cart-container {
          width: 100%; } }
  .productView-options input[type="file"] {
    font-size: 14px; }
  .productView-options .form-label {
    font-size: 16px;
    font-weight: 700; }
    @media only screen and (max-width: 1199px) {
      .productView-options .form-label {
        font-size: 16px; } }
    .productView-options .form-label .required-star {
      display: none; }
  .productView-options .form-label--inlineSmall {
    margin-bottom: 0;
    vertical-align: middle;
    margin-right: 10px; }
    .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;
      min-height: 45px; }
      .productView-options .form-label--inlineSmall ~ .form-select.form-select--small {
        background-position: right 5px top 12px; }
  @media only screen and (min-width: 768px) {
    .productView-options .form-field {
      margin-bottom: 0; } }
  .productView-options .form-field > .form-checkbox + .form-label,
  .productView-options .form-field > .form-radio + .form-label {
    display: inline-block;
    margin-left: 20px;
    width: auto; }
    @media only screen and (min-width: 480px) {
      .productView-options .form-field > .form-checkbox + .form-label,
      .productView-options .form-field > .form-radio + .form-label {
        margin-left: 0;
        width: 100%; } }
  .productView-options .form-field > .form-label:nth-of-type(2) {
    margin-left: 0; }
  @media only screen and (max-width: 1199px) {
    .productView-options .form-action {
      width: 100%; } }
  @media only screen and (min-width: 480px) and (max-width: 767px) {
    .productView-options .form-action {
      width: 65%; } }
  .productView-options .form-action #form-action-addToCart {
    font-size: 18px;
    font-weight: 700; }
    @media only screen and (max-width: 479px) {
      .productView-options .form-action #form-action-addToCart {
        max-width: 100%;
        padding: 0 15px; } }
    @media only screen and (min-width: 480px) {
      .productView-options .form-action #form-action-addToCart {
        width: 100%;
        max-width: 221px; } }
  .productView-options .productView-customInfo {
    text-align: left; }
    .productView-options .productView-customInfo .scent-container {
      font-size: 16px;
      margin-bottom: 24px; }
      .productView-options .productView-customInfo .scent-container .scent-label {
        font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        margin-bottom: 0; }
      .productView-options .productView-customInfo .scent-container .scent-description {
        font-weight: 400;
        margin-bottom: 0; }
        @media only screen and (min-width: 991px) {
          .productView-options .productView-customInfo .scent-container .scent-description {
            padding-right: 30px; } }
    .productView-options .productView-customInfo .face-use {
      margin-bottom: 24px; }
      .productView-options .productView-customInfo .face-use .use-header {
        font-weight: 700;
        margin-bottom: 0; }
      .productView-options .productView-customInfo .face-use .use-description {
        margin-bottom: 16px; }
      .productView-options .productView-customInfo .face-use .use-icons {
        display: flex; }
      .productView-options .productView-customInfo .face-use .use-icons {
        color: #54555A; }
      .productView-options .productView-customInfo .face-use img {
        height: 75px; }
        .productView-options .productView-customInfo .face-use img:first-child {
          margin-right: 24px; }
    .productView-options .productView-customInfo .form-action {
      margin-bottom: 20px; }

.free-shipping-notice {
  display: flex;
  align-items: center;
  margin-bottom: 10px; }
  .free-shipping-notice .icon {
    color: #7B4CD2; }
    .free-shipping-notice .icon .shipping-icon {
      height: 20px;
      width: 20px;
      margin-right: 15px;
      fill: currentColor; }
      @media only screen and (max-width: 767px) {
        .free-shipping-notice .icon .shipping-icon {
          margin-right: 15px; } }

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

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

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

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

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

.shareProduct {
  text-align: center; }

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

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

[data-bv-show="reviews"] {
  margin-bottom: 160px; }
  @media only screen and (max-width: 767px) {
    [data-bv-show="reviews"] {
      margin-bottom: 100px; } }

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

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

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

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

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

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

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

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

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

.description-content {
  font-weight: 400;
  position: relative; }

.description-title {
  font-weight: 700;
  margin-bottom: 10px; }

.productView-scent .scent-header {
  display: flex; }
  .productView-scent .scent-header .scent-swatch {
    margin-right: 5px; }
    .productView-scent .scent-header .scent-swatch img {
      border-radius: 50%; }

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

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

#related-products-section {
  margin-bottom: 65px; }
  @media only screen and (max-width: 767px) {
    #related-products-section {
      padding: 30px 0 30px !important; } }
  @media only screen and (max-width: 767px) {
    #related-products-section .section-header {
      font-size: 28px !important;
      line-height: 32px !important; } }
  @media only screen and (max-width: 767px) {
    #related-products-section .product-tag {
      top: 8px;
      left: 8px; } }
  #related-products-section .card .card-body {
    text-align: center;
    min-height: 72px; }

.video-image-section {
  margin-bottom: 56px; }
  .video-image-section .video-content {
    height: 0;
    padding-bottom: 54%;
    position: relative;
    margin-bottom: 25px;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      .video-image-section .video-content {
        margin-bottom: 0; } }
    .video-image-section .video-content iframe {
      height: 100%;
      position: absolute;
      top: 0;
      width: 100%;
      left: 0; }
  .video-image-section .image-text-content {
    height: 0;
    padding-bottom: 100%;
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    color: #ffffff;
    position: relative; }
    .video-image-section .image-text-content .image-text-background {
      height: 100%;
      position: absolute;
      top: 0;
      width: 100%;
      left: 0;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover; }
    .video-image-section .image-text-content .text-content {
      max-width: 465px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media only screen and (max-width: 767px) {
        .video-image-section .image-text-content .text-content {
          width: 90%; } }
      .video-image-section .image-text-content .text-content h2, .video-image-section .image-text-content .text-content .h2, .video-image-section .image-text-content .text-content p, .video-image-section .image-text-content .text-content .p {
        color: #ffffff; }

.collection-ingredients-container {
  padding: 20px 0; }
  @media only screen and (min-width: 768px) {
    .collection-ingredients-container {
      padding: 40px 0; } }

.ingredients-container {
  margin-bottom: 56px; }
  @media only screen and (max-width: 767px) {
    .ingredients-container .wrapper {
      padding-left: 0;
      padding-right: 0; } }
  .ingredients-container.single .toggleLink p, .ingredients-container.single .toggleLink .p {
    position: relative;
    z-index: 1; }
    @media only screen and (min-width: 768px) {
      .ingredients-container.single .toggleLink p:before, .ingredients-container.single .toggleLink .p:before {
        content: '';
        border-top: 1px solid #D3D3D3;
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1; } }
  .ingredients-container.single .toggleLink .toggle-text {
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #D3D3D3;
    padding: 8px 0;
    margin: 0 auto;
    font-size: 18px;
    line-height: 24px;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    position: relative;
    display: block;
    z-index: 10;
    background-color: #ffffff; }
    .ingredients-container.single .toggleLink .toggle-text .icon {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
      height: 35px;
      width: 35px;
      fill: #5F6064;
      vertical-align: middle; }
    .ingredients-container.single .toggleLink .toggle-text.close {
      display: none; }
  .ingredients-container.single .toggleLink.is-open .toggle-text svg {
    transform: translateY(-50%) rotate(-90deg); }
  .ingredients-container.collection {
    width: 100%;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .ingredients-container.collection {
        width: 80%;
        max-width: 1200px;
        margin: 0 auto; } }
    .ingredients-container.collection .toggleLink p, .ingredients-container.collection .toggleLink .p {
      position: relative;
      border: 1px solid #D3D3D3;
      padding: 10px 15px;
      font-weight: 700;
      font-size: 18px; }
    .ingredients-container.collection .toggleLink .icon {
      height: 14px;
      width: 14px;
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      fill: #5F6064; }
    .ingredients-container.collection .toggleLink.is-open .icon {
      transform: translateY(-50%) rotate(-180deg); }

.ingredients-content {
  border-collapse: collapse;
  width: 100%;
  border: 2px solid #D8D8D8;
  display: none;
  margin-bottom: 56px; }
  .ingredients-content.is-open {
    display: table; }
    @media only screen and (max-width: 767px) {
      .ingredients-content.is-open {
        display: block; } }
  .ingredients-content thead {
    font-size: 18px;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
    .ingredients-content thead td {
      border: none; }
  .ingredients-content th, .ingredients-content td, .ingredients-content tr {
    border: 2px solid #D8D8D8;
    border-collapse: collapse;
    padding: 16px; }
    @media only screen and (max-width: 767px) {
      .ingredients-content th, .ingredients-content td, .ingredients-content tr {
        padding: 8px; } }
  .ingredients-content th {
    border: none;
    text-align: left; }
  .ingredients-content tbody {
    font-size: 16px; }
    .ingredients-content tbody td {
      border: none; }
    @media only screen and (min-width: 768px) {
      .ingredients-content tbody tr:nth-child(8n+5) {
        background: #eeeeee; } }
    @media only screen and (max-width: 767px) {
      .ingredients-content tbody tr:nth-child(8n+6),
      .ingredients-content tbody tr:nth-child(8n+7),
      .ingredients-content tbody tr:nth-child(8n+8) {
        background: #eeeeee; } }
  @media only screen and (max-width: 767px) {
    .ingredients-content .desktop-header,
    .ingredients-content .desktop-row {
      display: none; } }
  .ingredients-content .mobile-row {
    border: none; }
    @media only screen and (min-width: 768px) {
      .ingredients-content .mobile-row {
        display: none; } }
    .ingredients-content .mobile-row :first-child {
      min-width: 100px; }
    @media only screen and (max-width: 990px) {
      .ingredients-content .mobile-row td {
        font-size: 14px;
        padding: 6px; }
        .ingredients-content .mobile-row td:first-child {
          font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; } }
  @media only screen and (max-width: 767px) {
    .ingredients-content table, .ingredients-content thead, .ingredients-content tbody, .ingredients-content tr {
      display: block; } }

.bv-content-feedback-btn-container .bv-content-btn {
  background-color: #eeeeee !important; }

.bv-content-summary-body-text {
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important; }

@media only screen and (min-width: 768px) {
  [data-bv-show] {
    margin-bottom: 5px; } }

.bv-cv2-cleanslate .bv-core-container-194 .bv-content-pagination {
  background-color: transparent !important; }

.bv-cv2-cleanslate .bv-core-container-194 .bv-content-pagination-container .bv-content-btn.bv-content-btn-pages-load-more {
  background-color: #7b4cd2 !important;
  border-radius: 30px;
  color: #fff !important;
  height: 34px !important;
  width: 222px !important; }

.productView--quickView .productView-details {
  margin-bottom: 0; }

.productView--quickView .productView-title {
  font-size: 18px; }

.productView--quickView .productView-product {
  margin-bottom: 0; }
  .productView--quickView .productView-product .price-section {
    padding: 10px 0; }

@media only screen and (min-width: 768px) {
  .productView--quickView .productView-options .custom-swatch-container .form-link {
    min-width: 150px;
    margin-right: 10px;
    padding: 0 30px; } }

.productView--quickView .add-increment-flex {
  flex-direction: column; }

.productView--quickView .product-link {
  padding: 15px 0;
  font-weight: 500; }
  @media only screen and (min-width: 768px) {
    .productView--quickView .product-link {
      width: 200px; } }
  .productView--quickView .product-link a {
    position: relative; }
    .productView--quickView .product-link a:after {
      content: '';
      border-bottom: 1px solid #000000;
      position: absolute;
      right: 0;
      left: 0;
      bottom: 0; }

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

.ingredients-accordion,
.incentives-accordion {
  padding: 10px 0;
  border-top: 1px solid #D3D3D3; }
  .ingredients-accordion .accordion-navigation,
  .incentives-accordion .accordion-navigation {
    border: none;
    background: transparent;
    padding: 10px 0;
    text-align: left;
    width: 100%; }
    .ingredients-accordion .accordion-navigation.is-open .toggleLink-text--on,
    .incentives-accordion .accordion-navigation.is-open .toggleLink-text--on {
      display: block; }
    .ingredients-accordion .accordion-navigation .toggleLink-text--on,
    .incentives-accordion .accordion-navigation .toggleLink-text--on {
      display: none; }
    .ingredients-accordion .accordion-navigation .accordion-title,
    .incentives-accordion .accordion-navigation .accordion-title {
      font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
      font-weight: 700; }
  .ingredients-accordion .accordion-content,
  .incentives-accordion .accordion-content {
    padding-top: 10px; }
    @media only screen and (max-width: 767px) {
      .ingredients-accordion .accordion-content .mini-incentives,
      .incentives-accordion .accordion-content .mini-incentives {
        padding-top: 0;
        margin-bottom: 0; } }
    .ingredients-accordion .accordion-content .current-incentive,
    .incentives-accordion .accordion-content .current-incentive {
      margin-bottom: 25px; }
  .ingredients-accordion .ingredients-popup,
  .incentives-accordion .ingredients-popup {
    text-decoration: underline; }
  .ingredients-accordion .ingredients-modal-content,
  .incentives-accordion .ingredients-modal-content {
    font-weight: 400; }

@media only screen and (min-width: 768px) {
  .ingredients-modal-container {
    max-width: 465px;
    margin: 0 auto; } }

.product-newsletter-section {
  background-color: #5259D8;
  margin-bottom: 60px;
  padding: 32px 0; }
  @media only screen and (min-width: 768px) {
    .product-newsletter-section {
      padding: 60px 0; } }
  .product-newsletter-section .newsletter-title, .product-newsletter-section p, .product-newsletter-section .p {
    text-align: center;
    color: #ffffff; }
  .product-newsletter-section .newsletter-title {
    font-weight: 500;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .product-newsletter-section .newsletter-title {
        font-size: 38px; } }
  .product-newsletter-section p, .product-newsletter-section .p {
    font-weight: 400; }

.choose-mood {
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .choose-mood {
      margin-bottom: 100px; } }
  .choose-mood .choose-mood-header .choose-mood-heading {
    font-weight: 500;
    margin-bottom: 35px; }
    @media only screen and (max-width: 767px) {
      .choose-mood .choose-mood-header .choose-mood-heading {
        font-size: 30px; } }
  .choose-mood .mood-slider .single-mood {
    position: relative; }
    .choose-mood .mood-slider .single-mood .mood-link {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9; }
    .choose-mood .mood-slider .single-mood:hover .mood-title {
      text-decoration: underline; }
  .choose-mood .mood-slider .mood-image {
    margin-bottom: 20px; }
    .choose-mood .mood-slider .mood-image img {
      width: 100%; }
  .choose-mood .mood-slider .mood-title {
    color: inherit; }
  @media only screen and (max-width: 767px) {
    .choose-mood .mood-slider .mood-content {
      max-width: 470px;
      margin: 0 auto; } }
  .choose-mood .mood-slider .mood-title {
    margin-bottom: 40px;
    position: relative; }
    .choose-mood .mood-slider .mood-title:after {
      content: '';
      display: block;
      position: absolute;
      width: 40px;
      height: 6px;
      border-radius: 10px;
      background-color: currentColor;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%); }
  .choose-mood .mood-slider .slick-list {
    margin-bottom: 40px; }
  .choose-mood .mood-slider .slick-prev,
  .choose-mood .mood-slider .slick-next {
    padding: 5px;
    color: #7D7473;
    transform: none;
    top: 67%; }
    @media only screen and (min-width: 501px) and (max-width: 600px) {
      .choose-mood .mood-slider .slick-prev,
      .choose-mood .mood-slider .slick-next {
        top: 58%; } }
    @media only screen and (min-width: 601px) and (max-width: 767px) {
      .choose-mood .mood-slider .slick-prev,
      .choose-mood .mood-slider .slick-next {
        top: 64%; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .choose-mood .mood-slider .slick-prev,
      .choose-mood .mood-slider .slick-next {
        top: 71%; } }
    @media only screen and (min-width: 991px) and (max-width: 1199px) {
      .choose-mood .mood-slider .slick-prev,
      .choose-mood .mood-slider .slick-next {
        top: 65%; } }
    @media only screen and (min-width: 1200px) and (max-width: 1399px) {
      .choose-mood .mood-slider .slick-prev,
      .choose-mood .mood-slider .slick-next {
        top: 65%; } }
    @media only screen and (min-width: 1400px) {
      .choose-mood .mood-slider .slick-prev,
      .choose-mood .mood-slider .slick-next {
        top: 68%; } }
    .choose-mood .mood-slider .slick-prev:before,
    .choose-mood .mood-slider .slick-next:before {
      display: none; }
    .choose-mood .mood-slider .slick-prev svg,
    .choose-mood .mood-slider .slick-next svg {
      height: 100%;
      width: 100%;
      fill: currentColor; }
  @media only screen and (max-width: 990px) {
    .choose-mood .mood-slider .slick-prev {
      left: 5px; } }
  @media only screen and (max-width: 990px) {
    .choose-mood .mood-slider .slick-next {
      right: -15px; } }
  @media only screen and (min-width: 991px) {
    .choose-mood .mood-slider .slick-next {
      right: -45px; } }
  .choose-mood .mood-slider .slick-dots {
    bottom: 0; }
  .choose-mood .pagingInfo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .choose-mood .pagingInfo {
        font-size: 20px; } }
    @media only screen and (min-width: 991px) {
      .choose-mood .pagingInfo {
        visibility: hidden; } }

.aluminum-row-section {
  position: relative;
  padding-top: 60px;
  margin-bottom: 60px; }
  @media only screen and (min-width: 768px) {
    .aluminum-row-section {
      margin-bottom: 100px;
      overflow: hidden; } }
  .aluminum-row-section.homepage {
    padding-bottom: 80px; }
  .aluminum-row-section .background-video.top {
    top: 150px;
    right: 0;
    max-width: 60%;
    transform: translate(0, -50%);
    z-index: 0; }
  .aluminum-row-section .background-video.bottom {
    bottom: 0;
    left: -33%;
    right: -33%;
    z-index: 0; }
    @media only screen and (min-width: 480px) {
      .aluminum-row-section .background-video.bottom {
        left: 0;
        right: 0; } }
    .aluminum-row-section .background-video.bottom video {
      object-position: bottom center; }
  .aluminum-row-section .aluminum-heading {
    line-height: normal;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    padding: 0 22px;
    position: relative;
    z-index: 9; }
    @media only screen and (min-width: 768px) {
      .aluminum-row-section .aluminum-heading {
        max-width: 700px;
        margin: 0 auto;
        margin-bottom: 50px;
        font-size: 38px; } }
  .aluminum-row-section .alumin {
    font-weight: 500; }
  .aluminum-row-section .aluminum-slider-container {
    position: relative; }
  .aluminum-row-section .fruit-left,
  .aluminum-row-section .fruit-right {
    position: absolute; }
  .aluminum-row-section .fruit-left {
    top: -200px;
    left: -20px;
    width: 160px; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .aluminum-row-section .fruit-left {
        top: -80px; } }
  .aluminum-row-section .fruit-right {
    top: 80px;
    right: -50px;
    width: 250px; }
  .aluminum-row-section .aluminum-row .slick-dots {
    padding-left: 22px; }
  .aluminum-row-section .aluminum-block .aluminum-image-wrap {
    margin-bottom: 16px; }
    .aluminum-row-section .aluminum-block .aluminum-image-wrap:hover .aluminum-img-hover, .aluminum-row-section .aluminum-block .aluminum-image-wrap:focus .aluminum-img-hover {
      display: block; }
    .aluminum-row-section .aluminum-block .aluminum-image-wrap:hover .aluminum-image, .aluminum-row-section .aluminum-block .aluminum-image-wrap:focus .aluminum-image {
      display: none; }
    .aluminum-row-section .aluminum-block .aluminum-image-wrap .aluminum-image {
      width: 100%; }
    .aluminum-row-section .aluminum-block .aluminum-image-wrap .aluminum-img-hover {
      display: none; }
  .aluminum-row-section .aluminum-block .content-header .aluminum-title {
    font-size: 20px;
    margin-bottom: 0; }
  .aluminum-row-section .aluminum-block .content-header .aluminum-description {
    font-size: 16px;
    padding: 0 10px; }
  .aluminum-row-section .find-products-link {
    padding-top: 50px; }
    .aluminum-row-section .find-products-link .find-product-heading {
      font-weight: 500;
      font-size: 38px;
      position: relative;
      z-index: 10; }
      @media only screen and (max-width: 767px) {
        .aluminum-row-section .find-products-link .find-product-heading {
          font-size: 24px;
          padding: 0 30px;
          margin-bottom: 20px;
          line-height: normal; } }

.productView-swatches {
  margin-bottom: 10px; }
  .productView-swatches .scent-label {
    margin-bottom: 0;
    font-weight: 700; }
  .productView-swatches .scent-header {
    margin-bottom: 5px; }
  .productView-swatches .custom-swatch-container {
    display: flex; }
    .productView-swatches .custom-swatch-container :last-child .swatch-button {
      margin-right: 0; }
    .productView-swatches .custom-swatch-container .swatch-link.active .swatch-button, .productView-swatches .custom-swatch-container .swatch-link:hover .swatch-button {
      border: 2px solid #7B4CD2 !important; }
    .productView-swatches .custom-swatch-container .swatch-button {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      position: relative;
      margin-right: 8px; }
      .productView-swatches .custom-swatch-container .swatch-button span {
        background-color: #ffffff;
        color: #414042; }

.custom-swatch-container {
  margin-bottom: 15px; }
  .custom-swatch-container .option-header {
    font-size: 18px;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin-bottom: 0; }
  .custom-swatch-container .form-link {
    margin-right: 24px;
    min-width: 170px;
    border: 1px solid #d0ccc8; }
    @media only screen and (max-width: 767px) {
      .custom-swatch-container .form-link {
        padding: 0;
        min-width: 35%; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .custom-swatch-container .form-link {
        min-width: 136px;
        margin-right: 10px;
        padding: 0 30px; } }
    .custom-swatch-container .form-link:last-child {
      margin-right: 0; }
    .custom-swatch-container .form-link:hover, .custom-swatch-container .form-link:focus {
      background-color: #F2EDFB; }
    .custom-swatch-container .form-link .form-option-name {
      font-size: 16px;
      font-weight: 500;
      color: #414042; }
    .custom-swatch-container .form-link.active {
      border: 2px solid #7B4CD2; }

.hand-product .form .add-to-cart-container {
  display: inline-flex;
  margin-right: 10px; }
  @media only screen and (max-width: 479px) {
    .hand-product .form .add-to-cart-container {
      margin-right: 0; } }
  @media screen and (max-width: 1024px) {
    .hand-product .form .add-to-cart-container {
      margin-bottom: 20px; } }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .hand-product .form .add-to-cart-container .form-action-addToCart {
      width: 205px !important; } }
  @media only screen and (min-width: 1200px) {
    .hand-product .form .add-to-cart-container .form-action-addToCart {
      width: 188px !important; } }
  .hand-product .form .add-to-cart-container .form-action-addToCart.button {
    padding: 0 30px; }

.hand-product .form .find-store-button {
  vertical-align: bottom;
  display: flex; }
  @media only screen and (min-width: 768px) {
    .hand-product .form .find-store-button {
      display: inline-flex; } }
  .hand-product .form .find-store-button .button {
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500; }
    @media only screen and (max-width: 479px) {
      .hand-product .form .find-store-button .button {
        width: 100%; } }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .hand-product .form .find-store-button .button {
        width: 100%;
        max-width: 242px; } }

.productpage-section {
  margin-bottom: 70px; }
  .productpage-section .scent-header {
    margin-bottom: 0; }

#scent-row-section .scent-header {
  text-align: center; }
  #scent-row-section .scent-header .scent-heading {
    text-transform: uppercase;
    margin-bottom: 5px; }
    #scent-row-section .scent-header .scent-heading.lower {
      text-transform: lowercase; }

@media only screen and (max-width: 767px) {
  #scent-row-section .scent-slider-container {
    padding-bottom: 20px; } }

#scent-row-section .scent-row .scent-block .scent-block-link:hover .scent-title, #scent-row-section .scent-row .scent-block .scent-block-link:focus .scent-title {
  position: relative;
  text-decoration: underline; }

@media only screen and (max-width: 767px) {
  #scent-row-section .scent-row .scent-block .scent-block-link .scent-image {
    width: 100%; } }

#scent-row-section .scent-row .scent-block .scent-block-content {
  text-align: center;
  padding: 20px 30px 15px; }
  @media only screen and (max-width: 767px) {
    #scent-row-section .scent-row .scent-block .scent-block-content {
      padding: 0 30px 15px; } }
  #scent-row-section .scent-row .scent-block .scent-block-content .content-header {
    display: flex;
    flex-direction: column;
    align-items: center; }
  #scent-row-section .scent-row .scent-block .scent-block-content .scent-icon {
    margin: 0 auto;
    margin-bottom: 15px;
    height: 100%; }
  #scent-row-section .scent-row .scent-block .scent-block-content .scent-title {
    margin-bottom: 10px;
    font-size: 24px; }
    @media only screen and (min-width: 768px) {
      #scent-row-section .scent-row .scent-block .scent-block-content .scent-title {
        font-size: 28px; } }
  #scent-row-section .scent-row .scent-block .scent-block-content .scent-feature {
    max-width: 285px;
    margin: 0 auto; }
    #scent-row-section .scent-row .scent-block .scent-block-content .scent-feature .feature-heading {
      font-weight: 600;
      margin-bottom: 5px; }
  #scent-row-section .scent-row .scent-block .scent-block-content .scent-description {
    margin-bottom: 0; }

#scent-row-section .scent-row .slick-dots {
  padding-left: 22px; }
  @media only screen and (min-width: 480px) {
    #scent-row-section .scent-row .slick-dots {
      bottom: 0; } }

#scent-row-section .scent-row .slick-next,
#scent-row-section .scent-row .slick-prev {
  padding: 0;
  z-index: 2; }
  #scent-row-section .scent-row .slick-next::before,
  #scent-row-section .scent-row .slick-prev::before {
    display: none; }
  @media only screen and (max-width: 479px) {
    #scent-row-section .scent-row .slick-next,
    #scent-row-section .scent-row .slick-prev {
      top: 61%; } }
  @media only screen and (min-width: 480px) and (max-width: 767px) {
    #scent-row-section .scent-row .slick-next,
    #scent-row-section .scent-row .slick-prev {
      top: 80%; } }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    #scent-row-section .scent-row .slick-next,
    #scent-row-section .scent-row .slick-prev {
      top: 65%; } }
  @media only screen and (min-width: 991px) {
    #scent-row-section .scent-row .slick-next,
    #scent-row-section .scent-row .slick-prev {
      top: 63%; } }
  #scent-row-section .scent-row .slick-next svg,
  #scent-row-section .scent-row .slick-prev svg {
    fill: #7B4CD2; }

#scent-row-section .scent-row .slick-next {
  right: -8px; }
  @media only screen and (min-width: 768px) {
    #scent-row-section .scent-row .slick-next {
      right: -2px; } }
  #scent-row-section .scent-row .slick-next svg {
    height: 40px;
    width: 40px; }

#scent-row-section .scent-row .slick-prev {
  left: 15px; }
  @media only screen and (min-width: 768px) {
    #scent-row-section .scent-row .slick-prev {
      left: 20px; } }
  #scent-row-section .scent-row .slick-prev svg {
    height: 40px;
    width: 40px;
    transform: rotate(180deg); }

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

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

.toggleLink {
  color: #7B4CD2; }
  .toggleLink:hover {
    color: #6235B6; }
  .toggle-title .toggleLink {
    float: right;
    line-height: 24px; }

.accordion-navigation {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left; }
  .accordion-navigation.is-open .toggleLink-text--on {
    display: block; }
  .accordion-navigation.is-open .toggleLink-text--off {
    display: none; }
  .accordion-navigation .toggleLink-text--on {
    display: none;
    transform: rotate(180deg); }
  .accordion-navigation .accordion-title {
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }

.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 .filter-toggle-wrap {
  position: relative; }
  .mobile-advanced-filters .filter-toggle-wrap .arrow-down {
    position: absolute;
    right: 12px;
    bottom: 8px;
    transform: rotate(90deg); }
    @media only screen and (max-width: 767px) {
      .mobile-advanced-filters .filter-toggle-wrap .arrow-down {
        right: 8px;
        bottom: 20px; } }
    .mobile-advanced-filters .filter-toggle-wrap .arrow-down svg {
      height: 15px;
      width: 15px;
      fill: #5F6064; }
      @media only screen and (max-width: 767px) {
        .mobile-advanced-filters .filter-toggle-wrap .arrow-down svg {
          height: 13px;
          width: 13px; } }
  .mobile-advanced-filters .filter-toggle-wrap .filter-toggle {
    background: #ffffff;
    color: #414042;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 500;
    height: 56px;
    line-height: 54px !important;
    position: relative;
    text-transform: lowercase;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .mobile-advanced-filters .filter-toggle-wrap .filter-toggle {
        font-size: 16px;
        padding: 0 8px;
        text-align: left;
        border: 1px solid #979797; }
        .mobile-advanced-filters .filter-toggle-wrap .filter-toggle:after {
          content: '';
          height: 100%;
          width: 32px;
          position: absolute;
          right: 0px;
          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='M6 6.174l5.313-4.96.23-.214.457.427-.23.214-5.51 5.146L6.03 7 6 6.972 5.97 7l-.23-.214L.23 1.64 0 1.428.458 1l.23.214L6 6.174z' fill='rgba(117, 117, 117, 0.999)' /%3E%3C/svg%3E");
          background-repeat: no-repeat;
          background-position: right 3px top 22px;
          top: 0%;
          background-size: 28px; } }
    .mobile-advanced-filters .filter-toggle-wrap .filter-toggle:hover {
      background-color: #ffffff; }

.mobile-advanced-filters .form-select {
  text-transform: lowercase; }

.banner-category {
  margin-bottom: 24px; }

@media only screen and (min-width: 768px) {
  .accordion-navigation {
    cursor: default; }
    .accordion-navigation .accordion-title {
      font-family: "Avenir", "Clear Sans";
      font-weight: 500;
      margin-bottom: 8px; } }
    @media only screen and (min-width: 768px) and (min-width: 768px) {
      .accordion-navigation .accordion-title {
        margin-bottom: 0; } }

@media only screen and (min-width: 768px) {
  .navList {
    display: inline-block;
    border-top: 0;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 20;
    background-color: #ffffff; }
    .navList .navList-item-link {
      display: block;
      padding-left: 15px;
      padding-right: 15px; }
    .navList .navList-items {
      line-height: 40px; }
      .navList .navList-items.navList-item-current, .navList .navList-items:hover {
        background-color: #eeeeee; }
      .navList .navList-items .category-count {
        margin-left: 10px;
        color: #979797; } }

.category-radio::after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 2px;
  left: 0;
  position: relative;
  background-color: #fff;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 1px solid #7B4CD2;
  cursor: pointer; }

.category-radio.checked::after {
  width: 14px;
  height: 14px;
  position: relative;
  background-color: #7B4CD2;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 3px solid white;
  box-shadow: 0 0 0 1px #7B4CD2; }

.page-sidebar {
  z-index: 10;
  background-color: #ffffff; }
  @media only screen and (min-width: 768px) {
    .page-sidebar {
      min-height: 100px; } }
  .page-sidebar nav {
    z-index: 99; }

@media only screen and (min-width: 768px) {
  #facetedSearch-navList {
    margin-top: 0; }
    #facetedSearch-navList .accordion-block {
      margin-top: 0; }
      #facetedSearch-navList .accordion-block .accordion-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px; } }

@media only screen and (min-width: 768px) {
  .medium-up--d-none {
    display: none; } }

@media only screen and (min-width: 768px) {
  .filter-bar {
    padding: 15px 15px 10px 0; } }

#category-hero-background-container {
  min-height: 12vw;
  height: 200px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  padding: 0 20px; }
  #category-hero-background-container #category-hero-content-container {
    text-align: center; }
    @media screen and (min-width: 641px) {
      #category-hero-background-container #category-hero-content-container {
        margin-left: 25%;
        max-width: 65%; } }
    @media screen and (max-width: 640px) {
      #category-hero-background-container #category-hero-content-container {
        margin-left: auto;
        margin-right: auto; } }
    @media screen and (min-width: 641px) {
      #category-hero-background-container #category-hero-content-container.left-aligned {
        text-align: left;
        margin-left: 25%;
        max-width: 65%; } }
    @media screen and (min-width: 641px) {
      #category-hero-background-container #category-hero-content-container.center-aligned {
        margin: 0 auto;
        max-width: 100%;
        text-align: center; } }
    #category-hero-background-container #category-hero-content-container.center-aligned .page-heading,
    #category-hero-background-container #category-hero-content-container.center-aligned .category-subheading {
      text-align: center; }
    #category-hero-background-container #category-hero-content-container .page-heading {
      margin: 10px auto 0;
      letter-spacing: -.02em;
      padding: 0; }
      @media only screen and (max-width: 767px) {
        #category-hero-background-container #category-hero-content-container .page-heading {
          font-size: 28px; } }
    #category-hero-background-container #category-hero-content-container .category-subheading {
      margin-bottom: 21px;
      font-size: 14px;
      font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
      font-weight: 400; }
      @media only screen and (min-width: 991px) {
        #category-hero-background-container #category-hero-content-container .category-subheading {
          font-size: 24px; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        #category-hero-background-container #category-hero-content-container .category-subheading {
          font-size: 20px; } }

#bundle-header.header {
  padding: 50px 0;
  background-color: lightgrey;
  background: url("../img/bundle_background.jpg");
  background-size: cover;
  background-repeat: no-repeat; }
  @media only screen and (max-width: 767px) {
    #bundle-header.header {
      padding: 30px 0 0; } }
  @media only screen and (max-width: 767px) {
    #bundle-header.header .wrapper {
      padding: 0; } }
  @media only screen and (max-width: 1199px) {
    #bundle-header.header .bundle-headings-container {
      text-align: center; } }
  #bundle-header.header .bundle-heading {
    padding-right: 105px;
    font-size: 56px;
    line-height: 64px;
    font-family: 'Avenir Black', 'Avenir Book';
    margin-bottom: 10px; }
    @media only screen and (max-width: 1199px) {
      #bundle-header.header .bundle-heading {
        padding-right: 0; } }
    @media only screen and (max-width: 767px) {
      #bundle-header.header .bundle-heading {
        max-width: 50%;
        margin: 0 auto;
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 15px; } }

.progressBar-inner {
  height: 8px;
  background-color: #7B4CD2;
  bottom: 1px;
  position: relative;
  width: 0; }

.rewards-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 160px; }
  @media only screen and (max-width: 767px) {
    .rewards-container {
      width: 100px; } }
  .rewards-container.reward1, .rewards-container.reward2, .rewards-container.reward3 {
    right: -80px; }
    @media only screen and (max-width: 767px) {
      .rewards-container.reward1, .rewards-container.reward2, .rewards-container.reward3 {
        right: -50px; } }
  .rewards-container .spendText {
    margin-bottom: 10px; }
    @media only screen and (max-width: 767px) {
      .rewards-container .spendText {
        margin-bottom: 8px; } }
  .rewards-container .rewardText {
    min-height: 32px;
    padding-top: 10px;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .rewards-container .rewardText {
        min-height: 42px; } }
  .rewards-container p, .rewards-container .p {
    color: #ffffff;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
    @media only screen and (max-width: 767px) {
      .rewards-container p, .rewards-container .p {
        font-size: 14px;
        width: 65%;
        margin: 0 auto;
        line-height: 16px; } }

.sort-wrapper {
  margin-bottom: 24px; }
  .sort-wrapper .form-field {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    .sort-wrapper .form-field .form-label {
      font-size: 16px; }
      @media only screen and (min-width: 768px) {
        .sort-wrapper .form-field .form-label {
          width: auto;
          min-width: 62px;
          margin-right: 15px; } }
    .sort-wrapper .form-field .icon {
      position: absolute;
      transform: rotate(90deg);
      height: 13px;
      width: 13px;
      fill: #5F6064;
      right: 8px; }
      @media only screen and (min-width: 768px) {
        .sort-wrapper .form-field .icon {
          position: absolute;
          right: 12px; } }
    .sort-wrapper .form-field .form-select {
      border: 1px solid #979797; }
      @media only screen and (min-width: 768px) {
        .sort-wrapper .form-field .form-select {
          width: 225px; } }

@media only screen and (max-width: 767px) {
  .product [data-bv-show=inline_rating] .bv_main_container .bv_averageRating_component_container {
    display: none !important; } }

@media only screen and (max-width: 767px) {
  .productList-top .category-count {
    margin-bottom: 24px; } }

.productList-top .category-name {
  font-size: 16px; }

@media only screen and (max-width: 767px) {
  #product-listing-container .load-more-wrapper {
    padding-top: 30px; } }

.facetedSearch-toggle {
  border: 1px solid #D3D3D3;
  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: 20px; }
  @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 #D3D3D3;
      border-right: 1px solid #D3D3D3; }
      .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block,
      .sidebarBlock + .facetedSearch-navList.is-open .accordion-block {
        border-bottom: 1px solid #D3D3D3; }
        .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 .accordion-navigation-actions,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-navigation-actions {
          top: 19px; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .accordion-content,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .accordion-content {
          padding: 0 0 15px 50px; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-item,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-item {
          font-size: 14px; }
          .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-item:not(:last-of-type),
          .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-item:not(:last-of-type) {
            margin-bottom: 15px; }
        .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox,
        .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox {
          padding-left: 28px; }
          .facetedSearch-toggle + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox::before,
          .sidebarBlock + .facetedSearch-navList.is-open .accordion-block .navList-action--checkbox::before {
            margin-top: -9px; } }
  @media only screen and (min-width: 768px) {
    .facetedSearch-toggle + .facetedSearch-navList.is-open,
    .sidebarBlock + .facetedSearch-navList.is-open {
      margin-top: 20px; } }
  .facetedSearch-navList .navList--inner {
    margin-left: 20px; }
  .facetedSearch-navList .accordion-block {
    padding: 20px 0;
    border-top: 0.5px solid #54555A; }
    .facetedSearch-navList .accordion-block:first-child {
      border-top: none; }
  @media only screen and (min-width: 768px) {
    .facetedSearch-navList .navList-action--checkbox {
      font-size: 14px; } }
  .facetedSearch-navList .navList-action--checkbox:before {
    height: 20px;
    width: 20px; }
  .facetedSearch-navList .navList-action--checkbox:after {
    width: 18px;
    height: 17px;
    background-color: #7B4CD2;
    background-image: none;
    content: '';
    border: 2px solid white; }

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

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

@media only screen and (min-width: 768px) {
  .facetedSearch-refineFilters {
    padding-bottom: 10px;
    display: block; } }

.facetedSearch-refineFilters .sidebarBlock-header {
  display: flex;
  justify-content: space-between; }
  .facetedSearch-refineFilters .sidebarBlock-header [data-faceted-search-facet] {
    text-decoration: underline;
    color: #7B4CD2; }

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

.facetLabel {
  padding: 2px 7px 2px 9px;
  text-decoration: none; }
  .facetLabel .icon {
    height: 12px;
    width: 12px;
    display: inline-block;
    position: relative;
    top: -1px; }

.show-more-link {
  display: block;
  margin: 10px 0; }

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

.cart-main .page-heading {
  text-align: center;
  margin-bottom: 70px; }
  @media only screen and (max-width: 990px) {
    .cart-main .page-heading {
      margin-bottom: 35px; } }

.cart-main .bundle-snack {
  width: 100%;
  position: fixed;
  bottom: 0;
  padding: 19px 0;
  background-color: #7B4CD2;
  z-index: 99; }
  .cart-main .bundle-snack.snack-1 {
    display: none; }
    .cart-main .bundle-snack.snack-1.is-active {
      display: block; }
  .cart-main .bundle-snack.snack-2 {
    display: none; }
    .cart-main .bundle-snack.snack-2.is-active {
      display: block; }
  .cart-main .bundle-snack.snack-3 {
    display: none; }
    .cart-main .bundle-snack.snack-3.is-active {
      display: block; }
  .cart-main .bundle-snack .incentive-snack {
    display: flex;
    align-items: center;
    justify-content: center; }
    .cart-main .bundle-snack .incentive-snack span {
      color: #ffffff;
      fill: #ffffff;
      font-size: 18px; }
      .cart-main .bundle-snack .incentive-snack span svg {
        fill: inherit;
        vertical-align: middle;
        margin-right: 10px; }

.cart-wrapper {
  position: relative; }

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

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

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

.cart-item {
  border-bottom: 1px solid #D3D3D3;
  clear: both;
  display: block;
  padding: 10px 0 20px; }
  .cart-item:last-child {
    border-bottom: none; }
  @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 {
  padding: 20px 10px 20px 0;
  border-bottom: 1px solid #D3D3D3; }
  .cart-item-block:last-child {
    border: none; }

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

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

.cart-item-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px; }
  .cart-item-title .cart-item-name {
    padding-right: 15px; }
  .cart-item-title .gc-item {
    text-decoration: none; }
  @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: #7B4CD2;
    line-height: .94;
    display: inline-block;
    vertical-align: middle;
    text-decoration: underline; }
    .cart-item-title .change-remove-wrap a:hover {
      color: #6235B6; }
    .cart-item-title .change-remove-wrap a + a {
      margin-left: 1px;
      padding-left: 6px;
      border-left: 1px solid #7B4CD2; }

.cart-item-info {
  margin-bottom: 18px; }
  .cart-item-info span {
    font-family: "Avenir", "Clear Sans";
    font-weight: 700; }

.cart-item-options {
  margin-bottom: 18px; }
  .cart-item-options .show-button-link {
    border: none;
    background: transparent;
    color: #7B4CD2;
    font-size: 18px;
    margin: 0;
    padding: 0;
    text-decoration: underline; }
  .cart-item-options .definitionList {
    display: none;
    margin-bottom: 5px;
    width: 50%; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .cart-item-options .definitionList {
        width: 90%; } }
    .cart-item-options .definitionList.is-open {
      display: block; }
    .cart-item-options .definitionList .definitionList-key,
    .cart-item-options .definitionList .definitionList-value {
      color: #414042;
      font-weight: 500; }
  .cart-item-options .change-remove-wrap a {
    color: #7B9EAB;
    text-decoration: underline; }

@media only screen and (max-width: 767px) {
  .cart-content-container {
    margin-top: 30px; } }

.cart-content-container .grid--flex {
  justify-content: flex-end; }

@media only screen and (max-width: 767px) {
  .cart-content-container .cart-items-container {
    margin-bottom: 30px; } }

.cart-content-container .cart-carousel {
  padding: 32px 0; }
  .cart-content-container .cart-carousel .carousel-border {
    border-bottom: 1px solid #D3D3D3;
    margin: 0 auto 32px; }
    @media only screen and (min-width: 768px) {
      .cart-content-container .cart-carousel .carousel-border {
        padding: 32px 0;
        width: 60%; } }
  .cart-content-container .cart-carousel .section-header {
    margin-bottom: 10px; }

.cart-content-container [data-cart-content] {
  max-height: 900px;
  overflow-y: auto; }

.cart-content-container ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px; }

.cart-content-container ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5); }

.cart-header-quantity {
  text-align: center; }

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

.cart-item-quantity {
  max-width: 220px; }
  .cart-item-quantity .form-select {
    height: 56px;
    background-position: right 4px top 24px;
    background-size: 20px 20px;
    color: #414042;
    border-color: #979797; }
  .cart-item-quantity .form-input--incrementTotal, .cart-item-quantity div.increment-buttons-wrap .button {
    border-color: #D3D3D3; }
  .cart-item-quantity .form-input--incrementTotal {
    font-size: 15px;
    font-weight: 700; }
  @media only screen and (max-width: 767px) {
    .cart-item-quantity .form-increments-wrap {
      vertical-align: middle;
      display: inline-block;
      width: 100%; } }
  .cart-item-quantity .form-increment {
    margin: 0 auto; }
    .cart-item-quantity .form-increment > div.increment-input-wrap {
      width: 35px; }
    .cart-item-quantity .form-increment > div.increment-buttons-wrap {
      width: 28px; }

.cart-item-label {
  display: none; }

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

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

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

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

.cart-remove {
  display: flex;
  color: #7B4CD2; }
  .cart-remove .remove-icon {
    background-color: #e5e5e5;
    border-radius: 50%;
    color: #414042;
    height: 17px;
    margin-top: 2px;
    padding: 3px;
    transition: background-color .15s ease;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-left: 8px; }
  @media only screen and (max-width: 1199px) {
    .cart-remove .remove-text {
      display: none; } }
  .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: #7B4CD2; }
  .cart-remove span {
    position: relative;
    top: 1px; }

.cart-totals {
  list-style: none;
  margin-bottom: 20px; }

.cart-total {
  padding: 15px 0;
  *zoom: 1;
  margin-bottom: 0; }
  .cart-total::after {
    content: '';
    display: table;
    clear: both; }
  .cart-total .form-inlineMessage {
    text-align: left; }
  @media only screen and (min-width: 768px) {
    .cart-total.cart-grandTotal {
      margin-bottom: 26px; } }
  .cart-total.cart-grandTotal .cart-total-label,
  .cart-total.cart-grandTotal .cart-total-value {
    font-size: 24px;
    font-weight: 500; }

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

@media only screen and (max-width: 767px) {
  .cart-total-label {
    width: 45%; } }

@media only screen and (max-width: 767px) {
  .cart-total-value {
    width: 55%; } }

.cart-total-label {
  font-weight: 500;
  font-size: 22px; }
  @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-checkout {
  padding: 8px 0; }
  @media only screen and (max-width: 767px) {
    .cart-action-checkout {
      padding: 0;
      position: absolute;
      bottom: 50px;
      left: 0;
      right: 0; } }

.cart-action-button {
  font-size: 16px;
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #7B4CD2;
  padding: 0;
  transition: color 0.15s ease;
  text-align: right;
  -webkit-appearance: none;
  -khtml-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  text-transform: lowercase;
  border: 0 none;
  cursor: pointer;
  text-decoration: underline;
  background: none; }
  .cart-action-button:hover {
    color: #6235B6; }

.estimator-form {
  padding-top: 34px;
  margin-bottom: 0;
  text-align: right; }
  .estimator-form dl {
    margin-bottom: 20px; }
  .estimator-form .estimator-form-label {
    clear: both;
    float: left;
    font-weight: 400;
    margin-bottom: 0; }
  .estimator-form .estimator-form-input {
    float: right;
    margin-bottom: 1em;
    width: 60%; }
    .estimator-form .estimator-form-input input,
    .estimator-form .estimator-form-input select {
      width: 100%;
      height: 32px;
      line-height: 32px; }
    .estimator-form .estimator-form-input select {
      background-position: right 4px top 12px; }
  .estimator-form .button {
    background-color: #7B4CD2;
    width: 60%; }

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

.cart-form {
  clear: both;
  padding-top: 13px;
  padding-bottom: 18px; }
  .cart-form .coupon-form .form-input,
  .cart-form .cart-gift-certificate-form .form-input {
    margin-right: 11px;
    width: 70%; }
    @media only screen and (min-width: 1400px) {
      .cart-form .coupon-form .form-input,
      .cart-form .cart-gift-certificate-form .form-input {
        margin-right: 22px;
        width: 60%; } }
  .cart-form .coupon-form .button,
  .cart-form .cart-gift-certificate-form .button {
    max-width: 195px; }
    @media only screen and (max-width: 479px) {
      .cart-form .coupon-form .button,
      .cart-form .cart-gift-certificate-form .button {
        padding: 0 20px; } }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .cart-form .coupon-form .button,
      .cart-form .cart-gift-certificate-form .button {
        width: 100%; } }
    @media only screen and (min-width: 1400px) {
      .cart-form .coupon-form .button,
      .cart-form .cart-gift-certificate-form .button {
        width: 100%; } }

.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-actions.checkout .mini-incentives {
    margin-bottom: 20px; }
  .cart-actions.checkout a {
    font-size: 18px;
    width: 100%;
    font-weight: 500; }

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

.empty-cart-wrap .empty-cart-main {
  text-align: center;
  margin-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; }

@media only screen and (max-width: 767px) {
  .cart-sidebar {
    padding-bottom: 128px;
    position: relative; } }

.cart-sidebar .cart-promotions,
.cart-sidebar .cart-totals {
  background-color: #F0F0F0;
  padding: 15px 24px;
  margin-bottom: 24px; }
  @media only screen and (max-width: 767px) {
    .cart-sidebar .cart-promotions,
    .cart-sidebar .cart-totals {
      padding: 15px 10px; } }

.cart-sidebar .cart-promotions .promotions-header {
  font-family: "Avenir", "Clear Sans";
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0; }

.cart-sidebar .cart-promotions .cart-total-label {
  margin-bottom: 5px; }

.cart-sidebar .cart-promotions a {
  text-decoration: underline;
  text-transform: lowercase; }

.cart-sidebar .bundle-incentive {
  max-width: 100%;
  display: flex; }
  @media only screen and (max-width: 990px) {
    .cart-sidebar .bundle-incentive {
      flex-direction: column; } }
  @media only screen and (min-width: 991px) {
    .cart-sidebar .bundle-incentive {
      justify-content: space-between; }
      .cart-sidebar .bundle-incentive .incentive-container {
        border: none;
        margin-right: 5px; } }
  .cart-sidebar .bundle-incentive .reward {
    font-weight: 700; }

@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 #D3D3D3; }
    .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 - (25px + 65px + 300px));
    overflow-y: auto; }
    @media only screen and (min-width: 768px) {
      .previewCart .previewCartList {
        max-height: calc(100vh - (43px + 94px + 270px)); } }
  .previewCart .previewCartItem {
    padding: 20px 20px; }
    .previewCart .previewCartItem + .previewCartItem {
      border-top: 1px solid #D3D3D3; }
    .previewCart .previewCartItem .previewCartItem-content .cart-remove-side {
      height: 26px; }
      .previewCart .previewCartItem .previewCartItem-content .cart-remove-side span {
        vertical-align: middle;
        font-size: 26px;
        line-height: 20px; }
    .previewCart .previewCartItem .previewCartItem-content .form-select {
      height: 54px;
      line-height: 54px;
      max-width: 260px; }
  .previewCart .previewCartItem-image {
    text-align: center; }
  .previewCart .previewCartItem-name {
    margin: 0;
    text-transform: none;
    margin-bottom: 8px; }
    .previewCart .previewCartItem-name .product-link {
      font-size: 18px;
      font-weight: 500;
      color: #7B4CD2; }
  .previewCart .previewCartItem-remove .remove-link {
    font-size: 18px;
    text-decoration: underline;
    color: #7B4CD2; }
  .previewCart .previewCartItem-quantity {
    margin-bottom: 8px; }
  .previewCart .previewCartItem-options {
    list-style: none;
    margin: 0; }
    .previewCart .previewCartItem-options li {
      color: #7B4CD2; }
  .previewCart .previewCartItem-price {
    font-weight: 700;
    color: #54555A;
    display: block;
    margin-bottom: 8px; }
  .previewCart .previewCartAction {
    border-top: 1px solid #D3D3D3;
    display: block;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-around; }
    .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%; }

.mini-incentives {
  padding: 20px; }
  .mini-incentives.cart-incentives {
    padding: 0;
    margin-bottom: 35px; }
    @media only screen and (max-width: 767px) {
      .mini-incentives.cart-incentives {
        padding: 20px 0; } }
    .mini-incentives.cart-incentives .current-incentive span {
      font-size: 16px;
      font-weight: 500; }
      .mini-incentives.cart-incentives .current-incentive span.incentive-reward {
        color: #414042; }
  .mini-incentives .progressBar-container {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative; }
    .mini-incentives .progressBar-container .progressBar-outer {
      height: 10px;
      border-radius: 4px;
      position: relative; }
      .mini-incentives .progressBar-container .progressBar-outer.outer-1 {
        width: 20%;
        display: inline-block;
        z-index: 99; }
      .mini-incentives .progressBar-container .progressBar-outer.outer-2 {
        width: 38%;
        display: inline-block;
        z-index: 9; }
      .mini-incentives .progressBar-container .progressBar-outer.outer-3 {
        width: 42%;
        display: inline-block;
        z-index: 8; }
    .mini-incentives .progressBar-container .reward {
      height: 25px;
      width: 25px;
      background-color: #7B4CD2;
      border-radius: 50%;
      margin: 0 auto;
      position: absolute;
      right: -12px;
      top: -8px; }
      .mini-incentives .progressBar-container .reward.reward3 {
        right: -6px; }
      .mini-incentives .progressBar-container .reward .icon {
        color: #ffffff; }
      .mini-incentives .progressBar-container .reward svg {
        position: absolute;
        height: 12px;
        width: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        fill: currentColor; }
  .mini-incentives .incentive-balance {
    text-align: center;
    font-size: 20px; }
  .mini-incentives .incentive-reward {
    color: #6235B6;
    font-weight: 700; }
  .mini-incentives .progressBar-outer {
    background-color: #D0CCC8; }
    .mini-incentives .progressBar-outer.active {
      display: block;
      height: 10px; }
    .mini-incentives .progressBar-outer .progressBar-inner {
      top: 0;
      height: 9px;
      border-radius: 4px; }

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

.no-results .form.display-flex {
  justify-content: center; }

.facetedSearch-toggle {
  display: none; }

#facetedSearch-navList--category .navList-item:hover {
  background-color: #eeeeee; }

#facetedSearch-navList--category .navList-item a {
  padding-right: 15px; }

#facetedSearch-navList--category .navList-item .navList-action--checkbox:before {
  margin-top: -10px; }

#facetedSearch-navList--category .navList-item .navList-action--checkbox.is-selected:before {
  width: 14px;
  height: 14px;
  background-color: #7B4CD2;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 3px solid white;
  box-shadow: 0 0 0 1px #7B4CD2; }

.mobile-advanced-filters.search-filter .filter-toggle-wrap {
  width: 100%; }
  .mobile-advanced-filters.search-filter .filter-toggle-wrap .form-field {
    display: flex;
    align-items: center; }

@media only screen and (max-width: 767px) {
  .action-bar-wrap .form-field {
    border: none;
    background: transparent;
    position: relative; } }

@media only screen and (max-width: 767px) {
  .action-bar-wrap .form-label {
    background-color: #ffffff;
    height: 56px;
    line-height: 54px;
    padding: 0 8px;
    font-weight: 400;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px; } }

.action-bar-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: ''; }
  @media only screen and (max-width: 767px) {
    .action-bar-wrap select {
      cursor: pointer;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      max-width: 100%;
      border: 0 none;
      height: 100%; } }

.action-bar-wrap .arrow-down {
  position: absolute;
  right: 12px;
  bottom: 8px;
  transform: rotate(90deg); }
  @media only screen and (max-width: 767px) {
    .action-bar-wrap .arrow-down {
      right: 8px;
      bottom: 20px; } }
  .action-bar-wrap .arrow-down svg {
    height: 15px;
    width: 15px;
    fill: #5F6064; }
    @media only screen and (max-width: 767px) {
      .action-bar-wrap .arrow-down svg {
        height: 13px;
        width: 13px; } }

.account-main {
  padding-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .account-main {
      padding-bottom: 100px; } }
  @media only screen and (min-width: 768px) {
    .account-main.login {
      margin-bottom: 63px; } }
  @media only screen and (min-width: 768px) {
    .account-main.account-fixed {
      max-width: 66.667%;
      margin: 0 auto; } }
  .account-main .account-order-content {
    margin-bottom: 30px; }
    .account-main .account-order-content .order-contents-header {
      display: flex;
      align-items: center;
      margin-bottom: 24px; }
      .account-main .account-order-content .order-contents-header .account-heading {
        margin-bottom: 0;
        padding: 0;
        margin-right: 32px; }
      .account-main .account-order-content .order-contents-header .order-backlink {
        color: #7B4CD2;
        text-decoration: underline; }
  .account-main .account-details-section .button {
    font-size: 16px; }
  .account-main .account-details-section .order-details-row {
    display: flex;
    align-items: center;
    margin-bottom: 24px; }
    .account-main .account-details-section .order-details-row .address-block {
      text-transform: capitalize; }
      .account-main .account-details-section .order-details-row .address-block:first-child {
        margin-right: 55px; }
      .account-main .account-details-section .order-details-row .address-block .order-shipping-heading {
        font-weight: 800;
        margin-bottom: 5px;
        text-transform: lowercase; }
      @media only screen and (min-width: 768px) {
        .account-main .account-details-section .order-details-row .address-block .account-order-address {
          margin-bottom: 0; } }
  .account-main.login .page-heading {
    margin-bottom: 24px; }
  .account-main .pagination-list {
    text-align: left; }
  .account-main .account-subheading {
    font-weight: 400;
    line-height: 1;
    font-size: 18px; }
  .account-main .form-actions {
    text-align: left; }
    .account-main .form-actions .first-button {
      margin-right: 24px; }
  .account-main .required-notice {
    margin-bottom: 24px; }
  .account-main p, .account-main .p {
    margin-bottom: 24px; }

.navBar--account .navBar-section {
  display: flex;
  flex-wrap: wrap; }
  .navBar--account .navBar-section .navBar-item {
    display: block; }
    @media only screen and (max-width: 767px) {
      .navBar--account .navBar-section .navBar-item {
        margin: 0;
        border-radius: 30px;
        border: 1px solid #7B4CD2;
        color: #7B4CD2;
        height: 45px;
        line-height: 45px;
        margin-bottom: 12px;
        width: calc(50% - 11px); }
        .navBar--account .navBar-section .navBar-item:nth-child(odd) {
          margin-right: 22px; } }
    @media only screen and (max-width: 767px) {
      .navBar--account .navBar-section .navBar-item.is-active {
        background-color: #7B4CD2;
        color: #ffffff;
        font-weight: 800; }
        .navBar--account .navBar-section .navBar-item.is-active a {
          color: #ffffff; } }
    @media only screen and (max-width: 767px) {
      .navBar--account .navBar-section .navBar-item a {
        color: #7B4CD2; } }

.login-wrap {
  border: 1px solid #000; }
  @media only screen and (max-width: 990px) {
    .login-wrap {
      margin-bottom: 24px; } }
  .login-wrap .create-login-header {
    margin-bottom: 26px;
    font-weight: 500; }
  .login-wrap .login-form .form-field .form-input {
    width: 100%; }
  .login-wrap .login-form .form-field.smaller-margin {
    margin-bottom: 12px; }
  .login-wrap .login-form .password-show-forgot {
    display: flex; }
  .login-wrap .forgot-password {
    color: #7B4CD2;
    text-decoration: underline; }
  .login-wrap .form-actions {
    margin-top: 24px;
    text-align: left; }
    @media only screen and (max-width: 767px) {
      .login-wrap .form-actions {
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      .login-wrap .form-actions .button {
        width: 100%;
        max-width: 375px; } }
  .login-wrap .show-password-link {
    border: none;
    background: transparent;
    color: #7B4CD2;
    font-size: 16px;
    font-weight: 500;
    margin-right: 30px;
    text-align: left;
    text-decoration: underline; }

.new-customer {
  background-color: #eeeeee; }
  .new-customer .create-login-header {
    font-weight: 500;
    margin-bottom: 26px; }
  .new-customer .new-customer-info-wrap {
    margin-bottom: 24px; }
    .new-customer .new-customer-info-wrap .new-customer-fact-list {
      list-style: outside disc none;
      margin: 0;
      margin-left: 15px; }
    .new-customer .new-customer-info-wrap .new-customer-intro {
      margin-bottom: 24px; }
    .new-customer .new-customer-info-wrap .new-customer-fact {
      padding-left: 0; }
  @media only screen and (max-width: 767px) {
    .new-customer .create-button {
      text-align: center; } }
  @media only screen and (max-width: 767px) {
    .new-customer .create-button .button {
      width: 100%;
      max-width: 375px; } }

.login-wrap, .new-customer {
  padding: 24px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .login-wrap, .new-customer {
      min-height: 404px; } }
  @media only screen and (max-width: 767px) {
    .login-wrap .form-actions, .login-wrap .create-button, .new-customer .form-actions, .new-customer .create-button {
      bottom: 15px; } }

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

@media only screen and (min-width: 768px) {
  .new-password .new-password-container {
    margin-bottom: 75px; } }

.new-password .new-password-form .form-input {
  width: 464px;
  max-width: 100%; }

.account-head {
  margin-bottom: 40px;
  text-align: center; }
  .account-head .alertBox {
    padding: 15px 40px;
    text-align: left;
    background-color: #eeeeee;
    text-transform: lowercase; }

.account-body {
  max-width: 952px; }
  .account-body .card {
    margin-bottom: 35px; }

.account-banner {
  background: #eeeeee;
  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 {
  padding: 15px 0;
  margin-bottom: 0;
  font-size: 22px; }

.account-list {
  list-style: none;
  margin-left: 0; }
  .account-list.account-orders-table, .account-list.order-details-table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ABABAB;
    margin-bottom: 32px; }
    .account-list.account-orders-table thead, .account-list.order-details-table thead {
      font-size: 18px;
      font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
      .account-list.account-orders-table thead td, .account-list.order-details-table thead td {
        border: none; }
      .account-list.account-orders-table thead th, .account-list.order-details-table thead th {
        background-color: #eeeeee; }
    .account-list.account-orders-table th, .account-list.account-orders-table td, .account-list.account-orders-table tr, .account-list.order-details-table th, .account-list.order-details-table td, .account-list.order-details-table tr {
      border-collapse: collapse;
      padding: 16px; }
      @media only screen and (max-width: 767px) {
        .account-list.account-orders-table th, .account-list.account-orders-table td, .account-list.account-orders-table tr, .account-list.order-details-table th, .account-list.order-details-table td, .account-list.order-details-table tr {
          padding: 8px; } }
    .account-list.account-orders-table th, .account-list.order-details-table th {
      border: none;
      text-align: left; }
    .account-list.account-orders-table tbody, .account-list.order-details-table tbody {
      font-size: 16px; }
      .account-list.account-orders-table tbody td, .account-list.order-details-table tbody td {
        border: none; }
        .account-list.account-orders-table tbody td a, .account-list.order-details-table tbody td a {
          color: #7B4CD2;
          text-decoration: underline; }
    @media only screen and (max-width: 767px) {
      .account-list.account-orders-table .desktop-header,
      .account-list.account-orders-table .desktop-row, .account-list.order-details-table .desktop-header,
      .account-list.order-details-table .desktop-row {
        display: none; } }
    .account-list.account-orders-table .mobile-row, .account-list.order-details-table .mobile-row {
      border: none; }
      @media only screen and (min-width: 768px) {
        .account-list.account-orders-table .mobile-row, .account-list.order-details-table .mobile-row {
          display: none; } }
      .account-list.account-orders-table .mobile-row :first-child, .account-list.order-details-table .mobile-row :first-child {
        min-width: 100px; }
      @media only screen and (max-width: 990px) {
        .account-list.account-orders-table .mobile-row td, .account-list.order-details-table .mobile-row td {
          font-size: 14px;
          padding: 6px; } }
    @media only screen and (max-width: 767px) {
      .account-list.account-orders-table table, .account-list.account-orders-table thead, .account-list.account-orders-table tbody, .account-list.account-orders-table tr, .account-list.order-details-table table, .account-list.order-details-table thead, .account-list.order-details-table tbody, .account-list.order-details-table tr {
        display: block; } }
  @media only screen and (min-width: 768px) {
    .account-list.account-orders-table tbody tr:nth-child(14n+8) {
      background: #EEEEEE; } }
  @media only screen and (max-width: 767px) {
    .account-list.account-orders-table tbody tr:nth-child(14n+9),
    .account-list.account-orders-table tbody tr:nth-child(14n+10),
    .account-list.account-orders-table tbody tr:nth-child(14n+11),
    .account-list.account-orders-table tbody tr:nth-child(14n+12),
    .account-list.account-orders-table tbody tr:nth-child(14n+13),
    .account-list.account-orders-table tbody tr:nth-child(14n+14) {
      background: #EEEEEE; } }
  @media only screen and (min-width: 768px) {
    .account-list.order-details-table tbody tr:nth-child(12n+7) {
      background: #EEEEEE; } }
  @media only screen and (max-width: 767px) {
    .account-list.order-details-table tbody tr:nth-child(12n+8),
    .account-list.order-details-table tbody tr:nth-child(12n+9),
    .account-list.order-details-table tbody tr:nth-child(12n+10),
    .account-list.order-details-table tbody tr:nth-child(12n+11),
    .account-list.order-details-table tbody tr:nth-child(12n+12),
    .account-list.order-details-table tbody tr:nth-child(12n+13) {
      background: #EEEEEE; } }
  .account-list.order-details-table tbody .account-product-figure {
    margin: 0; }
    .account-list.order-details-table tbody .account-product-figure img {
      max-width: 80px; }
  @media only screen and (max-width: 767px) {
    .account-list.order-details-table tbody .account-product-figure img {
      max-width: 100px; }
    .account-list.order-details-table tbody table tr {
      padding: 0; }
    .account-list.order-details-table tbody tr.bordered {
      border-bottom: 1px solid #ABABAB; }
    .account-list.order-details-table tbody tr td:nth-child(2n) {
      width: 100%;
      text-align: center; } }

.account-listItem {
  border-bottom: 1px solid #D3D3D3;
  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 #D3D3D3;
  font-weight: 700;
  padding: 27px 0; }
  .account-listShipping .account-listShipping-title {
    margin: 0;
    text-transform: inherit; }

.account-product-figure {
  align-items: center;
  position: relative; }

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

.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;
  font-size: 15px; }
  .account-product-title > a {
    text-decoration: none;
    color: #5F7A86; }
  .account-product-title + .definitionList {
    margin-top: 10px; }

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

.account-product-description + .definitionList {
  margin: 14px 0 0;
  border-top: 1px solid #D3D3D3;
  padding-top: 16px;
  max-width: 287px; }
  .account-product-description + .definitionList .definitionList-key {
    float: none;
    margin-bottom: 7px; }
  .account-product-description + .definitionList .definitionList-value {
    color: #7B4CD2;
    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-details {
  padding: 20px 0; }
  .account-product-details .account-product-detail:not(:last-of-type) {
    margin-bottom: 22px; }
  .account-product-details .account-product-detail .account-product-detail-heading {
    color: #757755;
    margin-bottom: 7px; }
  .account-product-details .account-product-detail span {
    color: #7B4CD2; }

.order-details-container .account-orderStatus {
  position: absolute;
  right: 0;
  top: 0; }
  @media only screen and (max-width: 479px) {
    .order-details-container .account-orderStatus {
      position: relative; } }

.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-right: auto; } }

.account-orderTotal .account-orderTotal-line.grand-total .account-orderTotal-key,
.account-orderTotal .account-orderTotal-line.grand-total .account-orderTotal-value {
  font-weight: 700 !important;
  font-size: 24px;
  margin-bottom: 0; }

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

.account-orderTotal .account-orderTotal-key,
.account-orderTotal .account-orderTotal-value {
  font-size: 18px;
  margin-bottom: 8px;
  float: left; }

.account-orderTotal .account-orderTotal-key {
  margin-right: 15px;
  font-weight: 400;
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }

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

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

.account-orderStatus-label {
  background-color: #eeeeee;
  color: #7B4CD2;
  display: inline-block;
  height: 21px;
  line-height: 24px;
  margin: 0 0 15px;
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px; }
  .account-orderStatus-label.background-secondary {
    background-color: #6235B6; }

.account-orderStatus-action {
  color: #7B4CD2;
  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: #6235B6; }

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

.order-status .order-status-line:first-child {
  margin-right: 55px; }

.order-status .order-status-line .order-status-key {
  font-weight: 800;
  font-size: 15px; }

.order-status .button {
  margin-top: 21px; }

.account-actions {
  margin-top: 25px; }

.account-order-address {
  list-style: none; }
  .account-order-address li {
    font-size: 15px; }

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

.order-payments-description {
  color: #7B4CD2;
  font-weight: 400;
  margin-top: 20px; }

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

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

.address {
  margin-bottom: 21px; }
  .address .panel-body {
    padding-bottom: 30px;
    background: #eeeeee;
    padding: 32px;
    min-height: 315px; }
  .address .address-title {
    font-weight: 700;
    margin-bottom: 24px; }
  .address .address-details {
    margin-bottom: 24px; }
    .address .address-details .phone {
      padding-top: 15px; }
    .address .address-details li {
      text-transform: capitalize; }
  @media only screen and (min-width: 768px) {
    .address .address-actions .button {
      padding: 0 40px; } }
  .address .address-actions .button:first-child {
    margin-right: 10px; }
  .address .form-actions {
    display: flex; }
  .address.address-add .panel-body {
    background-color: transparent;
    border: 1px solid #eeeeee;
    min-height: 267px;
    position: relative; }
    .address.address-add .panel-body .address-addNew {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
    .address.address-add .panel-body .address-symbol {
      font-size: 50px;
      color: #5F7A86; }

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

.address-title {
  margin: 0; }

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

@media screen and (max-width: 480px) {
  [data-address-form] .form-actions .button {
    margin-bottom: 10px;
    width: 100%; }
  [data-address-form] .form-actions:last-child {
    margin-bottom: 0; } }

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

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

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

.modal .wishlist-header {
  display: block; }

.wishlist-form {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px; }
  .wishlist-form .form-field {
    width: 100%; }

.share-wishlist {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
  text-align: center; }

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

.send-message-form .form-field .form-label, .return-form .form-field .form-label {
  display: block; }

.send-message-form .form-field input[type="text"], .send-message-form .form-field .form-select, .return-form .form-field input[type="text"], .return-form .form-field .form-select {
  width: 100%;
  max-width: 489px; }

.forgot-password-content {
  max-width: 708px;
  margin: 0 0 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; }

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

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

.multisite-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0; }
  .multisite-header .logo-divider {
    height: 35px;
    width: 1px;
    background-color: #7B4CD2;
    margin: 0 15px; }
  .multisite-header .product-logo.body-logo svg {
    fill: currentColor;
    width: 145px;
    height: 24px; }
    @media only screen and (max-width: 479px) {
      .multisite-header .product-logo.body-logo svg {
        width: 95px; } }
    @media only screen and (max-width: 360px) {
      .multisite-header .product-logo.body-logo svg {
        width: 70px; } }
  .multisite-header .product-logo.men-logo svg {
    fill: currentColor;
    width: 85px;
    height: 35px; }
    @media only screen and (max-width: 479px) {
      .multisite-header .product-logo.men-logo svg {
        width: 55px; } }
    @media only screen and (max-width: 360px) {
      .multisite-header .product-logo.men-logo svg {
        width: 50px; } }

.add-address .form,
.account-settings .form {
  max-width: 952px; }

[data-payment-method-form] {
  padding: 20px 0 0; }

@media only screen and (max-width: 767px) {
  .account-heading {
    display: flex;
    align-items: center;
    justify-content: space-between; } }

.account-heading .navBar-action {
  font-size: 16px;
  text-decoration: underline; }

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

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

#featured-products-section,
#related-products-section {
  background-color: #eeeeee;
  padding: 30px 0 65px; }
  #featured-products-section.product-section,
  #related-products-section.product-section {
    padding: 48px 0; }
  #featured-products-section .productGrid,
  #related-products-section .productGrid {
    margin-top: 0; }
  #featured-products-section .slick-dots,
  #related-products-section .slick-dots {
    padding-left: 22px; }
  #featured-products-section .slick-prev:before, #featured-products-section .slick-next:before,
  #related-products-section .slick-prev:before,
  #related-products-section .slick-next:before {
    content: none; }
  #featured-products-section .slick-prev:hover, #featured-products-section .slick-prev:active, #featured-products-section .slick-next:hover, #featured-products-section .slick-next:active,
  #related-products-section .slick-prev:hover,
  #related-products-section .slick-prev:active,
  #related-products-section .slick-next:hover,
  #related-products-section .slick-next:active {
    background-color: rgba(84, 85, 90, 0.65); }
  #featured-products-section .slick-prev svg, #featured-products-section .slick-next svg,
  #related-products-section .slick-prev svg,
  #related-products-section .slick-next svg {
    height: 18px;
    width: 18px;
    fill: #ffffff; }
  #featured-products-section .slick-prev,
  #related-products-section .slick-prev {
    left: 20px; }
    #featured-products-section .slick-prev svg,
    #related-products-section .slick-prev svg {
      transform: rotate(180deg); }
  #featured-products-section .slick-next,
  #related-products-section .slick-next {
    right: 0; }
  #featured-products-section .card:hover,
  #related-products-section .card:hover {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3); }
  #featured-products-section .card .card-rating,
  #related-products-section .card .card-rating {
    display: none; }
  #featured-products-section .card .card-body,
  #related-products-section .card .card-body {
    min-height: 100px; }
  #featured-products-section.featured-default,
  #related-products-section.featured-default {
    background-color: #F6F5F5; }
    #featured-products-section.featured-default .section-header,
    #related-products-section.featured-default .section-header {
      font-weight: 500;
      margin-bottom: 48px; }
    #featured-products-section.featured-default .card-body,
    #related-products-section.featured-default .card-body {
      text-align: center; }

#testimonial-section {
  background-color: #5f7a86;
  padding: 32px 0;
  margin-bottom: 60px; }
  #testimonial-section h2, #testimonial-section .h2, #testimonial-section h4, #testimonial-section .h4, #testimonial-section span {
    color: #ffffff; }
  #testimonial-section .review-container {
    display: flex;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      #testimonial-section .review-container {
        flex-direction: column; } }
  @media only screen and (min-width: 768px) {
    #testimonial-section .single-review {
      margin-right: 50px; } }
  #testimonial-section .single-review:last-child {
    margin-right: 0; }
  @media only screen and (max-width: 990px) {
    #testimonial-section .single-review {
      margin-bottom: 25px; } }
  #testimonial-section .single-review .review-content .review-heading {
    margin-bottom: 16px;
    font-size: 22px; }
  #testimonial-section .single-review .review-content .review-source {
    position: relative;
    font-style: italic;
    font-size: 14px; }
    #testimonial-section .single-review .review-content .review-source::before {
      content: '';
      width: 15px;
      border-bottom: 1px solid #ffffff;
      position: absolute;
      left: -25px;
      top: 50%;
      transform: translateY(-50%); }

.scrolling-text-section {
  background: linear-gradient(89.81deg, #425ED9 -8.72%, #7E57C6 24.07%, #4DA1C6 84.35%, #31C9D5 103.69%);
  height: 100px;
  margin-bottom: 70px;
  max-width: 100%;
  position: relative;
  overflow: hidden; }
  .scrolling-text-section .scrolling-text {
    animation: scrolling-text  20s linear infinite;
    display: inline-block;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    white-space: nowrap; }
    .scrolling-text-section .scrolling-text p, .scrolling-text-section .scrolling-text .p {
      color: #ffffff;
      display: inline-block;
      font-size: 24px;
      font-weight: 500;
      line-height: 100px; }

@-webkit-keyframes scrolling-text {
  0% {
    -webkit-transform: translate(0, 0, 0); }
  100% {
    -webkit-transform: translate(-50%, 0, 0); } }

@keyframes scrolling-text {
  0% {
    transform: translate3d(0, 0, 0); }
  100% {
    transform: translate3d(-50%, 0, 0); } }

.dual-banner-section {
  margin-bottom: 70px; }
  .dual-banner-section .dual-banner:first-child {
    margin-bottom: 70px; }
    @media only screen and (min-width: 768px) {
      .dual-banner-section .dual-banner:first-child {
        margin-bottom: 100px; } }
  @media only screen and (max-width: 767px) {
    .dual-banner-section .dual-banner .dual-image {
      margin-bottom: 20px; } }
  @media only screen and (min-width: 768px) {
    .dual-banner-section .dual-banner .dual-content {
      margin: 0 auto;
      max-width: 375px; } }
  .dual-banner-section .dual-banner .dual-content .dual-title {
    font-weight: 500;
    letter-spacing: -0.2px;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .dual-banner-section .dual-banner .dual-content .dual-title {
        line-height: 50px;
        margin-bottom: 32px; } }
  @media only screen and (max-width: 767px) {
    .dual-banner-section .dual-banner .dual-content .dual-subtitle {
      font-weight: 400; } }
  @media only screen and (min-width: 768px) {
    .dual-banner-section .dual-banner .dual-content .dual-subtitle {
      line-height: 24px;
      letter-spacing: -0.2px;
      margin-bottom: 30px; } }
  @media (max-width: 800px) {
    .dual-banner-section .dual-banner .dual-content .dual-subtitle {
      font-size: 16px; } }
  @media only screen and (max-width: 767px) {
    .dual-banner-section .dual-banner .dual-content .dual-button {
      text-align: center; } }
  .dual-banner-section .dual-banner .dual-content .dual-button .button {
    width: 100%; }
    @media only screen and (min-width: 480px) {
      .dual-banner-section .dual-banner .dual-content .dual-button .button {
        width: 350px; } }
    @media only screen and (min-width: 768px) {
      .dual-banner-section .dual-banner .dual-content .dual-button .button {
        max-width: 195px; } }

.icon-bar {
  background: linear-gradient(86.71deg, #3063DB -5.52%, #7B4CD2 49.5%, #A55BA9 81.18%, #F25D77 102.57%);
  margin-bottom: 70px;
  position: relative; }
  .icon-bar .wrapper {
    height: 100%; }
  .icon-bar .icons-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    padding: 26px 0; }
    @media only screen and (max-width: 767px) {
      .icon-bar .icons-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0; } }
    @media only screen and (max-width: 990px) {
      .icon-bar .icons-container {
        flex-wrap: wrap; } }
    .icon-bar .icons-container .banner-icon {
      display: flex;
      align-items: center;
      margin-right: 15px; }
      @media only screen and (max-width: 767px) {
        .icon-bar .icons-container .banner-icon {
          margin-right: 0;
          margin-bottom: 24px; }
          .icon-bar .icons-container .banner-icon:last-child {
            margin-bottom: 0; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .icon-bar .icons-container .banner-icon {
          width: 47%; }
          .icon-bar .icons-container .banner-icon:nth-child(-n+2) {
            margin-bottom: 20px; } }
      .icon-bar .icons-container .banner-icon .icon {
        color: #ffffff; }
        .icon-bar .icons-container .banner-icon .icon svg {
          fill: currentColor;
          height: 44px;
          margin-right: 15px;
          vertical-align: middle;
          width: 48px; }
      .icon-bar .icons-container .banner-icon .icon-text {
        color: #ffffff;
        font-size: 24px;
        font-weight: 500; }
        @media only screen and (max-width: 767px) {
          .icon-bar .icons-container .banner-icon .icon-text {
            font-size: 20px; } }

.refills-refreshed-section {
  margin-bottom: 70px; }
  @media only screen and (min-width: 991px) {
    .refills-refreshed-section {
      margin-bottom: 105px;
      padding-top: 60px; } }
  .refills-refreshed-section .refills-container {
    display: flex; }
    @media only screen and (max-width: 767px) {
      .refills-refreshed-section .refills-container {
        padding-bottom: 50px;
        padding-top: 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .refills-refreshed-section .refills-container {
        padding: 50px 0; } }
    @media only screen and (min-width: 991px) {
      .refills-refreshed-section .refills-container {
        height: 640px; } }
    @media only screen and (min-width: 1200px) {
      .refills-refreshed-section .refills-container {
        align-items: flex-end; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .refills-refreshed-section .refills-container .refills-content {
        margin: 0 auto; } }
    @media only screen and (min-width: 768px) {
      .refills-refreshed-section .refills-container .refills-content {
        max-width: 405px; } }
    .refills-refreshed-section .refills-container .refills-content .refills-title {
      font-weight: 500;
      line-height: 50px;
      letter-spacing: -0.2px;
      margin-bottom: 10px; }
      @media only screen and (min-width: 991px) {
        .refills-refreshed-section .refills-container .refills-content .refills-title {
          margin-bottom: 32px; } }
    .refills-refreshed-section .refills-container .refills-content .refills-subtitle {
      line-height: 24px;
      letter-spacing: -0.2px;
      margin-bottom: 30px; }
    @media only screen and (max-width: 990px) {
      .refills-refreshed-section .refills-container .refills-content .button-wrapper {
        text-align: center; } }
    .refills-refreshed-section .refills-container .refills-content .button-wrapper .button {
      max-width: 100%; }
      @media only screen and (min-width: 480px) {
        .refills-refreshed-section .refills-container .refills-content .button-wrapper .button {
          margin: 0 auto;
          max-width: 350px; } }
      @media only screen and (min-width: 991px) {
        .refills-refreshed-section .refills-container .refills-content .button-wrapper .button {
          width: auto; } }
    @media only screen and (max-width: 990px) {
      .refills-refreshed-section .refills-container .image-wrapper {
        margin-bottom: 18px; } }

.good-fight-section {
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 80px; }
  @media only screen and (min-width: 1200px) {
    .good-fight-section {
      height: 1400px; } }
  @media only screen and (max-width: 990px) {
    .good-fight-section {
      background-image: none !important; } }
  @media only screen and (min-width: 768px) {
    .good-fight-section .good-fight-top {
      margin-bottom: 110px; } }
  @media only screen and (max-width: 990px) {
    .good-fight-section .good-fight-top .wrapper {
      padding: 0; } }
  .good-fight-section .good-fight-top .top-content-left {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
    @media only screen and (min-width: 991px) {
      .good-fight-section .good-fight-top .top-content-left {
        background-image: none !important; } }
  .good-fight-section .good-fight-top video {
    display: block;
    height: 100%;
    width: 100%; }
  .good-fight-section .good-fight-top .good-fight-content-container {
    background-color: #6235B6;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 60px; }
    .good-fight-section .good-fight-top .good-fight-content-container h2, .good-fight-section .good-fight-top .good-fight-content-container .h2, .good-fight-section .good-fight-top .good-fight-content-container h3, .good-fight-section .good-fight-top .good-fight-content-container .h3, .good-fight-section .good-fight-top .good-fight-content-container p, .good-fight-section .good-fight-top .good-fight-content-container .p {
      color: #ffffff; }
    .good-fight-section .good-fight-top .good-fight-content-container .good-fight-title {
      font-weight: 500;
      line-height: 50px;
      letter-spacing: -0.2px;
      margin-bottom: 30px; }
    .good-fight-section .good-fight-top .good-fight-content-container .good-fight-subtitle {
      font-weight: 500;
      line-height: 24px;
      letter-spacing: -0.2px;
      margin-bottom: 40px; }
    .good-fight-section .good-fight-top .good-fight-content-container .button {
      font-size: 18px;
      width: 221px; }
  .good-fight-section .good-fight-bottom {
    background-repeat: no-repeat;
    background-size: cover; }
    @media only screen and (max-width: 990px) {
      .good-fight-section .good-fight-bottom {
        height: 1000px;
        background-position: center; } }
    @media only screen and (min-width: 991px) {
      .good-fight-section .good-fight-bottom {
        background-image: none !important; } }
    .good-fight-section .good-fight-bottom .wrapper {
      height: 100%; }
    .good-fight-section .good-fight-bottom .future-friends-container {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center; }
  .good-fight-section .future-friends-content {
    position: relative;
    margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      .good-fight-section .future-friends-content {
        width: 350px;
        max-width: 100%;
        margin: 0 auto; } }
    .good-fight-section .future-friends-content .future-friends-blocks {
      display: flex;
      list-style-type: none;
      margin-bottom: 23px; }
      @media only screen and (max-width: 767px) {
        .good-fight-section .future-friends-content .future-friends-blocks {
          flex-direction: column;
          margin-bottom: 50px; } }
      .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1; }
        @media only screen and (max-width: 767px) {
          .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block {
            flex-direction: row;
            align-items: center;
            margin-bottom: 40px; }
            .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block:last-child {
              margin-bottom: 0; } }
        @media only screen and (min-width: 768px) {
          .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block .title-wrap {
            width: 222px;
            margin: 0 auto; } }
        .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block .icon {
          color: #665EC7;
          margin-bottom: 10px; }
          @media only screen and (max-width: 767px) {
            .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block .icon {
              margin-right: 20px;
              margin-bottom: 0; } }
        .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block svg {
          fill: currentColor;
          width: 50px;
          height: 50px; }
          @media only screen and (min-width: 768px) {
            .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block svg {
              width: 88px;
              height: 88px; } }
        .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block .block-title {
          max-width: 280px;
          margin: 0; }
          @media only screen and (min-width: 768px) {
            .good-fight-section .future-friends-content .future-friends-blocks .future-friends-block .block-title {
              text-align: center; } }

.that-method-section {
  position: relative;
  margin-bottom: 100px; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .that-method-section {
      padding-top: 75px; } }
  @media only screen and (min-width: 768px) {
    .that-method-section {
      margin-bottom: 35px; } }
  .that-method-section .that-method-content {
    text-align: center;
    max-width: 100%;
    width: 680px; }
    @media only screen and (min-width: 768px) {
      .that-method-section .that-method-content {
        left: 50%;
        transform: translateX(-50%);
        position: absolute; } }
    @media only screen and (max-width: 1199px) {
      .that-method-section .that-method-content {
        top: -10px; } }
    .that-method-section .that-method-content .that-method-title {
      font-weight: 500;
      margin-bottom: 15px; }
      @media only screen and (max-width: 767px) {
        .that-method-section .that-method-content .that-method-title {
          line-height: 34px;
          max-width: 325px;
          margin: 0 auto; } }
    .that-method-section .that-method-content .subtitle {
      font-weight: 400;
      letter-spacing: -0.2px;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        .that-method-section .that-method-content .subtitle {
          padding: 0 24px;
          margin-bottom: 25px; } }
    @media only screen and (max-width: 767px) {
      .that-method-section .that-method-content .that-method-cta {
        padding: 0 24px; } }
    .that-method-section .that-method-content .that-method-cta .button {
      max-width: 264px; }
      @media only screen and (max-width: 767px) {
        .that-method-section .that-method-content .that-method-cta .button {
          max-width: 100%; } }
  .that-method-section .that-method-image {
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .that-method-section .that-method-image {
        margin-bottom: 20px; } }
    @media only screen and (min-width: 991px) and (max-width: 1400px) {
      .that-method-section .that-method-image.desktop {
        padding-top: 50px; } }

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

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

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

#promo-images-section .promo-heading {
  color: #7B4CD2; }

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

#content-with-bg-section {
  background-image: url("https://via.placeholder.com/1920x550.jpg");
  background-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 {
  padding: 20px 0 0;
  margin-bottom: 0; }
  @media only screen and (min-width: 768px) {
    #icon-row-section {
      padding: 30px 0 65px; } }
  @media (min-width: 600px) and (max-width: 767px) {
    #icon-row-section .scent-slider-container {
      max-width: 75%;
      margin: 0 auto; } }
  #icon-row-section .color-sea-surf {
    background-color: #4A757E; }
    #icon-row-section .color-sea-surf h2:after, #icon-row-section .color-sea-surf .h2:after, #icon-row-section .color-sea-surf .scent-title:after {
      background-color: #97C0BB; }
  #icon-row-section .color-cedar-cypress {
    background-color: #876C53; }
    #icon-row-section .color-cedar-cypress h2:after, #icon-row-section .color-cedar-cypress .h2:after, #icon-row-section .color-cedar-cypress .scent-title:after {
      background-color: #DEB791; }
  #icon-row-section .color-juniper-sage {
    background-color: #657A69; }
    #icon-row-section .color-juniper-sage h2:after, #icon-row-section .color-juniper-sage .h2:after, #icon-row-section .color-juniper-sage .scent-title:after {
      background-color: #344537; }
  #icon-row-section .color-bergamot-lime {
    background-color: #7A701F; }
    #icon-row-section .color-bergamot-lime h2:after, #icon-row-section .color-bergamot-lime .h2:after, #icon-row-section .color-bergamot-lime .scent-title:after {
      background-color: #B3AC72; }
  #icon-row-section .color-sandalwood-vetiver {
    background-color: #875954; }
    #icon-row-section .color-sandalwood-vetiver h2:after, #icon-row-section .color-sandalwood-vetiver .h2:after, #icon-row-section .color-sandalwood-vetiver .scent-title:after {
      background-color: #553122; }
  #icon-row-section .scent-block {
    position: relative; }
    #icon-row-section .scent-block .scent-button, #icon-row-section .scent-block .desktop-scent-selector {
      outline: none;
      position: absolute;
      left: 0;
      right: 0;
      height: 100%; }
  #icon-row-section .scent-icon-header {
    text-align: center; }
  @media only screen and (min-width: 768px) {
    #icon-row-section .icon-row {
      display: flex;
      justify-content: space-between; } }
  #icon-row-section .icon-row .slick-dots {
    bottom: -15px; }
    @media only screen and (max-width: 767px) {
      #icon-row-section .icon-row .slick-dots {
        bottom: -5px; } }
  @media only screen and (min-width: 768px) {
    #icon-row-section .icon-row .scent-block:hover {
      -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
      -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.5); }
      #icon-row-section .icon-row .scent-block:hover .icon-single.color-sea-surf {
        background-color: #41676F; }
      #icon-row-section .icon-row .scent-block:hover .icon-single.color-cedar-cypress {
        background-color: #735C46; }
      #icon-row-section .icon-row .scent-block:hover .icon-single.color-juniper-sage {
        background-color: #4C5B4F; }
      #icon-row-section .icon-row .scent-block:hover .icon-single.color-bergamot-lime {
        background-color: #5C5416; }
      #icon-row-section .icon-row .scent-block:hover .icon-single.color-sandalwood-vetiver {
        background-color: #714641; }
        #icon-row-section .icon-row .scent-block:hover .icon-single.color-sandalwood-vetiver .scent-title:after {
          background-color: #A57570; } }
  #icon-row-section .icon-row .icon-single {
    padding: 30px 10px; }
    @media only screen and (max-width: 767px) {
      #icon-row-section .icon-row .icon-single {
        text-align: center;
        margin-bottom: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      #icon-row-section .icon-row .icon-single {
        min-height: 271px; } }
    @media only screen and (min-width: 991px) and (max-width: 1199px) {
      #icon-row-section .icon-row .icon-single {
        min-height: 280px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1399px) {
      #icon-row-section .icon-row .icon-single {
        min-height: 286px; } }
    @media only screen and (min-width: 1400px) {
      #icon-row-section .icon-row .icon-single {
        min-height: 258px; } }
    #icon-row-section .icon-row .icon-single .icon-wrap {
      text-align: center;
      padding: 6px 0; }
      #icon-row-section .icon-row .icon-single .icon-wrap .scent {
        width: 42px;
        height: 42px; }
    #icon-row-section .icon-row .icon-single .title-wrap {
      text-align: center; }
      @media only screen and (min-width: 768px) {
        #icon-row-section .icon-row .icon-single .title-wrap {
          width: 222px;
          margin: 0 auto; } }
      #icon-row-section .icon-row .icon-single .title-wrap .scent-title {
        color: #ffffff;
        margin-bottom: 30px; }
        @media only screen and (max-width: 990px) {
          #icon-row-section .icon-row .icon-single .title-wrap .scent-title {
            margin-bottom: 15px; } }
        @media only screen and (min-width: 991px) and (max-width: 1199px) {
          #icon-row-section .icon-row .icon-single .title-wrap .scent-title {
            font-size: 24px; } }
        #icon-row-section .icon-row .icon-single .title-wrap .scent-title:after {
          content: '';
          display: block;
          position: relative;
          height: 4px;
          width: 168px;
          bottom: -10px;
          margin: auto; }
      #icon-row-section .icon-row .icon-single .title-wrap .scent-description {
        color: #ffffff; }
        @media only screen and (min-width: 1200px) {
          #icon-row-section .icon-row .icon-single .title-wrap .scent-description {
            padding: 0 15px; } }
        @media only screen and (max-width: 767px) {
          #icon-row-section .icon-row .icon-single .title-wrap .scent-description {
            padding: 0 60px;
            margin-bottom: 0;
            min-height: 48px; } }
        @media (max-width: 459px) {
          #icon-row-section .icon-row .icon-single .title-wrap .scent-description {
            padding: 0 18px; } }
        @media (max-width: 350px) {
          #icon-row-section .icon-row .icon-single .title-wrap .scent-description {
            min-height: 72px; } }
      #icon-row-section .icon-row .icon-single .title-wrap .underline {
        color: #ffffff;
        text-decoration: underline;
        margin: 0; }
  #icon-row-section .scent-summaries {
    display: none; }
    @media only screen and (min-width: 768px) {
      #icon-row-section .scent-summaries {
        padding-top: 30px; } }
    #icon-row-section .scent-summaries.is-active {
      display: block; }
    #icon-row-section .scent-summaries .scent-summary {
      opacity: 0;
      display: none; }
      #icon-row-section .scent-summaries .scent-summary.is-active {
        padding: 30px 0; }
        #icon-row-section .scent-summaries .scent-summary.is-active.show {
          opacity: 1;
          transition: opacity .8s ease-in-out;
          -moz-transition: opacity .8s ease-in-out;
          -webkit-transition: opacity .8s ease-in-out; }
      #icon-row-section .scent-summaries .scent-summary h2, #icon-row-section .scent-summaries .scent-summary .h2, #icon-row-section .scent-summaries .scent-summary .detail-header,
      #icon-row-section .scent-summaries .scent-summary .scent-summary-detail {
        color: #ffffff; }
      #icon-row-section .scent-summaries .scent-summary .scent-summary-header {
        text-align: center;
        margin-bottom: 30px;
        position: relative; }
        #icon-row-section .scent-summaries .scent-summary .scent-summary-header .scent {
          height: 42px;
          width: 42px; }
        #icon-row-section .scent-summaries .scent-summary .scent-summary-header h2, #icon-row-section .scent-summaries .scent-summary .scent-summary-header .h2 {
          margin-bottom: 30px;
          line-height: 30px; }
          @media only screen and (max-width: 990px) {
            #icon-row-section .scent-summaries .scent-summary .scent-summary-header h2, #icon-row-section .scent-summaries .scent-summary .scent-summary-header .h2 {
              margin-bottom: 15px; } }
          #icon-row-section .scent-summaries .scent-summary .scent-summary-header h2:after, #icon-row-section .scent-summaries .scent-summary .scent-summary-header .h2:after {
            content: '';
            display: block;
            position: relative;
            height: 4px;
            width: 168px;
            bottom: -20px;
            margin: auto; }
        #icon-row-section .scent-summaries .scent-summary .scent-summary-header .scent-close {
          position: absolute;
          right: 15px;
          top: -10px;
          color: #ffffff;
          cursor: pointer; }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        #icon-row-section .scent-summaries .scent-summary .scent-summary-wrapper {
          padding-top: 30px; } }
      @media only screen and (min-width: 991px) {
        #icon-row-section .scent-summaries .scent-summary .scent-summary-wrapper {
          padding-top: 40px; } }
      #icon-row-section .scent-summaries .scent-summary .scent-summary-content {
        position: relative; }
        #icon-row-section .scent-summaries .scent-summary .scent-summary-content .image-wrap {
          width: 42%;
          max-width: 350px;
          margin: 0 auto;
          text-align: center; }
          #icon-row-section .scent-summaries .scent-summary .scent-summary-content .image-wrap .summary-image {
            margin-bottom: 20px; }
        #icon-row-section .scent-summaries .scent-summary .scent-summary-content .scent-summary-details .detail-header {
          margin-bottom: 0; }
          @media only screen and (max-width: 990px) {
            #icon-row-section .scent-summaries .scent-summary .scent-summary-content .scent-summary-details .detail-header {
              font-size: 14px; } }
        @media only screen and (max-width: 990px) {
          #icon-row-section .scent-summaries .scent-summary .scent-summary-content .scent-summary-details .scent-summary-detail {
            font-size: 14px; } }
  #icon-row-section #scents-row .slick-next,
  #icon-row-section #scents-row .slick-prev {
    z-index: 2; }
    @media only screen and (min-width: 768px) {
      #icon-row-section #scents-row .slick-next,
      #icon-row-section #scents-row .slick-prev {
        top: 50%; } }
    #icon-row-section #scents-row .slick-next svg,
    #icon-row-section #scents-row .slick-prev svg {
      fill: #ffffff; }
    #icon-row-section #scents-row .slick-next.slick-disabled,
    #icon-row-section #scents-row .slick-prev.slick-disabled {
      opacity: 0; }
  #icon-row-section #scents-row .slick-next {
    right: 15px; }
    @media only screen and (min-width: 768px) {
      #icon-row-section #scents-row .slick-next {
        right: -20px; } }
    #icon-row-section #scents-row .slick-next svg {
      height: 20px;
      width: 20px;
      position: relative;
      left: 3px; }
  #icon-row-section #scents-row .slick-prev {
    left: 15px; }
    @media only screen and (min-width: 768px) {
      #icon-row-section #scents-row .slick-prev {
        left: 0px; } }
    #icon-row-section #scents-row .slick-prev svg {
      height: 20px;
      width: 20px;
      transform: rotate(180deg);
      position: relative;
      right: 3px; }

@media only screen and (max-width: 767px) {
  .scent-close {
    display: none; } }

.white-popup {
  animation: open .6s; }

@keyframes open {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes close {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

#about-icon-section.homepage-section {
  margin-bottom: 15px; }

#about-icon-section .icon-heading {
  margin-bottom: 35px;
  text-transform: uppercase; }
  @media only screen and (max-width: 990px) {
    #about-icon-section .icon-heading {
      margin-bottom: 10px;
      font-size: 22px; } }

@media only screen and (min-width: 768px) and (max-width: 990px) {
  #about-icon-section .icon-container {
    margin-bottom: 20px; } }

@media only screen and (max-width: 767px) {
  #about-icon-section .icon-container {
    margin-bottom: 12px; } }

#about-icon-section .icon-container .icon,
#about-icon-section .icon-container .icon-img {
  height: 100px;
  width: 100px;
  margin-bottom: 10px; }

#about-icon-section .icon-container .copy-container {
  text-align: center; }

#about-icon-section .link-container {
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
  #about-icon-section .link-container .about-link {
    text-decoration: underline; }

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

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1484px;
  padding: 0 22px;
  width: 100%; }
  .wrapper.ten-columns {
    max-width: 1240.33333px; }
  .wrapper.eight-columns {
    max-width: 996.66667px; }
  .wrapper.six-columns {
    max-width: 753px; }
  @media only screen and (min-width: 768px) {
    .wrapper.custom-width {
      padding: 0 44px; } }
  .wrapper.category .breadcrumbs {
    padding: 25px 0 15px; }

.six-columns {
  margin-left: auto;
  margin-right: auto;
  padding: 0 22px;
  max-width: 753px; }

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

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

.header .header-main {
  background-color: #ffffff;
  border-bottom: 1px solid #ABABAB;
  z-index: 102; }
  @media only screen and (max-width: 990px) {
    .header .header-main {
      padding: 0 0 24px 0; } }
  .header .header-main.bordered {
    border-bottom: 1px solid #6235B6; }
  .header .header-main .wrapper {
    position: static; }
    .header .header-main .wrapper.cart-preview-wrapper {
      position: relative; }
  .header .header-main .navUser-container-desktop {
    background-color: #414042; }
  .header .header-main .action-bar .navUser-item {
    margin-right: 40px; }
    .header .header-main .action-bar .navUser-item:last-child {
      margin-right: 0; }
  .header .header-main .action-bar a {
    color: #ffffff;
    height: 60px;
    line-height: 60px; }
  .header .header-main .action-bar ul {
    margin-bottom: 0; }
  .header .header-main .navigation-container {
    display: flex; }
    @media only screen and (max-width: 990px) {
      .header .header-main .navigation-container {
        justify-content: center; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .header .header-main .navigation-container .logo-wrap {
        margin-right: 8px; } }
    @media only screen and (min-width: 991px) {
      .header .header-main .navigation-container .logo-wrap {
        margin-right: 45px; } }
    @media only screen and (min-width: 1200px) {
      .header .header-main .navigation-container .logo-wrap {
        margin-right: 75px; } }
  .header .header-main .mobile-header-search,
  .header .header-main .desktop-search {
    margin: 0;
    position: relative; }
    @media only screen and (min-width: 1400px) {
      .header .header-main .mobile-header-search,
      .header .header-main .desktop-search {
        width: 100%; } }
    .header .header-main .mobile-header-search .form-field,
    .header .header-main .desktop-search .form-field {
      margin: 0; }
      .header .header-main .mobile-header-search .form-field .form-input,
      .header .header-main .desktop-search .form-field .form-input {
        width: 100%;
        display: block;
        height: 48px;
        padding-right: 48px; }
    .header .header-main .mobile-header-search button,
    .header .header-main .desktop-search button {
      position: absolute;
      right: 0;
      height: 100%;
      top: 0;
      padding: 0 15px;
      -webkit-appearance: none;
      -khtml-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      -o-appearance: none;
      appearance: none;
      border: 0 none;
      background: transparent; }
      .header .header-main .mobile-header-search button .icon,
      .header .header-main .desktop-search button .icon {
        font-size: 0;
        display: block;
        padding: 0;
        width: 16px;
        height: 16px; }

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

@media only screen and (max-width: 990px) {
  .header#bundle-header {
    display: flex;
    flex-direction: column-reverse; } }

.header-logo {
  font-size: 0;
  margin: 0 auto; }
  .header-logo:not(.method-product) {
    height: 65px;
    line-height: 65px; }
  @media only screen and (min-width: 768px) {
    .header-logo {
      margin: 0;
      padding: 0; }
      .header-logo:not(.method-product) {
        height: 94px;
        line-height: 94px; } }
  .header-logo .multi-header {
    display: flex;
    align-items: center;
    justify-content: flex-start; }
    .header-logo .multi-header:first-child .logo-item, .header-logo .multi-header:last-child .logo-item {
      margin-right: 0; }
    .header-logo .multi-header .logo-item {
      margin-right: 30px; }
      @media only screen and (max-width: 767px) {
        .header-logo .multi-header .logo-item {
          flex: 1 1 30%;
          margin-right: 10px; }
          .header-logo .multi-header .logo-item.large {
            flex: 1 1 40%; } }
    .header-logo .multi-header .header-logo-container:hover {
      color: inherit; }
    .header-logo .multi-header .logo-divider {
      height: 35px;
      width: 1px;
      background-color: #7B4CD2;
      margin: 0 15px; }
    .header-logo .multi-header .home-logo {
      width: 150px; }
  .header-logo > a {
    color: #414042;
    display: inline-block;
    position: relative;
    text-decoration: none;
    width: 100%;
    z-index: 5; }
    @media only screen and (min-width: 768px) {
      .header-logo > a {
        background: none;
        border-bottom: 0;
        display: inline-block;
        padding: 0; } }
    .header-logo > a:hover, .header-logo > a:active {
      color: #414042; }

.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;
  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: 65px; }
  @media only screen and (min-width: 768px) {
    .header-logo-image {
      max-height: 94px; } }

.promo-bar {
  color: #ffffff;
  background-color: #7B4CD2; }
  .promo-bar .promo-text {
    background-color: #00BCB5;
    letter-spacing: normal;
    padding: 5px; }
    @media only screen and (min-width: 768px) {
      .promo-bar .promo-text {
        padding: 16px 0; } }
    .promo-bar .promo-text [data-event-type] {
      margin: 0; }
      @media only screen and (min-width: 768px) {
        .promo-bar .promo-text [data-event-type] {
          font-size: 14px; } }
    .promo-bar .promo-text a {
      text-decoration: underline; }

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

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

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

.navPages-list {
  margin: 0;
  font-size: 0; }

.navPages-action {
  color: #414042;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  display: block; }
  @media only screen and (max-width: 1199px) {
    .navPages-action {
      font-size: 14px; } }
  .navPages-action.is-open,
  .has-hover:hover + .navPages-action {
    background-color: #ffffff; }
    .navPages-action.is-open svg,
    .has-hover:hover + .navPages-action svg {
      stroke: #6235B6; }
  .navPages-action:hover, .navPages-action.activePage {
    color: #5F7A86; }
    .navPages-action:hover svg, .navPages-action.activePage svg {
      stroke: #6235B6; }
  .navPages-action.is-active, .navPages-action:hover {
    color: #414042;
    position: relative; }
  .navPages-action svg {
    fill: currentColor;
    stroke: #414042;
    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;
  border-top: 1px solid #D3D3D3;
  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 #D3D3D3;
  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: #6235B6; }
    .navPage-item--dropdown .navPage-subMenu-item a:hover {
      background-color: #7B4CD2;
      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;
    opacity: 0.3; }

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

.navPages-list > .navPages-item.navPage-item--mega {
  position: static; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu {
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    left: 0;
    max-width: 100%;
    min-width: auto;
    padding-top: 5px;
    right: 0;
    width: 100%;
    padding-top: 0; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega {
      padding: 0 0 0 24px;
      margin-left: 210px; }
      @media only screen and (max-width: 1199px) {
        .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega {
          margin-left: 0; } }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .navPage-item--heading {
        width: 222px;
        margin-right: 24px; }
        @media only screen and (max-width: 1199px) {
          .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .navPage-item--heading {
            width: 25%; } }
        .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .navPage-item--heading.bolded a {
          font-weight: 700 !important; }
        .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .navPage-item--heading > a {
          color: #5F7A86;
          font-size: 20px;
          font-weight: 400;
          margin-bottom: 15px;
          padding-bottom: 10px; }
        .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .navPage-item--heading .navPage-subMenu-list .navPage-subMenu-item {
          margin-bottom: 15px; }
          .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .navPage-item--heading .navPage-subMenu-list .navPage-subMenu-item:hover span {
            color: #7B4CD2;
            position: relative;
            text-decoration: underline; }
          .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .navPage-item--heading .navPage-subMenu-list .navPage-subMenu-item a {
            font-size: 16px;
            font-weight: 500; }
            .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .navPage-item--heading .navPage-subMenu-list .navPage-subMenu-item a.red-text {
              color: #C63C01; }
      .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .menu-item-mega--image {
        background: #ffffff;
        padding: 30px 20px;
        flex: 1; }
        @media only screen and (max-width: 767px) {
          .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .menu-item-mega--image {
            border: none; } }
        @media only screen and (min-width: 991px) {
          .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .menu-item-mega--image {
            padding-right: 0; } }
        .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .menu-item-mega--image:hover .image-link-text {
          color: #7B4CD2; }
        .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .menu-item-mega--image img {
          max-width: 100%;
          margin-bottom: 15px; }
        .navPages-list > .navPages-item.navPage-item--mega .navPage-megaMenu .navPage-subMenu-list--mega .menu-item-mega--image .image-link-text {
          font-size: 18px;
          margin-bottom: 0;
          text-decoration: underline; }
  .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard {
    margin: 0 auto;
    display: flex; }
    .navPages-list > .navPages-item.navPage-item--mega .navPage-subMenu-list--mega-standard .navPage-item--heading {
      flex: 1;
      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: #6235B6; }
  .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 #6235B6;
        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: #6235B6; }
      .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 #D3D3D3;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #5F7A86;
    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.is-active > .navPages-action:after, .navPages-list > .navPages-item:hover > .navPages-action:after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  height: 4px;
  background-color: #00BCB5; }

.navPages-list > .navPages-item > a {
  position: relative;
  z-index: 9;
  line-height: inherit;
  height: 94px;
  line-height: 94px;
  padding: 0 15px; }
  @media only screen and (min-width: 991px) and (max-width: 1199px) {
    .navPages-list > .navPages-item > a {
      padding: 0 6px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .navPages-list > .navPages-item > a {
      padding: 0 8px; } }
  .navPages-list > .navPages-item > a > .link-text-wrap {
    position: relative; }
    .navPages-list > .navPages-item > a > .link-text-wrap::before {
      content: '';
      top: 50%;
      position: absolute;
      right: -15px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 5px 0 5px;
      border-color: #414042 transparent transparent transparent;
      transform: translateY(-50%); }
    .navPages-list > .navPages-item > a > .link-text-wrap::after {
      content: "";
      bottom: -1px;
      left: 50%;
      right: 50%;
      top: 100%;
      width: auto;
      opacity: 0;
      transition: all ease-in-out .2s;
      height: 2px;
      display: block;
      position: absolute; }
  .navPages-list > .navPages-item > a:hover > .link-text-wrap::before,
  .navPages-list > .navPages-item > a.is-open > .link-text-wrap::before {
    border-color: #6235B6 transparent transparent transparent; }
  .navPages-list > .navPages-item > a:hover > .link-text-wrap::after,
  .navPages-list > .navPages-item > a.is-open > .link-text-wrap::after {
    left: 0;
    right: 0;
    opacity: 1; }
  .navPages-list > .navPages-item > a.is-open,
  .is-active + .navPages-list > .navPages-item > a {
    background-color: transparent; }

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

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

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

.navUser-section {
  margin: 0;
  list-style: none; }
  @media only screen and (max-width: 767px) {
    .navUser-section {
      text-align: right; } }

.navUser {
  padding: 0;
  transform: none; }
  .navUser p, .navUser .p {
    color: inherit; }
  .navUser .dropdown-menu {
    background-color: #ffffff;
    position: absolute;
    right: 0;
    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; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .navUser .dropdown-menu {
        top: 98% !important; } }
    @media only screen and (max-width: 767px) {
      .navUser .dropdown-menu {
        top: 55% !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; }
        @media only screen and (max-width: 767px) {
          .navUser .dropdown-menu.is-open::before {
            right: 40px; } }
      .navUser .dropdown-menu.is-open::after {
        border: inset 8px;
        content: "";
        display: block;
        height: 0;
        width: 0;
        border-color: transparent transparent #ffffff transparent;
        border-bottom-style: solid;
        bottom: 100%;
        right: 12px;
        position: absolute; }
        @media only screen and (max-width: 767px) {
          .navUser .dropdown-menu.is-open::after {
            right: 42px; } }

.navUser-action {
  color: #7B4CD2;
  font-size: 14px;
  padding: 0;
  text-decoration: none;
  height: 65px;
  line-height: 65px; }
  @media only screen and (max-width: 767px) {
    .navUser-action {
      padding: 0 15px; } }
  @media only screen and (min-width: 991px) {
    .navUser-action {
      font-size: 16px;
      height: 94px;
      line-height: 94px; } }
  .navUser-action:hover, .navUser-action.is-open {
    color: #6235B6; }
  .navUser-action svg {
    fill: currentColor;
    stroke-width: 0;
    transition: all 0.15s ease;
    display: inline-block;
    vertical-align: sub; }
  .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 {
  color: #7B4CD2;
  display: inline-block;
  padding: 0 15px 0 0;
  text-decoration: none; }

.navUser-item {
  display: inline-block;
  margin-right: 10px; }
  @media only screen and (min-width: 991px) {
    .navUser-item {
      margin-right: 15px; } }
  @media only screen and (min-width: 1400px) {
    .navUser-item {
      margin-right: 20px; } }
  .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 {
  position: relative;
  width: auto; }
  @media only screen and (min-width: 991px) {
    .navUser-item--search {
      width: 100%;
      max-width: 466px; } }
  .navUser-item--search .icon {
    width: 16px;
    height: 20px; }

.navUser-item--cart {
  color: #ffffff; }
  @media only screen and (min-width: 768px) {
    .navUser-item--cart {
      position: relative; } }
  .navUser-item--cart .navUser-cartIcon {
    height: 65px;
    line-height: 65px;
    position: relative; }
  .navUser-item--cart .icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    fill: currentColor; }
    @media only screen and (min-width: 768px) {
      .navUser-item--cart .icon {
        width: 18px;
        height: 18px; } }
  .navUser-item--cart .cart-quantity {
    position: absolute;
    bottom: 0;
    height: 20px;
    top: -12px;
    right: 3px; }
    @media only screen and (max-width: 767px) {
      .navUser-item--cart .cart-quantity {
        top: -19px;
        right: 22px;
        font-size: 16px; } }

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

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

.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: #7B4CD2;
  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 {
  display: none; }
  .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.is-open {
    display: block; }
  .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: 20px;
    box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
    position: relative; }
    .dropdown--quickSearch .dropdown-inner .form-field {
      height: 50px; }
      .dropdown--quickSearch .dropdown-inner .form-field .form-input {
        height: 50px; }
    .dropdown--quickSearch .dropdown-inner .button {
      height: 50px;
      line-height: 50px; }
  .dropdown--quickSearch.is-open {
    right: -50px;
    width: 450px;
    max-width: 505px;
    top: 100% !important;
    z-index: 10;
    left: auto; }
  .dropdown--quickSearch .form {
    margin: auto; }
  .dropdown--quickSearch .form,
  .dropdown--quickSearch .form-field {
    margin-bottom: 0; }
    @media only screen and (max-width: 990px) {
      .dropdown--quickSearch .form,
      .dropdown--quickSearch .form-field {
        width: 100% !important; } }
  .dropdown--quickSearch .productGrid {
    padding: 20px 0 0; }
    @media only screen and (min-width: 480px) {
      .dropdown--quickSearch .productGrid {
        padding: 40px 0 0; } }

.countPill {
  background-color: #5F7A86;
  border-radius: 50%;
  color: #ffffff;
  display: none;
  font-size: 12px;
  font-weight: 700;
  height: 16px;
  line-height: 16px;
  margin-left: 2px;
  text-align: center;
  width: 16px;
  position: absolute;
  top: 34%;
  right: -2px; }

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

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

.navPages-container, .navUser-container {
  display: inline-block;
  vertical-align: middle; }

@media only screen and (min-width: 991px) {
  .navPages-container {
    margin-right: 20px; } }

.navPages-container.method-product {
  margin-right: 0; }
  .navPages-container.method-product .navPages-list .navPages-item a {
    padding: 0 12px; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .navPages-container.method-product .navPages-list .navPages-item a {
        padding: 0 6px; } }
    .navPages-container.method-product .navPages-list .navPages-item a:hover:after {
      background-color: #7B4CD2; }

.navUser-container {
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .navUser-container {
      display: block; } }

.dropdown-menu.cart-preview-dropdown {
  background-color: #ffffff;
  position: absolute;
  right: 0;
  display: none;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.25);
  z-index: 103;
  left: auto !important;
  right: 0 !important;
  max-width: 100%;
  width: 420px; }
  .dropdown-menu.cart-preview-dropdown.is-open {
    display: block;
    position: fixed !important;
    top: 75px !important; }
    @media only screen and (min-width: 768px) {
      .dropdown-menu.cart-preview-dropdown.is-open {
        position: absolute !important;
        top: -94px !important; } }
    .dropdown-menu.cart-preview-dropdown.is-open::before, .dropdown-menu.cart-preview-dropdown.is-open::after {
      pointer-events: none; }
    .dropdown-menu.cart-preview-dropdown.is-open::before {
      border: inset 10px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: transparent transparent #e8e8e8 transparent;
      border-bottom-style: solid;
      bottom: 100%;
      right: 20px;
      position: absolute; }
      @media only screen and (max-width: 767px) {
        .dropdown-menu.cart-preview-dropdown.is-open::before {
          right: 40px; } }
    .dropdown-menu.cart-preview-dropdown.is-open::after {
      border: inset 8px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: transparent transparent #ffffff transparent;
      border-bottom-style: solid;
      bottom: 100%;
      right: 22px;
      position: absolute; }
      @media only screen and (max-width: 767px) {
        .dropdown-menu.cart-preview-dropdown.is-open::after {
          right: 42px; } }

.translation-toggle {
  align-items: center;
  display: flex;
  justify-content: flex-end; }
  @media only screen and (max-width: 767px) {
    .translation-toggle {
      justify-content: center; } }
  .translation-toggle .translation-button {
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    line-height: 60px; }
    .translation-toggle .translation-button.active span {
      text-decoration: underline; }
    .translation-toggle .translation-button .translation-icon {
      margin-right: 15px; }
  .translation-toggle .separator {
    height: 16px;
    margin: 0 10px;
    border-right: 1px solid #ffffff; }

.footer {
  background: linear-gradient(86.71deg, #3063DB -5.52%, #7B4CD2 49.5%, #A55BA9 81.18%, #F25D77 102.57%); }

.newsletter-row {
  background-color: #414042;
  padding: 25px 0 20px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .newsletter-row {
      text-align: left;
      padding: 40px 0; } }
  .newsletter-row .newsletter-heading {
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .newsletter-row .newsletter-heading {
        margin-bottom: 0;
        font-size: 25px; } }
  .newsletter-row p, .newsletter-row .p {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px; }
    @media only screen and (max-width: 767px) {
      .newsletter-row p, .newsletter-row .p {
        font-size: 14px;
        margin-bottom: 7px; } }
  .newsletter-row .form-content-wrap {
    max-width: 440px;
    margin: 0 auto; }
    @media only screen and (min-width: 768px) {
      .newsletter-row .form-content-wrap {
        margin-right: 0; } }
  .newsletter-row .success_message {
    color: #fff; }

.footer-top {
  padding: 110px 0 40px; }
  @media only screen and (max-width: 767px) {
    .footer-top {
      padding: 50px 0; } }
  .footer-top .footer-links {
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .footer-top .footer-links {
        margin-bottom: 40px; } }

@media only screen and (max-width: 767px) {
  .footer-info-col.footer-info-col--social {
    padding-top: 40px;
    margin: 0 auto;
    max-width: 295px; }
    .footer-info-col.footer-info-col--social .footer-info-heading {
      margin-bottom: 28px; } }

@media (min-width: 500px) and (max-width: 767px) {
  .footer-info-col.newsletter {
    max-width: 70%;
    margin: 0 auto; } }

@media only screen and (max-width: 767px) {
  .footer-info-col.newsletter {
    text-align: left; } }

.footer-info-col.newsletter p, .footer-info-col.newsletter .p {
  max-width: 90%; }
  @media only screen and (max-width: 767px) {
    .footer-info-col.newsletter p, .footer-info-col.newsletter .p {
      max-width: 100%; } }

@media only screen and (max-width: 767px) {
  .footer-info-col.newsletter .newsletter-subheading,
  .footer-info-col.newsletter .footer-info-heading {
    margin-left: auto;
    margin-right: auto; } }

.footer-info-col .socialLinks .socialLinks-item {
  margin-right: 10px; }

.footer-info-col .socialLinks .icon {
  color: #ffffff; }
  @media only screen and (max-width: 767px) {
    .footer-info-col .socialLinks .icon svg {
      height: 23px;
      width: 23px; } }

.footer-info-col .footer-logos {
  display: flex;
  margin-bottom: 18px; }
  @media only screen and (max-width: 767px) {
    .footer-info-col .footer-logos {
      justify-content: center; } }
  .footer-info-col .footer-logos .footer-logo.body-logo {
    max-width: 145px; }
    @media only screen and (max-width: 767px) {
      .footer-info-col .footer-logos .footer-logo.body-logo {
        max-width: 165px; } }
  .footer-info-col .footer-logos .footer-logo.men-logo {
    max-width: 90px; }
    @media only screen and (max-width: 767px) {
      .footer-info-col .footer-logos .footer-logo.men-logo {
        max-width: 100px; } }
  .footer-info-col .footer-logos .logo-divider {
    height: 35px;
    width: 1px;
    background-color: #7B4CD2;
    margin: 0 15px; }

.footer-info-heading {
  color: #ffffff;
  margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .footer-info-heading {
      font-size: 24px;
      margin-bottom: 8px; } }
  .footer-info-heading.branding {
    font-size: 16px; }

.shape {
  height: 5px;
  width: 62px;
  background-color: #6235B6; }
  @media only screen and (max-width: 767px) {
    .shape {
      height: 6px;
      margin: 0 auto; } }

.footer-logo-container.large {
  flex: 1 1 40%; }

.footer-logo-container .store-logo {
  color: #ffffff; }
  .footer-logo-container .store-logo svg {
    fill: currentColor;
    height: 18px;
    vertical-align: middle;
    width: 100px; }
    @media only screen and (max-width: 767px) {
      .footer-logo-container .store-logo svg {
        width: 120px; } }

.footer-info-list {
  list-style: none;
  margin-left: 0; }
  .footer-info-list li {
    margin-bottom: 2px; }
    @media only screen and (max-width: 767px) {
      .footer-info-list li {
        margin-bottom: 8px; } }
  .footer-info-list a {
    color: #ffffff; }
    .footer-info-list a:hover {
      text-decoration: underline; }

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

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

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

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

.copyright-links {
  font-size: 14px;
  display: flex;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .copyright-links {
      flex-direction: column; } }
  .copyright-links .privacy-terms {
    color: #ffffff;
    margin-right: 10px; }
    .copyright-links .privacy-terms a {
      text-decoration: underline;
      color: #ffffff; }
  .copyright-links .evidon-notice-link a,
  .copyright-links .evidon-notice-link .evidon-consent-link {
    text-decoration: underline !important;
    color: #ffffff !important; }
  @media only screen and (min-width: 768px) {
    .copyright-links p, .copyright-links .p {
      margin: 0; } }
  .copyright-links p, .copyright-links .p, .copyright-links a {
    color: #ffffff;
    line-height: inherit; }

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

.newsletter-form-wrapper .form .form-inner .form-input {
  height: 50px;
  width: 100%; }
  @media only screen and (min-width: 1200px) {
    .newsletter-form-wrapper .form .form-inner .form-input {
      width: 220px; } }
  @media only screen and (min-width: 991px) and (max-width: 1199px) {
    .newsletter-form-wrapper .form .form-inner .form-input {
      width: 160px; } }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .newsletter-form-wrapper .form .form-inner .form-input {
      width: 140px; } }

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

.newsletter-form-wrapper .form .form_actions button {
  font-weight: 700;
  height: 49px;
  line-height: 46px;
  padding: 0 35px; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    .newsletter-form-wrapper .form .form_actions button {
      max-width: 120px;
      padding: 0 10px; } }

@media only screen and (max-width: 767px) {
  .newsletter-form-wrapper .form .button {
    width: 100%; } }

#evidon-prefdiag-tabcontainer a, .underline {
  text-decoration: underline !important; }

.footer-social-container-mobile .footer-info-heading {
  margin-bottom: 10px; }

.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: #6235B6; }
  .grid__item:nth-last-of-type(-n + 2) .blog-post {
    margin-bottom: 40px; }

.blog-meta {
  color: #7B4CD2;
  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: #7B4CD2;
  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 {
      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: #7B4CD2; }
          .blog-sidebar-inner .blog-block .blog-sidebar-list li a:hover {
            color: #6235B6; }

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

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

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

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

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

.listItem-image {
  width: 100%; }

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

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

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

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

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

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

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

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

.listItem-actions .button {
  margin-bottom: 0; }
  @media only screen and (min-width: 991px) {
    .listItem-actions .button {
      width: 100%; }
      .listItem-actions .button + .button {
        margin: 10px 0 0; } }

@media only screen and (min-width: 991px) {
  .page-sidebar + .page-content .productList .listItem-details {
    padding-right: 40px; } }

@media only screen and (min-width: 991px) {
  .page-sidebar + .page-content .productList .listItem-actions {
    width: 30%; } }

[data-product-attribute] .form-option.form-option-swatch {
  overflow: visible;
  margin-bottom: 0; }

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

.form-option-expanded {
  background-color: #ffffff;
  border: 1px solid #D3D3D3;
  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: #eeeeee;
  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 20px 40px;
  background-color: #5F7A86; }
  @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; }

#MainContent .contact-page-header {
  margin-bottom: 0; }
  #MainContent .contact-page-header .page-heading {
    margin-bottom: 0; }
  #MainContent .contact-page-header .contact-title {
    margin-bottom: 0; }
  #MainContent .contact-page-header .contact-heading {
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      #MainContent .contact-page-header .contact-heading {
        margin-bottom: 25px; } }
    @media only screen and (min-width: 768px) {
      #MainContent .contact-page-header .contact-heading:last-child {
        margin-bottom: 40px; } }

#MainContent .fsSectionHeader {
  background: none !important;
  display: none !important; }

#MainContent .fsBody {
  padding: 0 !important; }
  #MainContent .fsBody .fsRow .fsRowBody {
    margin-bottom: 0 !important; }
  #MainContent .fsBody .fsRow select:not([type="radio"]),
  #MainContent .fsBody .fsRow .fsField:not([type="radio"]) {
    font-size: 16px;
    height: 56px;
    line-height: 40px;
    padding-left: 16px;
    text-transform: lowercase; }
  #MainContent .fsBody .fsRow .fsField, #MainContent .fsBody .fsRow .fsLabel, #MainContent .fsBody .fsRow textArea {
    color: #414042;
    font-family: 'Avenir';
    font-size: 16px;
    font-weight: 500; }
  #MainContent .fsBody .fsRow .fsLabel {
    margin-bottom: 5px; }
  #MainContent .fsBody .fsRow textarea {
    height: 150px !important; }
  @media only screen and (max-width: 767px) {
    #MainContent .fsBody .fsRow .fsOptionLabel {
      background: none;
      border: none;
      margin: 0;
      float: left;
      font-size: 16px;
      padding-left: 0; }
      #MainContent .fsBody .fsRow .fsOptionLabel.horizontal {
        margin-right: 20px; }
    #MainContent .fsBody .fsRow .fsRowBody input[type=radio] {
      height: 24px;
      width: 24px;
      top: 2px; }
      #MainContent .fsBody .fsRow .fsRowBody input[type=radio]:before {
        height: 24px;
        width: 24px; }
    #MainContent .fsBody .fsRow .fsFieldFocused:not(.fsValidationError).fsSpan100 {
      margin: 0 !important;
      padding: 0 !important; } }
  #MainContent .fsBody .fsForm {
    padding: 0 !important;
    margin-top: 10px; }

#MainContent .fsRowBody input[type=radio] {
  height: 16px;
  width: 16px; }

#MainContent .fsSubmit {
  margin-top: 0;
  padding-top: 0;
  text-align: left; }
  @media only screen and (min-width: 768px) {
    #MainContent .fsSubmit {
      margin-bottom: 65px;
      padding-bottom: 0; } }
  #MainContent .fsSubmit .fsSubmitButton {
    background: #7B4CD2 !important;
    padding: 0 62px;
    border-radius: 30px !important;
    height: 54px;
    line-height: 54px;
    font-size: 18px !important; }
    #MainContent .fsSubmit .fsSubmitButton:hover {
      background-color: #6235B6 !important; }

#MainContent #label86941259 {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.about-us .page-heading {
  text-align: left;
  padding: 30px 0;
  margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .about-us .page-heading {
      text-align: center; } }

.about-us .about-header-container {
  -webkit-animation: fade-up 1s ease-in;
  animation: fade-up 1s ease-in; }

@media only screen and (max-width: 767px) {
  .about-us .about-header {
    position: relative; } }

@media only screen and (min-width: 768px) {
  .about-us .about-header {
    position: relative;
    height: 33vw;
    min-height: 615px;
    overflow: hidden; } }

.about-us .about-header:after {
  content: '';
  background-color: #5f7a86;
  opacity: 0.4;
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  height: 100%; }

.about-us .hero-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #000; }
  @media only screen and (max-width: 767px) {
    .about-us .hero-section {
      position: relative;
      height: 100%; } }
  @media only screen and (min-width: 768px) {
    .about-us .hero-section {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; } }
  .about-us .hero-section .hero-content {
    min-height: 350px;
    text-align: center;
    height: 100%; }
    @media only screen and (min-width: 768px) {
      .about-us .hero-section .hero-content {
        min-height: 615px; } }
    .about-us .hero-section .hero-content .hero-header {
      color: #ffffff;
      font-family: "Avenir", "Clear Sans";
      position: absolute;
      top: 25%;
      z-index: 10;
      padding: 9px 38px 3px 38px;
      -webkit-animation: fade-right 1.5s ease-in;
      animation: fade-right 1.5s ease-in; }
      @media only screen and (max-width: 767px) {
        .about-us .hero-section .hero-content .hero-header {
          top: 60%;
          left: 50%;
          transform: translate(-50%, -60%);
          font-size: 24px;
          padding: 6px 0 2px 0;
          max-width: 290px;
          width: 80%; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .about-us .hero-section .hero-content .hero-header {
          padding: 15px 30px;
          font-size: 18px;
          left: 10%;
          top: 30%; } }
      @media only screen and (min-width: 991px) and (max-width: 1199px) {
        .about-us .hero-section .hero-content .hero-header {
          padding: 1.1vw 2.3vw .7vw 2.3vw;
          font-size: 2.4vw;
          left: 10%; } }
    .about-us .hero-section .hero-content .method-logo {
      position: absolute;
      bottom: 30px;
      right: 0;
      z-index: 10;
      -webkit-animation: fade-left 1.5s ease-in;
      animation: fade-left 1.5s ease-in; }
      @media only screen and (max-width: 767px) {
        .about-us .hero-section .hero-content .method-logo {
          bottom: 10px;
          right: 20px; } }
      .about-us .hero-section .hero-content .method-logo svg {
        height: 32px;
        width: 170px; }
        @media only screen and (max-width: 767px) {
          .about-us .hero-section .hero-content .method-logo svg {
            height: 30px;
            width: 120px; } }

.about-us .method-motto-section {
  padding: 60px 0;
  background-color: #5f7a86; }
  @media only screen and (max-width: 767px) {
    .about-us .method-motto-section {
      padding: 40px 20px; } }
  .about-us .method-motto-section p, .about-us .method-motto-section .p {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    max-width: 590px;
    margin: 0 auto; }

.about-us .icon-section {
  padding: 50px 0; }
  @media only screen and (min-width: 768px) {
    .about-us .icon-section {
      padding: 100px 0; } }
  .about-us .icon-section .icon-heading {
    margin-bottom: 40px; }
  .about-us .icon-section .icon-container {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .about-us .icon-section .icon-container .copy-container {
        min-height: 64px; } }
    .about-us .icon-section .icon-container svg {
      height: 100px;
      width: 100px;
      margin-bottom: 10px; }
      @media only screen and (min-width: 768px) {
        .about-us .icon-section .icon-container svg {
          margin-bottom: 5px; } }
  .about-us .icon-section .copy-container {
    min-height: 48px; }
    .about-us .icon-section .copy-container p, .about-us .icon-section .copy-container .p {
      margin-bottom: 0;
      font-size: 16px; }
      @media only screen and (min-width: 991px) {
        .about-us .icon-section .copy-container p, .about-us .icon-section .copy-container .p {
          padding: 0 10%; } }
      @media only screen and (min-width: 480px) and (max-width: 767px) {
        .about-us .icon-section .copy-container p, .about-us .icon-section .copy-container .p {
          min-height: 48px; } }
      @media only screen and (max-width: 479px) {
        .about-us .icon-section .copy-container p, .about-us .icon-section .copy-container .p {
          padding: 0;
          font-size: 14px; } }

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

@media only screen and (max-width: 767px) {
  .about-us .business-section .business-content {
    padding: 40px 0; } }

@media only screen and (min-width: 768px) {
  .about-us .business-section .business-content {
    max-width: 405px;
    margin: 0 auto; } }

.about-us .business-section .business-content .page-heading {
  padding: 0 0 10px 0; }

.about-us .business-section .business-content .sub-heading {
  margin-bottom: 5px;
  color: #757575; }

.about-us .method-link-section {
  text-align: center;
  padding: 0; }
  @media only screen and (min-width: 768px) {
    .about-us .method-link-section {
      padding: 36px; } }
  .about-us .method-link-section .section-heading, .about-us .method-link-section p, .about-us .method-link-section .p {
    max-width: 590px;
    margin: 0 auto; }
  .about-us .method-link-section p, .about-us .method-link-section .p {
    font-size: 18px;
    margin-bottom: 24px; }
  .about-us .method-link-section a {
    font-size: 18px;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
    @media only screen and (max-width: 767px) {
      .about-us .method-link-section a {
        width: 100%; } }

.page-content.aux-page a {
  color: #5F7A86;
  text-decoration: underline;
  text-transform: lowercase; }

.page-content.aux-page p, .page-content.aux-page .p, .page-content.aux-page strong {
  text-transform: lowercase; }

.page-content.aux-page ul {
  padding: 10px 0 10px 15px;
  margin: 0; }

.page-content.aux-page.underline {
  text-decoration: underline; }

.page-content.aux-page .highlight {
  background-color: #30f7ff; }
  .page-content.aux-page .highlight a {
    background-color: #a6b4f5;
    color: #00f; }

.page-content.aux-page .heading {
  margin-top: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 16px; }

.page-content.aux-page .terms-heading,
.page-content.aux-page .privacy-heading {
  font-size: 22px;
  padding-top: 20px;
  font-weight: 700; }

.page-content.aux-page .collapsible.open .collapsible-heading:after {
  background: url("../icons/remove.svg"); }

.page-content.aux-page .collapsible .collapsible-heading {
  position: relative; }
  .page-content.aux-page .collapsible .collapsible-heading:after {
    content: ' ';
    display: block;
    width: 20px;
    height: 20px;
    background: url("../icons/add.svg");
    background-size: cover;
    position: absolute;
    right: 3%;
    margin-top: -32px;
    transition: transform 300ms ease; }

.page-content.aux-page .collapsible .collapsible-content {
  display: none; }

.page-content.aux-page .container.faqs {
  padding: 0 40px; }
  .page-content.aux-page .container.faqs .flex-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem; }
  .page-content.aux-page .container.faqs .collapsible {
    margin-bottom: 5px;
    background-color: #eeeeee; }
    .page-content.aux-page .container.faqs .collapsible h4:first-of-type, .page-content.aux-page .container.faqs .collapsible .h4:first-of-type {
      margin-top: 0; }
  .page-content.aux-page .container.faqs .collapsible-heading, .page-content.aux-page .container.faqs .collapsible-content {
    padding: 0 2rem; }
  .page-content.aux-page .container.faqs .collapsible-content {
    padding-bottom: .1rem; }
  .page-content.aux-page .container.faqs h2, .page-content.aux-page .container.faqs .h2 {
    font-size: 18px;
    margin: 0;
    padding: .6rem 0;
    cursor: pointer; }
  .page-content.aux-page .container.faqs .question {
    font-size: 18px; }
  .page-content.aux-page .container.faqs .column {
    width: 100%;
    display: inline-block; }
  .page-content.aux-page .container.faqs .left-column {
    margin-right: 2%; }
  .page-content.aux-page .container.faqs a {
    text-decoration: underline;
    color: #995d56; }

.page-content.aux-page select {
  text-transform: lowercase;
  line-height: 30px; }

.aux-heading {
  margin-bottom: 0px; }

.aux-content .link-highlight {
  text-decoration: underline;
  color: #7B4CD2; }

.login-link {
  text-decoration: underline; }
  .login-link:hover {
    color: #5F7A86; }

.giftcertificates .gc-wrapper,
.giftcertificates_redeem .gc-wrapper,
.giftcertificates_balance .gc-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 996.66667px; }

.gc-subheading {
  font-weight: 700; }
  .gc-subheading.purchase-subheading {
    margin-bottom: 30px; }
  .gc-subheading.redeem-subheading, .gc-subheading.balance-subheading {
    margin-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .gc-subheading {
      margin-bottom: 40px; } }

.gc-page.redeem, .gc-page.balance {
  max-width: 710px; }

.gc-page.purchase {
  padding-bottom: 178px; }
  @media only screen and (max-width: 767px) {
    .gc-page.purchase {
      padding-bottom: 40px; } }

.gc-page .form .form-label {
  font-weight: 500;
  font-size: 16px; }

.gc-page.redeem {
  padding-bottom: 86px; }
  @media only screen and (max-width: 767px) {
    .gc-page.redeem {
      padding-bottom: 40px; } }

.gc-page.balance {
  padding-bottom: 162px; }
  @media only screen and (max-width: 767px) {
    .gc-page.balance {
      padding-bottom: 40px; } }

.gc-page .gc-balance-form .form-input {
  width: 466px;
  margin-right: 20px; }
  @media only screen and (max-width: 767px) {
    .gc-page .gc-balance-form .form-input {
      margin-bottom: 10px;
      margin-right: 0; } }

.gc-page .gc-balance-form .form-prefixPostfix {
  width: auto;
  margin: 0; }
  @media only screen and (max-width: 767px) {
    .gc-page .gc-balance-form .form-prefixPostfix .form-prefixPostfix-content {
      width: 100%; } }
  .gc-page .gc-balance-form .form-prefixPostfix .form-prefixPostfix-content .form-label {
    font-size: 16px; }
  .gc-page .gc-balance-form .form-prefixPostfix .form-prefixPostfix-inputs {
    display: flex; }
    @media only screen and (max-width: 767px) {
      .gc-page .gc-balance-form .form-prefixPostfix .form-prefixPostfix-inputs {
        flex-direction: column; } }
    @media only screen and (max-width: 767px) {
      .gc-page .gc-balance-form .form-prefixPostfix .form-prefixPostfix-inputs .form-input {
        width: 100%; } }
  .gc-page .gc-balance-form .form-prefixPostfix .form-prefixPostfix-button--postfix {
    margin: 0;
    width: auto;
    min-width: 220px; }

.gc-page .form-giftcertificate-link a {
  color: #5F7A86;
  text-decoration: underline; }

.gc-page .gc-amount {
  margin-bottom: 0; }

.gc-page .gift-certificate-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  @media only screen and (max-width: 767px) {
    .gc-page .gift-certificate-form .form-actions {
      justify-content: space-between; } }
  .gc-page .gift-certificate-form .form-actions .button {
    width: 220px;
    max-width: 50%; }
    @media only screen and (max-width: 767px) {
      .gc-page .gift-certificate-form .form-actions .button {
        flex: 1; } }
  .gc-page .gift-certificate-form .form-actions #gift-certificate-preview {
    margin-right: 20px; }
    @media only screen and (max-width: 767px) {
      .gc-page .gift-certificate-form .form-actions #gift-certificate-preview {
        margin-right: 30px;
        margin-bottom: 20px;
        padding: 0; } }
  .gc-page .gift-certificate-form .form-actions #gift-certificate-submit {
    margin-bottom: 20px;
    margin-right: 20px; }
    .gc-page .gift-certificate-form .form-actions #gift-certificate-submit:last-child {
      margin-bottom: 0;
      margin-right: 0; }
    @media only screen and (max-width: 767px) {
      .gc-page .gift-certificate-form .form-actions #gift-certificate-submit {
        margin-right: 0;
        width: 135px;
        padding: 0; } }

.gc-page .gift-certificate-form .form-field {
  margin-bottom: 20px; }

.gc-page .gift-certificate-form .form-input,
.gc-page .gift-certificate-form .form-select {
  height: 56px; }

.gc-page .gift-certificate-form .form-select {
  background-size: 24px 24px;
  background-position: right 4px top 22px; }

.gc-page .gift-certificate-form textarea.form-input {
  height: 160px; }

.gc-page .gift-certificate-form .agree-checkbox {
  position: relative; }
  .gc-page .gift-certificate-form .agree-checkbox .form-label {
    padding-left: 30px;
    padding-right: 35%;
    text-transform: none;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .gc-page .gift-certificate-form .agree-checkbox .form-label {
        padding-right: 15px; } }
    .gc-page .gift-certificate-form .agree-checkbox .form-label:before {
      position: absolute;
      left: 0;
      height: 24px;
      width: 24px;
      top: 0; }

.gc-page .gift-certificate-form .agree2-checkbox {
  display: none; }

.gc-page .gift-certificate-form .theme-options {
  display: flex;
  margin-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .gc-page .gift-certificate-form .theme-options {
      flex-direction: column;
      margin-bottom: 0; } }
  .gc-page .gift-certificate-form .theme-options .theme-option {
    margin-right: 30px; }
    @media only screen and (max-width: 767px) {
      .gc-page .gift-certificate-form .theme-options .theme-option {
        margin-bottom: 25px; } }
    .gc-page .gift-certificate-form .theme-options .theme-option .form-label::before {
      height: 24px;
      width: 24px;
      top: 7px; }

.gc-page .balance-form .form-input,
.gc-page .balance-form .form-select {
  height: 56px; }

.gc-page .balance-form .form-prefixPostfix-button--postfix {
  height: 56px;
  line-height: 58px; }

.gc-page .gift-certificate-redeemList {
  padding-left: 15px; }
  @media only screen and (max-width: 767px) {
    .gc-page .gift-certificate-redeemList {
      padding-left: 10px; } }
  .gc-page .gift-certificate-redeemList li {
    margin-bottom: 20px; }

.gc-page .alertBox {
  padding: 20px 0;
  display: flex;
  justify-content: center; }
  @media only screen and (min-width: 768px) {
    .gc-page .alertBox {
      text-align: center; } }
  .gc-page .alertBox .alertBox-icon {
    float: none;
    margin-right: 5px; }

[name="Gift Certificate Preview"] {
  width: 100% !important; }

@media only screen and (min-width: 768px) {
  .transparency-page {
    margin-bottom: 123px; } }

@media only screen and (min-width: 768px) {
  .green-glossary-page {
    margin-bottom: 73px; } }

.green-glossary-page .page-heading {
  margin-bottom: 24px; }

.green-glossary-page .header-container {
  display: flex;
  align-items: center;
  margin-bottom: 16px; }

.green-glossary-page .aux-heading {
  margin-left: 16px;
  color: #6235B6; }

.green-glossary-page .glossary-image {
  width: 52px;
  height: 52px; }

@media only screen and (min-width: 768px) {
  .green-glossary-page .aux-content {
    margin-bottom: 48px; } }

.green-glossary-page .link {
  color: #6235B6; }

.faqs,
.faqs-page {
  max-width: 950px;
  margin: 0 auto; }
  .faqs .faq-header,
  .faqs-page .faq-header {
    margin-bottom: 25px; }
    .faqs .faq-header .faq-heading,
    .faqs-page .faq-header .faq-heading {
      padding-top: 24px;
      font-weight: 500;
      margin-bottom: 10px; }
    .faqs .faq-header .faq-description,
    .faqs-page .faq-header .faq-description {
      margin-bottom: 0; }
  .faqs .faq-content .faq-group-title,
  .faqs-page .faq-content .faq-group-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px; }
  .faqs .faq-content .toggle,
  .faqs-page .faq-content .toggle {
    border: none;
    background-color: #eeeeee;
    padding: 16px; }
    .faqs .faq-content .toggle:last-of-type,
    .faqs-page .faq-content .toggle:last-of-type {
      margin-bottom: 30px; }
    .faqs .faq-content .toggle .toggle-content,
    .faqs-page .faq-content .toggle .toggle-content {
      padding-top: 20px; }
  .faqs .faq-content .faq-question-header,
  .faqs-page .faq-content .faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none; }
    .faqs .faq-content .faq-question-header.is-open,
    .faqs-page .faq-content .faq-question-header.is-open {
      padding-top: 10px; }
      .faqs .faq-content .faq-question-header.is-open .toggleLink-text--on,
      .faqs-page .faq-content .faq-question-header.is-open .toggleLink-text--on {
        display: none; }
      .faqs .faq-content .faq-question-header.is-open .toggleLink-text--off,
      .faqs-page .faq-content .faq-question-header.is-open .toggleLink-text--off {
        display: block !important; }
    .faqs .faq-content .faq-question-header .faq-symbol .toggleLink-text--off,
    .faqs-page .faq-content .faq-question-header .faq-symbol .toggleLink-text--off {
      transform: none;
      display: none; }
    .faqs .faq-content .faq-question-header .faq-symbol svg,
    .faqs-page .faq-content .faq-question-header .faq-symbol svg {
      vertical-align: middle; }
    .faqs .faq-content .faq-question-header .faq-title,
    .faqs-page .faq-content .faq-question-header .faq-title {
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 0;
      padding-right: 10px; }
  .faqs .faq-footer .question,
  .faqs-page .faq-footer .question {
    margin-bottom: 5px; }

.faqs .content-container a:not(.toggleLink):not(.breadcrumb-label) {
  text-decoration: underline;
  color: #7B4CD2; }

.terms-and-conditions ol {
  padding-left: 40px;
  margin-bottom: 40px; }

.terms-and-conditions ul {
  padding: 10px 0 10px 15px;
  margin: 0; }

.quiz-container.quiz-content-container .progressbar .progressbar-outer {
  height: 16px;
  background-color: #eee; }

.quiz-container.quiz-content-container .progressbar .progressbar-inner {
  background-color: #5F7A86;
  width: 100px;
  height: 100%; }

.quiz-container.quiz-content-container .progress-status {
  padding: 24px 0; }

.quiz-container.quiz-content-container .question {
  padding: 10px 0 40px;
  display: none; }
  .quiz-container.quiz-content-container .question.active-question {
    display: block; }
  .quiz-container.quiz-content-container .question.question-2 .color-option {
    min-height: 250px;
    width: 100%;
    margin-bottom: 15px; }
    @media only screen and (min-width: 768px) {
      .quiz-container.quiz-content-container .question.question-2 .color-option {
        min-height: 255px; } }
  .quiz-container.quiz-content-container .question.question-3 .option-image {
    max-height: 155px; }
    .quiz-container.quiz-content-container .question.question-3 .option-image.secondary-image {
      display: none; }
  .quiz-container.quiz-content-container .question.question-3 .option-container.selected .option-image:not(.secondary-image), .quiz-container.quiz-content-container .question.question-3 .option-container:hover .option-image:not(.secondary-image) {
    display: none; }
  .quiz-container.quiz-content-container .question.question-3 .option-container.selected .secondary-image, .quiz-container.quiz-content-container .question.question-3 .option-container:hover .secondary-image {
    display: block; }
  @media only screen and (max-width: 767px) {
    .quiz-container.quiz-content-container .question.question-3 .grid:nth-child(2) .grid__item:nth-child(-n+2) {
      margin-bottom: 60px; } }
  .quiz-container.quiz-content-container .question.question-4 .color-option {
    height: 140px;
    width: 140px;
    margin-bottom: 15px; }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .quiz-container.quiz-content-container .question.question-4 .color-option {
        height: 170px;
        width: 170px; } }
    @media only screen and (min-width: 768px) {
      .quiz-container.quiz-content-container .question.question-4 .color-option {
        height: 180px;
        width: 180px; } }
  .quiz-container.quiz-content-container .question.question-4 .option-heading {
    font-size: 16px;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
  @media only screen and (max-width: 767px) {
    .quiz-container.quiz-content-container .question.question-4 .grid:nth-child(2) .grid__item:nth-child(-n+2) {
      margin-bottom: 60px; } }
  .quiz-container.quiz-content-container .question.question-5 .color-option {
    height: 250px;
    width: 100%;
    margin-bottom: 15px; }
    @media only screen and (min-width: 991px) {
      .quiz-container.quiz-content-container .question.question-5 .color-option {
        height: 225px;
        width: 225px; } }
  @media only screen and (min-width: 991px) {
    .quiz-container.quiz-content-container .question.question-5 .option-heading {
      font-size: 28px;
      font-weight: 700; } }
  .quiz-container.quiz-content-container .question .question-header .question-heading {
    margin-bottom: 30px;
    font-size: 24px; }
    @media only screen and (min-width: 768px) {
      .quiz-container.quiz-content-container .question .question-header .question-heading {
        font-size: 28px; } }
  .quiz-container.quiz-content-container .question .option-container {
    cursor: pointer;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .quiz-container.quiz-content-container .question .option-container {
        margin-bottom: 15px; } }
    @media only screen and (min-width: 768px) {
      .quiz-container.quiz-content-container .question .option-container.question-6 .image-option {
        height: 225px;
        width: 225px; } }
    .quiz-container.quiz-content-container .question .option-container button {
      cursor: pointer;
      margin-bottom: 10px; }
    .quiz-container.quiz-content-container .question .option-container.selected .option-title {
      color: #5F7A86;
      text-decoration: underline;
      font-weight: 700; }
    .quiz-container.quiz-content-container .question .option-container.selected .checkmark {
      display: flex; }
    .quiz-container.quiz-content-container .question .option-container:hover .option-title {
      color: #5F7A86;
      text-decoration: underline;
      font-weight: 700; }
  .quiz-container.quiz-content-container .question .image-option,
  .quiz-container.quiz-content-container .question .color-option {
    position: relative;
    margin: 0 auto;
    border: none;
    background: none;
    padding: 0; }
    .quiz-container.quiz-content-container .question .image-option img,
    .quiz-container.quiz-content-container .question .color-option img {
      max-height: 100%; }
  .quiz-container.quiz-content-container .question .option-title {
    margin-bottom: 0; }
  .quiz-container.quiz-content-container .question .color-option {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 15.5px; }
    .quiz-container.quiz-content-container .question .color-option.circles {
      border-radius: 50%;
      display: flex;
      justify-content: center; }
    .quiz-container.quiz-content-container .question .color-option .option-heading,
    .quiz-container.quiz-content-container .question .color-option .option-subheading {
      color: #ffffff;
      text-transform: none; }
    .quiz-container.quiz-content-container .question .color-option .option-heading {
      margin-bottom: 0; }
    .quiz-container.quiz-content-container .question .color-option .option-subheading {
      font-size: 16px; }
  .quiz-container.quiz-content-container .question .question-footer {
    padding-top: 38px; }
    @media only screen and (min-width: 768px) {
      .quiz-container.quiz-content-container .question .question-footer {
        padding-top: 68px; } }
    .quiz-container.quiz-content-container .question .question-footer .next-question:disabled {
      background-color: #EEE;
      color: #54565A; }
  .quiz-container.quiz-content-container .question .checkmark {
    display: none;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff; }
    .quiz-container.quiz-content-container .question .checkmark.top {
      position: absolute;
      top: 15px; }
    .quiz-container.quiz-content-container .question .checkmark.upper-right {
      position: absolute;
      right: 8px;
      top: 8px; }
    .quiz-container.quiz-content-container .question .checkmark .icon {
      fill: currentColor;
      height: 14px;
      width: 14px; }

.quiz-container.quiz-content-container .loading-container {
  display: none; }
  .quiz-container.quiz-content-container .loading-container.loading-activated {
    display: block; }
  @media only screen and (max-width: 767px) {
    .quiz-container.quiz-content-container .loading-container .wrapper {
      padding: 0; } }
  @media only screen and (min-width: 768px) {
    .quiz-container.quiz-content-container .loading-container .loading-content .loading-notice {
      position: absolute;
      width: 50%;
      top: 50%;
      transform: translateY(-50%); } }
  .quiz-container.quiz-content-container .loading-container .loading-content .loading-notice .spinner {
    height: 80px;
    width: 80px;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .quiz-container.quiz-content-container .loading-container .loading-content .loading-notice .spinner {
        height: 105px;
        width: 105px; } }
  .quiz-container.quiz-content-container .loading-container .loading-content .loading-notice .loading-title {
    font-size: 30px;
    margin-bottom: 0;
    text-transform: none; }
    @media only screen and (min-width: 991px) {
      .quiz-container.quiz-content-container .loading-container .loading-content .loading-notice .loading-title {
        font-size: 50px; } }
  .quiz-container.quiz-content-container .loading-container .loading-content .loading-notice .loading-subheading {
    max-width: 580px;
    margin: 0 auto;
    font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    margin-bottom: 18px; }
    @media only screen and (min-width: 991px) {
      .quiz-container.quiz-content-container .loading-container .loading-content .loading-notice .loading-subheading {
        font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        font-size: 24px;
        margin-bottom: 0; } }
  .quiz-container.quiz-content-container .loading-container .loading-content .loading-banner {
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat; }

.quiz-container.quiz-content-container .card {
  padding-bottom: 50px; }
  .quiz-container.quiz-content-container .card:hover .quiz-card-title {
    color: #54565a; }
  .quiz-container.quiz-content-container .card .card-body {
    height: 77px;
    text-align: center; }
    .quiz-container.quiz-content-container .card .card-body .quiz-card-title {
      font-weight: 700; }

.quiz-container.quiz-content-container .card-addtocart {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; }

.quiz-container.results-container {
  display: none; }
  .quiz-container.results-container .quiz-results-header {
    padding: 12px 15px; }
    @media only screen and (min-width: 768px) {
      .quiz-container.results-container .quiz-results-header {
        padding: 35px 0; } }
    .quiz-container.results-container .quiz-results-header .results-heading {
      margin-bottom: 5px;
      text-transform: uppercase; }
    .quiz-container.results-container .quiz-results-header .results-subheading {
      margin-bottom: 20px; }
    .quiz-container.results-container .quiz-results-header .coupon-text {
      color: #5F7A86;
      font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
      .quiz-container.results-container .quiz-results-header .coupon-text .uppercase-text {
        text-transform: uppercase; }
  .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner {
    display: none; }
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner.active {
      display: block; }
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .banner-container {
      display: flex; }
      @media only screen and (max-width: 767px) {
        .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .banner-container {
          justify-content: center;
          padding: 30px 15px; } }
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-image-container {
      width: 30%;
      align-self: flex-end; }
      .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-image-container img {
        width: 450px;
        max-width: 100%; }
    @media only screen and (min-width: 768px) {
      .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container {
        width: 40%;
        padding: 24px 0; } }
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-info {
      margin-bottom: 20px; }
      .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-info h2, .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-info .h2 {
        margin-bottom: 5px; }
        @media only screen and (max-width: 767px) {
          .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-info h2, .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-info .h2 {
            font-size: 24px; } }
      @media only screen and (max-width: 767px) {
        .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-info .fragrance-mobile-icon {
          padding: 10px 0 0; } }
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-info h2, .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-info .h2,
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container p,
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .p, .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container span {
      color: #ffffff; }
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-family {
      margin-bottom: 20px; }
      .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-family p, .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-family .p {
        margin-bottom: 5px; }
    .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-details .detail {
      margin-bottom: 10px; }
      @media only screen and (min-width: 768px) {
        .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-details .detail {
          margin-bottom: 25px; } }
      .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-details .detail span {
        padding-bottom: 10px; }
      @media only screen and (max-width: 767px) {
        .quiz-container.results-container .quiz-fragrance-banner .fragrance-banner .fragrance-content-container .fragrance-details .detail .mobile-block {
          display: block; } }
  .quiz-container.results-container .routine-banner {
    padding: 50px 0; }
    @media only screen and (max-width: 767px) {
      .quiz-container.results-container .routine-banner .wrapper {
        padding: 0; } }
    .quiz-container.results-container .routine-banner .routine-container {
      display: none;
      align-items: center;
      background-color: #EEE; }
      @media only screen and (max-width: 767px) {
        .quiz-container.results-container .routine-banner .routine-container {
          flex-direction: column-reverse; } }
      .quiz-container.results-container .routine-banner .routine-container.active {
        display: flex; }
      .quiz-container.results-container .routine-banner .routine-container .routine-content {
        padding: 20px 10px; }
        @media only screen and (min-width: 991px) {
          .quiz-container.results-container .routine-banner .routine-container .routine-content {
            padding: 20px; } }
      .quiz-container.results-container .routine-banner .routine-container .routine-wrapper,
      .quiz-container.results-container .routine-banner .routine-container .routine-image {
        flex: 1; }
      .quiz-container.results-container .routine-banner .routine-container .routine-wrapper {
        display: flex;
        align-items: center; }
      @media only screen and (max-width: 767px) {
        .quiz-container.results-container .routine-banner .routine-container .routine-icon {
          max-width: 88px;
          margin-bottom: 10px; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .quiz-container.results-container .routine-banner .routine-container .routine-icon {
          width: 50px; } }
      @media only screen and (min-width: 991px) and (max-width: 1199px) {
        .quiz-container.results-container .routine-banner .routine-container .routine-icon {
          width: 60px; } }
      @media only screen and (max-width: 990px) {
        .quiz-container.results-container .routine-banner .routine-container .routine-title,
        .quiz-container.results-container .routine-banner .routine-container .routine-name {
          font-size: 20px;
          margin-bottom: 10px; } }
      @media only screen and (max-width: 767px) {
        .quiz-container.results-container .routine-banner .routine-container .routine-title {
          font-size: 24px; } }
      .quiz-container.results-container .routine-banner .routine-container .routine-name {
        text-transform: uppercase; }
        @media only screen and (max-width: 767px) {
          .quiz-container.results-container .routine-banner .routine-container .routine-name {
            font-size: 24px; } }
  .quiz-container.results-container .scent-results,
  .quiz-container.results-container .routine-results {
    padding-top: 25px;
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      .quiz-container.results-container .scent-results,
      .quiz-container.results-container .routine-results {
        margin-bottom: 70px; } }
    .quiz-container.results-container .scent-results .products-header,
    .quiz-container.results-container .routine-results .products-header {
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        .quiz-container.results-container .scent-results .products-header,
        .quiz-container.results-container .routine-results .products-header {
          margin-bottom: 48px; } }
    .quiz-container.results-container .scent-results .card .quiz-card-title,
    .quiz-container.results-container .routine-results .card .quiz-card-title {
      margin-bottom: 5px;
      font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
    .quiz-container.results-container .scent-results .card .card-text,
    .quiz-container.results-container .routine-results .card .card-text {
      margin-bottom: 5px; }
      .quiz-container.results-container .scent-results .card .card-text .price-section,
      .quiz-container.results-container .routine-results .card .card-text .price-section {
        font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }
  .quiz-container.results-container .results-newsletter-banner {
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .quiz-container.results-container .results-newsletter-banner {
        padding: 70px 0;
        margin-bottom: 0; } }
    .quiz-container.results-container .results-newsletter-banner .newsletter-title {
      text-transform: uppercase; }
      @media only screen and (max-width: 767px) {
        .quiz-container.results-container .results-newsletter-banner .newsletter-title {
          font-family: 'Avenir Black';
          font-size: 24px;
          margin-bottom: 10px; } }
    .quiz-container.results-container .results-newsletter-banner .privy-embed-form {
      background-color: #EEE; }
    .quiz-container.results-container .results-newsletter-banner .newsletter-form {
      background-color: #eeeeee;
      padding: 32px; }
      @media only screen and (min-width: 768px) {
        .quiz-container.results-container .results-newsletter-banner .newsletter-form {
          margin: 0 auto;
          max-width: 475px; } }
      .quiz-container.results-container .results-newsletter-banner .newsletter-form .form-input {
        width: 100%;
        margin-bottom: 10px; }
      .quiz-container.results-container .results-newsletter-banner .newsletter-form .form_actions button {
        width: 100%;
        margin-bottom: 12px; }
      .quiz-container.results-container .results-newsletter-banner .newsletter-form .form_actions .signup-disclaimer {
        font-size: 14px; }
        .quiz-container.results-container .results-newsletter-banner .newsletter-form .form_actions .signup-disclaimer a {
          text-decoration: underline;
          color: #5f7a86; }
  .quiz-container.results-container .results-footer {
    padding: 10px 0; }
    @media only screen and (max-width: 767px) {
      .quiz-container.results-container .results-footer a {
        width: 100%;
        max-width: 350px;
        margin: 0 auto; } }

@media only screen and (max-width: 767px) {
  .quiz-container .question-footer .button:first-child,
  .quiz-container .results-footer .button:first-child {
    margin-bottom: 15px; } }

.quiz-container .breadcrumbs {
  padding-bottom: 12px; }

.quiz-container .button {
  width: 222px;
  height: 49px;
  line-height: 49px; }
  @media only screen and (max-width: 767px) {
    .quiz-container .button {
      width: 100%; } }
  @media only screen and (min-width: 768px) {
    .quiz-container .button:first-child {
      margin-right: 22px; } }

.quiz-content {
  padding-top: 16px !important; }

.body.meet-aluminum,
.body.about {
  background-color: #f6f5f6; }

.method-for-change-container {
  overflow: hidden; }
  .method-for-change-container.method-change-homepage h2, .method-for-change-container.method-change-homepage .h2 {
    letter-spacing: -.02em; }
  .method-for-change-container .homepage-section {
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .method-for-change-container .homepage-section {
        margin-bottom: 80px; } }
  .method-for-change-container .section-header {
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    font-family: "Avenir", "Clear Sans";
    font-weight: 500; }
    @media only screen and (min-width: 768px) {
      .method-for-change-container .section-header {
        font-size: 50px;
        text-align: left; } }
  .method-for-change-container .background-video {
    position: absolute;
    mix-blend-mode: darken; }
    .method-for-change-container .background-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background-color: #ffffff;
      display: block; }
  .method-for-change-container .main-video-section {
    margin-bottom: 0; }
    .method-for-change-container .main-video-section .cover-container {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: 9; }
      .method-for-change-container .main-video-section .cover-container .video-cover-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom; }
    .method-for-change-container .main-video-section .video-content {
      position: relative;
      overflow: hidden;
      padding-top: 56.3%;
      height: 0;
      z-index: 10;
      background-color: #414042; }
    .method-for-change-container .main-video-section iframe {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%; }
  .method-for-change-container .change-the-world {
    position: relative;
    margin-bottom: 0; }
    .method-for-change-container .change-the-world .change-top,
    .method-for-change-container .change-the-world .change-bottom {
      position: relative; }
    .method-for-change-container .change-the-world .change-bottom {
      margin-top: 10%; }
    .method-for-change-container .change-the-world .change-top .background-video {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2; }
      .method-for-change-container .change-the-world .change-top .background-video video {
        width: 100%;
        height: 100%;
        object-fit: cover; }
        @media only screen and (min-width: 1700px) {
          .method-for-change-container .change-the-world .change-top .background-video video {
            height: auto; } }
        .method-for-change-container .change-the-world .change-top .background-video video.background-video--mobile {
          height: 720px; }
          @media only screen and (min-width: 480px) {
            .method-for-change-container .change-the-world .change-top .background-video video.background-video--mobile {
              height: 770px; } }
    .method-for-change-container .change-the-world .change-top-content {
      position: relative;
      padding-top: 40px;
      margin-bottom: 20px; }
      @media only screen and (min-width: 768px) {
        .method-for-change-container .change-the-world .change-top-content {
          padding-top: 60px;
          margin-bottom: 0; } }
      .method-for-change-container .change-the-world .change-top-content .gradient-cycle {
        height: 1em;
        position: relative; }
        .method-for-change-container .change-the-world .change-top-content .gradient-cycle .gradient-text {
          position: absolute;
          z-index: -1;
          padding-top: 4px; }
          .method-for-change-container .change-the-world .change-top-content .gradient-cycle .gradient-text:nth-child(n + 2) {
            opacity: 0;
            transform: translate(0, 33%); }
      .method-for-change-container .change-the-world .change-top-content .image-container {
        position: absolute;
        top: 185px;
        left: -415px;
        max-width: 95%;
        z-index: 9; }
        @media only screen and (min-width: 768px) {
          .method-for-change-container .change-the-world .change-top-content .image-container {
            top: 0px;
            left: -300px; } }
        @media only screen and (min-width: 991px) {
          .method-for-change-container .change-the-world .change-top-content .image-container {
            top: 200px;
            left: -300px; } }
        @media only screen and (min-width: 1200px) {
          .method-for-change-container .change-the-world .change-top-content .image-container {
            top: 185px;
            left: -350px; } }
        @media only screen and (min-width: 1400px) {
          .method-for-change-container .change-the-world .change-top-content .image-container {
            top: 250px;
            left: -415px; } }
      .method-for-change-container .change-the-world .change-top-content .world-title {
        font-size: 50px;
        font-weight: 500;
        line-height: 50px;
        margin-bottom: 30px;
        position: relative;
        z-index: 10; }
        @media only screen and (min-width: 991px) {
          .method-for-change-container .change-the-world .change-top-content .world-title {
            font-size: 80px;
            line-height: 80px;
            position: relative;
            z-index: 9;
            margin-bottom: 54px; } }
        .method-for-change-container .change-the-world .change-top-content .world-title.indent {
          mix-blend-mode: multiply; }
      .method-for-change-container .change-the-world .change-top-content .indent {
        margin-left: 0; }
        @media only screen and (min-width: 375px) {
          .method-for-change-container .change-the-world .change-top-content .indent {
            margin-left: 22px; } }
        @media only screen and (min-width: 768px) {
          .method-for-change-container .change-the-world .change-top-content .indent {
            margin-left: 0; } }
        @media only screen and (min-width: 1200px) {
          .method-for-change-container .change-the-world .change-top-content .indent {
            margin-left: 30px; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .method-for-change-container .change-the-world .change-top-content .section-header {
          font-size: 40px; } }
      .method-for-change-container .change-the-world .change-top-content .change-why {
        margin-top: 206px;
        margin-bottom: 30px;
        position: relative;
        z-index: 9;
        mix-blend-mode: multiply; }
        @media only screen and (min-width: 768px) {
          .method-for-change-container .change-the-world .change-top-content .change-why {
            margin-top: 25px; } }
        @media only screen and (min-width: 991px) {
          .method-for-change-container .change-the-world .change-top-content .change-why {
            margin-top: 50px; } }
        @media only screen and (min-width: 1200px) {
          .method-for-change-container .change-the-world .change-top-content .change-why {
            margin-top: 100px; } }
        @media only screen and (min-width: 1400px) {
          .method-for-change-container .change-the-world .change-top-content .change-why {
            margin-top: 206px; } }
        .method-for-change-container .change-the-world .change-top-content .change-why .change-why-not {
          padding-left: 15px; }
          @media only screen and (min-width: 991px) {
            .method-for-change-container .change-the-world .change-top-content .change-why .change-why-not {
              padding-left: 30px; } }
          @media only screen and (min-width: 1200px) {
            .method-for-change-container .change-the-world .change-top-content .change-why .change-why-not {
              padding-left: 60px; } }
        .method-for-change-container .change-the-world .change-top-content .change-why .change-why-title {
          padding-left: 70px; }
        .method-for-change-container .change-the-world .change-top-content .change-why h2, .method-for-change-container .change-the-world .change-top-content .change-why .h2 {
          text-transform: lowercase; }
        .method-for-change-container .change-the-world .change-top-content .change-why .list-header {
          margin-bottom: 80px; }
        .method-for-change-container .change-the-world .change-top-content .change-why .change-list {
          list-style-type: none;
          max-width: 345px; }
          .method-for-change-container .change-the-world .change-top-content .change-why .change-list p, .method-for-change-container .change-the-world .change-top-content .change-why .change-list .p {
            text-transform: lowercase;
            margin-bottom: 1.75em; }
    .method-for-change-container .change-the-world .mobile-change-why {
      position: relative;
      padding-top: 184px; }
      .method-for-change-container .change-the-world .mobile-change-why .top-text,
      .method-for-change-container .change-the-world .mobile-change-why .bottom-text,
      .method-for-change-container .change-the-world .mobile-change-why .mobile-bottles-container {
        z-index: 10; }
      .method-for-change-container .change-the-world .mobile-change-why .top-text,
      .method-for-change-container .change-the-world .mobile-change-why .bottom-text {
        position: relative; }
        .method-for-change-container .change-the-world .mobile-change-why .top-text h2, .method-for-change-container .change-the-world .mobile-change-why .top-text .h2, .method-for-change-container .change-the-world .mobile-change-why .top-text p, .method-for-change-container .change-the-world .mobile-change-why .top-text .p,
        .method-for-change-container .change-the-world .mobile-change-why .bottom-text h2,
        .method-for-change-container .change-the-world .mobile-change-why .bottom-text .h2,
        .method-for-change-container .change-the-world .mobile-change-why .bottom-text p,
        .method-for-change-container .change-the-world .mobile-change-why .bottom-text .p {
          text-align: left;
          text-transform: lowercase; }
      .method-for-change-container .change-the-world .mobile-change-why .top-text {
        width: 50%;
        margin-left: auto;
        padding-right: 20px; }
      .method-for-change-container .change-the-world .mobile-change-why .bottom-text {
        margin-top: 275px;
        width: 192px; }
        @media only screen and (min-width: 768px) {
          .method-for-change-container .change-the-world .mobile-change-why .bottom-text {
            width: 65%; } }
        @media only screen and (max-width: 767px) {
          .method-for-change-container .change-the-world .mobile-change-why .bottom-text .section-header {
            margin-bottom: 15px; } }
      .method-for-change-container .change-the-world .mobile-change-why .mobile-bottles-container {
        position: absolute;
        top: 0;
        width: 682px; }
        .method-for-change-container .change-the-world .mobile-change-why .mobile-bottles-container .bottle-left {
          position: relative;
          left: -300px; }
          @media only screen and (min-width: 768px) {
            .method-for-change-container .change-the-world .mobile-change-why .mobile-bottles-container .bottle-left {
              left: -265px; } }
    .method-for-change-container .change-the-world .change-bottom-content {
      position: relative; }
      @media only screen and (min-width: 550px) and (max-width: 767px) {
        .method-for-change-container .change-the-world .change-bottom-content {
          padding: 0 50px; } }
      .method-for-change-container .change-the-world .change-bottom-content .bottle-images {
        position: relative; }
        @media only screen and (max-width: 767px) {
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images {
            margin-bottom: 100px; } }
        .method-for-change-container .change-the-world .change-bottom-content .bottle-images > .background-video {
          top: 50%;
          margin-top: 20px;
          transform: translate(0, -50%) rotate(-10deg);
          left: -30%;
          right: -135%; }
          @media only screen and (min-width: 480px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images > .background-video {
              margin-top: 60px;
              left: -33%;
              right: -33%; } }
        .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section,
        .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section {
          position: relative; }
          @media only screen and (min-width: 768px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section,
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section {
              position: absolute; } }
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .image-container,
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .image-container {
            position: absolute; }
            @media only screen and (min-width: 768px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .image-container,
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .image-container {
                position: relative; } }
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section p, .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .p,
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section p,
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .p {
            text-transform: lowercase; }
        .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section {
          padding-top: 246px; }
          @media only screen and (min-width: 768px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section {
              padding-top: 0;
              top: 0;
              left: 0;
              right: 50%;
              width: 496px; } }
          @media only screen and (min-width: 991px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section {
              width: 600px; } }
          @media only screen and (min-width: 1200px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section {
              width: 744px; } }
          @media only screen and (min-width: 1400px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section {
              width: 922px; } }
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .background-video {
            max-width: 100%;
            width: 906px;
            top: 50%;
            left: -60px;
            transform: translate(-50%, -50%) rotateZ(240deg);
            z-index: 1; }
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .background-video video {
              width: 100%;
              height: auto; }
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .image-container {
            width: 435px;
            top: -22px;
            left: -148px;
            z-index: 10; }
            @media only screen and (min-width: 768px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .image-container {
                padding-top: 90px;
                top: auto;
                width: auto;
                left: -162px; } }
            @media only screen and (min-width: 991px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .image-container {
                padding-top: 150px;
                left: -194px; } }
            @media only screen and (min-width: 1200px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .image-container {
                padding-top: 120px;
                left: -230px; } }
            @media only screen and (min-width: 1400px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .image-container {
                padding-top: 180px;
                left: -252px; } }
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-left-section .mobile-left-content {
            position: relative;
            max-width: 182px;
            margin: 0 0 0 auto;
            z-index: 9; }
        .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section {
          padding-top: 232px; }
          @media only screen and (min-width: 768px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section {
              top: 0;
              right: 0;
              left: 50%;
              padding-top: 0;
              margin-left: auto;
              text-align: right;
              width: 500px; } }
          @media only screen and (min-width: 991px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section {
              width: 650px; } }
          @media only screen and (min-width: 1200px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section {
              width: 750px; } }
          @media only screen and (min-width: 1400px) {
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section {
              width: 999px; } }
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .background-video {
            max-width: 130%;
            width: 1300px;
            right: 50%;
            transform: translate(50%, 0);
            z-index: 3; }
            @media only screen and (min-width: 768px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .background-video {
                margin-right: -202px; } }
            @media only screen and (min-width: 991px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .background-video {
                margin-right: -252px; } }
            @media only screen and (min-width: 1200px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .background-video {
                margin-right: -287px; } }
            @media only screen and (min-width: 1400px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .background-video {
                margin-right: -344px; } }
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .background-video video {
              width: 100%;
              height: auto; }
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .image-container {
            top: 0;
            padding-top: 18px;
            width: 340px;
            right: -100px;
            z-index: 10; }
            @media only screen and (min-width: 768px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .image-container {
                padding: 0;
                width: auto;
                right: -202px; } }
            @media only screen and (min-width: 991px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .image-container {
                right: -252px; } }
            @media only screen and (min-width: 1200px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .image-container {
                right: -287px; } }
            @media only screen and (min-width: 1400px) {
              .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .image-container {
                right: -344px; } }
          .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .mobile-right-content {
            width: 55%;
            max-width: 250px;
            bottom: -80px;
            left: 0;
            z-index: 9; }
            .method-for-change-container .change-the-world .change-bottom-content .bottle-images .bottle-right-section .mobile-right-content .change-text-first {
              margin-bottom: 50px; }
      .method-for-change-container .change-the-world .change-bottom-content .change-image {
        position: relative;
        z-index: 10;
        max-width: 307px;
        margin: 0 auto; }
        @media only screen and (min-width: 768px) {
          .method-for-change-container .change-the-world .change-bottom-content .change-image {
            width: 538px;
            max-width: 50%;
            padding-top: 400px; } }
        @media only screen and (min-width: 991px) {
          .method-for-change-container .change-the-world .change-bottom-content .change-image {
            padding-top: 515px; } }
        @media only screen and (min-width: 1200px) {
          .method-for-change-container .change-the-world .change-bottom-content .change-image {
            padding-top: 580px; } }
        @media only screen and (min-width: 1400px) {
          .method-for-change-container .change-the-world .change-bottom-content .change-image {
            padding-top: 860px; } }
  .method-for-change-container .meet-future-section {
    position: relative;
    padding-top: 185px;
    padding-bottom: 168px; }
    @media only screen and (min-width: 768px) {
      .method-for-change-container .meet-future-section {
        padding-bottom: 100px; } }
    .method-for-change-container .meet-future-section .background-video {
      width: 100%;
      left: 0;
      right: 0;
      top: -5px;
      bottom: 0;
      z-index: 0; }
      .method-for-change-container .meet-future-section .background-video video {
        object-position: center top; }
      @media only screen and (min-width: 768px) {
        .method-for-change-container .meet-future-section .background-video {
          bottom: 0;
          margin-top: -100px; } }
    .method-for-change-container .meet-future-section .meet-future-grid-container .mobile-header {
      position: relative;
      z-index: 10; }
    .method-for-change-container .meet-future-section .meet-future-grid-container .image-block {
      padding: 0 0 40px; }
    .method-for-change-container .meet-future-section .meet-future-grid-container .image-text-image {
      position: relative;
      margin: 0 auto;
      display: block;
      max-width: 436px;
      width: 100%; }
      @media only screen and (min-width: 768px) {
        .method-for-change-container .meet-future-section .meet-future-grid-container .image-text-image {
          margin: 0;
          max-width: 100%; } }
    .method-for-change-container .meet-future-section .meet-future-content {
      padding-left: 35px; }
      @media only screen and (max-width: 767px) {
        .method-for-change-container .meet-future-section .meet-future-content {
          width: 350px;
          max-width: 100%;
          margin: 0 auto;
          padding: 0; } }
      .method-for-change-container .meet-future-section .meet-future-content .meet-future-title {
        margin-bottom: 70px;
        line-height: 1;
        position: relative; }
      .method-for-change-container .meet-future-section .meet-future-content .meet-future-subtitle {
        font-family: "Avenir", "Clear Sans";
        font-weight: 500;
        font-size: 38px;
        line-height: 1;
        margin-bottom: 25px; }
      .method-for-change-container .meet-future-section .meet-future-content .aluminum-highlights {
        position: relative;
        padding-left: 20px;
        margin-bottom: 30px; }
      @media only screen and (max-width: 767px) {
        .method-for-change-container .meet-future-section .meet-future-content .highlight-link {
          text-align: center; } }
  .method-for-change-container .soap-hope-section {
    padding: 40px 0 24px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    background: linear-gradient(90deg, #c8b9db 20%, #c9ccde, #cdefec 70%);
    margin-bottom: 0; }
    .method-for-change-container .soap-hope-section .soap-hope-row {
      margin: 0; }
      @media only screen and (min-width: 480px) {
        .method-for-change-container .soap-hope-section .soap-hope-row {
          margin-left: -22px;
          margin-bottom: 22px; } }
    @media only screen and (max-width: 767px) {
      .method-for-change-container .soap-hope-section {
        padding: 40px 0 0; } }
    @media only screen and (max-width: 479px) {
      .method-for-change-container .soap-hope-section .wrapper {
        padding: 0; } }
    .method-for-change-container .soap-hope-section .slick-track {
      display: flex;
      align-items: stretch; }
      .method-for-change-container .soap-hope-section .slick-track .slick-slide {
        float: none;
        height: auto;
        padding-left: 0; }
        @media only screen and (min-width: 480px) {
          .method-for-change-container .soap-hope-section .slick-track .slick-slide {
            padding-left: 22px; } }
    .method-for-change-container .soap-hope-section .soap-hope-header {
      max-width: 700px;
      margin: 0 auto;
      margin-bottom: 30px; }
      @media only screen and (max-width: 767px) {
        .method-for-change-container .soap-hope-section .soap-hope-header {
          width: 315px;
          max-width: 100%;
          line-height: 35px;
          margin-bottom: 25px; } }
    .method-for-change-container .soap-hope-section .soap-hope-card {
      background: #ffffff;
      height: 100%; }
      @media only screen and (max-width: 767px) {
        .method-for-change-container .soap-hope-section .soap-hope-card .card-image {
          width: 100%; } }
      .method-for-change-container .soap-hope-section .soap-hope-card .soap-hope-body {
        padding: 15px 20px 10px;
        min-height: 275px; }
        @media only screen and (min-width: 361px) and (max-width: 500px) {
          .method-for-change-container .soap-hope-section .soap-hope-card .soap-hope-body {
            min-height: 250px; } }
        @media only screen and (min-width: 501px) and (max-width: 767px) {
          .method-for-change-container .soap-hope-section .soap-hope-card .soap-hope-body {
            min-height: 220px; } }
        @media only screen and (min-width: 768px) and (max-width: 990px) {
          .method-for-change-container .soap-hope-section .soap-hope-card .soap-hope-body {
            min-height: 275px; } }
        @media only screen and (min-width: 991px) and (max-width: 1199px) {
          .method-for-change-container .soap-hope-section .soap-hope-card .soap-hope-body {
            min-height: 300px; } }
        @media only screen and (min-width: 1200px) {
          .method-for-change-container .soap-hope-section .soap-hope-card .soap-hope-body {
            min-height: 280px; } }
        .method-for-change-container .soap-hope-section .soap-hope-card .soap-hope-body .card-title {
          font-size: 20px;
          text-transform: none; }
        .method-for-change-container .soap-hope-section .soap-hope-card .soap-hope-body .card-description {
          text-transform: none; }
    .method-for-change-container .soap-hope-section .slick-dots {
      padding-left: 22px;
      bottom: -30px; }
      @media only screen and (max-width: 767px) {
        .method-for-change-container .soap-hope-section .slick-dots {
          bottom: 10px; } }
  .method-for-change-container .future-friends-section {
    position: relative;
    padding: 200px 20px; }
    @media only screen and (min-width: 768px) {
      .method-for-change-container .future-friends-section {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-bottom: 215px; } }
    .method-for-change-container .future-friends-section .background-video {
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
      @media only screen and (min-width: 768px) {
        .method-for-change-container .future-friends-section .background-video {
          top: -150px;
          bottom: auto; } }
      @media only screen and (min-width: 480px) and (max-width: 767px) {
        .method-for-change-container .future-friends-section .background-video video {
          object-fit: fill; } }
  .method-for-change-container .page.aluminum {
    padding-bottom: 0; }
  .method-for-change-container .refill-repeat-section {
    position: relative;
    overflow: visible; }
    .method-for-change-container .refill-repeat-section .background-video {
      top: 0;
      left: 0;
      right: 0; }
      @media only screen and (min-width: 480px) {
        .method-for-change-container .refill-repeat-section .background-video {
          left: -30px;
          right: -30px; } }
      .method-for-change-container .refill-repeat-section .background-video video {
        max-height: 2262px; }
        @media only screen and (min-width: 1920px) {
          .method-for-change-container .refill-repeat-section .background-video video {
            max-height: 2600px; } }
    .method-for-change-container .refill-repeat-section .refill-repeat-content {
      position: relative;
      z-index: 10;
      mix-blend-mode: multiply;
      padding-top: 3em; }
      @media only screen and (max-width: 767px) {
        .method-for-change-container .refill-repeat-section .refill-repeat-content {
          max-width: 250px;
          margin: 0 auto; } }
    .method-for-change-container .refill-repeat-section .image-block .reuse-image {
      top: 40px;
      left: -65px;
      position: relative; }
      @media only screen and (min-width: 480px) and (max-width: 767px) {
        .method-for-change-container .refill-repeat-section .image-block .reuse-image {
          top: 0;
          left: 0;
          transform: none; } }
      @media only screen and (max-width: 479px) {
        .method-for-change-container .refill-repeat-section .image-block .reuse-image {
          top: 0;
          left: -50px;
          min-width: 465px;
          transform: none; } }
    .method-for-change-container .refill-repeat-section .refill-repeat-title {
      text-align: left;
      font-size: 80px;
      line-height: 60px;
      margin-bottom: 0;
      font-weight: 500; }
      .method-for-change-container .refill-repeat-section .refill-repeat-title.third {
        margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        .method-for-change-container .refill-repeat-section .refill-repeat-title {
          font-size: 50px;
          line-height: 45px; } }
      .method-for-change-container .refill-repeat-section .refill-repeat-title.gradient-text {
        margin-left: 100px; }
    .method-for-change-container .refill-repeat-section .refill-repeat-subheading {
      max-width: 265px; }
      @media only screen and (min-width: 768px) {
        .method-for-change-container .refill-repeat-section .refill-repeat-subheading {
          max-width: 335px; } }
  .method-for-change-container .future-handwashing-section .future-handwashing-content {
    max-width: 525px;
    margin: 0 auto; }
    .method-for-change-container .future-handwashing-section .future-handwashing-content .button.aluminum {
      position: relative;
      z-index: 10; }
  .method-for-change-container .future-handwashing-section .future-handwashing-title {
    position: relative;
    z-index: 10;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 0;
    mix-blend-mode: multiply; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .method-for-change-container .future-handwashing-section .future-handwashing-title {
        font-size: 38px; } }
    @media only screen and (min-width: 991px) {
      .method-for-change-container .future-handwashing-section .future-handwashing-title {
        margin-bottom: 15px; } }
    .method-for-change-container .future-handwashing-section .future-handwashing-title .gradient-text {
      margin-left: 15%; }
      @media only screen and (min-width: 360px) {
        .method-for-change-container .future-handwashing-section .future-handwashing-title .gradient-text {
          margin-left: 25%; } }
  .method-for-change-container .future-handwashing-section .future-handwashing-subheading {
    position: relative;
    z-index: 10; }
  @media only screen and (max-width: 767px) {
    .method-for-change-container .lather-section .lather-image-container {
      margin-bottom: 60px; } }
  .method-for-change-container .lather-section .lather-image-container .lather-image {
    width: 100%; }
  @media only screen and (min-width: 768px) {
    .method-for-change-container .lather-section .lather-image-container .slick-dots {
      bottom: 20px; } }
  .method-for-change-container .lather-section .lather-wrapper {
    padding-left: 30px;
    padding-right: 15px; }
    @media only screen and (max-width: 767px) {
      .method-for-change-container .lather-section .lather-wrapper {
        padding-left: 0;
        padding-right: 0; } }
    @media only screen and (min-width: 1200px) {
      .method-for-change-container .lather-section .lather-wrapper {
        padding-left: 85px; } }
    @media only screen and (max-width: 767px) {
      .method-for-change-container .lather-section .lather-wrapper .lather-header {
        text-align: center;
        padding: 0 10px;
        margin-bottom: 30px; } }
    @media only screen and (min-width: 768px) {
      .method-for-change-container .lather-section .lather-wrapper .lather-header {
        max-width: 630px;
        margin-bottom: 20px; } }
    .method-for-change-container .lather-section .lather-wrapper .lather-header .lather-heading {
      margin-bottom: 0; }
    .method-for-change-container .lather-section .lather-wrapper .lather-options {
      position: relative;
      z-index: 10;
      display: flex;
      list-style-type: none;
      max-width: 730px; }
      @media only screen and (max-width: 990px) {
        .method-for-change-container .lather-section .lather-wrapper .lather-options {
          flex-direction: column;
          justify-content: center;
          align-items: center; } }
      .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block {
        width: 100%;
        margin-bottom: 40px;
        margin-right: 20px; }
        @media only screen and (max-width: 767px) {
          .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block {
            text-align: center;
            padding: 0 10px; } }
        @media only screen and (max-width: 990px) {
          .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block {
            margin-right: 0;
            margin-bottom: 30px; } }
        .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block:last-child {
          margin-right: 0; }
        .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block .lather-title {
          margin-bottom: 0; }
        @media only screen and (min-width: 991px) {
          .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block .lather-face-icon {
            margin-right: 15px; } }
        .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block .lather-face-icon .icon {
          color: #6235B6; }
        .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block .lather-face-icon svg {
          width: 50px;
          height: 50px;
          fill: currentColor; }
          @media only screen and (max-width: 767px) {
            .method-for-change-container .lather-section .lather-wrapper .lather-options .lather-block .lather-face-icon svg {
              width: 80px;
              height: 80px; } }
  .method-for-change-container .aluminum-row-section {
    position: relative;
    padding-top: 60px; }
    @media only screen and (min-width: 768px) {
      .method-for-change-container .aluminum-row-section {
        overflow: hidden; } }
    @media only screen and (max-width: 767px) {
      .method-for-change-container .aluminum-row-section {
        margin-bottom: 0; } }
    .method-for-change-container .aluminum-row-section.homepage {
      padding-bottom: 80px; }
    .method-for-change-container .aluminum-row-section .background-video.top {
      top: 150px;
      right: 0;
      max-width: 60%;
      transform: translate(0, -50%);
      z-index: 0; }
    .method-for-change-container .aluminum-row-section .background-video.bottom {
      bottom: 0;
      left: -33%;
      right: -33%;
      z-index: 0; }
      @media only screen and (min-width: 480px) {
        .method-for-change-container .aluminum-row-section .background-video.bottom {
          left: 0;
          right: 0; } }
      .method-for-change-container .aluminum-row-section .background-video.bottom video {
        object-position: bottom center; }
    .method-for-change-container .aluminum-row-section .aluminum-heading {
      line-height: normal;
      margin-bottom: 20px;
      font-size: 24px;
      line-height: normal;
      padding: 0 22px;
      position: relative;
      z-index: 9; }
      @media only screen and (min-width: 768px) {
        .method-for-change-container .aluminum-row-section .aluminum-heading {
          max-width: 700px;
          margin: 0 auto;
          margin-bottom: 50px;
          font-size: 38px; } }
    .method-for-change-container .aluminum-row-section .aluminum-slider-container {
      position: relative; }
    .method-for-change-container .aluminum-row-section .fruit-left,
    .method-for-change-container .aluminum-row-section .fruit-right {
      position: absolute; }
    .method-for-change-container .aluminum-row-section .fruit-left {
      top: -200px;
      left: -20px;
      width: 160px; }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .method-for-change-container .aluminum-row-section .fruit-left {
          top: -80px; } }
    .method-for-change-container .aluminum-row-section .fruit-right {
      top: 80px;
      right: -50px;
      width: 250px; }
    .method-for-change-container .aluminum-row-section .aluminum-row .slick-dots {
      padding-left: 22px; }
    .method-for-change-container .aluminum-row-section .aluminum-block .aluminum-image-wrap {
      margin-bottom: 16px; }
      .method-for-change-container .aluminum-row-section .aluminum-block .aluminum-image-wrap:hover .aluminum-img-hover, .method-for-change-container .aluminum-row-section .aluminum-block .aluminum-image-wrap:focus .aluminum-img-hover {
        display: block; }
      .method-for-change-container .aluminum-row-section .aluminum-block .aluminum-image-wrap:hover .aluminum-image, .method-for-change-container .aluminum-row-section .aluminum-block .aluminum-image-wrap:focus .aluminum-image {
        display: none; }
      .method-for-change-container .aluminum-row-section .aluminum-block .aluminum-image-wrap .aluminum-image {
        width: 100%; }
      .method-for-change-container .aluminum-row-section .aluminum-block .aluminum-image-wrap .aluminum-img-hover {
        display: none; }
    .method-for-change-container .aluminum-row-section .aluminum-block .content-header .aluminum-title {
      font-size: 20px;
      margin-bottom: 0; }
    .method-for-change-container .aluminum-row-section .aluminum-block .content-header .aluminum-description {
      font-size: 16px;
      padding: 0 10px; }
    .method-for-change-container .aluminum-row-section .find-products-link {
      padding-top: 50px; }
      .method-for-change-container .aluminum-row-section .find-products-link .find-product-heading {
        font-size: 38px;
        position: relative;
        z-index: 10; }
        @media only screen and (max-width: 767px) {
          .method-for-change-container .aluminum-row-section .find-products-link .find-product-heading {
            font-size: 24px;
            padding: 0 30px;
            margin-bottom: 20px;
            line-height: normal; } }
  .method-for-change-container .ffg-section {
    margin-bottom: 70px; }
    @media only screen and (min-width: 768px) {
      .method-for-change-container .ffg-section {
        max-height: 640px;
        margin-bottom: 100px; } }
    .method-for-change-container .ffg-section .ffg-left {
      background-color: #D0DDC9; }
    .method-for-change-container .ffg-section .ffg-content {
      margin: 0 auto;
      max-width: 470px;
      padding: 20px; }
      @media only screen and (max-width: 767px) {
        .method-for-change-container .ffg-section .ffg-content {
          text-align: center; } }
      .method-for-change-container .ffg-section .ffg-content .ffg-header-title {
        margin-bottom: 10px;
        font-size: 30px; }
        @media only screen and (max-width: 767px) {
          .method-for-change-container .ffg-section .ffg-content .ffg-header-title {
            text-align: left;
            padding: 0 5%; } }
        @media only screen and (min-width: 768px) and (max-width: 990px) {
          .method-for-change-container .ffg-section .ffg-content .ffg-header-title {
            font-size: 40px; } }
        @media only screen and (min-width: 991px) {
          .method-for-change-container .ffg-section .ffg-content .ffg-header-title {
            font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            font-weight: 700;
            line-height: normal; } }
        .method-for-change-container .ffg-section .ffg-content .ffg-header-title .gradient-text {
          margin-left: 40px; }
          @media only screen and (min-width: 768px) and (max-width: 990px) {
            .method-for-change-container .ffg-section .ffg-content .ffg-header-title .gradient-text {
              margin-left: 40px; } }
          @media only screen and (min-width: 991px) {
            .method-for-change-container .ffg-section .ffg-content .ffg-header-title .gradient-text {
              margin-left: 60px; } }
      .method-for-change-container .ffg-section .ffg-content .ffg-header-subheading {
        margin-bottom: 0; }
        @media only screen and (min-width: 768px) {
          .method-for-change-container .ffg-section .ffg-content .ffg-header-subheading {
            padding-right: 30px; } }
  .method-for-change-container .image-text-section {
    margin-bottom: 70px; }
    @media only screen and (min-width: 768px) {
      .method-for-change-container .image-text-section {
        margin-bottom: 130px; } }
    @media only screen and (max-width: 767px) {
      .method-for-change-container .image-text-section .image-block {
        margin-bottom: 20px; } }
    .method-for-change-container .image-text-section .image-text-content {
      max-width: 700px;
      padding: 9px;
      text-align: center; }
      @media only screen and (min-width: 768px) {
        .method-for-change-container .image-text-section .image-text-content {
          text-align: left; } }
      .method-for-change-container .image-text-section .image-text-content .image-text-title {
        font-family: "Avenir", "Clear Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        margin-bottom: 5px; }
  .method-for-change-container .refill-section {
    position: relative; }
    .method-for-change-container .refill-section .image-text-content {
      position: relative;
      z-index: 10; }
    .method-for-change-container .refill-section .background-video.top-right {
      right: 0;
      top: 20%;
      transform: translate(0, -50%);
      max-width: 400px;
      width: 25%; }
    .method-for-change-container .refill-section .background-video.bottom-left {
      left: 0;
      bottom: -15%;
      transform: translate(0, 50%);
      max-width: 266px;
      width: 16.666%; }
    @media only screen and (min-width: 991px) {
      .method-for-change-container .refill-section {
        padding: 0 70px; } }
    .method-for-change-container .refill-section .refill-image {
      position: relative;
      z-index: 10; }
  .method-for-change-container .method-newsletter {
    position: relative;
    margin-bottom: 120px; }
    .method-for-change-container .method-newsletter .method-for-change-logo {
      margin-bottom: 50px; }
      .method-for-change-container .method-newsletter .method-for-change-logo .offset-logo {
        width: 95px;
        height: 95px; }
        @media only screen and (max-width: 767px) {
          .method-for-change-container .method-newsletter .method-for-change-logo .offset-logo {
            width: 50px;
            height: 50px; } }
      .method-for-change-container .method-newsletter .method-for-change-logo .method-change-logo {
        width: 538px; }
    .method-for-change-container .method-newsletter .newsletter-content {
      max-width: 500px;
      margin: 0 auto; }
      .method-for-change-container .method-newsletter .newsletter-content .newsletter-title {
        font-size: 24px;
        margin-bottom: 5px;
        font-weight: 500; }
    .method-for-change-container .method-newsletter .newsletter-footer {
      max-width: 315px;
      margin: 0 auto; }
      .method-for-change-container .method-newsletter .newsletter-footer a {
        color: #665EC7;
        font-weight: 700; }
      .method-for-change-container .method-newsletter .newsletter-footer .signup-disclaimer {
        font-size: 14px; }
        .method-for-change-container .method-newsletter .newsletter-footer .signup-disclaimer a {
          text-decoration: underline; }
  .method-for-change-container .aluminum-page-content {
    position: relative;
    overflow: hidden; }
    .method-for-change-container .aluminum-page-content > .background-video {
      z-index: 0;
      right: 0;
      bottom: -80px; }
      @media only screen and (min-width: 768px) {
        .method-for-change-container .aluminum-page-content > .background-video {
          transform: translate(25%, 25%);
          max-width: 50%; } }
  .method-for-change-container .initial-opacity {
    opacity: 1 !important; }

@keyframes bg-slideUp-0 {
  0% {
    background-position: 0 -76px; }
  50% {
    background-position: 0 -76px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-reuse {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-reuse::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #7B57C6 14%, #4DA1C6 33%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-reuse.start_delayed_animation::before {
      animation-name: bg-slideUp-0;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-reuse::before {
      mix-blend-mode: screen; } }

@keyframes bg-slideUp-1 {
  0% {
    background-position: 0 -120px; }
  50% {
    background-position: 0 -120px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-future {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-future::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #ED2290 0%, #665EC7 20%, #665EC7 33%, #414042 66%, #414042 100%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-future.start_delayed_animation::before {
      animation-name: bg-slideUp-1;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-future::before {
      mix-blend-mode: screen; } }

@keyframes bg-slideUp-2 {
  0% {
    background-position: 0 -120px; }
  50% {
    background-position: 0 -120px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-lather {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-lather::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #ED2290 0%, #665EC7 20%, #665EC7 33%, #414042 66%, #414042 100%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-lather.start_delayed_animation::before {
      animation-name: bg-slideUp-2;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-lather::before {
      mix-blend-mode: screen; } }

@keyframes bg-slideUp-3 {
  0% {
    background-position: 0 -120px; }
  50% {
    background-position: 0 -120px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-refill {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-refill::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #ED2290 0%, #665EC7 20%, #665EC7 33%, #414042 66%, #414042 100%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-refill.start_delayed_animation::before {
      animation-name: bg-slideUp-3;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-refill::before {
      mix-blend-mode: screen; } }

@keyframes bg-slideUp-4 {
  0% {
    background-position: 0 -76px; }
  50% {
    background-position: 0 -76px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-why-not {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-why-not::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #665EC7 0%, #665EC7 3%, #ED2290 33%, #414042 66%, #414042 100%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-why-not.start_delayed_animation::before {
      animation-name: bg-slideUp-4;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-why-not::before {
      mix-blend-mode: screen; } }

@media only screen and (min-width: 768px) {
  @keyframes bg-slideUp-5 {
    0% {
      background-position: 0 -100px; }
    50% {
      background-position: 0 -100px; }
    100% {
      background-position: 0 0; } }
  @supports (mix-blend-mode: lighten) {
    .gradient-why-not {
      display: inline-block;
      position: relative;
      padding: 1px;
      color: #000;
      background: #fff;
      mix-blend-mode: multiply; }
      .gradient-why-not::before {
        content: '';
        display: block;
        position: absolute;
        top: 1px;
        right: 1px;
        bottom: 1px;
        left: 1px;
        background: linear-gradient(to bottom, #665EC7 0%, #665EC7 3%, #ED2290 33%, #414042 66%, #414042 100%);
        pointer-events: none;
        background-size: 100% 300%;
        background-position: 0 0; }
      .gradient-why-not.start_delayed_animation::before {
        animation-name: bg-slideUp-5;
        animation-direction: normal;
        animation-duration: 2s;
        animation-timing-function: ease;
        animation-delay: 0s;
        animation-iteration-count: 1; }
      .gradient-why-not::before {
        mix-blend-mode: screen; } } }

@media only screen and (min-width: 991px) {
  @keyframes bg-slideUp-6 {
    0% {
      background-position: 0 -124px; }
    50% {
      background-position: 0 -124px; }
    100% {
      background-position: 0 0; } }
  @supports (mix-blend-mode: lighten) {
    .gradient-why-not {
      display: inline-block;
      position: relative;
      padding: 1px;
      color: #000;
      background: #fff;
      mix-blend-mode: multiply; }
      .gradient-why-not::before {
        content: '';
        display: block;
        position: absolute;
        top: 1px;
        right: 1px;
        bottom: 1px;
        left: 1px;
        background: linear-gradient(to bottom, #665EC7 0%, #665EC7 3%, #ED2290 33%, #414042 66%, #414042 100%);
        pointer-events: none;
        background-size: 100% 300%;
        background-position: 0 0; }
      .gradient-why-not.start_delayed_animation::before {
        animation-name: bg-slideUp-6;
        animation-direction: normal;
        animation-duration: 2s;
        animation-timing-function: ease;
        animation-delay: 0s;
        animation-iteration-count: 1; }
      .gradient-why-not::before {
        mix-blend-mode: screen; } } }

@keyframes bg-slideUp-7 {
  0% {
    background-position: 0 -76px; }
  50% {
    background-position: 0 -76px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-friends {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-friends::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #885AE7 0%, #E087D0 25%, #E087D0 33%, #414042 66%, #414042 100%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-friends.start_delayed_animation::before {
      animation-name: bg-slideUp-7;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-friends::before {
      mix-blend-mode: screen; } }

@media only screen and (min-width: 768px) {
  @keyframes bg-slideUp-8 {
    0% {
      background-position: 0 -120px; }
    50% {
      background-position: 0 -120px; }
    100% {
      background-position: 0 0; } }
  @supports (mix-blend-mode: lighten) {
    .gradient-friends {
      display: inline-block;
      position: relative;
      padding: 1px;
      color: #000;
      background: #fff;
      mix-blend-mode: multiply; }
      .gradient-friends::before {
        content: '';
        display: block;
        position: absolute;
        top: 1px;
        right: 1px;
        bottom: 1px;
        left: 1px;
        background: linear-gradient(to bottom, #885AE7 0%, #E087D0 25%, #E087D0 33%, #414042 66%, #414042 100%);
        pointer-events: none;
        background-size: 100% 300%;
        background-position: 0 0; }
      .gradient-friends.start_delayed_animation::before {
        animation-name: bg-slideUp-8;
        animation-direction: normal;
        animation-duration: 2s;
        animation-timing-function: ease;
        animation-delay: 0s;
        animation-iteration-count: 1; }
      .gradient-friends::before {
        mix-blend-mode: screen; } } }

.gradient-rejoice {
  line-height: 1; }

@keyframes bg-slideUp-9 {
  0% {
    background-position: 0 -76px; }
  50% {
    background-position: 0 -76px; }
  100% {
    background-position: 0 0; } }
  @supports (mix-blend-mode: lighten) {
    .gradient-rejoice {
      display: inline-block;
      position: relative;
      padding: 1px;
      color: #000;
      background: #fff;
      mix-blend-mode: multiply; }
      .gradient-rejoice::before {
        content: '';
        display: block;
        position: absolute;
        top: 1px;
        right: 1px;
        bottom: 1px;
        left: 1px;
        background: linear-gradient(to bottom, #FFA88A 0%, #ED2290 16.6%, #665EC7 33%, #414042 66%, #414042 100%);
        pointer-events: none;
        background-size: 100% 300%;
        background-position: 0 0; }
      .gradient-rejoice.start_delayed_animation::before {
        animation-name: bg-slideUp-9;
        animation-direction: normal;
        animation-duration: 2s;
        animation-timing-function: ease;
        animation-delay: 0s;
        animation-iteration-count: 1; }
      .gradient-rejoice::before {
        mix-blend-mode: screen; } }

@keyframes bg-slideUp-10 {
  0% {
    background-position: 0 -160px; }
  50% {
    background-position: 0 -160px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-text.the-world {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-text.the-world::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #ED2290 0%, #665EC7 20%, #665EC7 33%, #414042 66%, #414042 100%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-text.the-world.start_delayed_animation::before {
      animation-name: bg-slideUp-10;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-text.the-world::before {
      mix-blend-mode: screen; } }

@keyframes bg-slideUp-11 {
  0% {
    background-position: 0 -160px; }
  50% {
    background-position: 0 -160px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-text.your-mind {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-text.your-mind::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #72BDF4 0%, #72BDF4 8%, #24538F 33%, #414042 66%, #414042 100%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-text.your-mind.start_delayed_animation::before {
      animation-name: bg-slideUp-11;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-text.your-mind::before {
      mix-blend-mode: screen; } }

@keyframes bg-slideUp-12 {
  0% {
    background-position: 0 -160px; }
  50% {
    background-position: 0 -160px; }
  100% {
    background-position: 0 0; } }

@supports (mix-blend-mode: lighten) {
  .gradient-text.the-future {
    display: inline-block;
    position: relative;
    padding: 1px;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply; }
    .gradient-text.the-future::before {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      left: 1px;
      background: linear-gradient(to bottom, #FFB877 0%, #FFB877 13%, #FF636A 23%, #FA0087 33%, #414042 66%, #414042 100%);
      pointer-events: none;
      background-size: 100% 300%;
      background-position: 0 0; }
    .gradient-text.the-future.start_delayed_animation::before {
      animation-name: bg-slideUp-12;
      animation-direction: normal;
      animation-duration: 2s;
      animation-timing-function: ease;
      animation-delay: 0s;
      animation-iteration-count: 1; }
    .gradient-text.the-future::before {
      mix-blend-mode: screen; } }

.future-friends-header {
  width: 350px;
  max-width: 100%;
  margin: 0 auto; }
  @media only screen and (min-width: 768px) {
    .future-friends-header {
      max-width: 500px;
      width: auto; } }
  .future-friends-header .future-friends-title {
    font-weight: 500;
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .future-friends-header .future-friends-title {
        margin-bottom: 68px; } }
  .future-friends-header .indented-title {
    margin-left: 60px; }
    @media only screen and (min-width: 768px) {
      .future-friends-header .indented-title {
        margin-left: 100px; } }

.future-friends-content {
  position: relative;
  margin-bottom: 30px; }
  @media only screen and (max-width: 767px) {
    .future-friends-content {
      width: 350px;
      max-width: 100%;
      margin: 0 auto; } }
  .future-friends-content .future-friends-blocks {
    display: flex;
    list-style-type: none;
    margin-bottom: 23px; }
    @media only screen and (max-width: 767px) {
      .future-friends-content .future-friends-blocks {
        flex-direction: column;
        margin-bottom: 50px; } }
    .future-friends-content .future-friends-blocks .future-friends-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1; }
      @media only screen and (max-width: 767px) {
        .future-friends-content .future-friends-blocks .future-friends-block {
          flex-direction: row;
          align-items: center;
          margin-bottom: 40px; }
          .future-friends-content .future-friends-blocks .future-friends-block:last-child {
            margin-bottom: 0; } }
      .future-friends-content .future-friends-blocks .future-friends-block .icon {
        color: #665EC7;
        margin-bottom: 10px; }
        @media only screen and (max-width: 767px) {
          .future-friends-content .future-friends-blocks .future-friends-block .icon {
            margin-right: 20px;
            margin-bottom: 0; } }
      .future-friends-content .future-friends-blocks .future-friends-block svg {
        fill: currentColor;
        width: 50px;
        height: 50px; }
        @media only screen and (min-width: 768px) {
          .future-friends-content .future-friends-blocks .future-friends-block svg {
            width: 88px;
            height: 88px; } }
      .future-friends-content .future-friends-blocks .future-friends-block .block-title {
        max-width: 230px;
        margin: 0; }
        @media only screen and (min-width: 768px) {
          .future-friends-content .future-friends-blocks .future-friends-block .block-title {
            text-align: center; } }

.future-friends-footer {
  max-width: 475px;
  margin: 0 auto; }
  .future-friends-footer p, .future-friends-footer .p {
    margin-bottom: 0; }

/* MikMak + existing CTA buttons: match outline + align inline */
.mikmak-cta-row,
.productView .productView-mikmak,
.productView .productView-cta,
.productView .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch; }

/* Make both buttons same width/height */
.mikmak-cta-row .button,
.productView .button.widget-btn,
.productView-mikmak .button,
.productView .productView-mikmak .button {
  min-width: 220px;
  height: 48px;
  line-height: 48px;
  padding-top: 0;
  padding-bottom: 0; }

/* Mobile: stack full width */
@media (max-width: 550px) {
  .mikmak-cta-row,
  .productView .productView-mikmak,
  .productView .productView-cta,
  .productView .cta-row {
    flex-direction: column; }
  .mikmak-cta-row .button,
  .productView .button.widget-btn,
  .productView-mikmak .button,
  .productView .productView-mikmak .button {
    width: 100%;
    min-width: 0; } }
