/*!
  Copyright (C) 2016-2018 Helvetia Versicherungen. All Rights Reserved.

  helvetia cms-patterns 7.15.0
*/
/**
  @license Copyright (C) 2016-2018 Helvetia Versicherungen. All Rights Reserved.

  helvetia cms-patterns 7.15.0
*/
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Only for devices with touch support
 */
/**
 * Only for pointer only devices
 */
.uxc-a-chart-bar {
  position: relative; }

.uxc-a-chart-bar__row {
  height: 50px; }

.uxc-a-chart-bar__bar {
  fill: none;
  stroke: #46a9b4;
  stroke-width: 11px; }

/* stylelint-disable plugin/stylelint-bem-namics */
.uxc-a-chart-bar__bar[*|meta='highlighted'] {
  stroke: #006d73; }

.uxc-a-chart-bar__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  text-anchor: end;
  fill: #141412;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 767px) {
    .uxc-a-chart-bar__label {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 12px;
      /* stylelint-enable property-blacklist */
      line-height: 20px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-a-chart-bar__label {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 12px;
      /* stylelint-enable property-blacklist */
      line-height: 20px;
      font-weight: normal;
      font-style: normal; } }

/* stylelint-enable plugin/stylelint-bem-namics */
.uxc-a-chart-bar__tooltip {
  position: absolute;
  display: inline-block;
  width: 275px;
  opacity: 0;
  min-width: 5em;
  padding: 35px 25px;
  background: white;
  text-align: left;
  pointer-events: none;
  box-shadow: 0 0 20px 0 rgba(20, 20, 18, 0.2);
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
  /* stylelint-disable plugin/stylelint-bem-namics */
  /* stylelint-enable plugin/stylelint-bem-namics */ }
  @media only screen and (max-width: 767px) {
    .uxc-a-chart-bar__tooltip {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-a-chart-bar__tooltip {
      margin-top: -7.6px;
      margin-bottom: -8.2px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }
  [data-no-touch] .uxc-a-chart-bar__tooltip {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s; }
  .uxc-a-chart-bar__tooltip:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top-color: white; }
  .uxc-a-chart-bar__tooltip.tooltip-show {
    opacity: 1;
    -webkit-transition-delay: 0;
            transition-delay: 0; }
.ct-label {
  fill: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.75rem;
  line-height: 1; }

.ct-chart-line .ct-label,
.ct-chart-bar .ct-label {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.ct-chart-pie .ct-label,
.ct-chart-donut .ct-label {
  dominant-baseline: central; }

.ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start; }

.ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start; }

.ct-label.ct-vertical.ct-start {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end; }

.ct-label.ct-vertical.ct-end {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start; }

.ct-chart-bar .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start; }

.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start; }

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start; }

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start; }

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end; }

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: end; }

.ct-grid {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1px;
  stroke-dasharray: 2px; }

.ct-grid-background {
  fill: none; }

.ct-point {
  stroke-width: 10px;
  stroke-linecap: round; }

.ct-line {
  fill: none;
  stroke-width: 4px; }

.ct-area {
  stroke: none;
  fill-opacity: 0.1; }

.ct-bar {
  fill: none;
  stroke-width: 10px; }

.ct-slice-donut {
  fill: none;
  stroke-width: 60px; }

.ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
  stroke: #d70206; }

.ct-series-a .ct-slice-pie, .ct-series-a .ct-slice-donut-solid, .ct-series-a .ct-area {
  fill: #d70206; }

.ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
  stroke: #f05b4f; }

.ct-series-b .ct-slice-pie, .ct-series-b .ct-slice-donut-solid, .ct-series-b .ct-area {
  fill: #f05b4f; }

.ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
  stroke: #f4c63d; }

.ct-series-c .ct-slice-pie, .ct-series-c .ct-slice-donut-solid, .ct-series-c .ct-area {
  fill: #f4c63d; }

.ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
  stroke: #d17905; }

.ct-series-d .ct-slice-pie, .ct-series-d .ct-slice-donut-solid, .ct-series-d .ct-area {
  fill: #d17905; }

.ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
  stroke: #453d3f; }

.ct-series-e .ct-slice-pie, .ct-series-e .ct-slice-donut-solid, .ct-series-e .ct-area {
  fill: #453d3f; }

.ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
  stroke: #59922b; }

.ct-series-f .ct-slice-pie, .ct-series-f .ct-slice-donut-solid, .ct-series-f .ct-area {
  fill: #59922b; }

.ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
  stroke: #0544d3; }

.ct-series-g .ct-slice-pie, .ct-series-g .ct-slice-donut-solid, .ct-series-g .ct-area {
  fill: #0544d3; }

.ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
  stroke: #6b0392; }

.ct-series-h .ct-slice-pie, .ct-series-h .ct-slice-donut-solid, .ct-series-h .ct-area {
  fill: #6b0392; }

.ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
  stroke: #f05b4f; }

.ct-series-i .ct-slice-pie, .ct-series-i .ct-slice-donut-solid, .ct-series-i .ct-area {
  fill: #f05b4f; }

.ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
  stroke: #dda458; }

.ct-series-j .ct-slice-pie, .ct-series-j .ct-slice-donut-solid, .ct-series-j .ct-area {
  fill: #dda458; }

.ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
  stroke: #eacf7d; }

.ct-series-k .ct-slice-pie, .ct-series-k .ct-slice-donut-solid, .ct-series-k .ct-area {
  fill: #eacf7d; }

.ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
  stroke: #86797d; }

.ct-series-l .ct-slice-pie, .ct-series-l .ct-slice-donut-solid, .ct-series-l .ct-area {
  fill: #86797d; }

.ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
  stroke: #b2c326; }

.ct-series-m .ct-slice-pie, .ct-series-m .ct-slice-donut-solid, .ct-series-m .ct-area {
  fill: #b2c326; }

.ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
  stroke: #6188e2; }

.ct-series-n .ct-slice-pie, .ct-series-n .ct-slice-donut-solid, .ct-series-n .ct-area {
  fill: #6188e2; }

.ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
  stroke: #a748ca; }

.ct-series-o .ct-slice-pie, .ct-series-o .ct-slice-donut-solid, .ct-series-o .ct-area {
  fill: #a748ca; }

.ct-square {
  display: block;
  position: relative;
  width: 100%; }

.ct-square:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 100%; }

.ct-square:after {
  content: "";
  display: table;
  clear: both; }

.ct-square > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-minor-second {
  display: block;
  position: relative;
  width: 100%; }

.ct-minor-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 93.75%; }

.ct-minor-second:after {
  content: "";
  display: table;
  clear: both; }

.ct-minor-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-major-second {
  display: block;
  position: relative;
  width: 100%; }

.ct-major-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 88.8888888889%; }

.ct-major-second:after {
  content: "";
  display: table;
  clear: both; }

.ct-major-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-minor-third {
  display: block;
  position: relative;
  width: 100%; }

.ct-minor-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 83.3333333333%; }

.ct-minor-third:after {
  content: "";
  display: table;
  clear: both; }

.ct-minor-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-major-third {
  display: block;
  position: relative;
  width: 100%; }

.ct-major-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 80%; }

.ct-major-third:after {
  content: "";
  display: table;
  clear: both; }

.ct-major-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-perfect-fourth {
  display: block;
  position: relative;
  width: 100%; }

.ct-perfect-fourth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 75%; }

.ct-perfect-fourth:after {
  content: "";
  display: table;
  clear: both; }

.ct-perfect-fourth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-perfect-fifth {
  display: block;
  position: relative;
  width: 100%; }

.ct-perfect-fifth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 66.6666666667%; }

.ct-perfect-fifth:after {
  content: "";
  display: table;
  clear: both; }

.ct-perfect-fifth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-minor-sixth {
  display: block;
  position: relative;
  width: 100%; }

.ct-minor-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 62.5%; }

.ct-minor-sixth:after {
  content: "";
  display: table;
  clear: both; }

.ct-minor-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-golden-section {
  display: block;
  position: relative;
  width: 100%; }

.ct-golden-section:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 61.804697157%; }

.ct-golden-section:after {
  content: "";
  display: table;
  clear: both; }

.ct-golden-section > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-major-sixth {
  display: block;
  position: relative;
  width: 100%; }

.ct-major-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 60%; }

.ct-major-sixth:after {
  content: "";
  display: table;
  clear: both; }

.ct-major-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-minor-seventh {
  display: block;
  position: relative;
  width: 100%; }

.ct-minor-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 56.25%; }

.ct-minor-seventh:after {
  content: "";
  display: table;
  clear: both; }

.ct-minor-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-major-seventh {
  display: block;
  position: relative;
  width: 100%; }

.ct-major-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 53.3333333333%; }

.ct-major-seventh:after {
  content: "";
  display: table;
  clear: both; }

.ct-major-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-octave {
  display: block;
  position: relative;
  width: 100%; }

.ct-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 50%; }

.ct-octave:after {
  content: "";
  display: table;
  clear: both; }

.ct-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-major-tenth {
  display: block;
  position: relative;
  width: 100%; }

.ct-major-tenth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 40%; }

.ct-major-tenth:after {
  content: "";
  display: table;
  clear: both; }

.ct-major-tenth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-major-eleventh {
  display: block;
  position: relative;
  width: 100%; }

.ct-major-eleventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 37.5%; }

.ct-major-eleventh:after {
  content: "";
  display: table;
  clear: both; }

.ct-major-eleventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-major-twelfth {
  display: block;
  position: relative;
  width: 100%; }

.ct-major-twelfth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 33.3333333333%; }

.ct-major-twelfth:after {
  content: "";
  display: table;
  clear: both; }

.ct-major-twelfth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

.ct-double-octave {
  display: block;
  position: relative;
  width: 100%; }

.ct-double-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 25%; }

.ct-double-octave:after {
  content: "";
  display: table;
  clear: both; }

.ct-double-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0; }

/*# sourceMappingURL=chartist.css.map */
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
@namespace ct 'http://gionkunz.github.com/chartist-js/ct';
.uxc-a-chart-donut {
  position: relative;
  width: 285px;
  height: 285px; }
  @media only screen and (max-width: 767px) {
    .uxc-a-chart-donut {
      width: 240px;
      height: 240px;
      margin: 0 auto; } }

.uxc-a-chart-donut__slice {
  fill: none; }

.uxc-a-chart-donut__series-a .uxc-a-chart-donut__slice {
  stroke: #006d73; }

.uxc-a-chart-donut__series-b .uxc-a-chart-donut__slice {
  stroke: #46a9b4; }

.uxc-a-chart-donut__series-c .uxc-a-chart-donut__slice {
  stroke: #b5dde1; }

.uxc-a-chart-donut__series-d .uxc-a-chart-donut__slice {
  stroke: #573a66; }

.uxc-a-chart-donut__series-e .uxc-a-chart-donut__slice {
  stroke: #8861a9; }

.uxc-a-chart-donut__series-f .uxc-a-chart-donut__slice {
  stroke: #cfc0dd; }

.uxc-a-chart-donut__series-g .uxc-a-chart-donut__slice {
  stroke: #8b9196; }

.uxc-a-chart-donut__series-h .uxc-a-chart-donut__slice {
  stroke: #e8e9ea; }

.uxc-a-chart-donut__tooltip {
  position: absolute;
  display: inline-block;
  width: 275px;
  opacity: 0;
  min-width: 5em;
  padding: 35px 25px;
  background: white;
  text-align: left;
  pointer-events: none;
  box-shadow: 0 0 20px 0 rgba(20, 20, 18, 0.2);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 80;
  /* stylelint-disable plugin/stylelint-bem-namics */
  /* stylelint-enable plugin/stylelint-bem-namics */ }
  @media only screen and (max-width: 767px) {
    .uxc-a-chart-donut__tooltip {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-a-chart-donut__tooltip {
      margin-top: -7.6px;
      margin-bottom: -8.2px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }
  .uxc-a-chart-donut__tooltip:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top-color: white; }
  .uxc-a-chart-donut__tooltip.tooltip-show {
    opacity: 1; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-a-ekomi-seal {
  display: block; }

.uxc-a-ekomi-seal--size-m {
  width: 200px;
  height: 200px; }

.uxc-a-ekomi-seal__img {
  display: block;
  max-width: 100%;
  max-height: 100%; }
.uxc-a-form-fieldset {
  border: none;
  padding: 0;
  margin: 0; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-a-icon-box {
  position: relative; }

.uxc-a-icon-box__icon {
  position: absolute; }

.uxc-a-icon-box__content {
  width: 100%;
  display: table; }

.uxc-a-icon-box--middle {
  display: table;
  width: 100%; }

.uxc-a-icon-box__wrapper {
  display: table-cell;
  vertical-align: middle; }

/*
 * Positons
 */
.uxc-a-icon-box--top-left {
  padding-top: 40px; }
  .uxc-a-icon-box--top-left .uxc-a-icon-box__icon {
    top: 0;
    left: 0; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-box--top-left\@mobile {
      padding-top: 40px; }
      html .uxc-a-icon-box--top-left\@mobile .uxc-a-icon-box__icon {
        top: 0;
        left: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-box--top-left\@tablet {
      padding-top: 40px; }
      html .uxc-a-icon-box--top-left\@tablet .uxc-a-icon-box__icon {
        top: 0;
        left: 0; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-box--top-left\@desktop {
      padding-top: 40px; }
      html .uxc-a-icon-box--top-left\@desktop .uxc-a-icon-box__icon {
        top: 0;
        left: 0; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-box--top-left\@hd {
      padding-top: 40px; }
      html .uxc-a-icon-box--top-left\@hd .uxc-a-icon-box__icon {
        top: 0;
        left: 0; } }

.uxc-a-icon-box--left-top {
  padding-left: 50px; }
  .uxc-a-icon-box--left-top .uxc-a-icon-box__icon {
    top: 0;
    left: 0; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-box--left-top\@mobile {
      padding-left: 50px; }
      html .uxc-a-icon-box--left-top\@mobile .uxc-a-icon-box__icon {
        top: 0;
        left: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-box--left-top\@tablet {
      padding-left: 50px; }
      html .uxc-a-icon-box--left-top\@tablet .uxc-a-icon-box__icon {
        top: 0;
        left: 0; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-box--left-top\@desktop {
      padding-left: 50px; }
      html .uxc-a-icon-box--left-top\@desktop .uxc-a-icon-box__icon {
        top: 0;
        left: 0; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-box--left-top\@hd {
      padding-left: 50px; }
      html .uxc-a-icon-box--left-top\@hd .uxc-a-icon-box__icon {
        top: 0;
        left: 0; } }

.uxc-a-icon-box--top-right {
  padding-top: 40px; }
  .uxc-a-icon-box--top-right .uxc-a-icon-box__icon {
    top: 0;
    right: 0; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-box--top-right\@mobile {
      padding-top: 40px; }
      html .uxc-a-icon-box--top-right\@mobile .uxc-a-icon-box__icon {
        top: 0;
        right: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-box--top-right\@tablet {
      padding-top: 40px; }
      html .uxc-a-icon-box--top-right\@tablet .uxc-a-icon-box__icon {
        top: 0;
        right: 0; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-box--top-right\@desktop {
      padding-top: 40px; }
      html .uxc-a-icon-box--top-right\@desktop .uxc-a-icon-box__icon {
        top: 0;
        right: 0; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-box--top-right\@hd {
      padding-top: 40px; }
      html .uxc-a-icon-box--top-right\@hd .uxc-a-icon-box__icon {
        top: 0;
        right: 0; } }

.uxc-a-icon-box--bottom-left {
  padding-bottom: 40px; }
  .uxc-a-icon-box--bottom-left .uxc-a-icon-box__icon {
    bottom: 0;
    left: 0; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-box--bottom-left\@mobile {
      padding-bottom: 40px; }
      html .uxc-a-icon-box--bottom-left\@mobile .uxc-a-icon-box__icon {
        bottom: 0;
        left: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-box--bottom-left\@tablet {
      padding-bottom: 40px; }
      html .uxc-a-icon-box--bottom-left\@tablet .uxc-a-icon-box__icon {
        bottom: 0;
        left: 0; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-box--bottom-left\@desktop {
      padding-bottom: 40px; }
      html .uxc-a-icon-box--bottom-left\@desktop .uxc-a-icon-box__icon {
        bottom: 0;
        left: 0; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-box--bottom-left\@hd {
      padding-bottom: 40px; }
      html .uxc-a-icon-box--bottom-left\@hd .uxc-a-icon-box__icon {
        bottom: 0;
        left: 0; } }

.uxc-a-icon-box--bottom-right {
  padding-bottom: 40px; }
  .uxc-a-icon-box--bottom-right .uxc-a-icon-box__icon {
    bottom: 0;
    right: 0; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-box--bottom-right\@mobile {
      padding-bottom: 40px; }
      html .uxc-a-icon-box--bottom-right\@mobile .uxc-a-icon-box__icon {
        bottom: 0;
        right: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-box--bottom-right\@tablet {
      padding-bottom: 40px; }
      html .uxc-a-icon-box--bottom-right\@tablet .uxc-a-icon-box__icon {
        bottom: 0;
        right: 0; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-box--bottom-right\@desktop {
      padding-bottom: 40px; }
      html .uxc-a-icon-box--bottom-right\@desktop .uxc-a-icon-box__icon {
        bottom: 0;
        right: 0; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-box--bottom-right\@hd {
      padding-bottom: 40px; }
      html .uxc-a-icon-box--bottom-right\@hd .uxc-a-icon-box__icon {
        bottom: 0;
        right: 0; } }

.uxc-a-icon-box--middle-right {
  padding-right: 40px; }
  .uxc-a-icon-box--middle-right .uxc-a-icon-box__icon {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-box--middle-right\@mobile {
      padding-right: 40px; }
      html .uxc-a-icon-box--middle-right\@mobile .uxc-a-icon-box__icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-box--middle-right\@tablet {
      padding-right: 40px; }
      html .uxc-a-icon-box--middle-right\@tablet .uxc-a-icon-box__icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 0; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-box--middle-right\@desktop {
      padding-right: 40px; }
      html .uxc-a-icon-box--middle-right\@desktop .uxc-a-icon-box__icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 0; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-box--middle-right\@hd {
      padding-right: 40px; }
      html .uxc-a-icon-box--middle-right\@hd .uxc-a-icon-box__icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 0; } }

.uxc-a-icon-box--middle-left {
  padding-left: 40px; }
  .uxc-a-icon-box--middle-left .uxc-a-icon-box__icon {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-box--middle-left\@mobile {
      padding-left: 40px; }
      html .uxc-a-icon-box--middle-left\@mobile .uxc-a-icon-box__icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-box--middle-left\@tablet {
      padding-left: 40px; }
      html .uxc-a-icon-box--middle-left\@tablet .uxc-a-icon-box__icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 0; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-box--middle-left\@desktop {
      padding-left: 40px; }
      html .uxc-a-icon-box--middle-left\@desktop .uxc-a-icon-box__icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 0; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-box--middle-left\@hd {
      padding-left: 40px; }
      html .uxc-a-icon-box--middle-left\@hd .uxc-a-icon-box__icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 0; } }

.uxc-a-icon-box--center .uxc-a-icon-box__icon {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); }

@media only screen and (max-width: 767px) {
  html .uxc-a-icon-box--center\@mobile .uxc-a-icon-box__icon {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); } }

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  html .uxc-a-icon-box--center\@tablet .uxc-a-icon-box__icon {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); } }

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  html .uxc-a-icon-box--center\@desktop .uxc-a-icon-box__icon {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); } }

@media only screen and (min-width: 1280px) {
  html .uxc-a-icon-box--center\@hd .uxc-a-icon-box__icon {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); } }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-a-icon-sticker--color-primary {
  background: #46a9b4; }

.uxc-a-icon-sticker--color-secondary {
  background: #8861a9; }

.uxc-a-icon-sticker--color-tertiary {
  background: #c31622; }

.uxc-a-icon-sticker__height-wrapper {
  padding-top: 100%;
  position: relative; }

.uxc-a-icon-sticker__icon-container {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%; }

.uxc-a-icon-sticker__icon {
  width: 100%;
  height: 100%; }

.uxc-a-icon-sticker--size-s {
  max-width: 140px; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-sticker--size-s\@mobile {
      max-width: 140px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-sticker--size-s\@tablet {
      max-width: 140px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-sticker--size-s\@desktop {
      max-width: 140px; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-sticker--size-s\@hd {
      max-width: 140px; } }

.uxc-a-icon-sticker--size-m {
  max-width: 300px; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-sticker--size-m\@mobile {
      max-width: 300px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-sticker--size-m\@tablet {
      max-width: 300px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-sticker--size-m\@desktop {
      max-width: 300px; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-sticker--size-m\@hd {
      max-width: 300px; } }

.uxc-a-icon-sticker--padding-s {
  padding: 15px; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-sticker--padding-s\@mobile {
      padding: 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-sticker--padding-s\@tablet {
      padding: 15px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-sticker--padding-s\@desktop {
      padding: 15px; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-sticker--padding-s\@hd {
      padding: 15px; } }

.uxc-a-icon-sticker--padding-m {
  padding: 35px; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-sticker--padding-m\@mobile {
      padding: 35px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-sticker--padding-m\@tablet {
      padding: 35px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-sticker--padding-m\@desktop {
      padding: 35px; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-sticker--padding-m\@hd {
      padding: 35px; } }

.uxc-a-icon-sticker--border-radius-s {
  border-radius: 15px; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-sticker--border-radius-s\@mobile {
      border-radius: 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-sticker--border-radius-s\@tablet {
      border-radius: 15px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-sticker--border-radius-s\@desktop {
      border-radius: 15px; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-sticker--border-radius-s\@hd {
      border-radius: 15px; } }

.uxc-a-icon-sticker--border-radius-m {
  border-radius: 20px; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-sticker--border-radius-m\@mobile {
      border-radius: 20px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-sticker--border-radius-m\@tablet {
      border-radius: 20px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-sticker--border-radius-m\@desktop {
      border-radius: 20px; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-sticker--border-radius-m\@hd {
      border-radius: 20px; } }

.uxc-a-icon-sticker--align-right {
  margin-left: auto; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-icon-sticker--align-right\@mobile {
      margin-left: auto; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-icon-sticker--align-right\@tablet {
      margin-left: auto; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-icon-sticker--align-right\@desktop {
      margin-left: auto; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-icon-sticker--align-right\@hd {
      margin-left: auto; } }
@font-face {
  font-family: J3ca6f;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAQYAAsAAAAABlAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPQAAAFYvsTtPY21hcAAAAYQAAABKAAABcOEoo6pnbHlmAAAB0AAAAI4AAACoU1CFmmhlYWQAAAJgAAAAKAAAADYOhKuBaGhlYQAAAogAAAAVAAAAJAQBAgNobXR4AAACoAAAAAgAAAAIAgAAAGxvY2EAAAKoAAAABgAAAAYAVAAAbWF4cAAAArAAAAAgAAAAIAETAENuYW1lAAAC0AAAASkAAAIWm5e+CnBvc3QAAAP8AAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRkYJzAwMrAwOjCmMbAwOAOpb8ySDK0MDAwMbAyM2AFAWmuKQwODxgeANUAgR4TRJgRRAAAUl4HZgAAAHic7ZCxDYAwEAPPykOBGIEqNbNQsb/YJPkY2CKWzpJPXz2wACU5kwDdiJErrewLm31QfRPDP7T2d+5wo5WZ3X18y796QR0aJglRAAB4nC3KQQrCQAwF0P8V7AwzDiJVULBgC9VVF0Pbndm193DZA3TnETyJnst7mJYm5MEnHwl0VrrwOOGMG+5o0ALXvGItjBnTwHUemGaMwrpiccg3F6bH2D5Yl0VTatKfpooJ0Y9dN74nehlEhteEGOd2zhkbuN3r2aWi8Ld0lK83H+NnnvTWWzdD/AEDTRqxAAB4nGNgZGBgAGLZCMfMeH6brwzcTAwgcG2zqRMyzcQAFueAUADZWAbceJxjYGRgYGIAATjJyIAKmAAA9gALAAAAAAAAAAIAAAAAAAAAAFQAAAABAAAAAgA3AAcAAAAAAAIAAAAKAAoAAAD/AAAAAAAAeJxlkD1uwkAUhMdgSAJSghQpKbNVCiKZn5IDQE9Bl8KYtTGyvdZ6QaLLCXKEHCGniHKCHChj82hgLT9/M2/e7soABviFh3p5uG1qvVq4oTpxm/Qg7JOfhTvo40W4S38o3MMbpsJ9POKdO3j+HZ0BSuEW7vEh3Kb/KeyTv4Q7eMK3cJf+j3APK/wJ9/HqDdPIFLEp3FIn+yy0Z3n+rrStUlOoSTA+WwtdaBs6vVHro6oOydS5WMXW5GrOrs4yo0prdjpywda5cjYaxeIHkcmRIoJBgbipDktoJNgjQwh71b3UK6YtKvq1VpggwPgqtWCqaJIhlcaGyTWOrBUOPG1K1zGt+FrO5KS5zGreJCMr/u+6t6MT0Q+wbaZKzDDiE1/kg+YO+T89EV6oAAAAeJxjYGKAAFYG7ICJkYmRmYEp04CBAQADvgCsAA==") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
.uxc-a-iframe__frame {
  width: 100%;
  border: 0; }

.uxc-a-iframe__mobile-message {
  width: 100%;
  background-color: white; }

.uxc-a-iframe__mobile-message-link {
  position: relative;
  text-decoration: none;
  color: #141412;
  padding-left: 36px; }
  @media only screen and (max-width: 767px) {
    .uxc-a-iframe__mobile-message-link {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-a-iframe__mobile-message-link {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  .uxc-a-iframe__mobile-message-link:before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    text-align: center;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 24px/1 J3ca6f;
    content: '\E000';
    color: #8b9196;
    -webkit-transition: color 0.3s;
    transition: color 0.3s; }

@media only screen and (max-width: 767px) {
  .uxc-a-iframe--frame-hidden .uxc-a-iframe__frame {
    display: none; } }

@media only screen and (min-width: 768px) {
  .uxc-a-iframe--frame-hidden .uxc-a-iframe__mobile-message {
    display: none; } }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-a-image-box {
  position: relative;
  overflow: hidden;
  width: 100%; }

.uxc-a-image-box__picture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.uxc-a-image-box__img {
  position: absolute;
  display: block;
  min-width: 100%;
  min-height: 100%; }

/*
* Background image behaviour
*/
.uxc-state-a-image-box__img--contain .uxc-a-image-box__img {
  width: 100%; }

/*
 * Focus point positions
 */
.uxc-a-image-box--top-left .uxc-a-image-box__img {
  top: 0;
  left: 0; }

.uxc-a-image-box--top-center .uxc-a-image-box__img {
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%; }

.uxc-a-image-box--top-right .uxc-a-image-box__img {
  top: 0;
  right: 0; }

.uxc-a-image-box--bottom-left .uxc-a-image-box__img {
  bottom: 0;
  left: 0; }

.uxc-a-image-box--bottom-center .uxc-a-image-box__img {
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%; }

.uxc-a-image-box--bottom-right .uxc-a-image-box__img {
  bottom: 0;
  right: 0; }

.uxc-a-image-box--middle-left .uxc-a-image-box__img {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0; }

.uxc-a-image-box--middle-right .uxc-a-image-box__img {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0; }

.uxc-a-image-box--center .uxc-a-image-box__img {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.uxc-a-image-box--position-static .uxc-a-image-box__picture {
  position: static; }

.uxc-a-image-box--position-static .uxc-a-image-box__img {
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  max-width: 100%; }

.uxc-a-image-box--position-static .uxc-a-image-box__content--inner-size-m {
  padding: 0; }

.uxc-a-image-box--position-static .uxc-a-image-box__img {
  opacity: 1; }

.uxc-a-image-box--position-static.uxc-a-image-box--overlay-white:before {
  display: none; }

@media only screen and (max-width: 767px) {
  html .uxc-a-image-box--position-static\@mobile .uxc-a-image-box__picture {
    position: static; }
  html .uxc-a-image-box--position-static\@mobile .uxc-a-image-box__img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: 100%; }
  html .uxc-a-image-box--position-static\@mobile .uxc-a-image-box__content--inner-size-m {
    padding: 0; }
  html .uxc-a-image-box--position-static\@mobile .uxc-a-image-box__img {
    opacity: 1; }
  html .uxc-a-image-box--position-static\@mobile.uxc-a-image-box--overlay-white:before {
    display: none; } }

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  html .uxc-a-image-box--position-static\@tablet .uxc-a-image-box__picture {
    position: static; }
  html .uxc-a-image-box--position-static\@tablet .uxc-a-image-box__img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: 100%; }
  html .uxc-a-image-box--position-static\@tablet .uxc-a-image-box__content--inner-size-m {
    padding: 0; }
  html .uxc-a-image-box--position-static\@tablet .uxc-a-image-box__img {
    opacity: 1; }
  html .uxc-a-image-box--position-static\@tablet.uxc-a-image-box--overlay-white:before {
    display: none; } }

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  html .uxc-a-image-box--position-static\@desktop .uxc-a-image-box__picture {
    position: static; }
  html .uxc-a-image-box--position-static\@desktop .uxc-a-image-box__img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: 100%; }
  html .uxc-a-image-box--position-static\@desktop .uxc-a-image-box__content--inner-size-m {
    padding: 0; }
  html .uxc-a-image-box--position-static\@desktop .uxc-a-image-box__img {
    opacity: 1; }
  html .uxc-a-image-box--position-static\@desktop.uxc-a-image-box--overlay-white:before {
    display: none; } }

@media only screen and (min-width: 1280px) {
  html .uxc-a-image-box--position-static\@hd .uxc-a-image-box__picture {
    position: static; }
  html .uxc-a-image-box--position-static\@hd .uxc-a-image-box__img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: 100%; }
  html .uxc-a-image-box--position-static\@hd .uxc-a-image-box__content--inner-size-m {
    padding: 0; }
  html .uxc-a-image-box--position-static\@hd .uxc-a-image-box__img {
    opacity: 1; }
  html .uxc-a-image-box--position-static\@hd.uxc-a-image-box--overlay-white:before {
    display: none; } }

.uxc-a-image-box__content {
  position: relative;
  width: 100%; }

.uxc-a-image-box__content--inner-size-full {
  padding: 0; }

.uxc-a-image-box__content--inner-size-m {
  padding: 40px; }

/**
 * Overlay styling
 */
.uxc-a-image-box--overlay-dark:before,
.uxc-a-image-box--overlay-white:before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  content: ''; }

.uxc-a-image-box--overlay-white .uxc-a-image-box__img {
  opacity: .2; }

.uxc-a-image-box--overlay-white:before {
  background: white; }

.uxc-a-image-box--overlay-dark .uxc-a-image-box__img {
  opacity: .8; }

.uxc-a-image-box--overlay-dark:before {
  background: #141412; }
/* stylelint-disable */
/* stylelint-enable */
.uxc-a-link-scroll {
  text-decoration: none;
  color: #46a9b4;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  /*
   * No outline for mouse clicks or custom focus handling
   */ }
  [data-focus-source='script'] .uxc-a-link-scroll:focus,
  [data-focus-source='pointer'] .uxc-a-link-scroll:focus {
    outline: 0; }

.uxc-a-link-scroll:hover,
.uxc-a-link-scroll:focus {
  color: #006d73; }

.uxc-a-link-scroll--color-white {
  color: white;
  text-decoration: underline; }
  .uxc-a-link-scroll--color-white:hover, .uxc-a-link-scroll--color-white:focus {
    color: white; }

.uxc-a-link-scroll--color-gray {
  color: #8b9196; }
  .uxc-a-link-scroll--color-gray:hover, .uxc-a-link-scroll--color-gray:focus {
    color: #006d73; }

.uxc-a-link-scroll--color-black {
  color: #141412; }
  .uxc-a-link-scroll--color-black:hover, .uxc-a-link-scroll--color-black:focus {
    color: #006d73; }

.uxc-a-link-scroll--color-tertiary {
  color: #c31622; }
  .uxc-a-link-scroll--color-tertiary:hover, .uxc-a-link-scroll--color-tertiary:focus {
    color: #006d73; }
@font-face {
  font-family: Dc356f;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPcAAsAAAAABfAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPwAAAFYvskBaY21hcAAAAYQAAABKAAABcOEoo6pnbHlmAAAB0AAAAEgAAABInub4aWhlYWQAAAIYAAAALQAAADYQKKuBaGhlYQAAAkgAAAAbAAAAJAWkBNtobXR4AAACZAAAAAgAAAAIBNgAAGxvY2EAAAJsAAAABgAAAAYAJAAAbWF4cAAAAnQAAAAeAAAAIAEOABxuYW1lAAAClAAAASkAAAIWm5e+CnBvc3QAAAPAAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGTKYZzAwMrAwCzMmMbAwOAOpb8ySDK0MDAwMbAyM2AFAWmuKQwODxgeANUAgR4TIwMjkAZhBgBbvAd3AHic7ZCxDYAwEAPPykOBGIEqNbNQsb/YJPkY2CKWzpJPXz2wACU5kwDdiJErrewLm31QfRPDP7T2d+5wo5WZ3X18y796QR0aJglRAAAAAgAA//8DowIBAA4ADwAAISImJwE3ARYyNwEXAQ4BIwHRHzkV/pxBAWIRNRIBZkH+nBU5HxsXAZQ6/mwUFAGUOv5sFxsAAAB4nGNgZGBgAOKqUP/geH6brwzcTAwgcG2zqROC/v+feTETSCUHA1gaAA+NCdEAAAB4nGNgZGBgYgABlhsgknkxAyMDKmACACJvAYkAAAAAAATYAAAAAAAAACQAAHicY2BkYGBgYhAAYgYwi4GBCwgZGP6D+QwACj4BKwAAeJxlkD1uwkAUhMdgSAJSghQpKbNVCiKZn5IDQE9Bl8KYtTGyvdZ6QaLLCXKEHCGniHKCHChj82hgLT9/M2/e7soABviFh3p5uG1qvVq4oTpxm/Qg7JOfhTvo40W4S38o3MMbpsJ9POKdO3j+HZ0BSuEW7vEh3Kb/KeyTv4Q7eMK3cJf+j3APK/wJ9/HqDdPIFLEp3FIn+yy0Z3n+rrStUlOoSTA+WwtdaBs6vVHro6oOydS5WMXW5GrOrs4yo0prdjpywda5cjYaxeIHkcmRIoJBgbipDktoJNgjQwh71b3UK6YtKvq1VpggwPgqtWCqaJIhlcaGyTWOrBUOPG1K1zGt+FrO5KS5zGreJCMr/u+6t6MT0Q+wbaZKzDDiE1/kg+YO+T89EV6oAAAAeJxjYGKAAFYG7ICJkYmRmYEp04CBAQADvgCsAA==") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-a-link-select {
  position: relative;
  display: table;
  line-height: 0; }

.uxc-a-link-select--full-width {
  width: 100%; }

.uxc-a-link-select--auto-width {
  width: auto; }

.uxc-a-link-select--color-gray {
  color: #8b9196; }
  .uxc-a-link-select--color-gray:hover, .uxc-a-link-select--color-gray:focus {
    color: #006d73; }

/*
 * Font styles
 */
@media only screen and (max-width: 767px) {
  .uxc-a-link-select--font-normal-s .uxc-a-link-select__select {
    margin-top: -6.58px;
    margin-bottom: -7.06px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-a-link-select--font-normal-s .uxc-a-link-select__select {
    margin-top: -6.58px;
    margin-bottom: -7.06px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    font-style: normal; } }

@media only screen and (max-width: 767px) {
  .uxc-a-link-select--font-bold-s .uxc-a-link-select__select {
    margin-top: -6.42px;
    margin-bottom: -6.452px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-a-link-select--font-bold-s .uxc-a-link-select__select {
    margin-top: -6.42px;
    margin-bottom: -6.452px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

.uxc-a-link-select__select {
  color: inherit;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background: transparent;
  /*
   * No outline for mouse clicks or custom focus handling
   */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  [data-focus-source='script'] .uxc-a-link-select__select:focus,
  [data-focus-source='pointer'] .uxc-a-link-select__select:focus {
    outline: 0; }
  .uxc-a-link-select__select::-ms-expand {
    display: none; }

.uxc-a-link-select--icon-arrow-down .uxc-a-link-select__select {
  padding-right: 18px; }

.uxc-a-link-select--icon-arrow-down:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  text-rendering: auto;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font: normal normal normal 7px/1 Dc356f;
  content: '\E000'; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/**
 * This mixin allows to keep a certain aspect ratio
 * http://stackoverflow.com/questions/1495407/maintain-the-aspect-ratio-of-a-div-with-css
 *
 * Usage:
 * .youtube-video {
 *   width: 100%;
 *   @include fluid-height(16, 9); // 16:9 ratio
 * }
 *
 * Known issues:
 *
 * The height ratio uses always the width.
 * If you want to use max-width apply the max-width to the wrapper element.
 */
.uxc-a-logo {
  display: inline-block;
  max-width: 100%;
  height: 100%;
  max-height: 71px; }
  @media only screen and (max-width: 767px) {
    .uxc-a-logo {
      width: 167px;
      max-width: 167px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    .uxc-a-logo {
      width: 167px;
      max-width: 167px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    .uxc-a-logo {
      width: 167px; } }
  @media only screen and (min-width: 1280px) {
    .uxc-a-logo {
      width: 425px; } }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
.uxc-a-menu-button {
  cursor: pointer;
  border-width: 0 0 5px 0;
  width: 100%;
  height: 100%;
  /* in order to fix: https://jira.namics.com/browse/HELVUX-1089 */
  border-style: solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 20px;
  text-align: left;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-transition-delay: .05s;
          transition-delay: .05s;
  /*
   * No outline for mouse clicks or custom focus handling
   */ }
  .uxc-a-menu-button[disabled] {
    cursor: default; }
  [data-focus-source='script'] .uxc-a-menu-button:focus,
  [data-focus-source='pointer'] .uxc-a-menu-button:focus {
    outline: 0; }

.uxc-a-menu-button__text {
  display: block; }
  @media only screen and (max-width: 767px) {
    .uxc-a-menu-button__text {
      margin-top: -6.42px;
      margin-bottom: -6.452px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-a-menu-button__text {
      margin-top: -6.42px;
      margin-bottom: -6.452px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

.uxc-a-menu-button--empty {
  cursor: auto; }
  .uxc-a-menu-button--empty .uxc-a-menu-button__text:before {
    display: inline-block;
    content: ''; }

.uxc-state-a-menu-button--one-row {
  height: 58px; }
  .uxc-state-a-menu-button--one-row .uxc-a-menu-button__text {
    height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
.uxc-a-menu-button--primary {
  color: white;
  background-color: #46a9b4;
  border-bottom-color: #006d73; }
  [data-focus-source='key'] .uxc-a-menu-button--primary:focus, .uxc-a-menu-button--primary:hover {
    background-color: #006d73; }
  [data-focus-source='key'] .uxc-a-menu-button--primary.uxc-a-menu-button--empty:focus, .uxc-a-menu-button--primary.uxc-a-menu-button--empty:hover {
    background-color: #46a9b4; }
  .uxc-a-menu-button--primary[disabled], .uxc-a-menu-button--primary[disabled]:hover, .uxc-a-menu-button--primary[disabled]:focus {
    background: #46a9b4; }

.uxc-a-menu-button--secondary {
  color: white;
  background-color: #8861a9;
  border-bottom-color: #573a66; }
  [data-focus-source='key'] .uxc-a-menu-button--secondary:focus, .uxc-a-menu-button--secondary:hover {
    background-color: #573a66; }
  [data-focus-source='key'] .uxc-a-menu-button--secondary.uxc-a-menu-button--empty:focus, .uxc-a-menu-button--secondary.uxc-a-menu-button--empty:hover {
    background-color: #8861a9; }
  .uxc-a-menu-button--secondary[disabled], .uxc-a-menu-button--secondary[disabled]:hover, .uxc-a-menu-button--secondary[disabled]:focus {
    background: #8861a9; }

.uxc-a-menu-button--tertiary {
  color: white;
  background-color: #c31622;
  border-bottom-color: #a01314; }
  [data-focus-source='key'] .uxc-a-menu-button--tertiary:focus, .uxc-a-menu-button--tertiary:hover {
    background-color: #a01314; }
  [data-focus-source='key'] .uxc-a-menu-button--tertiary.uxc-a-menu-button--empty:focus, .uxc-a-menu-button--tertiary.uxc-a-menu-button--empty:hover {
    background-color: #c31622; }
  .uxc-a-menu-button--tertiary[disabled], .uxc-a-menu-button--tertiary[disabled]:hover, .uxc-a-menu-button--tertiary[disabled]:focus {
    background: #c31622; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-a-play-button {
  height: 55px;
  width: 78px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDQ2LjcgNzQyIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2RjZGRkZDt9LmNscy0ye2ZpbGw6I2UyMDAwYjt9LmNscy0ze2ZpbGw6IzAwYTJhZTt9LmNscy00e2ZpbGw6Izg5NWRhMjt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPkFzc2V0IDI8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJFYmVuZV8xIiBkYXRhLW5hbWU9IkViZW5lIDEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTU0Niw3NDJINTAwLjRjLTEyMS4yLDAtMjM5LjYtMS4xLTM1NS44LTE0LjFDODMuMSw3MjEsMzIuMiw2NzQuOSwxOCw2MTMuMSwwLDUzNC43LDAsNDUxLjUsMCwzNzFjMC03Ni40LDAtMTYyLjksMTguMi0yNDIuMkMzMi40LDY3LDgzLjMsMjAuOSwxNDQuOCwxNCwyNjEsMS4xLDM3OS4zLDAsNTAwLjQsMGg0Ni4xQzY2Ny41LDAsNzg1LjgsMS4xLDkwMiwxNC4xYzYxLjYsNi45LDExMi40LDUzLDEyNi43LDExNC44LDE4LDc4LjIsMTgsMTYxLDE4LDI0MXYxLjJjMCw3Ni40LDAsMTYzLjEtMTguMiwyNDIuMUMxMDE0LjMsNjc1LDk2My40LDcyMS4xLDkwMS45LDcyOCw3ODUuNiw3NDAuOSw2NjcuMiw3NDIsNTQ2LDc0MiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI2MTIuMyAzNzEuMSA1NjguNyAzOTYuMyAzNzEuNCA1MTAuMiAzNzEuNCA1OTguOCA1NjguNyA0ODQuOSA2ODkuMSA0MTUuNCA2MTIuMyAzNzEuMSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMyIgcG9pbnRzPSIzNzEuNCA1MTAuMiA0NDcuMyA0NjYuMyA0NDcuMyAzNzEgNDQ3LjMgMTg3LjEgMzcxLjQgMTQzLjIgMzcxLjQgMzcxIDM3MS40IDUxMC4yIi8+PHBvbHlnb24gY2xhc3M9ImNscy00IiBwb2ludHM9Ijc2NiAzNzEgNTY4LjcgMjU3LjEgNDQ3LjQgMTg3LjEgNDQ3LjQgMjc1LjkgNTY4LjcgMzQ1LjkgNjg5LjEgNDE1LjQgNzY2IDM3MSIvPjwvZz48L2c+PC9zdmc+) no-repeat; }
  @media only screen and (max-width: 767px) {
    .uxc-a-play-button {
      height: 45px;
      width: 63px; } }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
* Vertical Spacer Definition
* For more Information check: https://helvetia.frontify.com/d/mVkSfuGBUKpR/helvetia-style-guide#/structure-layout/vertical-spacing
*/
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-a-sticker {
  position: relative;
  width: 100%; }

.uxc-a-sticker__svg-container {
  width: 100%;
  height: 0;
  padding-top: 100%;
  right: 0;
  left: 0; }

.uxc-a-sticker__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  border-radius: 50%; }

.uxc-a-sticker--max-width-m {
  max-width: 130px; }

.uxc-a-sticker--size-33 {
  width: 33.333%; }

.uxc-a-sticker--size-50 {
  width: 50%; }

.uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxxs {
  left: 10px;
  top: 10px; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxxs\@mobile {
      left: 10px;
      top: 10px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxxs\@tablet {
      left: 10px;
      top: 10px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxxs\@desktop {
      left: 10px;
      top: 10px; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxxs\@hd {
      left: 10px;
      top: 10px; } }

.uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxs {
  left: 15px;
  top: 15px; }
  @media only screen and (max-width: 767px) {
    html .uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxs\@mobile {
      left: 15px;
      top: 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxs\@tablet {
      left: 15px;
      top: 15px; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxs\@desktop {
      left: 15px;
      top: 15px; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-a-sticker--position-absolute.uxc-a-sticker--offset-xxs\@hd {
      left: 15px;
      top: 15px; } }

.uxc-a-sticker--position-absolute {
  z-index: 20; }
  .uxc-a-sticker--position-absolute .uxc-a-sticker__svg-container {
    position: absolute; }

.uxc-a-sticker--position-absolute.uxc-a-sticker--align-right {
  float: right; }
  .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxxs {
    left: auto;
    right: 10px; }
    @media only screen and (max-width: 767px) {
      html .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxxs\@mobile {
        left: auto;
        right: 10px; } }
    @media only screen and (min-width: 768px) and (max-width: 1023px) {
      html .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxxs\@tablet {
        left: auto;
        right: 10px; } }
    @media only screen and (min-width: 1024px) and (max-width: 1279px) {
      html .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxxs\@desktop {
        left: auto;
        right: 10px; } }
    @media only screen and (min-width: 1280px) {
      html .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxxs\@hd {
        left: auto;
        right: 10px; } }
  .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxs {
    left: auto;
    right: 15px; }
    @media only screen and (max-width: 767px) {
      html .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxs\@mobile {
        left: auto;
        right: 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 1023px) {
      html .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxs\@tablet {
        left: auto;
        right: 15px; } }
    @media only screen and (min-width: 1024px) and (max-width: 1279px) {
      html .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxs\@desktop {
        left: auto;
        right: 15px; } }
    @media only screen and (min-width: 1280px) {
      html .uxc-a-sticker--position-absolute.uxc-a-sticker--align-right.uxc-a-sticker--offset-xxs\@hd {
        left: auto;
        right: 15px; } }

@media only screen and (max-width: 767px) {
  .uxc-a-sticker__text {
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 25px;
    /* stylelint-enable property-blacklist */
    line-height: 35px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-a-sticker__text {
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 34px;
    /* stylelint-enable property-blacklist */
    line-height: 45px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (max-width: 767px) {
  .uxc-a-sticker--multi-line .uxc-a-sticker__text:last-child {
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-a-sticker--multi-line .uxc-a-sticker__text:last-child {
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 20px;
    /* stylelint-enable property-blacklist */
    line-height: 30px;
    font-weight: normal;
    font-style: normal; } }

.uxc-a-sticker--color-primary .uxc-a-sticker__svg {
  background: #46a9b4; }

.uxc-a-sticker--color-primary .uxc-a-sticker__text {
  fill: white; }
.uxc-a-thumbnail {
  height: auto;
  max-width: 170px;
  width: 100%; }
/**
 * This mixin allows to keep a certain aspect ratio
 * http://stackoverflow.com/questions/1495407/maintain-the-aspect-ratio-of-a-div-with-css
 *
 * Usage:
 * .youtube-video {
 *   width: 100%;
 *   @include fluid-height(16, 9); // 16:9 ratio
 * }
 *
 * Known issues:
 *
 * The height ratio uses always the width.
 * If you want to use max-width apply the max-width to the wrapper element.
 */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-a-youtube-video {
  position: relative;
  width: 100%; }

.uxc-a-youtube-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.uxc-a-youtube-video__wrapper {
  position: relative;
  width: 100%;
  height: 100%; }

.uxc-a-youtube-video__container {
  position: relative;
  width: 100%;
  padding: 0 0 56.25% 0;
  height: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer; }

.uxc-a-youtube-video__play {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjY0IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHdpZHRoPSI2NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMzIgNWMxNC44ODggMCAyNyAxMi4xMTIgMjcgMjdTNDYuODg4IDU5IDMyIDU5IDUgNDYuODg4IDUgMzIgMTcuMTEyIDUgMzIgNW0wLTNDMTUuNDMzIDIgMiAxNS40MzIgMiAzMmMwIDE2LjU2OCAxMy40MzMgMzAgMzAgMzBzMzAtMTMuNDMyIDMwLTMwQzYyIDE1LjQzMiA0OC41NjcgMiAzMiAyeiIvPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik00My45ODcgMjguNzQ1TDI4LjAxMyAxOC4yMzJDMjUuMjU2IDE2LjQxOCAyMyAxNy42MzUgMjMgMjAuOTM1VjQzLjA2YzAgMy4zIDIuMjU5IDQuNTIxIDUuMDIxIDIuNzE0TDQzLjk4IDM1LjMzYzIuNzYxLTEuODA5IDIuNzY0LTQuNzcxLjAwNy02LjU4NXptLTIuMTI5IDQuMzc5bC0xNC4xODUgOS4yODNjLS45Mi42MDMtMS42NzMuMTk2LTEuNjczLS45MDRWMjIuNDkxYzAtMS4xLjc1Mi0xLjUwNSAxLjY3MS0uOWwxNC4xOSA5LjMzOGMuOTE5LjYwNC45MTggMS41OTItLjAwMyAyLjE5NXoiLz48L3N2Zz4=); }

@media only screen and (max-width: 767px) {
  .uxc-a-youtube-video__description {
    margin-top: 13.42px;
    margin-bottom: -7.06px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-a-youtube-video__description {
    margin-top: 13.42px;
    margin-bottom: -7.06px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    font-style: normal; } }
.uxc-m-bottom-tabs {
  position: relative; }

.uxc-m-bottom-tabs__tab {
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  width: 100%; }
@font-face {
  font-family: L9925d;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAO4AAsAAAAABeQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPQAAAFYvsTtPY21hcAAAAYQAAABKAAABcOEoo6pnbHlmAAAB0AAAAC4AAAA8LjUXPWhlYWQAAAIAAAAAKAAAADYOhKuBaGhlYQAAAigAAAAVAAAAJAQBAgNobXR4AAACQAAAAAgAAAAIAgAAAGxvY2EAAAJIAAAABgAAAAYAHgAAbWF4cAAAAlAAAAAeAAAAIAEOABluYW1lAAACcAAAASkAAAIWm5e+CnBvc3QAAAOcAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRkYJzAwMrAwOjCmMbAwOAOpb8ySDK0MDAwMbAyM2AFAWmuKQwODxgeANUAgR4TRJgRRAAAUl4HZgAAAHic7ZCxDYAwEAPPykOBGIEqNbNQsb/YJPkY2CKWzpJPXz2wACU5kwDdiJErrewLm31QfRPDP7T2d+5wo5WZ3X18y796QR0aJglRAAB4nGNgYgACJiBk4GbgYWBgVGdXZxdnFzcXN1c3Z2KQevYMjhifIfOAugA99RGsAAB4nGNgZGBgAOIMVsXr8fw2Xxm4mRhA4NpmUydkmokBLM4BoQDlNQcieJxjYGRgYGIAATjJyIAKmAAA9gALAAAAAAAAAAIAAAAAAAAAAB4AAHicY2BkYGBgYuAFYgYwi4GBCwgZGP6D+QwACfMBKAAAeJxlkD1uwkAUhMdgSAJSghQpKbNVCiKZn5IDQE9Bl8KYtTGyvdZ6QaLLCXKEHCGniHKCHChj82hgLT9/M2/e7soABviFh3p5uG1qvVq4oTpxm/Qg7JOfhTvo40W4S38o3MMbpsJ9POKdO3j+HZ0BSuEW7vEh3Kb/KeyTv4Q7eMK3cJf+j3APK/wJ9/HqDdPIFLEp3FIn+yy0Z3n+rrStUlOoSTA+WwtdaBs6vVHro6oOydS5WMXW5GrOrs4yo0prdjpywda5cjYaxeIHkcmRIoJBgbipDktoJNgjQwh71b3UK6YtKvq1VpggwPgqtWCqaJIhlcaGyTWOrBUOPG1K1zGt+FrO5KS5zGreJCMr/u+6t6MT0Q+wbaZKzDDiE1/kg+YO+T89EV6oAAAAeJxjYGKAAFYG7ICJkYmRmYEp04CBAQADvgCsAA==") format('woff');
  font-weight: normal;
  font-style: normal; }
  .uxc-m-bottom-tabs__tab {
  position: absolute;
  bottom: 100%;
  width: 100%;
  visibility: hidden;
  background: white;
  z-index: 80; }
  .uxc-m-bottom-tabs__tab:before {
    content: '';
    display: block;
    height: 15px;
    width: 100%; }

.uxc-m-bottom-tabs__close-tab {
  position: absolute;
  right: 25px;
  top: 40px;
  width: 24px;
  height: 24px;
  text-decoration: none; }
  .uxc-m-bottom-tabs__close-tab:before {
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 24px/1 L9925d;
    content: '\E000';
    color: #46a9b4; }
  .uxc-m-bottom-tabs__close-tab:hover {
    color: #006d73; }

.uxc-m-bottom-tabs__tab-content {
  min-height: calc(40px + 24px + 10px); }

.uxc-m-bottom-tabs__tab--active {
  visibility: visible; }

.uxc-m-bottom-tabs__tab--secondary:before {
  background: #8861a9; }

.uxc-m-bottom-tabs__tab--primary:before {
  background: #46a9b4; }

.uxc-m-bottom-tabs__tab--tertiary:before {
  background: #c31622; }

.uxc-state-m-bottom-tabs__tab--max-height {
  max-height: calc(100vh - 58px);
  overflow: auto; }

.uxc-state-m-bottom-tabs__tab--indent .uxc-m-bottom-tabs__tab-content {
  padding: 0 20px; }
.uxc-m-bottom-tabs__indent {
  padding: 0 20px; }
.uxc-m-breadcrumbs {
  margin-bottom: -20px;
  margin-left: -10px;
  margin-right: -10px; }

.uxc-m-breadcrumbs__content:after {
  content: '';
  display: table;
  clear: both; }
@font-face {
  font-family: zfa71a;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAO8AAsAAAAABdgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAOwAAAFYvsTlAY21hcAAAAYAAAABKAAABcOEoo6pnbHlmAAABzAAAADAAAAAwNADnYmhlYWQAAAH8AAAALAAAADYNVqsWaGhlYQAAAigAAAAZAAAAJALTANhobXR4AAACRAAAAAgAAAAIANUAAGxvY2EAAAJMAAAABgAAAAYAGAAAbWF4cAAAAlQAAAAdAAAAIAEOABZuYW1lAAACdAAAASkAAAIWm5e+CnBvc3QAAAOgAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGTIZpzAwMrAwNDOmAYk3aH0VwZJhhYGBiYGVmYGrCAgzTWFweEBwwOgGiDQY4IIM4IIAJlVCFQAeJztkLENgDAQA8/KQ4EYgSo1s1Cxv9gk+RjYIpbOkk9fPbAAJTmTAN2IkSut7AubfVB9E8M/tPZ37nCjlZndfXzLv3pBHRomCVEAAAACAAAAAADSAZUACAAJAAA3JzcnNxcWFA8BNDGFhTGFGBiFSzdubjdwFUAVcAAAAHicY2BkYGAA4uT2Ttt4fpuvDNxMDCBwbbOpEzLNcIlxKpDkYABLAwAEIwjReJxjYGRgYGIAg6tg8hIDIwMqYAIAJP0BrgAAAAAAAAAA1QAAAAAAAAAYAAB4nGNgZGBgYGLgAmIGMIsByOYCkv/BfAYACagBJQAAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAiZGJkZmBKdOAgQEAA74ArAA=") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-breadcrumbs__breadcrumb {
  color: #141412;
  position: relative;
  display: block;
  text-decoration: none;
  float: left;
  margin-left: 8px; }
  @media only screen and (max-width: 767px) {
    .uxc-m-breadcrumbs__breadcrumb {
      margin-top: -6.58px;
      margin-bottom: 12.94px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-breadcrumbs__breadcrumb {
      margin-top: -6.58px;
      margin-bottom: 12.94px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  [data-focus-source='pointer'] .uxc-m-breadcrumbs__breadcrumb:focus {
    outline: 0; }

.uxc-state-m-breadcrumbs__breadcrumb--linked:hover, [data-focus-source='key'] .uxc-state-m-breadcrumbs__breadcrumb--linked:focus {
  color: #006d73; }

.uxc-m-breadcrumbs__breadcrumb.uxc-state-m-breadcrumbs__breadcrumb--active {
  color: #c31622; }

.uxc-state-m-breadcrumbs__breadcrumb--arrow-right:after {
  text-rendering: auto;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font: normal normal normal 10px/1 zfa71a;
  content: '\E000';
  color: #141412;
  padding-left: 8px; }
@font-face {
  font-family: I4880c;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPwAAsAAAAABjwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPAAAAFYvsTm3Y21hcAAAAYAAAABPAAABfmBD5KlnbHlmAAAB0AAAAFoAAAB4djGEz2hlYWQAAAIsAAAAKQAAADYNhKuBaGhlYQAAAlgAAAAWAAAAJAMBAQRobXR4AAACcAAAAAwAAAAMAgAAAGxvY2EAAAJ8AAAACAAAAAgAHgA8bWF4cAAAAoQAAAAeAAAAIAEPABtuYW1lAAACpAAAASkAAAIWm5e+CnBvc3QAAAPQAAAAIAAAADEDeJw2eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRYzTiBgZWBgWERYxqQdIfSXxkkGVoYGJgYWJkZsIKANNcUBocHDA8YmUBcPSaIMCOIAAC9IgjLeJztkLENgDAMBM+JoUCMQUHBMFTMzybJ22YMXrqT/uXKwAJ0cQkHezAit1bLvbPl7hx547G/NoZMWN3TTVr5s6fPr7X4U1GfK2gTtugLLQB4nGNgYgACRgYgxcvAx8BgrK7HaGJmzyjOziYiz8j+8gIPLy/PBfGLvLwXxU9yySrIcp2UPMGrynNCEqgNTa+wuByjCBs/o7q5mYk+o7k4sl4mBlTdAPkfE+8AAHicY2BkYGAA4tVRE6ri+W2+MnAzMYDAtc2mTsg0IwNYnANCAQADpgfLAAAAeJxjYGRgYGIAAUYYCWEgADMAAMkACgAAAAAAAAEAAAABAAAAAAAAAAAeADx4nGNgZGBgYGbgZ2BiAAEQyQWEDAz/wXwGAApAASsAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAmZGJkZmRhYEp04Ap05CBAQAIaAFO") format('woff');
  font-weight: normal;
  font-style: normal; }
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-m-carousel {
  overflow: hidden;
  position: relative;
  height: 100%;
  top: -10px;
  margin-bottom: -20px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: content-box; }

.uxc-m-carousel--navigation-hidden .uxc-m-carousel__navigation {
  display: none; }

.uxc-m-carousel__swiper-wrapper.uxc-state-m-carousel--multi-row-layout {
  display: block; }
  .uxc-m-carousel__swiper-wrapper.uxc-state-m-carousel--multi-row-layout .uxc-state-m-carousel__slide--duplicate {
    position: absolute;
    max-width: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden; }

.uxc-m-carousel__navigation {
  position: relative;
  display: table;
  min-height: 30px; }

.uxc-m-carousel--navigation-position-bottom .uxc-m-carousel__navigation {
  margin: 45px auto 0 auto; }

.uxc-m-carousel--navigation-position-bottom-left .uxc-m-carousel__navigation {
  margin-top: 45px; }

.uxc-m-carousel--navigation-position-bottom-right .uxc-m-carousel__navigation {
  margin: 45px 0 0 auto; }

.uxc-m-carousel--navigation-position-middle {
  overflow: visible; }
  .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__navigation {
    z-index: 30;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0;
    width: auto;
    display: block; }
    @media only screen and (min-width: 1024px) {
      .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__navigation {
        margin: 0 -40px;
        padding: 0 40px; } }
  .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__pagination {
    display: none; }
  .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__button-prev {
    left: 0;
    background: white; }
  .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__button-next {
    right: 0;
    background: white; }
  .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__button-next,
  .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__button-prev {
    width: 40px;
    height: 60px; }
    .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__button-next:before,
    .uxc-m-carousel--navigation-position-middle .uxc-m-carousel__button-prev:before {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }

.swiper-pagination-fraction {
  color: #8b9196; }
  @media only screen and (max-width: 767px) {
    .swiper-pagination-fraction {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .swiper-pagination-fraction {
      margin-top: -7.6px;
      margin-bottom: -8.2px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }
  .swiper-pagination-fraction .uxc-m-carousel__pagination-current {
    color: #c31622; }

.uxc-m-carousel__button-prev,
.uxc-m-carousel__button-next {
  color: #46a9b4;
  display: block;
  position: absolute;
  width: 16px;
  height: 30px;
  text-decoration: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: color 0.3s;
  transition: color 0.3s; }
  .uxc-m-carousel__button-prev:hover,
  .uxc-m-carousel__button-next:hover {
    color: #006d73; }
  .uxc-m-carousel__button-prev.uxc-m-carousel__button--disabled,
  .uxc-m-carousel__button-next.uxc-m-carousel__button--disabled {
    cursor: default;
    color: #90cbd2; }

.uxc-m-carousel__button-prev {
  left: 15px; }
  .uxc-m-carousel__button-prev:before {
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 180%/1 I4880c;
    content: '\E000'; }
  .uxc-m-carousel__button-prev:after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px; }

.uxc-m-carousel__button-next {
  right: 15px; }
  .uxc-m-carousel__button-next:before {
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 180%/1 I4880c;
    content: '\E001'; }
  .uxc-m-carousel__button-next:after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px; }

.uxc-m-carousel__container {
  margin-top: -10px;
  margin-bottom: -10px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 100%; }

.uxc-m-carousel__swiper-wrapper {
  height: 100%; }

.uxc-m-carousel__pagination {
  display: table-cell;
  vertical-align: middle;
  padding: 0 55px;
  text-align: center; }

.uxc-m-carousel__bullet {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 2px solid #e8e9ea;
  cursor: pointer;
  border-radius: 50%;
  margin-left: 7.5px;
  margin-right: 7.5px;
  -webkit-transition: background 0.3s, border 0.3s;
  transition: background 0.3s, border 0.3s; }
  .uxc-m-carousel__bullet.uxc-m-carousel__bullet--active {
    border: 2px solid #c31622;
    background: #c31622;
    cursor: default; }

.uxc-m-carousel__loading-indicator {
  z-index: 20;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: none;
  box-sizing: border-box; }

.uxc-m-carousel__loading-indicator-wrap {
  width: 150px; }

.uxc-state-m-carousel__loading-indicator--visible {
  opacity: 1; }
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-carousel-item {
  box-sizing: border-box;
  height: 100%;
  opacity: 0; }
  .uxc-m-carousel-item.uxc-state-m-carousel__item--ready {
    opacity: 1; }
/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative; }

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform,height;
  -webkit-transition-property: height,-webkit-transform;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform; }

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%; }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px; }

.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5); }

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff; }

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000; }

.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px; }

.swiper-container-cube, .swiper-container-flip {
  overflow: visible; }

.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; }

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
      transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
.uxc-m-category-tags {
  margin-top: -20px;
  margin-left: -10px;
  margin-right: -10px; }

.uxc-m-category-tags__content:after {
  content: '';
  display: table;
  clear: both; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
.uxc-m-category-tags__tag {
  float: left;
  padding: 10px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px; }

.uxc-m-category-tags__tag__text {
  display: block; }
  @media only screen and (max-width: 767px) {
    .uxc-m-category-tags__tag__text {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-category-tags__tag__text {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }

.uxc-m-category-tags__tag--color-secondary {
  background-color: #8861a9;
  color: white;
  -webkit-transition: background-color .3s;
  transition: background-color .3s; }
  @media only screen and (max-width: 767px) {
    html .uxc-m-category-tags__tag--color-secondary\@mobile {
      background-color: #8861a9;
      color: white;
      -webkit-transition: background-color .3s;
      transition: background-color .3s; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    html .uxc-m-category-tags__tag--color-secondary\@tablet {
      background-color: #8861a9;
      color: white;
      -webkit-transition: background-color .3s;
      transition: background-color .3s; } }
  @media only screen and (min-width: 1024px) and (max-width: 1279px) {
    html .uxc-m-category-tags__tag--color-secondary\@desktop {
      background-color: #8861a9;
      color: white;
      -webkit-transition: background-color .3s;
      transition: background-color .3s; } }
  @media only screen and (min-width: 1280px) {
    html .uxc-m-category-tags__tag--color-secondary\@hd {
      background-color: #8861a9;
      color: white;
      -webkit-transition: background-color .3s;
      transition: background-color .3s; } }
  [data-focus-source='key'] .uxc-h-hover-anchor:focus .uxc-m-category-tags__tag--color-secondary,
  .uxc-h-hover-anchor:hover .uxc-m-category-tags__tag--color-secondary {
    background-color: #006d73; }

.uxc-m-category-tags__tag--color-iron {
  background-color: #e8e9ea;
  color: #141412; }
  [data-focus-source='key'] .uxc-h-hover-anchor:focus .uxc-m-category-tags__tag--color-iron,
  .uxc-h-hover-anchor:hover .uxc-m-category-tags__tag--color-iron {
    color: white; }
.uxc-m-chart-wrapper {
  position: relative; }
.uxc-m-chart-wrapper-icon {
  display: inline-block;
  cursor: pointer;
  color: #8b9196;
  padding-left: 10px; }

.uxc-state-m-chart-wrapper-icon--active {
  color: #a01314; }
.uxc-m-chart-wrapper-table-container {
  visibility: hidden;
  height: 0;
  overflow: hidden; }

.uxc-state-m-chart-wrapper-table-container--active {
  visibility: visible;
  height: auto;
  overflow: visible; }
.uxc-m-chart-wrapper-chart-container {
  visibility: hidden;
  height: 0;
  overflow: hidden; }

.uxc-state-m-chart-wrapper-chart-container--active {
  visibility: visible;
  height: auto;
  overflow: visible; }
.uxc-m-chart-wrapper-legend-item {
  margin-bottom: 4px;
  padding-left: 29px; }
.uxc-m-chart-wrapper-legend-icon {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  content: '';
  vertical-align: text-top;
  margin-left: -29px; }
  .uxc-m-chart-wrapper-legend-icon--primary {
    background-color: #006d73; }
  .uxc-m-chart-wrapper-legend-icon--secondary {
    background-color: #46a9b4; }
  .uxc-m-chart-wrapper-legend-icon--ternary {
    background-color: #b5dde1; }
  .uxc-m-chart-wrapper-legend-icon--quaternary {
    background-color: #573a66; }
  .uxc-m-chart-wrapper-legend-icon--quinary {
    background-color: #8861a9; }
  .uxc-m-chart-wrapper-legend-icon--senary {
    background-color: #cfc0dd; }
  .uxc-m-chart-wrapper-legend-icon--septenary {
    background-color: #8b9196; }
  .uxc-m-chart-wrapper-legend-icon--octonary {
    background-color: #e8e9ea; }
.uxc-m-chart-wrapper-head__wrapper {
  display: table;
  width: 100%; }

.uxc-m-chart-wrapper-head__children {
  display: table-cell; }

.uxc-m-chart-wrapper-head__icons {
  display: table-cell;
  width: 90px;
  white-space: nowrap;
  vertical-align: bottom;
  text-align: right; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-o-content-filter__spinner {
  display: none; }

.uxc-o-content-filter__done {
  display: none; }

.uxc-o-content-filter__input--hidden {
  display: none; }
@font-face {
  font-family: D61040;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPEAAsAAAAABeAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAOwAAAFYvsTo7Y21hcAAAAYAAAABKAAABcOEoo6pnbHlmAAABzAAAADgAAAA4MYDwhGhlYWQAAAIEAAAAKwAAADYN4KraaGhlYQAAAjAAAAAZAAAAJANdAWZobXR4AAACTAAAAAgAAAAIAWMAAGxvY2EAAAJUAAAABgAAAAYAHAAAbWF4cAAAAlwAAAAeAAAAIAEOABpuYW1lAAACfAAAASkAAAIWm5e+CnBvc3QAAAOoAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGTYxDiBgZWBgeEhYxqQdIfSXxkkGVoYGJgYWJkZsIKANNcUBocHDA+AaoBAjwkizAgiAOJGCU8AeJztkLENgDAQA8/KQ4EYgSo1s1Cxv9gk+RjYIpbOkk9fPbAAJTmTAN2IkSut7AubfVB9E8M/tPZ37nCjlZndfXzLv3pBHRomCVEAAAACAAAAAAFcAVkADAANAAA3Ii8BNxcWMj8BFwcGI7AZEoAegQUOBYEegBIZmBSSG5MGBpMbkhQAeJxjYGRgYADiVOsS8Xh+m68M3EwMIHBts6kTMs0YwxgJpDgYwNIA5JIHmwB4nGNgZGBgYgABxmQwGcPAyIAKmAARRwDIAAAAAAAAAAFjAAAAAAAAABwAAHicY2BkYGBgYuADYgYwi4GBCwgZGP6D+QwACgwBKQAAeJxlkD1uwkAUhMdgSAJSghQpKbNVCiKZn5IDQE9Bl8KYtTGyvdZ6QaLLCXKEHCGniHKCHChj82hgLT9/M2/e7soABviFh3p5uG1qvVq4oTpxm/Qg7JOfhTvo40W4S38o3MMbpsJ9POKdO3j+HZ0BSuEW7vEh3Kb/KeyTv4Q7eMK3cJf+j3APK/wJ9/HqDdPIFLEp3FIn+yy0Z3n+rrStUlOoSTA+WwtdaBs6vVHro6oOydS5WMXW5GrOrs4yo0prdjpywda5cjYaxeIHkcmRIoJBgbipDktoJNgjQwh71b3UK6YtKvq1VpggwPgqtWCqaJIhlcaGyTWOrBUOPG1K1zGt+FrO5KS5zGreJCMr/u+6t6MT0Q+wbaZKzDDiE1/kg+YO+T89EV6oAAAAeJxjYGKAAFYG7ICJkYmRmYEp04CBAQADvgCsAA==") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-o-content-filter__select {
  display: inline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s; }
  .uxc-o-content-filter__select.uxc-h-animation--enter-active {
    opacity: 1; }
  .uxc-o-content-filter__select.uxc-h-animation--enter-prepare {
    opacity: 0; }
  .uxc-o-content-filter__select.uxc-h-animation--leave-prepare {
    opacity: 1; }
  .uxc-o-content-filter__select.uxc-h-animation--leave-active {
    opacity: 0; }
  .uxc-o-content-filter__select.uxc-h-animation--leave-stagger {
    -webkit-transition-delay: .2s;
            transition-delay: .2s; }

[data-focus-source='key'] .uxc-state-o-content-filter__select--focus .uxc-o-content-filter__select-label {
  box-shadow: 0 0 10px rgba(0, 109, 115, 0.8); }

.uxc-state-o-content-filter__select--selected .uxc-o-content-filter__select-select:after {
  opacity: 1; }

.uxc-o-content-filter__select-intro {
  color: #8b9196;
  display: inline; }
  @media only screen and (max-width: 767px) {
    .uxc-o-content-filter__select-intro {
      margin-top: -8px;
      margin-bottom: -8.05px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 25px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-o-content-filter__select-intro {
      margin-top: -9.58px;
      margin-bottom: -9.648px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 34px;
      /* stylelint-enable property-blacklist */
      line-height: 45px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

.uxc-o-content-filter__select-select {
  position: relative;
  overflow: hidden;
  color: #46a9b4;
  display: inline; }

.uxc-o-content-filter__select-label {
  display: inline-block; }
  .uxc-o-content-filter__select-label:after {
    content: '';
    padding-left: 10px;
    width: 18px;
    pointer-events: none;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font-family: D61040;
    font-weight: normal;
    content: '\E000';
    color: #46a9b4;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    vertical-align: middle; }

@media only screen and (max-width: 767px) {
  .uxc-o-content-filter__select-label--font-l {
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 25px;
    /* stylelint-enable property-blacklist */
    line-height: 35px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-o-content-filter__select-label--font-l {
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 34px;
    /* stylelint-enable property-blacklist */
    line-height: 45px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (max-width: 767px) {
  .uxc-o-content-filter__select-label--font-l + .uxc-o-content-filter__select-field {
    margin-top: -8px;
    margin-bottom: -8.05px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 25px;
    /* stylelint-enable property-blacklist */
    line-height: 35px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-o-content-filter__select-label--font-l + .uxc-o-content-filter__select-field {
    margin-top: -9.58px;
    margin-bottom: -9.648px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 34px;
    /* stylelint-enable property-blacklist */
    line-height: 45px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (max-width: 767px) {
  .uxc-o-content-filter__select-label--font-s {
    margin-top: -6.42px;
    margin-bottom: -6.452px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-o-content-filter__select-label--font-s {
    margin-top: -7.4px;
    margin-bottom: -7.44px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 20px;
    /* stylelint-enable property-blacklist */
    line-height: 30px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (max-width: 767px) {
  .uxc-o-content-filter__select-label--font-s + .uxc-o-content-filter__select-field {
    margin-top: -8.38px;
    margin-bottom: -8.428px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 24px;
    /* stylelint-enable property-blacklist */
    line-height: 35px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-o-content-filter__select-label--font-s + .uxc-o-content-filter__select-field {
    margin-top: -6.86px;
    margin-bottom: -6.916px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 28px;
    /* stylelint-enable property-blacklist */
    line-height: 35px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

.uxc-o-content-filter__select-field {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: none;
  border-radius: 0;
  /*
   * No outline for mouse clicks or custom focus handling
   */
  outline-offset: 3px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  [data-focus-source='script'] .uxc-o-content-filter__select-field:focus,
  [data-focus-source='pointer'] .uxc-o-content-filter__select-field:focus {
    outline: 0; }
  .uxc-o-content-filter__select-field::-ms-expand {
    display: none; }

.uxc-o-content-filter__select-body {
  display: inline-block;
  position: relative;
  background: transparent;
  width: auto;
  padding: 2px 5px 2px 0; }
.uxc-state-o-content-filter__item--inactive {
  visibility: hidden;
  height: 0;
  overflow: hidden; }

.uxc-state-o-content-filter__item--active {
  visibility: visible;
  height: auto;
  overflow: visible; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-o-content-filter__error__icon {
  text-align: center; }

@media only screen and (max-width: 767px) {
  .uxc-o-content-filter__error__text {
    margin-top: -6.58px;
    margin-bottom: -7.06px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-o-content-filter__error__text {
    margin-top: -7.6px;
    margin-bottom: -8.2px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 20px;
    /* stylelint-enable property-blacklist */
    line-height: 30px;
    font-weight: normal;
    font-style: normal; } }

.uxc-state-o-content-filter__error--hidden {
  display: none; }

.uxc-state-o-content-filter__error--tertiary .uxc-o-content-filter__error__icon {
  color: #c31622; }

.uxc-state-o-content-filter__error--tertiary .uxc-o-content-filter__error__text {
  color: #c31622; }

.uxc-state-o-content-filter__error--black .uxc-o-content-filter__error__icon {
  color: #141412; }

.uxc-state-o-content-filter__error--black .uxc-o-content-filter__error__text {
  color: #141412; }
.uxc-o-content-filter__retry-link {
  display: inline-block; }
.uxc-o-content-filter__last-result {
  display: none; }
.uxc-m-chat-realperson {
  display: none; }

.uxc-state-m-chat-realperson--agent-available {
  display: block; }
.uxc-state-m-content-toggle--hidden {
  display: none; }

.uxc-state-m-content-toggle--initalizing {
  visibility: hidden; }
/* stylelint-disable */
/* stylelint-enable */
.uxc-state-m-conversation-slider--animate-forward.uxc-state-m-conversation-slider--animate-height-grow {
  -webkit-transition: height 500ms ease-in-out 300ms;
  transition: height 500ms ease-in-out 300ms;
  overflow: hidden; }

.uxc-state-m-conversation-slider--animate-forward.uxc-state-m-conversation-slider--animate-height-shrink {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
  overflow: hidden; }

.uxc-state-m-conversation-slider--animate-backward {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
  overflow: hidden; }

.uxc-m-conversation-slider__wrapper {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0); }

.uxc-state-m-conversation-slider__wrapper--animation {
  position: relative;
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out; }
.uxc-m-conversation-slider__next {
  text-decoration: none;
  color: #46a9b4; }
  .uxc-m-conversation-slider__next:hover {
    color: #006d73; }
.uxc-m-conversation-slider__previous {
  text-decoration: none;
  color: #46a9b4; }
  .uxc-m-conversation-slider__previous:hover {
    color: #006d73; }
.uxc-m-conversation-slider__step {
  display: none;
  padding: 0 20px;
  width: 100%; }

.uxc-state-m-conversation-slider__step--active {
  display: block; }

.uxc-state-m-conversation-slider__step--next,
.uxc-state-m-conversation-slider__step--previous {
  display: block; }

.uxc-state-m-conversation-slider__step--absolute {
  position: absolute;
  top: 0;
  left: 0; }
.uxc-m-file-upload {
  position: relative;
  display: block;
  width: 100%; }

.uxc-state-m-file-upload--error .uxc-a-text-input {
  border-bottom-color: #c31622; }
.uxc-m-file-upload__button {
  position: relative;
  display: inline-block;
  overflow: hidden; }

.uxc-m-file-upload__button__input-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  cursor: pointer; }

.uxc-m-file-upload__button__text {
  display: block;
  position: relative; }

.uxc-m-file-upload__input {
  position: absolute;
  min-width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  /* stylelint-disable */
  font-size: 999px;
  /* stylelint-enable */
  cursor: pointer;
  opacity: 0; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-flyout-menu {
  position: relative;
  display: table; }
  .uxc-m-flyout-menu .uxc-m-flyout-menu__outer {
    position: relative;
    padding: 0 12px;
    line-height: 0; }
  .uxc-m-flyout-menu .uxc-m-flyout-menu__label {
    padding: 0;
    /*
   * No outline for mouse clicks or custom focus handling
   */
    display: inline-block;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    padding-right: 16px; }
    @media only screen and (max-width: 767px) {
      .uxc-m-flyout-menu .uxc-m-flyout-menu__label {
        margin-top: -6.58px;
        margin-bottom: -7.06px;
        /* stylelint-disable property-blacklist */
        font-family: "Futura";
        font-size: 16px;
        /* stylelint-enable property-blacklist */
        line-height: 25px;
        font-weight: normal;
        font-style: normal; } }
    @media only screen and (min-width: 768px) {
      .uxc-m-flyout-menu .uxc-m-flyout-menu__label {
        margin-top: -6.58px;
        margin-bottom: -7.06px;
        /* stylelint-disable property-blacklist */
        font-family: "Futura";
        font-size: 16px;
        /* stylelint-enable property-blacklist */
        line-height: 25px;
        font-weight: normal;
        font-style: normal; } }
    [data-focus-source='script'] .uxc-m-flyout-menu .uxc-m-flyout-menu__label:focus,
    [data-focus-source='pointer'] .uxc-m-flyout-menu .uxc-m-flyout-menu__label:focus {
      outline: 0; }
  .uxc-m-flyout-menu .uxc-m-flyout-menu__label--max-width-m {
    max-width: 196px; }
  .uxc-m-flyout-menu.uxc-m-flyout-menu--s .uxc-m-flyout-menu__label {
    margin-right: 0; }
  .uxc-m-flyout-menu .uxc-m-flyout-menu__icon {
    position: absolute;
    right: 0;
    bottom: -1px;
    cursor: pointer; }
    .uxc-m-flyout-menu .uxc-m-flyout-menu__icon:focus {
      outline: none; }
    .uxc-m-flyout-menu .uxc-m-flyout-menu__icon::before {
      display: none; }
  .uxc-m-flyout-menu .uxc-m-flyout-menu__label,
  .uxc-m-flyout-menu .uxc-m-flyout-menu__icon {
    color: #8b9196; }
  .uxc-m-flyout-menu .uxc-m-flyout-menu__menu {
    box-shadow: 0 15px 50px -5px rgba(139, 145, 150, 0.5);
    background-color: white;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;
    width: auto;
    min-width: 0;
    white-space: nowrap;
    overflow-y: visible;
    margin-top: 3px;
    padding: 20px;
    z-index: 51; }
  .uxc-m-flyout-menu:hover .uxc-m-flyout-menu__label,
  .uxc-m-flyout-menu:hover .uxc-m-flyout-menu__icon, .uxc-m-flyout-menu:focus .uxc-m-flyout-menu__label,
  .uxc-m-flyout-menu:focus .uxc-m-flyout-menu__icon {
    color: #006d73; }
  .uxc-m-flyout-menu.uxc-state-m-flyout-menu__menu--active .uxc-m-flyout-menu__label,
  .uxc-m-flyout-menu.uxc-state-m-flyout-menu__menu--active .uxc-m-flyout-menu__icon {
    color: #c31622; }

.uxc-m-flyout-menu--cardinal .uxc-m-flyout-menu__label,
.uxc-m-flyout-menu--cardinal .uxc-m-flyout-menu__icon {
  color: #c31622; }

.uxc-m-flyout-menu--cardinal:hover .uxc-m-flyout-menu__label,
.uxc-m-flyout-menu--cardinal:hover .uxc-m-flyout-menu__icon, .uxc-m-flyout-menu--cardinal:focus .uxc-m-flyout-menu__label,
.uxc-m-flyout-menu--cardinal:focus .uxc-m-flyout-menu__icon {
  color: #a01314; }

.uxc-state-m-flyout-menu__menu--active .uxc-m-flyout-menu__menu {
  opacity: 1;
  visibility: visible; }

@media only screen and (max-width: 767px) {
  .uxc-m-flyout-menu--bold .uxc-m-flyout-menu__label {
    margin-top: -6.42px;
    margin-bottom: -6.452px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-m-flyout-menu--bold .uxc-m-flyout-menu__label {
    margin-top: -6.42px;
    margin-bottom: -6.452px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }
@font-face {
  font-family: x975f6;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPwAAsAAAAABjwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPAAAAFYvsTm3Y21hcAAAAYAAAABPAAABfmBD5KlnbHlmAAAB0AAAAFoAAAB4djGEz2hlYWQAAAIsAAAAKQAAADYNhKuBaGhlYQAAAlgAAAAWAAAAJAMBAQRobXR4AAACcAAAAAwAAAAMAgAAAGxvY2EAAAJ8AAAACAAAAAgAHgA8bWF4cAAAAoQAAAAeAAAAIAEPABtuYW1lAAACpAAAASkAAAIWm5e+CnBvc3QAAAPQAAAAIAAAADEDeJw2eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRYzTiBgZWBgWERYxqQdIfSXxkkGVoYGJgYWJkZsIKANNcUBocHDA8YmUBcPSaIMCOIAAC9IgjLeJztkLENgDAMBM+JoUCMQUHBMFTMzybJ22YMXrqT/uXKwAJ0cQkHezAit1bLvbPl7hx547G/NoZMWN3TTVr5s6fPr7X4U1GfK2gTtugLLQB4nGNgYgACRgYgxcvAx8BgrK7HaGJmzyjOziYiz8j+8gIPLy/PBfGLvLwXxU9yySrIcp2UPMGrynNCEqgNTa+wuByjCBs/o7q5mYk+o7k4sl4mBlTdAPkfE+8AAHicY2BkYGAA4tVRE6ri+W2+MnAzMYDAtc2mTsg0IwNYnANCAQADpgfLAAAAeJxjYGRgYGIAAUYYCWEgADMAAMkACgAAAAAAAAEAAAABAAAAAAAAAAAeADx4nGNgZGBgYGbgZ2BiAAEQyQWEDAz/wXwGAApAASsAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAmZGJkZmRhYEp04Ap05CBAQAIaAFO") format('woff');
  font-weight: normal;
  font-style: normal; }
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-link-carousel {
  position: relative;
  width: 100%;
  z-index: 10;
  padding: 0 40px; }

.uxc-m-link-carousel__button-prev,
.uxc-m-link-carousel__button-next {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s; }
  .uxc-m-link-carousel__button-prev:before,
  .uxc-m-link-carousel__button-next:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 12px;
    height: 24px;
    color: #46a9b4; }

.uxc-m-link-carousel__button-prev {
  left: 0; }
  .uxc-m-link-carousel__button-prev:before {
    left: 12px;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 150%/1 x975f6;
    content: '\E000'; }

.uxc-m-link-carousel__button-next {
  right: 0; }
  .uxc-m-link-carousel__button-next:before {
    right: 12px;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 150%/1 x975f6;
    content: '\E001'; }

.uxc-m-state-link-carousel__button--visible {
  opacity: 1;
  visibility: visible; }

.uxc-m-link-carousel__container {
  overflow: hidden; }
.uxc-m-link-carousel-item {
  position: relative;
  overflow: hidden; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-main-navigation {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  background-color: white;
  z-index: 70;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s; }

/* animation */
.uxc-m-main-navigation.uxc-h-animation--enter-prepare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0; }

.uxc-m-main-navigation.uxc-h-animation--enter-active {
  opacity: 1; }

.uxc-m-main-navigation.uxc-h-animation--leave-prepare {
  opacity: 1; }

.uxc-m-main-navigation.uxc-h-animation--leave-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0; }

/* open state */
.uxc-state-m-main-navigation--open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1; }

.uxc-m-main-navigation:before {
  content: '';
  background-color: #f9f9fa;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; }
  @media (min-width: 1440px) {
    .uxc-m-main-navigation:before {
      right: calc(50% + 350px); } }
  @media (max-width: 1439px) {
    .uxc-m-main-navigation:before {
      width: calc(26.38889vw - 10px); } }
.uxc-m-main-navigation__toggle {
  /*
   * No outline for mouse clicks or custom focus handling
   */
  cursor: pointer;
  text-decoration: none;
  color: #141412; }
  [data-focus-source='script'] .uxc-m-main-navigation__toggle:focus,
  [data-focus-source='pointer'] .uxc-m-main-navigation__toggle:focus {
    outline: 0; }
  .uxc-m-main-navigation__toggle:hover {
    color: #006d73; }
    .uxc-m-main-navigation__toggle:hover .uxc-m-main-navigation__toggle-text {
      color: #006d73; }
@font-face {
  font-family: E48a6f;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPwAAsAAAAABjQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPQAAAFYvsT1NY21hcAAAAYQAAABPAAABfmBD5KlnbHlmAAAB1AAAAFMAAABwwlTRAGhlYWQAAAIoAAAAKQAAADYOs6uBaGhlYQAAAlQAAAAaAAAAJAQwAwxobXR4AAACcAAAAAwAAAAMBQgAAGxvY2EAAAJ8AAAACAAAAAgAHAA4bWF4cAAAAoQAAAAfAAAAIAERABluYW1lAAACpAAAASkAAAIWm5e+CnBvc3QAAAPQAAAAIAAAADEDeJw2eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRcyziBgZWBgfENYxoDA4M7lP7KIMnQwsDAxMDKzIAVBKS5pjA4PGB4wMgE4uoxQYQZQQQA57gJZAAAAHic7ZCxDYAwDATPiaFAjEFBwTBUzM8mydtmDF66k/7lysACdHEJB3swIrdWy72z5e4ceeOxvzaGTFjd001a+bOnz6+1+FNRnytoE7boCy0AeJxjYGEAAiZ9xpcMzAzsDNwMPAwM5qaKooyKooqCQGwqziTx9wUMi4eHM4oAUVgYAxNYH4gC61FVN1dnV2cXZxc3FzdnYjhwwAGOHJA5AC5CGtYAeJxjYGRgYABiDve3GvH8Nl8ZuJkYQODaZlMnZJpJHyzOwQCmAOedB1AAAAB4nGNgZGBgYgABZg4QyaTPwMiACpgBBVYARAAAAAAAAAMIAAACAAAAAAAAAAAcADh4nGNgZGBgYGbgZWBhAAEmIOYCQgaG/2A+AwAKPAErAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAmZGJkZmRhYEp04Ap05CBAQAIaAFO") format('woff');
  font-weight: normal;
  font-style: normal; }
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-main-navigation__toggle-text {
  cursor: pointer;
  text-decoration: none;
  color: #141412;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  display: block; }
  @media only screen and (max-width: 767px) {
    .uxc-m-main-navigation__toggle-text {
      margin-top: -6.42px;
      margin-bottom: -6.452px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-main-navigation__toggle-text {
      margin-top: -6.42px;
      margin-bottom: -6.452px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

.uxc-m-main-navigation__toggle-text--color-tertiary {
  color: #c31622; }

.uxc-m-main-navigation__toggle-text--color-black {
  color: #141412; }

.uxc-m-main-navigation__toggle-text--burger-icon {
  position: relative;
  padding-left: 37px; }
  .uxc-m-main-navigation__toggle-text--burger-icon:before {
    position: absolute;
    top: 3px;
    left: 0;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 20px/1 E48a6f;
    content: '\E000'; }

.uxc-m-main-navigation__toggle-text--close-icon:before {
  text-rendering: auto;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font: normal normal normal 16px/1 E48a6f;
  content: '\E001';
  padding-right: 8px; }
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Add a shadow to indicate that this container is scrollable
 *
 * The shadow is only visible if the user can scroll.
 */
.uxc-m-main-navigation__menu {
  position: relative;
  overflow-y: auto;
  position: relative;
  background: #f9f9fa no-repeat;
  background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0));
  background-image: radial-gradient(farthest-side at 50% 0, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0)), radial-gradient(farthest-side at 50% 100%, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0));
  background-position: 0 0, 0 100%;
  background-size: 100% 20px;
  z-index: 1; }
  .uxc-m-main-navigation__menu:before {
    content: '';
    display: block;
    position: relative;
    z-index: -1;
    height: 40px;
    width: 100%;
    margin-bottom: -40px;
    background: -webkit-linear-gradient(#f9f9fa, #f9f9fa 30%, rgba(249, 249, 250, 0));
    background: linear-gradient(#f9f9fa, #f9f9fa 30%, rgba(249, 249, 250, 0)); }
  .uxc-m-main-navigation__menu:after {
    content: '';
    position: relative;
    display: block;
    z-index: -1;
    height: 40px;
    width: 100%;
    margin-top: -40px;
    background: -webkit-linear-gradient(top, rgba(249, 249, 250, 0), #f9f9fa 70%, #f9f9fa);
    background: linear-gradient(to bottom, rgba(249, 249, 250, 0), #f9f9fa 70%, #f9f9fa); }

.uxc-m-main-navigation__menu__inner {
  overflow-x: hidden;
  min-height: 100%; }
@font-face {
  font-family: u1cd6f;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAO8AAsAAAAABdgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPAAAAFYvsjpZY21hcAAAAYAAAABKAAABcOEoo6pnbHlmAAABzAAAADAAAAAwosDH12hlYWQAAAH8AAAALAAAADYNnKuAaGhlYQAAAigAAAAZAAAAJAMYAXdobXR4AAACRAAAAAgAAAAIAXQAAGxvY2EAAAJMAAAABgAAAAYAGAAAbWF4cAAAAlQAAAAdAAAAIAEOABZuYW1lAAACdAAAASkAAAIWm5e+CnBvc3QAAAOgAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGTYxTiBgZWBgeENYxqQdIfSXxkkGVoYGJgYWJkZsIKANNcUBocHDA+AaoBAD0gyMkAwAwDrAQlueJztkLENgDAQA8/KQ4EYgSo1s1Cxv9gk+RjYIpbOkk9fPbAAJTmTAN2IkSut7AubfVB9E8M/tPZ37nCjlZndfXzLv3pBHRomCVEAAAACAAD//wEXAgAACAAJAAABDwEnNzUnNx8BARccs0iyskizHAEAR7o8uxO7PLpGAHicY2BkYGAA4uaNR/jj+W2+MnAzMYDAtc2mTgj6/39GcbA4BwOYAgAixAnYeJxjYGRgYGIAAcYSMCnOwMiACpgADdEAlAAAAAAAAAABdAAAAAAAAAAYAAB4nGNgZGBgYGLgAmIGMIsByOYCkv/BfAYACagBJQAAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAiZGJkZmBKdOAgQEAA74ArAA=") format('woff');
  font-weight: normal;
  font-style: normal; }
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-main-navigation__menu-item {
  position: relative;
  display: block;
  width: 100%;
  color: #8b9196;
  padding-right: 2ex;
  word-break: break-all;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s; }
  @media only screen and (max-width: 767px) {
    .uxc-m-main-navigation__menu-item {
      margin-top: -6.42px;
      margin-bottom: -6.452px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-main-navigation__menu-item {
      margin-top: -7.4px;
      margin-bottom: -7.44px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  .uxc-m-main-navigation__menu-item:hover {
    cursor: pointer;
    color: #006d73; }

.uxc-m-main-navigation__menu-item--icon:after {
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-rendering: auto;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font: normal normal normal 1ex/1 u1cd6f;
  content: '\E000'; }

.uxc-state-m-main-navigation__menu-item--active {
  color: #c31622; }
@font-face {
  font-family: vae001;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAO8AAsAAAAABdgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPAAAAFYvsjpZY21hcAAAAYAAAABKAAABcOEoo6pnbHlmAAABzAAAADAAAAAwosDH12hlYWQAAAH8AAAALAAAADYNnKuAaGhlYQAAAigAAAAZAAAAJAMYAXdobXR4AAACRAAAAAgAAAAIAXQAAGxvY2EAAAJMAAAABgAAAAYAGAAAbWF4cAAAAlQAAAAdAAAAIAEOABZuYW1lAAACdAAAASkAAAIWm5e+CnBvc3QAAAOgAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGTYxTiBgZWBgeENYxqQdIfSXxkkGVoYGJgYWJkZsIKANNcUBocHDA+AaoBAD0gyMkAwAwDrAQlueJztkLENgDAQA8/KQ4EYgSo1s1Cxv9gk+RjYIpbOkk9fPbAAJTmTAN2IkSut7AubfVB9E8M/tPZ37nCjlZndfXzLv3pBHRomCVEAAAACAAD//wEXAgAACAAJAAABDwEnNzUnNx8BARccs0iyskizHAEAR7o8uxO7PLpGAHicY2BkYGAA4uaNR/jj+W2+MnAzMYDAtc2mTgj6/39GcbA4BwOYAgAixAnYeJxjYGRgYGIAAcYSMCnOwMiACpgADdEAlAAAAAAAAAABdAAAAAAAAAAYAAB4nGNgZGBgYGLgAmIGMIsByOYCkv/BfAYACagBJQAAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAiZGJkZmBKdOAgQEAA74ArAA=") format('woff');
  font-weight: normal;
  font-style: normal; }
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-main-navigation__submenu-link {
  position: relative;
  width: 100%;
  color: #46a9b4;
  word-break: break-all;
  -webkit-transition: color 0.3s;
  transition: color 0.3s; }
  @media only screen and (max-width: 767px) {
    .uxc-m-main-navigation__submenu-link {
      margin-top: -6.42px;
      margin-bottom: -6.452px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-main-navigation__submenu-link {
      margin-top: -7.4px;
      margin-bottom: -7.44px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  .uxc-m-main-navigation__submenu-link:hover {
    cursor: pointer;
    color: #006d73; }

.uxc-m-main-navigation__submenu-link:after {
  text-rendering: auto;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font: normal normal normal 1ex/1 vae001;
  content: '\E000';
  margin-left: 1ex; }
.uxc-m-main-navigation__subsubmenu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -30px; }
.uxc-m-main-navigation__subsubmenu-links {
  width: 50%;
  padding-right: 30px; }

.uxc-m-main-navigation__subsubmenu-links--full {
  width: 100%; }
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-main-navigation__submenu {
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; }

.uxc-state-m-main-navigation__submenu--visible {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow-y: auto;
  width: 100%; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/**
 * Add a shadow to indicate that this container is scrollable
 *
 * The shadow is only visible if the user can scroll.
 */
.uxc-m-main-navigation__submenu-container {
  position: relative;
  background: #fff no-repeat;
  background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0));
  background-image: radial-gradient(farthest-side at 50% 0, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0)), radial-gradient(farthest-side at 50% 100%, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0));
  background-position: 0 0, 0 100%;
  background-size: 100% 20px;
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto; }
  .uxc-m-main-navigation__submenu-container:before {
    content: '';
    display: block;
    position: relative;
    z-index: -1;
    height: 40px;
    width: 100%;
    margin-bottom: -40px;
    background: -webkit-linear-gradient(#fff, #fff 30%, rgba(255, 255, 255, 0));
    background: linear-gradient(#fff, #fff 30%, rgba(255, 255, 255, 0)); }
  .uxc-m-main-navigation__submenu-container:after {
    content: '';
    position: relative;
    display: block;
    z-index: -1;
    height: 40px;
    width: 100%;
    margin-top: -40px;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 70%, #fff);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%, #fff); }
  @media (min-width: 1440px) {
    .uxc-m-main-navigation__submenu-container {
      left: calc(50% - 335px); } }
  @media (max-width: 1439px) {
    .uxc-m-main-navigation__submenu-container {
      left: calc(50% - ((94.44444vw * 0.25) - 5px)); } }

.uxc-m-main-navigation__submenu-container__inner {
  overflow-x: hidden;
  min-height: 100%; }
  @media (min-width: 1440px) {
    .uxc-m-main-navigation__submenu-container__inner {
      padding-left: 113.33333px;
      padding-right: calc((100vw - 1360px) / 2); } }
  @media (max-width: 1439px) {
    .uxc-m-main-navigation__submenu-container__inner {
      padding-left: 7.87037vw;
      padding-right: calc((100vw - 94.44444vw) / 2); } }
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Add a shadow to indicate that this container is scrollable
 *
 * The shadow is only visible if the user can scroll.
 */
body.uxc-state-h-prevent-scrolling--body-scroll-fix {
  overflow: hidden; }
@font-face {
  font-family: K8be25;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAQUAAsAAAAABkwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPQAAAFYvsTulY21hcAAAAYQAAABPAAABfmBD5KlnbHlmAAAB1AAAAHsAAACIzsScAmhlYWQAAAJQAAAAKQAAADYOhKuBaGhlYQAAAnwAAAAVAAAAJAQBAgRobXR4AAAClAAAAAwAAAAMBAAAAGxvY2EAAAKgAAAACAAAAAgAGABEbWF4cAAAAqgAAAAeAAAAIAEPACVuYW1lAAACyAAAASkAAAIWm5e+CnBvc3QAAAP0AAAAIAAAADEDeJw2eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGQMZZzAwMrAwOjCmMbAwOAOpb8ySDK0MDAwMbAyM2AFAWmuKQwODxgeMDKBuHpMEGFGEAEAbgAHvAAAAHic7ZCxDYAwDATPiaFAjEFBwTBUzM8mydtmDF66k/7lysACdHEJB3swIrdWy72z5e4ceeOxvzaGTFjd001a+bOnz6+1+FNRnytoE7boCy0AeJxjYGIAAiYgZOBm4GFgYFQ2VRZVFjUWNTY1NmVieODwAIgYFR6AGRClMPXiDBJA9epqSvyMbCJiRvaMgkDSzFRQHEiaqDN+3yXpIbmLU0iSc52glOA6TkkhTkbDbZKS2zglBTlW/yviERLiYexbzSEoyQk0EQDpYhghAHicY2BkYGAA4k8O0VPi+W2+MnAzMYDAtc2mTsg0EwNYnANCAQAHJgfeAAAAeJxjYGRgYGIAATjJyIAKmAEA9wAMAAAAAAAAAAIAAAACAAAAAAAAAAAYAER4nGNgZGBgYGaQZGBiAAEQyQWEDAz/wXwGAAs6ATUAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAmZGJkZmRhYEp04Ap05CBAQAIaAFO") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-multi-file-upload__dropzone {
  position: relative;
  display: block;
  border: 1px dashed #46a9b4;
  /*
   * No outline for mouse clicks or custom focus handling
   */
  color: #8b9196; }
  [data-focus-source='script'] .uxc-m-multi-file-upload__dropzone:focus,
  [data-focus-source='pointer'] .uxc-m-multi-file-upload__dropzone:focus {
    outline: 0; }
  @media only screen and (max-width: 767px) {
    .uxc-m-multi-file-upload__dropzone {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-multi-file-upload__dropzone {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }
  .uxc-m-multi-file-upload__dropzone .uxc-m-multi-file-upload__input {
    display: block;
    width: 100%;
    height: 250px;
    opacity: 0;
    overflow: hidden; }

.uxc-m-multi-file-upload__text {
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%; }

.uxc-m-multi-file-upload__results {
  margin-top: 20px; }

.uxc-m-multi-file-upload__result-item {
  width: 100%;
  margin-bottom: 30px; }
  .uxc-m-multi-file-upload__result-item .uxc-m-multi-file-upload__input {
    display: none; }

.uxc-m-multi-file-upload__result-name {
  display: inline-block;
  color: #141412;
  max-width: calc(100% - 24px - 5px);
  text-overflow: ellipsis;
  padding-right: 5px;
  width: auto;
  white-space: nowrap;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .uxc-m-multi-file-upload__result-name {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-multi-file-upload__result-name {
      margin-top: -7.6px;
      margin-bottom: -8.2px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }

.uxc-m-multi-file-upload__delete-button {
  display: inline-block;
  background: none;
  border: none;
  color: #46a9b4;
  cursor: pointer;
  /*
   * No outline for mouse clicks or custom focus handling
   */
  padding: 0;
  position: relative;
  height: 20px;
  width: 24px;
  vertical-align: bottom; }
  [data-focus-source='script'] .uxc-m-multi-file-upload__delete-button:focus,
  [data-focus-source='pointer'] .uxc-m-multi-file-upload__delete-button:focus {
    outline: 0; }
  .uxc-m-multi-file-upload__delete-button:focus, .uxc-m-multi-file-upload__delete-button:hover {
    color: #006d73; }
  .uxc-m-multi-file-upload__delete-button:before {
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 13px/1 K8be25;
    content: '\E000';
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 7px;
    left: 0; }

.uxc-m-multi-file-upload__error {
  color: #a01314;
  display: none;
  padding-left: 30px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .uxc-m-multi-file-upload__error {
      margin-top: -6.58px;
      margin-bottom: 12.94px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-multi-file-upload__error {
      margin-top: -7.6px;
      margin-bottom: 11.8px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }
  .uxc-m-multi-file-upload__error:before {
    content: '';
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 0.8em/1 K8be25;
    content: '\E001';
    width: 1.5ex;
    height: 1.5ex;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 7px;
    color: #a01314; }
  @media only screen and (max-width: 767px) {
    .uxc-m-multi-file-upload__error {
      padding-left: 20px; }
      .uxc-m-multi-file-upload__error:before {
        text-rendering: auto;
        -webkit-font-smoothing: auto;
        -moz-osx-font-smoothing: auto;
        font: normal normal normal 0.8em/1 K8be25;
        content: '\E001';
        top: 6px; } }

.uxc-m-multi-file-upload__fallback {
  display: none; }
  .uxc-m-multi-file-upload__fallback .uxc-m-multi-file-upload__input {
    position: absolute;
    min-width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    /* stylelint-disable */
    font-size: 999px;
    /* stylelint-enable */
    cursor: pointer;
    opacity: 0; }

.uxc-m-multi-file-upload__input-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  cursor: pointer; }

.uxc-state-m-multi-file-upload--fallback .uxc-m-multi-file-upload__dropzone {
  display: none; }

.uxc-state-m-multi-file-upload--fallback .uxc-m-multi-file-upload__fallback {
  display: block; }

/**
* Required state
*/
.uxc-state-m-multi-file-upload--is-required .uxc-m-multi-file-upload__text:after {
  content: '*'; }
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-multi-step-form {
  width: 100%;
  overflow: hidden;
  margin-top: -10px;
  padding-top: 10px; }

.uxc-m-multi-step-form__wrapper {
  display: block;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0); }
  .uxc-m-multi-step-form__wrapper:after {
    clear: both;
    display: table;
    content: ''; }

.uxc-m-multi-step-form__wrapper--previous {
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out; }

.uxc-m-multi-step-form__wrapper--next {
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out; }

.uxc-m-multi-step-form__item:nth-child(1) {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%); }

.uxc-m-multi-step-form[data-steps="1"] .uxc-m-multi-step-form__wrapper {
  width: 100%; }

.uxc-m-multi-step-form[data-steps="1"] .uxc-m-multi-step-form__wrapper--previous {
  -webkit-transform: translate(100%);
      -ms-transform: translate(100%);
          transform: translate(100%); }

.uxc-m-multi-step-form[data-steps="1"] .uxc-m-multi-step-form__wrapper--next {
  -webkit-transform: translate(-100%);
      -ms-transform: translate(-100%);
          transform: translate(-100%); }

.uxc-m-multi-step-form[data-steps="1"] .uxc-m-multi-step-form__item {
  width: 100%; }

.uxc-m-multi-step-form[data-steps="1"] .uxc-m-multi-step-form__item--previous-step {
  left: -100%; }

.uxc-m-multi-step-form[data-steps="1"] .uxc-m-multi-step-form__item--next-step {
  right: -100%; }

.uxc-m-multi-step-form__item:nth-child(2) {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%); }

.uxc-m-multi-step-form[data-steps="2"] .uxc-m-multi-step-form__wrapper {
  width: 200%; }

.uxc-m-multi-step-form[data-steps="2"] .uxc-m-multi-step-form__wrapper--previous {
  -webkit-transform: translate(50%);
      -ms-transform: translate(50%);
          transform: translate(50%); }

.uxc-m-multi-step-form[data-steps="2"] .uxc-m-multi-step-form__wrapper--next {
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%); }

.uxc-m-multi-step-form[data-steps="2"] .uxc-m-multi-step-form__item {
  width: 50%; }

.uxc-m-multi-step-form[data-steps="2"] .uxc-m-multi-step-form__item--previous-step {
  left: -50%; }

.uxc-m-multi-step-form[data-steps="2"] .uxc-m-multi-step-form__item--next-step {
  right: -50%; }

.uxc-m-multi-step-form__item:nth-child(3) {
  -webkit-transform: translateX(-200%);
      -ms-transform: translateX(-200%);
          transform: translateX(-200%); }

.uxc-m-multi-step-form[data-steps="3"] .uxc-m-multi-step-form__wrapper {
  width: 300%; }

.uxc-m-multi-step-form[data-steps="3"] .uxc-m-multi-step-form__wrapper--previous {
  -webkit-transform: translate(33.33333%);
      -ms-transform: translate(33.33333%);
          transform: translate(33.33333%); }

.uxc-m-multi-step-form[data-steps="3"] .uxc-m-multi-step-form__wrapper--next {
  -webkit-transform: translate(-33.33333%);
      -ms-transform: translate(-33.33333%);
          transform: translate(-33.33333%); }

.uxc-m-multi-step-form[data-steps="3"] .uxc-m-multi-step-form__item {
  width: 33.33333%; }

.uxc-m-multi-step-form[data-steps="3"] .uxc-m-multi-step-form__item--previous-step {
  left: -33.33333%; }

.uxc-m-multi-step-form[data-steps="3"] .uxc-m-multi-step-form__item--next-step {
  right: -33.33333%; }

.uxc-m-multi-step-form__item:nth-child(4) {
  -webkit-transform: translateX(-300%);
      -ms-transform: translateX(-300%);
          transform: translateX(-300%); }

.uxc-m-multi-step-form[data-steps="4"] .uxc-m-multi-step-form__wrapper {
  width: 400%; }

.uxc-m-multi-step-form[data-steps="4"] .uxc-m-multi-step-form__wrapper--previous {
  -webkit-transform: translate(25%);
      -ms-transform: translate(25%);
          transform: translate(25%); }

.uxc-m-multi-step-form[data-steps="4"] .uxc-m-multi-step-form__wrapper--next {
  -webkit-transform: translate(-25%);
      -ms-transform: translate(-25%);
          transform: translate(-25%); }

.uxc-m-multi-step-form[data-steps="4"] .uxc-m-multi-step-form__item {
  width: 25%; }

.uxc-m-multi-step-form[data-steps="4"] .uxc-m-multi-step-form__item--previous-step {
  left: -25%; }

.uxc-m-multi-step-form[data-steps="4"] .uxc-m-multi-step-form__item--next-step {
  right: -25%; }

.uxc-m-multi-step-form__item:nth-child(5) {
  -webkit-transform: translateX(-400%);
      -ms-transform: translateX(-400%);
          transform: translateX(-400%); }

.uxc-m-multi-step-form[data-steps="5"] .uxc-m-multi-step-form__wrapper {
  width: 500%; }

.uxc-m-multi-step-form[data-steps="5"] .uxc-m-multi-step-form__wrapper--previous {
  -webkit-transform: translate(20%);
      -ms-transform: translate(20%);
          transform: translate(20%); }

.uxc-m-multi-step-form[data-steps="5"] .uxc-m-multi-step-form__wrapper--next {
  -webkit-transform: translate(-20%);
      -ms-transform: translate(-20%);
          transform: translate(-20%); }

.uxc-m-multi-step-form[data-steps="5"] .uxc-m-multi-step-form__item {
  width: 20%; }

.uxc-m-multi-step-form[data-steps="5"] .uxc-m-multi-step-form__item--previous-step {
  left: -20%; }

.uxc-m-multi-step-form[data-steps="5"] .uxc-m-multi-step-form__item--next-step {
  right: -20%; }

.uxc-m-multi-step-form__item:nth-child(6) {
  -webkit-transform: translateX(-500%);
      -ms-transform: translateX(-500%);
          transform: translateX(-500%); }

.uxc-m-multi-step-form[data-steps="6"] .uxc-m-multi-step-form__wrapper {
  width: 600%; }

.uxc-m-multi-step-form[data-steps="6"] .uxc-m-multi-step-form__wrapper--previous {
  -webkit-transform: translate(16.66667%);
      -ms-transform: translate(16.66667%);
          transform: translate(16.66667%); }

.uxc-m-multi-step-form[data-steps="6"] .uxc-m-multi-step-form__wrapper--next {
  -webkit-transform: translate(-16.66667%);
      -ms-transform: translate(-16.66667%);
          transform: translate(-16.66667%); }

.uxc-m-multi-step-form[data-steps="6"] .uxc-m-multi-step-form__item {
  width: 16.66667%; }

.uxc-m-multi-step-form[data-steps="6"] .uxc-m-multi-step-form__item--previous-step {
  left: -16.66667%; }

.uxc-m-multi-step-form[data-steps="6"] .uxc-m-multi-step-form__item--next-step {
  right: -16.66667%; }
.uxc-m-multi-step-form__item {
  float: left;
  visibility: hidden;
  position: relative; }

.uxc-m-multi-step-form__item--active-step {
  visibility: visible; }

.uxc-m-multi-step-form__item--active-step ~ .uxc-m-multi-step-form__item--active-step {
  visibility: hidden; }

.uxc-m-multi-step-form__item--previous-step,
.uxc-m-multi-step-form__item--next-step {
  visibility: visible; }

.uxc-m-multi-step-form__item--next-step {
  -webkit-transform: translate(100%);
      -ms-transform: translate(100%);
          transform: translate(100%); }

.uxc-m-multi-step-form__item--previous-step {
  -webkit-transform: translate(-100%);
      -ms-transform: translate(-100%);
          transform: translate(-100%); }
.uxc-m-multi-step-form__back {
  display: block;
  cursor: pointer; }
  .uxc-m-multi-step-form__back:before {
    content: '';
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMC41MzcgMjkuOTA5Ij48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMjkuNTI2IDEzLjk1N0gyLjIzMmMuMTI1LS4yODEuMjk5LS41NDIuNTI2LS43NjZMMTQuNCAxLjcwMmMuMzk1LS4zODkuMzk1LTEuMDIgMC0xLjQxcy0xLjAzNC0uMzg5LTEuNDI4IDBMMS4zMyAxMS43ODJhNC40NSA0LjQ1IDAgMCAwIDAgNi4zNDVsMTEuNjQyIDExLjQ5Yy4xOTcuMTk1LjQ1Ni4yOTIuNzE0LjI5Mi4yNTggMCAuNTE3LS4wOTcuNzE0LS4yOTJhLjk4Ny45ODcgMCAwIDAgMC0xLjQxTDIuNzU4IDE2LjcxN2EyLjQ5NSAyLjQ5NSAwIDAgMS0uNTI2LS43NjZoMjcuMjk0Yy41NTggMCAxLjAxLS40NDYgMS4wMS0uOTk3cy0uNDUyLS45OTctMS4wMS0uOTk3eiIvPjwvc3ZnPg==) no-repeat;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer; }
@font-face {
  font-family: Ie5fb8;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAOsAAsAAAAABdAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPAAAAFYpgTYjY21hcAAAAYAAAABKAAABcOEoo6pnbHlmAAABzAAAACgAAAAonfDB2GhlYWQAAAH0AAAALAAAADYMrqfVaGhlYQAAAiAAAAAWAAAAJABVAC1obXR4AAACOAAAAAgAAAAIACoAAGxvY2EAAAJAAAAABgAAAAYAFAAAbWF4cAAAAkgAAAAeAAAAIAENABhuYW1lAAACaAAAASkAAAIWm5e+CnBvc3QAAAOUAAAAFwAAACxqNwEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGQQZZzAwMrAwCDFIAskWaG0CAMTAxcDkGBlZsAKAtJcUxgcHjA8YGDQAnKZwSQDAyOIAACzVwUBeJztkLENgDAQA8/KQ4EYgSo1s1Cxv9gk+RjYIpbOkk9fPbAAJTmTAN2IkSut7AubfVB9E8M/tPZ37nCjlZndfXzLv3pBHRomCVEAAAABAAAAAAAqACoACwAANyM1IxUjFTMVMzUzKhIGEhIGEhgSEgYSEgB4nGNgZGBgAOLFex/Nj+e3+crAzaAFFGG4ttnUCZkGioLEORiYQBwAMSwJFnicY2BkYGDQYmBAIhkZUAETAAyoAIMAAAAAAAAAKgAAAAAAAAAUAAB4nGNgZGBgYGLgYQDRIBYDAxcQMjD8B/MZAAnDASYAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BiwA+YGJkYmRmYMg0YGAADDwCnAA==") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
@media only screen and (min-width: 1024px) {
  .uxc-m-product-comparison__row {
    display: table-row-group; } }

.uxc-m-product-comparison__row:hover .uxc-m-product-comparison__row__title, .uxc-m-product-comparison__row:hover .uxc-m-product-comparison__row__title:before {
  color: #006d73; }

.uxc-m-product-comparison__row__wrapper {
  cursor: pointer;
  padding-top: 15px; }
  @media only screen and (min-width: 1024px) {
    .uxc-m-product-comparison__row__wrapper {
      display: table-row; } }

.uxc-m-product-comparison__row__title {
  position: relative;
  padding-left: 21px;
  padding-top: 15px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s; }
  @media only screen and (min-width: 1024px) {
    .uxc-m-product-comparison__row__title {
      display: table-cell;
      padding-bottom: 10px;
      padding-right: 60px; } }
  @media only screen and (min-width: 1024px) and (max-width: 767px) {
    .uxc-m-product-comparison__row__title {
      margin-top: -6.42px;
      margin-bottom: -6.452px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 1024px) and (min-width: 768px) {
    .uxc-m-product-comparison__row__title {
      margin-top: -7.4px;
      margin-bottom: -7.44px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .uxc-m-product-comparison__row__title {
    margin-top: -6.42px;
    margin-bottom: -6.452px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .uxc-m-product-comparison__row__title {
    margin-top: -7.4px;
    margin-bottom: -7.44px;
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 20px;
    /* stylelint-enable property-blacklist */
    line-height: 30px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }
  .uxc-m-product-comparison__row__title::before {
    position: absolute;
    left: 0;
    top: 22px;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 70%/1 Ie5fb8;
    content: '\E000';
    -webkit-transition: color 0.3s, -webkit-transform 0.3s;
    transition: color 0.3s, -webkit-transform 0.3s;
    transition: color 0.3s, transform 0.3s;
    transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
    display: inline-block;
    color: #46a9b4; }

.uxc-state-m-product-comparison__row--expanded .uxc-m-product-comparison__row__title {
  color: #c31622; }
  .uxc-state-m-product-comparison__row--expanded .uxc-m-product-comparison__row__title:before {
    color: #c31622;
    -webkit-transform: rotateZ(45deg);
        -ms-transform: rotate(45deg);
            transform: rotateZ(45deg); }
  @media only screen and (max-width: 1023px) {
    .uxc-state-m-product-comparison__row--expanded .uxc-m-product-comparison__row__title {
      margin-bottom: 7px; } }

.uxc-state-m-product-comparison__row--expanded:hover .uxc-m-product-comparison__row__title, .uxc-state-m-product-comparison__row--expanded:hover .uxc-m-product-comparison__row__title:before {
  color: #c31622; }

.uxc-state-m-product-comparison__row--expanded .uxc-m-product-comparison__row__body {
  display: block; }

.uxc-m-product-comparison__row__body {
  display: none;
  padding-left: 21px; }
  @media only screen and (max-width: 767px) {
    .uxc-m-product-comparison__row__body {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-product-comparison__row__body {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 1024px) {
    .uxc-m-product-comparison__row__body {
      padding-right: 60px; } }
  @media only screen and (max-width: 1023px) {
    .uxc-m-product-comparison__row__body {
      padding-right: 21px;
      width: 100%; }
      .uxc-m-product-comparison__row__body:before {
        display: block;
        width: 100%;
        height: 1px;
        border-bottom: 1px dashed #141412;
        margin-top: 20px;
        margin-bottom: 20px;
        content: ''; } }

@media only screen and (min-width: 1024px) {
  .uxc-m-product-comparison__row__content__wrapper {
    display: table-row; } }

@media only screen and (min-width: 1024px) {
  .uxc-m-product-comparison__row__content {
    display: table-cell; } }

.uxc-m-product-comparison__row__footer {
  position: relative; }
  @media only screen and (min-width: 1024px) {
    .uxc-m-product-comparison__row__footer {
      display: table-cell; }
      .uxc-m-product-comparison__row__footer:after {
        content: ' ';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 10px;
        height: 1px;
        border-bottom: 1px dashed #141412; } }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-product-comparison__cell {
  vertical-align: top;
  display: none; }
  @media only screen and (min-width: 1024px) {
    .uxc-m-product-comparison__cell {
      padding-top: 15px;
      padding-bottom: 7px;
      display: table-cell; } }
  @media only screen and (max-width: 1023px) {
    .uxc-m-product-comparison__cell:last-child {
      margin-bottom: 0; }
    .uxc-state-m-product-comparison__row--expanded .uxc-m-product-comparison__cell {
      display: table;
      width: 100%; } }

@media only screen and (min-width: 1024px) {
  .uxc-m-product-comparison__cell-label {
    display: none; } }

@media only screen and (max-width: 1023px) {
  .uxc-m-product-comparison__cell-label {
    display: table-cell;
    padding-left: 21px; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .uxc-m-product-comparison__cell-label {
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (max-width: 1023px) and (min-width: 768px) {
    .uxc-m-product-comparison__cell-label {
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

.uxc-m-product-comparison__cell-body {
  text-align: center; }
  @media only screen and (min-width: 1024px) {
    .uxc-m-product-comparison__cell-body {
      position: relative;
      padding-bottom: 10px;
      margin-right: 10px; } }
  @media only screen and (min-width: 1024px) and (max-width: 767px) {
    .uxc-m-product-comparison__cell-body {
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 1024px) and (min-width: 768px) {
    .uxc-m-product-comparison__cell-body {
      margin-bottom: -8.2px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (max-width: 1023px) {
    .uxc-m-product-comparison__cell-body {
      display: table-cell;
      width: 50%; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .uxc-m-product-comparison__cell-body {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (max-width: 1023px) and (min-width: 768px) {
    .uxc-m-product-comparison__cell-body {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-m-product-comparison__head-row {
  display: table-row; }
  @media only screen and (max-width: 1023px) {
    .uxc-m-product-comparison__head-row {
      display: none; } }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-product-comparison__head-cell {
  display: table-cell;
  padding: 0 10px 20px 0;
  margin-right: 10px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .uxc-m-product-comparison__head-cell {
      margin-top: -6.42px;
      margin-bottom: -6.452px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-product-comparison__head-cell {
      margin-top: -7.4px;
      margin-bottom: -7.44px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

.uxc-m-product-comparison__head-cell--place-holder {
  width: 50%; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-m-product-comparison {
  width: 100%; }
  @media only screen and (min-width: 1024px) {
    .uxc-m-product-comparison {
      display: table;
      table-layout: fixed; } }
.uxc-m-sidebar-navigation {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  background: white;
  display: table; }
.uxc-m-sidebar-navigation__head {
  width: 100%; }

.uxc-m-sidebar-navigation__head__content {
  padding: 0 20px; }
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-sidebar-navigation__body {
  display: block;
  height: 100%; }

.uxc-m-sidebar-navigation__container {
  height: 100%;
  position: relative;
  border-top: 1px solid #e8e9ea; }

.uxc-m-sidebar-navigation__steps {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%; }
/**
 * Add a shadow to indicate that this container is scrollable
 *
 * The shadow is only visible if the user can scroll.
 */
.uxc-m-sidebar-navigation__pre-body {
  overflow-y: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-height: calc(100% - 100px);
  padding: 0 20px; }

.uxc-m-sidebar-navigation__pre-body-scroll {
  position: relative;
  background: #fff no-repeat;
  background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0));
  background-image: radial-gradient(farthest-side at 50% 0, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0)), radial-gradient(farthest-side at 50% 100%, rgba(189, 189, 189, 0.82), rgba(20, 20, 18, 0));
  background-position: 0 0, 0 100%;
  background-size: 100% 20px;
  z-index: 1; }
  .uxc-m-sidebar-navigation__pre-body-scroll:before {
    content: '';
    display: block;
    position: relative;
    z-index: -1;
    height: 40px;
    width: 100%;
    margin-bottom: -40px;
    background: -webkit-linear-gradient(#fff, #fff 30%, rgba(255, 255, 255, 0));
    background: linear-gradient(#fff, #fff 30%, rgba(255, 255, 255, 0)); }
  .uxc-m-sidebar-navigation__pre-body-scroll:after {
    content: '';
    position: relative;
    display: block;
    z-index: -1;
    height: 40px;
    width: 100%;
    margin-top: -40px;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 70%, #fff);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%, #fff); }
.uxc-m-sidebar-navigation__footer {
  display: block;
  width: 100%; }

.uxc-m-sidebar-navigation__footer-content {
  display: table;
  width: 100%; }
.uxc-state-m-sidebar-navigation__button--primary {
  color: white;
  background-color: #46a9b4; }
  [data-focus-source='key'] .uxc-state-m-sidebar-navigation__button--primary:focus, .uxc-state-m-sidebar-navigation__button--primary:hover {
    background-color: #006d73; }

.uxc-state-m-sidebar-navigation__button--secondary {
  color: white;
  background-color: #8861a9; }
  [data-focus-source='key'] .uxc-state-m-sidebar-navigation__button--secondary:focus, .uxc-state-m-sidebar-navigation__button--secondary:hover {
    background-color: #573a66; }

.uxc-state-m-sidebar-navigation__button--tertiary {
  color: white;
  background-color: #c31622; }
  [data-focus-source='key'] .uxc-state-m-sidebar-navigation__button--tertiary:focus, .uxc-state-m-sidebar-navigation__button--tertiary:hover {
    background-color: #a01314; }

/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-sidebar-navigation__button {
  position: relative;
  display: table-cell;
  width: 30%;
  text-align: center;
  vertical-align: middle; }

.uxc-m-sidebar-navigation__button__link {
  padding: 20px 5px;
  display: block;
  color: white;
  cursor: pointer;
  text-decoration: none; }
  @media only screen and (max-width: 767px) {
    .uxc-m-sidebar-navigation__button__link {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-sidebar-navigation__button__link {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
@font-face {
  font-family: J3b6b3;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPEAAsAAAAABeQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAOwAAAFYvsTmLY21hcAAAAYAAAABKAAABcOEoo6pnbHlmAAABzAAAADwAAAA8dpcHiWhlYWQAAAIIAAAAKQAAADYNhKuDaGhlYQAAAjQAAAAWAAAAJAMBAQNobXR4AAACTAAAAAgAAAAIAQAAAGxvY2EAAAJUAAAABgAAAAYAHgAAbWF4cAAAAlwAAAAeAAAAIAEOABtuYW1lAAACfAAAASkAAAIWm5e+CnBvc3QAAAOoAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRoYJzAwMrAwLCIMQ1IukPprwySDC0MDEwMrMwMWEFAmmsKg8MDhgdANUCgxwQRZgQRAK8eCJ8AeJztkLENgDAQA8/KQ4EYgSo1s1Cxv9gk+RjYIpbOkk9fPbAAJTmTAN2IkSut7AubfVB9E8M/tPZ37nCjlZndfXzLv3pBHRomCVEAAAACAAAAAAEAAgAADQAOAAATFx4BFAYPASc3NjQvATcX0AwNDQzQF9ENDdEXAgDJCh0gHQrJGcgNJQzIGXicY2BkYGAA4ruObvvj+W2+MnAzMYDAtc2mzsg0IwNYnANCAQAHSgfhAAAAeJxjYGRgYGIAAUYYCWEgABMAAMgACQAAAAAAAAEAAAAAAAAAAB4AAHicY2BkYGBgYuAHYgYwi4GBCwgZGP6D+QwACiUBKgAAeJxlkD1uwkAUhMdgSAJSghQpKbNVCiKZn5IDQE9Bl8KYtTGyvdZ6QaLLCXKEHCGniHKCHChj82hgLT9/M2/e7soABviFh3p5uG1qvVq4oTpxm/Qg7JOfhTvo40W4S38o3MMbpsJ9POKdO3j+HZ0BSuEW7vEh3Kb/KeyTv4Q7eMK3cJf+j3APK/wJ9/HqDdPIFLEp3FIn+yy0Z3n+rrStUlOoSTA+WwtdaBs6vVHro6oOydS5WMXW5GrOrs4yo0prdjpywda5cjYaxeIHkcmRIoJBgbipDktoJNgjQwh71b3UK6YtKvq1VpggwPgqtWCqaJIhlcaGyTWOrBUOPG1K1zGt+FrO5KS5zGreJCMr/u+6t6MT0Q+wbaZKzDDiE1/kg+YO+T89EV6oAAAAeJxjYGKAAFYG7ICJkYmRmYEp04CBAQADvgCsAA==") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-sidebar-navigation__item {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e8e9ea; }
  @media only screen and (max-width: 767px) {
    .uxc-m-sidebar-navigation__item {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-sidebar-navigation__item {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  .uxc-m-sidebar-navigation__item:after {
    content: '';
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 100%/1 J3b6b3;
    content: '\E000';
    color: #46a9b4;
    width: 10px;
    height: 20px;
    display: block;
    position: absolute;
    right: 20px;
    top: 30px; }

@media only screen and (max-width: 767px) {
  .uxc-m-sidebar-navigation__item--bold {
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-m-sidebar-navigation__item--bold {
    /* stylelint-disable property-blacklist */
    font-family: "FuturaBold";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    word-spacing: -0.05em;
    font-style: normal; } }

.uxc-state-m-sidebar-navigation__item--link:after {
  display: none; }

.uxc-m-sidebar-navigation__item__link {
  cursor: pointer;
  color: #141412;
  text-decoration: none;
  padding: 25px 30px 25px 20px;
  width: 100%;
  display: block; }

.uxc-state-m-sidebar-navigation__item__link--active {
  color: #c31622; }
@font-face {
  font-family: Fa36c7;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPwAAsAAAAABjwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPAAAAFYvsTm3Y21hcAAAAYAAAABPAAABfmBD5KlnbHlmAAAB0AAAAFoAAAB4djGEz2hlYWQAAAIsAAAAKQAAADYNhKuDaGhlYQAAAlgAAAAWAAAAJAMBAQRobXR4AAACcAAAAAwAAAAMAgAAAGxvY2EAAAJ8AAAACAAAAAgAHgA8bWF4cAAAAoQAAAAeAAAAIAEPABtuYW1lAAACpAAAASkAAAIWm5e+CnBvc3QAAAPQAAAAIAAAADEDeJw2eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRYzTiBgZWBgWERYxqQdIfSXxkkGVoYGJgYWJkZsIKANNcUBocHDA8YmUBcPSaIMCOIAAC9IgjLeJztkLENgDAMBM+JoUCMQUHBMFTMzybJ22YMXrqT/uXKwAJ0cQkHezAit1bLvbPl7hx547G/NoZMWN3TTVr5s6fPr7X4U1GfK2gTtugLLQB4nGNgYgACRgYgxcvAx8BgrK7HaGJmzyjOziYiz8j+8gIPLy/PBfGLvLwXxU9yySrIcp2UPMGrynNCEqgNTa+wuByjCBs/o7q5mYk+o7k4sl4mBlTdAPkfE+8AAHicY2BkYGAA4tVRE8ri+W2+MnAzMYDAtc2mzsg0IwNYnANCAQADKAfJAAAAeJxjYGRgYGIAAUYYCWEgADMAAMkACgAAAAAAAAEAAAABAAAAAAAAAAAeADx4nGNgZGBgYGbgZ2BiAAEQyQWEDAz/wXwGAApAASsAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAmZGJkZmRhYEp04Ap05CBAQAIaAFO") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-sidebar-navigation__back {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e8e9ea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer; }
  @media only screen and (max-width: 767px) {
    .uxc-m-sidebar-navigation__back {
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-sidebar-navigation__back {
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  .uxc-m-sidebar-navigation__back:after {
    content: '';
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 100%/1 Fa36c7;
    content: '\E000';
    color: #46a9b4;
    width: 10px;
    height: 20px;
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    pointer-events: none; }

.uxc-m-sidebar-navigation__back__link {
  display: block;
  min-width: 55px;
  border-right: 1px solid #e8e9ea;
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.uxc-m-sidebar-navigation__landing-page__label,
.uxc-m-sidebar-navigation__landing-page__link {
  padding: 25px 45px 30px 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #c31622;
  cursor: default; }

.uxc-m-sidebar-navigation__landing-page__link {
  cursor: pointer;
  text-decoration: none; }
  .uxc-m-sidebar-navigation__landing-page__link:after {
    content: '';
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 100%/1 Fa36c7;
    content: '\E001';
    color: #46a9b4;
    width: 10px;
    height: 20px;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    pointer-events: none; }
@font-face {
  font-family: wedc7e;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPAAAsAAAAABeQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAOwAAAFYvsTmLY21hcAAAAYAAAABKAAABcOEoo6pnbHlmAAABzAAAADwAAAA8/5p9RmhlYWQAAAIIAAAAKAAAADYNhKuDaGhlYQAAAjAAAAAWAAAAJAMBAQNobXR4AAACSAAAAAgAAAAIAQAAAGxvY2EAAAJQAAAABgAAAAYAHgAAbWF4cAAAAlgAAAAeAAAAIAEOABtuYW1lAAACeAAAASkAAAIWm5e+CnBvc3QAAAOkAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRoYJzAwMrAwLCIMQ1IukPprwySDC0MDEwMrMwMWEFAmmsKg8MDhgdANUCgxwQRZgQRAK8eCJ8AeJztkLENgDAQA8/KQ4EYgSo1s1Cxv9gk+RjYIpbOkk9fPbAAJTmTAN2IkSut7AubfVB9E8M/tPZ37nCjlZndfXzLv3pBHRomCVEAAAACAAAAAAEAAgAADQAOAAAzJy4BNDY/ARcHBhQfAQfp0AwNDQzQF9ENDdEXyQodIB0KyRnIDSUMyBkAAHicY2BkYGAA4tNW0a7x/DZfGbiZGEDg2mZTZ2SakQEszgGhAPHiB2N4nGNgZGBgYgABRhgJYSAAEwAAyAAJAAAAAAAAAQAAAAAAAAAAHgAAeJxjYGRgYGBi4AdiBjCLgYELCBkY/oP5DAAKJQEqAAB4nGWQPW7CQBSEx2BIAlKCFCkps1UKIpmfkgNAT0GXwpi1MbK91npBossJcoQcIaeIcoIcKGPzaGAtP38zb97uygAG+IWHenm4bWq9WrihOnGb9CDsk5+FO+jjRbhLfyjcwxumwn084p07eP4dnQFK4Rbu8SHcpv8p7JO/hDt4wrdwl/6PcA8r/An38eoN08gUsSncUif7LLRnef6utK1SU6hJMD5bC11oGzq9Ueujqg7J1LlYxdbkas6uzjKjSmt2OnLB1rlyNhrF4geRyZEigkGBuKkOS2gk2CNDCHvVvdQrpi0q+rVWmCDA+Cq1YKpokiGVxobJNY6sFQ48bUrXMa34Ws7kpLnMat4kIyv+77q3oxPRD7BtpkrMMOITX+SD5g75Pz0RXqgAAAB4nGNgYoAAVgbsgImRiZGZgSnTgIEBAAO+AKwA") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-m-sidebar-navigation__select {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e8e9ea;
  padding: 15px 10px 20px 20px; }
  .uxc-m-sidebar-navigation__select:after {
    content: '';
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 100%/1 wedc7e;
    content: '\E000';
    color: #46a9b4;
    width: 10px;
    height: 20px;
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    pointer-events: none; }

.uxc-m-service-navigation__select__input {
  background: transparent;
  width: 100%;
  border: none;
  border-radius: 0;
  /*
   * No outline for mouse clicks or custom focus handling
   */
  outline-offset: 3px;
  color: #c31622;
  cursor: pointer;
  padding: 10px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  [data-focus-source='script'] .uxc-m-service-navigation__select__input:focus,
  [data-focus-source='pointer'] .uxc-m-service-navigation__select__input:focus {
    outline: 0; }
  @media only screen and (max-width: 767px) {
    .uxc-m-service-navigation__select__input {
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-m-service-navigation__select__input {
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  .uxc-m-service-navigation__select__input::-ms-expand {
    display: none; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-sidebar-navigation__step {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow: auto;
  visibility: visible;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out; }

.uxc-state-m-sidebar-navigation__step--next {
  visibility: hidden;
  -webkit-transform: translate(100%);
      -ms-transform: translate(100%);
          transform: translate(100%);
  -webkit-transition: visibility 100ms 500ms, -webkit-transform 500ms ease-in-out;
  transition: visibility 100ms 500ms, -webkit-transform 500ms ease-in-out;
  transition: visibility 100ms 500ms, transform 500ms ease-in-out;
  transition: visibility 100ms 500ms, transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out; }

.uxc-state-m-sidebar-navigation__step--previous {
  visibility: hidden;
  -webkit-transform: translate(-100%);
      -ms-transform: translate(-100%);
          transform: translate(-100%);
  -webkit-transition: visibility 100ms 500ms, -webkit-transform 500ms ease-in-out;
  transition: visibility 100ms 500ms, -webkit-transform 500ms ease-in-out;
  transition: visibility 100ms 500ms, transform 500ms ease-in-out;
  transition: visibility 100ms 500ms, transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out; }
.uxc-m-sidebar-overlay {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  display: none;
  opacity: 0;
  z-index: 70; }

.uxc-m-sidebar-overlay__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .95;
  background: #e8e9ea;
  z-index: 4; }

.uxc-m-sidebar-overlay__content {
  position: absolute;
  width: 100%;
  max-width: 400px;
  top: 0;
  left: 0;
  height: 100%;
  background: white;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.uxc-state-m-sidebar-overlay--visible {
  display: block;
  opacity: 1; }
@font-face {
  font-family: zc0077;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAO4AAsAAAAABeQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPQAAAFYvsTtPY21hcAAAAYQAAABKAAABcOEoo6pnbHlmAAAB0AAAAC4AAAA8LjUXPWhlYWQAAAIAAAAAKAAAADYOhKuDaGhlYQAAAigAAAAVAAAAJAQBAgNobXR4AAACQAAAAAgAAAAIAgAAAGxvY2EAAAJIAAAABgAAAAYAHgAAbWF4cAAAAlAAAAAeAAAAIAEOABluYW1lAAACcAAAASkAAAIWm5e+CnBvc3QAAAOcAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRkYJzAwMrAwOjCmMbAwOAOpb8ySDK0MDAwMbAyM2AFAWmuKQwODxgeANUAgR4TRJgRRAAAUl4HZgAAAHic7ZCxDYAwEAPPykOBGIEqNbNQsb/YJPkY2CKWzpJPXz2wACU5kwDdiJErrewLm31QfRPDP7T2d+5wo5WZ3X18y796QR0aJglRAAB4nGNgYgACJiBk4GbgYWBgVGdXZxdnFzcXN1c3Z2KQevYMjhifIfOAugA99RGsAAB4nGNgZGBgAOIMVsXL8fw2Xxm4mRhA4NpmU2dkmokBLM4BoQDktwcgeJxjYGRgYGIAATjJyIAKmAAA9gALAAAAAAAAAAIAAAAAAAAAAB4AAHicY2BkYGBgYuAFYgYwi4GBCwgZGP6D+QwACfMBKAAAeJxlkD1uwkAUhMdgSAJSghQpKbNVCiKZn5IDQE9Bl8KYtTGyvdZ6QaLLCXKEHCGniHKCHChj82hgLT9/M2/e7soABviFh3p5uG1qvVq4oTpxm/Qg7JOfhTvo40W4S38o3MMbpsJ9POKdO3j+HZ0BSuEW7vEh3Kb/KeyTv4Q7eMK3cJf+j3APK/wJ9/HqDdPIFLEp3FIn+yy0Z3n+rrStUlOoSTA+WwtdaBs6vVHro6oOydS5WMXW5GrOrs4yo0prdjpywda5cjYaxeIHkcmRIoJBgbipDktoJNgjQwh71b3UK6YtKvq1VpggwPgqtWCqaJIhlcaGyTWOrBUOPG1K1zGt+FrO5KS5zGreJCMr/u+6t6MT0Q+wbaZKzDDiE1/kg+YO+T89EV6oAAAAeJxjYGKAAFYG7ICJkYmRmYEp04CBAQADvgCsAA==") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-state-m-sidebar-overlay__close--top-left {
  position: absolute;
  right: 20px;
  top: 25px; }

.uxc-state-m-sidebar-overlay__close--inline {
  position: static; }

.uxc-m-sidebar-overlay__close__link {
  position: relative;
  padding: 15px;
  cursor: pointer;
  text-decoration: none; }

.uxc-state-m-sidebar-overlay__close__link--icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: block; }
  .uxc-state-m-sidebar-overlay__close__link--icon:after {
    position: absolute;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 28px/1 zc0077;
    content: '\E000';
    color: #46a9b4;
    top: 0;
    left: 0; }
.uxc-m-sidebar-overlay__open {
  position: relative;
  cursor: pointer; }
.uxc-m-sidebar-overlay__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative; }

.uxc-m-sidebar-overlay__body-inner {
  position: absolute;
  height: 100%;
  max-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
/**
 * Add a shadow to indicate that this container is scrollable
 *
 * The shadow is only visible if the user can scroll.
 */
.uxc-m-social-sharing {
  width: 100%; }

.uxc-m-social-sharing--left {
  text-align: left; }

.uxc-m-social-sharing--center {
  text-align: center; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/**
 * This mixin allows to keep a certain aspect ratio
 * http://stackoverflow.com/questions/1495407/maintain-the-aspect-ratio-of-a-div-with-css
 *
 * Usage:
 * .youtube-video {
 *   width: 100%;
 *   @include fluid-height(16, 9); // 16:9 ratio
 * }
 *
 * Known issues:
 *
 * The height ratio uses always the width.
 * If you want to use max-width apply the max-width to the wrapper element.
 */
.uxc-m-text-media {
  position: relative;
  width: 100%; }
.uxc-o-agency-locator {
  position: relative;
  height: 600px; }

/* different possible sizes on page - sizes need to be discussed just randomly choosen for now */
.uxc-o-agency-locator--size-m {
  height: 400px; }

.uxc-o-agency-locator--size-l {
  height: 600px; }

.uxc-o-agency-locator--size-l {
  height: 800px; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-o-comment-app__spinner {
  display: none; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
.uxc-o-comment-app__error__icon {
  text-align: center; }

@media only screen and (max-width: 767px) {
  .uxc-o-comment-app__error__text {
    margin-top: -6.58px;
    margin-bottom: -7.06px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    font-style: normal; } }

@media only screen and (min-width: 768px) {
  .uxc-o-comment-app__error__text {
    margin-top: -7.6px;
    margin-bottom: -8.2px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 20px;
    /* stylelint-enable property-blacklist */
    line-height: 30px;
    font-weight: normal;
    font-style: normal; } }

.uxc-state-o-comment-app__error--hidden {
  display: none; }
.uxc-o-comment-app__retry-link {
  display: inline-block; }
.uxc-o-consultant-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.uxc-o-consultant-contact--height-m {
  min-height: 300px; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-o-conversation-filter {
  padding-left: 40px; }
  @media only screen and (max-width: 767px) {
    .uxc-o-conversation-filter {
      padding-left: 25px; } }
  .uxc-o-conversation-filter:after {
    display: table;
    width: 100%;
    clear: both; }
@font-face {
  font-family: Lb5ab8;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAPcAAsAAAAABfAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPwAAAFYvskBaY21hcAAAAYQAAABKAAABcOEoo6pnbHlmAAAB0AAAAEgAAABInub4aWhlYWQAAAIYAAAALQAAADYQKKuDaGhlYQAAAkgAAAAbAAAAJAWkBNtobXR4AAACZAAAAAgAAAAIBNgAAGxvY2EAAAJsAAAABgAAAAYAJAAAbWF4cAAAAnQAAAAeAAAAIAEOABxuYW1lAAAClAAAASkAAAIWm5e+CnBvc3QAAAPAAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGTKYZzAwMrAwCzMmMbAwOAOpb8ySDK0MDAwMbAyM2AFAWmuKQwODxgeANUAgR4TIwMjkAZhBgBbvAd3AHic7ZCxDYAwEAPPykOBGIEqNbNQsb/YJPkY2CKWzpJPXz2wACU5kwDdiJErrewLm31QfRPDP7T2d+5wo5WZ3X18y796QR0aJglRAAAAAgAA//8DowIBAA4ADwAAISImJwE3ARYyNwEXAQ4BIwHRHzkV/pxBAWIRNRIBZkH+nBU5HxsXAZQ6/mwUFAGUOv5sFxsAAAB4nGNgZGBgAOKqUH//eH6brwzcTAwgcG2zqTOC/v+feTETSCUHA1gaAA8PCc8AAAB4nGNgZGBgYgABlhsgknkxAyMDKmACACJvAYkAAAAAAATYAAAAAAAAACQAAHicY2BkYGBgYhAAYgYwi4GBCwgZGP6D+QwACj4BKwAAeJxlkD1uwkAUhMdgSAJSghQpKbNVCiKZn5IDQE9Bl8KYtTGyvdZ6QaLLCXKEHCGniHKCHChj82hgLT9/M2/e7soABviFh3p5uG1qvVq4oTpxm/Qg7JOfhTvo40W4S38o3MMbpsJ9POKdO3j+HZ0BSuEW7vEh3Kb/KeyTv4Q7eMK3cJf+j3APK/wJ9/HqDdPIFLEp3FIn+yy0Z3n+rrStUlOoSTA+WwtdaBs6vVHro6oOydS5WMXW5GrOrs4yo0prdjpywda5cjYaxeIHkcmRIoJBgbipDktoJNgjQwh71b3UK6YtKvq1VpggwPgqtWCqaJIhlcaGyTWOrBUOPG1K1zGt+FrO5KS5zGreJCMr/u+6t6MT0Q+wbaZKzDDiE1/kg+YO+T89EV6oAAAAeJxjYGKAAFYG7ICJkYmRmYEp04CBAQADvgCsAA==") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
.uxc-o-conversation-filter__step {
  display: inline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s; }
  @media only screen and (max-width: 767px) {
    .uxc-o-conversation-filter__step {
      margin-top: -8.62px;
      margin-bottom: -9.34px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-o-conversation-filter__step {
      margin-top: -8.62px;
      margin-bottom: -9.34px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  .uxc-o-conversation-filter__step.uxc-h-animation--enter-active {
    opacity: 1; }
  .uxc-o-conversation-filter__step.uxc-h-animation--enter-prepare {
    opacity: 0; }
  .uxc-o-conversation-filter__step.uxc-h-animation--leave-prepare {
    opacity: 1; }
  .uxc-o-conversation-filter__step.uxc-h-animation--leave-active {
    opacity: 0; }
  .uxc-o-conversation-filter__step.uxc-h-animation--leave-stagger {
    -webkit-transition-delay: .2s;
            transition-delay: .2s; }

.uxc-state-o-conversation-filter__step--selected .uxc-o-conversation-filter__step-select:after {
  opacity: 1; }

.uxc-o-conversation-filter__step-title {
  color: #141412;
  display: inline; }

.uxc-o-conversation-filter__step-select {
  position: relative;
  overflow: hidden;
  color: #46a9b4;
  display: inline; }

.uxc-o-conversation-filter__step-select-label {
  display: inline-block; }
  @media only screen and (max-width: 767px) {
    .uxc-o-conversation-filter__step-select-label {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-o-conversation-filter__step-select-label {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  .uxc-o-conversation-filter__step-select-label:after {
    content: '';
    padding-left: 10px;
    width: 18px;
    pointer-events: none;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font: normal normal normal 10px/1 Lb5ab8;
    content: '\E000';
    color: #46a9b4;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }

.uxc-o-conversation-filter__step-select-field {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: none;
  border-radius: 0;
  /*
   * No outline for mouse clicks or custom focus handling
   */
  outline-offset: 3px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  @media only screen and (max-width: 767px) {
    .uxc-o-conversation-filter__step-select-field {
      margin-top: -8.62px;
      margin-bottom: -9.34px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-o-conversation-filter__step-select-field {
      margin-top: -8.62px;
      margin-bottom: -9.34px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  [data-focus-source='script'] .uxc-o-conversation-filter__step-select-field:focus,
  [data-focus-source='pointer'] .uxc-o-conversation-filter__step-select-field:focus {
    outline: 0; }
  .uxc-o-conversation-filter__step-select-field::-ms-expand {
    display: none; }

.uxc-o-conversation-filter__step-select__body {
  display: inline-block;
  position: relative;
  background: transparent;
  width: auto;
  padding: 2px 5px 2px 0; }
@font-face {
  font-family: y62ce6;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAP4AAsAAAAABgwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFYvsjtQY21hcAAAAYQAAABKAAABcOEoo6pnbHlmAAAB0AAAAGQAAABkzW/htWhlYWQAAAI0AAAALQAAADYOhKuDaGhlYQAAAmQAAAAaAAAAJAQAAgNobXR4AAACgAAAAAgAAAAIAgD//2xvY2EAAAKIAAAABgAAAAYAMgAAbWF4cAAAApAAAAAeAAAAIAEOACluYW1lAAACsAAAASkAAAIWm5e+CnBvc3QAAAPcAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRkYJzAwMrAwOjCmMbAwOAOpb8ySDK0MDAwMbAyM2AFAWmuKQwODxgeANUAgR4T0CAgDcIMAFJyB2gAAHic7ZCxDYAwEAPPykOBGIEqNbNQsb/YJPkY2CKWzpJPXz2wACU5kwDdiJErrewLm31QfRPDP7T2d+5wo5WZ3X18y796QR0aJglRAAAAAv////8CAAIBABsAHAAAASE2PwE2NCYiDwEGFB8BFjI2NC8BJichMjY0JiMB7/43BAXHBQoOBccXF8cFDgoFxwUEAckHCgoHAREHBsUFDgoFxRZAFsUFCg4FxQYHCg4KAAAAeJxjYGRgYABizdTu5nh+m68M3EwMIHBts6kzjP4PBEwMTCCVHAxgaQAw5QtYAAAAeJxjYGRgYGIAASaG///BbEYGVMAEAC/HAgkAAAAAAAACAP//AAAAAAAyAAB4nGNgZGBgYGKQBWIGMIuBgQsIGRj+g/kMAAuDATgAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAiZGJkZmBKdOAgQEAA74ArAA=") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
@media only screen and (max-width: 1023px) {
  .uxc-o-conversation-stage__stage-large {
    display: none; } }

@media only screen and (min-width: 1024px) {
  .uxc-o-conversation-stage__stage-large {
    position: relative; }
  .uxc-o-conversation-stage__intro {
    position: absolute;
    color: white; }
  .uxc-o-conversation-stage__history-back {
    display: block;
    float: left;
    cursor: pointer;
    margin-right: 10px; }
    .uxc-o-conversation-stage__history-back:after {
      content: '';
      text-rendering: auto;
      -webkit-font-smoothing: auto;
      -moz-osx-font-smoothing: auto;
      font: normal normal normal 19px/1 y62ce6;
      content: '\E000'; }
  .uxc-o-conversation-stage__title {
    position: absolute;
    width: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .uxc-o-conversation-stage__title-text {
    display: inline-block;
    color: white; } }
  @media only screen and (min-width: 1024px) and (max-width: 767px) {
    .uxc-o-conversation-stage__title-text {
      margin-top: -10.4px;
      margin-bottom: -10.49px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 45px;
      /* stylelint-enable property-blacklist */
      line-height: 55px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 1024px) and (min-width: 768px) {
    .uxc-o-conversation-stage__title-text {
      margin-top: -12.2px;
      margin-bottom: -12.32px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 60px;
      /* stylelint-enable property-blacklist */
      line-height: 70px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

@media only screen and (min-width: 1024px) {
  .uxc-o-conversation-stage__options {
    clear: left;
    padding-left: 5px; }
  .uxc-o-conversation-stage__chooser {
    overflow: hidden;
    height: 435px;
    margin: -40px;
    padding: 40px; }
  .uxc-o-conversation-stage__item-text {
    cursor: pointer;
    display: block;
    text-decoration: none; } }
  @media only screen and (min-width: 1024px) and (max-width: 767px) {
    .uxc-o-conversation-stage__item-text {
      margin-top: -8.62px;
      margin-bottom: -9.34px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 1024px) and (min-width: 768px) {
    .uxc-o-conversation-stage__item-text {
      margin-top: -8.62px;
      margin-bottom: -9.34px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

@media only screen and (min-width: 1024px) {
    .uxc-o-conversation-stage__item-text:after {
      content: '';
      display: block;
      height: 30px; } }

@media only screen and (min-width: 1024px) and (max-width: 767px) {
  .uxc-o-conversation-stage__item-text--small {
    margin-top: -6.58px;
    margin-bottom: -7.06px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 16px;
    /* stylelint-enable property-blacklist */
    line-height: 25px;
    font-weight: normal;
    font-style: normal; } }

@media only screen and (min-width: 1024px) and (min-width: 768px) {
  .uxc-o-conversation-stage__item-text--small {
    margin-top: -7.6px;
    margin-bottom: -8.2px;
    /* stylelint-disable property-blacklist */
    font-family: "Futura";
    font-size: 20px;
    /* stylelint-enable property-blacklist */
    line-height: 30px;
    font-weight: normal;
    font-style: normal; } }

@media only screen and (min-width: 1024px) {
  .uxc-o-conversation-stage__item-text--small:before {
    content: '';
    display: block;
    height: 30px; }
  .uxc-o-conversation-stage__history {
    max-height: 140px;
    padding-bottom: 20px;
    cursor: pointer;
    overflow: hidden; }
    .uxc-o-conversation-stage__history:after {
      content: '';
      width: 100%;
      display: block;
      clear: both; }
  .uxc-o-conversation-stage__history--hidden {
    max-height: 0;
    padding-bottom: 0; }
  .uxc-o-conversation-stage__history-prefix {
    color: #141412;
    display: block;
    float: left; } }
  @media only screen and (min-width: 1024px) and (max-width: 767px) {
    .uxc-o-conversation-stage__history-prefix {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 1024px) and (min-width: 768px) {
    .uxc-o-conversation-stage__history-prefix {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }

@media only screen and (min-width: 1024px) {
  .uxc-o-conversation-stage__history-suffix {
    color: #46a9b4;
    display: block;
    float: left;
    text-decoration: none; } }
  @media only screen and (min-width: 1024px) and (max-width: 767px) {
    .uxc-o-conversation-stage__history-suffix {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 1024px) and (min-width: 768px) {
    .uxc-o-conversation-stage__history-suffix {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }

@media only screen and (min-width: 1024px) {
    .uxc-o-conversation-stage__history-suffix:after {
      content: normal; }
  .uxc-o-conversation-stage__stage-large .uxc-h-animation-stage-large--animate {
    -webkit-transform: translateZ(0);
            transform: translateZ(0); }
  .uxc-o-conversation-stage__stage-large .uxc-h-animation-stage-large--move {
    font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
  .uxc-o-conversation-stage__intro {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    max-width: 50%;
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s; } }
  @media only screen and (min-width: 1024px) and (max-width: 767px) {
    .uxc-o-conversation-stage__intro {
      margin-top: -10.4px;
      margin-bottom: -10.49px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 45px;
      /* stylelint-enable property-blacklist */
      line-height: 55px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (min-width: 1024px) and (min-width: 768px) {
    .uxc-o-conversation-stage__intro {
      margin-top: -12.2px;
      margin-bottom: -12.32px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 60px;
      /* stylelint-enable property-blacklist */
      line-height: 70px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

@media only screen and (min-width: 1024px) {
    .uxc-o-conversation-stage__intro--small {
      top: 40px;
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      max-width: 50%; } }
    @media only screen and (min-width: 1024px) and (max-width: 767px) {
      .uxc-o-conversation-stage__intro--small {
        margin-top: -8.38px;
        margin-bottom: -8.428px;
        /* stylelint-disable property-blacklist */
        font-family: "FuturaBold";
        font-size: 24px;
        /* stylelint-enable property-blacklist */
        line-height: 35px;
        font-weight: normal;
        word-spacing: -0.05em;
        font-style: normal; } }
    @media only screen and (min-width: 1024px) and (min-width: 768px) {
      .uxc-o-conversation-stage__intro--small {
        margin-top: -6.86px;
        margin-bottom: -6.916px;
        /* stylelint-disable property-blacklist */
        font-family: "FuturaBold";
        font-size: 28px;
        /* stylelint-enable property-blacklist */
        line-height: 35px;
        font-weight: normal;
        word-spacing: -0.05em;
        font-style: normal; } }

@media only screen and (min-width: 1024px) {
  .uxc-o-conversation-stage__content {
    opacity: 0;
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
    text-shadow: 0 0 1em transparent, 1px 1px 1px transparent; }
    .uxc-o-conversation-stage__content--visible {
      opacity: 1; }
  .uxc-o-conversation-stage__history-back {
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
    opacity: 1; }
    .uxc-o-conversation-stage__history-back:after {
      -webkit-transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) color;
      transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) color;
      color: #46a9b4; }
    .uxc-o-conversation-stage__history-back:hover:after {
      color: #006d73; }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-large--animate {
    -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all; }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-large--enter-active {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-large--enter {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s; }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-large--enter-prepare {
    overflow: hidden;
    -webkit-transform: translateX(-1000px);
        -ms-transform: translateX(-1000px);
            transform: translateX(-1000px); }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-large--leave {
    display: none; }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-large--animate {
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s; }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-large--enter-prepare {
    overflow: hidden;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: hidden; }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-large--enter {
    visibility: hidden; }
  .uxc-o-conversation-stage__list-item {
    -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all; }
    .uxc-o-conversation-stage__list-item.uxc-h-animation-stage-large--enter {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      -webkit-transition-delay: 0.5s;
              transition-delay: 0.5s; }
    .uxc-o-conversation-stage__list-item.uxc-h-animation-stage-large--enter-prepare {
      overflow: hidden;
      -webkit-transform: translateY(1000px);
          -ms-transform: translateY(1000px);
              transform: translateY(1000px); }
    .uxc-o-conversation-stage__list-item.uxc-h-animation-stage-large--enter-stagger {
      -webkit-transition-delay: 0.15s;
              transition-delay: 0.15s; }
    .uxc-o-conversation-stage__list-item.uxc-h-animation-stage-large--leave-stagger {
      -webkit-transition-delay: 0;
              transition-delay: 0; }
  .uxc-o-conversation-stage__list-item--remove {
    -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    opacity: 1; }
    .uxc-o-conversation-stage__list-item--remove.uxc-h-animation-stage-large--leave-active {
      opacity: 0; }
  .uxc-o-conversation-stage__item-text {
    color: #46a9b4;
    -webkit-transition: 0.2s linear color;
    transition: 0.2s linear color; }
    .uxc-o-conversation-stage__item-text.uxc-h-animation-stage-large--animate {
      -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      -webkit-transition-delay: 0.3s;
              transition-delay: 0.3s; }
    .uxc-o-conversation-stage__item-text.uxc-h-animation-stage-large--leave {
      visibility: hidden; }
    .uxc-o-conversation-stage__item-text.uxc-h-animation-stage-large--leave-active {
      visibility: hidden; }
    .uxc-o-conversation-stage__item-text:hover {
      color: #006d73; }
  .uxc-o-conversation-stage__history.uxc-h-animation-stage-large--enter {
    -webkit-transition: 1ms cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 1ms cubic-bezier(0.645, 0.045, 0.355, 1) all;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s; }
  .uxc-o-conversation-stage__history.uxc-h-animation-stage-large--leave {
    -webkit-transition: 1ms cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 1ms cubic-bezier(0.645, 0.045, 0.355, 1) all;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s; }
  .uxc-o-conversation-stage__history--hidden .uxc-o-conversation-stage__history-back {
    opacity: 0;
    -webkit-transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    -webkit-transition-delay: 0s;
            transition-delay: 0s; }
  .uxc-o-conversation-stage__history-prefix {
    margin: 0 0.4em 0 0; }
    .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-large--animate {
      -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all; }
    .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-large--enter-prepare {
      visibility: hidden;
      margin-top: 0;
      margin-bottom: 0; }
    .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-large--enter-active {
      visibility: hidden; }
  .uxc-o-conversation-stage__history-prefix--exit {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .uxc-o-conversation-stage__history-prefix--exit.uxc-h-animation-stage-large--animate {
      -webkit-transition: 0.4s all;
      transition: 0.4s all;
      visibility: visible; }
    .uxc-o-conversation-stage__history-prefix--exit.uxc-h-animation-stage-large--leave {
      visibility: visible; }
    .uxc-o-conversation-stage__history-prefix--exit.uxc-h-animation-stage-large--leave-active {
      -webkit-transform: translateY(-100px);
          -ms-transform: translateY(-100px);
              transform: translateY(-100px); }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-large--animate {
      -webkit-transition: 0.3s all;
      transition: 0.3s all;
      visibility: visible; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-large--enter {
      -webkit-transition-delay: 0.4s;
              transition-delay: 0.4s; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-large--enter-prepare {
      -webkit-transform: translateY(-500px);
          -ms-transform: translateY(-500px);
              transform: translateY(-500px); }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-large--enter-active {
      visibility: visible; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-large--leave {
      visibility: hidden; }
  .uxc-o-conversation-stage__history-suffix {
    margin: 0 0.4em 0 0; }
    .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-large--enter {
      overflow: hidden;
      -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      -webkit-transition-delay: 0.4s;
              transition-delay: 0.4s; }
      .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-large--enter-prepare {
        visibility: hidden;
        margin-top: 0;
        margin-bottom: 0; }
      .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-large--enter-active {
        visibility: hidden; }
  .uxc-o-conversation-stage__history-suffix--exit {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .uxc-o-conversation-stage__history-suffix--exit.uxc-h-animation-stage-large--animate {
      -webkit-transition: 0.4s all;
      transition: 0.4s all;
      visibility: visible; }
    .uxc-o-conversation-stage__history-suffix--exit.uxc-h-animation-stage-large--leave {
      visibility: visible; }
    .uxc-o-conversation-stage__history-suffix--exit.uxc-h-animation-stage-large--leave-active {
      -webkit-transform: translateY(-300px);
          -ms-transform: translateY(-300px);
              transform: translateY(-300px); }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-large--animate {
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      visibility: visible; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-large--enter {
      -webkit-transition-delay: 0.4s;
              transition-delay: 0.4s; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-large--enter-prepare {
      -webkit-transform: translateY(-500px);
          -ms-transform: translateY(-500px);
              transform: translateY(-500px); }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-large--enter-active {
      visibility: visible; } }
@font-face {
  font-family: E1b82f;
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAP4AAsAAAAABgwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFYvsjtQY21hcAAAAYQAAABKAAABcOEoo6pnbHlmAAAB0AAAAGQAAABkzW/htWhlYWQAAAI0AAAALQAAADYOhKuDaGhlYQAAAmQAAAAaAAAAJAQAAgNobXR4AAACgAAAAAgAAAAIAgD//2xvY2EAAAKIAAAABgAAAAYAMgAAbWF4cAAAApAAAAAeAAAAIAEOACluYW1lAAACsAAAASkAAAIWm5e+CnBvc3QAAAPcAAAAGwAAACxqPAEEeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGRkYJzAwMrAwOjCmMbAwOAOpb8ySDK0MDAwMbAyM2AFAWmuKQwODxgeANUAgR4T0CAgDcIMAFJyB2gAAHic7ZCxDYAwEAPPykOBGIEqNbNQsb/YJPkY2CKWzpJPXz2wACU5kwDdiJErrewLm31QfRPDP7T2d+5wo5WZ3X18y796QR0aJglRAAAAAv////8CAAIBABsAHAAAASE2PwE2NCYiDwEGFB8BFjI2NC8BJichMjY0JiMB7/43BAXHBQoOBccXF8cFDgoFxwUEAckHCgoHAREHBsUFDgoFxRZAFsUFCg4FxQYHCg4KAAAAeJxjYGRgYABizdTu5nh+m68M3EwMIHBts6kzjP4PBEwMTCCVHAxgaQAw5QtYAAAAeJxjYGRgYGIAASaG///BbEYGVMAEAC/HAgkAAAAAAAACAP//AAAAAAAyAAB4nGNgZGBgYGKQBWIGMIuBgQsIGRj+g/kMAAuDATgAAHicZZA9bsJAFITHYEgCUoIUKSmzVQoimZ+SA0BPQZfCmLUxsr3WekGiywlyhBwhp4hyghwoY/NoYC0/fzNv3u7KAAb4hYd6ebhtar1auKE6cZv0IOyTn4U76ONFuEt/KNzDG6bCfTzinTt4/h2dAUrhFu7xIdym/ynsk7+EO3jCt3CX/o9wDyv8Cffx6g3TyBSxKdxSJ/sstGd5/q60rVJTqEkwPlsLXWgbOr1R66OqDsnUuVjF1uRqzq7OMqNKa3Y6csHWuXI2GsXiB5HJkSKCQYG4qQ5LaCTYI0MIe9W91CumLSr6tVaYIMD4KrVgqmiSIZXGhsk1jqwVDjxtStcxrfhazuSkucxq3iQjK/7vurejE9EPsG2mSsww4hNf5IPmDvk/PRFeqAAAAHicY2BigABWBuyAiZGJkZmBKdOAgQEAA74ArAA=") format('woff');
  font-weight: normal;
  font-style: normal; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
@media only screen and (min-width: 1024px) {
  .uxc-o-conversation-stage__stage-small {
    display: none; } }

@media only screen and (max-width: 1023px) {
  .uxc-o-conversation-stage__stage-small {
    position: relative; }
  .uxc-o-conversation-stage__intro {
    display: block;
    color: #141412; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .uxc-o-conversation-stage__intro {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (max-width: 1023px) and (min-width: 768px) {
    .uxc-o-conversation-stage__intro {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 24px;
      /* stylelint-enable property-blacklist */
      line-height: 35px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

@media only screen and (max-width: 1023px) {
  .uxc-o-conversation-stage__history-back {
    display: block;
    float: left;
    cursor: pointer;
    margin-right: 10px; }
    .uxc-o-conversation-stage__history-back:after {
      content: '';
      text-rendering: auto;
      -webkit-font-smoothing: auto;
      -moz-osx-font-smoothing: auto;
      font: normal normal normal 19px/1 E1b82f;
      content: '\E000'; }
  .uxc-o-conversation-stage__title-text {
    display: inline-block;
    color: #141412; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .uxc-o-conversation-stage__title-text {
      margin-top: -10.4px;
      margin-bottom: -10.49px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 45px;
      /* stylelint-enable property-blacklist */
      line-height: 55px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }
  @media only screen and (max-width: 1023px) and (min-width: 768px) {
    .uxc-o-conversation-stage__title-text {
      margin-top: -12.2px;
      margin-bottom: -12.32px;
      /* stylelint-disable property-blacklist */
      font-family: "FuturaBold";
      font-size: 60px;
      /* stylelint-enable property-blacklist */
      line-height: 70px;
      font-weight: normal;
      word-spacing: -0.05em;
      font-style: normal; } }

@media only screen and (max-width: 1023px) {
  .uxc-o-conversation-stage__options {
    clear: left;
    padding-left: 5px; }
  .uxc-o-conversation-stage__chooser {
    overflow: hidden;
    padding-top: 2px; }
  .uxc-o-conversation-stage__item-text {
    cursor: pointer;
    display: block;
    text-decoration: none; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .uxc-o-conversation-stage__item-text {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (max-width: 1023px) and (min-width: 768px) {
    .uxc-o-conversation-stage__item-text {
      margin-top: -7.6px;
      margin-bottom: -8.2px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 20px;
      /* stylelint-enable property-blacklist */
      line-height: 30px;
      font-weight: normal;
      font-style: normal; } }

@media only screen and (max-width: 1023px) {
    .uxc-o-conversation-stage__item-text:after {
      content: '';
      display: block;
      height: 30px; }
  .uxc-o-conversation-stage__item-text--small:before {
    content: '';
    display: block;
    height: 30px; }
  .uxc-o-conversation-stage__history {
    max-height: 140px;
    cursor: pointer;
    overflow: hidden; }
    .uxc-o-conversation-stage__history:after {
      content: '';
      width: 100%;
      display: block;
      clear: both; }
  .uxc-o-conversation-stage__history--hidden {
    max-height: 0;
    padding-bottom: 0; }
  .uxc-o-conversation-stage__history-prefix {
    color: #141412;
    display: block;
    float: left; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .uxc-o-conversation-stage__history-prefix {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (max-width: 1023px) and (min-width: 768px) {
    .uxc-o-conversation-stage__history-prefix {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }

@media only screen and (max-width: 1023px) {
  .uxc-o-conversation-stage__history-suffix {
    color: #46a9b4;
    display: block;
    float: left;
    text-decoration: none; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .uxc-o-conversation-stage__history-suffix {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (max-width: 1023px) and (min-width: 768px) {
    .uxc-o-conversation-stage__history-suffix {
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }

@media only screen and (max-width: 1023px) {
    .uxc-o-conversation-stage__history-suffix:after {
      content: normal; }
  .uxc-o-conversation-stage__stage-small .uxc-h-animation-stage-small--animate {
    -webkit-transform: translateZ(0);
            transform: translateZ(0); }
  .uxc-o-conversation-stage__stage-small .uxc-h-animation-stage-small--move {
    font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
  .uxc-o-conversation-stage__intro {
    opacity: 0;
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s; }
    .uxc-o-conversation-stage__intro--visible {
      opacity: 1; }
    .uxc-o-conversation-stage__intro.uxc-h-animation-stage-small--animate {
      -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all; }
    .uxc-o-conversation-stage__intro.uxc-h-animation-stage-small--enter {
      overflow: hidden;
      -webkit-transition-delay: 0.5s;
              transition-delay: 0.5s; }
    .uxc-o-conversation-stage__intro.uxc-h-animation-stage-small--enter-prepare {
      max-height: 0; }
    .uxc-o-conversation-stage__intro.uxc-h-animation-stage-small--enter-active {
      max-height: 140px; }
    .uxc-o-conversation-stage__intro.uxc-h-animation-stage-small--leave {
      overflow: hidden;
      -webkit-transition-delay: 1s;
              transition-delay: 1s; }
    .uxc-o-conversation-stage__intro.uxc-h-animation-stage-small--leave-prepare {
      max-height: 140px; }
    .uxc-o-conversation-stage__intro.uxc-h-animation-stage-small--leave-active {
      max-height: 0; }
  .uxc-o-conversation-stage__content {
    opacity: 0;
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    -webkit-transition-delay: 1s;
            transition-delay: 1s; }
    .uxc-o-conversation-stage__content--visible {
      opacity: 1; }
  .uxc-o-conversation-stage__history-back {
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
    opacity: 1; }
    .uxc-o-conversation-stage__history-back:after {
      -webkit-transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) color;
      transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) color;
      color: #46a9b4; }
    .uxc-o-conversation-stage__history-back:hover:after {
      color: #006d73; }
  .uxc-o-conversation-stage__title {
    opacity: 0;
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
    outline: 15px transparent solid; }
    .uxc-o-conversation-stage__title--visible {
      opacity: 1; }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--animate {
    -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all; }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--enter-active {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--enter {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s; }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--enter-prepare {
    overflow: hidden;
    -webkit-transform: translateX(-1000px);
        -ms-transform: translateX(-1000px);
            transform: translateX(-1000px); }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--leave {
    display: none; }
  .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--leave-prepare {
    display: block; }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--animate {
    -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s; }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--enter-prepare {
    overflow: hidden;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    visibility: hidden; }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__title-text.uxc-h-animation-stage-small--enter {
    visibility: hidden; }
  .uxc-o-conversation-stage__list-item {
    -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all; }
    .uxc-o-conversation-stage__list-item.uxc-h-animation-stage-small--enter {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0);
      -webkit-transition-delay: 0.5s;
              transition-delay: 0.5s; }
    .uxc-o-conversation-stage__list-item.uxc-h-animation-stage-small--enter-prepare {
      overflow: hidden;
      -webkit-transform: translateY(1000px);
          -ms-transform: translateY(1000px);
              transform: translateY(1000px); }
    .uxc-o-conversation-stage__list-item.uxc-h-animation-stage-small--enter-stagger {
      -webkit-transition-delay: 0.15s;
              transition-delay: 0.15s; }
    .uxc-o-conversation-stage__list-item.uxc-h-animation-stage-small--leave-stagger {
      -webkit-transition-delay: 0;
              transition-delay: 0; }
  .uxc-o-conversation-stage__list-item--remove {
    -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
    opacity: 1; }
    .uxc-o-conversation-stage__list-item--remove.uxc-h-animation-stage-small--leave-active {
      opacity: 0; }
  .uxc-o-conversation-stage__item-text {
    color: #46a9b4;
    -webkit-transition: 0.2s linear color;
    transition: 0.2s linear color; }
    .uxc-o-conversation-stage__item-text.uxc-h-animation-stage-small--animate {
      -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      -webkit-transition-delay: 0.3s;
              transition-delay: 0.3s; }
    .uxc-o-conversation-stage__item-text.uxc-h-animation-stage-small--leave {
      visibility: hidden; }
    .uxc-o-conversation-stage__item-text.uxc-h-animation-stage-small--leave-active {
      visibility: hidden; }
    .uxc-o-conversation-stage__item-text:hover {
      color: #006d73; }
  .uxc-o-conversation-stage__history.uxc-h-animation-stage-small--enter {
    -webkit-transition: 1ms cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 1ms cubic-bezier(0.645, 0.045, 0.355, 1) all;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s; }
  .uxc-o-conversation-stage__history.uxc-h-animation-stage-small--leave {
    -webkit-transition: 1ms cubic-bezier(0.645, 0.045, 0.355, 1) all;
    transition: 1ms cubic-bezier(0.645, 0.045, 0.355, 1) all;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s; }
  .uxc-o-conversation-stage__history--hidden .uxc-o-conversation-stage__history-back {
    opacity: 0;
    -webkit-transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) opacity;
    -webkit-transition-delay: 0s;
            transition-delay: 0s; }
  .uxc-o-conversation-stage__history-prefix {
    margin: 0 0.4em 0 0; }
    .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-small--animate {
      -webkit-transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) all; }
    .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-small--enter-prepare {
      visibility: hidden;
      margin-top: 0;
      margin-bottom: 0; }
    .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-small--enter-active {
      visibility: hidden; }
  .uxc-o-conversation-stage__history-prefix--exit {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .uxc-o-conversation-stage__history-prefix--exit.uxc-h-animation-stage-small--animate {
      -webkit-transition: 0.4s all;
      transition: 0.4s all;
      visibility: visible; }
    .uxc-o-conversation-stage__history-prefix--exit.uxc-h-animation-stage-small--leave {
      visibility: visible; }
    .uxc-o-conversation-stage__history-prefix--exit.uxc-h-animation-stage-small--leave-active {
      -webkit-transform: translateY(-100px);
          -ms-transform: translateY(-100px);
              transform: translateY(-100px); }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-small--animate {
      -webkit-transition: 0.3s all;
      transition: 0.3s all;
      visibility: visible; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-small--enter {
      -webkit-transition-delay: 0.4s;
              transition-delay: 0.4s; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-small--enter-prepare {
      -webkit-transform: translateY(-500px);
          -ms-transform: translateY(-500px);
              transform: translateY(-500px); }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-small--enter-active {
      visibility: visible; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-prefix.uxc-h-animation-stage-small--leave {
      visibility: hidden; }
  .uxc-o-conversation-stage__history-suffix {
    margin: 0 0.4em 0 0; }
    .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-small--enter {
      overflow: hidden;
      -webkit-transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) all;
      -webkit-transition-delay: 0.4s;
              transition-delay: 0.4s; }
      .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-small--enter-prepare {
        visibility: hidden;
        margin-top: 0;
        margin-bottom: 0; }
      .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-small--enter-active {
        visibility: hidden; }
  .uxc-o-conversation-stage__history-suffix--exit {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .uxc-o-conversation-stage__history-suffix--exit.uxc-h-animation-stage-small--animate {
      -webkit-transition: 0.4s all;
      transition: 0.4s all;
      visibility: visible; }
    .uxc-o-conversation-stage__history-suffix--exit.uxc-h-animation-stage-small--leave {
      visibility: visible; }
    .uxc-o-conversation-stage__history-suffix--exit.uxc-h-animation-stage-small--leave-active {
      -webkit-transform: translateY(-300px);
          -ms-transform: translateY(-300px);
              transform: translateY(-300px); }
  .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-small--animate {
      -webkit-transition: 0.3s all;
      transition: 0.3s all;
      visibility: visible; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-small--enter {
      -webkit-transition-delay: 0.4s;
              transition-delay: 0.4s; }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-small--enter-prepare {
      -webkit-transform: translateY(-500px);
          -ms-transform: translateY(-500px);
              transform: translateY(-500px); }
    .uxc-o-conversation-stage--backwards .uxc-o-conversation-stage__history-suffix.uxc-h-animation-stage-small--enter-active {
      visibility: visible; } }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
.uxc-m-gallery__link {
  display: block;
  cursor: pointer; }
/**
 * Usage:
 * @include respond-to(tablet) {
 *   // styles
 * }
 * @include respond-to(mobile, tablet) {
 *   // styles
 * }
 * @include respond-to(tablet, desktop) {
 *   // styles
 * }
 */
/**
 * Responsive state helper
 *
 * Usage:
 * .demo {
 *   @include responsive-state(default, mobile, desktop) {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 */
/**
 * Responsive state helper for all media queries
 *
 * Usage:
 * .demo {
 *   @include responsive-state-all() {
 *     // styles
 *   }
 * }
 * Produces:
 * .demo { ... }
 * @media (...) { .demo@mobile { ... } }
 * @media (...) { .demo@tablet { ... } }
 * @media (...) { .demo@desktop { ... } }
 * @media (...) { .demo@hd { ... } }
 */
/* Hover anchor is used to trigger hover states for nested elements
 * Main usage inside classic teaser pattern
 * Usage:   @include hover-anchor() { property: value;}
 */
/* stylelint-disable length-zero-no-unit */
/**
 * Returns the font information for the given $breakpoint $size and style
 */
/*
  THIS FILE MUST CONTAIN ONLY MIXINS
*/
/* stylelint-disable */
/* stylelint-enable */
.uxc-o-gallery__detail-item {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

.uxc-o-gallery__detail-item-media {
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }

.uxc-o-gallery__detail-item-caption {
  padding: 30px 15px 0; }
  @media only screen and (max-width: 767px) {
    .uxc-o-gallery__detail-item-caption {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
  @media only screen and (min-width: 768px) {
    .uxc-o-gallery__detail-item-caption {
      margin-top: -6.58px;
      margin-bottom: -7.06px;
      /* stylelint-disable property-blacklist */
      font-family: "Futura";
      font-size: 16px;
      /* stylelint-enable property-blacklist */
      line-height: 25px;
      font-weight: normal;
      font-style: normal; } }
.uxc-o-search-overlay__dropdown {
  display: none; }

.uxc-o-search-overlay__scroll-anchor {
  height: 0;
  width: 0;
  display: block;
  visibility: hidden;
  overflow: hidden; }

.uxc-o-search-overlay__spinner {
  display: none; }
.uxc-o-search-overlay__error {
  display: none; }
