* {
    box-sizing: border-box;
}

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

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-size: 14px;
    line-height: 1.428571429;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

/*
// Horizontal rules

hr {
  margin-top:    $line-height-computed;
  margin-bottom: $line-height-computed;
  border: 0;
  border-top: 1px solid $hr-border;
}
*/
[role='button'] {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

p {
    margin: 0;
}

small {
    font-size: 85%;
}

/*
// Alignment
.text-left           { text-align: left; }
.text-right          { text-align: right; }
.text-center         { text-align: center; }
.text-justify        { text-align: justify; }
.text-nowrap         { white-space: nowrap; }

// Transformation
.text-lowercase      { text-transform: lowercase; }
.text-uppercase      { text-transform: uppercase; }
.text-capitalize     { text-transform: capitalize; }

mark,
.mark {
  background-color: $state-warning-bg;
  padding: .2em;
}


// Contextual colors
.text-muted {
  color: $text-muted;
}

@include text-emphasis-variant('.text-primary', $brand-primary);

@include text-emphasis-variant('.text-success', $state-success-text);

@include text-emphasis-variant('.text-info', $state-info-text);

@include text-emphasis-variant('.text-warning', $state-warning-text);

@include text-emphasis-variant('.text-danger', $state-danger-text);

// Contextual backgrounds
// For now we'll leave these alongside the text classes until v4 when we can
// safely shift things around (per SemVer rules).
.bg-primary {
  // Given the contrast here, this is the only class to have its color inverted
  // automatically.
  color: #fff;
}
@include bg-variant('.bg-primary', $brand-primary);

@include bg-variant('.bg-success', $state-success-bg);

@include bg-variant('.bg-info', $state-info-bg);

@include bg-variant('.bg-warning', $state-warning-bg);

@include bg-variant('.bg-danger', $state-danger-bg);


// Page header
// -------------------------

.page-header {
  padding-bottom: (($line-height-computed / 2) - 1);
  margin: ($line-height-computed * 2) 0 $line-height-computed;
  border-bottom: 1px solid $page-header-border-color;
}
    */
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol {
    margin-top: 0;
}
ol ol {
    margin-bottom: 0;
}

/*// [converter] extracted from `.list-unstyled` for libsass compatibility
@mixin list-unstyled {
  padding-left: 0;
  list-style: none;
}
// [converter] extracted as `@mixin list-unstyled` for libsass compatibility
.list-unstyled {
  @include list-unstyled;
}


// Inline turns list items into inline-block
.list-inline {
  @include list-unstyled;
  margin-left: -5px;

  > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
  }
}*/
dl {
    margin-top: 0;
    margin-bottom: 20px;
}

dt,
dd {
    line-height: 1.428571429;
}

dd {
    margin-left: 0;
}

/*.dl-horizontal {
  dd {
    @include clearfix; // Clear the floated `dt` if an empty `dd` is present
  }

  @media (min-width: $grid-float-breakpoint) {
    dt {
      float: left;
      width: ($dl-horizontal-offset - 20);
      clear: left;
      text-align: right;
      @include text-overflow;
    }
    dd {
      margin-left: $dl-horizontal-offset;
    }
  }
}*/
/*
// Misc
// -------------------------

// Abbreviations and acronyms
abbr[title],
// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted $abbr-border-color;
}
.initialism {
  font-size: 90%;
  @extend .text-uppercase;
}

// Blockquotes
blockquote {
  padding: ($line-height-computed / 2) $line-height-computed;
  margin: 0 0 $line-height-computed;
  font-size: $blockquote-font-size;
  border-left: 5px solid $blockquote-border-color;

  p,
  ul,
  ol {
    &:last-child {
      margin-bottom: 0;
    }
  }

  // Note: Deprecated small and .small as of v3.1.0
  // Context: https://github.com/twbs/bootstrap/issues/11660
  footer,
  small,
  .small {
    display: block;
    font-size: 80%; // back to default font-size
    line-height: $line-height-base;
    color: $blockquote-small-color;

    &:before {
      content: '\2014 \00A0'; // em dash, nbsp
    }
  }
}

// Opposite alignment of blockquote
//
// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid $blockquote-border-color;
  border-left: 0;
  text-align: right;

  // Account for citation
  footer,
  small,
  .small {
    &:before { content: ''; }
    &:after {
      content: '\00A0 \2014'; // nbsp, em dash
    }
  }
}

// Addresses
address {
  margin-bottom: $line-height-computed;
  font-style: normal;
  line-height: $line-height-base;
}*/
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 6px;
    font-weight: bold;
}

input[type='search'] {
    box-sizing: border-box;
}

input[type='radio'],
input[type='checkbox'] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type='file'] {
    display: block;
}

input[type='range'] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

/*// Focus for file, radio, and checkbox
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  @include tab-focus;
}*/
output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.428571429;
}

select,
textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'] {
    display: block;
    width: 100%;
    height: 36px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
}
@media (max-width: 767px) {
    select,
    textarea,
    input[type='text'],
    input[type='password'],
    input[type='datetime'],
    input[type='datetime-local'],
    input[type='date'],
    input[type='month'],
    input[type='time'],
    input[type='week'],
    input[type='number'],
    input[type='email'],
    input[type='url'],
    input[type='search'],
    input[type='tel'],
    input[type='color'] {
        font-size: 16px;
    }
}
select::-moz-placeholder,
textarea::-moz-placeholder,
input[type='text']::-moz-placeholder,
input[type='password']::-moz-placeholder,
input[type='datetime']::-moz-placeholder,
input[type='datetime-local']::-moz-placeholder,
input[type='date']::-moz-placeholder,
input[type='month']::-moz-placeholder,
input[type='time']::-moz-placeholder,
input[type='week']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='url']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='color']::-moz-placeholder {
    color: #999;
    opacity: 1;
}
select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type='text']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
input[type='datetime']:-ms-input-placeholder,
input[type='datetime-local']:-ms-input-placeholder,
input[type='date']:-ms-input-placeholder,
input[type='month']:-ms-input-placeholder,
input[type='time']:-ms-input-placeholder,
input[type='week']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='url']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='color']:-ms-input-placeholder {
    color: #999;
}
select[disabled],
select[readonly],
fieldset[disabled] select,
textarea[disabled],
textarea[readonly],
fieldset[disabled] textarea,
input[type='text'][disabled],
input[type='text'][readonly],
fieldset[disabled] input[type='text'],
input[type='password'][disabled],
input[type='password'][readonly],
fieldset[disabled] input[type='password'],
input[type='datetime'][disabled],
input[type='datetime'][readonly],
fieldset[disabled] input[type='datetime'],
input[type='datetime-local'][disabled],
input[type='datetime-local'][readonly],
fieldset[disabled] input[type='datetime-local'],
input[type='date'][disabled],
input[type='date'][readonly],
fieldset[disabled] input[type='date'],
input[type='month'][disabled],
input[type='month'][readonly],
fieldset[disabled] input[type='month'],
input[type='time'][disabled],
input[type='time'][readonly],
fieldset[disabled] input[type='time'],
input[type='week'][disabled],
input[type='week'][readonly],
fieldset[disabled] input[type='week'],
input[type='number'][disabled],
input[type='number'][readonly],
fieldset[disabled] input[type='number'],
input[type='email'][disabled],
input[type='email'][readonly],
fieldset[disabled] input[type='email'],
input[type='url'][disabled],
input[type='url'][readonly],
fieldset[disabled] input[type='url'],
input[type='search'][disabled],
input[type='search'][readonly],
fieldset[disabled] input[type='search'],
input[type='tel'][disabled],
input[type='tel'][readonly],
fieldset[disabled] input[type='tel'],
input[type='color'][disabled],
input[type='color'][readonly],
fieldset[disabled] input[type='color'] {
    opacity: 1;
}
select[disabled],
fieldset[disabled] select,
textarea[disabled],
fieldset[disabled] textarea,
input[type='text'][disabled],
fieldset[disabled] input[type='text'],
input[type='password'][disabled],
fieldset[disabled] input[type='password'],
input[type='datetime'][disabled],
fieldset[disabled] input[type='datetime'],
input[type='datetime-local'][disabled],
fieldset[disabled] input[type='datetime-local'],
input[type='date'][disabled],
fieldset[disabled] input[type='date'],
input[type='month'][disabled],
fieldset[disabled] input[type='month'],
input[type='time'][disabled],
fieldset[disabled] input[type='time'],
input[type='week'][disabled],
fieldset[disabled] input[type='week'],
input[type='number'][disabled],
fieldset[disabled] input[type='number'],
input[type='email'][disabled],
fieldset[disabled] input[type='email'],
input[type='url'][disabled],
fieldset[disabled] input[type='url'],
input[type='search'][disabled],
fieldset[disabled] input[type='search'],
input[type='tel'][disabled],
fieldset[disabled] input[type='tel'],
input[type='color'][disabled],
fieldset[disabled] input[type='color'] {
    cursor: not-allowed;
}

select {
    padding: 6px 4px;
}

textarea {
    height: auto;
}

input[type='search'] {
    -webkit-appearance: none;
}

input[type='radio'][disabled],
input[type='radio'].disabled,
fieldset[disabled] input[type='radio'],
input[type='checkbox'][disabled],
input[type='checkbox'].disabled,
fieldset[disabled] input[type='checkbox'] {
    cursor: not-allowed;
}

.form-group {
    margin-bottom: 16px;
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.radio label,
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.radio input[type='radio'],
.radio-inline input[type='radio'],
.checkbox input[type='checkbox'],
.checkbox-inline input[type='checkbox'] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    /*.table {
    background-color: $body-bg;
  }*/
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}
.table > tbody + tbody {
    border-top: 2px solid #ddd;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
    padding: 4px;
}

.table-bordered {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
    background-color: #f9f9f9;
}

table col[class*='col-'] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*='col-'],
table th[class*='col-'] {
    position: static;
    float: none;
    display: table-cell;
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}
@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
    .table-responsive > .table {
        margin-bottom: 0;
    }
    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }
    .table-responsive > .table-bordered {
        border: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
}

/* Responsive Images Overlay Framework */
.background-image-wrapper {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.background-image {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 100%;
}

.background-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .background-image {
        max-width: none;
    }
}
/* col=sm+ */
@media (min-width: 768px) and (max-width: 991px) {
    .background-image.bg-centered {
        margin-left: calc((100% - 992px) / 2);
    }
}
/* col=md+ */
@media (min-width: 992px) and (max-width: 1199px) {
    .background-image.bg-centered {
        margin-left: calc((100% - 1200px) / 2);
    }
}
/* col=lg+ */
@media (min-width: 1200px) {
    .background-image.bg-centered {
        margin-left: calc((100% - 1920px) / 2);
    }
}
@media (max-width: 479px) {
    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 12px;
        padding-right: 12px;
    }
    .container:before,
    .container:after {
        content: ' ';
        display: table;
    }
    .container:after {
        clear: both;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 16px;
        padding-right: 16px;
    }
    .container:before,
    .container:after {
        content: ' ';
        display: table;
    }
    .container:after {
        clear: both;
    }
}
@media (min-width: 768px) {
    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 10px;
        padding-right: 10px;
        width: 768px;
    }
    .container:before,
    .container:after {
        content: ' ';
        display: table;
    }
    .container:after {
        clear: both;
    }
}
@media (min-width: 992px) {
    .container {
        width: 984px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}
.container-fluid:before,
.container-fluid:after {
    content: ' ';
    display: table;
}
.container-fluid:after {
    clear: both;
}

@media (max-width: 479px) {
    .row {
        margin-left: -12px;
        margin-right: -12px;
    }
    .row:before,
    .row:after {
        content: ' ';
        display: table;
    }
    .row:after {
        clear: both;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .row {
        margin-left: -16px;
        margin-right: -16px;
    }
    .row:before,
    .row:after {
        content: ' ';
        display: table;
    }
    .row:after {
        clear: both;
    }
}
@media (min-width: 768px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .row:before,
    .row:after {
        content: ' ';
        display: table;
    }
    .row:after {
        clear: both;
    }
}
@media (max-width: 479px) {
    .col-sm-1,
    .col-md-1,
    .col-lg-1,
    .col-xs-2,
    .col-sm-2,
    .col-xxs-3,
    .col-sm-3,
    .col-md-3,
    .col-lg-3,
    .col-xs-4,
    .col-sm-4,
    .col-md-4,
    .col-xxs-5,
    .col-xs-5,
    .col-sm-5,
    .col-xxs-6,
    .col-xs-6,
    .col-sm-6,
    .col-md-6,
    .col-lg-6,
    .col-xxs-7,
    .col-xs-7,
    .col-sm-7,
    .col-lg-7,
    .col-xs-8,
    .col-sm-8,
    .col-md-8,
    .col-lg-8,
    .col-xxs-9,
    .col-xs-9,
    .col-sm-9,
    .col-md-9,
    .col-lg-9,
    .col-md-10,
    .col-xxs-12,
    .col-xs-12,
    .col-sm-12,
    .col-md-12,
    .col-lg-12 {
        position: relative;
        min-height: 1px;
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .col-sm-1,
    .col-md-1,
    .col-lg-1,
    .col-xs-2,
    .col-sm-2,
    .col-xxs-3,
    .col-sm-3,
    .col-md-3,
    .col-lg-3,
    .col-xs-4,
    .col-sm-4,
    .col-md-4,
    .col-xxs-5,
    .col-xs-5,
    .col-sm-5,
    .col-xxs-6,
    .col-xs-6,
    .col-sm-6,
    .col-md-6,
    .col-lg-6,
    .col-xxs-7,
    .col-xs-7,
    .col-sm-7,
    .col-lg-7,
    .col-xs-8,
    .col-sm-8,
    .col-md-8,
    .col-lg-8,
    .col-xxs-9,
    .col-xs-9,
    .col-sm-9,
    .col-md-9,
    .col-lg-9,
    .col-md-10,
    .col-xxs-12,
    .col-xs-12,
    .col-sm-12,
    .col-md-12,
    .col-lg-12 {
        position: relative;
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media (min-width: 768px) {
    .col-sm-1,
    .col-md-1,
    .col-lg-1,
    .col-xs-2,
    .col-sm-2,
    .col-xxs-3,
    .col-sm-3,
    .col-md-3,
    .col-lg-3,
    .col-xs-4,
    .col-sm-4,
    .col-md-4,
    .col-xxs-5,
    .col-xs-5,
    .col-sm-5,
    .col-xxs-6,
    .col-xs-6,
    .col-sm-6,
    .col-md-6,
    .col-lg-6,
    .col-xxs-7,
    .col-xs-7,
    .col-sm-7,
    .col-lg-7,
    .col-xs-8,
    .col-sm-8,
    .col-md-8,
    .col-lg-8,
    .col-xxs-9,
    .col-xs-9,
    .col-sm-9,
    .col-md-9,
    .col-lg-9,
    .col-md-10,
    .col-xxs-12,
    .col-xs-12,
    .col-sm-12,
    .col-md-12,
    .col-lg-12 {
        position: relative;
        min-height: 1px;
        padding-left: 10px;
        padding-right: 10px;
    }
}
.col-xxs-3,
.col-xxs-5,
.col-xxs-6,
.col-xxs-7,
.col-xxs-9,
.col-xxs-12 {
    float: left;
}

.col-xxs-3 {
    width: 25%;
}

.col-xxs-5 {
    width: 41.6666666667%;
}

.col-xxs-6 {
    width: 50%;
}

.col-xxs-7 {
    width: 58.3333333333%;
}

.col-xxs-9 {
    width: 75%;
}

.col-xxs-12 {
    width: 100%;
}

@media (min-width: 480px) {
    .col-xs-2,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-12 {
        float: left;
    }
    .col-xs-2 {
        width: 16.6666666667%;
    }
    .col-xs-4 {
        width: 33.3333333333%;
    }
    .col-xs-5 {
        width: 41.6666666667%;
    }
    .col-xs-6 {
        width: 50%;
    }
    .col-xs-7 {
        width: 58.3333333333%;
    }
    .col-xs-8 {
        width: 66.6666666667%;
    }
    .col-xs-9 {
        width: 75%;
    }
    .col-xs-12 {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-12 {
        float: left;
    }
    .col-sm-1 {
        width: 8.3333333333%;
    }
    .col-sm-2 {
        width: 16.6666666667%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.3333333333%;
    }
    .col-sm-5 {
        width: 41.6666666667%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.3333333333%;
    }
    .col-sm-8 {
        width: 66.6666666667%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-12 {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .col-md-1,
    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-12 {
        float: left;
    }
    .col-md-1 {
        width: 8.3333333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.3333333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-8 {
        width: 66.6666666667%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.3333333333%;
    }
    .col-md-12 {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-3,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-12 {
        float: left;
    }
    .col-lg-1 {
        width: 8.3333333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.3333333333%;
    }
    .col-lg-8 {
        width: 66.6666666667%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-12 {
        width: 100%;
    }
}
/*@-ms-viewport {
  width: device-width;
}*/
.visible-xxs {
    display: none !important;
}

.visible-xs {
    display: none !important;
}

.visible-sm {
    display: none !important;
}

.visible-md {
    display: none !important;
}

.visible-lg {
    display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 479px) {
    .visible-xxs {
        display: block !important;
    }
    table.visible-xxs {
        display: table !important;
    }
    tr.visible-xxs {
        display: table-row !important;
    }
    th.visible-xxs,
    td.visible-xxs {
        display: table-cell !important;
    }
}
@media (max-width: 479px) {
    .visible-xxs-block {
        display: block !important;
    }
}

@media (max-width: 479px) {
    .visible-xxs-inline {
        display: inline !important;
    }
}

@media (max-width: 479px) {
    .visible-xxs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    table.visible-xs {
        display: table !important;
    }
    tr.visible-xs {
        display: table-row !important;
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .visible-xs-block {
        display: block !important;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }
    table.visible-sm {
        display: table !important;
    }
    tr.visible-sm {
        display: table-row !important;
    }
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }
    table.visible-md {
        display: table !important;
    }
    tr.visible-md {
        display: table-row !important;
    }
    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
    table.visible-lg {
        display: table !important;
    }
    tr.visible-lg {
        display: table-row !important;
    }
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width: 479px) {
    .hidden-xxs {
        display: none !important;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}
.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }
    table.visible-print {
        display: table !important;
    }
    tr.visible-print {
        display: table-row !important;
    }
    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}
.visible-print-block {
    display: none !important;
}
@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}
@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}
@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}
.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.modal--fade .modal__dialog {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
}

.modal.modal--in .modal__dialog {
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal__dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal__content {
    position: relative;
    background-color: #ffffff;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
}

.modal__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.5);
}

.modal__backdrop--blur {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal__backdrop.modal--fade {
    opacity: 0;
}

.modal__backdrop.modal--in {
    opacity: 1;
}

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

.modal-owl-transform-off {
    transform: none !important;
}

@media (min-width: 768px) {
    .modal__dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal__dialog--sm {
        width: 300px;
    }
}
@media (min-width: 992px) {
    .modal__dialog--lg {
        width: 900px;
    }
}
@media (min-width: 992px) {
    .modal__dialog--xl {
        width: 1180px;
    }
}
/**
    Visually hides an element in the DOM while screen readers
    can still read its content.
    TODO: Update the name of this class to visually-hidden and
    and update all references.
*/
.sr-only,
.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/**
    Defines the styles for the anchors on top of the DOM that allow keyboard users to
    jump to main sections within the pages.
*/
.skip-nav a {
    left: -9000px;
    position: absolute;
    top: -9000px;
    z-index: 99;
}
.skip-nav a:focus,
.skip-nav a:active {
    left: 0.5em;
    top: 0.5em;
    background-color: #fff;
    color: #000;
    padding: 4px 10px;
}

.background-transparent {
    background: transparent;
}

.background-color-light {
    background-color: #fff;
}

.background-color-dark {
    background-color: #000;
}

.background-color-error {
    background-color: #c03b13;
}

.background-color-tags {
    background-color: #00a651;
}

.background-color-callout-warning {
    background-color: #fff5f2;
}

.background-color-callout-new {
    background-color: #fdfff2;
}

.background-color-gray-13 {
    background-color: #222;
}

.background-color-gray-27 {
    background-color: #444;
}

.background-color-gray-40 {
    background-color: #666;
}

.background-color-gray-53 {
    background-color: #888;
}

.background-color-gray-67 {
    background-color: #aaa;
}

.background-color-gray-80 {
    background-color: #ccc;
}

.background-color-gray-93 {
    background-color: #eee;
}

.background-color-gray-98 {
    background-color: #f9f9f9;
}

.accent-style {
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    padding: 4px 16px;
}
.accent-style:after {
    transform: skew(-11deg);
    transition: background 0.3s ease;
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.border-default {
    border: none;
}
.border-sm {
    border-style: solid;
    border-width: 1px;
}
.border-md {
    border-style: solid;
    border-width: 2px;
}
.border-lg {
    border-style: solid;
    border-width: 4px;
}
.border-xl {
    border-style: solid;
    border-width: 6px;
}
.border-top-default {
    border-top-width: 0;
}
.border-top-sm {
    border-top-width: 1px;
}
.border-top-md {
    border-top-width: 2px;
}
.border-top-lg {
    border-top-width: 4px;
}
.border-top-xl {
    border-top-width: 6px;
}
.border-right-default {
    border-right-width: 0;
}
.border-right-sm {
    border-right-width: 1px;
}
.border-right-md {
    border-right-width: 2px;
}
.border-right-lg {
    border-right-width: 4px;
}
.border-right-xl {
    border-right-width: 6px;
}
.border-bottom-default {
    border-bottom-width: 0;
}
.border-bottom-sm {
    border-bottom-width: 1px;
}
.border-bottom-md {
    border-bottom-width: 2px;
}
.border-bottom-lg {
    border-bottom-width: 4px;
}
.border-bottom-xl {
    border-bottom-width: 6px;
}
.border-left-default {
    border-left-width: 0;
}
.border-left-sm {
    border-left-width: 1px;
}
.border-left-md {
    border-left-width: 2px;
}
.border-left-lg {
    border-left-width: 4px;
}
.border-left-xl {
    border-left-width: 6px;
}
.border-gray-13 {
    border-color: #222;
}
.border-gray-27 {
    border-color: #444;
}
.border-gray-40 {
    border-color: #666;
}
.border-gray-53 {
    border-color: #888;
}
.border-gray-67 {
    border-color: #aaa;
}
.border-gray-80 {
    border-color: #ccc;
}
.border-gray-93 {
    border-color: #eee;
}
.border-gray-98 {
    border-color: #f9f9f9;
}
.border-light {
    border-color: #fff;
}
.border-dark {
    border-color: #000;
}
.border-dashed {
    background-size: 20px 2px;
    border: none !important;
}
.border-dashed.border-bottom-sm {
    height: 1px;
}
.border-dashed.border-bottom-md {
    height: 2px;
}
.border-dashed.border-bottom-lg {
    height: 4px;
}
.border-dashed.border-bottom-xl {
    height: 6px;
}
.border-dashed.border-gray-13 {
    background-image: linear-gradient(
        90deg,
        #222,
        #222 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-gray-27 {
    background-image: linear-gradient(
        90deg,
        #444,
        #444 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-gray-40 {
    background-image: linear-gradient(
        90deg,
        #666,
        #666 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-gray-53 {
    background-image: linear-gradient(
        90deg,
        #888,
        #888 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-gray-67 {
    background-image: linear-gradient(
        90deg,
        #aaa,
        #aaa 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-gray-80 {
    background-image: linear-gradient(
        90deg,
        #ccc,
        #ccc 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-gray-93 {
    background-image: linear-gradient(
        90deg,
        #eee,
        #eee 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-gray-98 {
    background-image: linear-gradient(
        90deg,
        #f9f9f9,
        #f9f9f9 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-light {
    background-image: linear-gradient(
        90deg,
        #fff,
        #fff 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-dark {
    background-image: linear-gradient(
        90deg,
        #000,
        #000 60%,
        transparent 60%,
        transparent 100%
    );
}

*[class*='border-top'] {
    border-top-style: solid;
}

*[class*='border-right'] {
    border-right-style: solid;
}

*[class*='border-bottom'] {
    border-bottom-style: solid;
}

*[class*='border-left'] {
    border-left-style: solid;
}

body {
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}
@media (min-width: 1200px) {
    body {
        font-size: 16px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    body {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    body {
        font-size: 12px;
    }
}

p {
    line-height: 1.5;
    font-weight: 400;
}
@media (min-width: 1200px) {
    p {
        font-size: 16px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    p {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    p {
        font-size: 12px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1;
}

ul li {
    line-height: 1.5;
    font-weight: 400;
}
@media (min-width: 1200px) {
    ul li {
        font-size: 16px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    ul li {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    ul li {
        font-size: 12px;
    }
}

.padding-default {
    padding: 0;
}
.padding-xxs {
    padding: 4px;
}
.padding-xs {
    padding: 10px;
}
@media (min-width: 1200px) {
    .padding-sm {
        padding: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-sm {
        padding: 16px;
    }
}
@media (max-width: 991px) {
    .padding-sm {
        padding: 10px;
    }
}
@media (min-width: 1200px) {
    .padding-md {
        padding: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-md {
        padding: 24px;
    }
}
@media (max-width: 991px) {
    .padding-md {
        padding: 16px;
    }
}
@media (min-width: 1200px) {
    .padding-lg {
        padding: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-lg {
        padding: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-lg {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .padding-lg {
        padding: 20px;
    }
}
@media (min-width: 1200px) {
    .padding-xl {
        padding: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-xl {
        padding: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-xl {
        padding: 40px;
    }
}
@media (max-width: 767px) {
    .padding-xl {
        padding: 28px;
    }
}
.padding-top-default {
    padding-top: 0;
}
.padding-top-xxs {
    padding-top: 4px;
}
.padding-top-xs {
    padding-top: 10px;
}
@media (min-width: 1200px) {
    .padding-top-sm {
        padding-top: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-top-sm {
        padding-top: 16px;
    }
}
@media (max-width: 991px) {
    .padding-top-sm {
        padding-top: 10px;
    }
}
@media (min-width: 1200px) {
    .padding-top-md {
        padding-top: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-top-md {
        padding-top: 24px;
    }
}
@media (max-width: 991px) {
    .padding-top-md {
        padding-top: 16px;
    }
}
@media (min-width: 1200px) {
    .padding-top-lg {
        padding-top: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-top-lg {
        padding-top: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-top-lg {
        padding-top: 30px;
    }
}
@media (max-width: 767px) {
    .padding-top-lg {
        padding-top: 20px;
    }
}
@media (min-width: 1200px) {
    .padding-top-xl {
        padding-top: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-top-xl {
        padding-top: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-top-xl {
        padding-top: 40px;
    }
}
@media (max-width: 767px) {
    .padding-top-xl {
        padding-top: 28px;
    }
}
.padding-right-default {
    padding-right: 0;
}
.padding-right-xxs {
    padding-right: 4px;
}
.padding-right-xs {
    padding-right: 10px;
}
@media (min-width: 1200px) {
    .padding-right-sm {
        padding-right: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-right-sm {
        padding-right: 16px;
    }
}
@media (max-width: 991px) {
    .padding-right-sm {
        padding-right: 10px;
    }
}
@media (min-width: 1200px) {
    .padding-right-md {
        padding-right: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-right-md {
        padding-right: 24px;
    }
}
@media (max-width: 991px) {
    .padding-right-md {
        padding-right: 16px;
    }
}
@media (min-width: 1200px) {
    .padding-right-lg {
        padding-right: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-right-lg {
        padding-right: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-right-lg {
        padding-right: 30px;
    }
}
@media (max-width: 767px) {
    .padding-right-lg {
        padding-right: 20px;
    }
}
@media (min-width: 1200px) {
    .padding-right-xl {
        padding-right: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-right-xl {
        padding-right: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-right-xl {
        padding-right: 40px;
    }
}
@media (max-width: 767px) {
    .padding-right-xl {
        padding-right: 28px;
    }
}
.padding-bottom-default {
    padding-bottom: 0;
}
.padding-bottom-xxs {
    padding-bottom: 4px;
}
.padding-bottom-xs {
    padding-bottom: 10px;
}
@media (min-width: 1200px) {
    .padding-bottom-sm {
        padding-bottom: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-bottom-sm {
        padding-bottom: 16px;
    }
}
@media (max-width: 991px) {
    .padding-bottom-sm {
        padding-bottom: 10px;
    }
}
@media (min-width: 1200px) {
    .padding-bottom-md {
        padding-bottom: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-bottom-md {
        padding-bottom: 24px;
    }
}
@media (max-width: 991px) {
    .padding-bottom-md {
        padding-bottom: 16px;
    }
}
@media (min-width: 1200px) {
    .padding-bottom-lg {
        padding-bottom: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-bottom-lg {
        padding-bottom: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-bottom-lg {
        padding-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .padding-bottom-lg {
        padding-bottom: 20px;
    }
}
@media (min-width: 1200px) {
    .padding-bottom-xl {
        padding-bottom: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-bottom-xl {
        padding-bottom: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-bottom-xl {
        padding-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .padding-bottom-xl {
        padding-bottom: 28px;
    }
}
.padding-left-default {
    padding-left: 0;
}
.padding-left-xxs {
    padding-left: 4px;
}
.padding-left-xs {
    padding-left: 10px;
}
@media (min-width: 1200px) {
    .padding-left-sm {
        padding-left: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-left-sm {
        padding-left: 16px;
    }
}
@media (max-width: 991px) {
    .padding-left-sm {
        padding-left: 10px;
    }
}
@media (min-width: 1200px) {
    .padding-left-md {
        padding-left: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-left-md {
        padding-left: 24px;
    }
}
@media (max-width: 991px) {
    .padding-left-md {
        padding-left: 16px;
    }
}
@media (min-width: 1200px) {
    .padding-left-lg {
        padding-left: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-left-lg {
        padding-left: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-left-lg {
        padding-left: 30px;
    }
}
@media (max-width: 767px) {
    .padding-left-lg {
        padding-left: 20px;
    }
}
@media (min-width: 1200px) {
    .padding-left-xl {
        padding-left: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .padding-left-xl {
        padding-left: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .padding-left-xl {
        padding-left: 40px;
    }
}
@media (max-width: 767px) {
    .padding-left-xl {
        padding-left: 28px;
    }
}

.text-align-left {
    text-align: left;
}
.text-align-right {
    text-align: right;
}
.text-align-center {
    text-align: center;
}

.vertical-align-middle {
    vertical-align: middle;
}
.vertical-align-super {
    vertical-align: super;
}
.vertical-align-bottom {
    vertical-align: bottom;
}
.vertical-align-text-top {
    vertical-align: text-top;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.margin-default {
    margin: 0;
}
.margin-auto {
    margin-left: auto;
    margin-right: auto;
}
.margin-xxs {
    margin: 4px;
}
.margin-xs {
    margin: 10px;
}
@media (min-width: 1200px) {
    .margin-sm {
        margin: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-sm {
        margin: 16px;
    }
}
@media (max-width: 991px) {
    .margin-sm {
        margin: 10px;
    }
}
@media (min-width: 1200px) {
    .margin-md {
        margin: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-md {
        margin: 24px;
    }
}
@media (max-width: 991px) {
    .margin-md {
        margin: 16px;
    }
}
@media (min-width: 1200px) {
    .margin-lg {
        margin: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-lg {
        margin: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-lg {
        margin: 30px;
    }
}
@media (max-width: 767px) {
    .margin-lg {
        margin: 20px;
    }
}
@media (min-width: 1200px) {
    .margin-xl {
        margin: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-xl {
        margin: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-xl {
        margin: 40px;
    }
}
@media (max-width: 767px) {
    .margin-xl {
        margin: 28px;
    }
}
.margin-top-auto {
    margin-top: auto;
}
.margin-top-default {
    margin-top: 0;
}
.margin-top-xxs {
    margin-top: 4px;
}
.margin-top-xs {
    margin-top: 10px;
}
@media (min-width: 1200px) {
    .margin-top-sm {
        margin-top: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-top-sm {
        margin-top: 16px;
    }
}
@media (max-width: 991px) {
    .margin-top-sm {
        margin-top: 10px;
    }
}
@media (min-width: 1200px) {
    .margin-top-md {
        margin-top: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-top-md {
        margin-top: 24px;
    }
}
@media (max-width: 991px) {
    .margin-top-md {
        margin-top: 16px;
    }
}
@media (min-width: 1200px) {
    .margin-top-lg {
        margin-top: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-top-lg {
        margin-top: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-top-lg {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .margin-top-lg {
        margin-top: 20px;
    }
}
@media (min-width: 1200px) {
    .margin-top-xl {
        margin-top: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-top-xl {
        margin-top: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-top-xl {
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .margin-top-xl {
        margin-top: 28px;
    }
}
.margin-right-default {
    margin-right: 0;
}
.margin-right-xxs {
    margin-right: 4px;
}
.margin-right-xs {
    margin-right: 10px;
}
@media (min-width: 1200px) {
    .margin-right-sm {
        margin-right: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-right-sm {
        margin-right: 16px;
    }
}
@media (max-width: 991px) {
    .margin-right-sm {
        margin-right: 10px;
    }
}
@media (min-width: 1200px) {
    .margin-right-md {
        margin-right: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-right-md {
        margin-right: 24px;
    }
}
@media (max-width: 991px) {
    .margin-right-md {
        margin-right: 16px;
    }
}
@media (min-width: 1200px) {
    .margin-right-lg {
        margin-right: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-right-lg {
        margin-right: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-right-lg {
        margin-right: 30px;
    }
}
@media (max-width: 767px) {
    .margin-right-lg {
        margin-right: 20px;
    }
}
@media (min-width: 1200px) {
    .margin-right-xl {
        margin-right: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-right-xl {
        margin-right: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-right-xl {
        margin-right: 40px;
    }
}
@media (max-width: 767px) {
    .margin-right-xl {
        margin-right: 28px;
    }
}
.margin-bottom-default {
    margin-bottom: 0;
}
.margin-bottom-xxs {
    margin-bottom: 4px;
}
.margin-bottom-xs {
    margin-bottom: 10px;
}
@media (min-width: 1200px) {
    .margin-bottom-sm {
        margin-bottom: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-bottom-sm {
        margin-bottom: 16px;
    }
}
@media (max-width: 991px) {
    .margin-bottom-sm {
        margin-bottom: 10px;
    }
}
@media (min-width: 1200px) {
    .margin-bottom-md {
        margin-bottom: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-bottom-md {
        margin-bottom: 24px;
    }
}
@media (max-width: 991px) {
    .margin-bottom-md {
        margin-bottom: 16px;
    }
}
@media (min-width: 1200px) {
    .margin-bottom-lg {
        margin-bottom: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-bottom-lg {
        margin-bottom: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-bottom-lg {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .margin-bottom-lg {
        margin-bottom: 20px;
    }
}
@media (min-width: 1200px) {
    .margin-bottom-xl {
        margin-bottom: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-bottom-xl {
        margin-bottom: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-bottom-xl {
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .margin-bottom-xl {
        margin-bottom: 28px;
    }
}
.margin-left-default {
    margin-left: 0;
}
.margin-left-xxs {
    margin-left: 4px;
}
.margin-left-xs {
    margin-left: 10px;
}
@media (min-width: 1200px) {
    .margin-left-sm {
        margin-left: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-left-sm {
        margin-left: 16px;
    }
}
@media (max-width: 991px) {
    .margin-left-sm {
        margin-left: 10px;
    }
}
@media (min-width: 1200px) {
    .margin-left-md {
        margin-left: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-left-md {
        margin-left: 24px;
    }
}
@media (max-width: 991px) {
    .margin-left-md {
        margin-left: 16px;
    }
}
@media (min-width: 1200px) {
    .margin-left-lg {
        margin-left: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-left-lg {
        margin-left: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-left-lg {
        margin-left: 30px;
    }
}
@media (max-width: 767px) {
    .margin-left-lg {
        margin-left: 20px;
    }
}
@media (min-width: 1200px) {
    .margin-left-xl {
        margin-left: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .margin-left-xl {
        margin-left: 80px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .margin-left-xl {
        margin-left: 40px;
    }
}
@media (max-width: 767px) {
    .margin-left-xl {
        margin-left: 28px;
    }
}

@media (max-width: 767px) {
    .mobile-margin-top-default {
        margin-top: 0;
    }
    .mobile-margin-top-xxs {
        margin-top: 4px;
    }
    .mobile-margin-top-xs {
        margin-top: 10px;
    }
    .mobile-margin-top-sm {
        margin-top: 20px;
    }
    .mobile-margin-top-md {
        margin-top: 30px;
    }
    .mobile-margin-top-lg {
        margin-top: 50px;
    }
    .mobile-margin-top-xl {
        margin-top: 100px;
    }
    .mobile-margin-top-none {
        margin-top: 0;
    }
    .mobile-margin-bottom-xxs {
        margin-bottom: 4px;
    }
    .mobile-margin-bottom-xs {
        margin-bottom: 10px;
    }
    .mobile-margin-bottom-sm {
        margin-bottom: 20px;
    }
    .mobile-margin-bottom-md {
        margin-bottom: 30px;
    }
    .mobile-margin-bottom-lg {
        margin-bottom: 50px;
    }
    .mobile-margin-bottom-xl {
        margin-bottom: 100px;
    }
    .mobile-margin-bottom-none {
        margin-bottom: 0;
    }
    .mobile-margin-auto {
        margin-left: auto;
        margin-right: auto;
    }
    .mobile-padding-xxs {
        padding: 4px;
    }
    .mobile-padding-xs {
        padding: 10px;
    }
    .mobile-padding-sm {
        padding: 10px;
    }
    .mobile-padding-md {
        padding: 16px;
    }
    .mobile-padding-lg {
        padding: 20px;
    }
    .mobile-padding-xl {
        padding: 28px;
    }
    .mobile-padding-none {
        padding: 0;
    }
    .mobile-padding-left-xxs {
        padding-left: 4px;
    }
    .mobile-padding-left-xs {
        padding-left: 10px;
    }
    .mobile-padding-left-sm {
        padding-left: 20px;
    }
    .mobile-padding-left-md {
        padding-left: 30px;
    }
    .mobile-padding-left-lg {
        padding-left: 50px;
    }
    .mobile-padding-left-xl {
        padding-left: 100px;
    }
    .mobile-padding-left-none {
        padding-left: 0;
    }
    .mobile-text-align-left {
        text-align: left;
    }
    .mobile-text-align-right {
        text-align: right;
    }
    .mobile-text-align-center {
        text-align: center;
    }
    .mobile-pull-left {
        float: left;
    }
    .mobile-pull-right {
        float: right;
    }
    .mobile-sr-only {
        display: none;
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
}
.overflow-hidden {
    overflow: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-unset {
    cursor: unset;
}

.height-100 {
    height: 100%;
}

.text-decoration-none {
    text-decoration: none;
}
.text-decoration-underline {
    text-decoration: underline;
}

.text-transform-none {
    text-transform: none;
}
.text-transform-lowercase {
    text-transform: lowercase;
}
.text-transform-capitalize {
    text-transform: capitalize;
}
.text-transform-uppercase {
    text-transform: uppercase;
}

.list-style-type-disc ul {
    list-style: disc;
    padding-left: 20px;
}
.list-style-type-none {
    list-style-type: none;
}

.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}

sup.global-disclaimer {
    font-size: 0.45em !important;
    line-height: 0 !important;
    top: -0.9em !important;
    font-weight: 900;
}

.font-family-default {
    font-family: Arial, Helvetica, sans-serif;
}

.font-size-14,
.font-size-14 p {
    font-size: 14px;
}

@media (min-width: 992px) {
    .font-size-xs,
    .font-size-xs p {
        font-size: 12px;
    }
}
@media (max-width: 991px) {
    .font-size-xs,
    .font-size-xs p {
        font-size: 11px;
    }
}

@media (min-width: 1200px) {
    .font-size-sm,
    .font-size-sm p {
        font-size: 16px;
    }
}
@media (max-width: 1199px) {
    .font-size-sm,
    .font-size-sm p {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .font-size-md,
    .font-size-md p {
        font-size: 18px;
    }
}
@media (max-width: 1199px) {
    .font-size-md,
    .font-size-md p {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .font-size-lg,
    .font-size-lg p {
        font-size: 24px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-size-lg,
    .font-size-lg p {
        font-size: 22px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-size-lg,
    .font-size-lg p {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .font-size-lg,
    .font-size-lg p {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .font-size-xl,
    .font-size-xl p {
        font-size: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-size-xl,
    .font-size-xl p {
        font-size: 28px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-size-xl,
    .font-size-xl p {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .font-size-xl,
    .font-size-xl p {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .font-size-xxl,
    .font-size-xxl p {
        font-size: 36px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-size-xxl,
    .font-size-xxl p {
        font-size: 34px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-size-xxl,
    .font-size-xxl p {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .font-size-xxl,
    .font-size-xxl p {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .font-size-xxxl,
    .font-size-xxxl p {
        font-size: 48px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-size-xxxl,
    .font-size-xxxl p {
        font-size: 42px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-size-xxxl,
    .font-size-xxxl p {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .font-size-xxxl,
    .font-size-xxxl p {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {
    .font-size-4xl,
    .font-size-4xl p {
        font-size: 58px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-size-4xl,
    .font-size-4xl p {
        font-size: 54px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-size-4xl,
    .font-size-4xl p {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .font-size-4xl,
    .font-size-4xl p {
        font-size: 48px;
    }
}

.font-weight-light {
    font-weight: 300;
}

.font-weight-default {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-semi-bold {
    font-weight: 600;
}

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

.font-weight-extra-bold {
    font-weight: 800;
}

.font-style-default {
    font-style: normal;
}
.font-style-italic {
    font-style: italic;
}

.font-color-light {
    color: #fff;
}

.font-color-dark {
    color: #000;
}

.font-color-error {
    color: #c03b13;
}

.font-color-tags {
    color: #00a651;
}

.font-color-highlight {
    color: #307abb;
}

.font-color-success {
    color: #63a103;
}

.font-color-gray-13 {
    color: #222;
}

.font-color-gray-27 {
    color: #444;
}

.font-color-gray-40 {
    color: #666;
}

.font-color-gray-53 {
    color: #888;
}

.font-color-gray-67 {
    color: #aaa;
}

.font-color-gray-80 {
    color: #ccc;
}

.font-color-gray-93 {
    color: #eee;
}

.font-color-gray-98 {
    color: #f9f9f9;
}

.font-color-light-hover:hover {
    color: #fff;
}

.font-color-gray-13-hover:hover {
    color: #222;
}

.font-color-gray-27-hover:hover {
    color: #444;
}

.font-color-gray-40-hover:hover {
    color: #666;
}

.font-color-gray-53-hover:hover {
    color: #888;
}

.font-color-gray-67-hover:hover {
    color: #aaa;
}

.font-color-gray-80-hover:hover {
    color: #ccc;
}

.font-color-gray-93-hover:hover {
    color: #eee;
}

.font-color-gray-98-hover:hover {
    color: #f9f9f9;
}

.font-color-dark-hover:hover {
    color: #000;
}

.font-color-error-hover:hover {
    color: #c03b13;
}

.font-color-tags-hover:hover {
    color: #00a651;
}

@media (max-width: 767px) {
    .mobile-font-color-light {
        color: #fff !important;
    }
    .mobile-font-color-gray-13 {
        color: #222 !important;
    }
    .mobile-font-color-gray-27 {
        color: #444 !important;
    }
    .mobile-font-color-gray-40 {
        color: #666 !important;
    }
    .mobile-font-color-gray-53 {
        color: #888 !important;
    }
    .mobile-font-color-gray-67 {
        color: #aaa !important;
    }
    .mobile-font-color-gray-80 {
        color: #ccc !important;
    }
    .mobile-font-color-gray-93 {
        color: #eee !important;
    }
    .mobile-font-color-gray-98 {
        color: #f9f9f9 !important;
    }
    .mobile-font-color-dark {
        color: #000 !important;
    }
}
.img-responsive {
    max-width: 100%;
}
.img-background-container {
    position: relative;
    overflow: hidden;
    transform: preserve-3d;
}
.img-background-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.img-background-full {
    position: relative;
    margin-right: auto;
    display: block;
}
@media (max-width: 767px) {
    .img-background-full {
        margin-left: auto;
        max-width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .img-background-full {
        margin-left: calc((100% - 992px) / 2);
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .img-background-full {
        margin-left: calc((100% - 1200px) / 2);
    }
}
@media (min-width: 1200px) {
    .img-background-full {
        margin-left: calc((100% - 1920px) / 2);
    }
}

.lazyload {
    opacity: 0;
    filter: alpha(opacity=0);
}

.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
    transition: opacity 250ms;
}

a {
    color: inherit;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

/*h1 {
  font-size: 2em;
  margin: 0.67em 0;
}*/
/*mark {
  background: #ff0;
  color: #000;
}*/
/*small {
  font-size: 80%;
}*/
sub,
sup {
    font-size: 0.6em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: 0;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

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

input {
    line-height: normal;
}

input[type='checkbox'],
input[type='radio'] {
    box-sizing: border-box;
    padding: 0;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    height: auto;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

@media print {
    #kampyleButtonContainer,
    ._hj-widget-container {
        display: none !important;
    }
}
/*
    Default focus style for all elements.
*/
:focus {
    outline-width: 2px;
    outline-color: #307abb;
    outline-style: solid;
}

/*
    This will hide the focus indicator if the element receives focus via the mouse, but it will still show up on keyboard focus.
*/
.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

#kampyle_abandon_zone {
    z-index: 0 !important;
}

select.ui-datepicker-year {
    display: inline-block;
    padding: 6px 12px;
}

.btn {
    background-image: none;
    border: none;
    cursor: pointer;
    margin: 0;
    text-decoration: none;
    touch-action: manipulation;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    display: inline-flex;
    -webkit-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-flex-item-align: flex-start;
    align-self: flex-start;
    -webkit-user-select: none;
    user-select: none;
}
.btn-sm {
    height: 36px;
    padding-left: 18px;
    padding-right: 18px;
}
.btn-md {
    padding-left: 22px;
    padding-right: 22px;
}
@media (min-width: 1200px) {
    .btn-md {
        height: 46px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .btn-md {
        height: 42px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .btn-md {
        height: 38px;
    }
}
@media (max-width: 767px) {
    .btn-md {
        height: 40px;
    }
}
.btn-lg {
    padding-left: 28px;
    padding-right: 28px;
}
@media (min-width: 1200px) {
    .btn-lg {
        height: 54px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .btn-lg {
        height: 48px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .btn-lg {
        height: 42px;
    }
}
@media (max-width: 767px) {
    .btn-lg {
        height: 46px;
    }
}
.btn-square {
    border-radius: 0 !important;
}
.btn-square-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.btn-square-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.btn-light {
    background-color: #fff;
    color: #444;
}
.btn-light:focus,
.btn-light:active {
    background-color: #eee;
    color: #000;
}
.btn-dark {
    background-color: #222;
    color: #fff;
}
.btn-dark:focus,
.btn-dark:active {
    background-color: #000;
    color: #eee;
}

input.btn {
    padding-top: 0;
    padding-bottom: 0;
}

.btn.disabled,
.btn-disabled,
.btn[disabled='disabled'],
input[disabled].btn,
fieldset[disabled].btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.no-touchevents .btn-light:hover {
    background-color: #eee;
    color: #000;
}
.no-touchevents .btn-dark:hover {
    background-color: #000;
    color: #eee;
}

.embed-responsive {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    border: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
    aspect-ratio: 16/9;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

label {
    font-size: 16px;
    margin-bottom: 10px;
}

input {
    border: 1px solid #ccc;
    padding: 20px 30px;
}

.input-validation-error {
    border-color: #c03b13 !important;
}

input[disabled] {
    opacity: 0.3;
    filter: alpha(opacity=30);
}

input[type='submit'][disabled] {
    cursor: wait;
}

.Form__Wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.EPiServerForms .Form__Element {
    margin: 0 0 10px 0 !important;
    padding-right: 5px;
    padding-left: 5px;
}

.EPiServerForms .Form__Element.FormStep {
    margin: 0 0 0 0 !important;
    padding: 0px;
}

.Form__Wrap ~ .Form__Wrap,
.Form__Wrap:last-child,
.Form__Wrap:last-child .Form__Element:last-child {
    margin-bottom: 0px !important;
}

.Form__Element .text-area-element-custom-block__label {
    font-weight: bold;
}
.Form__Element.choice-element-custom-block,
.Form__Element.dealer-locator-element-custom-block,
.Form__Element.model-selector-element-custom-block,
.Form__Element.multi-model-selector-element-custom-block,
.Form__Element.selection-element-custom-block,
.Form__Element.submit-button-element-custom-block,
.Form__Element.text-area-element-custom-block,
.Form__Element.id-me-custom-block,
.Form__Element.textbox-element-custom-block {
    flex: 1 0 100%;
    max-width: 100%;
}
@media (min-width: 768px) {
    .Form__Element .form-input--one-third {
        flex: 0 1 33.33%;
        max-width: 33.33%;
    }
    .Form__Element .form-input--half {
        flex: 0 1 50%;
        max-width: 50%;
    }
    .Form__Element .form-input--two-thirds {
        flex: 0 1 66.66%;
        max-width: 66.66%;
    }
}
.Form__Element .form-element-label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
}
.Form__Element .form-element-label.required:before {
    content: '*';
    margin-right: 4px;
}
.Form__Element .form-element-legend {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
}
.Form__Element .form-choice-container {
    -webkit-flex-align: baseline;
    align-items: baseline;
    display: flex;
}
.Form__Element .form-choice-container input {
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    top: 1px;
}
.Form__Element .form-choice-container input:hover {
    cursor: pointer;
}
.Form__Element .form-choice-container label {
    -webkit-user-select: none;
    user-select: none;
    margin-bottom: 0px;
}
.Form__Element .form-choice-container label:hover {
    cursor: pointer;
}
.Form__Element .form-choice-input {
    flex: 0 0 auto;
}

.dealer-locator-element-custom-block__container
    input.dealer-locator-element-custom-block__postal-code-submit,
.textbox-element-custom-block input {
    border-radius: 0;
    border: 1px solid #ccc;
    color: #000;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 36px;
    padding: 6px 12px;
    width: 100%;
}
.dealer-locator-element-custom-block__container
    input.dealer-locator-element-custom-block__postal-code-submit:focus,
.textbox-element-custom-block input:focus {
    box-shadow: 1px 1px 3px 1px #72acea;
    border: 1px solid #72acea;
    outline: 0;
}

.selection-element-custom-block select {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
.selection-element-custom-block select:focus {
    box-shadow: 1px 1px 3px 1px #72acea;
    border: 1px solid #72acea;
    outline: 0;
}
.selection-element-custom-block[disabled] {
    color: #222;
    opacity: 0.25;
    filter: alpha(opacity=25);
}

.text-area-element-custom-block label,
.id-me-custom-block label {
    margin-bottom: 0px !important;
    line-height: normal;
    -webkit-user-select: none;
    user-select: none;
}
.text-area-element-custom-block label:hover,
.id-me-custom-block label:hover {
    cursor: pointer;
}
.text-area-element-custom-block textarea,
.id-me-custom-block textarea {
    border: 1px solid #ccc;
    height: 75px;
}
.text-area-element-custom-block textarea:focus,
.id-me-custom-block textarea:focus {
    box-shadow: 1px 1px 3px 1px #72acea;
    border: 1px solid #72acea;
    outline: 0;
}
.text-area-element-custom-block .text-area-element-custom-block-toggle,
.id-me-custom-block .text-area-element-custom-block-toggle {
    background: none;
}
.text-area-element-custom-block
    .text-area-element-custom-block-toggle__icon-wrap,
.id-me-custom-block .text-area-element-custom-block-toggle__icon-wrap {
    position: relative;
    top: -1px;
    width: 21px;
    display: inherit;
}
.text-area-element-custom-block
    .text-area-element-custom-block-toggle
    .text-area-element-custom-block-toggle__icon:before,
.id-me-custom-block
    .text-area-element-custom-block-toggle
    .text-area-element-custom-block-toggle__icon:before {
    font-size: 24px;
    font-weight: bold;
}
.text-area-element-custom-block
    .text-area-element-custom-block-toggle
    .text-area-element-custom-block-content[aria-hidden='true'],
.id-me-custom-block
    .text-area-element-custom-block-toggle
    .text-area-element-custom-block-content[aria-hidden='true'] {
    display: none;
}
.text-area-element-custom-block
    .text-area-element-custom-block-toggle[aria-expanded='false']
    .text-area-element-custom-block-toggle__icon:before,
.id-me-custom-block
    .text-area-element-custom-block-toggle[aria-expanded='false']
    .text-area-element-custom-block-toggle__icon:before {
    content: '+';
    position: relative;
    top: 3px;
}
.text-area-element-custom-block
    .text-area-element-custom-block-toggle[aria-expanded='false']
    + .text-area-element-custom-block-content,
.id-me-custom-block
    .text-area-element-custom-block-toggle[aria-expanded='false']
    + .text-area-element-custom-block-content {
    display: none;
}
.text-area-element-custom-block
    .text-area-element-custom-block-toggle[aria-expanded='true'],
.id-me-custom-block
    .text-area-element-custom-block-toggle[aria-expanded='true'] {
    padding-bottom: 10px;
}
.text-area-element-custom-block
    .text-area-element-custom-block-toggle[aria-expanded='true']
    .text-area-element-custom-block-toggle__icon:before,
.id-me-custom-block
    .text-area-element-custom-block-toggle[aria-expanded='true']
    .text-area-element-custom-block-toggle__icon:before {
    content: '-';
    position: relative;
    top: 2px;
}

.Form__Element .ValidationFail textarea:not(.focus-visible),
.Form__Element .ValidationFail select:not(.focus-visible),
.Form__Element .ValidationFail input:not(.focus-visible) {
    border-color: #c03b13 !important;
}
.Form__Element .ValidationFail textarea:not(.focus-visible):focus,
.Form__Element .ValidationFail select:not(.focus-visible):focus,
.Form__Element .ValidationFail input:not(.focus-visible):focus {
    box-shadow: 1px 1px 3px 1px #c03b13;
    outline: 0;
}

.Form__Element .ValidationFail input[type='checkbox']:not(.focus-visible),
.Form__Element .ValidationFail input[type='radio']:not(.focus-visible) {
    box-shadow: 1px 1px 1px 1px #c03b13;
}

.Form__Element__ValidationError:not([style*='display:'])
    + .Form__Element__ValidationError__Image {
    display: block !important;
}

.field-validation-error + .Form__Element__ValidationError__Image {
    display: block !important;
}

.Form__Element__ValidationError,
.field-validation-error {
    order: 2;
}

.Form__Element__ValidationError__Image {
    width: 16px;
    height: 16px;
    order: 1;
}

.Form__Element__ValidationError,
.field-validation-error {
    color: #c03b13;
    display: inline-block;
    font-size: 16px;
    padding-left: 4px;
}

.choice-element-custom-block .form-choice-column--two .form-choice-container {
    display: inline-block;
    width: 50%;
}
.choice-element-custom-block .form-choice-column--three .form-choice-container {
    display: inline-block;
    width: 33.33%;
}
@media (max-width: 767px) {
    .choice-element-custom-block
        .form-choice-column--two
        .form-choice-container,
    .choice-element-custom-block
        .form-choice-column--three
        .form-choice-container {
        float: none;
        width: 100%;
    }
}

.submit-button-element-custom-block .FormSubmitButton[disabled] {
    opacity: 0.5;
    cursor: default;
}
.submit-button-element-custom-block .form-submit-button-alignment--full button {
    width: 100%;
}
.submit-button-element-custom-block .form-submit-button-alignment--left {
    text-align: left;
}
.submit-button-element-custom-block .form-submit-button-alignment--right {
    text-align: right;
}
.submit-button-element-custom-block
    .form-submit-button-alignment--right
    .FormSubmitButton {
    width: 50%;
}
@media (max-width: 767px) {
    .submit-button-element-custom-block .form-submit-button-alignment--right {
        text-align: start;
    }
    .submit-button-element-custom-block
        .form-submit-button-alignment--right
        .FormSubmitButton {
        width: 100%;
    }
}

.form-element__search-input {
    border-radius: 0;
    border: 1px solid #ccc;
    color: #000;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 36px;
    padding: 6px 12px;
    width: 100%;
}
.form-element__search-input:focus {
    box-shadow: 1px 1px 3px 1px #72acea;
    border: 1px solid #72acea;
    outline: 0;
}

.caret {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}
.caret-sm {
    margin-top: -2px;
    border-left-width: 5px;
    border-right-width: 5px;
    border-top-width: 5px;
    border-bottom-width: 5px;
}
.caret-md {
    margin-top: -5px;
    border-left-width: 12px;
    border-right-width: 12px;
    border-top-width: 12px;
    border-bottom-width: 12px;
}
.caret-lg {
    margin-top: -8px;
    border-left-width: 20px;
    border-right-width: 20px;
    border-top-width: 20px;
    border-bottom-width: 20px;
}
.caret-light {
    border-left-color: #fff;
    border-right-color: #fff;
    border-top-color: #fff;
    border-bottom-color: #fff;
}
.caret-dark {
    border-left-color: #000;
    border-right-color: #000;
    border-top-color: #000;
    border-bottom-color: #000;
}
.caret-left {
    border-left-width: 0;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
}
.caret-up {
    border-top-width: 0;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
}
.caret-right {
    border-right-width: 0;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
}
.caret-down {
    border-bottom-width: 0;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
}

.icon {
    background-position: center center;
    background-repeat: no-repeat;
}
.icon-sm {
    background-size: auto 16px;
    height: 16px;
    width: 16px;
}
.icon-md {
    background-size: auto 32px;
    height: 32px;
    width: 32px;
}
.icon-lg {
    background-size: auto 42px;
    height: 42px;
    width: 42px;
}
.icon-arrow-down-light-lg {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/arrows/arrow-down-light-lg.svg);
}
.icon-arrow-down-dark-lg {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/arrows/arrow-down-dark-lg.svg);
}
.icon-arrow-up-dark-lg {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/arrows/arrow-up-dark-lg.svg);
}
.icon-arrow-left-dark-lg {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/arrows/arrow-left-dark-lg.svg);
}
.icon-arrow-right-dark-lg {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/arrows/arrow-right-dark-lg.svg);
}
.icon-clock-gray-27 {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/misc/clock-gray-27.svg);
}
.icon-link-gray-27 {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/misc/link-gray-27.svg);
}
.icon-phone-gray-27 {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/misc/phone-gray-27.svg);
}
.icon-spotlight-gray-27 {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/misc/spotlight-gray-27.svg);
}
.icon-contained.icon-dark.icon-search {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/misc/contained-search-dark.svg);
}
.icon-contained.icon-light.icon-search {
    background-image: url(/assets/non-embedded/offroad/v2/core/images/icons/misc/contained-search-light.svg);
}

.fill-color-primary,
.fill-color-primary-dark,
.fill-color-primary-light,
.fill-color-primary-medium {
    fill: var(--color-primary);
}

.fill-color-secondary,
.fill-color-secondary-dark,
.fill-color-secondary-light,
.fill-color-secondary-medium {
    fill: var(--color-secondary);
}

.fill-color-tertiary,
.fill-color-tertiary-dark,
.fill-color-tertiary-light,
.fill-color-tertiary-medium {
    fill: var(--color-tertiary);
}

.fill-color-light {
    fill: #fff;
}

.fill-color-gray-98 {
    fill: #f9f9f9;
}

.fill-color-gray-93 {
    fill: #eee;
}

.fill-color-gray-80 {
    fill: #ccc;
}

.fill-color-gray-67 {
    fill: #aaa;
}

.fill-color-gray-53 {
    fill: #888;
}

.fill-color-gray-40 {
    fill: #666;
}

.fill-color-gray-27 {
    fill: #444;
}

.fill-color-gray-13 {
    fill: #222;
}

.fill-color-dark {
    fill: #000;
}

.fill-color-tags {
    fill: #00a651;
}

.fill-color-highlight {
    fill: #307abb;
}

.mobile-fill-color-primary {
    fill: var(--color-primary);
}
.mobile-fill-color-secondary {
    fill: var(--color-secondary);
}
.mobile-fill-color-tertiary {
    fill: var(--color-tertiary);
}
.mobile-fill-color-light {
    fill: #fff;
}
.mobile-fill-color-gray-98 {
    fill: #f9f9f9;
}
.mobile-fill-color-gray-93 {
    fill: #eee;
}
.mobile-fill-color-gray-80 {
    fill: #ccc;
}
.mobile-fill-color-gray-67 {
    fill: #aaa;
}
.mobile-fill-color-gray-53 {
    fill: #888;
}
.mobile-fill-color-gray-40 {
    fill: #666;
}
.mobile-fill-color-gray-27 {
    fill: #444;
}
.mobile-fill-color-gray-13 {
    fill: #222;
}
.mobile-fill-color-dark {
    fill: #000;
}
.mobile-fill-color-tags {
    fill: #00a651;
}
.mobile-fill-color-highlight {
    fill: #307abb;
}

.fill-color-primary-hover:hover,
.fill-color-primary-dark-hover:hover,
.fill-color-primary-light-hover:hover,
.fill-color-primary-medium-hover:hover {
    fill: var(--color-primary);
}
.fill-color-primary-hover:hover polygon,
.fill-color-primary-hover:hover path,
.fill-color-primary-hover:hover rect,
.fill-color-primary-dark-hover:hover polygon,
.fill-color-primary-dark-hover:hover path,
.fill-color-primary-dark-hover:hover rect,
.fill-color-primary-light-hover:hover polygon,
.fill-color-primary-light-hover:hover path,
.fill-color-primary-light-hover:hover rect,
.fill-color-primary-medium-hover:hover polygon,
.fill-color-primary-medium-hover:hover path,
.fill-color-primary-medium-hover:hover rect {
    fill: var(--color-primary);
}

.fill-color-secondary-hover:hover .fill-color-secondary-dark-hover:hover,
.fill-color-secondary-light-hover:hover,
.fill-color-secondary-medium-hover:hover {
    fill: var(--color-secondary);
}
.fill-color-secondary-hover:hover
    .fill-color-secondary-dark-hover:hover
    polygon,
.fill-color-secondary-hover:hover .fill-color-secondary-dark-hover:hover path,
.fill-color-secondary-hover:hover .fill-color-secondary-dark-hover:hover rect,
.fill-color-secondary-light-hover:hover polygon,
.fill-color-secondary-light-hover:hover path,
.fill-color-secondary-light-hover:hover rect,
.fill-color-secondary-medium-hover:hover polygon,
.fill-color-secondary-medium-hover:hover path,
.fill-color-secondary-medium-hover:hover rect {
    fill: var(--color-secondary);
}

.fill-color-tertiary-hover:hover .fill-color-tertiary-dark-hover:hover,
.fill-color-tertiary-light-hover:hover,
.fill-color-tertiary-medium-hover:hover {
    fill: var(--color-tertiary);
}
.fill-color-tertiary-hover:hover .fill-color-tertiary-dark-hover:hover polygon,
.fill-color-tertiary-hover:hover .fill-color-tertiary-dark-hover:hover path,
.fill-color-tertiary-hover:hover .fill-color-tertiary-dark-hover:hover rect,
.fill-color-tertiary-light-hover:hover polygon,
.fill-color-tertiary-light-hover:hover path,
.fill-color-tertiary-light-hover:hover rect,
.fill-color-tertiary-medium-hover:hover polygon,
.fill-color-tertiary-medium-hover:hover path,
.fill-color-tertiary-medium-hover:hover rect {
    fill: var(--color-tertiary);
}

.fill-color-light-hover:hover {
    fill: #fff;
}
.fill-color-light-hover:hover polygon,
.fill-color-light-hover:hover path,
.fill-color-light-hover:hover rect {
    fill: #fff;
}

.fill-color-gray-98-hover:hover {
    fill: #f9f9f9;
}
.fill-color-gray-98-hover:hover polygon,
.fill-color-gray-98-hover:hover path,
.fill-color-gray-98-hover:hover rect {
    fill: #f9f9f9;
}

.fill-color-gray-93-hover:hover {
    fill: #eee;
}
.fill-color-gray-93-hover:hover polygon,
.fill-color-gray-93-hover:hover path,
.fill-color-gray-93-hover:hover rect {
    fill: #eee;
}

.fill-color-gray-80-hover:hover {
    fill: #ccc;
}
.fill-color-gray-80-hover:hover polygon,
.fill-color-gray-80-hover:hover path,
.fill-color-gray-80-hover:hover rect {
    fill: #ccc;
}

.fill-color-gray-67-hover:hover {
    fill: #aaa;
}
.fill-color-gray-67-hover:hover polygon,
.fill-color-gray-67-hover:hover path,
.fill-color-gray-67-hover:hover rect {
    fill: #aaa;
}

.fill-color-gray-53-hover:hover {
    fill: #888;
}
.fill-color-gray-53-hover:hover polygon,
.fill-color-gray-53-hover:hover path,
.fill-color-gray-53-hover:hover rect {
    fill: #888;
}

.fill-color-gray-40-hover:hover {
    fill: #666;
}
.fill-color-gray-40-hover:hover polygon,
.fill-color-gray-40-hover:hover path,
.fill-color-gray-40-hover:hover rect {
    fill: #666;
}

.fill-color-gray-27-hover:hover {
    fill: #444;
}
.fill-color-gray-27-hover:hover polygon,
.fill-color-gray-27-hover:hover path,
.fill-color-gray-27-hover:hover rect {
    fill: #444;
}

.fill-color-gray-13-hover:hover {
    fill: #222;
}
.fill-color-gray-13-hover:hover polygon,
.fill-color-gray-13-hover:hover path,
.fill-color-gray-13-hover:hover rect {
    fill: #222;
}

.fill-color-dark-hover:hover {
    fill: #000;
}
.fill-color-dark-hover:hover polygon,
.fill-color-dark-hover:hover path,
.fill-color-dark-hover:hover rect {
    fill: #000;
}

.fill-color-tags-hover:hover {
    fill: #00a651;
}
.fill-color-tags-hover:hover polygon,
.fill-color-tags-hover:hover path,
.fill-color-tags-hover:hover rect {
    fill: #00a651;
}

.stroke-color-primary {
    stroke: var(--color-primary);
}

.stroke-color-secondary {
    stroke: var(--color-secondary);
}

.stroke-color-tertiary {
    stroke: var(--color-tertiary);
}

.stroke-color-light {
    stroke: #fff;
}

.stroke-color-gray-98 {
    stroke: #f9f9f9;
}

.stroke-color-gray-93 {
    stroke: #eee;
}

.stroke-color-gray-80 {
    stroke: #ccc;
}

.stroke-color-gray-67 {
    stroke: #aaa;
}

.stroke-color-gray-53 {
    stroke: #888;
}

.stroke-color-gray-40 {
    stroke: #666;
}

.stroke-color-gray-27 {
    stroke: #444;
}

.stroke-color-gray-13 {
    stroke: #222;
}

.stroke-color-dark {
    stroke: #000;
}

.stroke-color-tags {
    stroke: #00a651;
}

.stroke-color-highlight {
    stroke: #307abb;
}

.stroke-color-primary-hover:hover {
    stroke: var(--color-primary);
}
.stroke-color-primary-hover:hover polygon,
.stroke-color-primary-hover:hover path,
.stroke-color-primary-hover:hover rect {
    stroke: var(--color-primary);
}

.stroke-color-secondary-hover:hover {
    stroke: var(--color-secondary);
}
.stroke-color-secondary-hover:hover polygon,
.stroke-color-secondary-hover:hover path,
.stroke-color-secondary-hover:hover rect {
    stroke: var(--color-secondary);
}

.stroke-color-tertiary-hover:hover {
    stroke: var(--color-tertiary);
}
.stroke-color-tertiary-hover:hover polygon,
.stroke-color-tertiary-hover:hover path,
.stroke-color-tertiary-hover:hover rect {
    stroke: var(--color-tertiary);
}

.stroke-color-light-hover:hover {
    stroke: #fff;
}
.stroke-color-light-hover:hover polygon,
.stroke-color-light-hover:hover path,
.stroke-color-light-hover:hover rect {
    stroke: #fff;
}

.stroke-color-gray-98-hover:hover {
    stroke: #f9f9f9;
}
.stroke-color-gray-98-hover:hover polygon,
.stroke-color-gray-98-hover:hover path,
.stroke-color-gray-98-hover:hover rect {
    stroke: #f9f9f9;
}

.stroke-color-gray-93-hover:hover {
    stroke: #eee;
}
.stroke-color-gray-93-hover:hover polygon,
.stroke-color-gray-93-hover:hover path,
.stroke-color-gray-93-hover:hover rect {
    stroke: #eee;
}

.stroke-color-gray-80-hover:hover {
    stroke: #ccc;
}
.stroke-color-gray-80-hover:hover polygon,
.stroke-color-gray-80-hover:hover path,
.stroke-color-gray-80-hover:hover rect {
    stroke: #ccc;
}

.stroke-color-gray-67-hover:hover {
    stroke: #aaa;
}
.stroke-color-gray-67-hover:hover polygon,
.stroke-color-gray-67-hover:hover path,
.stroke-color-gray-67-hover:hover rect {
    stroke: #aaa;
}

.stroke-color-gray-53-hover:hover {
    stroke: #888;
}
.stroke-color-gray-53-hover:hover polygon,
.stroke-color-gray-53-hover:hover path,
.stroke-color-gray-53-hover:hover rect {
    stroke: #888;
}

.stroke-color-gray-40-hover:hover {
    stroke: #666;
}
.stroke-color-gray-40-hover:hover polygon,
.stroke-color-gray-40-hover:hover path,
.stroke-color-gray-40-hover:hover rect {
    stroke: #666;
}

.stroke-color-gray-27-hover:hover {
    stroke: #444;
}
.stroke-color-gray-27-hover:hover polygon,
.stroke-color-gray-27-hover:hover path,
.stroke-color-gray-27-hover:hover rect {
    stroke: #444;
}

.stroke-color-gray-13-hover:hover {
    stroke: #222;
}
.stroke-color-gray-13-hover:hover polygon,
.stroke-color-gray-13-hover:hover path,
.stroke-color-gray-13-hover:hover rect {
    stroke: #222;
}

.stroke-color-dark-hover:hover {
    stroke: #000;
}
.stroke-color-dark-hover:hover polygon,
.stroke-color-dark-hover:hover path,
.stroke-color-dark-hover:hover rect {
    stroke: #000;
}

.stroke-color-tags-hover:hover {
    stroke: #00a651;
}
.stroke-color-tags-hover:hover polygon,
.stroke-color-tags-hover:hover path,
.stroke-color-tags-hover:hover rect {
    stroke: #00a651;
}

@media (min-width: 768px) {
    .disclaimer-modal__header {
        justify-content: space-between;
        border-bottom: 1px solid #aaa;
    }
}
@media (max-width: 767px) {
    .disclaimer-modal #disclaimer-modal-heading {
        margin: 20px auto;
    }
}
.disclaimer-modal__content {
    background: #fff;
}
.disclaimer-modal__dialog {
    max-width: 1200px;
    padding: 0 30px;
    top: 10%;
    width: calc(100% - 20px) !important;
}
@media (max-width: 767px) {
    .disclaimer-modal__dialog {
        padding: 0;
    }
}
.disclaimer-modal__disclosure-item {
    display: flex;
    padding: 10px 20px;
}
.disclaimer-modal__disclosure-item * {
    font-size: 12px;
    font-weight: 700;
}
.disclaimer-modal__disclosure-item.active {
    background: #eee;
}
.disclaimer-modal__close-button {
    fill: #000;
}
@media (max-width: 767px) {
    .disclaimer-modal__close-button {
        height: 100%;
        float: right;
    }
}
.disclaimer-modal__close-icon {
    width: 20px;
    height: 20px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1080;
}

#consent_blackbar #truste-show-consent {
    font-family: var(--font-family-primary);
    color: #000;
    border: 2px solid #000;
    background: transparent;
    height: 36px;
    font-size: 18px;
}
#consent_blackbar #truste-consent-button,
#consent_blackbar #truste-consent-required {
    font-family: var(--font-family-primary);
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: #fff;
    height: 36px;
    font-size: 18px;
}

#teconsent a[role='link'] {
    display: inline-flex;
}

/*
    Based on display utilities in boostrap
    https://getbootstrap.com/docs/4.0/utilities/display/

    Statements order must be
        - none
        - inline
        - inline-block
        - block
        - table
        - table-cell
        - table-row
        - flex
        - inline-flex
    Skip a value when a statement/variation is not needed.

    The order of the variations must follow the breakpoints hierarchy
    - xxs
    - xs
    - sm
    - md
    - lg
    - xl
*/
.display-none {
    display: none;
}

.display-inline {
    display: inline;
}

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

.display-block {
    display: block;
}

.display-flex {
    display: flex;
}

.display-inline-flex {
    display: inline-flex;
}

@media (min-width: 768px) {
    .display-none-sm {
        display: none;
    }
    .display-inline-block-sm {
        display: inline-block;
    }
    .display-inline-sm {
        display: inline;
    }
    .display-block-sm {
        display: block;
    }
    .display-flex-sm {
        display: flex;
    }
}
@media (min-width: 992px) {
    .display-flex-md {
        display: flex;
    }
    .display-block-md {
        display: block;
    }
    .display-none-md {
        display: none;
    }
}
@media (min-width: 1200px) {
    .display-none-lg {
        display: none;
    }
    .display-block-lg {
        display: block;
    }
}
.visibility-hidden {
    visibility: hidden;
}

/*
    Based on display utilities in boostrap
    https://getbootstrap.com/docs/4.0/utilities/flex/

    Quickly manage the layout, alignment, and sizing of grid columns, navigation, components,
    and more with a full suite of responsive flexbox utilities.
    If a specific variation is not available and it needed this can be extended.

    The order of the variations must follow the breakpoints hierarchy
    - xxs
    - xs
    - sm
    - md
    - lg
    - xl
*/
.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.align-items-center {
    -webkit-flex-align: center;
    align-items: center;
}

.align-items-end {
    -webkit-flex-align: flex-end;
    align-items: flex-end;
}

.align-items-start {
    -webkit-flex-align: flex-start;
    align-items: flex-start;
}

.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-evenly {
    justify-content: space-evenly;
}
.justify-content-left {
    justify-content: left;
}
.justify-content-right {
    justify-content: right;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-self-center {
    -webkit-flex-item-align: center;
    align-self: center;
}

.flex-grow-1 {
    flex: 1;
}

@media (min-width: 768px) {
    .flex-row-sm {
        flex-direction: row;
    }
}
.flexboxtweener .ie-hasFlexChildImg {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.flexboxtweener .ie-hasFlexChildImg img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

@media (max-width: 479px) {
    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 12px;
        padding-right: 12px;
    }
    .container:before,
    .container:after {
        content: ' ';
        display: table;
    }
    .container:after {
        clear: both;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 16px;
        padding-right: 16px;
    }
    .container:before,
    .container:after {
        content: ' ';
        display: table;
    }
    .container:after {
        clear: both;
    }
}
@media (min-width: 768px) {
    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 10px;
        padding-right: 10px;
        width: 748px;
    }
    .container:before,
    .container:after {
        content: ' ';
        display: table;
    }
    .container:after {
        clear: both;
    }
}
@media (min-width: 992px) {
    .container {
        width: 972px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1180px;
    }
}
.container .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    width: auto;
}

.width-auto {
    width: auto;
}

.width-10 {
    width: 10%;
}

.width-20 {
    width: 20%;
}

.width-15 {
    width: 15%;
}

.width-25 {
    width: 25%;
}

.width-30 {
    width: 30%;
}

.width-33 {
    width: 33.33%;
}

.width-40 {
    width: 40%;
}

.width-50 {
    width: 50%;
}

.width-60 {
    width: 60%;
}

.width-70 {
    width: 70%;
}

.width-80 {
    width: 80%;
}

.width-90 {
    width: 90%;
}

.width-100 {
    width: 100%;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}
.spinner-animation::before {
    animation: spinner 0.6s linear infinite;
    border-radius: 50%;
    border: 4px solid #fff;
    border-top-color: #000;
    box-sizing: border-box;
    content: '';
    height: 60px;
    left: calc(50% - 30px);
    position: absolute;
    top: calc(50% - 30px);
    width: 60px;
    z-index: 1;
}
.spinner-animation::after {
    background: rgba(0, 0, 0, 0.3);
    content: ' ';
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

/*#region Animation Effects Keyframes*/
@keyframes slideInFromTop {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0);
    }
}
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0);
    }
}
@keyframes slideInFromRight {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0);
    }
}
@keyframes fadeInToReveal {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translate3d(-2%, 100%, 0);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateZ(0);
    }
}
@keyframes slideOutFromTop {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(0);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(-100%);
    }
}
@keyframes slideOutFromLeft {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(0);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(100%);
    }
}
@keyframes slideOutFromRight {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(0);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(-100%);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    to {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}
/*#endregion Animation Effects Keyframes*/
/*#region Animation Effects*/
.slide-in-from-left {
    opacity: 0;
    filter: alpha(opacity=0);
}
.slide-in-from-left-complete {
    animation: slideInFromLeft 1.5s;
    animation-fill-mode: forwards;
}

.slide-in-from-right {
    opacity: 0;
    filter: alpha(opacity=0);
}
.slide-in-from-right-complete {
    animation: slideInFromRight 1.5s;
    animation-fill-mode: forwards;
}

.fade-in-to-reveal {
    opacity: 0;
    filter: alpha(opacity=0);
}
.fade-in-to-reveal-complete {
    animation: fadeInToReveal 1.6s;
    animation-fill-mode: forwards;
}

.fade-in {
    opacity: 0;
    filter: alpha(opacity=0);
}
.fade-in-complete {
    animation: fadeIn 1.5s;
    animation-fill-mode: forwards;
}

.fade-out {
    opacity: 1;
    filter: alpha(opacity=100);
}
.fade-out-complete {
    animation: fadeOut 1.5s;
    animation-fill-mode: forwards;
}

/*#endregion Animation Effects*/
.layout__wrapper {
    position: relative;
}
.layout__container {
    height: 100%;
}
.layout__content {
    height: 100%;
    max-width: 100%;
}
.layout__content.accent {
    padding-left: 0 !important;
}
@media (min-width: 768px) {
    .layout__stack-alternate .layout__item--stack-alternate:first-child {
        order: 2;
    }
}
@media (max-width: 767px) {
    .layout__stack-alternate
        .layout__item:nth-child(1):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 10;
    }
    .layout__stack-alternate
        .layout__item:nth-child(2):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 9;
    }
    .layout__stack-alternate
        .layout__item:nth-child(3):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 8;
    }
    .layout__stack-alternate
        .layout__item:nth-child(4):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 7;
    }
    .layout__stack-alternate
        .layout__item:nth-child(5):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 6;
    }
    .layout__stack-alternate
        .layout__item:nth-child(6):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 5;
    }
    .layout__stack-alternate
        .layout__item:nth-child(7):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 4;
    }
    .layout__stack-alternate
        .layout__item:nth-child(8):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 3;
    }
    .layout__stack-alternate
        .layout__item:nth-child(9):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 2;
    }
    .layout__stack-alternate
        .layout__item:nth-child(10):not(.layout__item--stack-alternate):not(
            .layout__item--stack-default
        ) {
        order: 1;
    }
}
@media (max-width: 767px) {
    .layout__stack-alternate.layout__container.img-background-overlay
        > .layout__content-multi.layer-background-mobile {
        height: auto;
        position: absolute;
    }
    .layout__stack-alternate.layout__container.img-background-overlay
        > .layout__content-multi.layout__mobile-alignment-vertical-top {
        top: 0px;
    }
    .layout__stack-alternate.layout__container.img-background-overlay
        > .layout__content-multi.layout__mobile-alignment-vertical-bottom {
        bottom: 0px;
    }
    .layout__stack-alternate.layout__container.img-background-overlay
        > .layout__content-multi.layout__mobile-alignment-vertical-center {
        top: 50%;
        transform: translateY(-50%);
    }
}
.layout__items {
    height: 100%;
    display: flex;
}
@media (max-width: 767px) {
    .layout__items {
        flex-wrap: wrap;
    }
}
.layout__items-single,
.layout__items-multi {
    flex-direction: row;
}
@media (max-width: 767px) {
    .layout__items:not(.layout__items--flex)
        .layout__item:not(.layout__item--flex) {
        width: 100%;
        display: block;
        margin-right: 0;
    }
}
.layout__item {
    flex: 0 1 auto;
}
.layout__item:last-child:not(.layout__item--stack-alternate) {
    margin-right: 0;
}
.layout__item-20 {
    width: 20%;
}
.layout__item-25 {
    width: 25%;
}
.layout__item-30 {
    width: 30%;
}
.layout__item-33 {
    width: 33.333333%;
}
.layout__item-40 {
    width: 40%;
}
.layout__item-50 {
    width: 50%;
}
.layout__item-60 {
    width: 60%;
}
.layout__item-70 {
    width: 70%;
}
.layout__item-80 {
    width: 80%;
}
.layout__item-100 {
    width: 100%;
}
.layout__alignment-vertical {
    flex-direction: column;
}
.layout__alignment-vertical-top {
    -webkit-flex-item-align: flex-start;
    align-self: flex-start;
}
.layout__alignment-vertical-center {
    -webkit-flex-item-align: center;
    align-self: center;
}
.layout__alignment-vertical-bottom {
    -webkit-flex-item-align: flex-end;
    align-self: flex-end;
}
.layout__alignment-vertical-full {
    display: flex;
}
.layout__gradient {
    position: absolute;
}
@media (max-width: 767px) {
    .layout__gradient {
        display: none;
    }
}
@media (min-width: 1600px) {
    .layout__margin--xl {
        margin-left: 250px !important;
        margin-right: 250px !important;
    }
    .layout__margin--lg {
        margin-left: 200px !important;
        margin-right: 200px !important;
    }
    .layout__margin--md {
        margin-left: 150px !important;
        margin-right: 150px !important;
    }
    .layout__margin--sm {
        margin-left: 100px !important;
        margin-right: 100px !important;
    }
    .layout__margin--xs {
        margin-left: 75px !important;
        margin-right: 75px !important;
    }
    .layout__margin--xxs {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }
}
@media (min-width: 1200px) {
    .layout__margin--xl {
        margin-left: 200px;
        margin-right: 200px;
    }
    .layout__margin--lg {
        margin-left: 160px;
        margin-right: 160px;
    }
    .layout__margin--md {
        margin-left: 120px;
        margin-right: 120px;
    }
    .layout__margin--sm {
        margin-left: 80px;
        margin-right: 80px;
    }
    .layout__margin--xs {
        margin-left: 60px;
        margin-right: 60px;
    }
    .layout__margin--xxs {
        margin-left: 40px;
        margin-right: 40px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .layout__margin--xl {
        margin-left: 150px;
        margin-right: 150px;
    }
    .layout__margin--lg {
        margin-left: 120px;
        margin-right: 120px;
    }
    .layout__margin--md {
        margin-left: 90px;
        margin-right: 90px;
    }
    .layout__margin--sm {
        margin-left: 60px;
        margin-right: 60px;
    }
    .layout__margin--xs {
        margin-left: 45px;
        margin-right: 45px;
    }
    .layout__margin--xxs {
        margin-left: 30px;
        margin-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .layout__margin--xl {
        margin-left: 100px;
        margin-right: 100px;
    }
    .layout__margin--lg {
        margin-left: 80px;
        margin-right: 80px;
    }
    .layout__margin--md {
        margin-left: 60px;
        margin-right: 60px;
    }
    .layout__margin--sm {
        margin-left: 40px;
        margin-right: 40px;
    }
    .layout__margin--xs {
        margin-left: 30px;
        margin-right: 30px;
    }
    .layout__margin--xxs {
        margin-left: 20px;
        margin-right: 20px;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .layout__margin--xl {
        margin-left: 50px;
        margin-right: 50px;
    }
    .layout__margin--lg {
        margin-left: 40px;
        margin-right: 40px;
    }
    .layout__margin--md {
        margin-left: 30px;
        margin-right: 30px;
    }
    .layout__margin--sm {
        margin-left: 20px;
        margin-right: 20px;
    }
    .layout__margin--xs {
        margin-left: 15px;
        margin-right: 15px;
    }
    .layout__margin--xxs {
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media (max-width: 479px) {
    .layout__margin--xl {
        margin-left: 25px;
        margin-right: 25px;
    }
    .layout__margin--lg {
        margin-left: 20px;
        margin-right: 20px;
    }
    .layout__margin--md {
        margin-left: 15px;
        margin-right: 15px;
    }
    .layout__margin--sm {
        margin-left: 10px;
        margin-right: 10px;
    }
    .layout__margin--xs {
        margin-left: 7.5px;
        margin-right: 7.5px;
    }
    .layout__margin--xxs {
        margin-left: 5px;
        margin-right: 5px;
    }
}
.layout__margin--default {
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 767px) {
    .layout__mobile-margin--none {
        margin-left: 0;
        margin-right: 0;
    }
    .layout__mobile-alignment-vertical {
        flex-direction: column;
    }
    .layout__mobile-alignment-vertical-top {
        -webkit-flex-item-align: flex-start;
        align-self: flex-start;
    }
    .layout__mobile-alignment-vertical-center {
        -webkit-flex-item-align: center;
        align-self: center;
    }
    .layout__mobile-alignment-vertical-bottom {
        -webkit-flex-item-align: flex-end;
        align-self: flex-end;
    }
    .layout__mobile-alignment-vertical-full {
        display: flex;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .layout__mobile-margin--xl {
        margin-left: 50px;
        margin-right: 50px;
    }
    .layout__mobile-margin--lg {
        margin-left: 40px;
        margin-right: 40px;
    }
    .layout__mobile-margin--md {
        margin-left: 30px;
        margin-right: 30px;
    }
    .layout__mobile-margin--sm {
        margin-left: 20px;
        margin-right: 20px;
    }
    .layout__mobile-margin--xs {
        margin-left: 15px;
        margin-right: 15px;
    }
    .layout__mobile-margin--xxs {
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media (max-width: 479px) {
    .layout__mobile-margin--xl {
        margin-left: 25px;
        margin-right: 25px;
    }
    .layout__mobile-margin--lg {
        margin-left: 20px;
        margin-right: 20px;
    }
    .layout__mobile-margin--md {
        margin-left: 15px;
        margin-right: 15px;
    }
    .layout__mobile-margin--sm {
        margin-left: 10px;
        margin-right: 10px;
    }
    .layout__mobile-margin--xs {
        margin-left: 7.5px;
        margin-right: 7.5px;
    }
    .layout__mobile-margin--xxs {
        margin-left: 5px;
        margin-right: 5px;
    }
}
@media (max-width: 767px) {
    .layout__wrapper.image.hide-background-mobile > .img-background-container {
        display: none;
    }
}
@media (max-width: 767px) and (max-width: 767px) {
    .layout__wrapper.image.stack-background-mobile
        > .layout__container.img-background-overlay {
        position: relative;
    }
}
.layout__wrapper.image-img-responsive {
    background-size: 100% auto;
}
.layout__wrapper.image-background-to-content-size .img-background-container {
    position: absolute !important;
    top: 0;
    bottom: 0;
}
.layout__wrapper.image-background-to-content-size
    .img-background-container
    .background-to-content-size {
    margin-left: 0;
    min-height: 100%;
    min-width: 100%;
}
.layout__wrapper.image-background-to-content-size
    .img-background-fit-to-content-overlay {
    position: relative;
}
.layout__wrapper.video {
    overflow: hidden;
}
.layout__wrapper.video > .layout__container {
    max-height: 100%;
}
.layout__wrapper.video
    > .layout__container
    .video-background-simple__container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.layout__wrapper.video
    > .layout__container
    .video-background-simple__container
    video {
    width: 100%;
    height: auto;
}
.layout__wrapper.video .layout__video {
    position: absolute;
    top: 0;
    height: 100%;
}
@media (min-width: 768px) {
    .layout__wrapper.video
        > .layout__container
        .video-background-simple__container {
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
        justify-content: center;
    }
    .layout__wrapper.video
        > .layout__container
        .video-background-simple__container
        picture {
        display: none;
    }
}
@media (max-width: 767px) {
    .layout__wrapper.video
        > .layout__container
        .video-background-simple__container
        video {
        position: absolute;
        top: 0;
    }
    .layout__wrapper.video
        > .layout__container
        .video-background-simple__container
        video.desktop {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .layout__wrapper.video.hide-background-mobile
        > .layout__container
        > .video-background-simple__container {
        display: none;
    }
    .layout__wrapper.video.stack-background-mobile > .img-background-container {
        display: none;
    }
    .layout__wrapper.video.stack-background-mobile > .layout__container {
        position: relative;
    }
    .layout__wrapper.video.stack-background-mobile
        > .layout__container
        > .video-background-simple__container {
        position: relative;
    }
    .layout__wrapper.video.stack-background-mobile
        > .layout__container
        > .video-background-simple__container
        picture {
        display: block;
    }
    .layout__wrapper.video.stack-background-mobile
        > .layout__container
        > .layout__video {
        position: relative;
    }
    .layout__wrapper.video.stack-background-mobile.hide-background-mobile
        > .img-background-container {
        display: block;
    }
}
@media only screen and (min-width: 1921px) {
    .layout__max-width-1920 {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
}
.layout__parallax--enabled {
    overflow: hidden;
}
.layout__parallax--enabled .parallax-background {
    height: 200%;
    width: 100%;
    top: -100%;
}
.layout.hidden {
    display: none;
}

.layout__items--flex {
    flex-wrap: wrap;
}
@media (min-width: 1200px) {
    .layout__items--flex .column-lg-0 {
        flex: 1;
    }
    .layout__items--flex .column-lg-1 {
        width: 100%;
        flex: none;
    }
    .layout__items--flex .column-lg-1:nth-child(n + 2).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-1:nth-child(n + 2).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-1:nth-child(n + 2).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-1:nth-child(n + 2).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-1:nth-child(n + 2).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-2:nth-child(2n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-2:nth-child(n + 3).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-2:nth-child(n + 3).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-2:nth-child(n + 3).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-2.margin-right-lg {
        width: calc(50% - 25px);
    }
    .layout__items--flex .column-lg-2.margin-right-md {
        width: calc(50% - 15px);
    }
    .layout__items--flex .column-lg-2.margin-right-sm {
        width: calc(50% - 10px);
    }
    .layout__items--flex .column-lg-2:nth-child(n + 3).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-2:nth-child(n + 3).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-2.margin-right-xs {
        width: calc(50% - 5px);
    }
    .layout__items--flex .column-lg-2.margin-right-xxs {
        width: calc(50% - 2px);
    }
    .layout__items--flex .column-lg-2.margin-right-default,
    .layout__items--flex .column-lg-2.margin-right-none {
        width: calc(50% - 0px);
    }
    .layout__items--flex .column-lg-3:nth-child(3n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-3:nth-child(n + 4).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-3:nth-child(n + 4).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-3:nth-child(n + 4).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-3.margin-right-lg {
        width: calc(33.3333333333% - 33.3333333333px);
    }
    .layout__items--flex .column-lg-3.margin-right-md {
        width: calc(33.3333333333% - 20px);
    }
    .layout__items--flex .column-lg-3.margin-right-sm {
        width: calc(33.3333333333% - 13.3333333333px);
    }
    .layout__items--flex .column-lg-3:nth-child(n + 4).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-3:nth-child(n + 4).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-3.margin-right-xs {
        width: calc(33.3333333333% - 6.6666666667px);
    }
    .layout__items--flex .column-lg-3.margin-right-xxs {
        width: calc(33.3333333333% - 2.6666666667px);
    }
    .layout__items--flex .column-lg-3.margin-right-default,
    .layout__items--flex .column-lg-3.margin-right-none {
        width: calc(33.3333333333% - 0px);
    }
    .layout__items--flex .column-lg-4:nth-child(4n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-4:nth-child(n + 5).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-4:nth-child(n + 5).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-4:nth-child(n + 5).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-4.margin-right-lg {
        width: calc(25% - 37.5px);
    }
    .layout__items--flex .column-lg-4.margin-right-md {
        width: calc(25% - 22.5px);
    }
    .layout__items--flex .column-lg-4.margin-right-sm {
        width: calc(25% - 15px);
    }
    .layout__items--flex .column-lg-4:nth-child(n + 5).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-4:nth-child(n + 5).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-4.margin-right-xs {
        width: calc(25% - 7.5px);
    }
    .layout__items--flex .column-lg-4.margin-right-xxs {
        width: calc(25% - 3px);
    }
    .layout__items--flex .column-lg-4.margin-right-default,
    .layout__items--flex .column-lg-4.margin-right-none {
        width: calc(25% - 0px);
    }
    .layout__items--flex .column-lg-5:nth-child(5n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-5:nth-child(n + 6).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-5:nth-child(n + 6).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-5:nth-child(n + 6).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-5.margin-right-lg {
        width: calc(20% - 40px);
    }
    .layout__items--flex .column-lg-5.margin-right-md {
        width: calc(20% - 24px);
    }
    .layout__items--flex .column-lg-5.margin-right-sm {
        width: calc(20% - 16px);
    }
    .layout__items--flex .column-lg-5:nth-child(n + 6).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-5:nth-child(n + 6).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-5.margin-right-xs {
        width: calc(20% - 8px);
    }
    .layout__items--flex .column-lg-5.margin-right-xxs {
        width: calc(20% - 3.2px);
    }
    .layout__items--flex .column-lg-5.margin-right-default,
    .layout__items--flex .column-lg-5.margin-right-none {
        width: calc(20% - 0px);
    }
    .layout__items--flex .column-lg-6:nth-child(6n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-6:nth-child(n + 7).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-6:nth-child(n + 7).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-6:nth-child(n + 7).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-6.margin-right-lg {
        width: calc(16.6666666667% - 41.6666666667px);
    }
    .layout__items--flex .column-lg-6.margin-right-md {
        width: calc(16.6666666667% - 25px);
    }
    .layout__items--flex .column-lg-6.margin-right-sm {
        width: calc(16.6666666667% - 16.6666666667px);
    }
    .layout__items--flex .column-lg-6:nth-child(n + 7).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-6:nth-child(n + 7).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-6.margin-right-xs {
        width: calc(16.6666666667% - 8.3333333333px);
    }
    .layout__items--flex .column-lg-6.margin-right-xxs {
        width: calc(16.6666666667% - 3.3333333333px);
    }
    .layout__items--flex .column-lg-6.margin-right-default,
    .layout__items--flex .column-lg-6.margin-right-none {
        width: calc(16.6666666667% - 0px);
    }
    .layout__items--flex .column-lg-7:nth-child(7n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-7:nth-child(n + 8).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-7:nth-child(n + 8).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-7:nth-child(n + 8).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-7.margin-right-lg {
        width: calc(14.2857142857% - 42.8571428571px);
    }
    .layout__items--flex .column-lg-7.margin-right-md {
        width: calc(14.2857142857% - 25.7142857143px);
    }
    .layout__items--flex .column-lg-7.margin-right-sm {
        width: calc(14.2857142857% - 17.1428571429px);
    }
    .layout__items--flex .column-lg-7:nth-child(n + 8).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-7:nth-child(n + 8).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-7.margin-right-xs {
        width: calc(14.2857142857% - 8.5714285714px);
    }
    .layout__items--flex .column-lg-7.margin-right-xxs {
        width: calc(14.2857142857% - 3.4285714286px);
    }
    .layout__items--flex .column-lg-7.margin-right-default,
    .layout__items--flex .column-lg-7.margin-right-none {
        width: calc(14.2857142857% - 0px);
    }
    .layout__items--flex .column-lg-8:nth-child(8n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-8:nth-child(n + 9).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-8:nth-child(n + 9).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-8:nth-child(n + 9).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-8.margin-right-lg {
        width: calc(12.5% - 43.75px);
    }
    .layout__items--flex .column-lg-8.margin-right-md {
        width: calc(12.5% - 26.25px);
    }
    .layout__items--flex .column-lg-8.margin-right-sm {
        width: calc(12.5% - 17.5px);
    }
    .layout__items--flex .column-lg-8:nth-child(n + 9).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-8:nth-child(n + 9).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-8.margin-right-xs {
        width: calc(12.5% - 8.75px);
    }
    .layout__items--flex .column-lg-8.margin-right-xxs {
        width: calc(12.5% - 3.5px);
    }
    .layout__items--flex .column-lg-8.margin-right-default,
    .layout__items--flex .column-lg-8.margin-right-none {
        width: calc(12.5% - 0px);
    }
    .layout__items--flex .column-lg-9:nth-child(9n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-9:nth-child(n + 10).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-9:nth-child(n + 10).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-9:nth-child(n + 10).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-9.margin-right-lg {
        width: calc(11.1111111111% - 44.4444444444px);
    }
    .layout__items--flex .column-lg-9.margin-right-md {
        width: calc(11.1111111111% - 26.6666666667px);
    }
    .layout__items--flex .column-lg-9.margin-right-sm {
        width: calc(11.1111111111% - 17.7777777778px);
    }
    .layout__items--flex .column-lg-9:nth-child(n + 10).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-9:nth-child(n + 10).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-9.margin-right-xs {
        width: calc(11.1111111111% - 8.8888888889px);
    }
    .layout__items--flex .column-lg-9.margin-right-xxs {
        width: calc(11.1111111111% - 3.5555555556px);
    }
    .layout__items--flex .column-lg-9.margin-right-default,
    .layout__items--flex .column-lg-9.margin-right-none {
        width: calc(11.1111111111% - 0px);
    }
    .layout__items--flex .column-lg-10:nth-child(10n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-10:nth-child(n + 11).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-10:nth-child(n + 11).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-10:nth-child(n + 11).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-10.margin-right-lg {
        width: calc(10% - 45px);
    }
    .layout__items--flex .column-lg-10.margin-right-md {
        width: calc(10% - 27px);
    }
    .layout__items--flex .column-lg-10.margin-right-sm {
        width: calc(10% - 18px);
    }
    .layout__items--flex .column-lg-10:nth-child(n + 11).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-10:nth-child(n + 11).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-10.margin-right-xs {
        width: calc(10% - 9px);
    }
    .layout__items--flex .column-lg-10.margin-right-xxs {
        width: calc(10% - 3.6px);
    }
    .layout__items--flex .column-lg-10.margin-right-default,
    .layout__items--flex .column-lg-10.margin-right-none {
        width: calc(10% - 0px);
    }
    .layout__items--flex .column-lg-11:nth-child(11n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-11:nth-child(n + 12).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-11:nth-child(n + 12).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-11:nth-child(n + 12).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-11.margin-right-lg {
        width: calc(9.0909090909% - 45.4545454545px);
    }
    .layout__items--flex .column-lg-11.margin-right-md {
        width: calc(9.0909090909% - 27.2727272727px);
    }
    .layout__items--flex .column-lg-11.margin-right-sm {
        width: calc(9.0909090909% - 18.1818181818px);
    }
    .layout__items--flex .column-lg-11:nth-child(n + 12).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-11:nth-child(n + 12).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-11.margin-right-xs {
        width: calc(9.0909090909% - 9.0909090909px);
    }
    .layout__items--flex .column-lg-11.margin-right-xxs {
        width: calc(9.0909090909% - 3.6363636364px);
    }
    .layout__items--flex .column-lg-11.margin-right-default,
    .layout__items--flex .column-lg-11.margin-right-none {
        width: calc(9.0909090909% - 0px);
    }
    .layout__items--flex .column-lg-12:nth-child(12n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-lg-12:nth-child(n + 13).margin-right-lg {
        margin-top: 50px;
    }
    .layout__items--flex .column-lg-12:nth-child(n + 13).margin-right-md {
        margin-top: 30px;
    }
    .layout__items--flex .column-lg-12:nth-child(n + 13).margin-right-sm {
        margin-top: 20px;
    }
    .layout__items--flex .column-lg-12.margin-right-lg {
        width: calc(8.3333333333% - 45.8333333333px);
    }
    .layout__items--flex .column-lg-12.margin-right-md {
        width: calc(8.3333333333% - 27.5px);
    }
    .layout__items--flex .column-lg-12.margin-right-sm {
        width: calc(8.3333333333% - 18.3333333333px);
    }
    .layout__items--flex .column-lg-12:nth-child(n + 13).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-lg-12:nth-child(n + 13).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-lg-12.margin-right-xs {
        width: calc(8.3333333333% - 9.1666666667px);
    }
    .layout__items--flex .column-lg-12.margin-right-xxs {
        width: calc(8.3333333333% - 3.6666666667px);
    }
    .layout__items--flex .column-lg-12.margin-right-default,
    .layout__items--flex .column-lg-12.margin-right-none {
        width: calc(8.3333333333% - 0px);
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .layout__items--flex .column-md-0 {
        flex: 1;
    }
    .layout__items--flex .column-md-1 {
        width: 100%;
        flex: none;
    }
    .layout__items--flex .column-md-1:nth-child(n + 2).margin-right-lg {
        margin-top: 40px;
    }
    .layout__items--flex .column-md-1:nth-child(n + 2).margin-right-md {
        margin-top: 24px;
    }
    .layout__items--flex .column-md-1:nth-child(n + 2).margin-right-sm {
        margin-top: 16px;
    }
    .layout__items--flex .column-md-1:nth-child(n + 2).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-md-1:nth-child(n + 2).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-md-2:nth-child(2n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-md-2:nth-child(n + 3).margin-right-lg {
        margin-top: 40px;
    }
    .layout__items--flex .column-md-2:nth-child(n + 3).margin-right-md {
        margin-top: 24px;
    }
    .layout__items--flex .column-md-2:nth-child(n + 3).margin-right-sm {
        margin-top: 16px;
    }
    .layout__items--flex .column-md-2.margin-right-lg {
        width: calc(50% - 20px);
    }
    .layout__items--flex .column-md-2.margin-right-md {
        width: calc(50% - 12px);
    }
    .layout__items--flex .column-md-2.margin-right-sm {
        width: calc(50% - 8px);
    }
    .layout__items--flex .column-md-2:nth-child(n + 3).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-md-2:nth-child(n + 3).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-md-2.margin-right-xs {
        width: calc(50% - 5px);
    }
    .layout__items--flex .column-md-2.margin-right-xxs {
        width: calc(50% - 2px);
    }
    .layout__items--flex .column-md-2.margin-right-default,
    .layout__items--flex .column-md-2.margin-right-none {
        width: calc(50% - 0px);
    }
    .layout__items--flex .column-md-3:nth-child(3n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-md-3:nth-child(n + 4).margin-right-lg {
        margin-top: 40px;
    }
    .layout__items--flex .column-md-3:nth-child(n + 4).margin-right-md {
        margin-top: 24px;
    }
    .layout__items--flex .column-md-3:nth-child(n + 4).margin-right-sm {
        margin-top: 16px;
    }
    .layout__items--flex .column-md-3.margin-right-lg {
        width: calc(33.3333333333% - 26.6666666667px);
    }
    .layout__items--flex .column-md-3.margin-right-md {
        width: calc(33.3333333333% - 16px);
    }
    .layout__items--flex .column-md-3.margin-right-sm {
        width: calc(33.3333333333% - 10.6666666667px);
    }
    .layout__items--flex .column-md-3:nth-child(n + 4).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-md-3:nth-child(n + 4).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-md-3.margin-right-xs {
        width: calc(33.3333333333% - 6.6666666667px);
    }
    .layout__items--flex .column-md-3.margin-right-xxs {
        width: calc(33.3333333333% - 2.6666666667px);
    }
    .layout__items--flex .column-md-3.margin-right-default,
    .layout__items--flex .column-md-3.margin-right-none {
        width: calc(33.3333333333% - 0px);
    }
    .layout__items--flex .column-md-4:nth-child(4n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-md-4:nth-child(n + 5).margin-right-lg {
        margin-top: 40px;
    }
    .layout__items--flex .column-md-4:nth-child(n + 5).margin-right-md {
        margin-top: 24px;
    }
    .layout__items--flex .column-md-4:nth-child(n + 5).margin-right-sm {
        margin-top: 16px;
    }
    .layout__items--flex .column-md-4.margin-right-lg {
        width: calc(25% - 30px);
    }
    .layout__items--flex .column-md-4.margin-right-md {
        width: calc(25% - 18px);
    }
    .layout__items--flex .column-md-4.margin-right-sm {
        width: calc(25% - 12px);
    }
    .layout__items--flex .column-md-4:nth-child(n + 5).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-md-4:nth-child(n + 5).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-md-4.margin-right-xs {
        width: calc(25% - 7.5px);
    }
    .layout__items--flex .column-md-4.margin-right-xxs {
        width: calc(25% - 3px);
    }
    .layout__items--flex .column-md-4.margin-right-default,
    .layout__items--flex .column-md-4.margin-right-none {
        width: calc(25% - 0px);
    }
    .layout__items--flex .column-md-5:nth-child(5n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-md-5:nth-child(n + 6).margin-right-lg {
        margin-top: 40px;
    }
    .layout__items--flex .column-md-5:nth-child(n + 6).margin-right-md {
        margin-top: 24px;
    }
    .layout__items--flex .column-md-5:nth-child(n + 6).margin-right-sm {
        margin-top: 16px;
    }
    .layout__items--flex .column-md-5.margin-right-lg {
        width: calc(20% - 32px);
    }
    .layout__items--flex .column-md-5.margin-right-md {
        width: calc(20% - 19.2px);
    }
    .layout__items--flex .column-md-5.margin-right-sm {
        width: calc(20% - 12.8px);
    }
    .layout__items--flex .column-md-5:nth-child(n + 6).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-md-5:nth-child(n + 6).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-md-5.margin-right-xs {
        width: calc(20% - 8px);
    }
    .layout__items--flex .column-md-5.margin-right-xxs {
        width: calc(20% - 3.2px);
    }
    .layout__items--flex .column-md-5.margin-right-default,
    .layout__items--flex .column-md-5.margin-right-none {
        width: calc(20% - 0px);
    }
    .layout__items--flex .column-md-6:nth-child(6n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-md-6:nth-child(n + 7).margin-right-lg {
        margin-top: 40px;
    }
    .layout__items--flex .column-md-6:nth-child(n + 7).margin-right-md {
        margin-top: 24px;
    }
    .layout__items--flex .column-md-6:nth-child(n + 7).margin-right-sm {
        margin-top: 16px;
    }
    .layout__items--flex .column-md-6.margin-right-lg {
        width: calc(16.6666666667% - 33.3333333333px);
    }
    .layout__items--flex .column-md-6.margin-right-md {
        width: calc(16.6666666667% - 20px);
    }
    .layout__items--flex .column-md-6.margin-right-sm {
        width: calc(16.6666666667% - 13.3333333333px);
    }
    .layout__items--flex .column-md-6:nth-child(n + 7).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-md-6:nth-child(n + 7).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-md-6.margin-right-xs {
        width: calc(16.6666666667% - 8.3333333333px);
    }
    .layout__items--flex .column-md-6.margin-right-xxs {
        width: calc(16.6666666667% - 3.3333333333px);
    }
    .layout__items--flex .column-md-6.margin-right-default,
    .layout__items--flex .column-md-6.margin-right-none {
        width: calc(16.6666666667% - 0px);
    }
    .layout__items--flex .column-md-7:nth-child(7n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-md-7:nth-child(n + 8).margin-right-lg {
        margin-top: 40px;
    }
    .layout__items--flex .column-md-7:nth-child(n + 8).margin-right-md {
        margin-top: 24px;
    }
    .layout__items--flex .column-md-7:nth-child(n + 8).margin-right-sm {
        margin-top: 16px;
    }
    .layout__items--flex .column-md-7.margin-right-lg {
        width: calc(14.2857142857% - 34.2857142857px);
    }
    .layout__items--flex .column-md-7.margin-right-md {
        width: calc(14.2857142857% - 20.5714285714px);
    }
    .layout__items--flex .column-md-7.margin-right-sm {
        width: calc(14.2857142857% - 13.7142857143px);
    }
    .layout__items--flex .column-md-7:nth-child(n + 8).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-md-7:nth-child(n + 8).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-md-7.margin-right-xs {
        width: calc(14.2857142857% - 8.5714285714px);
    }
    .layout__items--flex .column-md-7.margin-right-xxs {
        width: calc(14.2857142857% - 3.4285714286px);
    }
    .layout__items--flex .column-md-7.margin-right-default,
    .layout__items--flex .column-md-7.margin-right-none {
        width: calc(14.2857142857% - 0px);
    }
    .layout__items--flex .column-md-8:nth-child(8n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-md-8:nth-child(n + 9).margin-right-lg {
        margin-top: 40px;
    }
    .layout__items--flex .column-md-8:nth-child(n + 9).margin-right-md {
        margin-top: 24px;
    }
    .layout__items--flex .column-md-8:nth-child(n + 9).margin-right-sm {
        margin-top: 16px;
    }
    .layout__items--flex .column-md-8.margin-right-lg {
        width: calc(12.5% - 35px);
    }
    .layout__items--flex .column-md-8.margin-right-md {
        width: calc(12.5% - 21px);
    }
    .layout__items--flex .column-md-8.margin-right-sm {
        width: calc(12.5% - 14px);
    }
    .layout__items--flex .column-md-8:nth-child(n + 9).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-md-8:nth-child(n + 9).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-md-8.margin-right-xs {
        width: calc(12.5% - 8.75px);
    }
    .layout__items--flex .column-md-8.margin-right-xxs {
        width: calc(12.5% - 3.5px);
    }
    .layout__items--flex .column-md-8.margin-right-default,
    .layout__items--flex .column-md-8.margin-right-none {
        width: calc(12.5% - 0px);
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .layout__items--flex .column-sm-0 {
        flex: 1;
    }
    .layout__items--flex .column-sm-1 {
        width: 100%;
        flex: none;
    }
    .layout__items--flex .column-sm-1:nth-child(n + 2).margin-right-lg {
        margin-top: 30px;
    }
    .layout__items--flex .column-sm-1:nth-child(n + 2).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-sm-1:nth-child(n + 2).margin-right-sm,
    .layout__items--flex .column-sm-1:nth-child(n + 2).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-1:nth-child(n + 2).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-sm-2:nth-child(2n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-sm-2:nth-child(n + 3).margin-right-lg {
        margin-top: 30px;
    }
    .layout__items--flex .column-sm-2:nth-child(n + 3).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-sm-2:nth-child(n + 3).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-2.margin-right-lg {
        width: calc(50% - 15px);
    }
    .layout__items--flex .column-sm-2.margin-right-md {
        width: calc(50% - 8px);
    }
    .layout__items--flex .column-sm-2.margin-right-sm {
        width: calc(50% - 5px);
    }
    .layout__items--flex .column-sm-2:nth-child(n + 3).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-2:nth-child(n + 3).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-sm-2.margin-right-xs {
        width: calc(50% - 5px);
    }
    .layout__items--flex .column-sm-2.margin-right-xxs {
        width: calc(50% - 2px);
    }
    .layout__items--flex .column-sm-2.margin-right-default,
    .layout__items--flex .column-sm-2.margin-right-none {
        width: calc(50% - 0px);
    }
    .layout__items--flex .column-sm-3:nth-child(3n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-sm-3:nth-child(n + 4).margin-right-lg {
        margin-top: 30px;
    }
    .layout__items--flex .column-sm-3:nth-child(n + 4).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-sm-3:nth-child(n + 4).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-3.margin-right-lg {
        width: calc(33.3333333333% - 20px);
    }
    .layout__items--flex .column-sm-3.margin-right-md {
        width: calc(33.3333333333% - 10.6666666667px);
    }
    .layout__items--flex .column-sm-3.margin-right-sm {
        width: calc(33.3333333333% - 6.6666666667px);
    }
    .layout__items--flex .column-sm-3:nth-child(n + 4).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-3:nth-child(n + 4).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-sm-3.margin-right-xs {
        width: calc(33.3333333333% - 6.6666666667px);
    }
    .layout__items--flex .column-sm-3.margin-right-xxs {
        width: calc(33.3333333333% - 2.6666666667px);
    }
    .layout__items--flex .column-sm-3.margin-right-default,
    .layout__items--flex .column-sm-3.margin-right-none {
        width: calc(33.3333333333% - 0px);
    }
    .layout__items--flex .column-sm-4:nth-child(4n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-sm-4:nth-child(n + 5).margin-right-lg {
        margin-top: 30px;
    }
    .layout__items--flex .column-sm-4:nth-child(n + 5).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-sm-4:nth-child(n + 5).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-4.margin-right-lg {
        width: calc(25% - 22.5px);
    }
    .layout__items--flex .column-sm-4.margin-right-md {
        width: calc(25% - 12px);
    }
    .layout__items--flex .column-sm-4.margin-right-sm {
        width: calc(25% - 7.5px);
    }
    .layout__items--flex .column-sm-4:nth-child(n + 5).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-4:nth-child(n + 5).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-sm-4.margin-right-xs {
        width: calc(25% - 7.5px);
    }
    .layout__items--flex .column-sm-4.margin-right-xxs {
        width: calc(25% - 3px);
    }
    .layout__items--flex .column-sm-4.margin-right-default,
    .layout__items--flex .column-sm-4.margin-right-none {
        width: calc(25% - 0px);
    }
    .layout__items--flex .column-sm-5:nth-child(5n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-sm-5:nth-child(n + 6).margin-right-lg {
        margin-top: 30px;
    }
    .layout__items--flex .column-sm-5:nth-child(n + 6).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-sm-5:nth-child(n + 6).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-5.margin-right-lg {
        width: calc(20% - 24px);
    }
    .layout__items--flex .column-sm-5.margin-right-md {
        width: calc(20% - 12.8px);
    }
    .layout__items--flex .column-sm-5.margin-right-sm {
        width: calc(20% - 8px);
    }
    .layout__items--flex .column-sm-5:nth-child(n + 6).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-5:nth-child(n + 6).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-sm-5.margin-right-xs {
        width: calc(20% - 8px);
    }
    .layout__items--flex .column-sm-5.margin-right-xxs {
        width: calc(20% - 3.2px);
    }
    .layout__items--flex .column-sm-5.margin-right-default,
    .layout__items--flex .column-sm-5.margin-right-none {
        width: calc(20% - 0px);
    }
    .layout__items--flex .column-sm-6:nth-child(6n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-sm-6:nth-child(n + 7).margin-right-lg {
        margin-top: 30px;
    }
    .layout__items--flex .column-sm-6:nth-child(n + 7).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-sm-6:nth-child(n + 7).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-6.margin-right-lg {
        width: calc(16.6666666667% - 25px);
    }
    .layout__items--flex .column-sm-6.margin-right-md {
        width: calc(16.6666666667% - 13.3333333333px);
    }
    .layout__items--flex .column-sm-6.margin-right-sm {
        width: calc(16.6666666667% - 8.3333333333px);
    }
    .layout__items--flex .column-sm-6:nth-child(n + 7).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-sm-6:nth-child(n + 7).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-sm-6.margin-right-xs {
        width: calc(16.6666666667% - 8.3333333333px);
    }
    .layout__items--flex .column-sm-6.margin-right-xxs {
        width: calc(16.6666666667% - 3.3333333333px);
    }
    .layout__items--flex .column-sm-6.margin-right-default,
    .layout__items--flex .column-sm-6.margin-right-none {
        width: calc(16.6666666667% - 0px);
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .layout__items--flex .column-xs-0 {
        flex: 1;
    }
    .layout__items--flex .column-xs-1 {
        width: 100%;
        flex: none;
    }
    .layout__items--flex .column-xs-1:nth-child(n + 2).margin-right-lg {
        margin-top: 20px;
    }
    .layout__items--flex .column-xs-1:nth-child(n + 2).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-xs-1:nth-child(n + 2).margin-right-sm,
    .layout__items--flex .column-xs-1:nth-child(n + 2).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-xs-1:nth-child(n + 2).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-xs-2:nth-child(2n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-xs-2:nth-child(n + 3).margin-right-lg {
        margin-top: 20px;
    }
    .layout__items--flex .column-xs-2:nth-child(n + 3).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-xs-2:nth-child(n + 3).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-xs-2.margin-right-lg {
        width: calc(50% - 10px);
    }
    .layout__items--flex .column-xs-2.margin-right-md {
        width: calc(50% - 8px);
    }
    .layout__items--flex .column-xs-2.margin-right-sm {
        width: calc(50% - 5px);
    }
    .layout__items--flex .column-xs-2:nth-child(n + 3).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-xs-2:nth-child(n + 3).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-xs-2.margin-right-xs {
        width: calc(50% - 5px);
    }
    .layout__items--flex .column-xs-2.margin-right-xxs {
        width: calc(50% - 2px);
    }
    .layout__items--flex .column-xs-2.margin-right-default,
    .layout__items--flex .column-xs-2.margin-right-none {
        width: calc(50% - 0px);
    }
    .layout__items--flex .column-xs-3:nth-child(3n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-xs-3:nth-child(n + 4).margin-right-lg {
        margin-top: 20px;
    }
    .layout__items--flex .column-xs-3:nth-child(n + 4).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-xs-3:nth-child(n + 4).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-xs-3.margin-right-lg {
        width: calc(33.3333333333% - 13.3333333333px);
    }
    .layout__items--flex .column-xs-3.margin-right-md {
        width: calc(33.3333333333% - 10.6666666667px);
    }
    .layout__items--flex .column-xs-3.margin-right-sm {
        width: calc(33.3333333333% - 6.6666666667px);
    }
    .layout__items--flex .column-xs-3:nth-child(n + 4).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-xs-3:nth-child(n + 4).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-xs-3.margin-right-xs {
        width: calc(33.3333333333% - 6.6666666667px);
    }
    .layout__items--flex .column-xs-3.margin-right-xxs {
        width: calc(33.3333333333% - 2.6666666667px);
    }
    .layout__items--flex .column-xs-3.margin-right-default,
    .layout__items--flex .column-xs-3.margin-right-none {
        width: calc(33.3333333333% - 0px);
    }
    .layout__items--flex .column-xs-4:nth-child(4n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-xs-4:nth-child(n + 5).margin-right-lg {
        margin-top: 20px;
    }
    .layout__items--flex .column-xs-4:nth-child(n + 5).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-xs-4:nth-child(n + 5).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-xs-4.margin-right-lg {
        width: calc(25% - 15px);
    }
    .layout__items--flex .column-xs-4.margin-right-md {
        width: calc(25% - 12px);
    }
    .layout__items--flex .column-xs-4.margin-right-sm {
        width: calc(25% - 7.5px);
    }
    .layout__items--flex .column-xs-4:nth-child(n + 5).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-xs-4:nth-child(n + 5).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-xs-4.margin-right-xs {
        width: calc(25% - 7.5px);
    }
    .layout__items--flex .column-xs-4.margin-right-xxs {
        width: calc(25% - 3px);
    }
    .layout__items--flex .column-xs-4.margin-right-default,
    .layout__items--flex .column-xs-4.margin-right-none {
        width: calc(25% - 0px);
    }
}
@media (max-width: 479px) {
    .layout__items--flex .column-xxs-0 {
        flex: 1;
    }
    .layout__items--flex .column-xxs-1 {
        width: 100%;
        flex: none;
    }
    .layout__items--flex .column-xxs-1:nth-child(n + 2).margin-right-lg,
    .layout__items--flex .column-xxs-1:nth-child(n + 2).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-xxs-1:nth-child(n + 2).margin-right-sm,
    .layout__items--flex .column-xxs-1:nth-child(n + 2).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-xxs-1:nth-child(n + 2).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-xxs-2:nth-child(2n) {
        margin-right: 0 !important;
    }
    .layout__items--flex .column-xxs-2:nth-child(n + 3).margin-right-lg {
        margin-top: 20px;
    }
    .layout__items--flex .column-xxs-2:nth-child(n + 3).margin-right-md {
        margin-top: 16px;
    }
    .layout__items--flex .column-xxs-2:nth-child(n + 3).margin-right-sm {
        margin-top: 10px;
    }
    .layout__items--flex .column-xxs-2.margin-right-lg {
        width: calc(50% - 10px);
    }
    .layout__items--flex .column-xxs-2.margin-right-md {
        width: calc(50% - 8px);
    }
    .layout__items--flex .column-xxs-2.margin-right-sm {
        width: calc(50% - 5px);
    }
    .layout__items--flex .column-xxs-2:nth-child(n + 3).margin-right-xs {
        margin-top: 10px;
    }
    .layout__items--flex .column-xxs-2:nth-child(n + 3).margin-right-xxs {
        margin-top: 4px;
    }
    .layout__items--flex .column-xxs-2.margin-right-xs {
        width: calc(50% - 5px);
    }
    .layout__items--flex .column-xxs-2.margin-right-xxs {
        width: calc(50% - 2px);
    }
    .layout__items--flex .column-xxs-2.margin-right-default,
    .layout__items--flex .column-xxs-2.margin-right-none {
        width: calc(50% - 0px);
    }
}

.header-simple__wrapper,
.header-simple__top-right {
    /* Adds an arrow up icon to the element where it is added */
}
@media (max-width: 1199px) and (max-width: 1199px) {
    .header-simple__wrapper .navigation-group__heading[aria-expanded='true'],
    .header-simple__wrapper
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true'],
    .header-simple__wrapper
        navigation-list__group
        .nav-list-simple__heading[aria-expanded='true'],
    .header-simple__wrapper .menu-toggle.dropdown-toggle[aria-expanded='true'],
    .header-simple__top-right .navigation-group__heading[aria-expanded='true'],
    .header-simple__top-right
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true'],
    .header-simple__top-right
        navigation-list__group
        .nav-list-simple__heading[aria-expanded='true'],
    .header-simple__top-right
        .menu-toggle.dropdown-toggle[aria-expanded='true'] {
        color: #fff !important;
    }
}
@media (max-width: 1199px) {
    .header-simple__wrapper
        .navigation-group__heading[aria-expanded='true']
        [data-arrow-svg],
    .header-simple__wrapper
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        [data-arrow-svg],
    .header-simple__wrapper
        navigation-list__group
        .nav-list-simple__heading[aria-expanded='true']
        [data-arrow-svg],
    .header-simple__wrapper
        .menu-toggle.dropdown-toggle[aria-expanded='true']
        [data-arrow-svg],
    .header-simple__top-right
        .navigation-group__heading[aria-expanded='true']
        [data-arrow-svg],
    .header-simple__top-right
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        [data-arrow-svg],
    .header-simple__top-right
        navigation-list__group
        .nav-list-simple__heading[aria-expanded='true']
        [data-arrow-svg],
    .header-simple__top-right
        .menu-toggle.dropdown-toggle[aria-expanded='true']
        [data-arrow-svg] {
        transform: rotate(180deg);
    }
}
@media (max-width: 1199px) and (max-width: 1199px) {
    .header-simple__wrapper
        .navigation-group__heading[aria-expanded='true']
        [data-arrow-svg]
        polygon,
    .header-simple__wrapper
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        [data-arrow-svg]
        polygon,
    .header-simple__wrapper
        navigation-list__group
        .nav-list-simple__heading[aria-expanded='true']
        [data-arrow-svg]
        polygon,
    .header-simple__wrapper
        .menu-toggle.dropdown-toggle[aria-expanded='true']
        [data-arrow-svg]
        polygon,
    .header-simple__top-right
        .navigation-group__heading[aria-expanded='true']
        [data-arrow-svg]
        polygon,
    .header-simple__top-right
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        [data-arrow-svg]
        polygon,
    .header-simple__top-right
        navigation-list__group
        .nav-list-simple__heading[aria-expanded='true']
        [data-arrow-svg]
        polygon,
    .header-simple__top-right
        .menu-toggle.dropdown-toggle[aria-expanded='true']
        [data-arrow-svg]
        polygon {
        fill: #fff;
    }
}
@media (min-width: 1200px) {
    .header-simple__wrapper .navigation-group__heading svg[data-arrow-svg],
    .header-simple__wrapper
        .navigation-list
        .nav-list-simple__heading
        svg[data-arrow-svg],
    .header-simple__wrapper
        navigation-list__group
        .nav-list-simple__heading
        svg[data-arrow-svg],
    .header-simple__wrapper .menu-toggle.dropdown-toggle svg[data-arrow-svg],
    .header-simple__top-right .navigation-group__heading svg[data-arrow-svg],
    .header-simple__top-right
        .navigation-list
        .nav-list-simple__heading
        svg[data-arrow-svg],
    .header-simple__top-right
        navigation-list__group
        .nav-list-simple__heading
        svg[data-arrow-svg],
    .header-simple__top-right .menu-toggle.dropdown-toggle svg[data-arrow-svg] {
        display: none;
    }
}
.header-simple__wrapper .dropup,
.header-simple__wrapper .dropdown,
.header-simple__top-right .dropup,
.header-simple__top-right .dropdown {
    position: relative;
}
.header-simple__wrapper .dropdown-menu,
.header-simple__top-right .dropdown-menu {
    position: absolute;
    display: none;
    list-style: none;
    background-clip: padding-box;
    z-index: 1000;
}
.header-simple__wrapper .dropdown-item,
.header-simple__top-right .dropdown-item {
    display: block;
    width: 100%;
    clear: both;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.header-simple__wrapper .dropdown-item.active,
.header-simple__wrapper .dropdown-item:active,
.header-simple__top-right .dropdown-item.active,
.header-simple__top-right .dropdown-item:active {
    text-decoration: none;
}
.header-simple__wrapper .dropdown-item.disabled,
.header-simple__wrapper .dropdown-item:disabled,
.header-simple__top-right .dropdown-item.disabled,
.header-simple__top-right .dropdown-item:disabled {
    background-color: transparent;
}
@media (min-width: 1200px) {
    .header-simple__wrapper .nav-icon-simple .image-mobile,
    .header-simple__top-right .nav-icon-simple .image-mobile {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__wrapper .nav-icon-simple .image-default,
    .header-simple__top-right .nav-icon-simple .image-default {
        display: none;
    }
    .header-simple__wrapper .nav-icon-simple .image-mobile,
    .header-simple__top-right .nav-icon-simple .image-mobile {
        display: block;
        margin-right: 4px;
    }
}
.header-simple__wrapper .dropdown-toggle .dropdown-copy,
.header-simple__wrapper .dropdown-toggle .dropdown-copy,
.header-simple__top-right .dropdown-toggle .dropdown-copy,
.header-simple__top-right .dropdown-toggle .dropdown-copy {
    border-bottom: 2px solid transparent;
    margin-top: 2px;
}
@media (min-width: 1200px) {
    .header-simple__wrapper .dropdown-toggle:focus .dropdown-copy,
    .header-simple__wrapper .dropdown-toggle:hover .dropdown-copy,
    .header-simple__top-right .dropdown-toggle:focus .dropdown-copy,
    .header-simple__top-right .dropdown-toggle:hover .dropdown-copy {
        border-color: currentColor;
    }
}
.header-simple__wrapper .dropdown-menu.show,
.header-simple__wrapper .show > .dropdown-menu,
.header-simple__top-right .dropdown-menu.show,
.header-simple__top-right .show > .dropdown-menu {
    display: block;
}
@media (min-width: 1200px) {
    .header-simple__wrapper .show > .dropdown-toggle .dropdown-copy,
    .header-simple__top-right .show > .dropdown-toggle .dropdown-copy {
        color: var(--highlight-color-override);
        border-bottom: 2px solid var(--highlight-color-override);
        margin-top: 2px;
    }
}
.header-simple__wrapper .nav,
.header-simple__top-right .nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.header-simple__wrapper .nav-link,
.header-simple__top-right .nav-link {
    display: block;
}
.header-simple__wrapper .nav-tabs .nav-link.disabled,
.header-simple__top-right .nav-tabs .nav-link.disabled {
    background-color: transparent;
    border-color: transparent;
}
.header-simple__wrapper .tab-content > .tab-pane,
.header-simple__top-right .tab-content > .tab-pane {
    display: none;
    opacity: 0;
    filter: alpha(opacity=0);
}
.header-simple__wrapper .tab-content > .active,
.header-simple__top-right .tab-content > .active {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 1199px) {
    .header-simple__wrapper .tab-content > .active .tab-item,
    .header-simple__top-right .tab-content > .active .tab-item {
        order: 2;
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .header-simple__wrapper .navigation__content.menu-dropdown,
    .header-simple__top-right .navigation__content.menu-dropdown {
        box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
        border-bottom: 1px solid #000;
    }
}
.header-simple__wrapper
    .navigation__content.menu-dropdown
    .nav-list-simple__heading[role='link'][aria-expanded='false']
    + .nav-list-simple__links,
.header-simple__top-right
    .navigation__content.menu-dropdown
    .nav-list-simple__heading[role='link'][aria-expanded='false']
    + .nav-list-simple__links {
    display: none;
}
@media (min-width: 1200px) {
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .nav-list-simple__heading[role='link'][aria-expanded='true']
        + .nav-list-simple__links,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .nav-list-simple__heading[role='link'][aria-expanded='true']
        + .nav-list-simple__links {
        padding-left: 20px;
    }
}
.header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list__group-content
    + div,
.header-simple__top-right
    .navigation__content.menu-dropdown
    .navigation-list__group-content
    + div {
    margin-top: 4px;
}
.header-simple__wrapper .navigation__content.menu-dropdown .navigation-list,
.header-simple__top-right .navigation__content.menu-dropdown .navigation-list {
    list-style: none;
}
@media (max-width: 1199px) {
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__links
        a,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__links
        a {
        padding-bottom: 14px;
        padding-top: 14px;
    }
}
@media (min-width: 1200px) {
    .header-simple__wrapper .navigation__content.menu-dropdown .navigation-list,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list {
        margin: 10px 0;
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__links
        a,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__links
        a {
        padding-bottom: 4px;
        padding-top: 4px;
    }
}
.header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links,
.header-simple__top-right
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links {
    padding-top: 0;
}
.header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a,
.header-simple__top-right
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a {
    font-size: 16px;
    text-decoration: none;
    display: block;
}
.header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a:focus,
.header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a:hover,
.header-simple__top-right
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a:focus,
.header-simple__top-right
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a:hover {
    color: var(--highlight-color-override);
}
@media (max-width: 1199px) {
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list__group
        a,
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list__group
        .nav-list-simple__heading,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list__group
        a,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list__group
        .nav-list-simple__heading {
        border-bottom: 1px solid #ccc;
    }
}
@media (min-width: 1200px) {
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list__group-content,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list__group-content {
        padding: 0 20px;
    }
}
.header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list
    .nav-list-simple__heading,
.header-simple__top-right
    .navigation__content.menu-dropdown
    .navigation-list
    .nav-list-simple__heading {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: none;
    font-weight: normal;
    font-style: normal;
    display: block;
    text-decoration: none;
}
.header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list
    .nav-list-simple__heading--main,
.header-simple__top-right
    .navigation__content.menu-dropdown
    .navigation-list
    .nav-list-simple__heading--main {
    font-weight: 700;
}
@media (min-width: 1200px) {
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading {
        padding-bottom: 4px;
        padding-top: 4px;
        font-size: 16px;
    }
}
@media (max-width: 1199px) {
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading {
        display: flex;
        justify-content: space-between;
        -webkit-flex-align: center;
        align-items: center;
        padding-bottom: 14px;
        padding-top: 14px;
        padding-right: 20px;
        font-size: 15px;
        cursor: pointer;
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true'],
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true'] {
        background-color: var(--color-primary);
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg:not(.nav-list-simple__heading-arrow),
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg:not(.nav-list-simple__heading-arrow) {
        transform: rotate(-90deg);
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg.nav-list-simple__heading-arrow,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg.nav-list-simple__heading-arrow {
        transform: rotate(180deg);
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg
        polygon,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg
        polygon {
        fill: #fff;
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='false']
        + .nav-list-simple__links,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='false']
        + .nav-list-simple__links {
        display: none;
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links
        .nav-list-simple__links,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links
        .nav-list-simple__links {
        display: block !important;
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links:not(.nav-list-simple__links--static),
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links:not(.nav-list-simple__links--static) {
        background: #fff;
        animation: 0.5s ease 0s 1 normal forwards running slideInFromRight;
        transform: translateX(0%);
        position: fixed;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        opacity: 1;
        visibility: visible;
        z-index: 1000;
        overflow-y: auto;
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links:not(.nav-list-simple__links--static).inactive,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links:not(
            .nav-list-simple__links--static
        ).inactive {
        animation: 0.5s ease 0s 1 normal forwards running slideOutFromLeft;
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links:not(.nav-list-simple__links--static)
        .nav-list-simple__links,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links:not(.nav-list-simple__links--static)
        .nav-list-simple__links {
        display: block !important;
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading
        svg:not(.nav-list-simple__heading-arrow),
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading
        svg:not(.nav-list-simple__heading-arrow) {
        transform: rotate(-90deg);
    }
    .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading
        svg
        polygon,
    .header-simple__top-right
        .navigation__content.menu-dropdown
        .navigation-list
        .nav-list-simple__heading
        svg
        polygon {
        fill: var(--color-primary);
    }
}
@media (min-width: 1200px) {
    .header-simple__wrapper
        .header-simple__main-item.show
        .navigation-arrow-up:after,
    .header-simple__wrapper
        .header-simple__main-item.show
        .navigation-arrow-up:before,
    .header-simple__top-right
        .header-simple__main-item.show
        .navigation-arrow-up:after,
    .header-simple__top-right
        .header-simple__main-item.show
        .navigation-arrow-up:before {
        border: 14px solid transparent;
        bottom: 0;
        content: ' ';
        height: 0;
        position: absolute;
        width: 0;
    }
    .header-simple__wrapper
        .header-simple__main-item.show
        .navigation-arrow-up:before,
    .header-simple__top-right
        .header-simple__main-item.show
        .navigation-arrow-up:before {
        border-bottom-color: #fff;
        left: 45%;
        position: absolute;
        bottom: 0;
        z-index: 1002;
    }
    .header-simple__wrapper
        .header-simple__main-item.show
        .navigation-arrow-up:after,
    .header-simple__top-right
        .header-simple__main-item.show
        .navigation-arrow-up:after {
        border-bottom-color: #444;
        left: 45%;
        position: absolute;
        bottom: 0;
        z-index: 1;
    }
}
@media (max-width: 1199px) {
    .header-simple__wrapper .header-simple__main-item,
    .header-simple__top-right .header-simple__main-item {
        border-bottom: 1px solid #ccc;
    }
}
@media (min-width: 1200px) {
    .header-simple__wrapper .header-simple__main-item .navigation__content,
    .header-simple__top-right .header-simple__main-item .navigation__content {
        box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
        opacity: 1;
        filter: alpha(opacity=100);
        background: #fff;
        left: 0;
        position: absolute;
        top: 100%;
        z-index: 1000;
    }
}
@media (min-width: 1200px) {
    .header-simple__wrapper .d-md-flex,
    .header-simple__top-right .d-md-flex {
        display: flex;
    }
}

@media (max-width: 1199px) {
    .header-simple__main {
        overflow: hidden;
    }
    .header-simple__highlight-item {
        width: 100%;
        border-top: 1px solid #666;
    }
    .header-simple__highlight-item .link {
        width: 100%;
        padding: 4px 20px;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    .header-simple__highlight-item .link img {
        float: left;
        margin: 0;
    }
    .header-simple__highlight-item .link .heading {
        display: block;
        float: left;
        font-size: 16px;
    }
    .header-simple__highlight-item:last-of-type {
        border: none;
    }
}
@media (max-width: 1199px) {
    .overflow-y-hidden {
        overflow-y: hidden;
    }
}

.header-simple {
    font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 1199px) {
    .header-simple {
        min-height: var(--header-simple-nav-height);
    }
    .header-simple[aria-hidden='true'] {
        display: block;
    }
    .header-simple--v2 {
        min-height: var(--header-simple-nav-height);
    }
}
@media (min-width: 1200px) {
    .header-simple {
        min-height: calc(var(--header-simple-nav-height) + 30px);
    }
    .header-simple[aria-hidden='true'] {
        display: block;
    }
    .header-simple--v2 {
        min-height: calc(var(--header-simple-nav-height) + 30px);
    }
}
.header-simple-content.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    transition: all 0.5s ease;
}
.header-simple__top {
    background: var(--header-simple-top-navigation-background-color);
    padding: 0 6px 0 20px;
}
.header-simple__top-tabs {
    height: 30px;
}
.header-simple__top-tabs-list {
    background-color: #fff;
    display: flex;
    overflow: auto;
    height: 100%;
    align-items: stretch;
}
.header-simple__top-tabs-list-item {
    padding: 4px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-simple__top-tabs-list-item.selected {
    background-color: var(--header-simple-top-navigation-background-color);
    color: #fff;
}
.header-simple__top-tabs-list-item-anchor {
    text-decoration: none !important;
    inline-size: max-content;
}
.header-simple__top--v2 {
    height: 40px;
    padding: 0;
}
@media (max-width: 991px) {
    .header-simple__top[data-display-on-simplified='false'] {
        display: none;
    }
}
.header-simple__top-container {
    display: flex;
    -webkit-flex-align: center;
    align-items: center;
    height: 40px;
}
.header-simple__top-right {
    margin-left: auto;
    margin-right: 4px;
    display: flex;
}
.header-simple__top-right--v2 {
    margin: 0;
    width: 100%;
    height: 100%;
}
.header-simple__top-right--v2[data-show-product-lines='False'] {
    justify-content: flex-end;
}
.header-simple__top-right--v2[data-show-product-lines='True'] {
    justify-content: space-between;
}
.header-simple__top-right--v2 .header-simple__top-right-list {
    position: relative;
}
.header-simple__top .left-link svg {
    transform: rotate(90deg);
}
@media (max-width: 1199px) {
    .header-simple__top {
        display: none;
    }
}
.header-simple__wrapper {
    display: flex;
    -webkit-flex-align: center;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    filter: alpha(opacity=0);
    background: #f9f9f9;
    border-bottom: 1px solid #888;
    padding-left: 10px;
}
@keyframes fadein {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
    }
}
.header-simple__wrapper.visible {
    animation: fadein 1s;
    opacity: 1;
    filter: alpha(opacity=100);
}
@media (min-width: 1200px) {
    .header-simple__wrapper {
        padding-right: 10px;
    }
    .header-simple__wrapper:not(.header-simple__wrapper--v2) {
        height: 59px;
    }
}
@media (max-width: 1199px) {
    .header-simple__wrapper {
        height: var(--header-simple-nav-height);
    }
}
@media (min-width: 1200px) {
    .header-simple__wrapper--hidden-on-desktop {
        display: none;
    }
}
@media (min-width: 1200px) {
    .header-simple__wrapper--v2 {
        justify-content: center;
    }
}
@media (max-width: 1199px) {
    .header-simple__wrapper--v2 {
        background: var(--header-simple-top-navigation-background-color);
        height: var(--header-simple-nav-height);
    }
}
.header-simple__mask {
    visibility: hidden;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transition:
        opacity 0.4s,
        visibility 0.4s;
}
.header-simple__mask.show {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}
@media (min-width: 1200px) {
    .header-simple__mask.show + .header-simple {
        position: relative;
        z-index: 1000;
    }
}
.header-simple__main .bottom-nav-mobile {
    display: none;
}
.header-simple__main .header-simple__main-item > .link {
    font-weight: bold;
    text-decoration: none;
}
@media (min-width: 1600px) {
    .header-simple__main {
        padding-left: 20px;
    }
    .header-simple__main-item > .link,
    .header-simple__main-item .dropdown-toggle {
        padding: 18px 16px;
    }
}
@media (min-width: 1200px) {
    .header-simple__main {
        display: flex;
    }
    .header-simple__main:not(.header-simple__main--v2)
        .header-simple__main-item {
        font-size: 14px;
    }
}
@media (min-width: 1200px) {
    .header-simple__main {
        padding-left: 14px;
        height: 100%;
    }
    .header-simple__main-item > .link,
    .header-simple__main-item .dropdown-toggle {
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 18px 12px;
    }
    .header-simple__main-item > .link:hover .link_wrapper,
    .header-simple__main-item > .link:focus .link_wrapper {
        color: var(--highlight-color-override);
    }
    .header-simple__main-item > .link.active .link_wrapper {
        border-bottom: 2px solid
            var(--header-simple-top-navigation-background-color);
        margin-top: 2px;
        color: var(--header-simple-top-navigation-background-color);
    }
}
@media (max-width: 1199px) {
    .header-simple__main-item > .link,
    .header-simple__main-item .dropdown-toggle {
        font-size: 16px;
        padding: 14px 20px;
        text-align: left;
        text-decoration: none;
        width: 100%;
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
    }
    .header-simple__main-item > .link[aria-expanded='true'],
    .header-simple__main-item .dropdown-toggle[aria-expanded='true'] {
        background-color: #000;
        color: #fff;
    }
    .header-simple__main-item .dropdown-copy {
        display: block;
    }
    .header-simple__main .bottom-nav-mobile {
        display: block;
        background-color: var(--header-simple-top-navigation-background-color);
        padding: 8px;
        margin: 0px 10px 10px 10px;
    }
    .header-simple__main .bottom-nav-mobile a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
    }
}
@media (max-width: 1199px) {
    .header-simple__main--v2 .header-simple__main-item {
        font-size: 16px;
    }
}
.header-simple__primary {
    height: 100%;
}
@media (max-width: 1199px) {
    .header-simple__primary--v2 {
        display: none !important;
    }
}
.header-simple__secondary {
    display: flex;
    flex: 0 0 auto;
}
@media (min-width: 1200px) {
    .header-simple__secondary--v2 {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__secondary--v2 {
        flex: 0 1 25%;
        justify-content: flex-end;
        height: 100%;
    }
}
@media (min-width: 1200px) {
    .header-simple__secondary .header-simple__cart,
    .header-simple__secondary .header-simple-item--account-toggle {
        display: none;
    }
}
.header-simple__highlight-item,
.header-simple__country-item,
.header-simple__account-item,
.header-simple__cart-item,
.header-simple__search-item,
.header-simple__menu-item {
    font-size: 16px;
    text-decoration: none;
    height: 100%;
}
.header-simple__highlight-item > .link,
.header-simple__highlight-item .dropdown-toggle,
.header-simple__country-item > .link,
.header-simple__country-item .dropdown-toggle,
.header-simple__account-item > .link,
.header-simple__account-item .dropdown-toggle,
.header-simple__cart-item > .link,
.header-simple__cart-item .dropdown-toggle,
.header-simple__search-item > .link,
.header-simple__search-item .dropdown-toggle,
.header-simple__menu-item > .link,
.header-simple__menu-item .dropdown-toggle {
    text-decoration: none;
}
@media (min-width: 1200px) {
    .header-simple__highlight-item > .link,
    .header-simple__highlight-item .dropdown-toggle,
    .header-simple__country-item > .link,
    .header-simple__country-item .dropdown-toggle,
    .header-simple__account-item > .link,
    .header-simple__account-item .dropdown-toggle,
    .header-simple__cart-item > .link,
    .header-simple__cart-item .dropdown-toggle,
    .header-simple__search-item > .link,
    .header-simple__search-item .dropdown-toggle,
    .header-simple__menu-item > .link,
    .header-simple__menu-item .dropdown-toggle {
        padding: 10px 20px;
    }
}
@media (min-width: 1200px) {
    .header-simple__highlight-item > .link,
    .header-simple__highlight-item .dropdown-toggle,
    .header-simple__country-item > .link,
    .header-simple__country-item .dropdown-toggle,
    .header-simple__account-item > .link,
    .header-simple__account-item .dropdown-toggle,
    .header-simple__cart-item > .link,
    .header-simple__cart-item .dropdown-toggle,
    .header-simple__search-item > .link,
    .header-simple__search-item .dropdown-toggle,
    .header-simple__menu-item > .link,
    .header-simple__menu-item .dropdown-toggle {
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
    }
    .header-simple__highlight-item > .link img,
    .header-simple__highlight-item > .link svg,
    .header-simple__highlight-item .dropdown-toggle img,
    .header-simple__highlight-item .dropdown-toggle svg,
    .header-simple__country-item > .link img,
    .header-simple__country-item > .link svg,
    .header-simple__country-item .dropdown-toggle img,
    .header-simple__country-item .dropdown-toggle svg,
    .header-simple__account-item > .link img,
    .header-simple__account-item > .link svg,
    .header-simple__account-item .dropdown-toggle img,
    .header-simple__account-item .dropdown-toggle svg,
    .header-simple__cart-item > .link img,
    .header-simple__cart-item > .link svg,
    .header-simple__cart-item .dropdown-toggle img,
    .header-simple__cart-item .dropdown-toggle svg,
    .header-simple__search-item > .link img,
    .header-simple__search-item > .link svg,
    .header-simple__search-item .dropdown-toggle img,
    .header-simple__search-item .dropdown-toggle svg,
    .header-simple__menu-item > .link img,
    .header-simple__menu-item > .link svg,
    .header-simple__menu-item .dropdown-toggle img,
    .header-simple__menu-item .dropdown-toggle svg {
        margin-right: 6px;
    }
}
@media (max-width: 1199px) {
    .header-simple__highlight-item > .link,
    .header-simple__highlight-item .dropdown-toggle,
    .header-simple__country-item > .link,
    .header-simple__country-item .dropdown-toggle,
    .header-simple__account-item > .link,
    .header-simple__account-item .dropdown-toggle,
    .header-simple__cart-item > .link,
    .header-simple__cart-item .dropdown-toggle,
    .header-simple__search-item > .link,
    .header-simple__search-item .dropdown-toggle,
    .header-simple__menu-item > .link,
    .header-simple__menu-item .dropdown-toggle {
        color: #000;
    }
}
.header-simple__highlight-item > .link text,
.header-simple__highlight-item .dropdown-toggle text,
.header-simple__country-item > .link text,
.header-simple__country-item .dropdown-toggle text,
.header-simple__account-item > .link text,
.header-simple__account-item .dropdown-toggle text,
.header-simple__cart-item > .link text,
.header-simple__cart-item .dropdown-toggle text,
.header-simple__search-item > .link text,
.header-simple__search-item .dropdown-toggle text,
.header-simple__menu-item > .link text,
.header-simple__menu-item .dropdown-toggle text {
    font-size: 8px;
}
@media (max-width: 991px) {
    .header-simple__highlight-item > .link text,
    .header-simple__highlight-item .dropdown-toggle text,
    .header-simple__country-item > .link text,
    .header-simple__country-item .dropdown-toggle text,
    .header-simple__account-item > .link text,
    .header-simple__account-item .dropdown-toggle text,
    .header-simple__cart-item > .link text,
    .header-simple__cart-item .dropdown-toggle text,
    .header-simple__search-item > .link text,
    .header-simple__search-item .dropdown-toggle text,
    .header-simple__menu-item > .link text,
    .header-simple__menu-item .dropdown-toggle text {
        fill: #000;
    }
}
@media (max-width: 1199px) {
    .header-simple__highlight-item .primary-item,
    .header-simple__highlight-item > .nav-icon-simple,
    .header-simple__country-item .primary-item,
    .header-simple__country-item > .nav-icon-simple,
    .header-simple__account-item .primary-item,
    .header-simple__account-item > .nav-icon-simple,
    .header-simple__cart-item .primary-item,
    .header-simple__cart-item > .nav-icon-simple,
    .header-simple__search-item .primary-item,
    .header-simple__search-item > .nav-icon-simple,
    .header-simple__menu-item .primary-item,
    .header-simple__menu-item > .nav-icon-simple {
        display: block;
        font-size: 11px;
        text-align: center;
        width: 100%;
        margin-right: 14px;
    }
}
@media (max-width: 1199px) {
    .header-simple__highlight-item .secondary-item,
    .header-simple__country-item .secondary-item,
    .header-simple__account-item .secondary-item,
    .header-simple__cart-item .secondary-item,
    .header-simple__search-item .secondary-item,
    .header-simple__menu-item .secondary-item {
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
    }
}
.header-simple__highlight-item
    .header-simple__country--mobile
    div.header-simple__main-item.collapsed,
.header-simple__country-item
    .header-simple__country--mobile
    div.header-simple__main-item.collapsed,
.header-simple__account-item
    .header-simple__country--mobile
    div.header-simple__main-item.collapsed,
.header-simple__cart-item
    .header-simple__country--mobile
    div.header-simple__main-item.collapsed,
.header-simple__search-item
    .header-simple__country--mobile
    div.header-simple__main-item.collapsed,
.header-simple__menu-item
    .header-simple__country--mobile
    div.header-simple__main-item.collapsed {
    border-bottom: 0px;
}
.header-simple__icon {
    float: left;
    padding-left: 10px;
}
.header-simple__icon-content {
    display: block;
    overflow: hidden;
}
.header-simple__icon-content img {
    aspect-ratio: auto;
}
.header-simple__icon-content img.lazyload,
.header-simple__icon-content img.lazyloading {
    min-width: 125px;
}
.header-simple__highlight-item img {
    aspect-ratio: 1;
}
@media (min-width: 992px) {
    .header-simple__highlight-item .description {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__highlight-item .heading {
        display: none;
    }
    .header-simple__highlight-item .description {
        margin-top: 2px;
        display: block;
        color: #000;
    }
}
.header-simple__highlight-item.mobile img {
    aspect-ratio: 1;
}
@media (min-width: 992px) {
    .header-simple__highlight-item.mobile {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__highlight-item.mobile {
        display: block;
        background: transparent;
        text-align: left;
        padding: 10px 20px 10px 20px;
        border-top: none;
    }
    .header-simple__highlight-item.mobile .link {
        padding: 0px;
    }
}
.header-simple__highlight-item--v2 .link {
    padding: 0 14px;
}
.header-simple__highlight-item--v2 .link img {
    margin-right: 0;
}
.header-simple__highlight-item--v2.mobile {
    padding: 14px 20px;
    border-bottom: 1px solid #ccc;
}
.header-simple__country-dropdown {
    height: 100%;
}
@media (min-width: 1200px) {
    .header-simple__country-dropdown {
        display: flex;
        color: #fff;
        padding: 10px 20px;
    }
    .header-simple__country-dropdown[aria-expanded='true'] svg {
        transform: rotate(180deg);
    }
}
@media (max-width: 1199px) {
    .header-simple__country-dropdown {
        background: transparent;
        border: none;
        text-align: left;
        padding: 10px 20px 10px 20px;
    }
    .header-simple__country-dropdown svg {
        transform: rotate(-90deg);
    }
    .header-simple__country-dropdown polygon {
        fill: var(--header-simple-top-navigation-background-color);
    }
}
@media (min-width: 1200px) {
    .header-simple__country-item {
        position: relative;
    }
}
@media (max-width: 1199px) {
    .header-simple__country-content {
        animation: 0.5s ease 0s 1 normal forwards running slideInFromRight;
        transform: translateX(0%);
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        background: #fff;
        width: 100vw;
        height: 100vh;
        z-index: 1000;
        padding: 20px 20px 0 20px;
        margin-top: 10px;
    }
    .header-simple__country-content.active {
        display: block;
    }
    .header-simple__country-content.inactive {
        animation: 0.5s ease 0s 1 normal forwards running slideOutFromLeft;
    }
}
@media (max-width: 1199px) {
    .header-simple__country-content--mobile {
        margin: 0;
        padding: 0;
    }
}
@media (max-width: 1199px) {
    .header-simple__country-content-item.navigation-drawer-pane__content-item--menu {
        display: flex;
        justify-content: space-between;
        -webkit-flex-align: center;
        align-items: center;
        background: #eee;
        padding: 10px;
    }
}
.header-simple__account-toggle {
    display: none;
}
.header-simple__account-toggle svg {
    width: 25px;
    height: 25px;
}
@media (max-width: 1199px) {
    .header-simple__account-toggle {
        display: block;
        border: none;
        background: transparent;
        position: relative;
    }
    .header-simple__account-toggle .dropdown-account__icon-initials {
        position: absolute;
        left: 0;
        right: 0;
        top: 5px;
    }
    .header-simple__account-toggle--v2 {
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
        height: 100%;
        padding: 0 8px;
    }
    .header-simple__account-toggle--v2 svg {
        color: #fff;
    }
    .header-simple__account-toggle--v2[aria-expanded='true'] {
        background: #fff;
    }
    .header-simple__account-toggle--v2[aria-expanded='true'] svg path,
    .header-simple__account-toggle--v2[aria-expanded='true'] svg circle {
        stroke: var(--header-simple-top-navigation-background-color);
    }
    .header-simple__account-toggle--v2[aria-expanded='true']
        .dropdown-account__icon-initials {
        color: var(--header-simple-top-navigation-background-color);
    }
    .header-simple__account-toggle--v2[aria-expanded='true'] svg path {
        fill: var(--header-simple-top-navigation-background-color);
    }
    .header-simple__account-toggle--v2 svg {
        width: 22px;
        height: 22px;
    }
    .header-simple__account-toggle--v2 svg.logged-in {
        width: 26px;
        height: 26px;
    }
    .header-simple__account-toggle--v2 svg path,
    .header-simple__account-toggle--v2 svg circle {
        stroke: #fff;
    }
    .header-simple__account-toggle--v2 .dropdown-account__icon-initials {
        top: auto;
        color: #fff;
    }
}
@media (min-width: 1200px) {
    .header-simple__item--account-toggle {
        display: none;
    }
}
.header-simple .dropdown-account__icon {
    width: 22px;
    height: 22px;
}
.header-simple .dropdown-account__icon.logged-in {
    width: 26px;
    height: 26px;
}
@media (max-width: 1199px) {
    .header-simple .dropdown-account__label {
        font-weight: bold;
        font-size: 16px;
        padding-left: 10px;
    }
}
@media (min-width: 1200px) {
    .header-simple .dropdown-account__label {
        font-weight: normal;
    }
}
@media (min-width: 1600px) {
    .header-simple .dropdown-account:before,
    .header-simple .dropdown-account:after {
        left: 45% !important;
    }
}
@media (min-width: 1200px) {
    .header-simple .dropdown-account:before,
    .header-simple .dropdown-account:after {
        left: 11%;
    }
}
@media (min-width: 1200px) {
    .header-simple__account:before {
        content: '';
        height: 60%;
        width: 1px;
        position: absolute;
        left: 0;
        bottom: 20%;
        background-color: #fff;
    }
}
@media (max-width: 1199px) {
    .header-simple__account {
        overflow: hidden;
    }
}
@media (min-width: 1200px) {
    .header-simple__account .content-logged-in-header {
        margin-top: 10px;
    }
    .header-simple__account .content[data-is-user-authenticated='false'] {
        margin-top: 0;
    }
    .header-simple__account .content[data-is-user-authenticated='false'] {
        display: flex;
        margin-top: 10px;
        padding: 20px;
    }
}
@media (min-width: 1200px) {
    .header-simple__account .link-container[data-is-user-authenticated='true'] {
        padding: 10px 0 10px 30px;
    }
    .header-simple__account
        .link-container[data-is-user-authenticated='false'] {
        padding: 5px 0;
    }
    .header-simple__account .link-container--log-out {
        background: #ccc;
    }
}
.header-simple__account .link-container--full {
    flex: 0 1 100%;
}
.header-simple__account .link-container--border {
    border-top: 1px solid #666;
}
@media (min-width: 1200px) {
    .header-simple__account .link-container--border {
        margin-top: 10px;
        padding: 20px 0 10px 0 !important;
    }
    .header-simple__account .link-container--border:not(.link-container--full) {
        margin-left: 30px;
        margin-right: 30px;
    }
}
.header-simple__account .link-item {
    font-size: 14px;
}
.header-simple__account .link-item--logged-out {
    font-weight: 600;
}
@media (max-width: 1199px) {
    .header-simple__account .link-item {
        padding: 14px 0 14px 30px;
        border-bottom: 1px solid #ccc;
    }
}
@media (min-width: 1200px) {
    .header-simple__account .link-item--create-account,
    .header-simple__account .link-item--log-in {
        font-weight: 700;
        font-size: 16px;
    }
    .header-simple__account .link-item--log-in-v2 {
        font: var(--font-family-primary);
    }
    .header-simple__account .link-item--create-account {
        padding-left: 10px;
    }
    .header-simple__account .link-item--log-in {
        padding-right: 10px;
        position: relative;
        font-weight: 700;
    }
    .header-simple__account .link-item--log-in:after {
        content: '';
        height: 100%;
        width: 1px;
        position: absolute;
        right: 0;
        top: 0;
        background: #000;
    }
    .header-simple__account .link-item--my-account {
        font-size: 16px;
        font-weight: bold;
    }
    .header-simple__account .link-item.font-color-primary-hover:hover svg {
        fill: var(--highlight-color-override);
    }
}
@media (max-width: 1199px) {
    .header-simple__account svg[aria-pressed='false'] {
        color: #000;
    }
}
@media (max-width: 1199px) {
    .header-simple__account-item {
        width: 100%;
    }
}
.header-simple__account-content {
    min-width: 250px;
}
.header-simple__account-content--v2 {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    z-index: 1000;
    display: none;
}
@media (min-width: 1600px) {
    .header-simple__account-content:not(.header-simple__account-content--v2) {
        right: 20px !important;
    }
}
@media (min-width: 1200px) {
    .header-simple__account-content:not(.header-simple__account-content--v2) {
        right: -40px;
    }
}
@media (min-width: 1200px) {
    .header-simple__account-content:not(.header-simple__account-content--v2) {
        left: auto !important;
        top: 100% !important;
        transform: none !important;
    }
}
@media (max-width: 1199px) {
    .header-simple__account-content:not(.header-simple__account-content--v2) {
        border: none !important;
        box-shadow: none !important;
        overflow: hidden;
        float: left;
    }
}
.header-simple__account--v2 .link-item {
    font-family: var(--font-family-primary);
}
.header-simple__account--v2 .link-item--logged-in {
    font-weight: 600;
}
.header-simple__pane-account--mobile {
    animation: 0.5s ease 0s 1 normal forwards running slideInFromRight;
    transform: translateX(0%);
    display: none;
    position: absolute;
    left: 0;
    background: #fff;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    padding: 10px 20px 0 20px;
    margin-top: 15px;
}
.header-simple__pane-account--mobile.active {
    display: block;
}
.header-simple__pane-account--mobile.inactive {
    animation: 0.5s ease 0s 1 normal forwards running slideOutFromLeft;
}
.header-simple__pane-account--mobile.header-simple__pane-account--v2.active {
    margin-top: 0;
}
.header-simple__pane-account--mobile ul ul {
    display: flex;
    width: 100%;
}
.header-simple__pane-account--mobile ul ul li {
    padding-right: 14px;
    display: block;
}
.header-simple__pane-account--mobile ul ul li:last-child {
    padding-left: 14px;
}
.header-simple__pane-account--mobile ul ul li:last-child:before {
    content: '';
    height: 50%;
    width: 1px;
    position: absolute;
    left: 0;
    top: 20%;
    background: #000;
}
.header-simple__pane-account--mobile .link-container {
    padding-bottom: 14px;
}
.header-simple__pane-account--mobile .link-container--border {
    border-top: 1px solid #aaa;
    padding-top: 14px;
}
.header-simple__pane-account--mobile .link-container--logged-in a {
    font-weight: 700;
}
.header-simple__pane-account--mobile
    .link-container--sub-menu[data-is-user-authenticated='false']
    a,
.header-simple__pane-account--mobile
    .link-container--logged-out[data-is-user-authenticated='false']
    a {
    font-weight: 700;
}
.header-simple__pane-account--mobile .link-container--sub-menu {
    position: relative;
    padding-bottom: 0;
}
.header-simple__pane-account--mobile .link-container--sub-menu .link-item {
    font-size: 18px;
}
.header-simple__pane-account--mobile .link-item {
    font-size: 16px;
}
.header-simple__pane-search--mobile {
    animation: 0.5s ease 0s 1 normal forwards running slideInFromTop;
    transform: translateX(0%);
    display: none;
    position: absolute;
    left: 0;
    background: var(--color-primary);
    width: 100vw;
    height: auto;
    z-index: -1;
    padding: 10px;
}
.header-simple__pane-search--mobile.active {
    display: block;
    z-index: 2;
}
.header-simple__pane-search--mobile.inactive {
    animation: 0.5s ease 0s 1 normal forwards running slideOutFromTop;
    z-index: -1;
}
.header-simple__pane-search--mobile.header-simple__pane-search--v2.active {
    margin-top: 0;
}
.header-simple__pane-search--mobile .header-simple__search-form {
    background-color: var(--color-primary);
    padding: 0;
}
.header-simple__cart {
    height: 100%;
}
.header-simple__cart-item svg {
    transform: scale(1.2);
}
.header-simple__cart-item .header-simple__top-right-shopping-path--d {
    stroke-width: 1px;
}
@media (max-width: 1199px) {
    .header-simple__cart-item {
        padding: 0 6px;
    }
    .header-simple__cart-item .header-simple__top-right-shopping-path {
        fill: rgba(0, 0, 0, 0);
    }
    .header-simple__cart-item .header-simple__top-right-shopping-path--c {
        stroke: #000;
    }
}
@media (min-width: 1200px) {
    .header-simple__cart-item .header-simple__top-right-shopping-path {
        fill: rgba(1, 1, 1, 0);
    }
    .header-simple__cart-item .header-simple__top-right-shopping-path--c {
        stroke: #fff;
    }
}
.header-simple__cart-item-count {
    fill: #000;
}
@media (min-width: 1200px) {
    .header-simple__cart-item-count {
        fill: #fff;
    }
}
@media (min-width: 1200px) {
    .header-simple__cart--v2 .header-simple__cart-item svg {
        transform: scale(1);
        vertical-align: middle;
    }
}
@media (max-width: 1199px) {
    .header-simple__cart--v2 .header-simple__cart-item svg {
        transform: scale(1.05);
    }
}
.header-simple__cart--v2
    .header-simple__cart-item
    .header-simple__top-right-shopping-path--d {
    stroke-width: 1px;
}
@media (max-width: 1199px) {
    .header-simple__cart--v2
        .header-simple__cart-item
        .header-simple__top-right-shopping-path {
        fill: rgba(0, 0, 0, 0);
    }
    .header-simple__cart--v2
        .header-simple__cart-item
        .header-simple__top-right-shopping-path--c {
        stroke: #fff;
    }
}
@media (min-width: 1200px) {
    .header-simple__cart--v2 .header-simple__cart-item {
        margin: 0 10px 0 0;
    }
    .header-simple__cart--v2
        .header-simple__cart-item
        .header-simple__top-right-shopping-path {
        fill: rgba(1, 1, 1, 0);
    }
    .header-simple__cart--v2
        .header-simple__cart-item
        .header-simple__top-right-shopping-path--c {
        stroke: #fff;
    }
}
.header-simple__cart--v2 .header-simple__cart-item-count {
    fill: #fff;
}
@media (min-width: 1200px) {
    .header-simple__cart--v2 .header-simple__cart-item-count {
        fill: #fff;
    }
}
@media (max-width: 1199px) {
    .header-simple__search {
        overflow: hidden;
    }
}
.header-simple__search-item {
    position: relative;
}
@media (max-width: 1199px) {
    .header-simple__search-item {
        width: 100%;
    }
}
@media (min-width: 992px) and (max-width: 1599px) {
    .header-simple__search-item .heading {
        display: none;
    }
}
.header-simple__search-form {
    border: none;
}
@media (max-width: 1199px) {
    .header-simple__search-form {
        background-color: #fff;
        display: block !important;
        position: relative !important;
        min-width: 0;
        width: 100%;
        padding: 16px 20px;
    }
}
.header-simple__search-form input {
    border-radius: none;
    flex: 0 1 auto;
    font-size: 16px;
}
@media (max-width: 1199px) {
    .header-simple__search-form input {
        border-right: none;
        -webkit-appearance: none;
    }
}
.header-simple__search-form input::placeholder {
    color: #000;
    font-size: 16px;
}
.header-simple__search-form .btn {
    padding: 0 12px;
    color: var(--header-simple-mobile-font-color);
    border-color: currentColor;
}
@media (max-width: 1199px) {
    .header-simple__search-container {
        width: 100%;
        padding: 0;
    }
}
.header-simple__search-submit {
    flex: 0 0 auto;
    background-color: transparent;
    border: none;
    padding: 0;
}
.header-simple__search-submit svg {
    width: 20px;
    height: 20px;
}
@media (min-width: 1200px) {
    .header-simple__search--v2 {
        display: none;
    }
}
@media (min-width: 1200px) {
    .header-simple__menu {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__menu {
        display: block;
    }
}
.header-simple__menu-item .menu-dropdown {
    border-top: 1px solid #888;
    border-right: none;
    border-bottom: none;
    border-left: none;
    position: relative;
}
@media (max-width: 1199px) {
    .header-simple__menu-item .menu-dropdown {
        transform: none !important;
        position: relative !important;
    }
}
.header-simple__menu-item.show .header-simple__menu-content {
    margin-right: 0;
}
@media (max-width: 1199px) {
    .header-simple__menu-toggle .heading {
        margin-top: -2px;
    }
    .header-simple__menu-toggle svg {
        height: 34px;
    }
    .header-simple__menu-toggle svg.closed {
        width: 28px;
        margin-top: -9px;
    }
    .header-simple__menu-toggle svg.opened {
        width: 15px;
        overflow: visible;
        margin-top: -9px;
    }
}
.header-simple__menu-content {
    background-color: #fff;
    transition: margin-right 1s;
}
@media (min-width: 1200px) {
    .header-simple__menu-content {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__menu-content {
        height: 100vh;
        left: auto;
        margin-right: -100vw;
        overflow-y: auto;
        right: 0;
        top: var(--header-simple-nav-height);
        width: 100vw;
        position: absolute;
        list-style: none;
        padding: 0 20px;
        z-index: 1000;
    }
    .header-simple__menu-content--v2 {
        top: calc(var(--header-simple-nav-height) - 1);
    }
}
.header-simple__menu-content[aria-hidden='true'] {
    margin-right: -100vw;
}
.header-simple__menu-content[aria-hidden='true'] input,
.header-simple__menu-content[aria-hidden='true'] a,
.header-simple__menu-content[aria-hidden='true'] button {
    transition:
        visibility 0s 2s,
        opacity 2s linear;
    visibility: hidden;
}
.header-simple__menu-content[aria-hidden='false'] {
    margin-right: 0;
}
.header-simple__menu-content-toggle[aria-expanded='false'] .closed {
    display: block;
}
.header-simple__menu-content-toggle[aria-expanded='false'] .opened {
    display: none;
}
.header-simple__menu-content-toggle[aria-expanded='true'] .closed {
    display: none;
}
.header-simple__menu-content-toggle[aria-expanded='true'] .opened {
    display: block;
}
.header-simple__menu-content-toggle[aria-expanded='true']
    .header-simple__menu-burger-toggle
    span {
    background: #000;
}
.header-simple__menu-content-toggle[aria-expanded='true']
    .header-simple__menu-burger-toggle
    span:nth-child(1) {
    top: 9px;
    width: 0;
    left: 50%;
}
.header-simple__menu-content-toggle[aria-expanded='true']
    .header-simple__menu-burger-toggle
    span:nth-child(2) {
    transform: rotate(45deg);
}
.header-simple__menu-content-toggle[aria-expanded='true']
    .header-simple__menu-burger-toggle
    span:nth-child(3) {
    transform: rotate(-45deg);
}
.header-simple__menu-content-toggle[aria-expanded='true']
    .header-simple__menu-burger-toggle
    span:nth-child(4) {
    top: 9px;
    width: 0;
    left: 50%;
}
.header-simple__menu-content-toggle[aria-expanded='true']
    .header-simple__menu-burger-toggle--v2
    span {
    background: var(--header-simple-top-navigation-background-color);
}
.header-simple__menu-content-toggle {
    background: transparent;
    border: 0;
    height: 100%;
}
.header-simple__menu--v2 .header-simple__menu-content-toggle-path {
    stroke: #fff;
}
@media (max-width: 1199px) {
    .header-simple__menu--v2 .header-simple__menu-content-toggle {
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
        padding: 0;
        height: 100%;
    }
    .header-simple__menu--v2 .header-simple__menu-content-toggle svg {
        width: 20px;
    }
    .header-simple__menu--v2
        .header-simple__menu-content-toggle[aria-expanded='true'] {
        background: #fff;
    }
}
.header-simple__menu .header-simple__menu-burger-toggle {
    width: 25px;
    height: 19px;
    position: relative;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.header-simple__menu .header-simple__menu-burger-toggle > span {
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: var(--header-simple-nav-burger-menu-color);
    border-radius: 9px;
    opacity: 1;
    filter: alpha(opacity=100);
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}
.header-simple__menu .header-simple__menu-burger-toggle > span:nth-child(1) {
    top: 0;
}
.header-simple__menu .header-simple__menu-burger-toggle > span:nth-child(2),
.header-simple__menu .header-simple__menu-burger-toggle > span:nth-child(3) {
    top: 8px;
}
.header-simple__menu .header-simple__menu-burger-toggle > span:nth-child(4) {
    top: 16px;
}
.header-simple__product-line {
    display: flex;
    -webkit-flex-align: center;
    align-items: center;
    margin-left: 10px;
}
.header-simple__product-line-button {
    background: var(--header-simple-top-navigation-background-color);
    color: #fff;
    border: 0;
    font-size: 16px;
    min-width: 150px;
    padding: 0 10px;
    text-align: left;
    height: 100%;
}
@media (min-width: 1200px) {
    .header-simple__product-line-button {
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
    }
}
.header-simple__product-line-button[aria-expanded='true'] {
    background: #fff;
    color: var(--header-simple-top-navigation-background-color);
    border: 1px solid var(--header-simple-top-navigation-background-color);
    border-bottom: none;
}
.header-simple__product-line-button[aria-expanded='true']
    + .header-simple__product-line-list {
    display: block;
    left: 0;
}
@media (max-width: 1199px) {
    .header-simple__product-line-button[aria-expanded='true']
        + .header-simple__product-line-list {
        width: 100%;
    }
}
.header-simple__product-line-button[aria-expanded='true'] svg {
    transform: rotate(-180deg);
}
@media (max-width: 1199px) {
    .header-simple__product-line-button {
        text-align: center;
    }
}
.header-simple__product-line-list {
    border: 1px solid var(--header-simple-top-navigation-background-color);
    background: #fff;
    width: 100%;
    z-index: 1000;
}
@media (max-width: 1199px) {
    .header-simple__product-line-list {
        position: absolute;
    }
}
.header-simple__product-line-list a {
    color: var(--header-simple-top-navigation-background-color);
    display: block;
    font-size: 18px;
    padding: 4px 10px;
    text-align: left;
    height: 100%;
}
.header-simple__product-line-list a:hover {
    background: #eee;
}
@media (max-width: 1199px) {
    .header-simple__product-line-list a {
        text-align: center;
    }
}
.header-simple__product-line-logo {
    max-height: 30px;
}
.header-simple__product-line-logo-link--mobile {
    flex: 0 1 20%;
}
@media (min-width: 1200px) {
    .header-simple__product-line-logo-link--mobile {
        display: none;
    }
}
.header-simple__product-line-selector-container--mobile {
    flex: 0 1 50%;
    max-width: 250px;
}
@media (min-width: 1200px) {
    .header-simple__product-line-selector-container--mobile {
        display: none;
    }
}
.header-simple a[data-toggle='dropdown'] .opened.display {
    display: none;
}
.header-simple a[data-toggle='dropdown'] .opened.visibility {
    visibility: hidden;
}
.header-simple a[data-toggle='dropdown'] .closed.display {
    display: block;
}
.header-simple a[data-toggle='dropdown'] .closed.visibility {
    visibility: visible;
}
.header-simple .show a[data-toggle='dropdown'] .opened.display {
    display: block;
}
.header-simple .show a[data-toggle='dropdown'] .opened.visibility {
    visibility: visible;
}
.header-simple .show a[data-toggle='dropdown'] .closed.display {
    display: none;
}
.header-simple .show a[data-toggle='dropdown'] .closed.visibility {
    visibility: hidden;
}
.header-simple[data-font-family='primary'] {
    font-family: var(--font-family-primary);
}
.header-simple[data-font-family='primary'] .dropdown-country__label,
.header-simple[data-font-family='primary']
    .header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a,
.header-simple[data-font-family='primary'] .header-simple__main-item > .link,
.header-simple[data-font-family='primary']
    .dropdown-wholegoods__content
    .simple
    a.nav-icon-simple,
.header-simple[data-font-family='primary']
    .dropdown-wholegoods__promos
    .nav-icon-simple,
.header-simple[data-font-family='primary']
    .dropdown-wholegoods__content
    .view-all
    a,
.header-simple[data-font-family='primary']
    .dropdown-wholegoods__container
    .nav-tabs
    .nav-link,
.header-simple[data-font-family='primary']
    .header-simple__main-item
    .dropdown-toggle {
    font-family: var(--font-family-primary);
}
.header-simple[data-font-family='secondary'] {
    font-family: var(--font-family-secondary);
}
.header-simple[data-font-family='secondary'] .dropdown-country__label,
.header-simple[data-font-family='secondary']
    .header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a,
.header-simple[data-font-family='secondary'] .header-simple__main-item > .link,
.header-simple[data-font-family='secondary']
    .dropdown-wholegoods__content
    .simple
    a.nav-icon-simple,
.header-simple[data-font-family='secondary']
    .dropdown-wholegoods__promos
    .nav-icon-simple,
.header-simple[data-font-family='secondary']
    .dropdown-wholegoods__content
    .view-all
    a,
.header-simple[data-font-family='secondary']
    .dropdown-wholegoods__container
    .nav-tabs
    .nav-link,
.header-simple[data-font-family='secondary']
    .header-simple__main-item
    .dropdown-toggle {
    font-family: var(--font-family-secondary);
}
.header-simple[data-font-family='tertiary'] {
    font-family: var(--font-family-tertiary);
}
.header-simple[data-font-family='tertiary'] .dropdown-country__label,
.header-simple[data-font-family='tertiary']
    .header-simple__wrapper
    .navigation__content.menu-dropdown
    .navigation-list__group
    .nav-list-simple__links
    a,
.header-simple[data-font-family='tertiary'] .header-simple__main-item > .link,
.header-simple[data-font-family='tertiary']
    .dropdown-wholegoods__content
    .simple
    a.nav-icon-simple,
.header-simple[data-font-family='tertiary']
    .dropdown-wholegoods__promos
    .nav-icon-simple,
.header-simple[data-font-family='tertiary']
    .dropdown-wholegoods__content
    .view-all
    a,
.header-simple[data-font-family='tertiary']
    .dropdown-wholegoods__container
    .nav-tabs
    .nav-link,
.header-simple[data-font-family='tertiary']
    .header-simple__main-item
    .dropdown-toggle {
    font-family: var(--font-family-tertiary);
}
@media (max-width: 1199px) {
    .header-simple[data-mobile-font-family='primary'] {
        font-family: var(--font-family-primary);
    }
    .header-simple[data-mobile-font-family='primary'] .dropdown-country__label,
    .header-simple[data-mobile-font-family='primary']
        .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list__group
        .nav-list-simple__links
        a,
    .header-simple[data-mobile-font-family='primary']
        .header-simple__main-item
        > .link,
    .header-simple[data-mobile-font-family='primary']
        .dropdown-wholegoods__content
        .simple
        a.nav-icon-simple,
    .header-simple[data-mobile-font-family='primary']
        .dropdown-wholegoods__promos
        .nav-icon-simple,
    .header-simple[data-mobile-font-family='primary']
        .dropdown-wholegoods__content
        .view-all
        a,
    .header-simple[data-mobile-font-family='primary']
        .dropdown-wholegoods__container
        .nav-tabs
        .nav-link,
    .header-simple[data-mobile-font-family='primary']
        .header-simple__main-item
        .dropdown-toggle {
        font-family: var(--font-family-primary);
    }
    .header-simple[data-mobile-font-family='secondary'] {
        font-family: var(--font-family-secondary);
    }
    .header-simple[data-mobile-font-family='secondary']
        .dropdown-country__label,
    .header-simple[data-mobile-font-family='secondary']
        .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list__group
        .nav-list-simple__links
        a,
    .header-simple[data-mobile-font-family='secondary']
        .header-simple__main-item
        > .link,
    .header-simple[data-mobile-font-family='secondary']
        .dropdown-wholegoods__content
        .simple
        a.nav-icon-simple,
    .header-simple[data-mobile-font-family='secondary']
        .dropdown-wholegoods__promos
        .nav-icon-simple,
    .header-simple[data-mobile-font-family='secondary']
        .dropdown-wholegoods__content
        .view-all
        a,
    .header-simple[data-mobile-font-family='secondary']
        .dropdown-wholegoods__container
        .nav-tabs
        .nav-link,
    .header-simple[data-mobile-font-family='secondary']
        .header-simple__main-item
        .dropdown-toggle {
        font-family: var(--font-family-secondary);
    }
    .header-simple[data-mobile-font-family='tertiary'] {
        font-family: var(--font-family-tertiary);
    }
    .header-simple[data-mobile-font-family='tertiary'] .dropdown-country__label,
    .header-simple[data-mobile-font-family='tertiary']
        .header-simple__wrapper
        .navigation__content.menu-dropdown
        .navigation-list__group
        .nav-list-simple__links
        a,
    .header-simple[data-mobile-font-family='tertiary']
        .header-simple__main-item
        > .link,
    .header-simple[data-mobile-font-family='tertiary']
        .dropdown-wholegoods__content
        .simple
        a.nav-icon-simple,
    .header-simple[data-mobile-font-family='tertiary']
        .dropdown-wholegoods__promos
        .nav-icon-simple,
    .header-simple[data-mobile-font-family='tertiary']
        .dropdown-wholegoods__content
        .view-all
        a,
    .header-simple[data-mobile-font-family='tertiary']
        .dropdown-wholegoods__container
        .nav-tabs
        .nav-link,
    .header-simple[data-mobile-font-family='tertiary']
        .header-simple__main-item
        .dropdown-toggle {
        font-family: var(--font-family-tertiary);
    }
}
.header-simple__country[data-country-toggle='False']
    .header-simple__country-content {
    min-width: 330px;
    overflow: hidden;
}
.header-simple__country[data-country-toggle='False']
    .header-simple__country-content
    .content {
    padding: 18px 26px 22px;
}
.header-simple__country[data-country-toggle='False']
    .header-simple__country-content
    .link-container {
    padding-top: 14px;
}
.header-simple__country[data-country-toggle='False']
    .header-simple__country-content
    .link-container
    img {
    padding-right: 20px;
}
.header-simple__country .dropdown-country__label .mobile {
    display: none;
}
.header-simple__country .dropdown-country__label .desktop.mobile {
    display: inline;
}
@media (min-width: 1200px) {
    .header-simple__country .link-item--mobile {
        display: none;
    }
    .header-simple__country[data-country-toggle='True']
        .header-simple__country-content {
        min-width: 330px;
        overflow: hidden;
    }
    .header-simple__country[data-country-toggle='True']
        .header-simple__country-content
        .content {
        padding: 18px 26px 22px;
    }
    .header-simple__country[data-country-toggle='True']
        .header-simple__country-content
        .link-container {
        padding-top: 14px;
    }
    .header-simple__country[data-country-toggle='True']
        .header-simple__country-content
        .link-container
        img {
        padding-right: 20px;
    }
    .header-simple__country[data-country-toggle='True']
        .header-simple__country-content
        .link-item {
        padding: 0 10px;
    }
    .header-simple__country[data-country-toggle='True']
        .header-simple__country-content
        .link-item--mobile {
        display: none;
    }
    .header-simple__country[data-country-toggle='True']
        .header-simple__country-content
        ul:not([data-count='1'])
        li:first-child
        a {
        border-right: 1px solid #000;
    }
    .header-simple__country[data-country-toggle='False'] ul li {
        border-left: 1px solid #000;
        padding: 0 7px;
    }
    .header-simple__country[data-country-toggle='False'] ul li:first-child {
        border-left: none;
        padding-left: 0;
    }
}
@media (max-width: 1199px) {
    .header-simple__country[data-country-toggle='True']
        .header-simple__country-item {
        width: 100%;
    }
    .header-simple__country[data-country-toggle='True'] .link-container .copy {
        width: 100%;
    }
    .header-simple__country[data-country-toggle='True']
        .link-container
        .heading,
    .header-simple__country[data-country-toggle='True'] .link-container img {
        display: none;
    }
    .header-simple__country[data-country-toggle='True'] .link-item {
        padding: 14px 0 14px 30px;
        border-bottom: 1px solid #ccc;
        width: 100%;
        display: block;
        font-size: 16px;
        font-weight: 700;
    }
    .header-simple__country[data-country-toggle='True'] .link-item--desktop {
        display: none;
    }
    .header-simple__country[data-country-toggle='True'] .link-item .mobile {
        display: inline;
    }
    .header-simple__country[data-country-toggle='True']
        .link-item--select-a-country {
        display: none;
    }
    .header-simple__country[data-country-toggle='True']
        .dropdown-country__label {
        font-weight: bold;
        font-size: 16px;
        padding-left: 10px;
    }
    .header-simple__country[data-country-toggle='True']
        .dropdown-country__label
        .mobile {
        display: inline;
    }
    .header-simple__country[data-country-toggle='True'] ul {
        flex-flow: column;
    }
    .header-simple__country[data-country-toggle='False'] {
        padding-right: 4px;
    }
    .header-simple__country[data-country-toggle='False']
        .header-simple__country-content {
        background-color: #fff;
        top: 0;
        left: 0;
        width: 100vw;
    }
    .header-simple__country[data-country-toggle='False']
        .header-simple__country-content
        .link-container {
        padding-top: 14px;
    }
    .header-simple__country[data-country-toggle='False'] .dropdown-country {
        padding: 0;
        border-top: 0;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-country__label {
        display: none;
        font-weight: bold;
        font-size: 16px;
        padding-left: 10px;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-country__label
        .mobile {
        display: none;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-country__label
        .desktop.mobile {
        display: inline;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-country
        .link-container
        img,
    .header-simple__country[data-country-toggle='False']
        .dropdown-country
        .link-container
        .heading,
    .header-simple__country[data-country-toggle='False']
        .dropdown-country
        .link-container
        .link-item--desktop {
        display: none;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-country
        .link-item--desktop {
        display: none;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-country
        .arrow {
        display: none;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-country
        ul
        li {
        border-left: 1px solid #000;
        padding: 0 7px;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-country
        ul
        li:first-child {
        border-left: none;
        padding-left: 0;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-toggle[aria-expanded='true'] {
        background-color: transparent;
    }
    .header-simple__country[data-country-toggle='False']
        .dropdown-toggle[aria-expanded='true']
        svg {
        color: #000 !important;
    }
}
@media (min-width: 1200px) {
    .header-simple__country--mobile {
        display: none;
    }
}
.header-simple__country-close-button {
    background: transparent;
    border: none;
}
.header-simple__country-back-button {
    background: transparent;
    border: none;
}
.header-simple__country-back-button svg {
    transform: rotate(90deg);
}
@media (min-width: 1200px) {
    .header-simple__country-content {
        left: -100% !important;
    }
}
.header-simple__country-content-ul li {
    border-bottom: 1px solid #aaa;
    padding: 10px;
}
.header-simple__country-content-ul a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
@media (min-width: 1200px) {
    .header-simple .display-block-lg {
        display: block;
    }
}
.header-simple
    .header-simple__top-right--v2
    #headerSimpleTopRightSearchNavigationToggle[aria-expanded='true'] {
    display: none;
}
.header-simple
    .header-simple__top-right--v2
    #headerSimpleTopRightSearchNavigationToggle[aria-expanded='true']
    + #headerSimpleTopRightSearchNavigationContent {
    display: block;
}
.header-simple .header-simple__top-right--v2 .header-simple__search-button {
    background: transparent;
    border: 0;
    width: 28px;
    margin-left: 4px;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__top-right-search-input {
    left: -100%;
    top: 50%;
    position: absolute;
    transform: translate(-100%, -50%);
    transition-duration: 500ms;
    cursor: pointer;
    height: 38px;
    width: 20px;
    border: 0;
    background: transparent
        url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICB2aWV3Qm94PSIwIDAgMzAgMzAiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiPjxwYXRoIGQ9Ik0gMTMgMyBDIDcuNDg4OTk3MSAzIDMgNy40ODg5OTcxIDMgMTMgQyAzIDE4LjUxMTAwMyA3LjQ4ODk5NzEgMjMgMTMgMjMgQyAxNS4zOTY1MDggMjMgMTcuNTk3Mzg1IDIyLjE0ODk4NiAxOS4zMjIyNjYgMjAuNzM2MzI4IEwgMjUuMjkyOTY5IDI2LjcwNzAzMSBBIDEuMDAwMSAxLjAwMDEgMCAxIDAgMjYuNzA3MDMxIDI1LjI5Mjk2OSBMIDIwLjczNjMyOCAxOS4zMjIyNjYgQyAyMi4xNDg5ODYgMTcuNTk3Mzg1IDIzIDE1LjM5NjUwOCAyMyAxMyBDIDIzIDcuNDg4OTk3MSAxOC41MTEwMDMgMyAxMyAzIHogTSAxMyA1IEMgMTcuNDMwMTIzIDUgMjEgOC41Njk4Nzc0IDIxIDEzIEMgMjEgMTcuNDMwMTIzIDE3LjQzMDEyMyAyMSAxMyAyMSBDIDguNTY5ODc3NCAyMSA1IDE3LjQzMDEyMyA1IDEzIEMgNSA4LjU2OTg3NzQgOC41Njk4Nzc0IDUgMTMgNSB6Ii8+PC9zdmc+')
        no-repeat 0 center;
    padding-right: 16px;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__top-right-search-input::placeholder {
    color: #888;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__top-right-search-input.active {
    left: 0;
    width: 250px;
    border: 0;
    background: #fff;
    padding-right: 0;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__top-right-search-input.active
    + .header-simple__top-right-search-input-submit {
    border: 0;
    background: #fff
        url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDA0RTk3IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICB2aWV3Qm94PSIwIDAgMzAgMzAiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiPjxwYXRoIGQ9Ik0gMTMgMyBDIDcuNDg4OTk3MSAzIDMgNy40ODg5OTcxIDMgMTMgQyAzIDE4LjUxMTAwMyA3LjQ4ODk5NzEgMjMgMTMgMjMgQyAxNS4zOTY1MDggMjMgMTcuNTk3Mzg1IDIyLjE0ODk4NiAxOS4zMjIyNjYgMjAuNzM2MzI4IEwgMjUuMjkyOTY5IDI2LjcwNzAzMSBBIDEuMDAwMSAxLjAwMDEgMCAxIDAgMjYuNzA3MDMxIDI1LjI5Mjk2OSBMIDIwLjczNjMyOCAxOS4zMjIyNjYgQyAyMi4xNDg5ODYgMTcuNTk3Mzg1IDIzIDE1LjM5NjUwOCAyMyAxMyBDIDIzIDcuNDg4OTk3MSAxOC41MTEwMDMgMyAxMyAzIHogTSAxMyA1IEMgMTcuNDMwMTIzIDUgMjEgOC41Njk4Nzc0IDIxIDEzIEMgMjEgMTcuNDMwMTIzIDE3LjQzMDEyMyAyMSAxMyAyMSBDIDguNTY5ODc3NCAyMSA1IDE3LjQzMDEyMyA1IDEzIEMgNSA4LjU2OTg3NzQgOC41Njk4Nzc0IDUgMTMgNSB6Ii8+PC9zdmc+')
        no-repeat 13px center;
    margin-top: 1px;
    width: 40px;
    height: 38px;
    cursor: pointer;
    display: block;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__top-right-search-input-submit {
    display: none;
}
.header-simple .header-simple__top-right--v2 .header-simple__my-account-button {
    background: transparent;
    border: 0;
    height: 100%;
    padding: 0 14px;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__my-account-button
    svg {
    margin: 0 4px 0 0;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__my-account-button[aria-expanded='true'] {
    background: #fff;
    color: var(--header-simple-top-navigation-background-color);
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__my-account-button[aria-expanded='true']
    svg
    path {
    fill: var(--header-simple-top-navigation-background-color);
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__my-account-button[aria-expanded='true']
    + .header-simple__account-content--v2 {
    display: block;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__my-account-button[aria-expanded='true']:after,
.header-simple
    .header-simple__top-right--v2
    .header-simple__my-account-button[aria-expanded='true']:before {
    background: transparent;
    border: 0;
}
.header-simple .header-simple__top-right--v2 .header-simple__account:before {
    display: none;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__top-right-menu-item {
    min-height: 30px;
}
.header-simple
    .header-simple__top-right--v2
    .header-simple__top-right-menu-item:last-child {
    padding-left: 0;
}
.header-simple .navigation-link-simple__link--v2 {
    padding: 14px 20px;
}
.header-simple .header-simple__highlight-item-link-heading--mobile {
    display: none !important;
}
@media (max-width: 1199px) {
    .header-simple .header-simple__highlight-item-link-heading {
        display: none !important;
    }
    .header-simple .header-simple__highlight-item-link-heading--mobile {
        display: block !important;
    }
}
.header-simple--v2[data-enable-product-lines-as-tabs='true'] {
    min-height: calc(var(--header-simple-nav-height) + 60px);
}
@media (max-width: 1199px) {
    .header-simple--v2[data-enable-product-lines-as-tabs='true'] {
        min-height: calc(var(--header-simple-nav-height) + 30px);
    }
}
.header-simple--v2 .header-simple__top-search-box {
    position: relative;
    justify-content: center;
}
.header-simple--v2 .header-simple__search-toggle--mobile {
    display: flex;
    align-items: center;
    width: 24px;
    height: 100%;
    padding: 0 2px;
    color: #fff;
}
.header-simple--v2 .header-simple__search-toggle--mobile svg {
    width: 24px;
    height: 24px;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__product-line,
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__top-search-box {
    display: flex;
    -webkit-flex-align: center;
    align-items: center;
    -ms-flex-basis: 33%;
    flex-basis: 33%;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__top-right-list {
    display: flex;
    -ms-flex-basis: 33%;
    flex-basis: 33%;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__top-search-box
    #headerSimpleTopRightSearchNavigationContent {
    display: flex;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__top-search-box
    #headerSimpleTopRightSearchNavigationSearchInput,
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__top-search-box
    .header-simple__top-right-search-input-submit {
    height: 34px !important;
    margin-top: 0 !important;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__top-search-box
    #headerSimpleTopRightSearchNavigationSearchInput {
    border-radius: 3px 0 0 3px;
    position: static;
    transform: initial;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__top-search-box
    .header-simple__top-right-search-input-submit {
    border-radius: 0 3px 3px 0;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__top-right-list {
    justify-content: end;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__search-form-input,
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__search-submit
    span {
    height: 34px;
    margin-top: 0;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__search-form-input {
    border-radius: 3px 0 0 3px;
    border: none;
}
.header-simple--v2[data-enable-expanded-search-box='true']
    .header-simple__search-submit
    span {
    border-radius: 0 3px 3px 0;
    height: 34px;
    box-shadow: none;
}
@media (max-width: 1199px) {
    .header-simple--v2[data-enable-mobile-menu-left-aligned='true']
        .header-simple__menu-content {
        transition: margin-left 1s;
        left: 0;
        right: auto;
        margin-right: -100vw;
    }
    .header-simple--v2[data-enable-mobile-menu-left-aligned='true']
        .header-simple__menu-content[aria-hidden='true'] {
        margin-left: -100vw;
        margin-right: 0;
    }
    .header-simple--v2[data-enable-mobile-menu-left-aligned='true']
        .header-simple__menu-content[aria-hidden='false'] {
        margin-left: 0;
    }
    .header-simple--v2[data-enable-mobile-menu-left-aligned='true']
        .header-simple__wrapper {
        padding-left: 0;
    }
    .header-simple--v2[data-enable-mobile-menu-left-aligned='true']
        .main-menu-left-aligned {
        display: flex;
        flex-basis: 33%;
        height: 100%;
    }
    .header-simple--v2[data-enable-mobile-menu-left-aligned='true']
        .main-menu-left-aligned:nth-child(1) {
        justify-content: flex-start;
    }
    .header-simple--v2[data-enable-mobile-menu-left-aligned='true']
        .main-menu-left-aligned:nth-child(2) {
        justify-content: center;
        align-items: center;
    }
    .header-simple--v2[data-enable-mobile-menu-left-aligned='true']
        .main-menu-left-aligned:nth-child(3) {
        justify-content: flex-end;
    }
}

@media (min-width: 1200px) {
    .navigation-dropdown-wholegoods__toggle-link.dropdown-toggle:hover {
        color: var(--highlight-color-override);
    }
}

.dropdown-wholegoods {
    transform: none !important;
}
@media (min-width: 1600px) {
    .dropdown-wholegoods {
        width: 70vw !important;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods {
        left: -10px;
        width: 80vw;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods {
        top: inherit !important;
        left: inherit !important;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods {
        position: relative !important;
    }
}
.dropdown-wholegoods__container-padding-bottom {
    padding-bottom: 20px;
}
@media (max-width: 1599px) {
    .dropdown-wholegoods .align-btn {
        margin-bottom: 10px;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__container {
        padding-top: 5px;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
    }
}
.dropdown-wholegoods__container .fos-toolbar {
    width: 100%;
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__container .mobile-view {
        display: none;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__container .desktop-margin-top-xs {
        margin-top: 10px;
    }
}
.dropdown-wholegoods__container .fos-nav-toolbar {
    width: 30%;
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__container .fos-nav-toolbar {
        display: none;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__container .nav-tabs {
        width: 20%;
        padding-right: 20px;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__container .nav-tabs {
        width: 100%;
    }
}
.dropdown-wholegoods__container .nav-tabs .nav-item {
    display: block;
    border-bottom: 2px solid #ccc;
}
.dropdown-wholegoods__container .nav-tabs .nav-link {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 18px;
    display: block;
    width: 100%;
    display: flex;
    -webkit-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__container .nav-tabs .nav-link {
        font-size: 14px;
    }
    .dropdown-wholegoods__container .nav-tabs .nav-link:focus span,
    .dropdown-wholegoods__container .nav-tabs .nav-link:hover span {
        border-bottom: 2px solid var(--highlight-color-override);
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__container .nav-tabs .nav-link {
        font-size: 15px;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__container .nav-tabs .nav-link[aria-expanded='true'] {
        background-color: #000;
        background-color: var(--highlight-color-override);
        color: #fff;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__container
        .nav-tabs
        .nav-link[aria-expanded='true']
        svg {
        fill: #fff;
        transform: rotate(180deg);
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__container .nav-tabs .nav-link[aria-selected='true'] {
        background-color: #000;
        background-color: var(--highlight-color-override);
        color: #fff;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__container
        .nav-tabs
        .nav-link[aria-selected='true']
        svg {
        fill: #fff;
        transform: rotate(180deg);
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__container
        .nav-tabs
        .nav-link[aria-selected='true']
        span {
        border-bottom: 2px solid var(--highlight-color-override);
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__container .nav-tabs .nav-link span {
        border-bottom: 2px solid transparent;
    }
}
.dropdown-wholegoods__container .nav-tabs .nav-link svg {
    margin-left: auto;
    fill: #000;
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__container .nav-tabs .nav-link svg {
        display: none;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__content {
        width: 80%;
        margin-top: 6px;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__content {
        width: 100%;
    }
}
.dropdown-wholegoods__content .tab-content {
    box-shadow: 0 0 5px #ccc;
}
.dropdown-wholegoods__content .tab-item {
    height: 100%;
    width: 100%;
}
@media (min-width: 480px) {
    .dropdown-wholegoods__content .tab-item {
        display: flex;
        -webkit-flex-align: flex-start;
        align-items: flex-start;
    }
}
@media (max-width: 991px) {
    .dropdown-wholegoods__content .tab-item {
        justify-content: space-between;
        flex-wrap: wrap;
        padding-top: 0;
    }
}
@media (min-width: 992px) {
    .dropdown-wholegoods__content .wholegood,
    .dropdown-wholegoods__content .simple {
        margin-right: 20px;
        flex: 0 0 25%;
        max-width: calc(25% - 15px);
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .dropdown-wholegoods__content .wholegood,
    .dropdown-wholegoods__content .simple {
        padding-top: 16px;
        flex: 0 0 50%;
        max-width: calc(50% - 8px);
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .dropdown-wholegoods__content .wholegood,
    .dropdown-wholegoods__content .simple {
        padding-top: 16px;
        flex: 0 0 50%;
        max-width: calc(50% - 8px);
    }
}
@media (max-width: 479px) {
    .dropdown-wholegoods__content .wholegood,
    .dropdown-wholegoods__content .simple {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 2px solid #ccc;
        width: 100%;
    }
}
@media (min-width: 992px) {
    .dropdown-wholegoods__content .wholegood:last-child,
    .dropdown-wholegoods__content .simple:last-child {
        margin-right: 0;
    }
}
@media (max-width: 991px) {
    .dropdown-wholegoods__content .wholegood:last-child,
    .dropdown-wholegoods__content .simple:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }
}
.dropdown-wholegoods__content .wholegood a,
.dropdown-wholegoods__content .wholegood p,
.dropdown-wholegoods__content .simple a,
.dropdown-wholegoods__content .simple p {
    text-decoration: none;
    color: #000;
}
.dropdown-wholegoods__content .wholegood a .heading span,
.dropdown-wholegoods__content .simple a .heading span {
    font-weight: 700;
    line-height: 1.1;
    display: inline;
    border-bottom: 2px solid transparent;
    font-size: 16px;
}
.dropdown-wholegoods__content .wholegood a:hover .heading span,
.dropdown-wholegoods__content .simple a:hover .heading span {
    border-color: var(--highlight-color-override);
}
.dropdown-wholegoods__content .wholegood a.nav-icon-simple,
.dropdown-wholegoods__content .simple a.nav-icon-simple {
    display: block !important;
}
.dropdown-wholegoods__content .wholegood p,
.dropdown-wholegoods__content .simple p {
    font-size: 14px;
}
.dropdown-wholegoods__content .simple .image {
    display: block;
    max-width: 100%;
    height: auto;
}
.dropdown-wholegoods__content .simple .image.lazyload,
.dropdown-wholegoods__content .simple .image.lazyloading {
    min-height: 100px;
}
.dropdown-wholegoods__content .simple .heading {
    font-weight: 700;
    font-size: 16px;
    padding-top: 10px;
}
.dropdown-wholegoods__content .simple .description {
    padding-top: 4px;
}
.dropdown-wholegoods__content .view-all a:hover {
    color: var(--highlight-color-override);
}
.dropdown-wholegoods__content .view-all a:hover polygon {
    fill: var(--highlight-color-override);
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__promos {
        display: flex;
        padding-top: 30px;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__promos-item {
        display: block;
        padding-left: 18px;
        padding-right: 18px;
        width: 25%;
        border-right: 2px solid #ccc;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__promos-item {
        border-bottom: 2px solid #ccc;
        padding: 10px 20px;
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__promos-item:first-child {
        padding-left: 0;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__promos-item:last-child {
        padding-right: 0;
        border-right: none;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__promos-item:last-child {
        border-bottom: 0;
    }
}
.dropdown-wholegoods__promos .nav-icon-simple {
    color: #000;
}
.dropdown-wholegoods__promos .nav-icon-simple .image {
    display: block;
    max-width: 100%;
    height: auto;
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__promos .nav-icon-simple .image {
        padding-top: 10px;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__promos .nav-icon-simple .image {
        padding-right: 14px;
        float: left;
    }
}
.dropdown-wholegoods__promos .nav-icon-simple .heading {
    font-weight: 700;
    padding-top: 4px;
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__promos .nav-icon-simple .heading span {
        line-height: 1.1;
        display: inline;
        font-size: 16px;
        border-bottom: 2px solid transparent;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__promos .nav-icon-simple .heading {
        font-size: 14px;
        float: left;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__promos .nav-icon-simple .description {
        padding-top: 6px;
    }
}
@media (max-width: 1199px) {
    .dropdown-wholegoods__promos .nav-icon-simple .description {
        display: none;
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods__promos .nav-icon-simple:hover .heading span {
        border-color: var(--highlight-color-override);
    }
}
@media (min-width: 1200px) {
    .dropdown-wholegoods .tab-item--ecom .navigation__content {
        position: relative;
        top: 0;
        width: 100%;
        box-shadow: none;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .navigation__content[data-expanded-on-page-load='True']
        .nav-list-simple__links {
        display: block !important;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__link-heading.expanded {
        font-size: 14px;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__link-heading.expanded:hover {
        color: var(--highlight-color-override);
    }
    .dropdown-wholegoods .tab-item--ecom .nav-list-simple__heading.expanded {
        display: none !important;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__links.expanded.no-subcategories {
        padding-bottom: 14px;
        font-weight: 700;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__links.expanded.view-all-container {
        display: none !important;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__links.expanded
        .nav-list-simple__link-heading {
        font-weight: 400;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__links.expanded
        .nav-list-simple__links {
        padding-bottom: 0;
        font-weight: 400;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__links.expanded
        .nav-list-simple__links
        .nav-list-simple__links,
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__links.expanded
        .nav-list-simple__links
        .nav-list-simple__view-all {
        display: none !important;
    }
    .dropdown-wholegoods .tab-item--ecom .nav-list-simple__links.expanded a {
        font-size: 14px;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__links.expanded
        .nav-list-simple__links
        .nav-list-simple__view-all {
        display: none !important;
    }
    .dropdown-wholegoods .tab-item--ecom .nav-list-simple__view-all.expanded {
        padding-bottom: 14px !important;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__view-all.expanded
        svg {
        width: 8px;
        transform: rotate(-90deg);
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__view-all.expanded:hover {
        color: var(--highlight-color-override);
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__view-all.expanded:hover
        svg
        polygon {
        fill: var(--highlight-color-override);
    }
    .dropdown-wholegoods .tab-item--ecom .navigation-group {
        margin-top: 0 !important;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .navigation-list[data-navigation-count='3']
        li {
        width: 33.333333%;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .navigation-list[data-navigation-count='4']
        li {
        width: 25%;
    }
}
.dropdown-wholegoods
    .tab-item--ecom
    .nav-list-simple__links.expanded
    .nav-list-simple__links
    .nav-list-simple__links {
    display: none !important;
}
.dropdown-wholegoods .wholegoood__image.lazyload,
.dropdown-wholegoods .wholegoood__image.lazyloading {
    min-height: 150px;
}
@media (max-width: 1199px) {
    .dropdown-wholegoods .tab-item--ecom .navigation__content {
        width: 100%;
        flex-direction: column;
    }
    .dropdown-wholegoods .tab-item--ecom .navigation-group,
    .dropdown-wholegoods .tab-item--ecom .navigation-list {
        display: block !important;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__links.no-subcategories
        a {
        padding-left: 30px;
    }
    .dropdown-wholegoods
        .tab-item--ecom
        .nav-list-simple__link-heading.expanded {
        display: none !important;
    }
    .dropdown-wholegoods .tab-item--ecom .nav-list-simple__view-all.expanded {
        display: none !important;
    }
    .dropdown-wholegoods .view-all--ecom {
        background-color: #fff;
        border-bottom: 1px solid #ccc;
    }
    .dropdown-wholegoods .view-all--ecom a {
        width: 100%;
    }
    .dropdown-wholegoods .view-all--ecom span {
        font-weight: 400 !important;
    }
    .dropdown-wholegoods .view-all--ecom svg {
        display: none;
    }
}

.header-simple__main-item .navigation__content--ecom {
    padding: 0px;
}
@media (min-width: 1200px) {
    .header-simple__main-item .navigation__content--ecom .navigation-container {
        display: flex;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container[data-category-group-count='2'] {
        width: 90vw;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container[data-category-group-count='2']
        .navigation-group {
        width: 50%;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container[data-category-group-count='1'] {
        min-width: 70vw;
        max-width: 100vw;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container[data-category-group-count='1']
        .navigation-group
        .navigation-list[data-navigation-count='4']
        .navigation-list__group {
        width: 25%;
    }
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-group {
    display: flex;
    flex-flow: column nowrap;
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-group {
        margin-top: 10px;
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-group__heading {
        -webkit-flex-align: center;
        align-items: center;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #ccc;
        padding-bottom: 14px;
        padding-top: 14px;
        padding-right: 20px;
        cursor: pointer;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-group__heading[aria-expanded='true'] {
        background-color: var(--color-primary);
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-group__heading[aria-expanded='true']
        svg {
        transform: rotateX(180deg);
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-group__heading {
        font-weight: bold;
        padding-bottom: 4px;
        padding-left: 30px;
        padding-top: 4px;
        font-size: 18px;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-group__heading
        svg {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-group__heading[aria-expanded='false']
        + .navigation-list {
        display: none;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-group__heading[aria-expanded='false']
        + .navigation-list
        + .navigation-list__footer {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list {
        order: 3;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list {
        flex-flow: row wrap;
    }
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list
    .nav-list-simple__heading {
    -webkit-flex-align: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true'] {
        background-color: #000;
        background-color: var(--color-primary);
        font-weight: 700;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links[aria-expanded='true'] {
        box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
        border-bottom: 1px solid #000;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading:focus,
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading:hover {
        color: var(--highlight-color-override);
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading:focus
        svg
        polygon,
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading:hover
        svg
        polygon {
        fill: var(--highlight-color-override);
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg
        polygon {
        fill: #fff;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading {
        font-size: 14px;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading:focus,
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading:hover,
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true'] {
        color: var(--highlight-color-override);
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading:focus
        svg
        polygon,
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading:hover
        svg
        polygon,
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg
        polygon {
        fill: var(--highlight-color-override);
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading[aria-expanded='true']
        svg {
        transform: rotateX(180deg);
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list
        .nav-list-simple__heading
        svg {
        display: block;
    }
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list
    .nav-list-simple__heading[aria-expanded='false']
    + .nav-list-simple__links {
    display: none;
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list
    .nav-list-simple__heading[aria-expanded='true']
    + .nav-list-simple__links {
    display: block;
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__group:last-child
        .nav-list-simple__heading[aria-expanded='true']
        + .nav-list-simple__links[aria-expanded='true']:last-child {
        box-shadow: none;
        border-bottom: none;
    }
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list__footer {
    margin-top: auto;
    padding-bottom: 10px;
    padding-top: 10px;
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__footer {
        order: 2;
        border-bottom: 1px solid #ccc;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__footer[data-navigation-count='2'] {
        padding-left: 50px;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__footer[data-navigation-count='1'] {
        padding-left: 30px;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__footer {
        background-color: #eee;
        padding-left: 30px;
    }
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list__footer
    .view-all {
    display: inline-flex;
    -webkit-flex-align: center;
    align-items: center;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list__footer
    .view-all:focus,
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list__footer
    .view-all:hover {
    color: var(--highlight-color-override);
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list__footer
    .view-all:focus
    .arrow-right,
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list__footer
    .view-all:hover
    .arrow-right {
    fill: var(--highlight-color-override);
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container
    .navigation-list__footer
    .view-all
    svg {
    margin-left: 10px;
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__footer
        .view-all {
        background: none;
        font-size: 14px;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__footer
        .view-all
        svg {
        display: none;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__footer
        .view-all {
        font-size: 15px;
    }
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container
        .navigation-list__footer
        .view-all
        svg {
        width: 14px;
        height: 14px;
    }
}
.header-simple__main-item
    .navigation__content--ecom
    .navigation-container[data-category-group-count='2']
    .navigation-group:first-of-type {
    border-right: 1px solid #ccc;
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--ecom
        .navigation-container[data-category-group-count='2']
        .navigation-list__group {
        width: 250px;
    }
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='1']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='1'] {
        padding-left: 30px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='1']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='1']
        + .nav-list-simple__links
        a {
        padding-left: 50px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='2']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='2'] {
        padding-left: 50px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='2']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='2']
        + .nav-list-simple__links
        a {
        padding-left: 70px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='3']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='3'] {
        padding-left: 70px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='3']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='3']
        + .nav-list-simple__links
        a {
        padding-left: 90px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='4']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='4'] {
        padding-left: 90px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='4']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='4']
        + .nav-list-simple__links
        a {
        padding-left: 110px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='5']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='5'] {
        padding-left: 110px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__links[data-indentation-index='5']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='5']
        + .nav-list-simple__links
        a {
        padding-left: 130px;
    }
    .header-simple__main-item .navigation-group .navigation-group__heading {
        padding-left: 30px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='1']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='1'] {
        padding-left: 50px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='1']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='1']
        + .nav-list-simple__links
        a {
        padding-left: 70px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='2']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='2'] {
        padding-left: 70px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='2']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='2']
        + .nav-list-simple__links
        a {
        padding-left: 90px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='3']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='3'] {
        padding-left: 90px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='3']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='3']
        + .nav-list-simple__links
        a {
        padding-left: 110px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='4']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='4'] {
        padding-left: 110px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='4']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='4']
        + .nav-list-simple__links
        a {
        padding-left: 130px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='5']
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='5'] {
        padding-left: 130px;
    }
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__links[data-indentation-index='5']
        a
        + .nav-list-simple__links
        a,
    .header-simple__main-item
        .navigation-group
        .navigation-group__heading
        + .navigation-list
        .nav-list-simple__heading[role='link'][data-indentation-index='5']
        + .nav-list-simple__links
        a {
        padding-left: 150px;
    }
}

@media (min-width: 1200px) {
    .display-none-lg {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header-simple__main-item .navigation__content--complex .rule {
        display: none;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item .navigation__content--complex .rule {
        margin: 10px 0 20px;
    }
}

.navigation-dropdown-complex__toggle-link--v2.dropdown-toggle {
    padding: 18px 15px;
}
@media (min-width: 1200px) {
    .navigation-dropdown-complex__toggle-link.dropdown-toggle:hover {
        color: var(--highlight-color-override);
    }
}

.header-simple__main-item .navigation__content--complex .navigation-tiles {
    list-style: none;
}
@media (min-width: 1200px) {
    .header-simple__main-item .navigation__content--complex .navigation-tiles {
        display: flex;
        justify-content: space-around;
        padding-top: 10px;
    }
}
.header-simple__main-item .navigation__content--complex .navigation-tiles a {
    text-decoration: none;
    display: block;
}
.header-simple__main-item
    .navigation__content--complex
    .navigation-tiles
    a:focus
    .heading,
.header-simple__main-item
    .navigation__content--complex
    .navigation-tiles
    a:hover
    .heading {
    color: var(--highlight-color-override);
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-tiles
        .nav-icon-simple {
        -webkit-flex-align: center;
        align-items: center;
        display: flex;
        flex-flow: row nowrap;
    }
}
.header-simple__main-item
    .navigation__content--complex
    .navigation-tiles
    .nav-icon-simple
    .heading {
    color: #000;
    font-weight: 700;
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-tiles
        .nav-icon-simple
        .heading {
        padding-left: 10px;
        font-size: 15px;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-tiles
        .nav-icon-simple
        .heading {
        margin-top: 4px;
        font-size: 16px;
    }
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-tile-item {
        border-bottom: 1px solid #ccc;
        padding: 14px 0;
        padding-left: 30px;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-tile-item {
        min-width: 180px;
    }
}

@media (min-width: 1200px) {
    .header-simple__main-item .navigation__content--complex {
        padding: 14px;
    }
}
.header-simple__main-item
    .navigation__content--complex
    .navigation-list__group {
    min-width: 220px;
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-list__group {
        border-right: 1px solid #ccc;
    }
    .header-simple__main-item
        .navigation__content--complex
        .navigation-list__group:last-of-type {
        border: 0;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-list__group:only-child
        a {
        white-space: nowrap;
    }
}
.header-simple__main-item
    .navigation__content--complex
    .navigation-list__group
    .nav-list-simple__heading {
    font-size: 14px;
    font-weight: 700 !important;
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-list__group
        .nav-list-simple__heading {
        -webkit-flex-align: center;
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding-left: 30px;
        padding-right: 20px;
    }
}
@media (min-width: 1200px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-list__group
        .nav-list-simple__heading
        svg {
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-list__group
        .nav-list-simple__heading
        + .nav-list-simple__links
        a {
        padding-left: 50px;
    }
}
@media (max-width: 1199px) {
    .header-simple__main-item
        .navigation__content--complex
        .navigation-list__group
        .nav-list-simple__links
        a {
        padding-left: 30px;
    }
}

@media print {
    .header-simple,
    .header-simple__mask {
        display: none;
    }
}
@media (min-width: 992px) {
    .dropdownwholegoods {
        position: inherit !important;
    }
    .dropdownwholegoods .dropdown-toggle {
        position: relative;
    }
    .dropdownwholegoods .dropdown-wholegoods {
        left: 0 !important;
        width: 100% !important;
    }
}
.dealer-locator-footer-details__map-and-directions-link,
.dealer-locator-footer-details__special-offers-link {
    display: block;
    margin-top: 10px;
}

.dealer-locator-footer__map-and-list-mobile {
    display: none;
}
.dealer-locator-footer__wrap {
    position: relative;
    overflow: hidden;
}
.dealer-locator-footer__wrap .flickity-prev-next-button:disabled {
    display: none;
}
@media (min-width: 1200px) {
    .dealer-locator-footer__wrap .flickity-prev-next-button {
        display: none;
    }
}
@media (min-width: 768px) {
    .dealer-locator-footer__search-input[type='text'] {
        width: 300px;
    }
}
.dealer-locator-footer__map-and-list-wrap--hidden {
    display: none;
}
.dealer-locator-footer__use-my-location {
    -webkit-flex-item-align: flex-start;
    align-self: flex-start;
}
.dealer-locator-footer-details__dealer-store-hours--clone,
.dealer-locator-footer-details__wrap--clone {
    display: none;
}
.dealer-locator-footer-details__wrap {
    margin: 0 0 0 20px;
    padding: 20px;
    width: 275px;
    border: 1px solid #979797;
}
.dealer-locator-footer-details__wrap:first-child {
    margin-left: 0;
}
.dealer-locator-footer-details__wrap:last-child {
    margin-right: 0;
}
.dealer-locator-footer-details__wrap:hover {
    box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.3);
}
.dealer-locator-footer-details__wrap-inner {
    height: 295px;
}
.dealer-locator-footer-details__service-certification-levels {
    display: flex;
}
.dealer-locator-footer-details__business-wrap {
    position: relative;
}
.dealer-locator-footer-details__business-name {
    margin-bottom: 8px;
}
.dealer-locator-footer-details__quote-link,
.dealer-locator-footer-details__dealer-website-link {
    margin-top: 10px;
    box-shadow: none !important;
}
.dealer-locator-footer-details__button-wrap a {
    width: 100%;
}
.dealer-locator-footer-details__special-offers-link,
.dealer-locator-footer-details__map-and-directions-link,
.dealer-locator-footer-details__phone,
.dealer-locator-footer-details__dealer-website-link,
.dealer-locator-footer-details__schedule-service-link {
    text-decoration: none;
}
.dealer-locator-footer-details__distance {
    margin-top: 10px;
}
.dealer-locator-footer-details__map-and-directions-link,
.dealer-locator-footer-details__special-offers-link,
.dealer-locator-footer-details__phone,
.dealer-locator-footer-details__address,
.dealer-locator-footer-details__distance,
.dealer-locator-footer-details__dealer-website-link,
.dealer-locator-footer-details__schedule-service-link {
    font-size: 14px;
    line-height: 1.42857;
    font-style: normal;
}
.dealer-locator-footer__map-and-list-mobile--active {
    display: block;
}
.dealer-locator-footer__list-wrap {
    display: block;
    padding: 0 0 20px 0;
}
.dealer-locator-footer__list-wrap::-webkit-scrollbar {
    width: 12px;
}
.dealer-locator-footer__list-wrap::-webkit-scrollbar-track {
    border-radius: 8px;
}
.dealer-locator-footer__list-wrap::-webkit-scrollbar-thumb {
    border-radius: 8px;
}
.dealer-locator-footer__search-form-control-bar {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}
.dealer-locator-footer__map-and-list-wrap {
    position: relative;
}
.dealer-locator-footer__search-wrap {
    font-size: 14px;
}
.dealer-locator-footer__search-wrap
    .dealer-locator-footer__search-form-control-bar
    span {
    font-size: 14px;
}
.dealer-locator-footer__search-zip-code {
    margin-bottom: 4px;
}
.dealer-locator-footer__search-input {
    flex: 0 1 auto;
}
.dealer-locator-footer__search-copy {
    font-size: 18px;
}
.dealer-locator-footer__search-container {
    display: flex;
    margin: 4px 0 4px 0;
    clear: both;
}
.dealer-locator-footer__search-submit {
    flex: 0 1 auto;
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
}
.dealer-locator-footer__search-error {
    width: 100%;
    text-align: center;
}
.dealer-locator-footer__search-error-inner-wrap {
    text-align: left;
}
.dealer-locator-footer__search-error-text {
    color: #c03b13;
    line-height: 1.2;
    padding-left: 4px;
}
.dealer-locator-footer__search-error-icon {
    display: block;
    width: 16px;
    height: 16px;
}
.dealer-locator-footer__location {
    font-weight: bold;
    text-decoration: none;
}
.dealer-locator-footer__location span {
    text-decoration: underline;
}
.dealer-locator-footer__location .icon-location-primary {
    -webkit-flex-align: center;
    align-items: center;
    display: inline-flex;
    text-decoration: none;
}
.dealer-locator-footer__header {
    color: #000;
}
.dealer-locator-footer-positioning-container--bgimage {
    position: absolute;
    top: 0px;
    width: 100%;
}
.dealer-locator-footer__filters-wrap-copy,
.dealer-locator-footer__filters-wrap-filters {
    display: flex;
}
.dealer-locator-footer__filters-wrap-copy {
    justify-content: space-between;
}
.dealer-locator-footer__filters-wrap-filters {
    -webkit-flex-align: baseline;
    align-items: baseline;
}
.dealer-locator-footer__filters-wrap .filters-service-items-wrap {
    -ms-flex-basis: 80%;
    flex-basis: 80%;
}
.dealer-locator-footer__filters-wrap .filters-copy {
    font-size: 18px;
}
.dealer-locator-footer__filters-wrap .filters-reset {
    font-size: 16px;
    font-weight: 700;
    -ms-flex-basis: 20%;
    flex-basis: 20%;
}
@media (max-width: 991px) {
    .dealer-locator-footer__header {
        display: inline-block;
        position: relative;
        top: 4px;
        padding-bottom: 10px;
    }
    .dealer-locator-footer__service-item-wrap {
        display: block;
    }
    .dealer-locator-footer__filters-wrap .filters-copy,
    .dealer-locator-footer__filters-wrap .filters-reset {
        -ms-flex-basis: 50%;
        flex-basis: 50%;
    }
    .dealer-locator-footer__filters-wrap .filters-service-items-wrap {
        -ms-flex-basis: 100%;
        flex-basis: 100%;
    }
}
.dealer-locator-footer--alt .dealer-locator-footer__map-and-list-wrap {
    margin-bottom: 20px;
}
.dealer-locator-footer--alt .dealer-locator-footer__form {
    padding-top: 100px;
}
@media (max-width: 991px) {
    .dealer-locator-footer--alt .dealer-locator-footer__form {
        padding-top: 20px;
    }
}
.dealer-locator-footer--alt .dealer-locator-footer__header {
    color: #fff;
    font-size: 36px;
    margin-right: 7px;
}

.dealer-locator__modal-body {
    margin-top: 13px;
    padding: 12px 0;
}
.dealer-locator__modal-dealer-icons-content {
    padding: 44px 22px 11px !important;
}
.dealer-locator__modal-dealer-icons-button-wrap {
    margin-top: 10px !important;
}
.dealer-locator__modal-dealer-icons-button {
    margin-bottom: 0px !important;
}
.dealer-locator__modal-dealer-icons-wrap {
    margin-bottom: 12px;
    padding: 6px 12px;
}
.dealer-locator__modal-dealer-icons-wrap:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}
.dealer-locator__modal-dealer-icons-description {
    padding: 7px 7px 7px 35px;
}
.dealer-locator__modal-no-results-close {
    float: right;
}

.footer-simple {
    /* #region Footer Simple Block - V1 */
    /* #endregion Footer Simple Block - V1 */
    /* #region Footer Simple Block - V2 */
    /* #endregion Footer Simple Block - V2 */
}
@media (max-width: 767px) {
    .footer-simple__wrapper {
        padding-top: 0;
    }
}
@media (min-width: 768px) {
    .footer-simple__primary {
        display: flex;
        justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .footer-simple__primary {
        display: block;
        padding: 0;
    }
}
@media (min-width: 768px) {
    .footer-simple__primary-column {
        border: none;
        padding: 0 20px;
        flex: 1;
    }
    .footer-simple__primary-column:first-child {
        padding-left: 30px;
    }
    .footer-simple__primary-column:last-child {
        padding-right: 30px;
    }
}
@media (max-width: 767px) {
    .footer-simple__primary-column {
        display: block;
        margin: 0 12px;
    }
    .footer-simple__primary-column.imagesimpleblock {
        display: none;
    }
    .footer-simple__primary-column.closed .nav-list-simple__links {
        display: none;
    }
    .footer-simple__primary-column.closed svg {
        transform: rotate(0deg);
    }
}
.footer-simple__primary-column img {
    margin: 0 auto;
}
.footer-simple__primary-column svg {
    transform: rotate(180deg);
}
.footer-simple__primary .nav-list-simple__heading {
    font-size: 18px;
}
@media (min-width: 768px) {
    .footer-simple__primary .nav-list-simple__heading svg {
        display: none;
    }
}
@media (max-width: 767px) {
    .footer-simple__primary .nav-list-simple__heading {
        padding: 14px 10px;
        cursor: pointer;
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
    }
    .footer-simple__primary .nav-list-simple__heading svg {
        margin-left: auto;
    }
}
@media (min-width: 768px) {
    .footer-simple__primary .nav-list-simple__links {
        display: block !important;
    }
}
.footer-simple__primary .nav-list-simple__links a {
    display: block;
    padding: 5px 0;
    text-decoration: none;
}
@media (max-width: 767px) {
    .footer-simple__primary .nav-list-simple__links a {
        padding: 8px 10px;
    }
    .footer-simple__primary .nav-list-simple__links a:first-child {
        padding-top: 0;
    }
    .footer-simple__primary .nav-list-simple__links a:last-child {
        padding-bottom: 10px;
    }
}
.footer-simple__secondary {
    display: flex;
    justify-content: center;
}
.footer-simple__tertiary {
    display: flex;
}
@media (min-width: 768px) {
    .footer-simple__tertiary {
        -webkit-flex-align: center;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .footer-simple__tertiary {
        flex-wrap: wrap;
    }
}
@media (min-width: 768px) {
    .footer-simple__tertiary-left {
        margin-right: auto;
        padding-right: 10px;
        display: flex;
        justify-content: flex-start;
    }
}
@media (max-width: 767px) {
    .footer-simple__tertiary-left {
        order: 3;
        width: 100%;
        display: block;
        text-align: center;
    }
}
@media (min-width: 768px) {
    .footer-simple__tertiary-center {
        display: flex;
        justify-content: center;
        flex: 1;
    }
}
@media (max-width: 767px) {
    .footer-simple__tertiary-center {
        order: 1;
        width: 100%;
        display: block;
    }
}
.footer-simple__tertiary-center a {
    display: inline-block;
    font-size: 12px;
    text-decoration: none;
}
@media (min-width: 768px) {
    .footer-simple__tertiary-right {
        margin-left: auto;
        padding-left: 10px;
        display: flex;
        justify-content: flex-end;
    }
}
@media (max-width: 767px) {
    .footer-simple__tertiary-right {
        order: 2;
        width: 100%;
        display: block;
    }
    .footer-simple__tertiary-right img {
        margin: 0 auto;
    }
}
.footer-simple__quaternary {
    display: flex;
    justify-content: center;
}
.footer-simple-v2__top-content-area {
    display: flex;
}
.footer-simple-v2__top-content-area-links {
    display: flex;
}
.footer-simple-v2__top-content-area-links-anchor {
    display: block;
    text-decoration: none;
    display: flex;
    -webkit-flex-align: center;
    align-items: center;
}
.footer-simple-v2__top-content-area-links-anchor .arrow-icon {
    transform: rotate(-90deg);
}
.footer-simple-v2__top-content-area-links-country-toggle {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.footer-simple-v2__top-content-area-links-country-toggle[aria-expanded='true'] {
    color: var(--footer-navigation-links-color-mobile);
    background: var(--footer-navigation-links-background-color-mobile);
    border-bottom: none;
}
.footer-simple-v2__top-content-area-links-country-toggle[aria-expanded='true']
    .arrow-icon {
    transform: rotate(180deg);
}
.footer-simple-v2__top-content-area-links-country-content {
    display: none;
    visibility: hidden;
    overflow: hidden;
}
.footer-simple-v2__top-content-area-links-country-content.expanded {
    display: block;
    width: 100%;
    visibility: visible;
    z-index: 1;
}
.footer-simple-v2__top-content-area-links-country .countries {
    padding: 20px;
}
.footer-simple-v2__top-content-area-links-country .countries__country {
    display: flex;
    padding-bottom: 10px;
}
.footer-simple-v2__top-content-area-links-country .countries__country-image {
    -ms-flex-basis: 20%;
    flex-basis: 20%;
}
.footer-simple-v2__top-content-area-links-country .countries__country-name {
    -ms-flex-basis: 80%;
    flex-basis: 80%;
    font-size: 16px;
    font-weight: 700;
    padding: 0 10px;
}
.footer-simple-v2__top-content-area-links-country
    .countries__country-languages-links {
    font-weight: normal;
    text-decoration: none;
    font-size: 14px;
    border-right: 1px solid #000;
    padding: 0 4px;
}
.footer-simple-v2__top-content-area-links-country
    .countries__country-languages-links:last-of-type {
    border: none;
}
.footer-simple-v2__top-content-area-links .arrow-icon {
    margin-left: 10px;
}
.footer-simple-v2__fine-print {
    display: flex;
    -webkit-flex-align: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background: var(--footer-background-color);
}
.footer-simple-v2__fine-print-legal {
    display: flex;
    -ms-flex-basis: 80%;
    flex-basis: 80%;
    -webkit-flex-align: center;
    align-items: center;
}
.footer-simple-v2__fine-print-copyright,
.footer-simple-v2__fine-print-copyright p {
    font-size: 14px;
}
.footer-simple-v2__fine-print-navigation-items {
    display: flex;
    -webkit-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer-simple-v2__fine-print-navigation-items-anchor {
    text-decoration: none;
    font-size: 14px;
}
.footer-simple-v2__fine-print-navigation-item {
    padding: 0 10px;
}
.footer-simple-v2__fine-print-social {
    -ms-flex-basis: 20%;
    flex-basis: 20%;
}
.footer-simple-v2__fine-print-social .social-link__container {
    display: block;
}
.footer-simple-v2__fine-print-social .social-link__content {
    justify-content: space-between;
    -webkit-flex-align: flex-start;
    align-items: flex-start;
}
.footer-simple-v2__fine-print-social .social-link__item {
    margin: 0;
}
@media (min-width: 768px) {
    .footer-simple-v2 .footer-simple__primary {
        padding: 40px 0;
        border-top: 1px solid var(--footer-navigation-border-color);
        border-bottom: 1px solid var(--footer-navigation-border-color);
        flex-wrap: wrap;
        /* If needed, we justify the content to the left, as after 5 items the columns endup wrapping
     * on to a second line on different viewports, this is to account for these scenarios and keep the columns aligned. */
    }
    .footer-simple-v2
        .footer-simple__primary[data-horizontal-alignment='left'] {
        justify-content: flex-start;
    }
    .footer-simple-v2 .footer-simple__primary-column {
        padding: 10px 30px 0 0;
        min-width: 140px;
        max-width: 235px;
    }
    .footer-simple-v2__top-content-area {
        -webkit-flex-align: center;
        align-items: center;
        padding: 0 0 20px 0;
    }
    .footer-simple-v2__top-content-area-brand {
        -ms-flex-basis: 20%;
        flex-basis: 20%;
    }
    .footer-simple-v2__top-content-area-links {
        -ms-flex-basis: 80%;
        flex-basis: 80%;
        justify-content: flex-end;
    }
    .footer-simple-v2__top-content-area-links-anchor {
        margin-left: 30px;
    }
    .footer-simple-v2__top-content-area-links-list {
        display: flex;
        justify-content: flex-end;
    }
    .footer-simple-v2__top-content-area-links-item {
        display: flex;
        -webkit-flex-align: center;
        align-items: center;
    }
    .footer-simple-v2__top-content-area-links-country {
        margin-left: 30px;
        position: relative;
        -ms-flex-grow: 0.1;
        flex-grow: 0.1;
    }
    .footer-simple-v2__top-content-area-links-country-toggle {
        padding: 10px;
    }
    .footer-simple-v2__top-content-area-links-country-content.expanded {
        position: absolute;
    }
    .footer-simple-v2__top-content-area-links-country .countries {
        padding: 10px;
    }
}
@media (max-width: 767px) {
    .footer-simple-v2 .footer-simple__primary-column {
        margin: 0;
    }
    .footer-simple-v2 .nav-list-simple__heading[aria-expanded='true'] {
        color: var(--footer-navigation-links-color-mobile) !important;
        background: var(--footer-navigation-links-background-color-mobile);
    }
    .footer-simple-v2 .nav-list-simple__links {
        padding: 0 0 20px 0;
        background: var(--footer-navigation-links-background-color-mobile);
    }
    .footer-simple-v2 .nav-list-simple__link {
        font-size: 16px;
        padding-top: 20px;
    }
    .footer-simple-v2 .nav-list-simple__link-anchor {
        color: var(--footer-navigation-links-color-mobile);
    }
    .footer-simple-v2__top-content-area {
        flex-wrap: wrap;
        padding: 0 0 50px 0;
    }
    .footer-simple-v2__top-content-area-brand {
        -ms-flex-basis: 50%;
        flex-basis: 50%;
        padding: 20px;
    }
    .footer-simple-v2__top-content-area-links {
        -ms-flex-basis: 100%;
        flex-basis: 100%;
        flex-direction: column;
    }
    .footer-simple-v2__top-content-area-links-list {
        -ms-flex-basis: 100%;
        flex-basis: 100%;
        flex-direction: column;
    }
    .footer-simple-v2__top-content-area-links-anchor {
        -ms-flex-basis: 100%;
        flex-basis: 100%;
        justify-content: space-between;
        padding: 14px 10px;
        border-bottom: 1px solid var(--footer-navigation-border-color);
    }
    .footer-simple-v2__top-content-area-links-country {
        -ms-flex-basis: 100%;
        flex-basis: 100%;
        margin-left: 0;
    }
    .footer-simple-v2__top-content-area-links-country-toggle {
        display: flex;
        justify-content: space-between;
        -ms-flex-basis: 100%;
        flex-basis: 100%;
        -webkit-flex-align: center;
        align-items: center;
        padding: 14px 10px;
        border-bottom: 1px solid var(--footer-navigation-border-color);
    }
    .footer-simple-v2__top-content-area-links-country-content.expanded {
        border-bottom: 1px solid var(--footer-navigation-border-color);
    }
    .footer-simple-v2__top-content-area-links-country .countries__country {
        padding-bottom: 20px;
    }
    .footer-simple-v2__top-content-area-links-country
        .countries__country:last-of-type {
        padding: 0;
    }
    .footer-simple-v2__fine-print {
        flex-wrap: wrap;
    }
    .footer-simple-v2__fine-print-legal {
        display: flex;
        flex-wrap: wrap;
    }
    .footer-simple-v2__fine-print-legal,
    .footer-simple-v2__fine-print-copyright,
    .footer-simple-v2__fine-print-navigation-items,
    .footer-simple-v2__fine-print-navigation-item {
        -ms-flex-basis: 100%;
        flex-basis: 100%;
    }
    .footer-simple-v2__fine-print-navigation-items {
        flex-wrap: wrap;
        padding: 0;
    }
    .footer-simple-v2__fine-print-copyright,
    .footer-simple-v2__fine-print-navigation-item {
        padding: 4px 0;
    }
    .footer-simple-v2__fine-print-social {
        -ms-flex-basis: 100%;
        flex-basis: 100%;
        margin-top: 20px;
    }
    .footer-simple-v2__fine-print-social .social-link__content {
        justify-content: flex-start;
    }
    .footer-simple-v2__fine-print-social .social-link__item {
        margin: 0 30px 0 0;
    }
}

.copy-generic__container ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 16px;
    text-align: left;
}
@media (min-width: 1200px) {
    .copy-generic__container ul li {
        font-size: 16px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .copy-generic__container ul li {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .copy-generic__container ul li {
        font-size: 12px;
    }
}
.copy-generic__heading {
    line-height: 1;
}

.copy-icon-block__container {
    display: flex;
}
@media (max-width: 767px) {
    .copy-icon-block__container[data-stack-on-mobile='true'] {
        flex-flow: column nowrap;
        -webkit-flex-align: center;
        align-items: center;
    }
}
.copy-icon-block__container .media-content {
    flex: 0 0 auto;
}
.copy-icon-block__container .copy-content {
    flex: 0 1 auto;
}
.copy-icon-block__container .copy-content ul {
    list-style-type: disc;
}
.copy-icon-block__container .copy-content li {
    margin-left: 1em;
}

.copy-icon-block__alignment-horizontal {
    flex-direction: column;
}
.copy-icon-block__alignment-horizontal-left {
    justify-content: flex-start;
}
.copy-icon-block__alignment-horizontal-center {
    justify-content: center;
}
.copy-icon-block__alignment-horizontal-right {
    justify-content: flex-end;
}
.copy-icon-block__alignment-vertical {
    flex-direction: column;
}
.copy-icon-block__alignment-vertical-top {
    -webkit-flex-item-align: flex-start;
    align-self: flex-start;
}
.copy-icon-block__alignment-vertical-center {
    -webkit-flex-item-align: center;
    align-self: center;
}
.copy-icon-block__alignment-vertical-bottom {
    -webkit-flex-item-align: flex-end;
    align-self: flex-end;
}
.copy-icon-block__alignment-vertical-full {
    display: flex;
}

@media (max-width: 767px) {
    .mobile-copy-icon-block__alignment-horizontal {
        flex-direction: column;
    }
    .mobile-copy-icon-block__alignment-horizontal-left {
        justify-content: flex-start;
    }
    .mobile-copy-icon-block__alignment-horizontal-center {
        justify-content: center;
    }
    .mobile-copy-icon-block__alignment-horizontal-right {
        justify-content: flex-end;
    }
    .mobile-copy-icon-block__alignment-vertical {
        flex-direction: column;
    }
    .mobile-copy-icon-block__alignment-vertical-top {
        -webkit-flex-item-align: flex-start;
        align-self: flex-start;
    }
    .mobile-copy-icon-block__alignment-vertical-center {
        -webkit-flex-item-align: center;
        align-self: center;
    }
    .mobile-copy-icon-block__alignment-vertical-bottom {
        -webkit-flex-item-align: flex-end;
        align-self: flex-end;
    }
    .mobile-copy-icon-block__alignment-vertical-full {
        display: flex;
    }
}
/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
    position: relative;
}

.flickity-enabled:focus {
    outline: 0;
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing;
}

.flickity-prev-next-button {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    background: hsla(0, 0%, 100%, 0.75);
    cursor: pointer;
    transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
    background: #fff;
}

.flickity-prev-next-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #09f;
}

.flickity-prev-next-button:active {
    opacity: 0.6;
}

.flickity-prev-next-button.previous {
    left: 10px;
}

.flickity-prev-next-button.next {
    right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}

.flickity-prev-next-button:disabled {
    opacity: 0.3;
    cursor: auto;
}

.flickity-prev-next-button svg {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}

.flickity-prev-next-button .arrow {
    fill: #333;
}

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}

.flickity-rtl .flickity-page-dots {
    direction: rtl;
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
    opacity: 1;
}

/* Barlow Thin - 100 (light) */
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Thin.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Thin.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Thin.ttf')
            format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-ThinItalic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-ThinItalic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-ThinItalic.ttf')
            format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
/* Barlow Regular - 400 (default) */
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Regular.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Regular.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Regular.ttf')
            format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Italic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Italic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Italic.ttf')
            format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
/* Barlow Semibold - 600 (semi-bold) */
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-SemiBold.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-SemiBold.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-SemiBold.ttf')
            format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-SemiBoldItalic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-SemiBoldItalic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-SemiBoldItalic.ttf')
            format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
/* Barlow Bold - 700 (bold) */
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Bold.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Bold.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Bold.ttf')
            format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-BoldItalic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-BoldItalic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-BoldItalic.ttf')
            format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
/* Barlow Black - 900 (extra-bold) */
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Black.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Black.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-Black.ttf')
            format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-BlackItalic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-BlackItalic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow/Barlow-BlackItalic.ttf')
            format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}
/* Barlow Condensed Thin & Thin Italic - 100 (light) */
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Thin.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Thin.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Thin.ttf')
            format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-ThinItalic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-ThinItalic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-ThinItalic.ttf')
            format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
/* Barlow Condensed Regular & Italic - 400 (default) */
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Regular.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Regular.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Regular.ttf')
            format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Italic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Italic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Italic.ttf')
            format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
/* Barlow Condensed Semibold & Semibold Italic - 600 (semi-bold) */
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-SemiBold.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-SemiBold.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-SemiBold.ttf')
            format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-SemiBoldItalic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-SemiBoldItalic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-SemiBoldItalic.ttf')
            format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
/* Barlow Condensed Bold & Bold Italic - 700 (bold) */
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Bold.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Bold.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Bold.ttf')
            format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-BoldItalic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Boldtalic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-BoldItalic.ttf')
            format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
/* Barlow Condensed Black & Black Italic - 900 (extra-bold) */
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Black.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Black.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-Black.ttf')
            format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src:
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-BlackItalic.woff2')
            format('woff2'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-BlackItalic.woff')
            format('woff'),
        url('/assets/non-embedded/offroad/v2/core/fonts/barlow-condensed/BarlowCondensed-BlackItalic.ttf')
            format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}
body {
    font-family: 'Arial', sans-serif;
}

:root {
    --color-primary: #004e97;
    --color-primary-light: #65b2e9;
    --color-primary-light-hover: #004e97;
    --color-primary-light-focus: #004e97;
    --color-primary-light-disabled: #474747;
    --color-primary-medium: #004e97;
    --color-primary-medium-hover: #004e97;
    --color-primary-medium-focus: #004e97;
    --color-primary-medium-disabled: #004e97;
    --color-primary-dark: #2d72b4;
    --color-primary-dark-hover: #2d72b4;
    --color-primary-dark-focus: #2d72b4;
    --color-primary-dark-disabled: #2d72b4;
    --font-family-primary: 'Barlow', sans-serif;
    --font-family-secondary: 'Barlow Condensed', sans-serif;
    --font-family-tertiary: 'Arial', sans-serif;
    --color-light: #fff;
    --color-dark: #000;
    --color-error: #c03b13;
    --color-tags: #00a651;
    --color-highlight: #307abb;
    --color-highlight-light: #e6f2fb;
    --color-gray-13: #222;
    --color-gray-27: #444;
    --color-gray-40: #666;
    --color-gray-53: #888;
    --color-gray-67: #aaa;
    --color-gray-80: #ccc;
    --color-gray-93: #eee;
    --color-gray-98: #f9f9f9;
}

.background-color-primary {
    background-color: #004e97;
}
.background-color-primary-light {
    background-color: #65b2e9;
}
.background-color-primary-medium {
    background-color: #004e97;
}
.background-color-primary-dark {
    background-color: #2d72b4;
}
.background-color-secondary {
    background-color: #006450;
}
.background-color-secondary-light {
    background-color: #ff9e1b;
}
.background-color-secondary-medium {
    background-color: #006450;
}
.background-color-secondary-dark {
    background-color: #8a2432;
}
.background-color-tertiary {
    background-color: #63656a;
}
.background-color-tertiary-light {
    background-color: #d9d9d7;
}
.background-color-tertiary-medium {
    background-color: #63656a;
}
.background-color-tertiary-dark {
    background-color: #b2b2b2;
}

.border-primary {
    border-color: #004e97;
}
.border-primary-light {
    border-color: #65b2e9;
}
.border-primary-medium {
    border-color: #004e97;
}
.border-primary-dark {
    border-color: #2d72b4;
}
.border-secondary {
    border-color: #006450;
}
.border-secondary-light {
    border-color: #ff9e1b;
}
.border-secondary-medium {
    border-color: #006450;
}
.border-secondary-dark {
    border-color: #8a2432;
}
.border-tertiary {
    border-color: #63656a;
}
.border-tertiary-light {
    border-color: #d9d9d7;
}
.border-tertiary-medium {
    border-color: #63656a;
}
.border-tertiary-dark {
    border-color: #b2b2b2;
}
.border-dashed.border-primary {
    background-image: linear-gradient(
        90deg,
        #004e97,
        #004e97 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-primary-light {
    background-image: linear-gradient(
        90deg,
        #65b2e9,
        #65b2e9 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-primary-medium {
    background-image: linear-gradient(
        90deg,
        #004e97,
        #004e97 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-primary-dark {
    background-image: linear-gradient(
        90deg,
        #2d72b4,
        #2d72b4 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-secondary {
    background-image: linear-gradient(
        90deg,
        #006450,
        #006450 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-secondary-light {
    background-image: linear-gradient(
        90deg,
        #ff9e1b,
        #ff9e1b 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-secondary-medium {
    background-image: linear-gradient(
        90deg,
        #006450,
        #006450 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-secondary-dark {
    background-image: linear-gradient(
        90deg,
        #8a2432,
        #8a2432 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-tertiary {
    background-image: linear-gradient(
        90deg,
        #63656a,
        #63656a 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-tertiary-light {
    background-image: linear-gradient(
        90deg,
        #d9d9d7,
        #d9d9d7 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-tertiary-medium {
    background-image: linear-gradient(
        90deg,
        #63656a,
        #63656a 60%,
        transparent 60%,
        transparent 100%
    );
}
.border-dashed.border-tertiary-dark {
    background-image: linear-gradient(
        90deg,
        #b2b2b2,
        #b2b2b2 60%,
        transparent 60%,
        transparent 100%
    );
}

.font-family-default {
    font-family: 'Barlow', sans-serif;
}

.font-family-primary {
    font-family: 'Barlow', sans-serif;
    line-height: 1.2;
}
@media (min-width: 992px) {
    .font-family-primary.font-size-xs,
    .font-family-primary.font-size-xs p {
        font-size: 18px;
    }
}
@media (max-width: 991px) {
    .font-family-primary.font-size-xs,
    .font-family-primary.font-size-xs p {
        font-size: 16px;
    }
}
@media (min-width: 1200px) {
    .font-family-primary.font-size-sm,
    .font-family-primary.font-size-sm p {
        font-size: 20px;
    }
}
@media (max-width: 1199px) {
    .font-family-primary.font-size-sm,
    .font-family-primary.font-size-sm p {
        font-size: 18px;
    }
}
@media (min-width: 1200px) {
    .font-family-primary.font-size-md,
    .font-family-primary.font-size-md p {
        font-size: 22px;
    }
}
@media (max-width: 1199px) {
    .font-family-primary.font-size-md,
    .font-family-primary.font-size-md p {
        font-size: 20px;
    }
}
@media (min-width: 1200px) {
    .font-family-primary.font-size-lg,
    .font-family-primary.font-size-lg p {
        font-size: 28px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-family-primary.font-size-lg,
    .font-family-primary.font-size-lg p {
        font-size: 26px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-family-primary.font-size-lg,
    .font-family-primary.font-size-lg p {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .font-family-primary.font-size-lg,
    .font-family-primary.font-size-lg p {
        font-size: 22px;
    }
}
@media (min-width: 1200px) {
    .font-family-primary.font-size-xl,
    .font-family-primary.font-size-xl p {
        font-size: 34px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-family-primary.font-size-xl,
    .font-family-primary.font-size-xl p {
        font-size: 32px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-family-primary.font-size-xl,
    .font-family-primary.font-size-xl p {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .font-family-primary.font-size-xl,
    .font-family-primary.font-size-xl p {
        font-size: 28px;
    }
}
@media (min-width: 1200px) {
    .font-family-primary.font-size-xxl,
    .font-family-primary.font-size-xxl p {
        font-size: 44px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-family-primary.font-size-xxl,
    .font-family-primary.font-size-xxl p {
        font-size: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-family-primary.font-size-xxl,
    .font-family-primary.font-size-xxl p {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .font-family-primary.font-size-xxl,
    .font-family-primary.font-size-xxl p {
        font-size: 34px;
    }
}
@media (min-width: 1200px) {
    .font-family-primary.font-size-xxxl,
    .font-family-primary.font-size-xxxl p {
        font-size: 58px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .font-family-primary.font-size-xxxl,
    .font-family-primary.font-size-xxxl p {
        font-size: 54px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .font-family-primary.font-size-xxxl,
    .font-family-primary.font-size-xxxl p {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .font-family-primary.font-size-xxxl,
    .font-family-primary.font-size-xxxl p {
        font-size: 46px;
    }
}
.font-family-primary sup {
    top: inherit;
    line-height: inherit;
    vertical-align: top;
}

.font-family-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.5;
}

.font-family-tertiary {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

.font-color-primary {
    color: #004e97;
}
.font-color-primary-hover:hover {
    color: #004e97;
}
.font-color-primary-light {
    color: #65b2e9;
}
.font-color-primary-light-hover:hover {
    color: #004e97;
}
.font-color-primary-light-focus:focus {
    color: #004e97;
}
.font-color-primary-medium {
    color: #004e97;
}
.font-color-primary-medium-hover:hover {
    color: #004e97;
}
.font-color-primary-medium-focus:focus {
    color: #004e97;
}
.font-color-primary-dark {
    color: #2d72b4;
}
.font-color-primary-dark-hover:hover {
    color: #2d72b4;
}
.font-color-primary-dark-focus:focus {
    color: #2d72b4;
}
.font-color-secondary {
    color: #006450;
}
.font-color-secondary-hover:hover {
    color: #006450;
}
.font-color-secondary-light {
    color: #ff9e1b;
}
.font-color-secondary-light-hover:hover {
    color: #ff9e1b;
}
.font-color-secondary-light-focus:focus {
    color: #ff9e1b;
}
.font-color-secondary-medium {
    color: #006450;
}
.font-color-secondary-medium-hover:hover {
    color: #006450;
}
.font-color-secondary-medium-focus:focus {
    color: #006450;
}
.font-color-secondary-dark {
    color: #8a2432;
}
.font-color-secondary-dark-hover:hover {
    color: #006450;
}
.font-color-secondary-dark-focus:focus {
    color: #006450;
}
.font-color-tertiary {
    color: #63656a;
}
.font-color-tertiary-hover:hover {
    color: #63656a;
}
.font-color-tertiary-light {
    color: #d9d9d7;
}
.font-color-tertiary-light-hover:hover {
    color: #d9d9d7;
}
.font-color-tertiary-light-focus:focus {
    color: #d9d9d7;
}
.font-color-tertiary-medium {
    color: #63656a;
}
.font-color-tertiary-medium-hover:hover {
    color: #63656a;
}
.font-color-tertiary-medium-focus:focus {
    color: #63656a;
}
.font-color-tertiary-dark {
    color: #b2b2b2;
}
.font-color-tertiary-dark-hover:hover {
    color: #63656a;
}
.font-color-tertiary-dark-focus:focus {
    color: #63656a;
}

p {
    font-size: 16px;
}

@media (max-width: 767px) {
    .mobile-font-color-primary {
        color: #004e97 !important;
    }
    .mobile-font-color-primary-light {
        color: #65b2e9 !important;
    }
    .mobile-font-color-primary-medium {
        color: #004e97 !important;
    }
    .mobile-font-color-primary-dark {
        color: #2d72b4 !important;
    }
    .mobile-font-color-secondary {
        color: #006450 !important;
    }
    .mobile-font-color-secondary-light {
        color: #ff9e1b !important;
    }
    .mobile-font-color-secondary-medium {
        color: #006450 !important;
    }
    .mobile-font-color-secondary-dark {
        color: #8a2432 !important;
    }
    .mobile-font-color-tertiary {
        color: #63656a !important;
    }
    .mobile-font-color-tertiary-light {
        color: #d9d9d7 !important;
    }
    .mobile-font-color-tertiary-medium {
        color: #63656a !important;
    }
    .mobile-font-color-tertiary-dark {
        color: #b2b2b2 !important;
    }
}
.btn {
    background-image: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    border-radius: 3px;
}
.btn-sm {
    font-size: 14px;
    padding-top: 1px;
}
.btn-md {
    font-size: 18px;
    padding-top: 2px;
}
.btn-lg {
    font-size: 24px;
    padding-top: 4px;
}
.btn-color-primary,
.btn-color-primary-light,
.btn-color-primary-dark {
    color: #fff;
}
.btn-color-primary:disabled,
.btn-color-primary.disabled,
.btn-color-primary[disabled],
.btn-color-primary[disabled='disabled'],
.btn-color-primary-light:disabled,
.btn-color-primary-light.disabled,
.btn-color-primary-light[disabled],
.btn-color-primary-light[disabled='disabled'],
.btn-color-primary-dark:disabled,
.btn-color-primary-dark.disabled,
.btn-color-primary-dark[disabled],
.btn-color-primary-dark[disabled='disabled'] {
    opacity: 0.6;
    filter: alpha(opacity=60);
    cursor: not-allowed;
}
.btn-color-light {
    background-color: #f9f9f9;
    color: #000;
}
.btn-color-light:active,
.btn-color-light:focus {
    background-color: #fff;
}
.btn-color-light:disabled,
.btn-color-light.disabled,
.btn-color-light[disabled],
.btn-color-light[disabled='disabled'] {
    background-color: #888;
    opacity: 0.6;
    filter: alpha(opacity=60);
}
.btn-color-dark {
    background-color: #222;
    color: #fff;
}
.btn-color-dark:active,
.btn-color-dark:focus {
    background-color: #000;
}
.btn-color-dark:disabled,
.btn-color-dark.disabled,
.btn-color-dark[disabled],
.btn-color-dark[disabled='disabled'] {
    background-color: #aaa;
    opacity: 0.6;
    filter: alpha(opacity=60);
}
.btn-style-primary.btn-color-primary,
.btn-style-primary.btn-color-primary-light,
.btn-style-primary.btn-color-primary-dark,
.btn-style-primary.btn-color-dark {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.btn-style-primary.btn-color-primary:active,
.btn-style-primary.btn-color-primary:focus,
.btn-style-primary.btn-color-primary-light:active,
.btn-style-primary.btn-color-primary-light:focus,
.btn-style-primary.btn-color-primary-dark:active,
.btn-style-primary.btn-color-primary-dark:focus,
.btn-style-primary.btn-color-dark:active,
.btn-style-primary.btn-color-dark:focus {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.65);
}
.btn-style-primary.btn-color-light {
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.25);
}
.btn-style-primary.btn-color-light:active,
.btn-style-primary.btn-color-light:focus {
    box-shadow: 0 3px 6px rgba(255, 255, 255, 0.65);
}
.btn-style-secondary {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
}
.btn-style-secondary:active.btn-color-primary,
.btn-style-secondary:active.btn-color-primary-light,
.btn-style-secondary:active.btn-color-primary-dark,
.btn-style-secondary:focus.btn-color-primary,
.btn-style-secondary:focus.btn-color-primary-light,
.btn-style-secondary:focus.btn-color-primary-dark {
    color: #fff;
}
.btn-style-secondary:active.btn-color-light,
.btn-style-secondary:focus.btn-color-light {
    border-color: #fff;
    color: #000;
}
.btn-style-secondary:active.btn-color-dark,
.btn-style-secondary:focus.btn-color-dark {
    border-color: #000;
    color: #fff;
}
.btn-style-secondary:disabled,
.btn-style-secondary.disabled,
.btn-style-secondary[disabled],
.btn-style-secondary[disabled='disabled'] {
    background-color: transparent;
}
.btn-style-secondary:disabled.btn-color-light,
.btn-style-secondary.disabled.btn-color-light,
.btn-style-secondary[disabled].btn-color-light,
.btn-style-secondary[disabled='disabled'].btn-color-light {
    border-color: #888;
    color: #888;
}
.btn-style-secondary:disabled.btn-color-dark,
.btn-style-secondary.disabled.btn-color-dark,
.btn-style-secondary[disabled].btn-color-dark,
.btn-style-secondary[disabled='disabled'].btn-color-dark {
    border-color: #aaa;
    color: #aaa;
}
.btn-style-secondary.btn-color-primary-dark {
    color: #fff;
}
.btn-style-secondary.btn-color-light {
    border-color: #fff;
    color: #fff;
}
.btn-style-secondary.btn-color-dark {
    border-color: #000;
    color: #000;
}
.btn-style-tertiary {
    background-color: transparent;
}
.btn-style-tertiary:active.btn-color-primary,
.btn-style-tertiary:active.btn-color-primary-light,
.btn-style-tertiary:active.btn-color-primary-dark,
.btn-style-tertiary:focus.btn-color-primary,
.btn-style-tertiary:focus.btn-color-primary-light,
.btn-style-tertiary:focus.btn-color-primary-dark {
    color: #fff;
}
.btn-style-tertiary:active.btn-color-light,
.btn-style-tertiary:focus.btn-color-light {
    color: #000;
}
.btn-style-tertiary:active.btn-color-dark,
.btn-style-tertiary:focus.btn-color-dark {
    color: #fff;
}
.btn-style-tertiary:disabled,
.btn-style-tertiary.disabled,
.btn-style-tertiary[disabled],
.btn-style-tertiary[disabled='disabled'] {
    background-color: transparent;
}
.btn-style-tertiary:disabled.btn-color-light,
.btn-style-tertiary.disabled.btn-color-light,
.btn-style-tertiary[disabled].btn-color-light,
.btn-style-tertiary[disabled='disabled'].btn-color-light {
    color: #888;
}
.btn-style-tertiary:disabled.btn-color-dark,
.btn-style-tertiary.disabled.btn-color-dark,
.btn-style-tertiary[disabled].btn-color-dark,
.btn-style-tertiary[disabled='disabled'].btn-color-dark {
    color: #aaa;
}
.btn-style-tertiary.btn-color-primary-dark {
    color: #fff;
}
.btn-style-tertiary.btn-color-light {
    color: #fff;
}
.btn-style-tertiary.btn-color-dark {
    color: #000;
}

.no-touchevents .btn-color-light:hover {
    background-color: #ccc;
}
.no-touchevents .btn-color-dark:hover {
    background-color: #666;
}
.no-touchevents .btn-style-primary.btn-color-primary:hover,
.no-touchevents .btn-style-primary.btn-color-primary-light:hover,
.no-touchevents .btn-style-primary.btn-color-primary-dark:hover,
.no-touchevents .btn-style-primary.btn-color-dark:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}
.no-touchevents .btn-style-primary.btn-color-light:hover {
    box-shadow: 0 3px 6px rgba(255, 255, 255, 0.35);
}
.no-touchevents .btn-style-secondary:hover.btn-color-primary,
.no-touchevents .btn-style-secondary:hover.btn-color-primary-light,
.no-touchevents .btn-style-secondary:hover.btn-color-primary-dark {
    color: #fff;
}
.no-touchevents .btn-style-secondary:hover.btn-color-light {
    border-color: #ccc;
    color: #000;
}
.no-touchevents .btn-style-secondary:hover.btn-color-dark {
    border-color: #666;
    color: #fff;
}
.no-touchevents .btn-style-tertiary:hover.btn-color-primary,
.no-touchevents .btn-style-tertiary:hover.btn-color-primary-light,
.no-touchevents .btn-style-tertiary:hover.btn-color-primary-dark {
    color: #fff;
}
.no-touchevents .btn-style-tertiary:hover.btn-color-light {
    color: #000;
}
.no-touchevents .btn-style-tertiary:hover.btn-color-dark {
    color: #fff;
}

.no-touchevents .btn-color-secondary:hover,
.no-touchevents .btn-color-secondary-light:hover {
    background-color: #0f8bff;
}
.no-touchevents .btn-color-secondary-dark:hover {
    background-color: #00396f;
}

.btn {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-color-primary,
.btn-color-primary-light {
    background: #004e97;
    color: #fff;
}
.btn-color-primary:hover,
.btn-color-primary-light:hover {
    background: #0f8bff;
    color: #ffffff;
}
.btn-color-primary:active,
.btn-color-primary:focus,
.btn-color-primary-light:active,
.btn-color-primary-light:focus {
    background: #00396f;
    color: #ffffff;
}
.btn-color-primary:disabled,
.btn-color-primary.disabled,
.btn-color-primary[disabled],
.btn-color-primary[disabled='disabled'],
.btn-color-primary-light:disabled,
.btn-color-primary-light.disabled,
.btn-color-primary-light[disabled],
.btn-color-primary-light[disabled='disabled'] {
    background: transparent;
    border: 2px solid #75747b;
    color: #75747b;
}
.btn-color-secondary,
.btn-color-secondary-light {
    background: #ffffff;
    color: #004e97;
    border: 2px solid #004e97;
    box-shadow: none;
}
.btn-color-secondary:hover,
.btn-color-secondary-light:hover {
    background: #0f8bff;
    color: #ffffff;
    border: 2px solid #0f8bff;
}
.btn-color-secondary:active,
.btn-color-secondary:focus,
.btn-color-secondary-light:active,
.btn-color-secondary-light:focus {
    background: #00396f !important;
    color: #ffffff;
    border: 2px solid #00396f;
}
.btn-color-secondary:disabled,
.btn-color-secondary.disabled,
.btn-color-secondary[disabled],
.btn-color-secondary[disabled='disabled'],
.btn-color-secondary-light:disabled,
.btn-color-secondary-light.disabled,
.btn-color-secondary-light[disabled],
.btn-color-secondary-light[disabled='disabled'] {
    background: #75747b;
    color: #fff;
    border: none;
}
.btn-color-secondary:disabled:active,
.btn-color-secondary:disabled:hover,
.btn-color-secondary:disabled:focus,
.btn-color-secondary.disabled:active,
.btn-color-secondary.disabled:hover,
.btn-color-secondary.disabled:focus,
.btn-color-secondary[disabled]:active,
.btn-color-secondary[disabled]:hover,
.btn-color-secondary[disabled]:focus,
.btn-color-secondary[disabled='disabled']:active,
.btn-color-secondary[disabled='disabled']:hover,
.btn-color-secondary[disabled='disabled']:focus,
.btn-color-secondary-light:disabled:active,
.btn-color-secondary-light:disabled:hover,
.btn-color-secondary-light:disabled:focus,
.btn-color-secondary-light.disabled:active,
.btn-color-secondary-light.disabled:hover,
.btn-color-secondary-light.disabled:focus,
.btn-color-secondary-light[disabled]:active,
.btn-color-secondary-light[disabled]:hover,
.btn-color-secondary-light[disabled]:focus,
.btn-color-secondary-light[disabled='disabled']:active,
.btn-color-secondary-light[disabled='disabled']:hover,
.btn-color-secondary-light[disabled='disabled']:focus {
    background: #75747b;
    color: #fff;
}
.btn-color-secondary svg path,
.btn-color-secondary-light svg path {
    stroke: var(--color-primary);
}
.btn-color-tertiary,
.btn-color-tertiary-light {
    background: transparent;
    border: none;
    color: #004e97;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}
.btn-color-tertiary:hover,
.btn-color-tertiary-light:hover {
    color: #0072d6;
}
.btn-color-tertiary:active,
.btn-color-tertiary:focus,
.btn-color-tertiary-light:active,
.btn-color-tertiary-light:focus {
    color: #00396f;
}
.btn-color-tertiary:disabled,
.btn-color-tertiary.disabled,
.btn-color-tertiary[disabled],
.btn-color-tertiary[disabled='disabled'],
.btn-color-tertiary-light:disabled,
.btn-color-tertiary-light.disabled,
.btn-color-tertiary-light[disabled],
.btn-color-tertiary-light[disabled='disabled'] {
    color: #75747b;
}
.btn-color-tertiary:disabled:active,
.btn-color-tertiary:disabled:hover,
.btn-color-tertiary:disabled:focus,
.btn-color-tertiary.disabled:active,
.btn-color-tertiary.disabled:hover,
.btn-color-tertiary.disabled:focus,
.btn-color-tertiary[disabled]:active,
.btn-color-tertiary[disabled]:hover,
.btn-color-tertiary[disabled]:focus,
.btn-color-tertiary[disabled='disabled']:active,
.btn-color-tertiary[disabled='disabled']:hover,
.btn-color-tertiary[disabled='disabled']:focus,
.btn-color-tertiary-light:disabled:active,
.btn-color-tertiary-light:disabled:hover,
.btn-color-tertiary-light:disabled:focus,
.btn-color-tertiary-light.disabled:active,
.btn-color-tertiary-light.disabled:hover,
.btn-color-tertiary-light.disabled:focus,
.btn-color-tertiary-light[disabled]:active,
.btn-color-tertiary-light[disabled]:hover,
.btn-color-tertiary-light[disabled]:focus,
.btn-color-tertiary-light[disabled='disabled']:active,
.btn-color-tertiary-light[disabled='disabled']:hover,
.btn-color-tertiary-light[disabled='disabled']:focus {
    color: #75747b;
}
.btn-style-primary.btn-color-primary-light {
    background: #004e97;
    color: #fff;
}
.btn-style-primary.btn-color-primary-light:hover {
    background: #0f8bff;
    color: #ffffff;
}
.btn-style-primary.btn-color-primary-light:active,
.btn-style-primary.btn-color-primary-light:focus {
    background: #00396f;
    color: #ffffff;
}
.btn-style-primary.btn-color-primary-light:disabled,
.btn-style-primary.btn-color-primary-light.disabled,
.btn-style-primary.btn-color-primary-light[disabled],
.btn-style-primary.btn-color-primary-light[disabled='disabled'] {
    border: 2px solid #75747b;
    color: #75747b;
}
.btn-style-primary.btn-color-primary-light:disabled:active,
.btn-style-primary.btn-color-primary-light:disabled:hover,
.btn-style-primary.btn-color-primary-light:disabled:focus,
.btn-style-primary.btn-color-primary-light.disabled:active,
.btn-style-primary.btn-color-primary-light.disabled:hover,
.btn-style-primary.btn-color-primary-light.disabled:focus,
.btn-style-primary.btn-color-primary-light[disabled]:active,
.btn-style-primary.btn-color-primary-light[disabled]:hover,
.btn-style-primary.btn-color-primary-light[disabled]:focus,
.btn-style-primary.btn-color-primary-light[disabled='disabled']:active,
.btn-style-primary.btn-color-primary-light[disabled='disabled']:hover,
.btn-style-primary.btn-color-primary-light[disabled='disabled']:focus {
    background: transparent;
    color: #75747b;
}
.btn-style-primary.btn-color-primary-dark {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-style-primary.btn-color-primary-dark:hover {
    background: #0f8bff;
    border: 2px solid #0f8bff;
    color: #fff;
}
.btn-style-primary.btn-color-primary-dark:active,
.btn-style-primary.btn-color-primary-dark:focus {
    background: #3452b7;
    border: 2px solid #3452b7;
    color: #fff;
}
.btn-style-primary.btn-color-primary-dark:disabled,
.btn-style-primary.btn-color-primary-dark.disabled,
.btn-style-primary.btn-color-primary-dark[disabled],
.btn-style-primary.btn-color-primary-dark[disabled='disabled'] {
    border: 2px solid #75747b;
    color: #75747b;
}
.btn-style-primary.btn-color-primary-dark:disabled:active,
.btn-style-primary.btn-color-primary-dark:disabled:hover,
.btn-style-primary.btn-color-primary-dark:disabled:focus,
.btn-style-primary.btn-color-primary-dark.disabled:active,
.btn-style-primary.btn-color-primary-dark.disabled:hover,
.btn-style-primary.btn-color-primary-dark.disabled:focus,
.btn-style-primary.btn-color-primary-dark[disabled]:active,
.btn-style-primary.btn-color-primary-dark[disabled]:hover,
.btn-style-primary.btn-color-primary-dark[disabled]:focus,
.btn-style-primary.btn-color-primary-dark[disabled='disabled']:active,
.btn-style-primary.btn-color-primary-dark[disabled='disabled']:hover,
.btn-style-primary.btn-color-primary-dark[disabled='disabled']:focus {
    background: transparent;
    color: #75747b;
}
.btn-style-primary.btn-color-light {
    background: #fff;
    color: #000;
}
.btn-style-primary.btn-color-dark {
    background: #000;
    color: #fff;
}
.btn-style-secondary.btn-color-primary-light {
    background: #ffffff;
    color: #004e97;
    border: 2px solid #004e97;
    box-shadow: none;
}
.btn-style-secondary.btn-color-primary-light:hover {
    background: #0f8bff;
    color: #ffffff;
    border: 2px solid #0f8bff;
}
.btn-style-secondary.btn-color-primary-light:active,
.btn-style-secondary.btn-color-primary-light:focus {
    background: #00396f;
    color: #ffffff;
    border: 2px solid #00396f;
}
.btn-style-secondary.btn-color-primary-light:disabled,
.btn-style-secondary.btn-color-primary-light.disabled,
.btn-style-secondary.btn-color-primary-light[disabled],
.btn-style-secondary.btn-color-primary-light[disabled='disabled'] {
    background: #75747b;
    color: #fff;
}
.btn-style-secondary.btn-color-primary-light:disabled:active,
.btn-style-secondary.btn-color-primary-light:disabled:hover,
.btn-style-secondary.btn-color-primary-light:disabled:focus,
.btn-style-secondary.btn-color-primary-light.disabled:active,
.btn-style-secondary.btn-color-primary-light.disabled:hover,
.btn-style-secondary.btn-color-primary-light.disabled:focus,
.btn-style-secondary.btn-color-primary-light[disabled]:active,
.btn-style-secondary.btn-color-primary-light[disabled]:hover,
.btn-style-secondary.btn-color-primary-light[disabled]:focus,
.btn-style-secondary.btn-color-primary-light[disabled='disabled']:active,
.btn-style-secondary.btn-color-primary-light[disabled='disabled']:hover,
.btn-style-secondary.btn-color-primary-light[disabled='disabled']:focus {
    background: #75747b;
    color: #fff;
}
.btn-style-secondary.btn-color-primary-dark {
    background: #ffffff;
    color: #000;
}
.btn-style-secondary.btn-color-primary-dark:hover {
    background: #0f8bff;
    color: #fff;
}
.btn-style-secondary.btn-color-primary-dark:active,
.btn-style-secondary.btn-color-primary-dark:focus {
    background: #3452b7;
    color: #fff;
}
.btn-style-secondary.btn-color-primary-dark:disabled,
.btn-style-secondary.btn-color-primary-dark.disabled,
.btn-style-secondary.btn-color-primary-dark[disabled],
.btn-style-secondary.btn-color-primary-dark[disabled='disabled'] {
    background: #75747b;
    color: #fff;
}
.btn-style-secondary.btn-color-primary-dark:disabled:active,
.btn-style-secondary.btn-color-primary-dark:disabled:hover,
.btn-style-secondary.btn-color-primary-dark:disabled:focus,
.btn-style-secondary.btn-color-primary-dark.disabled:active,
.btn-style-secondary.btn-color-primary-dark.disabled:hover,
.btn-style-secondary.btn-color-primary-dark.disabled:focus,
.btn-style-secondary.btn-color-primary-dark[disabled]:active,
.btn-style-secondary.btn-color-primary-dark[disabled]:hover,
.btn-style-secondary.btn-color-primary-dark[disabled]:focus,
.btn-style-secondary.btn-color-primary-dark[disabled='disabled']:active,
.btn-style-secondary.btn-color-primary-dark[disabled='disabled']:hover,
.btn-style-secondary.btn-color-primary-dark[disabled='disabled']:focus {
    background: #75747b;
    color: #fff;
}
.btn-style-secondary.btn-color-light {
    background: #fff;
    color: #000;
}
.btn-style-secondary.btn-color-dark {
    background: #000;
    color: #fff;
}
.btn-style-tertiary.btn-color-primary-light {
    background: transparent;
    border: none;
    color: #004e97;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}
.btn-style-tertiary.btn-color-primary-light:hover {
    background: transparent;
    color: #0072d6 !important;
}
.btn-style-tertiary.btn-color-primary-light:active,
.btn-style-tertiary.btn-color-primary-light:focus {
    background: transparent !important;
    color: #00396f !important;
}
.btn-style-tertiary.btn-color-primary-light:disabled,
.btn-style-tertiary.btn-color-primary-light.disabled,
.btn-style-tertiary.btn-color-primary-light[disabled],
.btn-style-tertiary.btn-color-primary-light[disabled='disabled'] {
    background: transparent;
    color: #75747b !important;
}
.btn-style-tertiary.btn-color-primary-light:disabled:active,
.btn-style-tertiary.btn-color-primary-light:disabled:hover,
.btn-style-tertiary.btn-color-primary-light:disabled:focus,
.btn-style-tertiary.btn-color-primary-light.disabled:active,
.btn-style-tertiary.btn-color-primary-light.disabled:hover,
.btn-style-tertiary.btn-color-primary-light.disabled:focus,
.btn-style-tertiary.btn-color-primary-light[disabled]:active,
.btn-style-tertiary.btn-color-primary-light[disabled]:hover,
.btn-style-tertiary.btn-color-primary-light[disabled]:focus,
.btn-style-tertiary.btn-color-primary-light[disabled='disabled']:active,
.btn-style-tertiary.btn-color-primary-light[disabled='disabled']:hover,
.btn-style-tertiary.btn-color-primary-light[disabled='disabled']:focus {
    background: transparent;
    color: #75747b !important;
}
.btn-style-tertiary.btn-color-primary-dark {
    background: transparent;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}
.btn-style-tertiary.btn-color-primary-dark:hover {
    background: transparent;
    color: #6ab7fa !important;
}
.btn-style-tertiary.btn-color-primary-dark:active,
.btn-style-tertiary.btn-color-primary-dark:focus {
    background: transparent;
    color: #fff !important;
}
.btn-style-tertiary.btn-color-primary-dark:disabled,
.btn-style-tertiary.btn-color-primary-dark.disabled,
.btn-style-tertiary.btn-color-primary-dark[disabled],
.btn-style-tertiary.btn-color-primary-dark[disabled='disabled'] {
    color: #75747b;
}
.btn-style-tertiary.btn-color-primary-dark:disabled:active,
.btn-style-tertiary.btn-color-primary-dark:disabled:hover,
.btn-style-tertiary.btn-color-primary-dark:disabled:focus,
.btn-style-tertiary.btn-color-primary-dark.disabled:active,
.btn-style-tertiary.btn-color-primary-dark.disabled:hover,
.btn-style-tertiary.btn-color-primary-dark.disabled:focus,
.btn-style-tertiary.btn-color-primary-dark[disabled]:active,
.btn-style-tertiary.btn-color-primary-dark[disabled]:hover,
.btn-style-tertiary.btn-color-primary-dark[disabled]:focus,
.btn-style-tertiary.btn-color-primary-dark[disabled='disabled']:active,
.btn-style-tertiary.btn-color-primary-dark[disabled='disabled']:hover,
.btn-style-tertiary.btn-color-primary-dark[disabled='disabled']:focus {
    background: transparent;
    color: #75747b;
}
.btn-style-tertiary.btn-color-light {
    background: #fff;
    color: #000;
}
.btn-style-tertiary.btn-color-dark {
    background: #000;
    color: #fff;
}

.caret-primary {
    border-left-color: #004e97;
    border-right-color: #004e97;
    border-top-color: #004e97;
    border-bottom-color: #004e97;
}
.caret-secondary {
    border-left-color: #006450;
    border-right-color: #006450;
    border-top-color: #006450;
    border-bottom-color: #006450;
}
.caret-tertiary {
    border-left-color: #63656a;
    border-right-color: #63656a;
    border-top-color: #63656a;
    border-bottom-color: #63656a;
}

.icon-location-primary {
    background-image: url(/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/misc/location-primary.svg);
}
.icon-contained.icon-primary.icon-search {
    background-image: url(/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/misc/contained-search-primary.svg);
}
.icon-contained.icon-secondary.icon-search {
    background-image: url(/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/misc/contained-search-secondary.svg);
}
.icon-contained.icon-tertiary.icon-search {
    background-image: url(/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/misc/contained-search-tertiary.svg);
}

.link-primary {
    color: #004e97;
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-primary.svg');
}
.link-primary-medium {
    color: #004e97;
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-primary.svg');
}
.link-secondary {
    color: #006450;
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-secondary.svg');
}
.link-secondary-medium {
    color: #006450;
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-secondary.svg');
}
.link-tertiary {
    color: #63656a;
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-tertiary.svg');
}
.link-tertiary-medium {
    color: #63656a;
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-tertiary.svg');
}
.link-light {
    color: #fff;
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-light.svg');
}
.link-dark {
    color: #000;
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-dark.svg');
}
.link-default {
    background-position: right center;
    background-repeat: no-repeat;
    font-family: 'Barlow', sans-serif;
    line-height: 1;
    padding: 0 14px 0 0;
    text-decoration: none;
}
@media (min-width: 992px) {
    .link-default {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .link-default {
        font-size: 18px;
    }
}
.link-alt {
    background-image: none;
    text-decoration: underline;
}
.link-alt:hover,
.link-alt :focus {
    text-decoration: none;
}
.link-alt:visited {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.link-decoration-type-simple {
    background-image: none;
    padding: 0;
    text-decoration: none;
}
.link-decoration-type-underline {
    background-image: none;
    padding: 0;
    text-decoration: underline;
}
.link-decoration-type-right.link-primary {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-primary.svg');
}
.link-decoration-type-right.link-primary-medium {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-primary.svg');
}
.link-decoration-type-right.link-secondary {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-secondary.svg');
}
.link-decoration-type-right.link-secondary-medium {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-secondary.svg');
}
.link-decoration-type-right.link-tertiary {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-tertiary.svg');
}
.link-decoration-type-right.link-tertiary-medium {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-tertiary.svg');
}
.link-decoration-type-right.link-light {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-light.svg');
}
.link-decoration-type-right.link-dark {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-dark.svg');
}
.link-decoration-type-left {
    background-position: left center;
    padding: 0 0 0 14px;
}
.link-decoration-type-left.link-primary {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-primary.svg');
}
.link-decoration-type-left.link-primary-medium {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-primary.svg');
}
.link-decoration-type-left.link-secondary {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-secondary.svg');
}
.link-decoration-type-left.link-secondary-medium {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-secondary.svg');
}
.link-decoration-type-left.link-tertiary {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-tertiary.svg');
}
.link-decoration-type-left.link-tertiary-medium {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-tertiary.svg');
}
.link-decoration-type-left.link-light {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-light.svg');
}
.link-decoration-type-left.link-dark {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-dark.svg');
}

.pagination__item.previous {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-left-primary.svg');
    background-size: 16px 16px;
}
.pagination__item.next {
    background-image: url('/assets/non-embedded/offroad/v2/themes/crp/v2/images/icons/accents/accent-right-primary.svg');
    background-size: 16px 16px;
}
